mbox series

[net-next,v5,0/6] net: lan966x: Add lan966x switch driver

Message ID 20211129124359.4069432-1-horatiu.vultur@microchip.com
Headers show
Series net: lan966x: Add lan966x switch driver | expand

Message

Horatiu Vultur Nov. 29, 2021, 12:43 p.m. UTC
This patch series add support for Microchip lan966x driver

The lan966x switch is a multi-port Gigabit AVB/TSN Ethernet Switch with
two integrated 10/100/1000Base-T PHYs. In addition to the integrated PHYs,
it supports up to 2RGMII/RMII, up to 3BASE-X/SERDES/2.5GBASE-X and up to
2 Quad-SGMII/Quad-USGMII interfaces.

Initially it adds support only for the ports to behave as simple
NIC cards. In the future patches it would be extended with other
functionality like Switchdev, PTP, Frame DMA, VCAP, etc.

v4->v5:
- more fixes to the reset of the switch, require all resources before
  activating the hardware
- fix to lan966x-switch binding
- implement get/set_pauseparam in ethtool_ops
- stop calling lan966x_port_link_down when calling lan966x_port_pcs_set and
  call it in lan966x_phylink_mac_link_down

v3->v4:
- add timeouts when injecting/extracting frames, in case the HW breaks
- simplify the creation of the IFH
- fix the order of operations in lan966x_cleanup_ports
- fixes to phylink based on Russel review

v2->v3:
- fix compiling issues for x86
- fix resource management in first patch

v1->v2:
- add new patch for MAINTAINERS
- add functions lan966x_mac_cpu_learn/forget
- fix build issues with second patch
- fix the reset of the switch, return error if there is no reset controller
- start to use phylink_mii_c22_pcs_decode_state and
  phylink_mii_c22_pcs_encode_advertisement to remove duplicate code

Horatiu Vultur (6):
  dt-bindings: net: lan966x: Add lan966x-switch bindings
  net: lan966x: add the basic lan966x driver
  net: lan966x: add port module support
  net: lan966x: add mactable support
  net: lan966x: add ethtool configuration and statistics
  net: lan966x: Update MAINTAINERS to include lan966x driver

 .../net/microchip,lan966x-switch.yaml         | 158 +++
 MAINTAINERS                                   |   7 +
 drivers/net/ethernet/microchip/Kconfig        |   1 +
 drivers/net/ethernet/microchip/Makefile       |   1 +
 .../net/ethernet/microchip/lan966x/Kconfig    |   7 +
 .../net/ethernet/microchip/lan966x/Makefile   |   9 +
 .../microchip/lan966x/lan966x_ethtool.c       | 682 +++++++++++++
 .../ethernet/microchip/lan966x/lan966x_ifh.h  | 173 ++++
 .../ethernet/microchip/lan966x/lan966x_mac.c  | 101 ++
 .../ethernet/microchip/lan966x/lan966x_main.c | 946 ++++++++++++++++++
 .../ethernet/microchip/lan966x/lan966x_main.h | 192 ++++
 .../microchip/lan966x/lan966x_phylink.c       | 127 +++
 .../ethernet/microchip/lan966x/lan966x_port.c | 412 ++++++++
 .../ethernet/microchip/lan966x/lan966x_regs.h | 730 ++++++++++++++
 14 files changed, 3546 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/net/microchip,lan966x-switch.yaml
 create mode 100644 drivers/net/ethernet/microchip/lan966x/Kconfig
 create mode 100644 drivers/net/ethernet/microchip/lan966x/Makefile
 create mode 100644 drivers/net/ethernet/microchip/lan966x/lan966x_ethtool.c
 create mode 100644 drivers/net/ethernet/microchip/lan966x/lan966x_ifh.h
 create mode 100644 drivers/net/ethernet/microchip/lan966x/lan966x_mac.c
 create mode 100644 drivers/net/ethernet/microchip/lan966x/lan966x_main.c
 create mode 100644 drivers/net/ethernet/microchip/lan966x/lan966x_main.h
 create mode 100644 drivers/net/ethernet/microchip/lan966x/lan966x_phylink.c
 create mode 100644 drivers/net/ethernet/microchip/lan966x/lan966x_port.c
 create mode 100644 drivers/net/ethernet/microchip/lan966x/lan966x_regs.h

Comments

patchwork-bot+netdevbpf@kernel.org Nov. 29, 2021, 1:10 p.m. UTC | #1
Hello:

This series was applied to netdev/net-next.git (master)
by David S. Miller <davem@davemloft.net>:

On Mon, 29 Nov 2021 13:43:53 +0100 you wrote:
> This patch series add support for Microchip lan966x driver
> 
> The lan966x switch is a multi-port Gigabit AVB/TSN Ethernet Switch with
> two integrated 10/100/1000Base-T PHYs. In addition to the integrated PHYs,
> it supports up to 2RGMII/RMII, up to 3BASE-X/SERDES/2.5GBASE-X and up to
> 2 Quad-SGMII/Quad-USGMII interfaces.
> 
> [...]

Here is the summary with links:
  - [net-next,v5,1/6] dt-bindings: net: lan966x: Add lan966x-switch bindings
    https://git.kernel.org/netdev/net-next/c/642fcf53a9ac
  - [net-next,v5,2/6] net: lan966x: add the basic lan966x driver
    https://git.kernel.org/netdev/net-next/c/db8bcaad5393
  - [net-next,v5,3/6] net: lan966x: add port module support
    https://git.kernel.org/netdev/net-next/c/d28d6d2e37d1
  - [net-next,v5,4/6] net: lan966x: add mactable support
    https://git.kernel.org/netdev/net-next/c/e18aba8941b4
  - [net-next,v5,5/6] net: lan966x: add ethtool configuration and statistics
    https://git.kernel.org/netdev/net-next/c/12c2d0a5b8e2
  - [net-next,v5,6/6] net: lan966x: Update MAINTAINERS to include lan966x driver
    https://git.kernel.org/netdev/net-next/c/813f38bf3b89

You are awesome, thank you!