Kconfig 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287
  1. #
  2. # Copyright (c) 2020 Actions Semiconductor
  3. #
  4. # SPDX-License-Identifier: LicenseRef-BSD-5-Clause-Actions
  5. #
  6. menuconfig ACTS_BT
  7. bool "Actions Bluetooth"
  8. # Some BT threads use co-op priorities to implement critical sections,
  9. # will need some refactoring to work on SMP systems.
  10. depends on !SMP
  11. depends on !BT
  12. default n
  13. select BT_STACK
  14. select ACTS_BT_HCI
  15. select ACTS_NET_BUF
  16. select ACTS_BT_HCI_VS
  17. help
  18. This option enables Actions Bluetooth support.
  19. config ACTS_BT_HCI
  20. bool "Actions bluetooth hci"
  21. depends on !BT_HCI
  22. default n
  23. help
  24. Enables Actions bluetooth hci.
  25. config ACTS_BT_HCI_VS
  26. bool "Actions bluetooth hci vendor command event"
  27. default n
  28. help
  29. Enables Actions bluetooth hci vendor command event.
  30. config BT_PROPERTY
  31. bool "Enable actions bt store"
  32. depends on ACTS_BT
  33. default y
  34. select PROPERTY
  35. help
  36. This option enables actions bt store.
  37. config ACTS_NET_BUF
  38. bool "Actions bluetooth net buf"
  39. depends on !NET_BUF
  40. default n
  41. help
  42. Enables Actions bluetooth net buf.
  43. config BT_BR_ACTS
  44. bool "Bt BR Support"
  45. default y
  46. help
  47. This option enables bt br acts.
  48. if ACTS_BT
  49. module = ACTS_BT
  50. module-str = acts_bt
  51. source "subsys/logging/Kconfig.template.log_config"
  52. # The Bluetooth subsystem requires the system workqueue to execute at
  53. # a cooperative priority.
  54. config SYSTEM_WORKQUEUE_PRIORITY
  55. range -256 -1
  56. config BT_HCI_RAW
  57. bool "RAW HCI access"
  58. help
  59. This option allows to access Bluetooth controller
  60. from the application with the RAW HCI protocol.
  61. config BT_HCI_RAW_H4
  62. bool "RAW HCI H:4 transport"
  63. help
  64. This option enables HCI RAW access to work over an H:4
  65. transport, note that it still need to be selected at runtime.
  66. config BT_HCI_RAW_H4_ENABLE
  67. bool "RAW HCI H:4 transport enable"
  68. depends on BT_HCI_RAW_H4
  69. help
  70. This option enables use of H:4 transport for HCI RAW access at
  71. build time.
  72. config BT_HCI_RAW_RESERVE
  73. int "Buffer headroom needed for HCI transport"
  74. depends on BT_HCI_RAW
  75. default 1 if BT_HCI_RAW_H4
  76. default 0
  77. help
  78. This option is used by the HCI raw transport implementation to
  79. declare how much headroom it needs for any HCI transport headers.
  80. config BT_HCI_RAW_CMD_EXT
  81. bool "RAW HCI Command Extension"
  82. help
  83. This option enables HCI RAW command extension so the driver can
  84. register it own command table extension.
  85. config BT_PERIPHERAL
  86. bool "Peripheral Role support"
  87. select BT_BROADCASTER
  88. select BT_CONN
  89. default y if BT_HCI_RAW
  90. help
  91. Select this for LE Peripheral role support.
  92. config BT_CENTRAL
  93. bool "Central Role support"
  94. select BT_OBSERVER
  95. select BT_CONN
  96. default y if BT_HCI_RAW
  97. help
  98. Select this for LE Central role support.
  99. menu "Broadcaster"
  100. visible if !BT_PERIPHERAL
  101. config BT_BROADCASTER
  102. bool "Broadcaster Role support"
  103. default y if !BT_OBSERVER
  104. help
  105. Select this for LE Broadcaster role support.
  106. endmenu
  107. config BT_EXT_ADV
  108. bool "Extended Advertising and Scanning support [EXPERIMENTAL]"
  109. help
  110. Select this to enable Extended Advertising API support.
  111. This enables support for advertising with multiple advertising sets,
  112. extended advertising data, and advertising on LE Coded PHY.
  113. It enables support for receiving extended advertising data as a
  114. scanner, including support for advertising data over the LE coded PHY.
  115. It enables establishing connections over LE Coded PHY.
  116. if BT_EXT_ADV
  117. config BT_EXT_ADV_LEGACY_SUPPORT
  118. bool "Support starting advertising through legacy commands"
  119. help
  120. Select this to enable the use of the Legacy Advertising HCI commands.
  121. This option should be used where the capabilities of the controller
  122. is not known.
  123. If this option is not enabled the controller must support the extended
  124. advertising feature.
  125. config BT_EXT_ADV_MAX_ADV_SET
  126. int "Maximum number of simultaneous advertising sets"
  127. range 1 64
  128. default 1
  129. help
  130. Maximum number of simultaneous Bluetooth advertising sets
  131. supported.
  132. config BT_PER_ADV
  133. bool "Periodic Advertising and Scanning support [EXPERIMENTAL]"
  134. help
  135. Select this to enable Periodic Advertising API support. This allows
  136. the device to send advertising data periodically at deterministic
  137. intervals. Scanners can synchronize to the periodic advertisements
  138. to periodically get the data.
  139. config BT_PER_ADV_SYNC
  140. bool "Periodic advertising sync support [EXPERIMENTAL]"
  141. depends on BT_OBSERVER
  142. help
  143. Select this to enable Periodic Advertising Sync API support.
  144. Syncing with a periodic advertiser allows the device to periodically
  145. and deterministic receive data from that device in a connectionless
  146. manner.
  147. if BT_PER_ADV_SYNC
  148. config BT_PER_ADV_SYNC_MAX
  149. int "Maximum number of simultaneous periodic advertising syncs"
  150. range 1 64
  151. default 1
  152. help
  153. Maximum number of simultaneous periodic advertising syncs supported.
  154. endif # BT_PER_ADV_SYNC
  155. endif # BT_EXT_ADV
  156. menu "Observer"
  157. visible if !BT_CENTRAL
  158. config BT_OBSERVER
  159. bool "Observer Role support"
  160. help
  161. Select this for LE Observer role support.
  162. endmenu
  163. rsource "services/Kconfig"
  164. config BT_CONN
  165. bool
  166. config BT_MAX_CONN
  167. int "Maximum number of simultaneous connections"
  168. depends on BT_CONN
  169. range 1 64
  170. default 1
  171. help
  172. Maximum number of simultaneous Bluetooth connections
  173. supported.
  174. config BT_MAX_BR_CONN
  175. int "Maximum number of simultaneous BR connections"
  176. depends on BT_CONN
  177. default 0 if !BT_BREDR
  178. default 1
  179. range 0 64
  180. help
  181. Maximum number of simultaneous Bluetooth BR connections
  182. supported.
  183. if BT_CONN
  184. config BT_HCI_ACL_FLOW_CONTROL
  185. bool "Controller to Host ACL flow control support"
  186. # Enable if building a Host-only build
  187. default y if !BT_CTLR && !BT_STM32_IPM && !ACTS_BT
  188. # Enable if building a Controller-only build
  189. default y if BT_HCI_RAW && !ACTS_BT
  190. default n
  191. select POLL
  192. help
  193. Enable support for throttling ACL buffers from the controller
  194. to the host. This is particularly useful when the host and
  195. controller are on separate cores since it ensures that we do
  196. not run out of incoming ACL buffers.
  197. config BT_REMOTE_VERSION
  198. bool "Enable fetching of remote version"
  199. # Enable if building a Controller-only build
  200. default y if BT_HCI_RAW
  201. help
  202. Enable this to get access to the remote version in the Controller and
  203. in the Host through bt_conn_get_info(). The fields in question can
  204. be then found in the bt_conn_info struct.
  205. config BT_PHY_UPDATE
  206. bool "PHY Update"
  207. default y
  208. help
  209. Enable support for Bluetooth 5.0 PHY Update Procedure.
  210. config BT_DATA_LEN_UPDATE
  211. bool "Data Length Update"
  212. default y
  213. help
  214. Enable support for Bluetooth v4.2 LE Data Length Update procedure.
  215. endif # BT_CONN
  216. # Workaround for not being able to have commas in macro arguments
  217. DT_CHOSEN_Z_BT_C2H_UART := zephyr,bt-c2h-uart
  218. config BT_CTLR_TO_HOST_UART_DEV_NAME
  219. string "Device Name of UART Device to an external Bluetooth Host"
  220. default "$(dt_chosen_label,$(DT_CHOSEN_Z_BT_C2H_UART))" if HAS_DTS
  221. default "UART_0"
  222. depends on BT_HCI_RAW
  223. help
  224. This option specifies the name of UART device to be used
  225. to connect to an external Bluetooth Host when Zephyr is
  226. acting as a Bluetooth Controller.
  227. rsource "common/Kconfig"
  228. rsource "Kconfig.host"
  229. if ACTS_NET_BUF
  230. rsource "Kconfig.buf"
  231. endif
  232. config BT_COMPANY_ID
  233. hex "Company Id"
  234. default 0x03E0
  235. range 0x0000 0xFFFF
  236. help
  237. Set the Bluetooth Company Identifier for this device. The Actions
  238. Company Identifier (0x05F1) is the default value for
  239. this option although silicon vendors and hardware manufacturers
  240. can set their own. Note that the controller's Company Identifier is
  241. controlled by BT_CTLR_COMPANY_ID. The full list of Bluetooth
  242. Company Identifiers can be found here:
  243. https://www.bluetooth.com/specifications/assigned-numbers/company-identifiers
  244. endif # ACTS_BT