Kconfig 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376
  1. menu "Bluetooth device drivers"
  2. depends on BT
  3. config BT_INTEL
  4. tristate
  5. select REGMAP
  6. config BT_BCM
  7. tristate
  8. select FW_LOADER
  9. config BT_RTL
  10. tristate
  11. select FW_LOADER
  12. config BT_QCA
  13. tristate
  14. select FW_LOADER
  15. config BT_HCIBTUSB
  16. tristate "HCI USB driver"
  17. depends on USB
  18. select BT_INTEL
  19. help
  20. Bluetooth HCI USB driver.
  21. This driver is required if you want to use Bluetooth devices with
  22. USB interface.
  23. Say Y here to compile support for Bluetooth USB devices into the
  24. kernel or say M to compile it as module (btusb).
  25. config BT_HCIBTUSB_BCM
  26. bool "Broadcom protocol support"
  27. depends on BT_HCIBTUSB
  28. select BT_BCM
  29. default y
  30. help
  31. The Broadcom protocol support enables firmware and patchram
  32. download support for Broadcom Bluetooth controllers.
  33. Say Y here to compile support for Broadcom protocol.
  34. config BT_HCIBTUSB_RTL
  35. bool "Realtek protocol support"
  36. depends on BT_HCIBTUSB
  37. select BT_RTL
  38. default y
  39. help
  40. The Realtek protocol support enables firmware and configuration
  41. download support for Realtek Bluetooth controllers.
  42. Say Y here to compile support for Realtek protocol.
  43. config BT_HCIBTSDIO
  44. tristate "HCI SDIO driver"
  45. depends on MMC
  46. help
  47. Bluetooth HCI SDIO driver.
  48. This driver is required if you want to use Bluetooth device with
  49. SDIO interface.
  50. Say Y here to compile support for Bluetooth SDIO devices into the
  51. kernel or say M to compile it as module (btsdio).
  52. config BT_HCIUART
  53. tristate "HCI UART driver"
  54. depends on TTY
  55. help
  56. Bluetooth HCI UART driver.
  57. This driver is required if you want to use Bluetooth devices with
  58. serial port interface. You will also need this driver if you have
  59. UART based Bluetooth PCMCIA and CF devices like Xircom Credit Card
  60. adapter and BrainBoxes Bluetooth PC Card.
  61. Say Y here to compile support for Bluetooth UART devices into the
  62. kernel or say M to compile it as module (hci_uart).
  63. config BT_HCIUART_SERDEV
  64. bool
  65. depends on SERIAL_DEV_BUS && BT_HCIUART
  66. depends on SERIAL_DEV_BUS=y || SERIAL_DEV_BUS=BT_HCIUART
  67. default y
  68. config BT_HCIUART_H4
  69. bool "UART (H4) protocol support"
  70. depends on BT_HCIUART
  71. help
  72. UART (H4) is serial protocol for communication between Bluetooth
  73. device and host. This protocol is required for most Bluetooth devices
  74. with UART interface, including PCMCIA and CF cards.
  75. Say Y here to compile support for HCI UART (H4) protocol.
  76. config BT_HCIUART_NOKIA
  77. tristate "UART Nokia H4+ protocol support"
  78. depends on BT_HCIUART
  79. depends on BT_HCIUART_SERDEV
  80. depends on PM
  81. help
  82. Nokia H4+ is serial protocol for communication between Bluetooth
  83. device and host. This protocol is required for Bluetooth devices
  84. with UART interface in Nokia devices.
  85. Say Y here to compile support for Nokia's H4+ protocol.
  86. config BT_HCIUART_BCSP
  87. bool "BCSP protocol support"
  88. depends on BT_HCIUART
  89. select BITREVERSE
  90. help
  91. BCSP (BlueCore Serial Protocol) is serial protocol for communication
  92. between Bluetooth device and host. This protocol is required for non
  93. USB Bluetooth devices based on CSR BlueCore chip, including PCMCIA and
  94. CF cards.
  95. Say Y here to compile support for HCI BCSP protocol.
  96. config BT_HCIUART_ATH3K
  97. bool "Atheros AR300x serial support"
  98. depends on BT_HCIUART
  99. select BT_HCIUART_H4
  100. help
  101. HCIATH3K (HCI Atheros AR300x) is a serial protocol for
  102. communication between host and Atheros AR300x Bluetooth devices.
  103. This protocol enables AR300x chips to be enabled with
  104. power management support.
  105. Enable this if you have Atheros AR300x serial Bluetooth device.
  106. Say Y here to compile support for HCI UART ATH3K protocol.
  107. config BT_HCIUART_LL
  108. bool "HCILL protocol support"
  109. depends on BT_HCIUART
  110. help
  111. HCILL (HCI Low Level) is a serial protocol for communication
  112. between Bluetooth device and host. This protocol is required for
  113. serial Bluetooth devices that are based on Texas Instruments'
  114. BRF chips.
  115. Say Y here to compile support for HCILL protocol.
  116. config BT_HCIUART_3WIRE
  117. bool "Three-wire UART (H5) protocol support"
  118. depends on BT_HCIUART
  119. help
  120. The HCI Three-wire UART Transport Layer makes it possible to
  121. user the Bluetooth HCI over a serial port interface. The HCI
  122. Three-wire UART Transport Layer assumes that the UART
  123. communication may have bit errors, overrun errors or burst
  124. errors and thereby making CTS/RTS lines unnecessary.
  125. Say Y here to compile support for Three-wire UART protocol.
  126. config BT_HCIUART_INTEL
  127. bool "Intel protocol support"
  128. depends on BT_HCIUART
  129. select BT_HCIUART_H4
  130. select BT_INTEL
  131. help
  132. The Intel protocol support enables Bluetooth HCI over serial
  133. port interface for Intel Bluetooth controllers.
  134. Say Y here to compile support for Intel protocol.
  135. config BT_HCIUART_BCM
  136. bool "Broadcom protocol support"
  137. depends on BT_HCIUART
  138. select BT_HCIUART_H4
  139. select BT_BCM
  140. help
  141. The Broadcom protocol support enables Bluetooth HCI over serial
  142. port interface for Broadcom Bluetooth controllers.
  143. Say Y here to compile support for Broadcom protocol.
  144. config BT_HCIUART_QCA
  145. bool "Qualcomm Atheros protocol support"
  146. depends on BT_HCIUART
  147. select BT_HCIUART_H4
  148. select BT_QCA
  149. help
  150. The Qualcomm Atheros protocol supports HCI In-Band Sleep feature
  151. over serial port interface(H4) between controller and host.
  152. This protocol is required for UART clock control for QCA Bluetooth
  153. devices.
  154. Say Y here to compile support for QCA protocol.
  155. config BT_HCIUART_AG6XX
  156. bool "Intel AG6XX protocol support"
  157. depends on BT_HCIUART
  158. select BT_HCIUART_H4
  159. select BT_INTEL
  160. help
  161. The Intel/AG6XX protocol support enables Bluetooth HCI over serial
  162. port interface for Intel ibt 2.1 Bluetooth controllers.
  163. Say Y here to compile support for Intel AG6XX protocol.
  164. config BT_HCIUART_MRVL
  165. bool "Marvell protocol support"
  166. depends on BT_HCIUART
  167. select BT_HCIUART_H4
  168. help
  169. Marvell is serial protocol for communication between Bluetooth
  170. device and host. This protocol is required for most Marvell Bluetooth
  171. devices with UART interface.
  172. Say Y here to compile support for HCI MRVL protocol.
  173. config BT_HCIBCM203X
  174. tristate "HCI BCM203x USB driver"
  175. depends on USB
  176. select FW_LOADER
  177. help
  178. Bluetooth HCI BCM203x USB driver.
  179. This driver provides the firmware loading mechanism for the Broadcom
  180. Blutonium based devices.
  181. Say Y here to compile support for HCI BCM203x devices into the
  182. kernel or say M to compile it as module (bcm203x).
  183. config BT_HCIBPA10X
  184. tristate "HCI BPA10x USB driver"
  185. depends on USB && BT_HCIUART
  186. select BT_HCIUART_H4
  187. help
  188. Bluetooth HCI BPA10x USB driver.
  189. This driver provides support for the Digianswer BPA 100/105 Bluetooth
  190. sniffer devices.
  191. Say Y here to compile support for HCI BPA10x devices into the
  192. kernel or say M to compile it as module (bpa10x).
  193. config BT_HCIBFUSB
  194. tristate "HCI BlueFRITZ! USB driver"
  195. depends on USB
  196. select FW_LOADER
  197. help
  198. Bluetooth HCI BlueFRITZ! USB driver.
  199. This driver provides support for Bluetooth USB devices with AVM
  200. interface:
  201. AVM BlueFRITZ! USB
  202. Say Y here to compile support for HCI BFUSB devices into the
  203. kernel or say M to compile it as module (bfusb).
  204. config BT_HCIDTL1
  205. tristate "HCI DTL1 (PC Card) driver"
  206. depends on PCMCIA
  207. help
  208. Bluetooth HCI DTL1 (PC Card) driver.
  209. This driver provides support for Bluetooth PCMCIA devices with
  210. Nokia DTL1 interface:
  211. Nokia Bluetooth Card
  212. Socket Bluetooth CF Card
  213. Say Y here to compile support for HCI DTL1 devices into the
  214. kernel or say M to compile it as module (dtl1_cs).
  215. config BT_HCIBT3C
  216. tristate "HCI BT3C (PC Card) driver"
  217. depends on PCMCIA
  218. select FW_LOADER
  219. help
  220. Bluetooth HCI BT3C (PC Card) driver.
  221. This driver provides support for Bluetooth PCMCIA devices with
  222. 3Com BT3C interface:
  223. 3Com Bluetooth Card (3CRWB6096)
  224. HP Bluetooth Card
  225. Say Y here to compile support for HCI BT3C devices into the
  226. kernel or say M to compile it as module (bt3c_cs).
  227. config BT_HCIBLUECARD
  228. tristate "HCI BlueCard (PC Card) driver"
  229. depends on PCMCIA
  230. help
  231. Bluetooth HCI BlueCard (PC Card) driver.
  232. This driver provides support for Bluetooth PCMCIA devices with
  233. Anycom BlueCard interface:
  234. Anycom Bluetooth PC Card
  235. Anycom Bluetooth CF Card
  236. Say Y here to compile support for HCI BlueCard devices into the
  237. kernel or say M to compile it as module (bluecard_cs).
  238. config BT_HCIBTUART
  239. tristate "HCI UART (PC Card) device driver"
  240. depends on PCMCIA
  241. help
  242. Bluetooth HCI UART (PC Card) driver.
  243. This driver provides support for Bluetooth PCMCIA devices with
  244. an UART interface:
  245. Xircom CreditCard Bluetooth Adapter
  246. Xircom RealPort2 Bluetooth Adapter
  247. Sphinx PICO Card
  248. H-Soft blue+Card
  249. Cyber-blue Compact Flash Card
  250. Say Y here to compile support for HCI UART devices into the
  251. kernel or say M to compile it as module (btuart_cs).
  252. config BT_HCIVHCI
  253. tristate "HCI VHCI (Virtual HCI device) driver"
  254. help
  255. Bluetooth Virtual HCI device driver.
  256. This driver is required if you want to use HCI Emulation software.
  257. Say Y here to compile support for virtual HCI devices into the
  258. kernel or say M to compile it as module (hci_vhci).
  259. config BT_MRVL
  260. tristate "Marvell Bluetooth driver support"
  261. help
  262. The core driver to support Marvell Bluetooth devices.
  263. This driver is required if you want to support
  264. Marvell Bluetooth devices, such as 8688/8787/8797/8887/8897/8997.
  265. Say Y here to compile Marvell Bluetooth driver
  266. into the kernel or say M to compile it as module.
  267. config BT_MRVL_SDIO
  268. tristate "Marvell BT-over-SDIO driver"
  269. depends on BT_MRVL && MMC
  270. select FW_LOADER
  271. select WANT_DEV_COREDUMP
  272. help
  273. The driver for Marvell Bluetooth chipsets with SDIO interface.
  274. This driver is required if you want to use Marvell Bluetooth
  275. devices with SDIO interface. Currently SD8688/SD8787/SD8797/SD8887/SD8897/SD8997
  276. chipsets are supported.
  277. Say Y here to compile support for Marvell BT-over-SDIO driver
  278. into the kernel or say M to compile it as module.
  279. config BT_ATH3K
  280. tristate "Atheros firmware download driver"
  281. depends on BT_HCIBTUSB
  282. select FW_LOADER
  283. help
  284. Bluetooth firmware download driver.
  285. This driver loads the firmware into the Atheros Bluetooth
  286. chipset.
  287. Say Y here to compile support for "Atheros firmware download driver"
  288. into the kernel or say M to compile it as module (ath3k).
  289. config BT_WILINK
  290. tristate "Texas Instruments WiLink7 driver"
  291. depends on TI_ST
  292. help
  293. This enables the Bluetooth driver for Texas Instrument's BT/FM/GPS
  294. combo devices. This makes use of shared transport line discipline
  295. core driver to communicate with the BT core of the combo chip.
  296. Say Y here to compile support for Texas Instrument's WiLink7 driver
  297. into the kernel or say M to compile it as module (btwilink).
  298. config BT_QCOMSMD
  299. tristate "Qualcomm SMD based HCI support"
  300. depends on RPMSG || (COMPILE_TEST && RPMSG=n)
  301. depends on QCOM_WCNSS_CTRL || (COMPILE_TEST && QCOM_WCNSS_CTRL=n)
  302. select BT_QCA
  303. help
  304. Qualcomm SMD based HCI driver.
  305. This driver is used to bridge HCI data onto the shared memory
  306. channels to the WCNSS core.
  307. Say Y here to compile support for HCI over Qualcomm SMD into the
  308. kernel or say M to compile as a module.
  309. endmenu