Basic DSA driver support for lan937x and the device will be configured through SPI interface. It adds the lan937x_dev_ops in ksz_common.c file and tries to reuse the functionality of ksz9477 series switch. drivers/net/dsa/microchip/ path is already part of MAINTAINERS & the new files come under this path. Hence no update needed to the MAINTAINERS Signed-off-by: Arun Ramadoss <arun.ramadoss@microchip.com> Signed-off-by: David S. Miller <davem@davemloft.net>
31 lines
1.0 KiB
Plaintext
31 lines
1.0 KiB
Plaintext
# SPDX-License-Identifier: GPL-2.0-only
|
|
menuconfig NET_DSA_MICROCHIP_KSZ_COMMON
|
|
tristate "Microchip KSZ8795/KSZ9477/LAN937x series switch support"
|
|
depends on NET_DSA
|
|
select NET_DSA_TAG_KSZ
|
|
help
|
|
This driver adds support for Microchip KSZ9477 series switch and
|
|
KSZ8795/KSZ88x3 switch chips.
|
|
|
|
config NET_DSA_MICROCHIP_KSZ9477_I2C
|
|
tristate "KSZ series I2C connected switch driver"
|
|
depends on NET_DSA_MICROCHIP_KSZ_COMMON && I2C
|
|
select REGMAP_I2C
|
|
help
|
|
Select to enable support for registering switches configured through I2C.
|
|
|
|
config NET_DSA_MICROCHIP_KSZ_SPI
|
|
tristate "KSZ series SPI connected switch driver"
|
|
depends on NET_DSA_MICROCHIP_KSZ_COMMON && SPI
|
|
select REGMAP_SPI
|
|
help
|
|
Select to enable support for registering switches configured through SPI.
|
|
|
|
config NET_DSA_MICROCHIP_KSZ8863_SMI
|
|
tristate "KSZ series SMI connected switch driver"
|
|
depends on NET_DSA_MICROCHIP_KSZ_COMMON
|
|
select MDIO_BITBANG
|
|
help
|
|
Select to enable support for registering switches configured through
|
|
Microchip SMI. It supports the KSZ8863 and KSZ8873 switch.
|