All of lore.kernel.org
 help / color / mirror / Atom feed
From: Steen Hegelund <steen.hegelund@microchip.com>
To: Andrew Lunn <andrew@lunn.ch>
Cc: "David S. Miller" <davem@davemloft.net>,
	Jakub Kicinski <kuba@kernel.org>,
	Russell King <linux@armlinux.org.uk>,
	Lars Povlsen <lars.povlsen@microchip.com>,
	Bjarni Jonasson <bjarni.jonasson@microchip.com>,
	Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>,
	Alexandre Belloni <alexandre.belloni@bootlin.com>,
	Madalin Bucur <madalin.bucur@oss.nxp.com>,
	Nicolas Ferre <nicolas.ferre@microchip.com>,
	Mark Einon <mark.einon@gmail.com>,
	Masahiro Yamada <masahiroy@kernel.org>,
	Arnd Bergmann <arnd@arndb.de>, <netdev@vger.kernel.org>,
	<linux-kernel@vger.kernel.org>,
	<linux-arm-kernel@lists.infradead.org>
Subject: Re: [RFC PATCH v2 3/8] net: sparx5: add hostmode with phylink support
Date: Wed, 23 Dec 2020 14:29:03 +0100	[thread overview]
Message-ID: <20201223132903.gkle4552uahgqk55@mchp-dev-shegelun> (raw)
In-Reply-To: <20201222144141.GK3107610@lunn.ch>

Hi Andrew,

On 22.12.2020 15:41, Andrew Lunn wrote:
>EXTERNAL EMAIL: Do not click links or open attachments unless you know the content is safe
>
>On Tue, Dec 22, 2020 at 10:46:12AM +0100, Steen Hegelund wrote:
>> Hi Andrew,
>>
>> On Sat, 2020-12-19 at 20:51 +0100, Andrew Lunn wrote:
>> > EXTERNAL EMAIL: Do not click links or open attachments unless you
>> > know the content is safe
>> >
>> > > +     /* Create a phylink for PHY management.  Also handles SFPs */
>> > > +     spx5_port->phylink_config.dev = &spx5_port->ndev->dev;
>> > > +     spx5_port->phylink_co
>> > > nfig.type = PHYLINK_NETDEV;
>> > > +     spx5_port->phylink_config.pcs_poll = true;
>> > > +
>> > > +     /* phylink needs a valid interface mode to parse dt node */
>> > > +     if (phy_mode == PHY_INTERFACE_MODE_NA)
>> > > +             phy_mode = PHY_INTERFACE_MODE_10GBASER;
>> >
>> > Maybe just enforce a valid value in DT?
>>
>> Maybe I need to clarify that you must choose between an Ethernet cuPHY
>> or an SFP, so it is optional.
>
>But you also need to watch out for somebody putting a copper modules
>in an SFP port. phylink will then set the mode to SGMII for a 1G
>copper module, etc.
>
The cuPHY SFPs are handled by phylink out-of-the-box if the
kernel has added support for the particular cuPHY driver, and that is
done just by specifying the SFP phandle.
So here we just need to know if the user has attached a cuPHY directly
or an SFP.

The phylink_of_phy_connect function provides a way to add a cuPHY
direcly to the PHYLINK instance, but I have not found a way that you can
specify a specific cuPHY embedded in an SFP, so here PHYLINK determines
what is the appropriate PHY (driver) to use.

Could this be done in a simpler way?

>> > > +/* Configuration */
>> > > +static inline bool sparx5_use_cu_phy(struct sparx5_port *port)
>> > > +{
>> > > +     return port->conf.phy_mode != PHY_INTERFACE_MODE_NA;
>> > > +}
>> >
>> > That is a rather odd definition of copper.
>>
>> Should I rather use a bool property to select between the two options
>> (cuPHY or SFP)?
>
>I guess what you are trying to indicate is between a hard wired Copper
>PHY and an SFP cage? You have some sort of MII switch which allows the
>MAC to be connected to either the QSGMII PHY, or an SFP cage? But
>since the SFP cage could be populated with a copper PHY, and PHYLINK
>will then instantiate a phylib copper PHY driver for it, looking at
>phy_mode is not reliable. You need a property which selects the port,
>not the technology.

Yes the intention was to be able to distinguish between the hardwired 
cuPHY case and the SFP case.

