Kconfig.audio 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. # Bluetooth Audio configuration options
  2. #
  3. # Copyright (c) 2020 Intel Corporation
  4. #
  5. # SPDX-License-Identifier: Apache-2.0
  6. #
  7. menuconfig BT_AUDIO
  8. bool "Bluetooth Audio support [Experimental]"
  9. help
  10. This option enables Bluetooth Audio support. The specific
  11. features that are available may depend on other features
  12. that have been enabled in the stack, such as Periodic
  13. Advertisement for Broadcast and L2CAP Dynamic Channel
  14. for Unicast.
  15. if BT_AUDIO
  16. config BT_ISO
  17. bool
  18. if BT_CONN
  19. config BT_AUDIO_UNICAST
  20. bool "Bluetooth Unicast Audio Support"
  21. select BT_SMP
  22. select BT_L2CAP_DYNAMIC_CHANNEL
  23. select BT_ISO
  24. select BT_GATT_DYNAMIC_DB
  25. select BT_GATT_CACHING
  26. select BT_L2CAP_ECRED
  27. select BT_EATT
  28. help
  29. This option enables support for Bluetooth Unicast Audio using
  30. Isochronous channels.
  31. if BT_AUDIO_UNICAST
  32. config BT_MAX_ISO_CONN
  33. int "Maximum number of simultaneous ISO connections"
  34. depends on BT_ISO
  35. default BT_MAX_CONN
  36. range 1 64
  37. help
  38. Maximum number of simultaneous Bluetooth isochronous connections
  39. supported.
  40. config BT_ISO_TX_BUF_COUNT
  41. int "Numer of Isochronous TX buffers"
  42. default 1
  43. range 1 255
  44. help
  45. Number of buffers available for outgoing Isochronous channel packets.
  46. config BT_ISO_TX_FRAG_COUNT
  47. int "Number of ISO TX fragment buffers"
  48. default 2
  49. range 0 255
  50. help
  51. Number of buffers available for fragments of TX buffers. Warning:
  52. setting this to 0 means that the application must ensure that
  53. queued TX buffers never need to be fragmented, i.e. that the
  54. controller's buffer size is large enough. If this is not ensured,
  55. and there are no dedicated fragment buffers, a deadlock may occur.
  56. In most cases the default value of 2 is a safe bet.
  57. config BT_ISO_TX_MTU
  58. int "Maximum supported MTU for Isochronous TX buffers"
  59. default 251
  60. range 23 2000
  61. help
  62. Maximum MTU for Isochronous channels TX buffers.
  63. config BT_ISO_RX_BUF_COUNT
  64. int "Numer of Isochronous RX buffers"
  65. default 1
  66. range 1 255
  67. help
  68. Number of buffers available for incoming Isochronous channel packets.
  69. config BT_ISO_RX_MTU
  70. int "Maximum supported MTU for Isochronous RX buffers"
  71. default 251
  72. range 23 2000
  73. help
  74. Maximum MTU for Isochronous channels RX buffers.
  75. endif # BT_AUDIO_UNICAST
  76. endif # BT_CONN
  77. config BT_AUDIO_DEBUG
  78. bool "Enable debug logs"
  79. depends on BT_DEBUG
  80. help
  81. Use this option to enable debug logs for the Bluetooth
  82. Audio functionality.
  83. if BT_AUDIO_DEBUG
  84. config BT_AUDIO_DEBUG_ISO
  85. bool "ISO channel debug"
  86. help
  87. Use this option to enable ISO channels debug logs for the
  88. Bluetooth Audio functionality.
  89. endif # BT_AUDIO_DEBUG
  90. endif # BT_AUDIO