Kconfig 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  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. Note that the answer to this question doesn't directly affect the
  10. kernel: saying N will just cause the configurator to skip all
  11. the questions about ARC cards. If you say Y, you will be asked for
  12. your specific card in the following questions.
  13. if NET_VENDOR_ARC
  14. config ARC_EMAC_CORE
  15. tristate
  16. select MII
  17. select PHYLIB
  18. config ARC_EMAC
  19. tristate "ARC EMAC support"
  20. select ARC_EMAC_CORE
  21. depends on OF_IRQ && OF_NET && HAS_DMA
  22. ---help---
  23. On some legacy ARC (Synopsys) FPGA boards such as ARCAngel4/ML50x
  24. non-standard on-chip ethernet device ARC EMAC 10/100 is used.
  25. Say Y here if you have such a board. If unsure, say N.
  26. config EMAC_ROCKCHIP
  27. tristate "Rockchip EMAC support"
  28. select ARC_EMAC_CORE
  29. depends on OF_IRQ && OF_NET && REGULATOR && HAS_DMA
  30. ---help---
  31. Support for Rockchip RK3066/RK3188 EMAC ethernet controllers.
  32. This selects Rockchip SoC glue layer support for the
  33. emac device driver. This driver is used for RK3066/RK3188
  34. EMAC ethernet controller.
  35. endif # NET_VENDOR_ARC