mail archive of the barebox mailing list
 help / color / mirror / Atom feed
* [PATCH v1 0/9] add basic DSA support
@ 2022-03-21  9:25 Oleksij Rempel
  2022-03-21  9:25 ` [PATCH v1 1/9] net: add RX preprocessor support Oleksij Rempel
                   ` (8 more replies)
  0 siblings, 9 replies; 14+ messages in thread
From: Oleksij Rempel @ 2022-03-21  9:25 UTC (permalink / raw)
  To: barebox; +Cc: Oleksij Rempel

Add DSA support to be able to handle different ports of switch
controllers to handle as separate Ethernet devices.

With this patches different switch ports are visible and configurable
will existing barebox infrastructure. For example:
- dhcp ethX
- devinfo ethX
- ...

Oleksij Rempel (9):
  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
  net: dsa: add support for SJA11xx switches

 drivers/net/Kconfig     |   20 +
 drivers/net/Makefile    |    2 +
 drivers/net/dsa.c       |  385 ++++++
 drivers/net/phy/phy.c   |    1 +
 drivers/net/sja1105.c   | 2918 +++++++++++++++++++++++++++++++++++++++
 include/driver.h        |    5 +
 include/dsa.h           |   94 ++
 include/linux/if_vlan.h |   56 +
 include/linux/mdio.h    |    2 +
 include/net.h           |    4 +
 include/spi/spi.h       |   24 +
 net/eth.c               |   16 +
 net/net.c               |    6 +
 13 files changed, 3533 insertions(+)
 create mode 100644 drivers/net/dsa.c
 create mode 100644 drivers/net/sja1105.c
 create mode 100644 include/dsa.h
 create mode 100644 include/linux/if_vlan.h

-- 
2.30.2


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


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

end of thread, other threads:[~2022-03-28 12:24 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-03-21  9:25 [PATCH v1 0/9] add basic DSA support Oleksij Rempel
2022-03-21  9:25 ` [PATCH v1 1/9] net: add RX preprocessor support Oleksij Rempel
2022-03-21  9:25 ` [PATCH v1 2/9] net: add of_find_eth_device_by_node() function Oleksij Rempel
2022-03-21  9:26 ` [PATCH v1 3/9] net: add DSA framework to support basic switch functionality Oleksij Rempel
2022-03-25  9:37   ` Oleksij Rempel
2022-03-28 10:31   ` Sascha Hauer
2022-03-28 12:23     ` Oleksij Rempel
2022-03-21  9:26 ` [PATCH v1 4/9] driver: add dev_get_priv() helper Oleksij Rempel
2022-03-21  9:26 ` [PATCH v1 5/9] net: port part of if_vlan header from kernel v5.17 Oleksij Rempel
2022-03-21  9:26 ` [PATCH v1 6/9] spi: port spi_sync_transfer() function " Oleksij Rempel
2022-03-21  9:26 ` [PATCH v1 7/9] net: mdio: add MDIO_DEVAD_NONE define Oleksij Rempel
2022-03-21  9:26 ` [PATCH v1 8/9] net: phy: make sure MDIO bus is probed if we search for the PHY Oleksij Rempel
2022-03-21  9:26 ` [PATCH v1 9/9] net: dsa: add support for SJA11xx switches Oleksij Rempel
2022-03-28 10:40   ` Sascha Hauer

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