blob: dea29ee24da4a28ce1effc2a9c72a77b516021cc [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---
9 If you have a network (Ethernet) card belonging to this class, say Y
10 and read the Ethernet-HOWTO, available from
11 <http://www.tldp.org/docs.html#howto>.
12
13 Note that the answer to this question doesn't directly affect the
14 kernel: saying N will just cause the configurator to skip all
15 the questions about ARC cards. If you say Y, you will be asked for
16 your specific card in the following questions.
17
18if NET_VENDOR_ARC
19
Romain Perier23d2d9a2014-08-26 13:14:51 +000020config ARC_EMAC_CORE
21 tristate
Alexey Brodkine4f23792013-06-24 09:54:27 +040022 select MII
23 select PHYLIB
Romain Perier23d2d9a2014-08-26 13:14:51 +000024
25config ARC_EMAC
26 tristate "ARC EMAC support"
27 select ARC_EMAC_CORE
Geert Uytterhoeven0357cc12015-04-23 19:59:34 +020028 depends on OF_IRQ && OF_NET && HAS_DMA
Alexey Brodkine4f23792013-06-24 09:54:27 +040029 ---help---
30 On some legacy ARC (Synopsys) FPGA boards such as ARCAngel4/ML50x
31 non-standard on-chip ethernet device ARC EMAC 10/100 is used.
32 Say Y here if you have such a board. If unsure, say N.
33
Romain Perier6eacf312014-09-08 17:14:47 +000034config EMAC_ROCKCHIP
35 tristate "Rockchip EMAC support"
36 select ARC_EMAC_CORE
Geert Uytterhoeven0357cc12015-04-23 19:59:34 +020037 depends on OF_IRQ && OF_NET && REGULATOR && HAS_DMA
Romain Perier6eacf312014-09-08 17:14:47 +000038 ---help---
39 Support for Rockchip RK3066/RK3188 EMAC ethernet controllers.
40 This selects Rockchip SoC glue layer support for the
41 emac device driver. This driver is used for RK3066/RK3188
42 EMAC ethernet controller.
43
Alexey Brodkine4f23792013-06-24 09:54:27 +040044endif # NET_VENDOR_ARC