Loading...
1# SPDX-License-Identifier: GPL-2.0-only
2#
3# ARC EMAC network device configuration
4#
5
6config NET_VENDOR_ARC
7 bool "ARC devices"
8 default y
9 help
10 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 the
13 kernel: saying N will just cause the configurator to skip all
14 the questions about ARC cards. If you say Y, you will be asked for
15 your specific card in the following questions.
16
17if NET_VENDOR_ARC
18
19config ARC_EMAC_CORE
20 tristate
21 depends on ARC || ARCH_ROCKCHIP || COMPILE_TEST
22 select MII
23 select PHYLIB
24 select CRC32
25
26config EMAC_ROCKCHIP
27 tristate "Rockchip EMAC support"
28 select ARC_EMAC_CORE
29 depends on OF_IRQ && REGULATOR
30 depends on ARCH_ROCKCHIP || COMPILE_TEST
31 help
32 Support for Rockchip RK3036/RK3066/RK3188 EMAC ethernet controllers.
33 This selects Rockchip SoC glue layer support for the
34 emac device driver. This driver is used for RK3036/RK3066/RK3188
35 EMAC ethernet controller.
36
37endif # NET_VENDOR_ARC
1#
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
20config ARC_EMAC
21 tristate "ARC EMAC support"
22 select MII
23 select PHYLIB
24 depends on OF_IRQ
25 depends on OF_NET
26 ---help---
27 On some legacy ARC (Synopsys) FPGA boards such as ARCAngel4/ML50x
28 non-standard on-chip ethernet device ARC EMAC 10/100 is used.
29 Say Y here if you have such a board. If unsure, say N.
30
31endif # NET_VENDOR_ARC