Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | |
| 2 | menu "Bluetooth device drivers" |
| 3 | depends on BT |
| 4 | |
Marcel Holtmann | 4fba30f | 2015-04-05 22:52:10 -0700 | [diff] [blame] | 5 | config BT_BCM |
| 6 | tristate |
| 7 | |
Marcel Holtmann | 5e23b92 | 2007-10-20 14:12:34 +0200 | [diff] [blame] | 8 | config BT_HCIBTUSB |
Marcel Holtmann | 9bfa35f | 2008-08-18 13:23:52 +0200 | [diff] [blame] | 9 | tristate "HCI USB driver" |
| 10 | depends on USB |
Marcel Holtmann | 1df1f59 | 2015-04-05 22:52:11 -0700 | [diff] [blame] | 11 | select BT_BCM |
Marcel Holtmann | 5e23b92 | 2007-10-20 14:12:34 +0200 | [diff] [blame] | 12 | help |
| 13 | Bluetooth HCI USB driver. |
| 14 | This driver is required if you want to use Bluetooth devices with |
| 15 | USB interface. |
| 16 | |
Marcel Holtmann | 5e23b92 | 2007-10-20 14:12:34 +0200 | [diff] [blame] | 17 | Say Y here to compile support for Bluetooth USB devices into the |
| 18 | kernel or say M to compile it as module (btusb). |
| 19 | |
Marcel Holtmann | ddbaf13 | 2007-10-20 14:02:04 +0200 | [diff] [blame] | 20 | config BT_HCIBTSDIO |
| 21 | tristate "HCI SDIO driver" |
| 22 | depends on MMC |
| 23 | help |
| 24 | Bluetooth HCI SDIO driver. |
| 25 | This driver is required if you want to use Bluetooth device with |
| 26 | SDIO interface. |
| 27 | |
| 28 | Say Y here to compile support for Bluetooth SDIO devices into the |
| 29 | kernel or say M to compile it as module (btsdio). |
| 30 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | config BT_HCIUART |
| 32 | tristate "HCI UART driver" |
Joe Millenbach | 4f73bc4 | 2013-01-17 22:44:22 -0800 | [diff] [blame] | 33 | depends on TTY |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | help |
| 35 | Bluetooth HCI UART driver. |
| 36 | This driver is required if you want to use Bluetooth devices with |
Stephan Gabert | 8ba8b4c | 2014-06-16 18:52:25 +0200 | [diff] [blame] | 37 | serial port interface. You will also need this driver if you have |
| 38 | UART based Bluetooth PCMCIA and CF devices like Xircom Credit Card |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | adapter and BrainBoxes Bluetooth PC Card. |
| 40 | |
| 41 | Say Y here to compile support for Bluetooth UART devices into the |
| 42 | kernel or say M to compile it as module (hci_uart). |
| 43 | |
| 44 | config BT_HCIUART_H4 |
| 45 | bool "UART (H4) protocol support" |
| 46 | depends on BT_HCIUART |
| 47 | help |
Stephan Gabert | 8ba8b4c | 2014-06-16 18:52:25 +0200 | [diff] [blame] | 48 | UART (H4) is serial protocol for communication between Bluetooth |
| 49 | device and host. This protocol is required for most Bluetooth devices |
| 50 | with UART interface, including PCMCIA and CF cards. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | |
| 52 | Say Y here to compile support for HCI UART (H4) protocol. |
| 53 | |
| 54 | config BT_HCIUART_BCSP |
| 55 | bool "BCSP protocol support" |
| 56 | depends on BT_HCIUART |
Randy Dunlap | d3a8eab0 | 2008-07-15 00:51:45 -0700 | [diff] [blame] | 57 | select BITREVERSE |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | help |
Stephan Gabert | 8ba8b4c | 2014-06-16 18:52:25 +0200 | [diff] [blame] | 59 | BCSP (BlueCore Serial Protocol) is serial protocol for communication |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | between Bluetooth device and host. This protocol is required for non |
| 61 | USB Bluetooth devices based on CSR BlueCore chip, including PCMCIA and |
| 62 | CF cards. |
| 63 | |
| 64 | Say Y here to compile support for HCI BCSP protocol. |
| 65 | |
Suraj Sumangala | b3190df | 2010-07-19 12:34:07 +0530 | [diff] [blame] | 66 | config BT_HCIUART_ATH3K |
| 67 | bool "Atheros AR300x serial support" |
| 68 | depends on BT_HCIUART |
Marcel Holtmann | d90aa68 | 2015-04-04 21:59:26 -0700 | [diff] [blame] | 69 | select BT_HCIUART_H4 |
Suraj Sumangala | b3190df | 2010-07-19 12:34:07 +0530 | [diff] [blame] | 70 | help |
| 71 | HCIATH3K (HCI Atheros AR300x) is a serial protocol for |
| 72 | communication between host and Atheros AR300x Bluetooth devices. |
| 73 | This protocol enables AR300x chips to be enabled with |
| 74 | power management support. |
| 75 | Enable this if you have Atheros AR300x serial Bluetooth device. |
| 76 | |
| 77 | Say Y here to compile support for HCI UART ATH3K protocol. |
| 78 | |
Ohad Ben-Cohen | 166d2f6 | 2007-10-20 13:42:36 +0200 | [diff] [blame] | 79 | config BT_HCIUART_LL |
| 80 | bool "HCILL protocol support" |
| 81 | depends on BT_HCIUART |
| 82 | help |
| 83 | HCILL (HCI Low Level) is a serial protocol for communication |
| 84 | between Bluetooth device and host. This protocol is required for |
| 85 | serial Bluetooth devices that are based on Texas Instruments' |
| 86 | BRF chips. |
| 87 | |
| 88 | Say Y here to compile support for HCILL protocol. |
| 89 | |
Johan Hedberg | 7dec65c | 2012-07-16 16:12:02 +0300 | [diff] [blame] | 90 | config BT_HCIUART_3WIRE |
| 91 | bool "Three-wire UART (H5) protocol support" |
| 92 | depends on BT_HCIUART |
| 93 | help |
| 94 | The HCI Three-wire UART Transport Layer makes it possible to |
| 95 | user the Bluetooth HCI over a serial port interface. The HCI |
| 96 | Three-wire UART Transport Layer assumes that the UART |
| 97 | communication may have bit errors, overrun errors or burst |
| 98 | errors and thereby making CTS/RTS lines unnecessary. |
| 99 | |
| 100 | Say Y here to compile support for Three-wire UART protocol. |
| 101 | |
Marcel Holtmann | 16e3887 | 2015-04-04 16:13:02 -0700 | [diff] [blame] | 102 | config BT_HCIUART_INTEL |
| 103 | bool "Intel protocol support" |
| 104 | depends on BT_HCIUART |
| 105 | help |
| 106 | The Intel protocol support enables Bluetooth HCI over serial |
| 107 | port interface for Intel Bluetooth controllers. |
| 108 | |
| 109 | Say Y here to compile support for Intel protocol. |
| 110 | |
Marcel Holtmann | e9a2dd2 | 2015-04-04 16:13:03 -0700 | [diff] [blame] | 111 | config BT_HCIUART_BCM |
| 112 | bool "Broadcom protocol support" |
| 113 | depends on BT_HCIUART |
Marcel Holtmann | 3e0ac12 | 2015-04-05 22:52:12 -0700 | [diff] [blame^] | 114 | select BT_BCM |
Marcel Holtmann | e9a2dd2 | 2015-04-04 16:13:03 -0700 | [diff] [blame] | 115 | help |
| 116 | The Broadcom protocol support enables Bluetooth HCI over serial |
| 117 | port interface for Broadcom Bluetooth controllers. |
| 118 | |
| 119 | Say Y here to compile support for Broadcom protocol. |
| 120 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 121 | config BT_HCIBCM203X |
| 122 | tristate "HCI BCM203x USB driver" |
| 123 | depends on USB |
| 124 | select FW_LOADER |
| 125 | help |
| 126 | Bluetooth HCI BCM203x USB driver. |
| 127 | This driver provides the firmware loading mechanism for the Broadcom |
| 128 | Blutonium based devices. |
| 129 | |
| 130 | Say Y here to compile support for HCI BCM203x devices into the |
| 131 | kernel or say M to compile it as module (bcm203x). |
| 132 | |
| 133 | config BT_HCIBPA10X |
| 134 | tristate "HCI BPA10x USB driver" |
| 135 | depends on USB |
| 136 | help |
| 137 | Bluetooth HCI BPA10x USB driver. |
| 138 | This driver provides support for the Digianswer BPA 100/105 Bluetooth |
| 139 | sniffer devices. |
| 140 | |
| 141 | Say Y here to compile support for HCI BPA10x devices into the |
| 142 | kernel or say M to compile it as module (bpa10x). |
| 143 | |
| 144 | config BT_HCIBFUSB |
| 145 | tristate "HCI BlueFRITZ! USB driver" |
| 146 | depends on USB |
| 147 | select FW_LOADER |
| 148 | help |
| 149 | Bluetooth HCI BlueFRITZ! USB driver. |
| 150 | This driver provides support for Bluetooth USB devices with AVM |
| 151 | interface: |
| 152 | AVM BlueFRITZ! USB |
| 153 | |
| 154 | Say Y here to compile support for HCI BFUSB devices into the |
| 155 | kernel or say M to compile it as module (bfusb). |
| 156 | |
| 157 | config BT_HCIDTL1 |
| 158 | tristate "HCI DTL1 (PC Card) driver" |
| 159 | depends on PCMCIA |
| 160 | help |
| 161 | Bluetooth HCI DTL1 (PC Card) driver. |
| 162 | This driver provides support for Bluetooth PCMCIA devices with |
| 163 | Nokia DTL1 interface: |
| 164 | Nokia Bluetooth Card |
| 165 | Socket Bluetooth CF Card |
| 166 | |
| 167 | Say Y here to compile support for HCI DTL1 devices into the |
| 168 | kernel or say M to compile it as module (dtl1_cs). |
| 169 | |
| 170 | config BT_HCIBT3C |
| 171 | tristate "HCI BT3C (PC Card) driver" |
| 172 | depends on PCMCIA |
| 173 | select FW_LOADER |
| 174 | help |
| 175 | Bluetooth HCI BT3C (PC Card) driver. |
| 176 | This driver provides support for Bluetooth PCMCIA devices with |
| 177 | 3Com BT3C interface: |
| 178 | 3Com Bluetooth Card (3CRWB6096) |
| 179 | HP Bluetooth Card |
| 180 | |
| 181 | Say Y here to compile support for HCI BT3C devices into the |
| 182 | kernel or say M to compile it as module (bt3c_cs). |
| 183 | |
| 184 | config BT_HCIBLUECARD |
| 185 | tristate "HCI BlueCard (PC Card) driver" |
| 186 | depends on PCMCIA |
| 187 | help |
| 188 | Bluetooth HCI BlueCard (PC Card) driver. |
| 189 | This driver provides support for Bluetooth PCMCIA devices with |
| 190 | Anycom BlueCard interface: |
| 191 | Anycom Bluetooth PC Card |
| 192 | Anycom Bluetooth CF Card |
| 193 | |
| 194 | Say Y here to compile support for HCI BlueCard devices into the |
| 195 | kernel or say M to compile it as module (bluecard_cs). |
| 196 | |
| 197 | config BT_HCIBTUART |
| 198 | tristate "HCI UART (PC Card) device driver" |
| 199 | depends on PCMCIA |
| 200 | help |
| 201 | Bluetooth HCI UART (PC Card) driver. |
| 202 | This driver provides support for Bluetooth PCMCIA devices with |
| 203 | an UART interface: |
| 204 | Xircom CreditCard Bluetooth Adapter |
| 205 | Xircom RealPort2 Bluetooth Adapter |
| 206 | Sphinx PICO Card |
| 207 | H-Soft blue+Card |
| 208 | Cyber-blue Compact Flash Card |
| 209 | |
| 210 | Say Y here to compile support for HCI UART devices into the |
| 211 | kernel or say M to compile it as module (btuart_cs). |
| 212 | |
| 213 | config BT_HCIVHCI |
| 214 | tristate "HCI VHCI (Virtual HCI device) driver" |
| 215 | help |
| 216 | Bluetooth Virtual HCI device driver. |
| 217 | This driver is required if you want to use HCI Emulation software. |
| 218 | |
| 219 | Say Y here to compile support for virtual HCI devices into the |
| 220 | kernel or say M to compile it as module (hci_vhci). |
| 221 | |
Bing Zhao | 132ff4e | 2009-06-02 14:29:35 -0700 | [diff] [blame] | 222 | config BT_MRVL |
| 223 | tristate "Marvell Bluetooth driver support" |
Bing Zhao | 132ff4e | 2009-06-02 14:29:35 -0700 | [diff] [blame] | 224 | help |
| 225 | The core driver to support Marvell Bluetooth devices. |
| 226 | |
| 227 | This driver is required if you want to support |
Xinming Hu | 3907d55 | 2014-09-30 06:45:33 -0400 | [diff] [blame] | 228 | Marvell Bluetooth devices, such as 8688/8787/8797/8887/8897. |
Bing Zhao | 132ff4e | 2009-06-02 14:29:35 -0700 | [diff] [blame] | 229 | |
| 230 | Say Y here to compile Marvell Bluetooth driver |
| 231 | into the kernel or say M to compile it as module. |
| 232 | |
Bing Zhao | 789221e | 2009-06-02 14:29:36 -0700 | [diff] [blame] | 233 | config BT_MRVL_SDIO |
| 234 | tristate "Marvell BT-over-SDIO driver" |
| 235 | depends on BT_MRVL && MMC |
Marcel Holtmann | e7a25f9 | 2009-06-09 13:42:54 +0200 | [diff] [blame] | 236 | select FW_LOADER |
Xinming Hu | dc75961 | 2014-11-24 02:40:53 -0800 | [diff] [blame] | 237 | select WANT_DEV_COREDUMP |
Bing Zhao | 789221e | 2009-06-02 14:29:36 -0700 | [diff] [blame] | 238 | help |
| 239 | The driver for Marvell Bluetooth chipsets with SDIO interface. |
| 240 | |
| 241 | This driver is required if you want to use Marvell Bluetooth |
Xinming Hu | 3907d55 | 2014-09-30 06:45:33 -0400 | [diff] [blame] | 242 | devices with SDIO interface. Currently SD8688/SD8787/SD8797/SD8887/SD8897 |
Bing Zhao | 2ac654f | 2011-11-16 20:40:42 -0800 | [diff] [blame] | 243 | chipsets are supported. |
Bing Zhao | 789221e | 2009-06-02 14:29:36 -0700 | [diff] [blame] | 244 | |
| 245 | Say Y here to compile support for Marvell BT-over-SDIO driver |
| 246 | into the kernel or say M to compile it as module. |
| 247 | |
Vikram Kandukuri | 9670d80 | 2010-01-06 19:04:15 +0530 | [diff] [blame] | 248 | config BT_ATH3K |
| 249 | tristate "Atheros firmware download driver" |
| 250 | depends on BT_HCIBTUSB |
| 251 | select FW_LOADER |
| 252 | help |
| 253 | Bluetooth firmware download driver. |
| 254 | This driver loads the firmware into the Atheros Bluetooth |
| 255 | chipset. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 256 | |
Vikram Kandukuri | 9670d80 | 2010-01-06 19:04:15 +0530 | [diff] [blame] | 257 | Say Y here to compile support for "Atheros firmware download driver" |
| 258 | into the kernel or say M to compile it as module (ath3k). |
| 259 | |
Pavan Savoy | 363907a | 2011-02-20 22:41:16 -0600 | [diff] [blame] | 260 | config BT_WILINK |
| 261 | tristate "Texas Instruments WiLink7 driver" |
| 262 | depends on TI_ST |
| 263 | help |
| 264 | This enables the Bluetooth driver for Texas Instrument's BT/FM/GPS |
| 265 | combo devices. This makes use of shared transport line discipline |
| 266 | core driver to communicate with the BT core of the combo chip. |
| 267 | |
| 268 | Say Y here to compile support for Texas Instrument's WiLink7 driver |
Pavel Machek | 22e8ee1 | 2014-01-17 14:34:30 +0100 | [diff] [blame] | 269 | into the kernel or say M to compile it as module (btwilink). |
| 270 | |
Vikram Kandukuri | 9670d80 | 2010-01-06 19:04:15 +0530 | [diff] [blame] | 271 | endmenu |