1# SPDX-License-Identifier: GPL-2.0-only 2# 3# Freescale device configuration 4# 5 6config NET_VENDOR_FREESCALE 7 bool "Freescale devices" 8 default y 9 depends on FSL_SOC || QUICC_ENGINE || CPM1 || CPM2 || PPC_MPC512x || \ 10 M523x || M527x || M5272 || M528x || M520x || M532x || \ 11 ARCH_MXC || ARCH_MXS || (PPC_MPC52xx && PPC_BESTCOMM) || \ 12 ARCH_LAYERSCAPE || ARCH_S32 || COMPILE_TEST 13 help 14 If you have a network (Ethernet) card belonging to this class, say Y. 15 16 Note that the answer to this question doesn't directly affect the 17 kernel: saying N will just cause the configurator to skip all 18 the questions about Freescale devices. If you say Y, you will be 19 asked for your specific card in the following questions. 20 21if NET_VENDOR_FREESCALE 22 23config FEC 24 tristate "FEC ethernet controller (of ColdFire and some i.MX CPUs)" 25 depends on (M523x || M527x || M5272 || M528x || M520x || M532x || \ 26 ARCH_MXC || ARCH_S32 || SOC_IMX28 || COMPILE_TEST) 27 default ARCH_MXC || SOC_IMX28 if ARM 28 depends on PTP_1588_CLOCK_OPTIONAL 29 select CRC32 30 select PHYLIB 31 select FIXED_PHY if M5272 32 select PAGE_POOL 33 imply PAGE_POOL_STATS 34 imply NET_SELFTESTS 35 help 36 Say Y here if you want to use the built-in 10/100 Fast ethernet 37 controller on some Motorola ColdFire and Freescale i.MX/S32 processors. 38 39config FEC_MPC52xx 40 tristate "FEC MPC52xx driver" 41 depends on PPC_MPC52xx && PPC_BESTCOMM 42 select CRC32 43 select PHYLIB 44 select PPC_BESTCOMM_FEC 45 help 46 This option enables support for the MPC5200's on-chip 47 Fast Ethernet Controller 48 If compiled as module, it will be called fec_mpc52xx. 49 50config FEC_MPC52xx_MDIO 51 bool "FEC MPC52xx MDIO bus driver" 52 depends on FEC_MPC52xx 53 default y 54 help 55 The MPC5200's FEC can connect to the Ethernet either with 56 an external MII PHY chip or 10 Mbps 7-wire interface 57 (Motorola? industry standard). 58 If your board uses an external PHY connected to FEC, enable this. 59 If not sure, enable. 60 If compiled as module, it will be called fec_mpc52xx_phy. 61 62source "drivers/net/ethernet/freescale/fs_enet/Kconfig" 63source "drivers/net/ethernet/freescale/fman/Kconfig" 64 65config FSL_PQ_MDIO 66 tristate "Freescale PQ MDIO" 67 select PHYLIB 68 help 69 This driver supports the MDIO bus used by the gianfar and UCC drivers. 70 71config FSL_XGMAC_MDIO 72 tristate "Freescale XGMAC MDIO" 73 select PHYLIB 74 depends on OF 75 select OF_MDIO 76 help 77 This driver supports the MDIO bus on the Fman 10G Ethernet MACs, and 78 on the FMan mEMAC (which supports both Clauses 22 and 45) 79 80config UCC_GETH 81 tristate "Freescale QE Gigabit Ethernet" 82 depends on QUICC_ENGINE && PPC32 83 select FSL_PQ_MDIO 84 select PHYLINK 85 help 86 This driver supports the Gigabit Ethernet mode of the QUICC Engine, 87 which is available on some Freescale SOCs. 88 89config UGETH_TX_ON_DEMAND 90 bool "Transmit on Demand support" 91 depends on UCC_GETH 92 93config GIANFAR 94 tristate "Gianfar Ethernet" 95 depends on HAS_DMA 96 select FSL_PQ_MDIO 97 select PHYLIB 98 select FIXED_PHY 99 select CRC32 100 help 101 This driver supports the Gigabit TSEC on the MPC83xx, MPC85xx, 102 and MPC86xx family of chips, the eTSEC on LS1021A and the FEC 103 on the 8540. 104 105source "drivers/net/ethernet/freescale/dpaa/Kconfig" 106source "drivers/net/ethernet/freescale/dpaa2/Kconfig" 107source "drivers/net/ethernet/freescale/enetc/Kconfig" 108 109endif # NET_VENDOR_FREESCALE 110