I am OK with adding a property to distinguish between the two cases, but
if the SFP handle is present, PHYLINK has been able to handle an
embedded cuPHY (if the driver is available) and use that in the tests
that I have done so far. So my thinking was that if a phy handle is
present, then the user wants a directly attached cuPHY, not an SFP.

>
>> > > +static int sparx5_port_open(struct net_device *ndev)
>> > > +{
>> > > +     struct sparx5_port *port = netdev_priv(ndev);
>> > > +     int err = 0;
>> > > +
>> > > +     err = phylink_of_phy_connect(port->phylink, port->of_node,
>> > > 0);
>> > > +     if (err) {
>> > > +             netdev_err(ndev, "Could not attach to PHY\n");
>> > > +             return err;
>> > > +     }
>> > > +
>> > > +     phylink_start(port->phylink);
>> > > +
>> > > +     if (!ndev->phydev) {
>> >
>> > Humm. When is ndev->phydev set? I don't think phylink ever sets it.
>>
>> Indirectly: phylink_of_phy_connect uses phy_attach_direct and that sets
>> the phydev.
>
>Ah, O.K. But watch out for a copper SFP module!

Hmm, my expectation is that we have this covered by now.

>
>> > > +static void sparx5_xtr_grp(struct sparx5 *sparx5, u8 grp, bool
>> > > byte_swap)
>> > > +{
>> > > +     int i, byte_cnt = 0;
>> > > +     bool eof_flag = false, pruned_flag = false, abort_flag =
>> > > false;
>> > > +     u32 ifh[IFH_LEN];
>> > > +     struct sk_buff *skb;
>> > > +     struct frame_info fi;
>> > > +     struct sparx5_port *port;
>> > > +     struct net_device *netdev;
>> > > +     u32 *rxbuf;
>> > > +
>> > > +     /* Get IFH */
>> > > +     for (i = 0; i < IFH_LEN; i++)
>> > > +             ifh[i] = spx5_rd(sparx5, QS_XTR_RD(grp));
>> > > +
>> > > +     /* Decode IFH (whats needed) */
>> > > +     sparx5_ifh_parse(ifh, &fi);
>> > > +
>> > > +     /* Map to port netdev */
>> > > +     port = fi.src_port < SPX5_PORTS ?
>> > > +             sparx5->ports[fi.src_port] : NULL;
>> > > +     if (!port || !port->ndev) {
>> > > +             dev_err(sparx5->dev, "Data on inactive port %d\n",
>> > > fi.src_port);
>> > > +             sparx5_xtr_flush(sparx5, grp);
>> > > +             return;
>> > > +     }
>> > > +
>> > > +     /* Have netdev, get skb */
>> > > +     netdev = port->ndev;
>> > > +     skb = netdev_alloc_skb(netdev, netdev->mtu + ETH_HLEN);
>> > > +     if (!skb) {
>> > > +             sparx5_xtr_flush(sparx5, grp);
>> > > +             dev_err(sparx5->dev, "No skb allocated\n");
>> > > +             return;
>> > > +     }
>> > > +     rxbuf = (u32 *)skb->data;
>> > > +
>> > > +     /* Now, pull frame data */
>> > > +     while (!eof_flag) {
>> > > +             u32 val = spx5_rd(sparx5, QS_XTR_RD(grp));
>> > > +             u32 cmp = val;
>> > > +
>> > > +             if (byte_swap)
>> > > +                     cmp = ntohl((__force __be32)val);
>> > > +
>> > > +             switch (cmp) {
>> > > +             case XTR_NOT_READY:
>> > > +                     break;
>> > > +             case XTR_ABORT:
>> > > +                     /* No accompanying data */
>> > > +                     abort_flag = true;
>> > > +                     eof_flag = true;
>> > > +                     break;
>> > > +             case XTR_EOF_0:
>> > > +             case XTR_EOF_1:
>> > > +             case XTR_EOF_2:
>> > > +             case XTR_EOF_3:
>> > > +                     /* This assumes STATUS_WORD_POS == 1, Status
>> > > +                      * just after last data
>> > > +                      */
>> > > +                     byte_cnt -= (4 - XTR_VALID_BYTES(val));
>> > > +                     eof_flag = true;
>> > > +                     break;
>> > > +             case XTR_PRUNED:
>> > > +                     /* But get the last 4 bytes as well */
>> > > +                     eof_flag = true;
>> > > +                     pruned_flag = true;
>> > > +                     fallthrough;
>> > > +             case XTR_ESCAPE:
>> > > +                     *rxbuf = spx5_rd(sparx5, QS_XTR_RD(grp));
>> > > +                     byte_cnt += 4;
>> > > +                     rxbuf++;
>> > > +                     break;
>> > > +             default:
>> > > +                     *rxbuf = val;
>> > > +                     byte_cnt += 4;
>> > > +                     rxbuf++;
>> > > +             }
>> > > +     }
>> > > +
>> > > +     if (abort_flag || pruned_flag || !eof_flag) {
>> > > +             netdev_err(netdev, "Discarded frame: abort:%d
>> > > pruned:%d eof:%d\n",
>> > > +                        abort_flag, pruned_flag, eof_flag);
>> > > +             kfree_skb(skb);
>> > > +             return;
>> > > +     }
>> > > +
>> > > +     if (!netif_oper_up(netdev)) {
>> > > +             netdev_err(netdev, "Discarded frame: Interface not
>> > > up\n");
>> > > +             kfree_skb(skb);
>> > > +             return;
>> > > +     }
>> >
>> > Why is it sending frames when it is not up?
>>
>> This is intended for received frames. A situation where the lower
>> layers have been enabled correctly but not the port.
>
>But why should that happen? It suggests you have the order wrong. The
>lower level should only be enabled once the port is opened.

Yes, on second thought I think this was added to capture an error
situation with a particular cuPHY that we were testing.
It should be removed now.
>
>> > No DMA? What sort of performance do you get? Enough for the odd BPDU,
>> > IGMP frame etc, but i guess you don't want any real bulk data to be
>> > sent this way?
>>
>> Yes the register based injection/extration is not going to be fast, but
>> the FDMA and its driver is being sent later as separate series to keep
>> the size of this review down.
>
>FDMA?

Ah, I should qualify this a bit more: A "Frame DMA" to transfer rx/tx
frames via CPU ports instead of the register based injection/extraction
that is in the driver at the moment.
>
>I need a bit more background here, just to make use this should be a
>pure switchdev driver and not a DSA driver.
>
It is not a DSA driver (if I have understood the principle correctly).
>>
>> >
>> > > +irqreturn_t sparx5_xtr_handler(int irq, void *_sparx5)
>> > > +{
>> > > +     struct sparx5 *sparx5 = _sparx5;
>> > > +
>> > > +     /* Check data in queue */
>> > > +     while (spx5_rd(sparx5, QS_XTR_DATA_PRESENT) & BIT(XTR_QUEUE))
>> > > +             sparx5_xtr_grp(sparx5, XTR_QUEUE, false);
>> > > +
>> > > +     return IRQ_HANDLED;
>> > > +}
>> >
>> > Is there any sort of limit how many times this will loop? If somebody
>> > is blasting 10Gbps at the CPU, will it ever get out of this loop?
>>
>> Hmmm, not at the moment but this is because the FDMA driver is intended
>> to be used in these scenarios.
>
>So throwing out an idea, which might be terrible. How about limiting
>it to 64 loops, the same as the NAPI poll? That might allow the
>machine to get some work done before the next interrupt? Does the
>hardware do interrupt coalescing? But is this is going to be quickly
>thrown away and replaced with FDMA, don't spend too much time on it.

I agree with you.  I will put a cap on the number of loops.

>
>         Andrew

BR
Steen

---------------------------------------
Steen Hegelund
steen.hegelund@microchip.com

WARNING: multiple messages have this Message-ID (diff)
From: Steen Hegelund <steen.hegelund@microchip.com>
To: Andrew Lunn <andrew@lunn.ch>
Cc: Bjarni Jonasson <bjarni.jonasson@microchip.com>,
	Alexandre Belloni <alexandre.belloni@bootlin.com>,
	linux-kernel@vger.kernel.org, Arnd Bergmann <arnd@arndb.de>,
	Madalin Bucur <madalin.bucur@oss.nxp.com>,
	netdev@vger.kernel.org, Masahiro Yamada <masahiroy@kernel.org>,
	Russell King <linux@armlinux.org.uk>,
	Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>,
	linux-arm-kernel@lists.infradead.org,
	Mark Einon <mark.einon@gmail.com>,
	Jakub Kicinski <kuba@kernel.org>,
	"David S. Miller" <davem@davemloft.net>,
	Lars Povlsen <lars.povlsen@microchip.com>
Subject: Re: [RFC PATCH v2 3/8] net: sparx5: add hostmode with phylink support
Date: Wed, 23 Dec 2020 14:29:03 +0100	[thread overview]
Message-ID: <20201223132903.gkle4552uahgqk55@mchp-dev-shegelun> (raw)
In-Reply-To: <20201222144141.GK3107610@lunn.ch>

Hi Andrew,

On 22.12.2020 15:41, Andrew Lunn wrote:
>EXTERNAL EMAIL: Do not click links or open attachments unless you know the content is safe
>
>On Tue, Dec 22, 2020 at 10:46:12AM +0100, Steen Hegelund wrote:
>> Hi Andrew,
>>
>> On Sat, 2020-12-19 at 20:51 +0100, Andrew Lunn wrote:
>> > EXTERNAL EMAIL: Do not click links or open attachments unless you
>> > know the content is safe
>> >
>> > > +     /* Create a phylink for PHY management.  Also handles SFPs */
>> > > +     spx5_port->phylink_config.dev = &spx5_port->ndev->dev;
>> > > +     spx5_port->phylink_co
>> > > nfig.type = PHYLINK_NETDEV;
>> > > +     spx5_port->phylink_config.pcs_poll = true;
>> > > +
>> > > +     /* phylink needs a valid interface mode to parse dt node */
>> > > +     if (phy_mode == PHY_INTERFACE_MODE_NA)
>> > > +             phy_mode = PHY_INTERFACE_MODE_10GBASER;
>> >
>> > Maybe just enforce a valid value in DT?
>>
>> Maybe I need to clarify that you must choose between an Ethernet cuPHY
>> or an SFP, so it is optional.
>
>But you also need to watch out for somebody putting a copper modules
>in an SFP port. phylink will then set the mode to SGMII for a 1G
>copper module, etc.
>
The cuPHY SFPs are handled by phylink out-of-the-box if the
kernel has added support for the particular cuPHY driver, and that is
done just by specifying the SFP phandle.
So here we just need to know if the user has attached a cuPHY directly
or an SFP.

The phylink_of_phy_connect function provides a way to add a cuPHY
direcly to the PHYLINK instance, but I have not found a way that you can
specify a specific cuPHY embedded in an SFP, so here PHYLINK determines
what is the appropriate PHY (driver) to use.

Could this be done in a simpler way?

>> > > +/* Configuration */
>> > > +static inline bool sparx5_use_cu_phy(struct sparx5_port *port)
>> > > +{
>> > > +     return port->conf.phy_mode != PHY_INTERFACE_MODE_NA;
>> > > +}
>> >
>> > That is a rather odd definition of copper.
>>
>> Should I rather use a bool property to select between the two options
>> (cuPHY or SFP)?
>
>I guess what you are trying to indicate is between a hard wired Copper
>PHY and an SFP cage? You have some sort of MII switch which allows the
>MAC to be connected to either the QSGMII PHY, or an SFP cage? But
>since the SFP cage could be populated with a copper PHY, and PHYLINK
>will then instantiate a phylib copper PHY driver for it, looking at
>phy_mode is not reliable. You need a property which selects the port,
>not the technology.

Yes the intention was to be able to distinguish between the hardwired 
cuPHY case and the SFP case.

I am OK with adding a property to distinguish between the two cases, but
if the SFP handle is present, PHYLINK has been able to handle an
embedded cuPHY (if the driver is available) and use that in the tests
that I have done so far. So my thinking was that if a phy handle is
present, then the user wants a directly attached cuPHY, not an SFP.

>
>> > > +static int sparx5_port_open(struct net_device *ndev)
>> > > +{
>> > > +     struct sparx5_port *port = netdev_priv(ndev);
>> > > +     int err = 0;
>> > > +
>> > > +     err = phylink_of_phy_connect(port->phylink, port->of_node,
>> > > 0);
>> > > +     if (err) {
>> > > +             netdev_err(ndev, "Could not attach to PHY\n");
>> > > +             return err;
>> > > +     }
>> > > +
>> > > +     phylink_start(port->phylink);
>> > > +
>> > > +     if (!ndev->phydev) {
>> >
>> > Humm. When is ndev->phydev set? I don't think phylink ever sets it.
>>
>> Indirectly: phylink_of_phy_connect uses phy_attach_direct and that sets
>> the phydev.
>
>Ah, O.K. But watch out for a copper SFP module!

Hmm, my expectation is that we have this covered by now.

>
>> > > +static void sparx5_xtr_grp(struct sparx5 *sparx5, u8 grp, bool
>> > > byte_swap)
>> > > +{
>> > > +     int i, byte_cnt = 0;
>> > > +     bool eof_flag = false, pruned_flag = false, abort_flag =
>> > > false;
>> > > +     u32 ifh[IFH_LEN];
>> > > +     struct sk_buff *skb;
>> > > +     struct frame_info fi;
>> > > +     struct sparx5_port *port;
>> > > +     struct net_device *netdev;
>> > > +     u32 *rxbuf;
>> > > +
>> > > +     /* Get IFH */
>> > > +     for (i = 0; i < IFH_LEN; i++)
>> > > +             ifh[i] = spx5_rd(sparx5, QS_XTR_RD(grp));
>> > > +
>> > > +     /* Decode IFH (whats needed) */
>> > > +     sparx5_ifh_parse(ifh, &fi);
>> > > +
>> > > +     /* Map to port netdev */
>> > > +     port = fi.src_port < SPX5_PORTS ?
>> > > +             sparx5->ports[fi.src_port] : NULL;
>> > > +     if (!port || !port->ndev) {
>> > > +             dev_err(sparx5->dev, "Data on inactive port %d\n",
>> > > fi.src_port);
>> > > +             sparx5_xtr_flush(sparx5, grp);
>> > > +             return;
>> > > +     }
>> > > +
>> > > +     /* Have netdev, get skb */
>> > > +     netdev = port->ndev;
>> > > +     skb = netdev_alloc_skb(netdev, netdev->mtu + ETH_HLEN);
>> > > +     if (!skb) {
>> > > +             sparx5_xtr_flush(sparx5, grp);
>> > > +             dev_err(sparx5->dev, "No skb allocated\n");
>> > > +             return;
>> > > +     }
>> > > +     rxbuf = (u32 *)skb->data;
>> > > +
>> > > +     /* Now, pull frame data */
>> > > +     while (!eof_flag) {
>> > > +             u32 val = spx5_rd(sparx5, QS_XTR_RD(grp));
>> > > +             u32 cmp = val;
>> > > +
>> > > +             if (byte_swap)
>> > > +                     cmp = ntohl((__force __be32)val);
>> > > +
>> > > +             switch (cmp) {
>> > > +             case XTR_NOT_READY:
>> > > +                     break;
>> > > +             case XTR_ABORT:
>> > > +                     /* No accompanying data */
>> > > +                     abort_flag = true;
>> > > +                     eof_flag = true;
>> > > +                     break;
>> > > +             case XTR_EOF_0:
>> > > +             case XTR_EOF_1:
>> > > +             case XTR_EOF_2:
>> > > +             case XTR_EOF_3:
>> > > +                     /* This assumes STATUS_WORD_POS == 1, Status
>> > > +                      * just after last data
>> > > +                      */
>> > > +                     byte_cnt -= (4 - XTR_VALID_BYTES(val));
>> > > +                     eof_flag = true;
>> > > +                     break;
>> > > +             case XTR_PRUNED:
>> > > +                     /* But get the last 4 bytes as well */
>> > > +                     eof_flag = true;
>> > > +                     pruned_flag = true;
>> > > +                     fallthrough;
>> > > +             case XTR_ESCAPE:
>> > > +                     *rxbuf = spx5_rd(sparx5, QS_XTR_RD(grp));
>> > > +                     byte_cnt += 4;
>> > > +                     rxbuf++;
>> > > +                     break;
>> > > +             default:
>> > > +                     *rxbuf = val;
>> > > +                     byte_cnt += 4;
>> > > +                     rxbuf++;
>> > > +             }
>> > > +     }
>> > > +
>> > > +     if (abort_flag || pruned_flag || !eof_flag) {
>> > > +             netdev_err(netdev, "Discarded frame: abort:%d
>> > > pruned:%d eof:%d\n",
>> > > +                        abort_flag, pruned_flag, eof_flag);
>> > > +             kfree_skb(skb);
>> > > +             return;
>> > > +     }
>> > > +
>> > > +     if (!netif_oper_up(netdev)) {
>> > > +             netdev_err(netdev, "Discarded frame: Interface not
>> > > up\n");
>> > > +             kfree_skb(skb);
>> > > +             return;
>> > > +     }
>> >
>> > Why is it sending frames when it is not up?
>>
>> This is intended for received frames. A situation where the lower
>> layers have been enabled correctly but not the port.
>
>But why should that happen? It suggests you have the order wrong. The
>lower level should only be enabled once the port is opened.

Yes, on second thought I think this was added to capture an error
situation with a particular cuPHY that we were testing.
It should be removed now.
>
>> > No DMA? What sort of performance do you get? Enough for the odd BPDU,
>> > IGMP frame etc, but i guess you don't want any real bulk data to be
>> > sent this way?
>>
>> Yes the register based injection/extration is not going to be fast, but
>> the FDMA and its driver is being sent later as separate series to keep
>> the size of this review down.
>
>FDMA?

Ah, I should qualify this a bit more: A "Frame DMA" to transfer rx/tx
frames via CPU ports instead of the register based injection/extraction
that is in the driver at the moment.
>
>I need a bit more background here, just to make use this should be a
>pure switchdev driver and not a DSA driver.
>
It is not a DSA driver (if I have understood the principle correctly).
>>
>> >
>> > > +irqreturn_t sparx5_xtr_handler(int irq, void *_sparx5)
>> > > +{
>> > > +     struct sparx5 *sparx5 = _sparx5;
>> > > +
>> > > +     /* Check data in queue */
>> > > +     while (spx5_rd(sparx5, QS_XTR_DATA_PRESENT) & BIT(XTR_QUEUE))
>> > > +             sparx5_xtr_grp(sparx5, XTR_QUEUE, false);
>> > > +
>> > > +     return IRQ_HANDLED;
>> > > +}
>> >
>> > Is there any sort of limit how many times this will loop? If somebody
>> > is blasting 10Gbps at the CPU, will it ever get out of this loop?
>>
>> Hmmm, not at the moment but this is because the FDMA driver is intended
>> to be used in these scenarios.
>
>So throwing out an idea, which might be terrible. How about limiting
>it to 64 loops, the same as the NAPI poll? That might allow the
>machine to get some work done before the next interrupt? Does the
>hardware do interrupt coalescing? But is this is going to be quickly
>thrown away and replaced with FDMA, don't spend too much time on it.

I agree with you.  I will put a cap on the number of loops.

>
>         Andrew

BR
Steen

---------------------------------------
Steen Hegelund
steen.hegelund@microchip.com

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

  reply	other threads:[~2020-12-23 13:30 UTC|newest]

Thread overview: 75+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-12-17  7:51 [RFC PATCH v2 0/8] Adding the Sparx5 Switch Driver Steen Hegelund
2020-12-17  7:51 ` Steen Hegelund
2020-12-17  7:51 ` [RFC PATCH v2 1/8] dt-bindings: net: sparx5: Add sparx5-switch bindings Steen Hegelund
2020-12-17  7:51   ` Steen Hegelund
2020-12-19 17:54   ` Andrew Lunn
2020-12-19 17:54     ` Andrew Lunn
2020-12-21  0:55   ` Florian Fainelli
2020-12-21  0:55     ` Florian Fainelli
2020-12-21 10:00     ` Steen Hegelund
2020-12-21 10:00       ` Steen Hegelund
2020-12-21 21:40   ` Rob Herring
2020-12-21 21:40     ` Rob Herring
2020-12-22  7:30     ` Steen Hegelund
2020-12-22  7:30       ` Steen Hegelund
2020-12-17  7:51 ` [RFC PATCH v2 2/8] net: sparx5: add the basic sparx5 driver Steen Hegelund
2020-12-19 19:11   ` Andrew Lunn
2020-12-19 19:11     ` Andrew Lunn
2020-12-22 13:50     ` Steen Hegelund
2020-12-22 13:50       ` Steen Hegelund
2020-12-22 15:01       ` Andrew Lunn
2020-12-22 15:01         ` Andrew Lunn
2020-12-22 16:56         ` Alexandre Belloni
2020-12-22 16:56           ` Alexandre Belloni
2020-12-23  9:03           ` Lars Povlsen
2020-12-23  9:03             ` Lars Povlsen
2020-12-23  8:52         ` Steen Hegelund
2020-12-23  8:52           ` Steen Hegelund
2020-12-17  7:51 ` [RFC PATCH v2 3/8] net: sparx5: add hostmode with phylink support Steen Hegelund
2020-12-17  7:51   ` Steen Hegelund
2020-12-19 19:51   ` Andrew Lunn
2020-12-19 19:51     ` Andrew Lunn
2020-12-22  9:46     ` Steen Hegelund
2020-12-22  9:46       ` Steen Hegelund
2020-12-22 14:41       ` Andrew Lunn
2020-12-22 14:41         ` Andrew Lunn
2020-12-23 13:29         ` Steen Hegelund [this message]
2020-12-23 13:29           ` Steen Hegelund
2020-12-23 20:58         ` Alexandre Belloni
2020-12-23 20:58           ` Alexandre Belloni
2020-12-23 21:05           ` Andrew Lunn
2020-12-23 21:05             ` Andrew Lunn
2020-12-17  7:51 ` [RFC PATCH v2 4/8] net: sparx5: add port module support Steen Hegelund
2020-12-17  7:51   ` Steen Hegelund
2020-12-20 23:35   ` Andrew Lunn
2020-12-20 23:35     ` Andrew Lunn
2020-12-22 14:55     ` Bjarni Jonasson
2020-12-22 14:55       ` Bjarni Jonasson
2020-12-22 15:08       ` Andrew Lunn
2020-12-22 15:08         ` Andrew Lunn
2020-12-17  7:51 ` [RFC PATCH v2 5/8] net: sparx5: add switching, vlan and mactable support Steen Hegelund
2020-12-17  7:51   ` Steen Hegelund
2020-12-21  0:25   ` Andrew Lunn
2020-12-21  0:25     ` Andrew Lunn
2020-12-23 13:54     ` Steen Hegelund
2020-12-23 13:54       ` Steen Hegelund
2020-12-17  7:51 ` [RFC PATCH v2 6/8] net: sparx5: add calendar bandwidth allocation support Steen Hegelund
2020-12-17  7:51   ` Steen Hegelund
2020-12-17  7:51 ` [RFC PATCH v2 7/8] net: sparx5: add ethtool configuration and statistics support Steen Hegelund
2020-12-17  7:51   ` Steen Hegelund
2020-12-19 23:31   ` Andrew Lunn
2020-12-19 23:31     ` Andrew Lunn
2020-12-17  7:51 ` [RFC PATCH v2 8/8] arm64: dts: sparx5: Add the Sparx5 switch node Steen Hegelund
2020-12-17  7:51   ` Steen Hegelund
2020-12-19 20:24   ` Andrew Lunn
2020-12-19 20:24     ` Andrew Lunn
2020-12-23 14:31     ` Steen Hegelund
2020-12-23 14:31       ` Steen Hegelund
2020-12-23 15:49       ` Andrew Lunn
2020-12-23 15:49         ` Andrew Lunn
2020-12-21  0:58 ` [RFC PATCH v2 0/8] Adding the Sparx5 Switch Driver Florian Fainelli
2020-12-21  0:58   ` Florian Fainelli
2020-12-21 14:31   ` Steen Hegelund
2020-12-21 14:31     ` Steen Hegelund
2020-12-22 11:29   ` Lars Povlsen
2020-12-22 11:29     ` Lars Povlsen

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=20201223132903.gkle4552uahgqk55@mchp-dev-shegelun \
    --to=steen.hegelund@microchip.com \
    --cc=UNGLinuxDriver@microchip.com \
    --cc=alexandre.belloni@bootlin.com \
    --cc=andrew@lunn.ch \
    --cc=arnd@arndb.de \
    --cc=bjarni.jonasson@microchip.com \
    --cc=davem@davemloft.net \
    --cc=kuba@kernel.org \
    --cc=lars.povlsen@microchip.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux@armlinux.org.uk \
    --cc=madalin.bucur@oss.nxp.com \
    --cc=mark.einon@gmail.com \
    --cc=masahiroy@kernel.org \
    --cc=netdev@vger.kernel.org \
    --cc=nicolas.ferre@microchip.com \
    /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.