Kconfig 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. #
  3. # Atheros device configuration
  4. #
  5. config NET_VENDOR_ATHEROS
  6. bool "Atheros devices"
  7. default y
  8. depends on (PCI || ATH79)
  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 Atheros devices. If you say Y, you will be asked
  14. for your specific card in the following questions.
  15. if NET_VENDOR_ATHEROS
  16. config AG71XX
  17. tristate "Atheros AR7XXX/AR9XXX built-in ethernet mac support"
  18. depends on ATH79
  19. select PHYLINK
  20. imply NET_SELFTESTS
  21. help
  22. If you wish to compile a kernel for AR7XXX/91XXX and enable
  23. ethernet support, then you should always answer Y to this.
  24. config ATL2
  25. tristate "Atheros L2 Fast Ethernet support"
  26. depends on PCI
  27. select CRC32
  28. select MII
  29. help
  30. This driver supports the Atheros L2 fast ethernet adapter.
  31. To compile this driver as a module, choose M here. The module
  32. will be called atl2.
  33. config ATL1
  34. tristate "Atheros/Attansic L1 Gigabit Ethernet support"
  35. depends on PCI
  36. select CRC32
  37. select MII
  38. help
  39. This driver supports the Atheros/Attansic L1 gigabit ethernet
  40. adapter.
  41. To compile this driver as a module, choose M here. The module
  42. will be called atl1.
  43. config ATL1E
  44. tristate "Atheros L1E Gigabit Ethernet support"
  45. depends on PCI
  46. select CRC32
  47. select MII
  48. help
  49. This driver supports the Atheros L1E gigabit ethernet adapter.
  50. To compile this driver as a module, choose M here. The module
  51. will be called atl1e.
  52. config ATL1C
  53. tristate "Atheros L1C Gigabit Ethernet support"
  54. depends on PCI
  55. select CRC32
  56. select MII
  57. help
  58. This driver supports the Atheros L1C gigabit ethernet adapter.
  59. To compile this driver as a module, choose M here. The module
  60. will be called atl1c.
  61. config ALX
  62. tristate "Qualcomm Atheros AR816x/AR817x support"
  63. depends on PCI
  64. select CRC32
  65. select MDIO
  66. help
  67. This driver supports the Qualcomm Atheros L1F ethernet adapter,
  68. i.e. the following chipsets:
  69. 1969:1091 - AR8161 Gigabit Ethernet
  70. 1969:1090 - AR8162 Fast Ethernet
  71. 1969:10A1 - AR8171 Gigabit Ethernet
  72. 1969:10A0 - AR8172 Fast Ethernet
  73. To compile this driver as a module, choose M here. The module
  74. will be called alx.
  75. endif # NET_VENDOR_ATHEROS