netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH net-next v5 0/2] net: systemport: couples fixes
@ 2014-05-15  2:32 Florian Fainelli
  2014-05-15  2:32 ` [PATCH net-next v5 1/2] net: systemport: only update UMAC_CMD if something changed Florian Fainelli
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Florian Fainelli @ 2014-05-15  2:32 UTC (permalink / raw)
  To: netdev; +Cc: davem, David Laight, Florian Fainelli

Hi David(s),

This fifth version should hopefully explain it all!

Thanks

Florian Fainelli (2):
  net: systemport: only update UMAC_CMD if something changed
  net: systemport: pad packets to a minimum of 68 bytes

 drivers/net/ethernet/broadcom/bcmsysport.c | 35 ++++++++++++++++++++++--------
 drivers/net/ethernet/broadcom/bcmsysport.h |  6 ++---
 2 files changed, 29 insertions(+), 12 deletions(-)

-- 
1.9.1

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [PATCH net-next v5 1/2] net: systemport: only update UMAC_CMD if something changed
  2014-05-15  2:32 [PATCH net-next v5 0/2] net: systemport: couples fixes Florian Fainelli
@ 2014-05-15  2:32 ` Florian Fainelli
  2014-05-15  2:32 ` [PATCH net-next v5 2/2] net: systemport: pad packets to a minimum of 68 bytes Florian Fainelli
  2014-05-15 20:49 ` [PATCH net-next v5 0/2] net: systemport: couples fixes David Miller
  2 siblings, 0 replies; 6+ messages in thread
From: Florian Fainelli @ 2014-05-15  2:32 UTC (permalink / raw)
  To: netdev; +Cc: davem, David Laight, Florian Fainelli

The link adjustment callback can be called as frequently as desired by
the PHY library, as such, let's avoid doing a Read/Modify/Write sequence
if nothing changed, which is more than likely since we are interfaced
with a switch device.

Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
---
Changes in v5:
- respin

Changes in v4:
- re-align 2nd and 3rd lines properly according to the network style

Changes in v3:
- attempted to re-align the CMD_HD_EN lines but failed miserably

Changes in v2:
- respin

 drivers/net/ethernet/broadcom/bcmsysport.c | 11 ++++++-----
 1 file changed, 6 insertions(+), 5 deletions(-)

diff --git a/drivers/net/ethernet/broadcom/bcmsysport.c b/drivers/net/ethernet/broadcom/bcmsysport.c
index f66de13..3950364 100644
--- a/drivers/net/ethernet/broadcom/bcmsysport.c
+++ b/drivers/net/ethernet/broadcom/bcmsysport.c
@@ -959,15 +959,16 @@ static void bcm_sysport_adj_link(struct net_device *dev)
 	if (!phydev->pause)
 		cmd_bits |= CMD_RX_PAUSE_IGNORE | CMD_TX_PAUSE_IGNORE;
 
