Kconfig 1.2 KB
Newer Older
1 2 3 4 5 6 7 8
#
# ARC EMAC network device configuration
#

config NET_VENDOR_ARC
	bool "ARC devices"
	default y
	---help---
9
	  If you have a network (Ethernet) card belonging to this class, say Y.
10 11 12 13 14 15 16 17

	  Note that the answer to this question doesn't directly affect the
	  kernel: saying N will just cause the configurator to skip all
	  the questions about ARC cards. If you say Y, you will be asked for
	  your specific card in the following questions.

if NET_VENDOR_ARC

18 19
config ARC_EMAC_CORE
	tristate
20 21
	select MII
	select PHYLIB
22 23 24 25

config ARC_EMAC
	tristate "ARC EMAC support"
	select ARC_EMAC_CORE
26
	depends on OF_IRQ && OF_NET && HAS_DMA
27 28 29 30 31
	---help---
	  On some legacy ARC (Synopsys) FPGA boards such as ARCAngel4/ML50x
	  non-standard on-chip ethernet device ARC EMAC 10/100 is used.
	  Say Y here if you have such a board.  If unsure, say N.

32 33 34
config EMAC_ROCKCHIP
	tristate "Rockchip EMAC support"
	select ARC_EMAC_CORE
35
	depends on OF_IRQ && OF_NET && REGULATOR && HAS_DMA
36
	---help---
37
	  Support for Rockchip RK3036/RK3066/RK3188 EMAC ethernet controllers.
38
	  This selects Rockchip SoC glue layer support for the
39
	  emac device driver. This driver is used for RK3036/RK3066/RK3188
40 41
	  EMAC ethernet controller.

42
endif # NET_VENDOR_ARC