Commit 251eadcc authored by Yoshihiro Shimoda's avatar Yoshihiro Shimoda Committed by Jakub Kicinski

net: renesas: rswitch: Rename rings in struct rswitch_gwca_queue

To add a new ring which is really related to timestamp (ts_ring)
in the future, rename the following members to improve readability:

    ring --> tx_ring
    ts_ring --> rx_ring
Signed-off-by: default avatarYoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
Reviewed-by: default avatarAlexander Duyck <alexanderduyck@fb.com>
Signed-off-by: default avatarJakub Kicinski <kuba@kernel.org>
parent 183514f7
...@@ -240,7 +240,7 @@ static int rswitch_get_num_cur_queues(struct rswitch_gwca_queue *gq) ...@@ -240,7 +240,7 @@ static int rswitch_get_num_cur_queues(struct rswitch_gwca_queue *gq)
static bool rswitch_is_queue_rxed(struct rswitch_gwca_queue *gq) static bool rswitch_is_queue_rxed(struct rswitch_gwca_queue *gq)
{ {
struct rswitch_ext_ts_desc *desc = &gq->ts_ring[gq->dirty]; struct rswitch_ext_ts_desc *desc = &gq->rx_ring[gq->dirty];
if ((desc->desc.die_dt & DT_MASK) != DT_FEMPTY) if ((desc->desc.die_dt & DT_MASK) != DT_FEMPTY)
return true; return true;
...@@ -283,13 +283,13 @@ static void rswitch_gwca_queue_free(struct net_device *ndev, ...@@ -283,13 +283,13 @@ static void rswitch_gwca_queue_free(struct net_device *ndev,
if (gq->gptp) { if (gq->gptp) {
dma_free_coherent(ndev->dev.parent, dma_free_coherent(ndev->dev.parent,
sizeof(struct rswitch_ext_ts_desc) * sizeof(struct rswitch_ext_ts_desc) *
(gq->ring_size + 1), gq->ts_ring, gq->ring_dma); (gq->ring_size + 1), gq->rx_ring, gq->ring_dma);
gq->ts_ring = NULL; gq->rx_ring = NULL;
} else { } else {
dma_free_coherent(ndev->dev.parent, dma_free_coherent(ndev->dev.parent,
sizeof(struct rswitch_ext_desc) * sizeof(struct rswitch_ext_desc) *
(gq->ring_size + 1), gq->ring, gq->ring_dma); (gq->ring_size + 1), gq->tx_ring, gq->ring_dma);
gq->ring = NULL; gq->tx_ring = NULL;
} }
if (!gq->dir_tx) { if (!gq->dir_tx) {
...@@ -321,14 +321,14 @@ static int rswitch_gwca_queue_alloc(struct net_device *ndev, ...@@ -321,14 +321,14 @@ static int rswitch_gwca_queue_alloc(struct net_device *ndev,
rswitch_gwca_queue_alloc_skb(gq, 0, gq->ring_size); rswitch_gwca_queue_alloc_skb(gq, 0, gq->ring_size);
if (gptp) if (gptp)
gq->ts_ring = dma_alloc_coherent(ndev->dev.parent, gq->rx_ring = dma_alloc_coherent(ndev->dev.parent,
sizeof(struct rswitch_ext_ts_desc) * sizeof(struct rswitch_ext_ts_desc) *
(gq->ring_size + 1), &gq->ring_dma, GFP_KERNEL); (gq->ring_size + 1), &gq->ring_dma, GFP_KERNEL);
else else
gq->ring = dma_alloc_coherent(ndev->dev.parent, gq->tx_ring = dma_alloc_coherent(ndev->dev.parent,
sizeof(struct rswitch_ext_desc) * sizeof(struct rswitch_ext_desc) *
(gq->ring_size + 1), &gq->ring_dma, GFP_KERNEL); (gq->ring_size + 1), &gq->ring_dma, GFP_KERNEL);
if (!gq->ts_ring && !gq->ring) if (!gq->rx_ring && !gq->tx_ring)
goto out; goto out;
i = gq->index / 32; i = gq->index / 32;
...@@ -361,14 +361,14 @@ static int rswitch_gwca_queue_format(struct net_device *ndev, ...@@ -361,14 +361,14 @@ static int rswitch_gwca_queue_format(struct net_device *ndev,
struct rswitch_private *priv, struct rswitch_private *priv,
struct rswitch_gwca_queue *gq) struct rswitch_gwca_queue *gq)
{ {
int tx_ring_size = sizeof(struct rswitch_ext_desc) * gq->ring_size; int ring_size = sizeof(struct rswitch_ext_desc) * gq->ring_size;
struct rswitch_ext_desc *desc; struct rswitch_ext_desc *desc;
struct rswitch_desc *linkfix; struct rswitch_desc *linkfix;
dma_addr_t dma_addr; dma_addr_t dma_addr;
int i; int i;
memset(gq->ring, 0, tx_ring_size); memset(gq->tx_ring, 0, ring_size);
for (i = 0, desc = gq->ring; i < gq->ring_size; i++, desc++) { for (i = 0, desc = gq->tx_ring; i < gq->ring_size; i++, desc++) {
if (!gq->dir_tx) { if (!gq->dir_tx) {
dma_addr = dma_map_single(ndev->dev.parent, dma_addr = dma_map_single(ndev->dev.parent,
gq->skbs[i]->data, PKT_BUF_SZ, gq->skbs[i]->data, PKT_BUF_SZ,
...@@ -397,7 +397,7 @@ static int rswitch_gwca_queue_format(struct net_device *ndev, ...@@ -397,7 +397,7 @@ static int rswitch_gwca_queue_format(struct net_device *ndev,
err: err:
if (!gq->dir_tx) { if (!gq->dir_tx) {
for (i--, desc = gq->ring; i >= 0; i--, desc++) { for (i--, desc = gq->tx_ring; i >= 0; i--, desc++) {
dma_addr = rswitch_desc_get_dptr(&desc->desc); dma_addr = rswitch_desc_get_dptr(&desc->desc);
dma_unmap_single(ndev->dev.parent, dma_addr, PKT_BUF_SZ, dma_unmap_single(ndev->dev.parent, dma_addr, PKT_BUF_SZ,
DMA_FROM_DEVICE); DMA_FROM_DEVICE);
...@@ -407,9 +407,9 @@ static int rswitch_gwca_queue_format(struct net_device *ndev, ...@@ -407,9 +407,9 @@ static int rswitch_gwca_queue_format(struct net_device *ndev,
return -ENOMEM; return -ENOMEM;
} }
static int rswitch_gwca_queue_ts_fill(struct net_device *ndev, static int rswitch_gwca_queue_ext_ts_fill(struct net_device *ndev,
struct rswitch_gwca_queue *gq, struct rswitch_gwca_queue *gq,
int start_index, int num) int start_index, int num)
{ {
struct rswitch_device *rdev = netdev_priv(ndev); struct rswitch_device *rdev = netdev_priv(ndev);
struct rswitch_ext_ts_desc *desc; struct rswitch_ext_ts_desc *desc;
...@@ -418,7 +418,7 @@ static int rswitch_gwca_queue_ts_fill(struct net_device *ndev, ...@@ -418,7 +418,7 @@ static int rswitch_gwca_queue_ts_fill(struct net_device *ndev,
for (i = 0; i < num; i++) { for (i = 0; i < num; i++) {
index = (i + start_index) % gq->ring_size; index = (i + start_index) % gq->ring_size;
desc = &gq->ts_ring[index]; desc = &gq->rx_ring[index];
if (!gq->dir_tx) { if (!gq->dir_tx) {
dma_addr = dma_map_single(ndev->dev.parent, dma_addr = dma_map_single(ndev->dev.parent,
gq->skbs[index]->data, PKT_BUF_SZ, gq->skbs[index]->data, PKT_BUF_SZ,
...@@ -442,7 +442,7 @@ static int rswitch_gwca_queue_ts_fill(struct net_device *ndev, ...@@ -442,7 +442,7 @@ static int rswitch_gwca_queue_ts_fill(struct net_device *ndev,
if (!gq->dir_tx) { if (!gq->dir_tx) {
for (i--; i >= 0; i--) { for (i--; i >= 0; i--) {
index = (i + start_index) % gq->ring_size; index = (i + start_index) % gq->ring_size;
desc = &gq->ts_ring[index]; desc = &gq->rx_ring[index];
dma_addr = rswitch_desc_get_dptr(&desc->desc); dma_addr = rswitch_desc_get_dptr(&desc->desc);
dma_unmap_single(ndev->dev.parent, dma_addr, PKT_BUF_SZ, dma_unmap_single(ndev->dev.parent, dma_addr, PKT_BUF_SZ,
DMA_FROM_DEVICE); DMA_FROM_DEVICE);
...@@ -452,21 +452,21 @@ static int rswitch_gwca_queue_ts_fill(struct net_device *ndev, ...@@ -452,21 +452,21 @@ static int rswitch_gwca_queue_ts_fill(struct net_device *ndev,
return -ENOMEM; return -ENOMEM;
} }
static int rswitch_gwca_queue_ts_format(struct net_device *ndev, static int rswitch_gwca_queue_ext_ts_format(struct net_device *ndev,
struct rswitch_private *priv, struct rswitch_private *priv,
struct rswitch_gwca_queue *gq) struct rswitch_gwca_queue *gq)
{ {
int tx_ts_ring_size = sizeof(struct rswitch_ext_ts_desc) * gq->ring_size; int ring_size = sizeof(struct rswitch_ext_ts_desc) * gq->ring_size;
struct rswitch_ext_ts_desc *desc; struct rswitch_ext_ts_desc *desc;
struct rswitch_desc *linkfix; struct rswitch_desc *linkfix;
int err; int err;
memset(gq->ts_ring, 0, tx_ts_ring_size); memset(gq->rx_ring, 0, ring_size);
err = rswitch_gwca_queue_ts_fill(ndev, gq, 0, gq->ring_size); err = rswitch_gwca_queue_ext_ts_fill(ndev, gq, 0, gq->ring_size);
if (err < 0) if (err < 0)
return err; return err;
desc = &gq->ts_ring[gq->ring_size]; /* Last */ desc = &gq->rx_ring[gq->ring_size]; /* Last */
rswitch_desc_set_dptr(&desc->desc, gq->ring_dma); rswitch_desc_set_dptr(&desc->desc, gq->ring_dma);
desc->desc.die_dt = DT_LINKFIX; desc->desc.die_dt = DT_LINKFIX;
...@@ -594,7 +594,7 @@ static int rswitch_rxdmac_init(struct rswitch_private *priv, int index) ...@@ -594,7 +594,7 @@ static int rswitch_rxdmac_init(struct rswitch_private *priv, int index)
struct rswitch_device *rdev = priv->rdev[index]; struct rswitch_device *rdev = priv->rdev[index];
struct net_device *ndev = rdev->ndev; struct net_device *ndev = rdev->ndev;
return rswitch_gwca_queue_ts_format(ndev, priv, rdev->rx_queue); return rswitch_gwca_queue_ext_ts_format(ndev, priv, rdev->rx_queue);
} }
static int rswitch_gwca_hw_init(struct rswitch_private *priv) static int rswitch_gwca_hw_init(struct rswitch_private *priv)
...@@ -675,7 +675,7 @@ static bool rswitch_rx(struct net_device *ndev, int *quota) ...@@ -675,7 +675,7 @@ static bool rswitch_rx(struct net_device *ndev, int *quota)
boguscnt = min_t(int, gq->ring_size, *quota); boguscnt = min_t(int, gq->ring_size, *quota);
limit = boguscnt; limit = boguscnt;
desc = &gq->ts_ring[gq->cur]; desc = &gq->rx_ring[gq->cur];
while ((desc->desc.die_dt & DT_MASK) != DT_FEMPTY) { while ((desc->desc.die_dt & DT_MASK) != DT_FEMPTY) {
if (--boguscnt < 0) if (--boguscnt < 0)
break; break;
...@@ -703,14 +703,14 @@ static bool rswitch_rx(struct net_device *ndev, int *quota) ...@@ -703,14 +703,14 @@ static bool rswitch_rx(struct net_device *ndev, int *quota)
rdev->ndev->stats.rx_bytes += pkt_len; rdev->ndev->stats.rx_bytes += pkt_len;
gq->cur = rswitch_next_queue_index(gq, true, 1); gq->cur = rswitch_next_queue_index(gq, true, 1);
desc = &gq->ts_ring[gq->cur]; desc = &gq->rx_ring[gq->cur];
} }
num = rswitch_get_num_cur_queues(gq); num = rswitch_get_num_cur_queues(gq);
ret = rswitch_gwca_queue_alloc_skb(gq, gq->dirty, num); ret = rswitch_gwca_queue_alloc_skb(gq, gq->dirty, num);
if (ret < 0) if (ret < 0)
goto err; goto err;
ret = rswitch_gwca_queue_ts_fill(ndev, gq, gq->dirty, num); ret = rswitch_gwca_queue_ext_ts_fill(ndev, gq, gq->dirty, num);
if (ret < 0) if (ret < 0)
goto err; goto err;
gq->dirty = rswitch_next_queue_index(gq, false, num); gq->dirty = rswitch_next_queue_index(gq, false, num);
...@@ -737,7 +737,7 @@ static int rswitch_tx_free(struct net_device *ndev, bool free_txed_only) ...@@ -737,7 +737,7 @@ static int rswitch_tx_free(struct net_device *ndev, bool free_txed_only)
for (; rswitch_get_num_cur_queues(gq) > 0; for (; rswitch_get_num_cur_queues(gq) > 0;
gq->dirty = rswitch_next_queue_index(gq, false, 1)) { gq->dirty = rswitch_next_queue_index(gq, false, 1)) {
desc = &gq->ring[gq->dirty]; desc = &gq->tx_ring[gq->dirty];
if (free_txed_only && (desc->desc.die_dt & DT_MASK) != DT_FEMPTY) if (free_txed_only && (desc->desc.die_dt & DT_MASK) != DT_FEMPTY)
break; break;
...@@ -1390,7 +1390,7 @@ static netdev_tx_t rswitch_start_xmit(struct sk_buff *skb, struct net_device *nd ...@@ -1390,7 +1390,7 @@ static netdev_tx_t rswitch_start_xmit(struct sk_buff *skb, struct net_device *nd
} }
gq->skbs[gq->cur] = skb; gq->skbs[gq->cur] = skb;
desc = &gq->ring[gq->cur]; desc = &gq->tx_ring[gq->cur];
rswitch_desc_set_dptr(&desc->desc, dma_addr); rswitch_desc_set_dptr(&desc->desc, dma_addr);
desc->desc.info_ds = cpu_to_le16(skb->len); desc->desc.info_ds = cpu_to_le16(skb->len);
......
...@@ -915,8 +915,8 @@ struct rswitch_gwca_queue { ...@@ -915,8 +915,8 @@ struct rswitch_gwca_queue {
bool dir_tx; bool dir_tx;
bool gptp; bool gptp;
union { union {
struct rswitch_ext_desc *ring; struct rswitch_ext_desc *tx_ring;
struct rswitch_ext_ts_desc *ts_ring; struct rswitch_ext_ts_desc *rx_ring;
}; };
dma_addr_t ring_dma; dma_addr_t ring_dma;
int ring_size; int ring_size;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment