mirror of
https://github.com/torvalds/linux.git
synced 2024-12-26 21:02:19 +00:00
246d7f773c
Add support for the Broadcom Starfigther 2 switch chip using a DSA driver. This switch driver supports the following features: - configuration of the external switch port interface: MII, RevMII, RGMII and RGMII_NO_ID are supported - support for the per-port MIB counters - support for link interrupts for special ports (e.g: MoCA) - powering up/down of switch memories to conserve power when ports are unused Finally, update the compatible property for the DSA core code to match our switch top-level compatible node. Signed-off-by: Florian Fainelli <f.fainelli@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
11 lines
320 B
Makefile
11 lines
320 B
Makefile
obj-$(CONFIG_NET_DSA_MV88E6060) += mv88e6060.o
|
|
obj-$(CONFIG_NET_DSA_MV88E6XXX) += mv88e6xxx_drv.o
|
|
mv88e6xxx_drv-y += mv88e6xxx.o
|
|
ifdef CONFIG_NET_DSA_MV88E6123_61_65
|
|
mv88e6xxx_drv-y += mv88e6123_61_65.o
|
|
endif
|
|
ifdef CONFIG_NET_DSA_MV88E6131
|
|
mv88e6xxx_drv-y += mv88e6131.o
|
|
endif
|
|
obj-$(CONFIG_NET_DSA_BCM_SF2) += bcm_sf2.o
|