Kconfig 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209
  1. # Copyright (c) 2016-2021 Nordic Semiconductor ASA
  2. # SPDX-License-Identifier: Apache-2.0
  3. config ZEPHYR_HAL_NORDIC_MODULE
  4. bool
  5. config HAS_NORDIC_DRIVERS
  6. bool
  7. menu "Nordic drivers"
  8. depends on HAS_NORDIC_DRIVERS
  9. choice NRF_802154_SOURCE
  10. prompt "Source of the IEEE 802.15.4 radio driver"
  11. config NRF_802154_SOURCE_HAL_NORDIC
  12. bool "Open source"
  13. endchoice
  14. menuconfig NRF_802154_RADIO_DRIVER
  15. bool "Enable nRF IEEE 802.15.4 radio driver"
  16. depends on HAS_HW_NRF_RADIO_IEEE802154
  17. select DYNAMIC_INTERRUPTS
  18. select ENTROPY_GENERATOR
  19. select NRF_HW_TIMER1_RESERVED
  20. help
  21. This option enables nRF IEEE 802.15.4 radio driver in Zephyr. Note,
  22. that beside the radio peripheral itself, this drivers occupies several
  23. other peripherals. A complete list can be found in the hal_nordic
  24. repository, within drivers/nrf_radio_802154/nrf_802154_peripherals.h
  25. file. As the nRF IEEE 802.15.4 radio driver defines IRQ configuration
  26. abstraction layer API and its Zephyr-specific implementation uses dynamic
  27. interrupts, the DYNAMIC_INTERRUPTS switch is selected unconditionally.
  28. if NRF_802154_RADIO_DRIVER
  29. config NRF_802154_MULTIPROTOCOL_SUPPORT
  30. bool
  31. help
  32. In dynamic multiprotocol applications, access to the radio peripheral
  33. must be distributed by an arbiter. To support this arbitration
  34. in the driver, this option must be enabled. Otherwise, the driver
  35. assumes that access to the radio peripheral is granted indefinitely.
  36. config NRF_802154_ENCRYPTION
  37. bool "nRF 802.15.4 AES-CCM* authentication & encryption"
  38. depends on !CRYPTO_NRF_ECB
  39. choice NRF_802154_CCA_MODE
  40. prompt "nRF IEEE 802.15.4 CCA mode"
  41. default NRF_802154_CCA_MODE_ED
  42. help
  43. CCA mode
  44. config NRF_802154_CCA_MODE_ED
  45. bool "Energy Above Threshold"
  46. config NRF_802154_CCA_MODE_CARRIER
  47. bool "Carrier Seen"
  48. config NRF_802154_CCA_MODE_CARRIER_AND_ED
  49. bool "Energy Above Threshold AND Carrier Seen"
  50. config NRF_802154_CCA_MODE_CARRIER_OR_ED
  51. bool "Energy Above Threshold OR Carrier Seen"
  52. endchoice
  53. choice NRF_802154_SL_TYPE
  54. prompt "nRF IEEE 802.15.4 Service Layer Type"
  55. config NRF_802154_SL_OPENSOURCE
  56. bool "Open source"
  57. select SENSOR if NRF_802154_TEMPERATURE_UPDATE
  58. select TEMP_NRF5 if NRF_802154_TEMPERATURE_UPDATE
  59. endchoice
  60. config NRF_802154_CCA_ED_THRESHOLD
  61. int "nRF IEEE 802.15.4 CCA Energy Detection threshold"
  62. default 45
  63. help
  64. If energy detected in a given channel is above the value then the
  65. channel is deemed busy. The unit is defined as per 802.15.4-2006 spec.
  66. config NRF_802154_CCA_CORR_THRESHOLD
  67. int "nRF IEEE 802.15.4 CCA Correlator threshold"
  68. default 45
  69. config NRF_802154_CCA_CORR_LIMIT
  70. int "nRF IEEE 802.15.4 CCA Correlator limit"
  71. default 2
  72. help
  73. Limit for occurrences above correlator threshold. When not equal to
  74. zero the correlator based signal detect is enabled.
  75. config NRF_802154_PENDING_SHORT_ADDRESSES
  76. int "nRF 802.15.4 pending short addresses"
  77. default 16
  78. help
  79. Number of slots containing short addresses of nodes for which pending data is stored
  80. config NRF_802154_PENDING_EXTENDED_ADDRESSES
  81. int "nRF 802.15.4 pending extended addresses"
  82. default 16
  83. help
  84. Number of slots containing extended addresses of nodes for which pending data is stored
  85. config NRF_802154_RX_BUFFERS
  86. int "nRF 802.15.4 receive buffers"
  87. default 16
  88. help
  89. Number of buffers in nRF 802.15.4 driver receive queue. If this value is modified,
  90. its serialization host counterpart must be set to the exact same value.
  91. config NRF_802154_TEMPERATURE_UPDATE
  92. bool "nRF 802.15.4 temperature update"
  93. default y
  94. help
  95. Enable temperature update for nRF 802.15.4 driver
  96. config NRF_802154_TEMPERATURE_UPDATE_INIT_PRIO
  97. int "nRF52 IEEE 802.15.4 temperature update initialization priority"
  98. depends on NRF_802154_TEMPERATURE_UPDATE
  99. default 91
  100. help
  101. Set the initialization priority of a temperature update for nRF 802.15.4 driver.
  102. config NRF_802154_TEMPERATURE_UPDATE_PERIOD
  103. int "nRF 802.15.4 temperature update period in milliseconds"
  104. depends on NRF_802154_TEMPERATURE_UPDATE
  105. default 60000
  106. help
  107. Period of a temperature update for nRF 802.15.4 driver in milliseconds
  108. endif # NRF_802154_RADIO_DRIVER
  109. config NRF_802154_SERIALIZATION
  110. bool
  111. select RPMSG_SERVICE
  112. help
  113. This helper symbol indicates that the nRF 802.15.4 serialization is available.
  114. config NRF_802154_SER_HOST
  115. bool "nRF IEEE 802.15.4 Driver serialization host"
  116. depends on !NRF_802154_RADIO_DRIVER
  117. depends on !HAS_HW_NRF_RADIO_IEEE802154
  118. select IEEE802154_NRF5_EXT_IRQ_MGMT if IEEE802154_NRF5
  119. select NRF_802154_SERIALIZATION
  120. help
  121. Enable serialization of nRF IEEE 802.15.4 Driver. This option is to be
  122. used if radio is not available in the core, but radio services are
  123. provided by a serialization backend.
  124. menuconfig NRF_802154_SER_RADIO
  125. bool "nRF IEEE 802.15.4 Driver serialization radio"
  126. depends on HAS_HW_NRF_RADIO_IEEE802154
  127. depends on !IEEE802154_NRF5
  128. select NRF_802154_RADIO_DRIVER
  129. select NRF_802154_SERIALIZATION
  130. help
  131. Enable serialization of nRF IEEE 802.15.4 Driver. This option is to be
  132. used if radio is available in the core to provide radio services over
  133. a serialization backend.
  134. if NRF_802154_SER_RADIO
  135. config NRF_802154_SER_RADIO_INIT_PRIO
  136. int "nRF52 IEEE 802.15.4 serialization initialization priority"
  137. default 47
  138. help
  139. Set the initialization priority number. Do not mess with it unless
  140. you know what you are doing.
  141. endif
  142. menu "nRF 802.15.4 serialization"
  143. depends on NRF_802154_SER_HOST || NRF_802154_SER_RADIO
  144. config NRF_802154_SER_LOG
  145. bool "802.15.4 serialization logs"
  146. default n
  147. help
  148. This option enable debug logs of 802.15.4 serialization module.
  149. config NRF_802154_SER_DEFAULT_RESPONSE_TIMEOUT
  150. int "Default Spinel serialization response timeout in milliseconds"
  151. default 500
  152. help
  153. This option specifies default timeout of spinel status response
  154. in milliseconds.
  155. if NRF_802154_SER_HOST
  156. config NRF_802154_RX_BUFFERS
  157. int "nRF 802.15.4 receive buffers"
  158. default 16
  159. help
  160. Number of buffers in nRF 802.15.4 driver serialization host's receive queue.
  161. If this value is modified, its remote counterpart must be set to the exact same value.
  162. endif
  163. endmenu # NRF_802154_SER_HOST || NRF_802154_SER_RADIO
  164. endmenu # HAS_NORDIC_DRIVERS
  165. rsource "nrfx/Kconfig"