mail archive of the barebox mailing list
 help / color / mirror / Atom feed
* [PATCH v2 00/12] provide DSA support
@ 2022-04-07  8:56 Oleksij Rempel
  2022-04-07  8:56 ` [PATCH v2 01/12] net: add RX preprocessor support Oleksij Rempel
                   ` (11 more replies)
  0 siblings, 12 replies; 13+ messages in thread
From: Oleksij Rempel @ 2022-04-07  8:56 UTC (permalink / raw)
  To: barebox; +Cc: Oleksij Rempel

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 (12):
  net: add RX preprocessor support
  net: add of_find_eth_device_by_node() 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
  add ethlog

 commands/Kconfig                    |    8 +
 commands/Makefile                   |    1 +
 commands/ethlog.c                   |   82 +
 drivers/net/Kconfig                 |   29 +
 drivers/net/Makefile                |    3 +
 drivers/net/dsa.c                   |  460 ++++
 drivers/net/ksz9477.c               |  570 +++++
 drivers/net/ksz9477_old.c           |  561 +++++
 drivers/net/phy/phy.c               |    1 +
 drivers/net/sja1105.c               | 3000 +++++++++++++++++++++++++++
 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                 |    1 +
 include/net.h                       |   15 +
 include/platform_data/ksz9477_reg.h | 1665 +++++++++++++++
 include/spi/spi.h                   |   24 +
 net/eth.c                           |   20 +-
 net/net.c                           |    9 +
 21 files changed, 6601 insertions(+), 2 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/ksz9477_old.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

-- 
2.30.2


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


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

end of thread, other threads:[~2022-04-07  9:21 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-04-07  8:56 [PATCH v2 00/12] provide DSA support Oleksij Rempel
2022-04-07  8:56 ` [PATCH v2 01/12] net: add RX preprocessor support Oleksij Rempel
2022-04-07  8:56 ` [PATCH v2 02/12] net: add of_find_eth_device_by_node() function Oleksij Rempel
2022-04-07  8:56 ` [PATCH v2 03/12] net: add DSA framework to support basic switch functionality Oleksij Rempel
2022-04-07  8:56 ` [PATCH v2 04/12] driver: add dev_get_priv() helper Oleksij Rempel
2022-04-07  8:56 ` [PATCH v2 05/12] net: port part of if_vlan header from kernel v5.17 Oleksij Rempel
2022-04-07  8:56 ` [PATCH v2 06/12] spi: port spi_sync_transfer() function " Oleksij Rempel
2022-04-07  8:57 ` [PATCH v2 07/12] net: mdio: add MDIO_DEVAD_NONE define Oleksij Rempel
2022-04-07  8:57 ` [PATCH v2 08/12] net: phy: make sure MDIO bus is probed if we search for the PHY Oleksij Rempel
2022-04-07  8:57 ` [PATCH v2 09/12] of_net: add rev-rmii support Oleksij Rempel
2022-04-07  8:57 ` [PATCH v2 10/12] net: dsa: add support for SJA11xx switches Oleksij Rempel
2022-04-07  8:57 ` [PATCH v2 11/12] net: dsa: add KSZ9477 switch SPI driver Oleksij Rempel
2022-04-07  8:57 ` [PATCH v2 12/12] add ethlog Oleksij Rempel

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox