From: Jakub Kicinski <kuba@kernel.org>
To: Justin Chen <justin.chen@broadcom.com>
Cc: netdev@vger.kernel.org, devicetree@vger.kernel.org,
linux-kernel@vger.kernel.org, dri-devel@lists.freedesktop.org,
bcm-kernel-feedback-list@broadcom.com,
florian.fainelli@broadcom.com, davem@davemloft.net,
edumazet@google.com, pabeni@redhat.com, robh+dt@kernel.org,
krzysztof.kozlowski+dt@linaro.org, conor+dt@kernel.org,
opendmb@gmail.com, andrew@lunn.ch, hkallweit1@gmail.com,
linux@armlinux.org.uk, richardcochran@gmail.com,
sumit.semwal@linaro.org, christian.koenig@amd.com,
simon.horman@corigine.com
Subject: Re: [PATCH net-next v5 3/6] net: bcmasp: Add support for ASP2.0 Ethernet controller
Date: Thu, 25 May 2023 20:54:54 -0700 [thread overview]
Message-ID: <20230525205454.1c766852@kernel.org> (raw)
In-Reply-To: <1684969313-35503-4-git-send-email-justin.chen@broadcom.com>
On Wed, 24 May 2023 16:01:50 -0700 Justin Chen wrote:
> Add support for the Broadcom ASP 2.0 Ethernet controller which is first
> introduced with 72165. This controller features two distinct Ethernet
> ports that can be independently operated.
>
> This patch supports:
>
> - Wake-on-LAN using magic packets
> - basic ethtool operations (link, counters, message level)
> - MAC destination address filtering (promiscuous, ALL_MULTI, etc.)
> +static netdev_tx_t bcmasp_xmit(struct sk_buff *skb, struct net_device *dev)
> +{
> + struct bcmasp_intf *intf = netdev_priv(dev);
> + int spb_index, nr_frags, ret, i, j;
> + unsigned int total_bytes, size;
> + struct bcmasp_tx_cb *txcb;
> + dma_addr_t mapping, valid;
> + struct bcmasp_desc *desc;
> + bool csum_hw = false;
> + struct device *kdev;
> + skb_frag_t *frag;
> +
> + kdev = &intf->parent->pdev->dev;
> +
> + spin_lock(&intf->tx_lock);
What is the tx_lock for? netdevs already have a tx lock, unless you
declare the device as lockless.
> +static void bcmasp_tx_timeout(struct net_device *dev, unsigned int txqueue)
> +{
> + struct bcmasp_intf *intf = netdev_priv(dev);
> +
> + netif_dbg(intf, tx_err, dev, "transmit timeout!\n");
> +
> + netif_trans_update(dev);
> + dev->stats.tx_errors++;
> +
> + netif_wake_queue(dev);
If the queue is full xmit will just put it back to sleep.
You want to try to reap completions if anything, no?
> +static struct net_device_stats *bcmasp_get_stats(struct net_device *dev)
> +{
> + return &dev->stats;
> +}
you don't have to do this, core will use device stats if there's no ndo
> + ndev = alloc_etherdev(sizeof(struct bcmasp_intf));
> + if (!dev) {
*blink* condition is typo'ed
> + dev_warn(dev, "%s: unable to alloc ndev\n", ndev_dn->name);
> + goto err;
> + }
--
pw-bot: cr
WARNING: multiple messages have this Message-ID (diff)
From: Jakub Kicinski <kuba@kernel.org>
To: Justin Chen <justin.chen@broadcom.com>
Cc: devicetree@vger.kernel.org, conor+dt@kernel.org,
opendmb@gmail.com, florian.fainelli@broadcom.com, andrew@lunn.ch,
netdev@vger.kernel.org, richardcochran@gmail.com,
linux-kernel@vger.kernel.org, dri-devel@lists.freedesktop.org,
linux@armlinux.org.uk, edumazet@google.com, robh+dt@kernel.org,
bcm-kernel-feedback-list@broadcom.com,
krzysztof.kozlowski+dt@linaro.org, simon.horman@corigine.com,
christian.koenig@amd.com, pabeni@redhat.com,
sumit.semwal@linaro.org, davem@davemloft.net,
hkallweit1@gmail.com
Subject: Re: [PATCH net-next v5 3/6] net: bcmasp: Add support for ASP2.0 Ethernet controller
Date: Thu, 25 May 2023 20:54:54 -0700 [thread overview]
Message-ID: <20230525205454.1c766852@kernel.org> (raw)
In-Reply-To: <1684969313-35503-4-git-send-email-justin.chen@broadcom.com>
On Wed, 24 May 2023 16:01:50 -0700 Justin Chen wrote:
> Add support for the Broadcom ASP 2.0 Ethernet controller which is first
> introduced with 72165. This controller features two distinct Ethernet
> ports that can be independently operated.
>
> This patch supports:
>
> - Wake-on-LAN using magic packets
> - basic ethtool operations (link, counters, message level)
> - MAC destination address filtering (promiscuous, ALL_MULTI, etc.)
> +static netdev_tx_t bcmasp_xmit(struct sk_buff *skb, struct net_device *dev)
> +{
> + struct bcmasp_intf *intf = netdev_priv(dev);
> + int spb_index, nr_frags, ret, i, j;
> + unsigned int total_bytes, size;
> + struct bcmasp_tx_cb *txcb;
> + dma_addr_t mapping, valid;
> + struct bcmasp_desc *desc;
> + bool csum_hw = false;
> + struct device *kdev;
> + skb_frag_t *frag;
> +
> + kdev = &intf->parent->pdev->dev;
> +
> + spin_lock(&intf->tx_lock);
What is the tx_lock for? netdevs already have a tx lock, unless you
declare the device as lockless.
> +static void bcmasp_tx_timeout(struct net_device *dev, unsigned int txqueue)
> +{
> + struct bcmasp_intf *intf = netdev_priv(dev);
> +
> + netif_dbg(intf, tx_err, dev, "transmit timeout!\n");
> +
> + netif_trans_update(dev);
> + dev->stats.tx_errors++;
> +
> + netif_wake_queue(dev);
If the queue is full xmit will just put it back to sleep.
You want to try to reap completions if anything, no?
> +static struct net_device_stats *bcmasp_get_stats(struct net_device *dev)
> +{
> + return &dev->stats;
> +}
you don't have to do this, core will use device stats if there's no ndo
> + ndev = alloc_etherdev(sizeof(struct bcmasp_intf));
> + if (!dev) {
*blink* condition is typo'ed
> + dev_warn(dev, "%s: unable to alloc ndev\n", ndev_dn->name);
> + goto err;
> + }
--
pw-bot: cr
next prev parent reply other threads:[~2023-05-26 3:55 UTC|newest]
Thread overview: 29+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-05-24 23:01 [PATCH net-next v5 0/6] Brcm ASP 2.0 Ethernet Controller Justin Chen
2023-05-24 23:01 ` Justin Chen
2023-05-24 23:01 ` [PATCH net-next v5 1/6] dt-bindings: net: brcm,unimac-mdio: Add asp-v2.0 Justin Chen
2023-05-24 23:01 ` [PATCH net-next v5 1/6] dt-bindings: net: brcm, unimac-mdio: " Justin Chen
2023-05-24 23:01 ` [PATCH net-next v5 2/6] dt-bindings: net: Brcm ASP 2.0 Ethernet controller Justin Chen
2023-05-24 23:01 ` Justin Chen
2023-05-25 16:11 ` Conor Dooley
2023-05-25 16:11 ` Conor Dooley
2023-05-31 19:18 ` Krzysztof Kozlowski
2023-05-31 19:29 ` Florian Fainelli
2023-05-31 19:31 ` Krzysztof Kozlowski
2023-05-31 19:38 ` Florian Fainelli
2023-05-31 22:28 ` Justin Chen
2023-05-31 22:28 ` Justin Chen
2023-05-24 23:01 ` [PATCH net-next v5 3/6] net: bcmasp: Add support for ASP2.0 " Justin Chen
2023-05-24 23:01 ` Justin Chen
2023-05-24 23:01 ` Justin Chen
2023-05-26 3:54 ` Jakub Kicinski [this message]
2023-05-26 3:54 ` Jakub Kicinski
2023-05-26 21:46 ` Justin Chen
2023-05-26 21:46 ` Justin Chen
2023-05-31 21:32 ` Florian Fainelli
2023-05-31 21:32 ` Florian Fainelli
2023-05-24 23:01 ` [PATCH net-next v5 4/6] net: phy: mdio-bcm-unimac: Add asp v2.0 support Justin Chen
2023-05-24 23:01 ` Justin Chen
2023-05-24 23:01 ` [PATCH net-next v5 5/6] net: phy: bcm7xxx: Add EPHY entry for 74165 Justin Chen
2023-05-24 23:01 ` Justin Chen
2023-05-24 23:01 ` [PATCH net-next v5 6/6] MAINTAINERS: ASP 2.0 Ethernet driver maintainers Justin Chen
2023-05-24 23:01 ` Justin Chen
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20230525205454.1c766852@kernel.org \
--to=kuba@kernel.org \
--cc=andrew@lunn.ch \
--cc=bcm-kernel-feedback-list@broadcom.com \
--cc=christian.koenig@amd.com \
--cc=conor+dt@kernel.org \
--cc=davem@davemloft.net \
--cc=devicetree@vger.kernel.org \
--cc=dri-devel@lists.freedesktop.org \
--cc=edumazet@google.com \
--cc=florian.fainelli@broadcom.com \
--cc=hkallweit1@gmail.com \
--cc=justin.chen@broadcom.com \
--cc=krzysztof.kozlowski+dt@linaro.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux@armlinux.org.uk \
--cc=netdev@vger.kernel.org \
--cc=opendmb@gmail.com \
--cc=pabeni@redhat.com \
--cc=richardcochran@gmail.com \
--cc=robh+dt@kernel.org \
--cc=simon.horman@corigine.com \
--cc=sumit.semwal@linaro.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.