Kconfig 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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. depends on ARC || ARCH_ROCKCHIP || COMPILE_TEST
  17. select MII
  18. select PHYLIB
  19. config ARC_EMAC
  20. tristate "ARC EMAC support"
  21. select ARC_EMAC_CORE
  22. depends on OF_IRQ && OF_NET
  23. depends on ARC || COMPILE_TEST
  24. ---help---
  25. On some legacy ARC (Synopsys) FPGA boards such as ARCAngel4/ML50x
  26. non-standard on-chip ethernet device ARC EMAC 10/100 is used.
  27. Say Y here if you have such a board. If unsure, say N.
  28. config EMAC_ROCKCHIP
  29. tristate "Rockchip EMAC support"
  30. select ARC_EMAC_CORE
  31. depends on OF_IRQ && OF_NET && REGULATOR
  32. depends on ARCH_ROCKCHIP || COMPILE_TEST
  33. ---help---
  34. Support for Rockchip RK3036/RK3066/RK3188 EMAC ethernet controllers.
  35. This selects Rockchip SoC glue layer support for the
  36. emac device driver. This driver is used for RK3036/RK3066/RK3188
  37. EMAC ethernet controller.
  38. endif # NET_VENDOR_ARC