Kconfig.host 30 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984
  1. # Bluetooth LE stack configuration options
  2. # Copyright (c) 2016-2020 Nordic Semiconductor ASA
  3. # Copyright (c) 2015-2016 Intel Corporation
  4. # SPDX-License-Identifier: Apache-2.0
  5. comment "Host Stack Configuration"
  6. config BT_HCI_HOST
  7. # Hidden option to make the conditions more intuitive
  8. bool
  9. default y
  10. depends on !BT_HCI_RAW
  11. select POLL
  12. config BT_HCI_CMD_COUNT
  13. int "Number of HCI command buffers"
  14. default 2
  15. range 2 64
  16. help
  17. Number of buffers available for HCI commands.
  18. config BT_RX_BUF_COUNT
  19. int "Number of HCI RX buffers"
  20. # default NET_BUF_RX_COUNT if NET_L2_BT
  21. default 3 if BT_RECV_IS_RX_THREAD
  22. default 20 if (BT_MESH && !(BT_DISCARDABLE_BUF_COUNT > 0))
  23. default 10
  24. range 2 255
  25. help
  26. Number of buffers available for incoming ACL packets or HCI events
  27. from the controller.
  28. config BT_RX_BUF_LEN
  29. int "Maximum supported HCI RX buffer length"
  30. default 680 if BT_BREDR
  31. default 258 if BT_EXT_ADV
  32. default 77 if BT_MESH_PROXY
  33. default 76
  34. range 73 2000
  35. help
  36. Maximum data size for each HCI RX buffer. This size includes
  37. everything starting with the ACL or HCI event headers. Note that
  38. buffer sizes are always rounded up to the nearest multiple of 4,
  39. so if this Kconfig value is something else then there will be some
  40. wasted space. The minimum of 73 has been taken for LE SC which has
  41. an L2CAP MTU of 65 bytes. On top of this there's the L2CAP header
  42. (4 bytes) and the ACL header (also 4 bytes) which yields 73 bytes.
  43. config BT_DISCARDABLE_BUF_COUNT
  44. int "Number of discardable event buffers"
  45. range 1 255
  46. default 20 if BT_MESH
  47. default 3
  48. depends on BT_H4 || BT_RPMSG || BT_CTLR
  49. help
  50. Number of buffers in a separate buffer pool for events which
  51. the HCI driver considers discardable. Examples of such events
  52. could be e.g. Advertising Reports. The benefit of having such
  53. a pool means that the if there is a heavy inflow of such events
  54. it will not cause the allocation for other critical events to
  55. block and may even eliminate deadlocks in some cases.
  56. config BT_DISCARDABLE_BUF_SIZE
  57. int "Size of discardable event buffers"
  58. range 45 257
  59. default 257 if BT_BREDR || BT_EXT_ADV
  60. default 45
  61. help
  62. Size of buffers in the separate discardable event buffer pool.
  63. The minimum size is set based on the Advertising Report. Setting
  64. the buffer size different than BT_RX_BUF_LEN can save memory.
  65. config BT_HCI_TX_STACK_SIZE
  66. # NOTE: This value is derived from other symbols and should only be
  67. # changed if required by architecture
  68. int
  69. prompt "HCI Tx thread stack size" if BT_HCI_TX_STACK_SIZE_WITH_PROMPT
  70. default 512 if BT_H4
  71. default 512 if BT_H5
  72. default 416 if BT_SPI
  73. default 940 if BT_CTLR && BT_LL_SW_SPLIT && NO_OPTIMIZATIONS
  74. default 1024 if BT_CTLR && BT_LL_SW_SPLIT && BT_CENTRAL
  75. default 640 if BT_CTLR && BT_LL_SW_SPLIT
  76. default 512 if BT_USERCHAN
  77. default 640 if BT_STM32_IPM
  78. # Even if no driver is selected the following default is still
  79. # needed e.g. for unit tests. This default will also server as
  80. # the worst-case stack size if an out-of-tree controller is used.
  81. default 1024
  82. help
  83. Stack size needed for executing bt_send with specified driver.
  84. NOTE: This is an advanced setting and should not be changed unless
  85. absolutely necessary
  86. config BT_HCI_TX_STACK_SIZE_WITH_PROMPT
  87. bool "Override HCI Tx thread stack size"
  88. config BT_HCI_ECC_STACK_SIZE
  89. # NOTE: This value is derived from other symbols and should only be
  90. # changed if required by architecture
  91. int "HCI ECC thread stack size"
  92. default 1100
  93. help
  94. NOTE: This is an advanced setting and should not be changed unless
  95. absolutely necessary
  96. config BT_HCI_TX_PRIO
  97. # Hidden option for Co-Operative Tx thread priority
  98. int
  99. default 7
  100. config BT_HCI_RESERVE
  101. int
  102. default 0 if BT_H4
  103. default 1 if BT_H5
  104. default 1 if BT_RPMSG
  105. default 1 if BT_SPI
  106. default 1 if BT_STM32_IPM
  107. default 1 if BT_USERCHAN
  108. # Even if no driver is selected the following default is still
  109. # needed e.g. for unit tests.
  110. default 0
  111. help
  112. Headroom that the driver needs for sending and receiving buffers. Add a
  113. new 'default' entry for each new driver.
  114. config BT_RECV_IS_RX_THREAD
  115. # Hidden option set by the HCI driver to indicate that there's
  116. # no need for the host to have its own RX thread.
  117. # If this option has been enabled it is then the responsibility of the
  118. # HCI driver to call bt_recv_prio from a higher priority context than
  119. # bt_recv in order to avoid deadlocks.
  120. # If this option is disabled then only bt_recv should be called.
  121. bool
  122. default n
  123. prompt "bt_recv is called from RX thread" if BT_NO_DRIVER
  124. config BT_RX_STACK_SIZE
  125. int "Size of the receiving thread stack"
  126. depends on BT_HCI_HOST || BT_RECV_IS_RX_THREAD
  127. default 512 if BT_HCI_RAW
  128. default 2048 if BT_MESH
  129. default 2200 if BT_SETTINGS
  130. default 1536
  131. help
  132. Size of the receiving thread stack. This is the context from
  133. which all event callbacks to the application occur. The
  134. default value is sufficient for basic operation, but if the
  135. application needs to do advanced things in its callbacks that
  136. require extra stack space, this value can be increased to
  137. accommodate for that.
  138. config BT_RX_PRIO
  139. # Hidden option for Co-Operative Rx thread priority
  140. int
  141. depends on BT_HCI_HOST || BT_RECV_IS_RX_THREAD
  142. default 8
  143. config BT_DRIVER_RX_HIGH_PRIO
  144. # Hidden option for Co-Operative HCI driver RX thread priority
  145. int
  146. default 6
  147. if BT_HCI_HOST
  148. rsource "Kconfig.audio"
  149. config BT_HOST_CRYPTO
  150. # Hidden option that compiles in random number generation and AES
  151. # encryption support using TinyCrypt library if this is not provided
  152. # by the controller implementation.
  153. bool
  154. default y if !BT_CTLR_CRYPTO
  155. select TINYCRYPT
  156. select TINYCRYPT_AES
  157. select TINYCRYPT_SHA256
  158. select TINYCRYPT_SHA256_HMAC
  159. select TINYCRYPT_SHA256_HMAC_PRNG
  160. config BT_SETTINGS
  161. bool "Store Bluetooth state and configuration persistently"
  162. depends on SETTINGS && !BT_PROPERTY
  163. select MPU_ALLOW_FLASH_WRITE if ARM_MPU
  164. help
  165. When selected, the Bluetooth stack will take care of storing
  166. (and restoring) the Bluetooth state (e.g. pairing keys) and
  167. configuration persistently in flash.
  168. When this option has been enabled, it's important that the
  169. application makes a call to settings_load() after having done
  170. all necessary initialization (e.g. calling bt_enable). The
  171. reason settings_load() is handled externally to the stack, is
  172. that there may be other subsystems using the settings API, in
  173. which case it's more efficient to load all settings in one go,
  174. instead of each subsystem doing it independently.
  175. if BT_PROPERTY
  176. config BT_PROPERTY_CCC_LAZY_LOADING
  177. bool "Load CCC values from settings when peer connects"
  178. default n
  179. help
  180. Load Client Configuration Characteristic setting right after a bonded
  181. device connects.
  182. Disabling this option will increase memory usage as CCC values for all
  183. bonded devices will be loaded when calling settings_load.
  184. config BT_PROPERTY_CCC_STORE_ON_WRITE
  185. bool "Store CCC value immediately after it has been written"
  186. help
  187. Store Client Configuration Characteristic value right after it has
  188. been updated.
  189. By default, CCC is only stored on disconnection.
  190. Choosing this option is safer for battery-powered devices or devices
  191. that expect to be reset suddenly. However, it requires additional
  192. workqueue stack space.
  193. config BT_PROPERTY_USE_PRINTK
  194. bool "Use snprintk to encode Bluetooth settings key strings"
  195. depends on BT_PROPERTY && PRINTK
  196. default y
  197. help
  198. When selected, Bluetooth settings will use snprintk to encode
  199. key strings.
  200. When not selected, Bluetooth settings will use a faster builtin
  201. function to encode the key string. The drawback is that if
  202. printk is enabled then the program memory footprint will be larger.
  203. endif # BT_PROPERTY
  204. config BT_WHITELIST
  205. bool "Enable whitelist support"
  206. help
  207. This option enables the whitelist API. This takes advantage of the
  208. whitelisting feature of a BLE controller.
  209. The whitelist is a global list and the same whitelist is used
  210. by both scanner and advertiser. The whitelist cannot be modified while
  211. it is in use.
  212. An Advertiser can whitelist which peers can connect or request scan
  213. response data.
  214. A scanner can whitelist advertiser for which it will generate
  215. advertising reports.
  216. Connections can be established automatically for whitelisted peers.
  217. This options deprecates the bt_le_set_auto_conn API in favor of the
  218. bt_conn_create_aute_le API.
  219. if BT_CONN
  220. config BT_ACL_RX_COUNT
  221. int "Number of incoming ACL data buffers"
  222. # default NET_BUF_RX_COUNT if NET_L2_BT
  223. default 6
  224. range 1 64
  225. depends on BT_HCI_ACL_FLOW_CONTROL
  226. help
  227. Number of buffers available for incoming ACL data.
  228. config BT_CONN_TX_MAX
  229. int "Maximum number of pending TX buffers with a callback"
  230. default BT_L2CAP_TX_BUF_COUNT
  231. range BT_L2CAP_TX_BUF_COUNT 255
  232. help
  233. Maximum number of pending TX buffers that have an associated
  234. callback. Normally this can be left to the default value, which
  235. is equal to the number of TX buffers in the stack-internal pool.
  236. config BT_USER_PHY_UPDATE
  237. bool "User control of PHY Update Procedure"
  238. depends on BT_PHY_UPDATE
  239. help
  240. Enable application access to initiate the PHY Update Procedure.
  241. The application can also register a callback to be notified about PHY
  242. changes on the connection. The current PHY info is available in the
  243. connection info.
  244. config BT_AUTO_PHY_UPDATE
  245. bool "Auto-initiate PHY Update Procedure"
  246. depends on BT_PHY_UPDATE
  247. default y if !BT_USER_PHY_UPDATE
  248. help
  249. Initiate PHY Update Procedure on connection establishment.
  250. Disable this if you want the PHY Update Procedure feature supported
  251. but want to rely on the remote device to initiate the procedure at its
  252. discretion or want to initiate manually.
  253. config BT_USER_DATA_LEN_UPDATE
  254. bool "User control of Data Length Update Procedure"
  255. depends on BT_DATA_LEN_UPDATE
  256. help
  257. Enable application access to initiate the Data Length Update
  258. Procedure. The application can also a register callback to be notified
  259. about Data Length changes on the connection. The current Data Length
  260. info is available in the connection info.
  261. config BT_AUTO_DATA_LEN_UPDATE
  262. bool "Auto-initiate Data Length Update procedure"
  263. depends on BT_DATA_LEN_UPDATE
  264. default y if !BT_USER_DATA_LEN_UPDATE
  265. help
  266. Initiate Data Length Update Procedure on connection establishment.
  267. Disable this if you want the Data Length Update Procedure feature
  268. supported but want to rely on the remote device to initiate the
  269. procedure at its discretion or want to initiate manually.
  270. config BT_REMOTE_INFO
  271. bool "Enable application access to remote information"
  272. help
  273. Enable application access to the remote information available in the
  274. stack. The remote information is retrieved once a connection has been
  275. established and the application will be notified when this information
  276. is available through the remote_version_available connection callback.
  277. config BT_REMOTE_VERSION
  278. bool "Enable remote version information"
  279. depends on BT_REMOTE_INFO
  280. help
  281. Enable this to get access to the remote version through
  282. the remote_version_available callback. The host will automatically ask
  283. the remote device after the connection has been established.
  284. config BT_SMP
  285. bool "Security Manager Protocol support"
  286. select TINYCRYPT
  287. select TINYCRYPT_AES
  288. select TINYCRYPT_AES_CMAC
  289. select BT_RPA
  290. select BT_ECC
  291. help
  292. This option enables support for the Security Manager Protocol
  293. (SMP), making it possible to pair devices over LE.
  294. config LE_RANDOM_ADDR
  295. bool "Le use random address"
  296. default n
  297. help
  298. Set ble use random address.
  299. config LEBR_DISPLAY_ONE
  300. bool "LE BR display one device on ios"
  301. depends on !LE_RANDOM_ADDR
  302. default y
  303. help
  304. Set ble use random address.
  305. if BT_SMP
  306. config BT_PRIVACY
  307. bool "Privacy Feature"
  308. depends on LE_RANDOM_ADDR
  309. help
  310. Enable local Privacy Feature support. This makes it possible
  311. to use Resolvable Private Addresses (RPAs).
  312. config BT_STATIC_RANDOM_ADDR
  313. bool "Le static random address"
  314. depends on LE_RANDOM_ADDR && !BT_PRIVACY
  315. default y
  316. help
  317. Set ble use static random address.
  318. config BT_RPA_TIMEOUT
  319. int "Resolvable Private Address timeout"
  320. depends on BT_PRIVACY
  321. default 900
  322. range 1 65535
  323. help
  324. This option defines how often resolvable private address is rotated.
  325. Value is provided in seconds and defaults to 900 seconds (15 minutes).
  326. config BT_SIGNING
  327. bool "Data signing support"
  328. default n
  329. help
  330. This option enables data signing which is used for transferring
  331. authenticated data in an unencrypted connection.
  332. config BT_SMP_APP_PAIRING_ACCEPT
  333. bool "Accept or reject pairing initiative"
  334. help
  335. When receiving pairing request or pairing response query the
  336. application whether to accept to proceed with pairing or not. This is
  337. for pairing over SMP and does not affect SSP, which will continue
  338. pairing without querying the application.
  339. The application can return an error code, which is translated into
  340. a SMP return value if the pairing is not allowed.
  341. config BT_SMP_SC_PAIR_ONLY
  342. bool "Disable legacy pairing"
  343. help
  344. This option disables LE legacy pairing and forces LE secure connection
  345. pairing. All Security Mode 1 levels can be used with legacy pairing
  346. disabled, but pairing with devices that do not support secure
  347. connections pairing will not be supported.
  348. To force a higher security level use "Secure Connections Only Mode"
  349. config BT_SMP_SC_ONLY
  350. bool "Secure Connections Only Mode"
  351. select BT_SMP_SC_PAIR_ONLY
  352. help
  353. This option enables support for Secure Connection Only Mode. In this
  354. mode device shall only use Security Mode 1 Level 4 with exception
  355. for services that only require Security Mode 1 Level 1 (no security).
  356. Security Mode 1 Level 4 stands for authenticated LE Secure Connections
  357. pairing with encryption. Enabling this option disables legacy pairing.
  358. config BT_SMP_OOB_LEGACY_PAIR_ONLY
  359. bool "Force Out Of Band Legacy pairing"
  360. depends on !(BT_SMP_SC_PAIR_ONLY || BT_SMP_SC_ONLY)
  361. help
  362. This option disables Legacy and LE SC pairing and forces legacy OOB.
  363. config BT_SMP_DISABLE_LEGACY_JW_PASSKEY
  364. bool "Forbid usage of insecure legacy pairing methods"
  365. depends on !(BT_SMP_SC_PAIR_ONLY || BT_SMP_SC_ONLY || \
  366. BT_SMP_OOB_LEGACY_PAIR_ONLY)
  367. help
  368. This option disables Just Works and Passkey legacy pairing methods to
  369. increase security.
  370. config BT_SMP_ALLOW_UNAUTH_OVERWRITE
  371. bool "Allow unauthenticated pairing for paired device"
  372. help
  373. This option allows all unauthenticated pairing attempts made by the
  374. peer where an unauthenticated bond already exists.
  375. This would enable cases where an attacker could copy the peer device
  376. address to connect and start an unauthenticated pairing procedure
  377. to replace the existing bond. When this option is disabled in order
  378. to create a new bond the old bond has to be explicitly deleted with
  379. bt_unpair.
  380. config BT_SMP_USB_HCI_CTLR_WORKAROUND
  381. bool "Workaround for USB HCI controller out-of-order events"
  382. depends on BT_TESTING
  383. help
  384. This option enables support for USB HCI controllers that sometimes
  385. send out-of-order HCI events and ACL Data due to using different USB
  386. endpoints.
  387. Enabling this option will make the master role not require the
  388. encryption-change event to be received before accepting key-distribution
  389. data.
  390. It opens up for a potential vulnerability as the master cannot detect
  391. if the keys are distributed over an encrypted link.
  392. config BT_FIXED_PASSKEY
  393. bool "Use a fixed passkey for pairing"
  394. help
  395. With this option enabled, the application will be able to call the
  396. bt_passkey_set() API to set a fixed passkey. If set, the
  397. pairing_confim() callback will be called for all incoming pairings.
  398. config BT_USE_DEBUG_KEYS
  399. bool "Enable Security Manager Debug Mode"
  400. depends on BT_TINYCRYPT_ECC
  401. help
  402. This option places Security Manager in a Debug Mode. In this mode
  403. predefined Diffie-Hellman private/public key pair is used as described
  404. in Core Specification Vol. 3, Part H, 2.3.5.6.1.
  405. WARNING: This option enables anyone to decrypt on-air traffic.
  406. Use of this feature in production is strongly discouraged.
  407. config BT_BONDABLE
  408. bool "Bondable Mode"
  409. default y
  410. help
  411. This option enables support for Bondable Mode. In this mode,
  412. Bonding flag in AuthReq of SMP Pairing Request/Response will be set
  413. indicating the support for this mode.
  414. config BT_BONDING_REQUIRED
  415. bool "Always require bonding"
  416. depends on BT_BONDABLE
  417. help
  418. When this option is enabled remote devices are required to always
  419. set the bondable flag in their pairing request. Any other kind of
  420. requests will be rejected.
  421. config BT_STORE_DEBUG_KEYS
  422. bool "Store Debug Mode bonds"
  423. help
  424. This option enables support for storing bonds where either of devices
  425. is using the predefined Diffie-Hellman private/public key pair as
  426. described in the Core Specification Vol 3, Part H, 2.3.5.6.1.
  427. WARNING: This option potentially enables anyone to decrypt on-air
  428. traffic.
  429. Use of this feature in production is strongly discouraged.
  430. config BT_SMP_ENFORCE_MITM
  431. bool "Enforce MITM protection"
  432. default y
  433. help
  434. With this option enabled, the Security Manager will set MITM option in
  435. the Authentication Requirements Flags whenever local IO Capabilities
  436. allow the generated key to be authenticated.
  437. config BT_OOB_DATA_FIXED
  438. bool "Use a fixed random number for LESC OOB pairing"
  439. depends on BT_TESTING
  440. help
  441. With this option enabled, the application will be able to perform LESC
  442. pairing with OOB data that consists of fixed random number and confirm
  443. value.
  444. WARNING: This option stores a hardcoded Out-of-Band value in the image.
  445. Use of this feature in production is strongly discouraged.
  446. config BT_KEYS_OVERWRITE_OLDEST
  447. bool "Overwrite oldest keys with new ones if key storage is full"
  448. help
  449. With this option enabled, if a pairing attempt occurs and the key storage
  450. is full, then the oldest keys in storage will be removed to free space
  451. for the new pairing keys.
  452. config BT_KEYS_SAVE_AGING_COUNTER_ON_PAIRING
  453. bool "Store aging counter every time a successful paring occurs"
  454. depends on BT_SETTINGS && BT_KEYS_OVERWRITE_OLDEST
  455. help
  456. With this option enabled, aging counter will be stored in settings every
  457. time a successful pairing occurs. This increases flash wear out but offers
  458. a more correct finding of the oldest unused pairing info.
  459. endif # BT_SMP
  460. rsource "Kconfig.l2cap"
  461. config BT_LE_ATT
  462. bool "Enable acts config ble att"
  463. default y
  464. help
  465. Enable ble att.
  466. if BT_LE_ATT
  467. rsource "Kconfig.gatt"
  468. endif # BT_LE_ATT
  469. config BT_MAX_PAIRED
  470. int "Maximum number of paired devices"
  471. default 0 if !BT_SMP
  472. default 1
  473. range 0 128
  474. help
  475. Maximum number of paired Bluetooth devices. The minimum (and
  476. default) number is 1.
  477. config BT_MAX_BR_PAIRED
  478. int "Maximum number of paired BR devices"
  479. default 0 if !BT_BREDR
  480. default 1
  481. range 0 64
  482. help
  483. Maximum number of paired Bluetooth BR devices. The minimum (and
  484. default) number is 1.
  485. config BT_CREATE_CONN_TIMEOUT
  486. int "Timeout for pending LE Create Connection command in seconds"
  487. default 3
  488. range 1 BT_RPA_TIMEOUT if BT_PRIVACY && (BT_RPA_TIMEOUT < 655)
  489. range 1 655
  490. config BT_CONN_PARAM_UPDATE_TIMEOUT
  491. int "Peripheral connection parameter update timeout in milliseconds"
  492. default 5000
  493. range 0 65535
  494. help
  495. The value is a timeout used by peripheral device to wait until it
  496. starts the first connection parameters update procedure after a
  497. connection has been established.
  498. The connection parameters requested will be the parameters set by the
  499. application, or the peripheral preferred connection parameters if
  500. configured.
  501. The default value is set to 5 seconds, to comply with the Bluetooth
  502. Core specification: Core 4.2 Vol 3, Part C, 9.3.12.2:
  503. "The Peripheral device should not perform a Connection Parameter
  504. Update procedure within 5 seconds after establishing a connection."
  505. endif # BT_CONN
  506. if BT_OBSERVER
  507. config BT_BACKGROUND_SCAN_INTERVAL
  508. int "Scan interval used for background scanning in 0.625 ms units"
  509. default 2048
  510. range 4 16384
  511. config BT_BACKGROUND_SCAN_WINDOW
  512. int "Scan window used for background scanning in 0.625 ms units"
  513. default 18
  514. range 4 16384
  515. endif # BT_OBSERVER
  516. config BT_SCAN_WITH_IDENTITY
  517. bool "Perform active scanning using local identity address"
  518. depends on !BT_PRIVACY && (BT_CENTRAL || BT_OBSERVER)
  519. help
  520. Enable this if you want to perform active scanning using the local
  521. identity address as the scanner address. By default the stack will
  522. always use a non-resolvable private address (NRPA) in order to avoid
  523. disclosing local identity information. By not scanning with the
  524. identity address the scanner will receive directed advertise reports
  525. for for the local identity. If this use case is required, then enable
  526. this option.
  527. config BT_DEVICE_NAME_DYNAMIC
  528. bool "Allow to set Bluetooth device name on runtime"
  529. depends on !BT_PROPERTY
  530. help
  531. Enabling this option allows for runtime configuration of Bluetooth
  532. device name.
  533. config BT_DEVICE_NAME_MAX
  534. int "Maximum size in bytes for device name"
  535. depends on BT_DEVICE_NAME_DYNAMIC || BT_PROPERTY
  536. default 32
  537. range 2 248
  538. help
  539. Bluetooth device name storage size. Storage can be up to 248 bytes
  540. long (excluding NULL termination).
  541. config BT_DEVICE_NAME
  542. string "Bluetooth device name"
  543. default "Zephyr"
  544. help
  545. Bluetooth device name. Name can be up to 248 bytes long (excluding
  546. NULL termination). Can be empty string.
  547. config BT_DEVICE_APPEARANCE
  548. int "Bluetooth device appearance"
  549. range 0 65535
  550. default 0
  551. help
  552. Bluetooth device appearance. For the list of possible values please
  553. consult the following link:
  554. https://www.bluetooth.com/specifications/assigned-numbers
  555. config BT_ID_MAX
  556. int "Maximum number of local identities"
  557. range 1 10
  558. default 1
  559. help
  560. Maximum number of supported local identity addresses. For most
  561. products this is safe to leave as the default value (1).
  562. config BT_DF
  563. bool "Enable Direction Finding support [EXPERIMENTAL]"
  564. help
  565. Enable support for Bluetooth 5.1 Direction Finding.
  566. It will allow to: get information about antennae, configure
  567. Constant Tone Extension, transmit CTE and sample incoming CTE.
  568. config BT_DEBUG_DF
  569. bool "Bluetooth Direction Finding debug"
  570. depends on BT_DF
  571. help
  572. This option enables debug support for Bluetooth Direction Finding
  573. endif # BT_HCI_HOST
  574. config BT_ECC
  575. bool "Enable ECDH key generation support"
  576. default y if BT_MESH_PROV || (BT_SMP && !BT_SMP_OOB_LEGACY_PAIR_ONLY)
  577. help
  578. This option adds support for ECDH HCI commands.
  579. config BT_TINYCRYPT_ECC
  580. bool "Emulate ECDH in the Host using TinyCrypt library"
  581. select TINYCRYPT
  582. select TINYCRYPT_ECC_DH
  583. depends on BT_ECC && (BT_HCI_RAW || BT_HCI_HOST)
  584. default y if BT_CTLR && !BT_CTLR_ECDH
  585. help
  586. If this option is set TinyCrypt library is used for emulating the
  587. ECDH HCI commands and events needed by e.g. LE Secure Connections.
  588. In builds including the BLE Host, if not set the controller crypto is
  589. used for ECDH and if the controller doesn't support the required HCI
  590. commands the LE Secure Connections support will be disabled.
  591. In builds including the HCI Raw interface and the BLE Controller, this
  592. option injects support for the 2 HCI commands required for LE Secure
  593. Connections so that Hosts can make use of those. The option defaults
  594. to enabled for a combined build with Zephyr's own controller, since it
  595. does not have any special ECC support itself (at least not currently).
  596. config BT_HOST_CCM
  597. bool "Enable host side AES-CCM module"
  598. help
  599. Enables the software based AES-CCM engine in the host. Will use the
  600. controller's AES encryption functions if available, or BT_HOST_CRYPTO
  601. otherwise.
  602. if BT_DEBUG
  603. config BT_DEBUG_SETTINGS
  604. bool "Bluetooth storage debug"
  605. depends on BT_SETTINGS
  606. help
  607. This option enables debug support for Bluetooth storage.
  608. config BT_DEBUG_HCI_CORE
  609. bool "Bluetooth HCI core debug"
  610. help
  611. This option enables debug support for Bluetooth HCI
  612. core.
  613. config BT_DEBUG_CONN
  614. bool "Bluetooth connection debug"
  615. depends on BT_CONN
  616. help
  617. This option enables debug support for Bluetooth
  618. connection handling.
  619. config BT_DEBUG_KEYS
  620. bool "Bluetooth security keys debug"
  621. depends on BT_HCI_HOST
  622. depends on BT_SMP
  623. help
  624. This option enables debug support for the handling of
  625. Bluetooth security keys.
  626. WARNING: This option prints out private security keys such as
  627. the Long Term Key.
  628. Use of this feature in production is strongly discouraged.
  629. config BT_DEBUG_SMP
  630. bool "Bluetooth Security Manager Protocol (SMP) debug"
  631. depends on BT_HCI_HOST
  632. depends on BT_SMP
  633. help
  634. This option enables debug support for the Bluetooth
  635. Security Manager Protocol (SMP).
  636. WARNING: This option prints out private security keys such as
  637. the Long Term Key.
  638. Use of this feature in production is strongly discouraged.
  639. config BT_SMP_SELFTEST
  640. bool "Bluetooth SMP self tests executed on init"
  641. depends on BT_DEBUG_SMP
  642. help
  643. This option enables SMP self-tests executed on startup
  644. to verify security and crypto functions.
  645. config BT_SMP_FORCE_BREDR
  646. bool "Force Bluetooth SMP over BR/EDR"
  647. depends on BT_DEBUG_SMP
  648. help
  649. This option enables SMP over BR/EDR even if controller is not
  650. supporting BR/EDR Secure Connections. This option is solely for
  651. testing and should never be enabled on production devices.
  652. config BT_DEBUG_RFCOMM
  653. bool "Bluetooth RFCOMM debug"
  654. depends on BT_RFCOMM
  655. help
  656. This option enables debug support for the Bluetooth
  657. RFCOMM layer.
  658. config BT_DEBUG_HFP_HF
  659. bool "Bluetooth Hands Free Profile (HFP) debug"
  660. depends on BT_HFP_HF
  661. help
  662. This option enables debug support for the Bluetooth
  663. Hands Free Profile (HFP).
  664. config BT_DEBUG_AVDTP
  665. bool "Bluetooth AVDTP debug"
  666. depends on BT_AVDTP
  667. help
  668. This option enables debug support for the Bluetooth AVDTP.
  669. config BT_DEBUG_A2DP
  670. bool "Bluetooth A2DP debug"
  671. depends on BT_A2DP
  672. help
  673. This option enables debug support for the Bluetooth
  674. A2DP profile.
  675. config BT_DEBUG_SDP
  676. bool "Bluetooth Service Discovery Protocol (SDP) debug"
  677. depends on BT_BREDR
  678. help
  679. This option enables debug support for the Bluetooth
  680. Service Discovery Protocol (SDP).
  681. config BT_DEBUG_SERVICE
  682. bool "Bluetooth Services debug"
  683. depends on BT_CONN
  684. help
  685. This option enables debug support for the Bluetooth
  686. Services.
  687. endif # BT_DEBUG
  688. config BT_TESTING
  689. bool "Bluetooth Testing"
  690. help
  691. This option enables custom Bluetooth testing interface.
  692. Shall only be used for testing purposes.
  693. config BT_CONN_DISABLE_SECURITY
  694. bool "Disable security"
  695. depends on BT_TESTING
  696. help
  697. This option disables security checks for incoming requests enabling
  698. to test accessing GATT attributes and L2CAP channels that would
  699. otherwise require encryption/authentication in order to be accessed.
  700. WARNING: This option enables anyone to snoop on-air traffic.
  701. Use of this feature in production is strongly discouraged.
  702. config BT_BREDR
  703. bool "Bluetooth BR/EDR support [EXPERIMENTAL]"
  704. depends on BT_HCI_HOST
  705. select BT_PERIPHERAL
  706. select BT_CENTRAL
  707. select BT_SMP
  708. select BT_L2CAP_DYNAMIC_CHANNEL
  709. help
  710. This option enables Bluetooth BR/EDR support
  711. if BT_BREDR
  712. config BT_MAX_SCO_CONN
  713. int "Maximum number of simultaneous SCO connections"
  714. default 1
  715. range 1 3
  716. help
  717. Maximum number of simultaneous Bluetooth synchronous connections
  718. supported. The minimum (and default) number is 1.
  719. config BT_RFCOMM
  720. bool "Bluetooth RFCOMM protocol support [EXPERIMENTAL]"
  721. depends on BT_BR_ACTS
  722. help
  723. This option enables Bluetooth RFCOMM support
  724. config BT_RFCOMM_L2CAP_MTU
  725. int "L2CAP MTU for RFCOMM frames"
  726. default BT_L2CAP_RX_MTU if BT_HCI_ACL_FLOW_CONTROL
  727. default BT_RX_BUF_LEN
  728. depends on BT_RFCOMM
  729. range BT_L2CAP_RX_MTU 32767 if BT_HCI_ACL_FLOW_CONTROL
  730. range BT_RX_BUF_LEN 32767
  731. help
  732. Maximum size of L2CAP PDU for RFCOMM frames.
  733. config BT_HFP_HF
  734. bool "Bluetooth Handsfree profile HF Role support [EXPERIMENTAL]"
  735. depends on BT_BR_ACTS
  736. select BT_RFCOMM
  737. help
  738. This option enables Bluetooth HF support
  739. config BT_AVDTP
  740. bool "Bluetooth AVDTP protocol support [EXPERIMENTAL]"
  741. depends on BT_BR_ACTS
  742. help
  743. This option enables Bluetooth AVDTP support
  744. config BT_A2DP
  745. bool "Bluetooth A2DP Profile [EXPERIMENTAL]"
  746. depends on BT_BR_ACTS
  747. select BT_AVDTP
  748. help
  749. This option enables the A2DP profile
  750. config BT_PAGE_TIMEOUT
  751. hex "Bluetooth Page Timeout"
  752. default 0x2000
  753. range 0x0001 0xffff
  754. help
  755. This option sets the page timeout value. Value is selected as
  756. (N * 0.625) ms.
  757. config BT_HFP_HF_VOL_SYNC
  758. bool "Bluetooth Handsfree support volume sync"
  759. depends on BT_HFP_HF
  760. default y
  761. help
  762. This option enables Bluetooth Handsfree volume sync
  763. config BT_HFP_AG
  764. bool "Bluetooth Handsfree profile AG Role support"
  765. select BT_RFCOMM
  766. help
  767. This option enables Bluetooth Handsfree AG support
  768. config BT_HFP_MSBC
  769. bool "Bluetooth Handsfree profile support HFP Negotiate"
  770. depends on BT_HFP_HF
  771. help
  772. This option enables Bluetooth HF Negotiate support
  773. config BT_AVRCP
  774. bool "Bluetooth AVRCP protocol support"
  775. depends on BT_BR_ACTS
  776. help
  777. This option enables Bluetooth AVRCP support
  778. config BT_AVRCP_VOL_SYNC
  779. bool "Bluetooth AVRCP support volume sync"
  780. depends on BT_AVRCP
  781. default y
  782. help
  783. This option enables Bluetooth AVRCP volume sync
  784. config BT_SPP
  785. bool "Bluetooth spp support"
  786. depends on BT_BR_ACTS
  787. default n
  788. select BT_RFCOMM
  789. help
  790. This option enables Bluetooth spp support
  791. config BT_GOEP
  792. bool "Bluetooth GOEP protocol support"
  793. help
  794. This option enables Bluetooth GOEP support
  795. config BT_PBAP_CLIENT
  796. bool "Bluetooth PBAP client support"
  797. depends on BT_BR_ACTS
  798. default n
  799. select BT_RFCOMM
  800. select BT_GOEP
  801. help
  802. This option enables Bluetooth PBAP client support
  803. config BT_MAP_CLIENT
  804. bool "Bluetooth MAP client support"
  805. depends on BT_BR_ACTS
  806. default n
  807. select BT_RFCOMM
  808. select BT_GOEP
  809. help
  810. This option enables Bluetooth MAP client support
  811. config BT_HID
  812. bool "Bluetooth HID protocol support"
  813. depends on BT_BR_ACTS
  814. help
  815. This option enables Bluetooth HID support
  816. config BT_SDP_CLIENT
  817. bool "Bluetooth used sdp client"
  818. depends on BT_BR_ACTS
  819. depends on BT_BREDR
  820. default n
  821. help
  822. This option enables Bluetooth sdp client
  823. config BT_PTS_TEST
  824. bool "Bluetooth PTS test config"
  825. default n
  826. help
  827. This option enables Bluetooth PTS test
  828. config ACTS_BT_SHELL
  829. bool "Enable Bluetooth shell"
  830. default n
  831. select SHELL
  832. help
  833. Activate shell module that provides Bluetooth commands to the
  834. console.
  835. config HCI_DATA_LOG
  836. bool "Enable Bluetooth print hci data"
  837. default n
  838. help
  839. Support bt print hci data.
  840. config BT_SNOOP
  841. bool "Enable Bluetooth snoop"
  842. depends on HCI_DATA_LOG
  843. default n
  844. help
  845. Support bt snoop record.
  846. endif # BT_BREDR
  847. config BT_HCI_VS_EVT_USER
  848. bool "User Vendor-Specific event handling"
  849. help
  850. Enable registering a callback for delegating to the user the handling of
  851. VS events that are not known to the stack