Kconfig 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422
  1. # Copyright (c) 2016 Nordic Semiconductor ASA
  2. # SPDX-License-Identifier: Apache-2.0
  3. config HAS_NRFX
  4. bool
  5. menu "nrfx drivers"
  6. depends on HAS_NRFX
  7. config NRFX_ADC
  8. bool "Enable ADC driver"
  9. depends on HAS_HW_NRF_ADC
  10. config NRFX_CLOCK
  11. bool "Enable CLOCK driver"
  12. depends on HAS_HW_NRF_CLOCK
  13. config NRFX_CLOCK_LFXO_TWO_STAGE_ENABLED
  14. bool "Enable two stage start sequence of the low frequency clock"
  15. depends on NRFX_CLOCK
  16. config NRFX_COMP
  17. bool "Enable COMP driver"
  18. depends on HAS_HW_NRF_COMP
  19. config NRFX_DPPI
  20. bool "Enable DPPI allocator"
  21. depends on HAS_HW_NRF_DPPIC
  22. config NRFX_EGU
  23. bool "Enable EGU driver"
  24. depends on HAS_HW_NRF_EGU0 || HAS_HW_NRF_EGU1 || HAS_HW_NRF_EGU2 || \
  25. HAS_HW_NRF_EGU3 || HAS_HW_NRF_EGU4 || HAS_HW_NRF_EGU5
  26. config NRFX_EGU0
  27. bool "Enable EGU0 instance"
  28. depends on HAS_HW_NRF_EGU0
  29. select NRFX_EGU
  30. config NRFX_EGU1
  31. bool "Enable EGU1 instance"
  32. depends on HAS_HW_NRF_EGU1
  33. select NRFX_EGU
  34. config NRFX_EGU2
  35. bool "Enable EGU2 instance"
  36. depends on HAS_HW_NRF_EGU2
  37. select NRFX_EGU
  38. config NRFX_EGU3
  39. bool "Enable EGU3 instance"
  40. depends on HAS_HW_NRF_EGU3
  41. select NRFX_EGU
  42. config NRFX_EGU4
  43. bool "Enable EGU4 instance"
  44. depends on HAS_HW_NRF_EGU4
  45. select NRFX_EGU
  46. config NRFX_EGU5
  47. bool "Enable EGU5 instance"
  48. depends on HAS_HW_NRF_EGU5
  49. select NRFX_EGU
  50. config NRFX_GPIOTE
  51. bool "Enable GPIOTE driver"
  52. depends on HAS_HW_NRF_GPIOTE
  53. config NRFX_I2S
  54. bool "Enable I2S driver"
  55. depends on HAS_HW_NRF_I2S
  56. config NRFX_IPC
  57. bool "Enable IPC driver"
  58. depends on HAS_HW_NRF_IPC
  59. config NRFX_LPCOMP
  60. bool "Enable LPCOMP driver"
  61. depends on HAS_HW_NRF_LPCOMP
  62. config NRFX_NFCT
  63. bool "Enable NFCT driver"
  64. depends on HAS_HW_NRF_NFCT
  65. select NRFX_TIMER4 if SOC_SERIES_NRF52X
  66. select NRFX_TIMER2 if SOC_SERIES_NRF53X
  67. config NRFX_NVMC
  68. bool "Enable NVMC driver"
  69. config NRFX_PDM
  70. bool "Enable PDM driver"
  71. depends on HAS_HW_NRF_PDM
  72. config NRFX_POWER
  73. bool "Enable POWER driver"
  74. depends on HAS_HW_NRF_POWER
  75. # On SoCs featuring the USBREG peripheral, the POWER driver uses
  76. # internally the USBREG driver.
  77. select NRFX_USBREG if HAS_HW_NRF_USBREG
  78. config NRFX_PPI
  79. bool "Enable PPI allocator"
  80. depends on HAS_HW_NRF_PPI
  81. config NRFX_PWM
  82. bool "Enable PWM driver"
  83. depends on HAS_HW_NRF_PWM0 || HAS_HW_NRF_PWM1 || \
  84. HAS_HW_NRF_PWM2 || HAS_HW_NRF_PWM3
  85. config NRFX_PWM0
  86. bool "Enable PWM0 instance"
  87. depends on HAS_HW_NRF_PWM0
  88. select NRFX_PWM
  89. config NRFX_PWM1
  90. bool "Enable PWM1 instance"
  91. depends on HAS_HW_NRF_PWM1
  92. select NRFX_PWM
  93. config NRFX_PWM2
  94. bool "Enable PWM2 instance"
  95. depends on HAS_HW_NRF_PWM2
  96. select NRFX_PWM
  97. config NRFX_PWM3
  98. bool "Enable PWM3 instance"
  99. depends on HAS_HW_NRF_PWM3
  100. select NRFX_PWM
  101. config NRFX_QDEC
  102. bool "Enable QDEC driver"
  103. depends on HAS_HW_NRF_QDEC || HAS_HW_NRF_QDEC0
  104. config NRFX_QSPI
  105. bool "Enable QSPI driver"
  106. depends on HAS_HW_NRF_QSPI
  107. config NRFX_RNG
  108. bool "Enable RNG driver"
  109. depends on HAS_HW_NRF_RNG
  110. config NRFX_RTC
  111. bool "Enable RTC driver"
  112. depends on HAS_HW_NRF_RTC0 || HAS_HW_NRF_RTC1 || HAS_HW_NRF_RTC2
  113. config NRFX_RTC0
  114. bool "Enable RTC0 instance"
  115. depends on HAS_HW_NRF_RTC0
  116. select NRFX_RTC
  117. config NRFX_RTC1
  118. bool "Enable RTC1 instance"
  119. depends on HAS_HW_NRF_RTC1
  120. select NRFX_RTC
  121. config NRFX_RTC2
  122. bool "Enable RTC2 instance"
  123. depends on HAS_HW_NRF_RTC2
  124. select NRFX_RTC
  125. config NRFX_SAADC
  126. bool "Enable SAADC driver"
  127. depends on HAS_HW_NRF_SAADC
  128. config NRFX_SPI
  129. bool "Enable SPI driver"
  130. depends on HAS_HW_NRF_SPI0 || HAS_HW_NRF_SPI1 || HAS_HW_NRF_SPI2
  131. config NRFX_SPI0
  132. bool "Enable SPI0 instance"
  133. depends on HAS_HW_NRF_SPI0
  134. select NRFX_SPI
  135. config NRFX_SPI1
  136. bool "Enable SPI1 instance"
  137. depends on HAS_HW_NRF_SPI1
  138. select NRFX_SPI
  139. config NRFX_SPI2
  140. bool "Enable SPI2 instance"
  141. depends on HAS_HW_NRF_SPI2
  142. select NRFX_SPI
  143. config NRFX_SPIM
  144. bool "Enable SPIM driver"
  145. depends on HAS_HW_NRF_SPIM0 || HAS_HW_NRF_SPIM1 || \
  146. HAS_HW_NRF_SPIM2 || HAS_HW_NRF_SPIM3 || HAS_HW_NRF_SPIM4
  147. config NRFX_SPIM0
  148. bool "Enable SPIM0 instance"
  149. depends on HAS_HW_NRF_SPIM0
  150. select NRFX_SPIM
  151. config NRFX_SPIM1
  152. bool "Enable SPIM1 instance"
  153. depends on HAS_HW_NRF_SPIM1
  154. select NRFX_SPIM
  155. config NRFX_SPIM2
  156. bool "Enable SPIM2 instance"
  157. depends on HAS_HW_NRF_SPIM2
  158. select NRFX_SPIM
  159. config NRFX_SPIM3
  160. bool "Enable SPIM3 instance"
  161. depends on HAS_HW_NRF_SPIM3
  162. select NRFX_SPIM
  163. config NRFX_SPIM4
  164. bool "Enable SPIM4 instance"
  165. depends on HAS_HW_NRF_SPIM4
  166. select NRFX_SPIM
  167. config NRFX_SPIS
  168. bool "Enable SPIS driver"
  169. depends on HAS_HW_NRF_SPIS0 || HAS_HW_NRF_SPIS1 || \
  170. HAS_HW_NRF_SPIS2 || HAS_HW_NRF_SPIS3
  171. config NRFX_SPIS0
  172. bool "Enable SPIS0 instance"
  173. depends on HAS_HW_NRF_SPIS0
  174. select NRFX_SPIS
  175. config NRFX_SPIS1
  176. bool "Enable SPIS1 instance"
  177. depends on HAS_HW_NRF_SPIS1
  178. select NRFX_SPIS
  179. config NRFX_SPIS2
  180. bool "Enable SPIS2 instance"
  181. depends on HAS_HW_NRF_SPIS2
  182. select NRFX_SPIS
  183. config NRFX_SPIS3
  184. bool "Enable SPIS3 instance"
  185. depends on HAS_HW_NRF_SPIS3
  186. select NRFX_SPIS
  187. config NRFX_SYSTICK
  188. bool "Enable SYSTICK driver"
  189. depends on CPU_CORTEX_M_HAS_SYSTICK
  190. config NRFX_TEMP
  191. bool "Enable TEMP driver"
  192. depends on HAS_HW_NRF_TEMP
  193. config NRFX_TIMER
  194. bool "Enable TIMER driver"
  195. depends on HAS_HW_NRF_TIMER0 || HAS_HW_NRF_TIMER1 || \
  196. HAS_HW_NRF_TIMER2 || HAS_HW_NRF_TIMER3 || \
  197. HAS_HW_NRF_TIMER4
  198. config NRFX_TIMER0
  199. bool "Enable TIMER0 instance"
  200. depends on HAS_HW_NRF_TIMER0
  201. select NRFX_TIMER
  202. config NRFX_TIMER1
  203. bool "Enable TIMER1 instance"
  204. depends on HAS_HW_NRF_TIMER1
  205. select NRFX_TIMER
  206. config NRFX_TIMER2
  207. bool "Enable TIMER2 instance"
  208. depends on HAS_HW_NRF_TIMER2
  209. select NRFX_TIMER
  210. config NRFX_TIMER3
  211. bool "Enable TIMER3 instance"
  212. depends on HAS_HW_NRF_TIMER3
  213. select NRFX_TIMER
  214. config NRFX_TIMER4
  215. bool "Enable TIMER4 instance"
  216. depends on HAS_HW_NRF_TIMER4
  217. select NRFX_TIMER
  218. config NRFX_TWI
  219. bool "Enable TWI driver"
  220. depends on HAS_HW_NRF_TWI0 || HAS_HW_NRF_TWI1
  221. config NRFX_TWI0
  222. bool "Enable TWI0 instance"
  223. depends on HAS_HW_NRF_TWI0
  224. select NRFX_TWI
  225. config NRFX_TWI1
  226. bool "Enable TWI1 instance"
  227. depends on HAS_HW_NRF_TWI1
  228. select NRFX_TWI
  229. config NRFX_TWIM
  230. bool "Enable TWIM driver"
  231. depends on HAS_HW_NRF_TWIM0 || HAS_HW_NRF_TWIM1 || \
  232. HAS_HW_NRF_TWIM2 || HAS_HW_NRF_TWIM3
  233. config NRFX_TWIM0
  234. bool "Enable TWIM0 instance"
  235. depends on HAS_HW_NRF_TWIM0
  236. select NRFX_TWIM
  237. config NRFX_TWIM1
  238. bool "Enable TWIM1 instance"
  239. depends on HAS_HW_NRF_TWIM1
  240. select NRFX_TWIM
  241. config NRFX_TWIM2
  242. bool "Enable TWIM2 instance"
  243. depends on HAS_HW_NRF_TWIM2
  244. select NRFX_TWIM
  245. config NRFX_TWIM3
  246. bool "Enable TWIM3 instance"
  247. depends on HAS_HW_NRF_TWIM3
  248. select NRFX_TWIM
  249. config NRFX_TWIS
  250. bool "Enable TWIS driver"
  251. depends on HAS_HW_NRF_TWIS0 || HAS_HW_NRF_TWIS1 || \
  252. HAS_HW_NRF_TWIS2 || HAS_HW_NRF_TWIS3
  253. config NRFX_TWIS0
  254. bool "Enable TWIS0 instance"
  255. depends on HAS_HW_NRF_TWIS0
  256. select NRFX_TWIS
  257. config NRFX_TWIS1
  258. bool "Enable TWIS1 instance"
  259. depends on HAS_HW_NRF_TWIS1
  260. select NRFX_TWIS
  261. config NRFX_TWIS2
  262. bool "Enable TWIS2 instance"
  263. depends on HAS_HW_NRF_TWIS2
  264. select NRFX_TWIS
  265. config NRFX_TWIS3
  266. bool "Enable TWIS3 instance"
  267. depends on HAS_HW_NRF_TWIS3
  268. select NRFX_TWIS
  269. config NRFX_UART
  270. bool "Enable UART driver"
  271. depends on HAS_HW_NRF_UART0
  272. config NRFX_UART0
  273. bool "Enable UART0 instance"
  274. depends on HAS_HW_NRF_UART0
  275. select NRFX_UART
  276. config NRFX_UARTE
  277. bool "Enable UARTE driver"
  278. depends on HAS_HW_NRF_UARTE0 || HAS_HW_NRF_UARTE1 || \
  279. HAS_HW_NRF_UARTE2 || HAS_HW_NRF_UARTE3
  280. config NRFX_UARTE0
  281. bool "Enable UARTE0 instance"
  282. depends on HAS_HW_NRF_UARTE0
  283. select NRFX_UARTE
  284. config NRFX_UARTE1
  285. bool "Enable UARTE1 instance"
  286. depends on HAS_HW_NRF_UARTE1
  287. select NRFX_UARTE
  288. config NRFX_UARTE2
  289. bool "Enable UARTE2 instance"
  290. depends on HAS_HW_NRF_UARTE2
  291. select NRFX_UARTE
  292. config NRFX_UARTE3
  293. bool "Enable UARTE3 instance"
  294. depends on HAS_HW_NRF_UARTE3
  295. select NRFX_UARTE
  296. config NRFX_USBD
  297. bool "Enable USBD driver"
  298. depends on HAS_HW_NRF_USBD
  299. select NRFX_SYSTICK
  300. config NRFX_USBREG
  301. bool "Enable USBREG driver"
  302. depends on HAS_HW_NRF_USBREG
  303. config NRFX_WDT
  304. bool "Enable WDT driver"
  305. depends on HAS_HW_NRF_WDT || HAS_HW_NRF_WDT0 || HAS_HW_NRF_WDT1
  306. config NRFX_WDT0
  307. bool "Enable WDT0 instance"
  308. depends on HAS_HW_NRF_WDT || HAS_HW_NRF_WDT0
  309. select NRFX_WDT
  310. config NRFX_WDT1
  311. bool "Enable WDT1 instance"
  312. depends on HAS_HW_NRF_WDT1
  313. select NRFX_WDT
  314. config NRFX_PRS
  315. bool "Enable Peripheral Resource Sharing module"
  316. config NRFX_PRS_BOX_0
  317. bool "Enable PRS box 0"
  318. select NRFX_PRS
  319. config NRFX_PRS_BOX_1
  320. bool "Enable PRS box 1"
  321. select NRFX_PRS
  322. config NRFX_PRS_BOX_2
  323. bool "Enable PRS box 2"
  324. select NRFX_PRS
  325. config NRFX_PRS_BOX_3
  326. bool "Enable PRS box 3"
  327. select NRFX_PRS
  328. config NRFX_PRS_BOX_4
  329. bool "Enable PRS box 4"
  330. select NRFX_PRS
  331. endmenu