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