Kconfig 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184
  1. config RT2X00
  2. tristate "Ralink driver support"
  3. depends on MAC80211 && WLAN_80211 && EXPERIMENTAL
  4. ---help---
  5. This will enable the experimental support for the Ralink drivers,
  6. developed in the rt2x00 project <http://rt2x00.serialmonkey.com>.
  7. These drivers make use of the mac80211 stack.
  8. When building one of the individual drivers, the rt2x00 library
  9. will also be created. That library (when the driver is built as
  10. a module) will be called "rt2x00lib.ko".
  11. Additionally PCI and USB libraries will also be build depending
  12. on the types of drivers being selected, these libraries will be
  13. called "rt2x00pci.ko" and "rt2x00usb.ko".
  14. if RT2X00
  15. config RT2X00_LIB
  16. tristate
  17. config RT2X00_LIB_PCI
  18. tristate
  19. select RT2X00_LIB
  20. config RT2X00_LIB_USB
  21. tristate
  22. select RT2X00_LIB
  23. config RT2X00_LIB_FIRMWARE
  24. boolean
  25. depends on RT2X00_LIB
  26. select FW_LOADER
  27. config RT2X00_LIB_RFKILL
  28. boolean
  29. depends on RT2X00_LIB
  30. select RFKILL
  31. select INPUT_POLLDEV
  32. config RT2X00_LIB_LEDS
  33. boolean
  34. depends on RT2X00_LIB
  35. config RT2400PCI
  36. tristate "Ralink rt2400 (PCI/PCMCIA) support"
  37. depends on PCI
  38. select RT2X00_LIB_PCI
  39. select EEPROM_93CX6
  40. ---help---
  41. This adds support for rt2400 wireless chipset family.
  42. Supported chips: RT2460.
  43. When compiled as a module, this driver will be called "rt2400pci.ko".
  44. config RT2400PCI_RFKILL
  45. bool "Ralink rt2400 rfkill support"
  46. depends on RT2400PCI
  47. select RT2X00_LIB_RFKILL
  48. ---help---
  49. This adds support for integrated rt2400 hardware that features a
  50. hardware button to control the radio state.
  51. This feature depends on the RF switch subsystem rfkill.
  52. config RT2400PCI_LEDS
  53. bool "Ralink rt2400 leds support"
  54. depends on RT2400PCI
  55. select LEDS_CLASS
  56. select RT2X00_LIB_LEDS
  57. ---help---
  58. This adds support for led triggers provided my mac80211.
  59. config RT2500PCI
  60. tristate "Ralink rt2500 (PCI/PCMCIA) support"
  61. depends on PCI
  62. select RT2X00_LIB_PCI
  63. select EEPROM_93CX6
  64. ---help---
  65. This adds support for rt2500 wireless chipset family.
  66. Supported chips: RT2560.
  67. When compiled as a module, this driver will be called "rt2500pci.ko".
  68. config RT2500PCI_RFKILL
  69. bool "Ralink rt2500 rfkill support"
  70. depends on RT2500PCI
  71. select RT2X00_LIB_RFKILL
  72. ---help---
  73. This adds support for integrated rt2500 hardware that features a
  74. hardware button to control the radio state.
  75. This feature depends on the RF switch subsystem rfkill.
  76. config RT2500PCI_LEDS
  77. bool "Ralink rt2500 leds support"
  78. depends on RT2500PCI
  79. select LEDS_CLASS
  80. select RT2X00_LIB_LEDS
  81. ---help---
  82. This adds support for led triggers provided my mac80211.
  83. config RT61PCI
  84. tristate "Ralink rt2501/rt61 (PCI/PCMCIA) support"
  85. depends on PCI
  86. select RT2X00_LIB_PCI
  87. select RT2X00_LIB_FIRMWARE
  88. select CRC_ITU_T
  89. select EEPROM_93CX6
  90. ---help---
  91. This adds support for rt2501 wireless chipset family.
  92. Supported chips: RT2561, RT2561S & RT2661.
  93. When compiled as a module, this driver will be called "rt61pci.ko".
  94. config RT61PCI_RFKILL
  95. bool "Ralink rt2501/rt61 rfkill support"
  96. depends on RT61PCI
  97. select RT2X00_LIB_RFKILL
  98. ---help---
  99. This adds support for integrated rt61 hardware that features a
  100. hardware button to control the radio state.
  101. This feature depends on the RF switch subsystem rfkill.
  102. config RT61PCI_LEDS
  103. bool "Ralink rt2501/rt61 leds support"
  104. depends on RT61PCI
  105. select LEDS_CLASS
  106. select RT2X00_LIB_LEDS
  107. ---help---
  108. This adds support for led triggers provided my mac80211.
  109. config RT2500USB
  110. tristate "Ralink rt2500 (USB) support"
  111. depends on USB
  112. select RT2X00_LIB_USB
  113. ---help---
  114. This adds support for rt2500 wireless chipset family.
  115. Supported chips: RT2571 & RT2572.
  116. When compiled as a module, this driver will be called "rt2500usb.ko".
  117. config RT2500USB_LEDS
  118. bool "Ralink rt2500 leds support"
  119. depends on RT2500USB
  120. select LEDS_CLASS
  121. select RT2X00_LIB_LEDS
  122. ---help---
  123. This adds support for led triggers provided my mac80211.
  124. config RT73USB
  125. tristate "Ralink rt2501/rt73 (USB) support"
  126. depends on USB
  127. select RT2X00_LIB_USB
  128. select RT2X00_LIB_FIRMWARE
  129. select CRC_ITU_T
  130. ---help---
  131. This adds support for rt2501 wireless chipset family.
  132. Supported chips: RT2571W, RT2573 & RT2671.
  133. When compiled as a module, this driver will be called "rt73usb.ko".
  134. config RT73USB_LEDS
  135. bool "Ralink rt2501/rt73 leds support"
  136. depends on RT73USB
  137. select LEDS_CLASS
  138. select RT2X00_LIB_LEDS
  139. ---help---
  140. This adds support for led triggers provided my mac80211.
  141. config RT2X00_LIB_DEBUGFS
  142. bool "Ralink debugfs support"
  143. depends on RT2X00_LIB && MAC80211_DEBUGFS
  144. ---help---
  145. Enable creation of debugfs files for the rt2x00 drivers.
  146. These debugfs files support both reading and writing of the
  147. most important register types of the rt2x00 hardware.
  148. config RT2X00_DEBUG
  149. bool "Ralink debug output"
  150. depends on RT2X00_LIB
  151. ---help---
  152. Enable debugging output for all rt2x00 modules
  153. endif