summaryrefslogtreecommitdiff
path: root/target/waldux/config/Config.in.bluetooth
blob: 012733be259781536b2fd3105b5e6c23b9122602 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
# This file is part of the OpenADK project. OpenADK is copyrighted
# material, please see the LICENCE file in the top-level directory.

menu "Bluetooth support and drivers"
depends on ADK_TARGET_WITH_USB \
	|| ADK_TARGET_WITH_MINIPCI \
	|| ADK_TARGET_WITH_SDIO \
	|| ADK_TARGET_GENERIC

config ADK_WALDUX_KERNEL_BT_BREDR
	bool

config ADK_WALDUX_KERNEL_BT_BCM
	tristate

config ADK_WALDUX_KERNEL_BT
	tristate "Bluetooth network stack"
	select ADK_WALDUX_KERNEL_BT_BREDR
	default n
	help
	  Bluetooth is low-cost, low-power, short-range wireless technology.
	  It was designed as a replacement for cables and other short-range
	  technologies like IrDA.  Bluetooth operates in personal area range
	  that typically extends up to 10 meters.  More information about
	  Bluetooth can be found at <http://www.bluetooth.com/>.

	  Linux Bluetooth subsystem consist of several layers:
	     Bluetooth Core (HCI device and connection manager, scheduler)
	     HCI Device drivers (Interface to the hardware)
	     SCO Module (SCO audio links)
	     L2CAP Module (Logical Link Control and Adaptation Protocol)
	     RFCOMM Module (RFCOMM Protocol)  
	     BNEP Module (Bluetooth Network Encapsulation Protocol)
	     CMTP Module (CAPI Message Transport Protocol)
	     HIDP Module (Human Interface Device Protocol)

config ADK_WALDUX_KERNEL_BT_L2CAP
	bool "L2CAP protocol support"
	select ADK_WALDUX_KERNEL_BT
	default n
	help
	  L2CAP (Logical Link Control and Adaptation Protocol) provides
	  connection oriented and connection-less data transport.  L2CAP
	  support is required for most Bluetooth applications.

config ADK_WALDUX_KERNEL_BT_SCO
	bool "SCO link support"
	select ADK_WALDUX_KERNEL_BT
	default n
	help
	  SCO link provides voice transport over Bluetooth.  SCO support is
	  required for voice applications like Headset and Audio.

config ADK_WALDUX_KERNEL_BT_RFCOMM
	tristate "RFCOMM protocol support"
	select ADK_WALDUX_KERNEL_BT
	depends on ADK_WALDUX_KERNEL_BT_L2CAP
	default n
	help
	  RFCOMM provides connection oriented stream transport.  RFCOMM
	  support is required for Dialup Networking, OBEX and other Bluetooth
	  applications.

config ADK_WALDUX_KERNEL_BT_BNEP
	tristate "BNEP protocol support"
	select ADK_WALDUX_KERNEL_BT
	depends on ADK_WALDUX_KERNEL_BT_L2CAP
	default n
	help
	  BNEP (Bluetooth Network Encapsulation Protocol) is Ethernet
	  emulation layer on top of Bluetooth.  BNEP is required for
	  Bluetooth PAN (Personal Area Network).

config ADK_WALDUX_KERNEL_BT_HIDP
	tristate "HIDP protocol support"
	select ADK_WALDUX_KERNEL_INPUT
	select ADK_WALDUX_KERNEL_HID
	select ADK_WALDUX_KERNEL_BT
	depends on ADK_WALDUX_KERNEL_BT_L2CAP
	default n
	help
	  HIDP (Human Interface Device Protocol) is a transport layer
	  for HID reports.  HIDP is required for the Bluetooth Human
	  Interface Device Profile.

config ADK_WALDUX_KERNEL_BT_HCIBTSDIO
	tristate "HCI SDIO driver"
	select ADK_WALDUX_KERNEL_BT
	depends on ADK_TARGET_WITH_SDIO
	default n
	help
	  Bluetooth HCI SDIO driver.
	  This driver is required if you want to use Bluetooth devices with
	  SDIO interface.

