mbox series

[0/4] net: dsa: hsr: Enable HSR HW offloading for KSZ9477

Message ID 20230829121132.414335-1-lukma@denx.de (mailing list archive)
Headers show
Series net: dsa: hsr: Enable HSR HW offloading for KSZ9477 | expand

Message

Lukasz Majewski Aug. 29, 2023, 12:11 p.m. UTC
This patch series provides support for HSR HW offloading in KSZ9477
switch IC.

To test this feature:
ip link add name hsr0 type hsr slave1 lan1 slave2 lan2 supervision 45 version 1
ifconfig lan1 up;ifconfig lan2 up
ifconfig hsr0 192.168.0.1 up

To remove HSR network device:
ip link del hsr0

Test HW:
Two KSZ9477-EVB boards with HSR ports set to "Port1" and "Port2".

Lukasz Majewski (4):
  net: dsa: Extend the dsa_switch structure to hold info about HSR ports
  net: dsa: Extend ksz9477 TAG setup to support HSR frames duplication
  net: dsa: hsr: Enable in KSZ9477 switch HW HSR offloading
  net: dsa: hsr: Provide generic HSR ksz_hsr_{join|leave} functions

 drivers/net/dsa/microchip/ksz9477.c    | 96 ++++++++++++++++++++++++++
 drivers/net/dsa/microchip/ksz9477.h    |  4 ++
 drivers/net/dsa/microchip/ksz_common.c | 69 ++++++++++++++++++
 include/net/dsa.h                      |  3 +
 net/dsa/tag_ksz.c                      |  5 ++
 5 files changed, 177 insertions(+)