Config.in.bluetooth 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177
  1. # This file is part of the OpenADK project. OpenADK is copyrighted
  2. # material, please see the LICENCE file in the top-level directory.
  3. menu "Bluetooth support and drivers"
  4. depends on ADK_TARGET_WITH_USB \
  5. || ADK_TARGET_WITH_MINIPCI \
  6. || ADK_TARGET_WITH_SDIO \
  7. || ADK_TARGET_GENERIC
  8. config ADK_KERNEL_BT_BREDR
  9. bool
  10. config ADK_KERNEL_BT_BCM
  11. tristate
  12. config ADK_KERNEL_BT
  13. tristate "Bluetooth network stack"
  14. select ADK_KERNEL_BT_BREDR
  15. default n
  16. help
  17. Bluetooth is low-cost, low-power, short-range wireless technology.
  18. It was designed as a replacement for cables and other short-range
  19. technologies like IrDA. Bluetooth operates in personal area range
  20. that typically extends up to 10 meters. More information about
  21. Bluetooth can be found at <http://www.bluetooth.com/>.
  22. Linux Bluetooth subsystem consist of several layers:
  23. Bluetooth Core (HCI device and connection manager, scheduler)
  24. HCI Device drivers (Interface to the hardware)
  25. SCO Module (SCO audio links)
  26. L2CAP Module (Logical Link Control and Adaptation Protocol)
  27. RFCOMM Module (RFCOMM Protocol)
  28. BNEP Module (Bluetooth Network Encapsulation Protocol)
  29. CMTP Module (CAPI Message Transport Protocol)
  30. HIDP Module (Human Interface Device Protocol)
  31. config ADK_KERNEL_BT_L2CAP
  32. bool "L2CAP protocol support"
  33. select ADK_KERNEL_BT
  34. default n
  35. help
  36. L2CAP (Logical Link Control and Adaptation Protocol) provides
  37. connection oriented and connection-less data transport. L2CAP
  38. support is required for most Bluetooth applications.
  39. config ADK_KERNEL_BT_SCO
  40. bool "SCO link support"
  41. select ADK_KERNEL_BT
  42. default n
  43. help
  44. SCO link provides voice transport over Bluetooth. SCO support is
  45. required for voice applications like Headset and Audio.
  46. config ADK_KERNEL_BT_RFCOMM
  47. tristate "RFCOMM protocol support"
  48. select ADK_KERNEL_BT
  49. depends on ADK_KERNEL_BT_L2CAP
  50. default n
  51. help
  52. RFCOMM provides connection oriented stream transport. RFCOMM
  53. support is required for Dialup Networking, OBEX and other Bluetooth
  54. applications.
  55. config ADK_KERNEL_BT_BNEP
  56. tristate "BNEP protocol support"
  57. select ADK_KERNEL_BT
  58. depends on ADK_KERNEL_BT_L2CAP
  59. default n
  60. help
  61. BNEP (Bluetooth Network Encapsulation Protocol) is Ethernet
  62. emulation layer on top of Bluetooth. BNEP is required for
  63. Bluetooth PAN (Personal Area Network).
  64. config ADK_KERNEL_BT_HIDP
  65. tristate "HIDP protocol support"
  66. select ADK_KERNEL_INPUT
  67. select ADK_KERNEL_HID
  68. select ADK_KERNEL_BT
  69. depends on ADK_KERNEL_BT_L2CAP
  70. default n
  71. help
  72. HIDP (Human Interface Device Protocol) is a transport layer
  73. for HID reports. HIDP is required for the Bluetooth Human
  74. Interface Device Profile.
  75. config ADK_KERNEL_BT_HCIBTSDIO
  76. tristate "HCI SDIO driver"
  77. select ADK_KERNEL_BT
  78. depends on ADK_TARGET_WITH_SDIO
  79. default n
  80. help
  81. Bluetooth HCI SDIO driver.
  82. This driver is required if you want to use Bluetooth devices with
  83. SDIO interface.
  84. config ADK_KERNEL_BT_HCIBTUSB
  85. tristate "HCI USB driver"
  86. select ADK_KERNEL_BT
  87. depends on ADK_TARGET_WITH_USB
  88. default n
  89. help
  90. Bluetooth HCI USB driver.
  91. This driver is required if you want to use Bluetooth devices with
  92. USB interface.
  93. config ADK_KERNEL_BT_HCIUART
  94. tristate "HCI UART driver"
  95. select ADK_KERNEL_BT
  96. default n
  97. help
  98. Bluetooth HCI UART driver.
  99. This driver is required if you want to use Bluetooth devices with
  100. serial port interface. You will also need this driver if you have
  101. UART based Bluetooth PCMCIA and CF devices like Xircom Credit Card
  102. adapter and BrainBoxes Bluetooth PC Card.
  103. config ADK_KERNEL_BT_HCIUART_H4
  104. bool
  105. depends on ADK_KERNEL_BT_HCIUART
  106. default n
  107. config ADK_KERNEL_BT_HCIUART_3WIRE
  108. bool
  109. depends on ADK_KERNEL_BT_HCIUART
  110. default n
  111. config ADK_KERNEL_BT_HCIUART_BCM
  112. tristate "Broadcom protocol support"
  113. select ADK_KERNEL_BT_HCIUART
  114. select ADK_KERNEL_BT_HCIUART_3WIRE
  115. select ADK_KERNEL_BT_BCM
  116. default y if ADK_TARGET_SYSTEM_RASPBERRY_PI3
  117. depends on ADK_TARGET_SYSTEM_RASPBERRY_PI3
  118. help
  119. The Broadcom protocol support enables Bluetooth HCI over serial
  120. port interface for Broadcom Bluetooth controllers.
  121. config ADK_KERNEL_BT_MRVL
  122. tristate "Marvell driver"
  123. select ADK_KERNEL_BT
  124. default n
  125. help
  126. Bluetooth Marvell driver.
  127. config ADK_KERNEL_BT_MRVL_SDIO
  128. tristate "Marvell SDIO driver"
  129. select ADK_PACKAGE_BRCM_BLUETOOTH
  130. select ADK_KERNEL_BT_MRVL
  131. select ADK_KERNEL_BT_HCIBTSDIO
  132. depends on ADK_TARGET_WITH_SDIO
  133. default n
  134. help
  135. Bluetooth Marvell driver.
  136. config ADK_KERNEL_BT_HCIBCM203X
  137. tristate "HCI BCM203x USB driver"
  138. select ADK_KERNEL_FW_LOADER
  139. select ADK_KERNEL_BT_HCIBTUSB
  140. select ADK_KERNEL_BT
  141. depends on ADK_TARGET_WITH_USB
  142. default n
  143. help
  144. Bluetooth HCI BCM203x USB driver.
  145. This driver provides the firmware loading mechanism for the Broadcom
  146. Blutonium based devices.
  147. config ADK_KERNEL_BT_HCIBPA10X
  148. tristate "HCI BPA10x USB driver"
  149. select ADK_KERNEL_BT
  150. select ADK_KERNEL_BT_HCIBTUSB
  151. default n
  152. help
  153. Bluetooth HCI BPA10x USB driver.
  154. This driver provides support for the Digianswer BPA 100/105 Bluetooth
  155. sniffer devices.
  156. endmenu