Kconfig 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. #
  3. # Faraday device configuration
  4. #
  5. config NET_VENDOR_FARADAY
  6. bool "Faraday devices"
  7. default y
  8. depends on ARM || COMPILE_TEST
  9. help
  10. If you have a network (Ethernet) card belonging to this class, say Y.
  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 Faraday cards. If you say Y, you will be asked for
  14. your specific card in the following questions.
  15. if NET_VENDOR_FARADAY
  16. config FTMAC100
  17. tristate "Faraday FTMAC100 10/100 Ethernet support"
  18. depends on ARM || COMPILE_TEST
  19. depends on !64BIT || BROKEN
  20. select MII
  21. help
  22. This driver supports the FTMAC100 10/100 Ethernet controller
  23. from Faraday. It is used on Faraday A320 and some other ARM SoC's.
  24. config FTGMAC100
  25. tristate "Faraday FTGMAC100 Gigabit Ethernet support"
  26. depends on ARM || COMPILE_TEST
  27. depends on !64BIT || BROKEN
  28. select PHYLIB
  29. select MDIO_ASPEED if MACH_ASPEED_G6
  30. select CRC32
  31. help
  32. This driver supports the FTGMAC100 Gigabit Ethernet controller
  33. from Faraday. It is used on Faraday A369 and some other ARM SoC's.
  34. endif # NET_VENDOR_FARADAY