Config.in.bluetooth 4.3 KB

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