config ADK_WALDUX_KERNEL_BT_HCIBTUSB
	tristate "HCI USB driver"
	select ADK_WALDUX_KERNEL_BT
	depends on ADK_TARGET_WITH_USB
	default n
	help
	  Bluetooth HCI USB driver.
	  This driver is required if you want to use Bluetooth devices with
	  USB interface.

config ADK_WALDUX_KERNEL_BT_HCIBTUSB_BCM
	bool "Broadcom protocol support"
	depends on ADK_WALDUX_KERNEL_BT_HCIBTUSB
	select ADK_WALDUX_KERNEL_BT_BCM
	help
	  The Broadcom protocol support enables firmware and patchram
	  download support for Broadcom Bluetooth controllers.

config ADK_WALDUX_KERNEL_BT_HCIUART
	tristate "HCI UART driver"
	select ADK_WALDUX_KERNEL_BT
	default n
	help
	  Bluetooth HCI UART driver.
	  This driver is required if you want to use Bluetooth devices with
	  serial port interface. You will also need this driver if you have 
	  UART based Bluetooth PCMCIA and CF devices like Xircom Credit Card 
	  adapter and BrainBoxes Bluetooth PC Card.

config ADK_WALDUX_KERNEL_BT_HCIUART_H4
	bool
	depends on ADK_WALDUX_KERNEL_BT_HCIUART
	default n

config ADK_WALDUX_KERNEL_BT_HCIUART_3WIRE
	bool
	depends on ADK_WALDUX_KERNEL_BT_HCIUART
	default n

config ADK_WALDUX_KERNEL_BT_HCIUART_BCM
	tristate "Broadcom protocol support"
	select ADK_WALDUX_KERNEL_BT_HCIUART
	select ADK_WALDUX_KERNEL_BT_HCIUART_3WIRE
	select ADK_WALDUX_KERNEL_BT_BCM
	depends on ADK_TARGET_SYSTEM_RASPBERRY_PI3
	default n
	help
	  The Broadcom protocol support enables Bluetooth HCI over serial
	  port interface for Broadcom Bluetooth controllers.

config ADK_WALDUX_KERNEL_BT_MRVL
	tristate "Marvell driver"
	select ADK_WALDUX_KERNEL_BT
	default n
	help
	  Bluetooth Marvell driver.

config ADK_WALDUX_KERNEL_BT_MRVL_SDIO
	tristate "Marvell SDIO driver"
	select ADK_PACKAGE_BRCM_BLUETOOTH
	select ADK_WALDUX_KERNEL_BT_MRVL
	select ADK_WALDUX_KERNEL_BT_HCIBTSDIO
	depends on ADK_TARGET_WITH_SDIO
	default n
	help
	  Bluetooth Marvell driver.

config ADK_WALDUX_KERNEL_BT_HCIBCM203X
	tristate "HCI BCM203x USB driver"
	select ADK_WALDUX_KERNEL_FW_LOADER
	select ADK_WALDUX_KERNEL_BT_HCIBTUSB
	select ADK_WALDUX_KERNEL_BT
	depends on ADK_TARGET_WITH_USB
	default n
	help
	  Bluetooth HCI BCM203x USB driver.
	  This driver provides the firmware loading mechanism for the Broadcom
	  Blutonium based devices.

config ADK_WALDUX_KERNEL_BT_HCIBPA10X
	tristate "HCI BPA10x USB driver"
	select ADK_WALDUX_KERNEL_BT
	select ADK_WALDUX_KERNEL_BT_HCIBTUSB
	default n
	help
	  Bluetooth HCI BPA10x USB driver.
	  This driver provides support for the Digianswer BPA 100/105 Bluetooth
	  sniffer devices.

endmenu