Kconfig 1.4 KB

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