Kconfig 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. #
  3. # Cirrus network device configuration
  4. #
  5. config NET_VENDOR_CIRRUS
  6. bool "Cirrus devices"
  7. default y
  8. depends on ISA || EISA || ARM || MAC || COMPILE_TEST
  9. help
  10. If you have a network (Ethernet) card belonging to this class, 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 questions about Cirrus cards. If you say Y, you will be asked
  14. for your specific card in the following questions.
  15. if NET_VENDOR_CIRRUS
  16. config CS89x0
  17. tristate
  18. config CS89x0_ISA
  19. tristate "CS89x0 ISA driver support"
  20. depends on HAS_IOPORT_MAP
  21. depends on ISA
  22. depends on !PPC32
  23. depends on CS89x0_PLATFORM=n
  24. select NETDEV_LEGACY_INIT
  25. select CS89x0
  26. help
  27. Support for CS89x0 chipset based Ethernet cards. If you have a
  28. network (Ethernet) card of this type, say Y and read the file
  29. <file:Documentation/networking/device_drivers/ethernet/cirrus/cs89x0.rst>.
  30. To compile this driver as a module, choose M here. The module
  31. will be called cs89x0.
  32. config CS89x0_PLATFORM
  33. tristate "CS89x0 platform driver support"
  34. depends on ARM || (COMPILE_TEST && !PPC)
  35. select CS89x0
  36. help
  37. Say Y to compile the cs89x0 platform driver. This makes this driver
  38. suitable for use on certain evaluation boards such as the iMX21ADS.
  39. To compile this driver as a module, choose M here. The module
  40. will be called cs89x0.
  41. config EP93XX_ETH
  42. tristate "EP93xx Ethernet support"
  43. depends on (ARM && ARCH_EP93XX) || COMPILE_TEST
  44. select MII
  45. help
  46. This is a driver for the ethernet hardware included in EP93xx CPUs.
  47. Say Y if you are building a kernel for EP93xx based devices.
  48. config MAC89x0
  49. tristate "Macintosh CS89x0 based ethernet cards"
  50. depends on MAC
  51. help
  52. Support for CS89x0 chipset based Ethernet cards. If you have a
  53. Nubus or LC-PDS network (Ethernet) card of this type, say Y here.
  54. To compile this driver as a module, choose M here. This module will
  55. be called mac89x0.
  56. endif # NET_VENDOR_CIRRUS