0001 # SPDX-License-Identifier: GPL-2.0-only
0002 #
0003 # Faraday device configuration
0004 #
0005
0006 config NET_VENDOR_FARADAY
0007 bool "Faraday devices"
0008 default y
0009 depends on ARM || COMPILE_TEST
0010 help
0011 If you have a network (Ethernet) card belonging to this class, say Y.
0012
0013 Note that the answer to this question doesn't directly affect the
0014 kernel: saying N will just cause the configurator to skip all
0015 the questions about Faraday cards. If you say Y, you will be asked for
0016 your specific card in the following questions.
0017
0018 if NET_VENDOR_FARADAY
0019
0020 config FTMAC100
0021 tristate "Faraday FTMAC100 10/100 Ethernet support"
0022 depends on ARM || COMPILE_TEST
0023 depends on !64BIT || BROKEN
0024 select MII
0025 help
0026 This driver supports the FTMAC100 10/100 Ethernet controller
0027 from Faraday. It is used on Faraday A320 and some other ARM SoC's.
0028
0029 config FTGMAC100
0030 tristate "Faraday FTGMAC100 Gigabit Ethernet support"
0031 depends on ARM || COMPILE_TEST
0032 depends on !64BIT || BROKEN
0033 select PHYLIB
0034 select MDIO_ASPEED if MACH_ASPEED_G6
0035 select CRC32
0036 help
0037 This driver supports the FTGMAC100 Gigabit Ethernet controller
0038 from Faraday. It is used on Faraday A369 and some other ARM SoC's.
0039
0040 endif # NET_VENDOR_FARADAY