-	reg = umac_readl(priv, UMAC_CMD);
-	reg &= ~((CMD_SPEED_MASK << CMD_SPEED_SHIFT) |
+	if (changed) {
+		reg = umac_readl(priv, UMAC_CMD);
+		reg &= ~((CMD_SPEED_MASK << CMD_SPEED_SHIFT) |
 			CMD_HD_EN | CMD_RX_PAUSE_IGNORE |
 			CMD_TX_PAUSE_IGNORE);
-	reg |= cmd_bits;
-	umac_writel(priv, reg, UMAC_CMD);
+		reg |= cmd_bits;
+		umac_writel(priv, reg, UMAC_CMD);
 
-	if (changed)
 		phy_print_status(priv->phydev);
+	}
 }
 
 static int bcm_sysport_init_tx_ring(struct bcm_sysport_priv *priv,
-- 
1.9.1

^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [PATCH net-next v5 2/2] net: systemport: pad packets to a minimum of 68 bytes
  2014-05-15  2:32 [PATCH net-next v5 0/2] net: systemport: couples fixes Florian Fainelli
  2014-05-15  2:32 ` [PATCH net-next v5 1/2] net: systemport: only update UMAC_CMD if something changed Florian Fainelli
@ 2014-05-15  2:32 ` Florian Fainelli
  2014-05-15  9:28   ` David Laight
  2014-05-15 20:49 ` [PATCH net-next v5 0/2] net: systemport: couples fixes David Miller
  2 siblings, 1 reply; 6+ messages in thread
From: Florian Fainelli @ 2014-05-15  2:32 UTC (permalink / raw)
  To: netdev; +Cc: davem, David Laight, Florian Fainelli

Packets need to be at least 64 bytes to enter the switch port logic,
including the FCS, otherwise they will be discarded as RUNT packets.

With packets having Broadcom tags, the 4-bytes tag is first stripped
off the packet, and the packet length is then checked, so we need to
make sure that the packet length with FCS is at least 64 bytes.

Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
---
Changes in v5:
- properly explain the 68 bytes padding requirement due to how the switch
  ingress port logic works with switch tags

Changes in v4:
- respin due to first patch

Changes in v3:
- reword the commit message and comment to explain the special hardware
  requirements
- print skb_len instead of skb->len in the DMA map failure error

Changes in v2:
- add missing skb_padto() to zero-out packets

 drivers/net/ethernet/broadcom/bcmsysport.c | 24 ++++++++++++++++++++----
 drivers/net/ethernet/broadcom/bcmsysport.h |  6 +++---
 2 files changed, 23 insertions(+), 7 deletions(-)

diff --git a/drivers/net/ethernet/broadcom/bcmsysport.c b/drivers/net/ethernet/broadcom/bcmsysport.c
index 3950364..8edc098 100644
--- a/drivers/net/ethernet/broadcom/bcmsysport.c
+++ b/drivers/net/ethernet/broadcom/bcmsysport.c
@@ -821,6 +821,7 @@ static netdev_tx_t bcm_sysport_xmit(struct sk_buff *skb,
 	struct bcm_sysport_cb *cb;
 	struct netdev_queue *txq;
 	struct dma_desc *desc;
+	unsigned int skb_len;
 	dma_addr_t mapping;
 	u32 len_status;
 	u16 queue;
@@ -848,10 +849,25 @@ static netdev_tx_t bcm_sysport_xmit(struct sk_buff *skb,
 		}
 	}
 
-	mapping = dma_map_single(kdev, skb->data, skb->len, DMA_TO_DEVICE);
+	/* The Ethernet switch we are interfaced with needs packets to be at
+	 * least 64 bytes (including FCS) otherwise they will be discarded when
+	 * they enter the switch port logic. When Broadcom tags are enabled, we
+	 * need to make sure that packets are at least 68 bytes
+	 * (including FCS and tag) because the length verification is done after
+	 * the Broadcom tag is stripped off the ingress packet.
+	 */
+	if (skb_padto(skb, ETH_ZLEN + ENET_BRCM_TAG_LEN)) {
+		ret = NETDEV_TX_OK;
+		goto out;
+	}
+
+	skb_len = skb->len < ETH_ZLEN + ENET_BRCM_TAG_LEN ?
+			ETH_ZLEN + ENET_BRCM_TAG_LEN : skb->len;
+
+	mapping = dma_map_single(kdev, skb->data, skb_len, DMA_TO_DEVICE);
 	if (dma_mapping_error(kdev, mapping)) {
 		netif_err(priv, tx_err, dev, "DMA map failed at %p (len=%d)\n",
-				skb->data, skb->len);
+				skb->data, skb_len);
 		ret = NETDEV_TX_OK;
 		goto out;
 	}
@@ -860,14 +876,14 @@ static netdev_tx_t bcm_sysport_xmit(struct sk_buff *skb,
 	cb = &ring->cbs[ring->curr_desc];
 	cb->skb = skb;
 	dma_unmap_addr_set(cb, dma_addr, mapping);
-	dma_unmap_len_set(cb, dma_len, skb->len);
+	dma_unmap_len_set(cb, dma_len, skb_len);
 
 	/* Fetch a descriptor entry from our pool */
 	desc = ring->desc_cpu;
 
 	desc->addr_lo = lower_32_bits(mapping);
 	len_status = upper_32_bits(mapping) & DESC_ADDR_HI_MASK;
-	len_status |= (skb->len << DESC_LEN_SHIFT);
+	len_status |= (skb_len << DESC_LEN_SHIFT);
 	len_status |= (DESC_SOP | DESC_EOP | TX_STATUS_APP_CRC) <<
 			DESC_STATUS_SHIFT;
 	if (skb->ip_summed == CHECKSUM_PARTIAL)
diff --git a/drivers/net/ethernet/broadcom/bcmsysport.h b/drivers/net/ethernet/broadcom/bcmsysport.h
index a0441e7..abdeb62 100644
--- a/drivers/net/ethernet/broadcom/bcmsysport.h
+++ b/drivers/net/ethernet/broadcom/bcmsysport.h
@@ -29,11 +29,11 @@
 /* Default RX buffer allocation size */
 #define RX_BUF_LENGTH		2048
 
-/* Body(1500) + EH_SIZE(14) + VLANTAG(4) + BRCMTAG(6) + FCS(4) = 1528.
+/* Body(1500) + EH_SIZE(14) + VLANTAG(4) + BRCMTAG(4) + FCS(4) = 1526.
  * 1536 is multiple of 256 bytes
  */
-#define ENET_BRCM_TAG_LEN	6
-#define ENET_PAD		8
+#define ENET_BRCM_TAG_LEN	4
+#define ENET_PAD		10
 #define UMAC_MAX_MTU_SIZE	(ETH_DATA_LEN + ETH_HLEN + VLAN_HLEN + \
 				 ENET_BRCM_TAG_LEN + ETH_FCS_LEN + ENET_PAD)
 
