Kconfig 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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 && OF_NET && HAS_DMA
  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 && HAS_DMA
  32. ---help---
  33. Support for Rockchip RK3066/RK3188 EMAC ethernet controllers.
  34. This selects Rockchip SoC glue layer support for the
  35. emac device driver. This driver is used for RK3066/RK3188
  36. EMAC ethernet controller.
  37. endif # NET_VENDOR_ARC