2019-05-19 20:07:45 +08:00
|
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
2013-06-24 13:54:27 +08:00
|
|
|
#
|
|
|
|
# ARC EMAC network device configuration
|
|
|
|
#
|
|
|
|
|
|
|
|
config NET_VENDOR_ARC
|
|
|
|
bool "ARC devices"
|
|
|
|
default y
|
2020-06-14 00:50:22 +08:00
|
|
|
help
|
2015-06-22 04:28:02 +08:00
|
|
|
If you have a network (Ethernet) card belonging to this class, say Y.
|
2013-06-24 13:54:27 +08:00
|
|
|
|
|
|
|
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
|
|
|
|
|
2014-08-26 21:14:51 +08:00
|
|
|
config ARC_EMAC_CORE
|
|
|
|
tristate
|
2016-11-28 15:12:37 +08:00
|
|
|
depends on ARC || ARCH_ROCKCHIP || COMPILE_TEST
|
2013-06-24 13:54:27 +08:00
|
|
|
select MII
|
|
|
|
select PHYLIB
|
2021-10-12 17:34:46 +08:00
|
|
|
select CRC32
|
2014-08-26 21:14:51 +08:00
|
|
|
|
|
|
|
config ARC_EMAC
|
|
|
|
tristate "ARC EMAC support"
|
|
|
|
select ARC_EMAC_CORE
|
2021-10-07 09:06:54 +08:00
|
|
|
depends on OF_IRQ
|
2018-06-22 19:08:43 +08:00
|
|
|
depends on ARC || COMPILE_TEST
|
2020-06-14 00:50:22 +08:00
|
|
|
help
|
2013-06-24 13:54:27 +08:00
|
|
|
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.
|
|
|
|
|
2014-09-09 01:14:47 +08:00
|
|
|
config EMAC_ROCKCHIP
|
|
|
|
tristate "Rockchip EMAC support"
|
|
|
|
select ARC_EMAC_CORE
|
2021-10-07 09:06:54 +08:00
|
|
|
depends on OF_IRQ && REGULATOR
|
2018-06-22 19:08:43 +08:00
|
|
|
depends on ARCH_ROCKCHIP || COMPILE_TEST
|
2020-06-14 00:50:22 +08:00
|
|
|
help
|
2016-01-08 09:35:02 +08:00
|
|
|
Support for Rockchip RK3036/RK3066/RK3188 EMAC ethernet controllers.
|
2014-09-09 01:14:47 +08:00
|
|
|
This selects Rockchip SoC glue layer support for the
|
2016-01-08 09:35:02 +08:00
|
|
|
emac device driver. This driver is used for RK3036/RK3066/RK3188
|
2014-09-09 01:14:47 +08:00
|
|
|
EMAC ethernet controller.
|
|
|
|
|
2013-06-24 13:54:27 +08:00
|
|
|
endif # NET_VENDOR_ARC
|