-- 
1.9.1

^ permalink raw reply related	[flat|nested] 6+ messages in thread

* RE: [PATCH net-next v5 2/2] net: systemport: pad packets to a minimum of 68 bytes
  2014-05-15  2:32 ` [PATCH net-next v5 2/2] net: systemport: pad packets to a minimum of 68 bytes Florian Fainelli
@ 2014-05-15  9:28   ` David Laight
  2014-05-15 16:45     ` Florian Fainelli
  0 siblings, 1 reply; 6+ messages in thread
From: David Laight @ 2014-05-15  9:28 UTC (permalink / raw)
  To: 'Florian Fainelli', netdev; +Cc: davem

From: Florian Fainelli 
> With packets having Broadcom tags, the 4-bytes tag is first stripped
> off the packet, and the packet length is then checked, so we need to
> make sure that the packet length with FCS is at least 64 bytes.

Ah - finally an explanation!

I think you should only do that when the Broadcom Tags are enabled.

	David

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH net-next v5 2/2] net: systemport: pad packets to a minimum of 68 bytes
  2014-05-15  9:28   ` David Laight
@ 2014-05-15 16:45     ` Florian Fainelli
  0 siblings, 0 replies; 6+ messages in thread
From: Florian Fainelli @ 2014-05-15 16:45 UTC (permalink / raw)
  To: David Laight; +Cc: netdev, davem

2014-05-15 2:28 GMT-07:00 David Laight <David.Laight@aculab.com>:
> From: Florian Fainelli
>> With packets having Broadcom tags, the 4-bytes tag is first stripped
>> off the packet, and the packet length is then checked, so we need to
>> make sure that the packet length with FCS is at least 64 bytes.
>
> Ah - finally an explanation!
>
> I think you should only do that when the Broadcom Tags are enabled.

I thought about that, and could not make my mind about doing something like:

min_pad_len = ETH_ZLEN;
if (netdev_uses_brcm_tag(dev))
           min_pad_len += ENET_BRCM_TAG_LEN;

or doing the padding unconditionally like this.

The switch driver has been submitted for review on netdev, and that
includes the netdev_uses_brcm_tag() helper function to tell us whether
Broadcom tags are enabled or not on that particular interface.

One of the argument that I have against that, is that it makes our
driver a little more special, and that would make it the only one (for
now at least). I sort of wanted the fix to be independent from
eventually other non-DSA switch implementations.
-- 
Florian

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH net-next v5 0/2] net: systemport: couples fixes
  2014-05-15  2:32 [PATCH net-next v5 0/2] net: systemport: couples fixes Florian Fainelli
  2014-05-15  2:32 ` [PATCH net-next v5 1/2] net: systemport: only update UMAC_CMD if something changed Florian Fainelli
  2014-05-15  2:32 ` [PATCH net-next v5 2/2] net: systemport: pad packets to a minimum of 68 bytes Florian Fainelli
@ 2014-05-15 20:49 ` David Miller
  2 siblings, 0 replies; 6+ messages in thread
From: David Miller @ 2014-05-15 20:49 UTC (permalink / raw)
  To: f.fainelli; +Cc: netdev, David.Laight

From: Florian Fainelli <f.fainelli@gmail.com>
Date: Wed, 14 May 2014 19:32:12 -0700

> This fifth version should hopefully explain it all!

Series applied, thanks.

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2014-05-15 20:49 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-05-15  2:32 [PATCH net-next v5 0/2] net: systemport: couples fixes Florian Fainelli
2014-05-15  2:32 ` [PATCH net-next v5 1/2] net: systemport: only update UMAC_CMD if something changed Florian Fainelli
2014-05-15  2:32 ` [PATCH net-next v5 2/2] net: systemport: pad packets to a minimum of 68 bytes Florian Fainelli
2014-05-15  9:28   ` David Laight
2014-05-15 16:45     ` Florian Fainelli
2014-05-15 20:49 ` [PATCH net-next v5 0/2] net: systemport: couples fixes David Miller

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).