38 lines · plain
1# SPDX-License-Identifier: GPL-2.0-only2#3# ARC EMAC network device configuration4#5 6config NET_VENDOR_ARC7 bool "ARC devices"8 default y9 help10 If you have a network (Ethernet) card belonging to this class, say Y.11 12 Note that the answer to this question doesn't directly affect the13 kernel: saying N will just cause the configurator to skip all14 the questions about ARC cards. If you say Y, you will be asked for15 your specific card in the following questions.16 17if NET_VENDOR_ARC18 19config ARC_EMAC_CORE20 tristate21 depends on ARC || ARCH_ROCKCHIP || COMPILE_TEST22 select MII23 select PHYLIB24 select CRC3225 26config EMAC_ROCKCHIP27 tristate "Rockchip EMAC support"28 select ARC_EMAC_CORE29 depends on OF_IRQ && REGULATOR30 depends on ARCH_ROCKCHIP || COMPILE_TEST31 help32 Support for Rockchip RK3036/RK3066/RK3188 EMAC ethernet controllers.33 This selects Rockchip SoC glue layer support for the34 emac device driver. This driver is used for RK3036/RK3066/RK318835 EMAC ethernet controller.36 37endif # NET_VENDOR_ARC38