diff mbox series

[2/3,RFC] net: usb: ax88179_178a: Enable AX_RX_CTL_IPE only when NET_IP_ALIGN != 0

Message ID ME3P282MB282738C1E661EFD33E4EBE1AD1AC9@ME3P282MB2827.AUSP282.PROD.OUTLOOK.COM (mailing list archive)
State New, archived
Headers show
Series [1/3,RFC] net: usb: ax88179_178a: Enable FLAG_MULTI_PACKET to improve tx stability | expand

Commit Message

Yen Chun-Chao Feb. 28, 2023, 9:44 a.m. UTC
Problem Description:
According to the comments in the hardware vendor's outdated source code
[1], AX_RX_CTL_IPE signals the hardware to do 32-bit(4-byte) IP header
alignment; such alignment is equivalent to the concept of NET_IP_ALIGN = 2
(an extra 2-byte "pesudo header" at the beginning of each etherner frame),
as described in skbuff.h.

In the current implementation, however, AX_RX_CTL_IPE is always enabled
regardless of the value of NET_IP_ALIGN; this can introduce waste in many
aspects, such as
1. hardware internal resource
2. USB bandwidth
3. host memory
4. cpu cycles (for updating frame start pointers and frame size variables)
when alignment is completely unnecessary, i.e. NET_IP_ALIGN = 0.

Solution:
Enable AX_RX_CTL_IPE and process pesudo headers only when NET_IP_ALIGN !=
0.

Verification:
Only tested on a platform where NET_IP_ALIGN = 0, with this device:
0b95:1790 ASIX Electronics Corp. AX88179 Gigabit Ethernet

References:
[1] https://www.asix.com.tw/en/support/download/file/120 (AX88179 USB3.0 to
10/100/1000M Gigabit Ethernet Controller, version 1.20.0)

Signed-off-by: Chun-Chao Yen <nothingstopsme@hotmail.com>
---
This is the same patch as https://rb.gy/ieil2d sent in Oct. 2022.
I just would like to know the current state of this patch.
Has it been rejected or still under review?

Thanks

 drivers/net/usb/ax88179_178a.c | 20 +++++++++++++++-----
 1 file changed, 15 insertions(+), 5 deletions(-)
diff mbox series

Patch

diff --git a/drivers/net/usb/ax88179_178a.c b/drivers/net/usb/ax88179_178a.c
index b50748b3776c..96ede3a131d4 100644
--- a/drivers/net/usb/ax88179_178a.c
+++ b/drivers/net/usb/ax88179_178a.c
@@ -858,7 +858,10 @@  static void ax88179_set_multicast(struct net_device *net)
         struct ax88179_data *data = dev->driver_priv;
         u8 *m_filter = ((u8 *)dev->data);
 
-       data->rxctl = (AX_RX_CTL_START | AX_RX_CTL_AB | AX_RX_CTL_IPE);
+       data->rxctl = (AX_RX_CTL_START | AX_RX_CTL_AB);
+
+       if (NET_IP_ALIGN)
+               data->rxctl |= AX_RX_CTL_IPE;
 
         if (net->flags & IFF_PROMISC) {
                 data->rxctl |= AX_RX_CTL_PRO;
@@ -1424,7 +1427,7 @@  static int ax88179_rx_fixup(struct usbnet *dev, struct sk_buff *skb)
 
                 /* Check CRC or runt packet */
                 if ((*pkt_hdr & (AX_RXHDR_CRC_ERR | AX_RXHDR_DROP_ERR)) ||
-                   pkt_len < 2 + ETH_HLEN) {
+                   pkt_len < (NET_IP_ALIGN ? 2 : 0) + ETH_HLEN) {
                         dev->net->stats.rx_errors++;
                         goto advance_data_ptr;
                 }
@@ -1438,8 +1441,13 @@  static int ax88179_rx_fixup(struct usbnet *dev, struct sk_buff *skb)
                 }
                 skb_trim(ax_skb, pkt_len);
 
-               /* Skip IP alignment pseudo header */
-               skb_pull(ax_skb, 2);
+               if (NET_IP_ALIGN) {
+                       /* Skip the pseudo header, 2 bytes at the start of each
+                        * ethernet frame, resulting from hardware 4-byte
+                        * IP header alignment (triggered by AX_RX_CTL_IPE)
+                        */
+                       skb_pull(ax_skb, 2);
+               }
 
                 ax_skb->truesize = SKB_TRUESIZE(pkt_len);
                 ax88179_rx_checksum(ax_skb, pkt_hdr);
@@ -1609,8 +1617,10 @@  static int ax88179_reset(struct usbnet *dev)
         ax88179_write_cmd(dev, AX_ACCESS_MAC, AX_TXCOE_CTL, 1, 1, tmp);
 
         /* Configure RX control register => start operation */
-       *tmp16 = AX_RX_CTL_DROPCRCERR | AX_RX_CTL_IPE | AX_RX_CTL_START |
+       *tmp16 = AX_RX_CTL_DROPCRCERR | AX_RX_CTL_START |
                  AX_RX_CTL_AP | AX_RX_CTL_AMALL | AX_RX_CTL_AB;
+       if (NET_IP_ALIGN)
+               *tmp16 |= AX_RX_CTL_IPE;
         ax88179_write_cmd(dev, AX_ACCESS_MAC, AX_RX_CTL, 2, 2, tmp16);
 
         *tmp = AX_MONITOR_MODE_PMETYPE | AX_MONITOR_MODE_PMEPOL |