36 lines · plain
1# SPDX-License-Identifier: GPL-2.0-only2config FS_ENET3 tristate "Freescale Ethernet Driver"4 depends on NET_VENDOR_FREESCALE && (CPM1 || CPM2 || PPC_MPC512x)5 select MII6 select PHYLINK7 8config FS_ENET_MPC5121_FEC9 def_bool y if (FS_ENET && PPC_MPC512x)10 select FS_ENET_HAS_FEC11 12config FS_ENET_HAS_SCC13 bool "Chip has an SCC usable for ethernet"14 depends on FS_ENET && (CPM1 || CPM2)15 default y16 17config FS_ENET_HAS_FCC18 bool "Chip has an FCC usable for ethernet"19 depends on FS_ENET && CPM220 default y21 22config FS_ENET_HAS_FEC23 bool "Chip has an FEC usable for ethernet"24 depends on FS_ENET && (CPM1 || FS_ENET_MPC5121_FEC)25 select FS_ENET_MDIO_FEC26 default y27 28config FS_ENET_MDIO_FEC29 tristate "MDIO driver for FEC"30 depends on FS_ENET && (CPM1 || FS_ENET_MPC5121_FEC)31 32config FS_ENET_MDIO_FCC33 tristate "MDIO driver for FCC"34 depends on FS_ENET && CPM235 select MDIO_BITBANG36