blob: 689045186064a117c81d420d014a6ab1857f3330 [file] [log] [blame]
Alexey Brodkine4f23792013-06-24 09:54:27 +04001#
2# ARC EMAC network device configuration
3#
4
5config NET_VENDOR_ARC
6 bool "ARC devices"
7 default y
8 ---help---
Paul Gortmaker138b15e2015-06-21 16:28:02 -04009 If you have a network (Ethernet) card belonging to this class, say Y.
Alexey Brodkine4f23792013-06-24 09:54:27 +040010
11 Note that the answer to this question doesn't directly affect the
12 kernel: saying N will just cause the configurator to skip all
13 the questions about ARC cards. If you say Y, you will be asked for
14 your specific card in the following questions.
15
16if NET_VENDOR_ARC
17
Romain Perier23d2d9a2014-08-26 13:14:51 +000018config ARC_EMAC_CORE
19 tristate
Alexey Brodkine4f23792013-06-24 09:54:27 +040020 select MII
21 select PHYLIB
Romain Perier23d2d9a2014-08-26 13:14:51 +000022
23config ARC_EMAC
24 tristate "ARC EMAC support"
25 select ARC_EMAC_CORE
Geert Uytterhoeven0357cc12015-04-23 19:59:34 +020026 depends on OF_IRQ && OF_NET && HAS_DMA
Alexey Brodkine4f23792013-06-24 09:54:27 +040027 ---help---
28 On some legacy ARC (Synopsys) FPGA boards such as ARCAngel4/ML50x
29 non-standard on-chip ethernet device ARC EMAC 10/100 is used.
30 Say Y here if you have such a board. If unsure, say N.
31
Romain Perier6eacf312014-09-08 17:14:47 +000032config EMAC_ROCKCHIP
33 tristate "Rockchip EMAC support"
34 select ARC_EMAC_CORE
Geert Uytterhoeven0357cc12015-04-23 19:59:34 +020035 depends on OF_IRQ && OF_NET && REGULATOR && HAS_DMA
Romain Perier6eacf312014-09-08 17:14:47 +000036 ---help---
Xing Zhengaf722612016-01-08 09:35:02 +080037 Support for Rockchip RK3036/RK3066/RK3188 EMAC ethernet controllers.
Romain Perier6eacf312014-09-08 17:14:47 +000038 This selects Rockchip SoC glue layer support for the
Xing Zhengaf722612016-01-08 09:35:02 +080039 emac device driver. This driver is used for RK3036/RK3066/RK3188
Romain Perier6eacf312014-09-08 17:14:47 +000040 EMAC ethernet controller.
41
Alexey Brodkine4f23792013-06-24 09:54:27 +040042endif # NET_VENDOR_ARC