mail archive of the barebox mailing list
 help / color / mirror / Atom feed
From: Sascha Hauer <sha@pengutronix.de>
To: Oleksij Rempel <o.rempel@pengutronix.de>
Cc: barebox@lists.infradead.org
Subject: Re: [PATCH v5 00/14] provide DSA support
Date: Thu, 14 Apr 2022 09:42:34 +0200	[thread overview]
Message-ID: <20220414074234.GG4012@pengutronix.de> (raw)
In-Reply-To: <20220413082205.429509-1-o.rempel@pengutronix.de>

On Wed, Apr 13, 2022 at 10:21:51AM +0200, Oleksij Rempel wrote:
> changes v5:
> - add dev_print_hex_dump() support
> - drop rx_preprocessored packed on error
> - dsa: drop of_device_ensure_probed
> - dsa: rework Kconfig
> - sja1105: link device config to the of_matching data.
> - KSZ9477: add code origin comment
> - ethlog: do not check on already registered monitor
> 
> changes v4:
> - ethlog: add patch description
> - dsa: fix spelling
> - dsa: make sure cpu port count incremented on every port
> - dsa: rework error handling
> - dsa: make sure port_enable/port_disable are optional
> - dsa: make use of of_phy_register_fixed_link()
> - sja1105: use dev_err instead of printf
> - sja1105: do sanity check on dsa_register
> - ksz9477: rework spi_write function
> - ksz9477: do not clean PORT_TX/RX_ENABLE flags
> 
> changes v3:
> - remove no needed work artifact ksz9477_old.c
> 
> changes v2:
> - mane sure optional functions are called conditionally
> - add support for ksz9477 and ksz9893
> - add ethlog, kind of replacement for tshark or tcpdump
> 
> Oleksij Rempel (14):
>   net: add RX preprocessor support
>   net: add of_find_eth_device_by_node() function
>   net: phy: export of_phy_register_fixed_link() function
>   net: add DSA framework to support basic switch functionality
>   driver: add dev_get_priv() helper
>   net: port part of if_vlan header from kernel v5.17
>   spi: port spi_sync_transfer() function from kernel v5.17
>   net: mdio: add MDIO_DEVAD_NONE define
>   net: phy: make sure MDIO bus is probed if we search for the PHY
>   of_net: add rev-rmii support
>   net: dsa: add support for SJA11xx switches
>   net: dsa: add KSZ9477 switch SPI driver
>   hexdump: provide support for dev_print_hex_dump()
>   add ethlog command
> 
>  commands/Kconfig                    |    8 +
>  commands/Makefile                   |    1 +
>  commands/ethlog.c                   |   80 +
>  drivers/net/Kconfig                 |   31 +
>  drivers/net/Makefile                |    3 +
>  drivers/net/dsa.c                   |  444 ++++
>  drivers/net/ksz9477.c               |  566 +++++
>  drivers/net/phy/phy.c               |    5 +-
>  drivers/net/sja1105.c               | 2987 +++++++++++++++++++++++++++
>  drivers/of/of_net.c                 |    1 +
>  include/driver.h                    |    5 +
>  include/dsa.h                       |   90 +
>  include/linux/if_vlan.h             |   56 +
>  include/linux/mdio.h                |    2 +
>  include/linux/phy.h                 |    3 +
>  include/net.h                       |   15 +
>  include/platform_data/ksz9477_reg.h | 1665 +++++++++++++++
>  include/printk.h                    |   14 +-
>  include/spi/spi.h                   |   24 +
>  lib/hexdump.c                       |   22 +-
>  net/eth.c                           |   20 +-
>  net/net.c                           |   14 +
>  22 files changed, 6042 insertions(+), 14 deletions(-)
>  create mode 100644 commands/ethlog.c
>  create mode 100644 drivers/net/dsa.c
>  create mode 100644 drivers/net/ksz9477.c
>  create mode 100644 drivers/net/sja1105.c
>  create mode 100644 include/dsa.h
>  create mode 100644 include/linux/if_vlan.h
>  create mode 100644 include/platform_data/ksz9477_reg.h

Applied, thanks

Sascha


-- 
Pengutronix e.K.                           |                             |
Steuerwalder Str. 21                       | http://www.pengutronix.de/  |
31137 Hildesheim, Germany                  | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |

_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox


      parent reply	other threads:[~2022-04-14  7:44 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-04-13  8:21 Oleksij Rempel
2022-04-13  8:21 ` [PATCH v5 01/14] net: add RX preprocessor support Oleksij Rempel
2022-04-13  8:21 ` [PATCH v5 02/14] net: add of_find_eth_device_by_node() function Oleksij Rempel
2022-04-13  8:21 ` [PATCH v5 03/14] net: phy: export of_phy_register_fixed_link() function Oleksij Rempel
2022-04-13  8:21 ` [PATCH v5 04/14] net: add DSA framework to support basic switch functionality Oleksij Rempel
2022-04-13  8:21 ` [PATCH v5 05/14] driver: add dev_get_priv() helper Oleksij Rempel
2022-04-13  8:21 ` [PATCH v5 06/14] net: port part of if_vlan header from kernel v5.17 Oleksij Rempel
2022-04-13  8:21 ` [PATCH v5 07/14] spi: port spi_sync_transfer() function " Oleksij Rempel
2022-04-13  8:21 ` [PATCH v5 08/14] net: mdio: add MDIO_DEVAD_NONE define Oleksij Rempel
2022-04-13  8:22 ` [PATCH v5 09/14] net: phy: make sure MDIO bus is probed if we search for the PHY Oleksij Rempel
2022-04-13  8:22 ` [PATCH v5 10/14] of_net: add rev-rmii support Oleksij Rempel
2022-04-13  8:22 ` [PATCH v5 11/14] net: dsa: add support for SJA11xx switches Oleksij Rempel
2022-04-13  8:22 ` [PATCH v5 12/14] net: dsa: add KSZ9477 switch SPI driver Oleksij Rempel
2022-07-30  9:10   ` Ahmad Fatoum
2022-07-30 11:27     ` Oleksij Rempel
2022-04-13  8:22 ` [PATCH v5 13/14] hexdump: provide support for dev_print_hex_dump() Oleksij Rempel
2022-04-13  8:22 ` [PATCH v5 14/14] add ethlog command Oleksij Rempel
2022-04-14  7:42 ` Sascha Hauer [this message]

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=20220414074234.GG4012@pengutronix.de \
    --to=sha@pengutronix.de \
    --cc=barebox@lists.infradead.org \
    --cc=o.rempel@pengutronix.de \
    /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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox