Kconfig 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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. Make sure you know the name of your card. Read the Ethernet-HOWTO,
  11. available from <http://www.tldp.org/docs.html#howto>.
  12. If unsure, say Y.
  13. Note that the answer to this question doesn't directly affect the
  14. kernel: saying N will just cause the configurator to skip all
  15. the remaining Atmel network card questions. If you say Y, you will be
  16. asked for your specific card in the following questions.
  17. if NET_CADENCE
  18. config ARM_AT91_ETHER
  19. tristate "AT91RM9200 Ethernet support"
  20. select NET_CORE
  21. select MACB
  22. ---help---
  23. If you wish to compile a kernel for the AT91RM9200 and enable
  24. ethernet support, then you should always answer Y to this.
  25. config MACB
  26. tristate "Cadence MACB/GEM support"
  27. select PHYLIB
  28. ---help---
  29. The Cadence MACB ethernet interface is found on many Atmel AT32 and
  30. AT91 parts. This driver also supports the Cadence GEM (Gigabit
  31. Ethernet MAC found in some ARM SoC devices). Note: the Gigabit mode
  32. is not yet supported. Say Y to include support for the MACB/GEM chip.
  33. To compile this driver as a module, choose M here: the module
  34. will be called macb.
  35. endif # NET_CADENCE