Kconfig 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. #
  2. # ARC EMAC network device configuration
  3. #
  4. config NET_VENDOR_ARC
  5. bool "ARC devices"
  6. default y
  7. ---help---
  8. If you have a network (Ethernet) card belonging to this class, say Y
  9. and read the Ethernet-HOWTO, available from
  10. <http://www.tldp.org/docs.html#howto>.
  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 ARC cards. If you say Y, you will be asked for
  14. your specific card in the following questions.
  15. if NET_VENDOR_ARC
  16. config ARC_EMAC_CORE
  17. tristate
  18. select MII
  19. select PHYLIB
  20. config ARC_EMAC
  21. tristate "ARC EMAC support"
  22. select ARC_EMAC_CORE
  23. depends on OF_IRQ
  24. depends on OF_NET
  25. ---help---
  26. On some legacy ARC (Synopsys) FPGA boards such as ARCAngel4/ML50x
  27. non-standard on-chip ethernet device ARC EMAC 10/100 is used.
  28. Say Y here if you have such a board. If unsure, say N.
  29. config EMAC_ROCKCHIP
  30. tristate "Rockchip EMAC support"
  31. select ARC_EMAC_CORE
  32. depends on OF_IRQ && OF_NET && REGULATOR
  33. ---help---
  34. Support for Rockchip RK3066/RK3188 EMAC ethernet controllers.
  35. This selects Rockchip SoC glue layer support for the
  36. emac device driver. This driver is used for RK3066/RK3188
  37. EMAC ethernet controller.
  38. endif # NET_VENDOR_ARC