Kconfig 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254
  1. menuconfig RT2X00
  2. tristate "Ralink driver support"
  3. depends on MAC80211
  4. ---help---
  5. This will enable the 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.
  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 and rt2x00usb.
  14. if RT2X00
  15. config RT2400PCI
  16. tristate "Ralink rt2400 (PCI/PCMCIA) support"
  17. depends on PCI
  18. select RT2X00_LIB_PCI
  19. select EEPROM_93CX6
  20. ---help---
  21. This adds support for rt2400 wireless chipset family.
  22. Supported chips: RT2460.
  23. When compiled as a module, this driver will be called rt2400pci.
  24. config RT2500PCI
  25. tristate "Ralink rt2500 (PCI/PCMCIA) support"
  26. depends on PCI
  27. select RT2X00_LIB_PCI
  28. select EEPROM_93CX6
  29. ---help---
  30. This adds support for rt2500 wireless chipset family.
  31. Supported chips: RT2560.
  32. When compiled as a module, this driver will be called rt2500pci.
  33. config RT61PCI
  34. tristate "Ralink rt2501/rt61 (PCI/PCMCIA) support"
  35. depends on PCI
  36. select RT2X00_LIB_PCI
  37. select RT2X00_LIB_FIRMWARE
  38. select RT2X00_LIB_CRYPTO
  39. select CRC_ITU_T
  40. select EEPROM_93CX6
  41. ---help---
  42. This adds support for rt2501 wireless chipset family.
  43. Supported chips: RT2561, RT2561S & RT2661.
  44. When compiled as a module, this driver will be called rt61pci.
  45. config RT2800PCI_PCI
  46. boolean
  47. depends on PCI
  48. default y
  49. config RT2800PCI_SOC
  50. boolean
  51. depends on RALINK_RT288X || RALINK_RT305X
  52. default y
  53. config RT2800PCI
  54. tristate "Ralink rt27xx/rt28xx (PCI/PCIe/PCMCIA) support"
  55. depends on RT2800PCI_PCI || RT2800PCI_SOC
  56. select RT2800_LIB
  57. select RT2X00_LIB_PCI if RT2800PCI_PCI
  58. select RT2X00_LIB_SOC if RT2800PCI_SOC
  59. select RT2X00_LIB_HT
  60. select RT2X00_LIB_FIRMWARE
  61. select RT2X00_LIB_CRYPTO
  62. select CRC_CCITT
  63. select EEPROM_93CX6
  64. ---help---
  65. This adds support for rt27xx/rt28xx wireless chipset family.
  66. Supported chips: RT2760, RT2790, RT2860, RT2880, RT2890 & RT3052
  67. When compiled as a module, this driver will be called "rt2800pci.ko".
  68. if RT2800PCI
  69. config RT2800PCI_RT30XX
  70. bool "rt2800pci - Include support for rt30xx devices"
  71. default y
  72. ---help---
  73. This adds support for rt30xx wireless chipset family to the
  74. rt2800pci driver.
  75. Supported chips: RT3090, RT3091 & RT3092
  76. config RT2800PCI_RT33XX
  77. bool "rt2800pci - Include support for rt33xx devices (EXPERIMENTAL)"
  78. depends on EXPERIMENTAL
  79. default n
  80. ---help---
  81. This adds support for rt33xx wireless chipset family to the
  82. rt2800pci driver.
  83. Supported chips: RT3390
  84. Support for these devices is non-functional at the moment and is
  85. intended for testers and developers.
  86. config RT2800PCI_RT35XX
  87. bool "rt2800pci - Include support for rt35xx devices (EXPERIMENTAL)"
  88. depends on EXPERIMENTAL
  89. default n
  90. ---help---
  91. This adds support for rt35xx wireless chipset family to the
  92. rt2800pci driver.
  93. Supported chips: RT3060, RT3062, RT3562, RT3592
  94. Support for these devices is non-functional at the moment and is
  95. intended for testers and developers.
  96. endif
  97. config RT2500USB
  98. tristate "Ralink rt2500 (USB) support"
  99. depends on USB
  100. select RT2X00_LIB_USB
  101. select RT2X00_LIB_CRYPTO
  102. ---help---
  103. This adds support for rt2500 wireless chipset family.
  104. Supported chips: RT2571 & RT2572.
  105. When compiled as a module, this driver will be called rt2500usb.
  106. config RT73USB
  107. tristate "Ralink rt2501/rt73 (USB) support"
  108. depends on USB
  109. select RT2X00_LIB_USB
  110. select RT2X00_LIB_FIRMWARE
  111. select RT2X00_LIB_CRYPTO
  112. select CRC_ITU_T
  113. ---help---
  114. This adds support for rt2501 wireless chipset family.
  115. Supported chips: RT2571W, RT2573 & RT2671.
  116. When compiled as a module, this driver will be called rt73usb.
  117. config RT2800USB
  118. tristate "Ralink rt27xx/rt28xx (USB) support"
  119. depends on USB
  120. select RT2800_LIB
  121. select RT2X00_LIB_USB
  122. select RT2X00_LIB_HT
  123. select RT2X00_LIB_FIRMWARE
  124. select RT2X00_LIB_CRYPTO
  125. select CRC_CCITT
  126. ---help---
  127. This adds support for rt27xx/rt28xx wireless chipset family.
  128. Supported chips: RT2770, RT2870 & RT3070.
  129. When compiled as a module, this driver will be called "rt2800usb.ko".
  130. if RT2800USB
  131. config RT2800USB_RT30XX
  132. bool "rt2800usb - Include support for rt30xx devices"
  133. default y
  134. ---help---
  135. This adds support for rt30xx wireless chipset family to the
  136. rt2800usb driver.
  137. Supported chips: RT3070, RT3071 & RT3072
  138. config RT2800USB_RT33XX
  139. bool "rt2800usb - Include support for rt33xx devices (EXPERIMENTAL)"
  140. depends on EXPERIMENTAL
  141. default n
  142. ---help---
  143. This adds support for rt33xx wireless chipset family to the
  144. rt2800usb driver.
  145. Supported chips: RT3370
  146. Support for these devices is non-functional at the moment and is
  147. intended for testers and developers.
  148. config RT2800USB_RT35XX
  149. bool "rt2800usb - Include support for rt35xx devices (EXPERIMENTAL)"
  150. depends on EXPERIMENTAL
  151. default n
  152. ---help---
  153. This adds support for rt35xx wireless chipset family to the
  154. rt2800usb driver.
  155. Supported chips: RT3572
  156. Support for these devices is non-functional at the moment and is
  157. intended for testers and developers.
  158. config RT2800USB_UNKNOWN
  159. bool "rt2800usb - Include support for unknown (USB) devices"
  160. default n
  161. ---help---
  162. This adds support for rt2800usb devices that are known to
  163. have a rt28xx family compatible chipset, but for which the exact
  164. chipset is unknown.
  165. Support status for these devices is unknown, and enabling these
  166. devices may or may not work.
  167. endif
  168. config RT2800_LIB
  169. tristate
  170. config RT2X00_LIB_PCI
  171. tristate
  172. select RT2X00_LIB
  173. config RT2X00_LIB_SOC
  174. tristate
  175. select RT2X00_LIB
  176. config RT2X00_LIB_USB
  177. tristate
  178. select RT2X00_LIB
  179. config RT2X00_LIB
  180. tristate
  181. config RT2X00_LIB_HT
  182. boolean
  183. config RT2X00_LIB_FIRMWARE
  184. boolean
  185. select FW_LOADER
  186. config RT2X00_LIB_CRYPTO
  187. boolean
  188. config RT2X00_LIB_LEDS
  189. boolean
  190. default y if (RT2X00_LIB=y && LEDS_CLASS=y) || (RT2X00_LIB=m && LEDS_CLASS!=n)
  191. comment "rt2x00 leds support disabled due to modularized LEDS_CLASS and built-in rt2x00"
  192. depends on RT2X00_LIB=y && LEDS_CLASS=m
  193. config RT2X00_LIB_DEBUGFS
  194. bool "Ralink debugfs support"
  195. depends on RT2X00_LIB && MAC80211_DEBUGFS
  196. ---help---
  197. Enable creation of debugfs files for the rt2x00 drivers.
  198. These debugfs files support both reading and writing of the
  199. most important register types of the rt2x00 hardware.
  200. config RT2X00_DEBUG
  201. bool "Ralink debug output"
  202. depends on RT2X00_LIB
  203. ---help---
  204. Enable debugging output for all rt2x00 modules
  205. endif