[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20220826063816.948397-1-mattias.forsblad@gmail.com>
Date: Fri, 26 Aug 2022 08:38:13 +0200
From: Mattias Forsblad <mattias.forsblad@...il.com>
To: netdev@...r.kernel.org
Cc: Andrew Lunn <andrew@...n.ch>,
Vivien Didelot <vivien.didelot@...il.com>,
Florian Fainelli <f.fainelli@...il.com>,
Vladimir Oltean <olteanv@...il.com>,
"David S . Miller" <davem@...emloft.net>,
Eric Dumazet <edumazet@...gle.com>,
Jakub Kicinski <kuba@...nel.org>,
Paolo Abeni <pabeni@...hat.com>,
Mattias Forsblad <mattias.forsblad@...il.com>
Subject: [PATCH net-next v2 0/3] net: dsa: mv88e6xxx: Add RMU support
The Marvell SOHO switches have the ability to receive and transmit
Remote Management Frames (Frame2Reg) to the CPU through the
attached network interface.
This is handled by the Remote Management Unit (RMU).
These frames can contain different payloads:
single switch register read and writes, daisy chained switch
register read and writes, RMON/MIB dump/dump clear and ATU dump.
The dump functions are very costly over MDIO but it's
only a couple of network packets via the RMU.
Next step could be to implement ATU dump.
We've found that the gain to use RMU for single register
read and writes is neglible.
RFC -> v1:
- Track master interface availability.
- Validate destination MAC for incoming frames.
- Rate limit outputs.
- Cleanup setup function validating upstream port on switch.
- Fix return values when setting up RMU.
- Prefix defines correctly.
- Fix aligned accesses.
- Validate that switch exists for incoming frames.
- Split RMON stats function.
v1 -> v2:
- Remove unused variable.
Regards,
Mattias Forsblad
Mattias Forsblad (3):
dsa: Implement RMU layer in DSA
dsa: mv88e6xxx: Add support for RMU in select switches
rmon: Use RMU if available
drivers/net/dsa/mv88e6xxx/Makefile | 1 +
drivers/net/dsa/mv88e6xxx/chip.c | 54 +++++-
drivers/net/dsa/mv88e6xxx/chip.h | 20 ++
drivers/net/dsa/mv88e6xxx/global1.c | 84 +++++++++
drivers/net/dsa/mv88e6xxx/global1.h | 3 +
drivers/net/dsa/mv88e6xxx/rmu.c | 273 ++++++++++++++++++++++++++++
drivers/net/dsa/mv88e6xxx/rmu.h | 33 ++++
include/net/dsa.h | 7 +
include/uapi/linux/if_ether.h | 1 +
net/dsa/tag_dsa.c | 109 ++++++++++-
10 files changed, 575 insertions(+), 10 deletions(-)
create mode 100644 drivers/net/dsa/mv88e6xxx/rmu.c
create mode 100644 drivers/net/dsa/mv88e6xxx/rmu.h
--
2.25.1
Powered by blists - more mailing lists