Kconfig 947 B

12345678910111213141516171819202122232425262728293031323334
  1. #
  2. # Atmel device configuration
  3. #
  4. config NET_CADENCE
  5. bool "Cadence devices"
  6. depends on HAS_IOMEM
  7. default y
  8. ---help---
  9. If you have a network (Ethernet) card belonging to this class, say Y.
  10. If unsure, 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 remaining Atmel network card questions. If you say Y, you will be
  14. asked for your specific card in the following questions.
  15. if NET_CADENCE
  16. config MACB
  17. tristate "Cadence MACB/GEM support"
  18. depends on HAS_DMA
  19. select PHYLIB
  20. ---help---
  21. The Cadence MACB ethernet interface is found on many Atmel AT32 and
  22. AT91 parts. This driver also supports the Cadence GEM (Gigabit
  23. Ethernet MAC found in some ARM SoC devices). Say Y to include
  24. support for the MACB/GEM chip.
  25. To compile this driver as a module, choose M here: the module
  26. will be called macb.
  27. endif # NET_CADENCE