nrfx_config.h 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403
  1. /*
  2. * Copyright (c) 2019 - 2020, Nordic Semiconductor ASA
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef NRFX_CONFIG_H__
  7. #define NRFX_CONFIG_H__
  8. /*
  9. * These are mappings of Kconfig options enabling nrfx drivers and particular
  10. * peripheral instances to the corresponding symbols used inside of nrfx.
  11. * Please note that only subsets of these entries are used for particular SoCs
  12. * supported by nrfx (see the corresponding nrfx_config_*.h files).
  13. */
  14. #ifdef CONFIG_NRFX_ADC
  15. #define NRFX_ADC_ENABLED 1
  16. #endif
  17. #ifdef CONFIG_NRFX_CLOCK
  18. #define NRFX_CLOCK_ENABLED 1
  19. #endif
  20. #ifdef CONFIG_CLOCK_CONTROL_NRF_K32SRC_RC
  21. #if defined(CONFIG_SOC_SERIES_NRF91X) || defined(CONFIG_SOC_SERIES_NRF53X)
  22. #define NRFX_CLOCK_CONFIG_LF_SRC 1
  23. #else
  24. #define NRFX_CLOCK_CONFIG_LF_SRC 0
  25. #endif
  26. #endif // CONFIG_CLOCK_CONTROL_NRF_K32SRC_RC
  27. #ifdef CONFIG_CLOCK_CONTROL_NRF_K32SRC_XTAL
  28. #if defined(CONFIG_SOC_SERIES_NRF91X) || defined(CONFIG_SOC_SERIES_NRF53X)
  29. #define NRFX_CLOCK_CONFIG_LF_SRC 2
  30. #else
  31. #define NRFX_CLOCK_CONFIG_LF_SRC 1
  32. #endif
  33. #endif // CONFIG_CLOCK_CONTROL_NRF_K32SRC_XTAL
  34. #ifdef CONFIG_CLOCK_CONTROL_NRF_K32SRC_SYNTH
  35. #ifdef CONFIG_SOC_SERIES_NRF53X
  36. #define NRFX_CLOCK_CONFIG_LF_SRC 3
  37. #else
  38. #define NRFX_CLOCK_CONFIG_LF_SRC 2
  39. #endif
  40. #endif // CONFIG_CLOCK_CONTROL_NRF_K32SRC_SYNTH
  41. #ifdef CONFIG_CLOCK_CONTROL_NRF_K32SRC_EXT_LOW_SWING
  42. #define NRFX_CLOCK_CONFIG_LF_SRC 131073
  43. #endif
  44. #ifdef CONFIG_CLOCK_CONTROL_NRF_K32SRC_EXT_FULL_SWING
  45. #define NRFX_CLOCK_CONFIG_LF_SRC 196609
  46. #endif
  47. #ifdef CONFIG_CLOCK_CONTROL_NRF_K32SRC_RC_CALIBRATION
  48. #define NRFX_CLOCK_CONFIG_LF_CAL_ENABLED 1
  49. #endif
  50. #ifdef CONFIG_NRFX_CLOCK_LFXO_TWO_STAGE_ENABLED
  51. #define NRFX_CLOCK_CONFIG_LFXO_TWO_STAGE_ENABLED 1
  52. #endif
  53. #ifdef CONFIG_NRFX_COMP
  54. #define NRFX_COMP_ENABLED 1
  55. #endif
  56. #ifdef CONFIG_NRFX_DPPI
  57. #define NRFX_DPPI_ENABLED 1
  58. #endif
  59. #ifdef CONFIG_NRFX_EGU
  60. #define NRFX_EGU_ENABLED 1
  61. #endif
  62. #ifdef CONFIG_NRFX_EGU0
  63. #define NRFX_EGU0_ENABLED 1
  64. #endif
  65. #ifdef CONFIG_NRFX_EGU1
  66. #define NRFX_EGU1_ENABLED 1
  67. #endif
  68. #ifdef CONFIG_NRFX_EGU2
  69. #define NRFX_EGU2_ENABLED 1
  70. #endif
  71. #ifdef CONFIG_NRFX_EGU3
  72. #define NRFX_EGU3_ENABLED 1
  73. #endif
  74. #ifdef CONFIG_NRFX_EGU4
  75. #define NRFX_EGU4_ENABLED 1
  76. #endif
  77. #ifdef CONFIG_NRFX_EGU5
  78. #define NRFX_EGU5_ENABLED 1
  79. #endif
  80. #ifdef CONFIG_NRFX_GPIOTE
  81. #define NRFX_GPIOTE_ENABLED 1
  82. #endif
  83. #ifdef CONFIG_NRFX_I2S
  84. #define NRFX_I2S_ENABLED 1
  85. #endif
  86. #ifdef CONFIG_NRFX_IPC
  87. #define NRFX_IPC_ENABLED 1
  88. #endif
  89. #ifdef CONFIG_NRFX_LPCOMP
  90. #define NRFX_LPCOMP_ENABLED 1
  91. #endif
  92. #ifdef CONFIG_NRFX_NFCT
  93. #define NRFX_NFCT_ENABLED 1
  94. #endif
  95. #ifdef CONFIG_NRFX_NVMC
  96. #define NRFX_NVMC_ENABLED 1
  97. #endif
  98. #ifdef CONFIG_NRFX_PDM
  99. #define NRFX_PDM_ENABLED 1
  100. #endif
  101. #ifdef CONFIG_NRFX_POWER
  102. #define NRFX_POWER_ENABLED 1
  103. #endif
  104. #ifdef CONFIG_NRFX_PPI
  105. #define NRFX_PPI_ENABLED 1
  106. #endif
  107. #ifdef CONFIG_NRFX_PRS
  108. #define NRFX_PRS_ENABLED 1
  109. #endif
  110. #ifdef CONFIG_NRFX_PRS_BOX_0
  111. #define NRFX_PRS_BOX_0_ENABLED 1
  112. #endif
  113. #ifdef CONFIG_NRFX_PRS_BOX_1
  114. #define NRFX_PRS_BOX_1_ENABLED 1
  115. #endif
  116. #ifdef CONFIG_NRFX_PRS_BOX_2
  117. #define NRFX_PRS_BOX_2_ENABLED 1
  118. #endif
  119. #ifdef CONFIG_NRFX_PRS_BOX_3
  120. #define NRFX_PRS_BOX_3_ENABLED 1
  121. #endif
  122. #ifdef CONFIG_NRFX_PRS_BOX_4
  123. #define NRFX_PRS_BOX_4_ENABLED 1
  124. #endif
  125. #ifdef CONFIG_NRFX_PWM
  126. #define NRFX_PWM_ENABLED 1
  127. #endif
  128. #ifdef CONFIG_NRFX_PWM0
  129. #define NRFX_PWM0_ENABLED 1
  130. #endif
  131. #ifdef CONFIG_NRFX_PWM1
  132. #define NRFX_PWM1_ENABLED 1
  133. #endif
  134. #ifdef CONFIG_NRFX_PWM2
  135. #define NRFX_PWM2_ENABLED 1
  136. #endif
  137. #ifdef CONFIG_NRFX_PWM3
  138. #define NRFX_PWM3_ENABLED 1
  139. #endif
  140. #ifdef CONFIG_NRFX_QDEC
  141. #define NRFX_QDEC_ENABLED 1
  142. #endif
  143. #ifdef CONFIG_NRFX_QSPI
  144. #define NRFX_QSPI_ENABLED 1
  145. #endif
  146. #ifdef CONFIG_NRFX_RNG
  147. #define NRFX_RNG_ENABLED 1
  148. #endif
  149. #ifdef CONFIG_NRFX_RTC
  150. #define NRFX_RTC_ENABLED 1
  151. #endif
  152. #ifdef CONFIG_NRFX_RTC0
  153. #define NRFX_RTC0_ENABLED 1
  154. #endif
  155. #ifdef CONFIG_NRFX_RTC1
  156. #define NRFX_RTC1_ENABLED 1
  157. #endif
  158. #ifdef CONFIG_NRFX_RTC2
  159. #define NRFX_RTC2_ENABLED 1
  160. #endif
  161. #ifdef CONFIG_NRFX_SAADC
  162. #define NRFX_SAADC_ENABLED 1
  163. #endif
  164. #ifdef CONFIG_NRFX_SPI
  165. #define NRFX_SPI_ENABLED 1
  166. #endif
  167. #ifdef CONFIG_NRFX_SPI0
  168. #define NRFX_SPI0_ENABLED 1
  169. #endif
  170. #ifdef CONFIG_NRFX_SPI1
  171. #define NRFX_SPI1_ENABLED 1
  172. #endif
  173. #ifdef CONFIG_NRFX_SPI2
  174. #define NRFX_SPI2_ENABLED 1
  175. #endif
  176. #ifdef CONFIG_NRFX_SPIM
  177. #define NRFX_SPIM_ENABLED 1
  178. #endif
  179. #ifdef CONFIG_NRFX_SPIM0
  180. #define NRFX_SPIM0_ENABLED 1
  181. #endif
  182. #ifdef CONFIG_NRFX_SPIM1
  183. #define NRFX_SPIM1_ENABLED 1
  184. #endif
  185. #ifdef CONFIG_NRFX_SPIM2
  186. #define NRFX_SPIM2_ENABLED 1
  187. #endif
  188. #ifdef CONFIG_NRFX_SPIM3
  189. #define NRFX_SPIM3_ENABLED 1
  190. #endif
  191. #ifdef CONFIG_NRFX_SPIM4
  192. #define NRFX_SPIM4_ENABLED 1
  193. #endif
  194. #if defined(CONFIG_SPI_3_NRF_RX_DELAY) || defined(CONFIG_SPI_4_NRF_RX_DELAY)
  195. #define NRFX_SPIM_EXTENDED_ENABLED 1
  196. #endif
  197. #ifdef CONFIG_NRFX_SPIS
  198. #define NRFX_SPIS_ENABLED 1
  199. #endif
  200. #ifdef CONFIG_NRFX_SPIS0
  201. #define NRFX_SPIS0_ENABLED 1
  202. #endif
  203. #ifdef CONFIG_NRFX_SPIS1
  204. #define NRFX_SPIS1_ENABLED 1
  205. #endif
  206. #ifdef CONFIG_NRFX_SPIS2
  207. #define NRFX_SPIS2_ENABLED 1
  208. #endif
  209. #ifdef CONFIG_NRFX_SPIS3
  210. #define NRFX_SPIS3_ENABLED 1
  211. #endif
  212. #ifdef CONFIG_NRFX_SYSTICK
  213. #define NRFX_SYSTICK_ENABLED 1
  214. #endif
  215. #ifdef CONFIG_NRFX_TEMP
  216. #define NRFX_TEMP_ENABLED 1
  217. #endif
  218. #ifdef CONFIG_NRFX_TIMER
  219. #define NRFX_TIMER_ENABLED 1
  220. #endif
  221. #ifdef CONFIG_NRFX_TIMER0
  222. #define NRFX_TIMER0_ENABLED 1
  223. #endif
  224. #ifdef CONFIG_NRFX_TIMER1
  225. #define NRFX_TIMER1_ENABLED 1
  226. #endif
  227. #ifdef CONFIG_NRFX_TIMER2
  228. #define NRFX_TIMER2_ENABLED 1
  229. #endif
  230. #ifdef CONFIG_NRFX_TIMER3
  231. #define NRFX_TIMER3_ENABLED 1
  232. #endif
  233. #ifdef CONFIG_NRFX_TIMER4
  234. #define NRFX_TIMER4_ENABLED 1
  235. #endif
  236. #ifdef CONFIG_NRFX_TWI
  237. #define NRFX_TWI_ENABLED 1
  238. #endif
  239. #ifdef CONFIG_NRFX_TWI0
  240. #define NRFX_TWI0_ENABLED 1
  241. #endif
  242. #ifdef CONFIG_NRFX_TWI1
  243. #define NRFX_TWI1_ENABLED 1
  244. #endif
  245. #ifdef CONFIG_NRFX_TWIM
  246. #define NRFX_TWIM_ENABLED 1
  247. #endif
  248. #ifdef CONFIG_NRFX_TWIM0
  249. #define NRFX_TWIM0_ENABLED 1
  250. #endif
  251. #ifdef CONFIG_NRFX_TWIM1
  252. #define NRFX_TWIM1_ENABLED 1
  253. #endif
  254. #ifdef CONFIG_NRFX_TWIM2
  255. #define NRFX_TWIM2_ENABLED 1
  256. #endif
  257. #ifdef CONFIG_NRFX_TWIM3
  258. #define NRFX_TWIM3_ENABLED 1
  259. #endif
  260. #ifdef CONFIG_NRFX_TWIS
  261. #define NRFX_TWIS_ENABLED 1
  262. #endif
  263. #ifdef CONFIG_NRFX_TWIS0
  264. #define NRFX_TWIS0_ENABLED 1
  265. #endif
  266. #ifdef CONFIG_NRFX_TWIS1
  267. #define NRFX_TWIS1_ENABLED 1
  268. #endif
  269. #ifdef CONFIG_NRFX_TWIS2
  270. #define NRFX_TWIS2_ENABLED 1
  271. #endif
  272. #ifdef CONFIG_NRFX_TWIS3
  273. #define NRFX_TWIS3_ENABLED 1
  274. #endif
  275. #ifdef CONFIG_NRFX_UART
  276. #define NRFX_UART_ENABLED 1
  277. #endif
  278. #ifdef CONFIG_NRFX_UART0
  279. #define NRFX_UART0_ENABLED 1
  280. #endif
  281. #ifdef CONFIG_NRFX_UARTE
  282. #define NRFX_UARTE_ENABLED 1
  283. #endif
  284. #ifdef CONFIG_NRFX_UARTE0
  285. #define NRFX_UARTE0_ENABLED 1
  286. #endif
  287. #ifdef CONFIG_NRFX_UARTE1
  288. #define NRFX_UARTE1_ENABLED 1
  289. #endif
  290. #ifdef CONFIG_NRFX_UARTE2
  291. #define NRFX_UARTE2_ENABLED 1
  292. #endif
  293. #ifdef CONFIG_NRFX_UARTE3
  294. #define NRFX_UARTE3_ENABLED 1
  295. #endif
  296. #ifdef CONFIG_NRFX_USBD
  297. #define NRFX_USBD_ENABLED 1
  298. #endif
  299. #ifdef CONFIG_NRFX_USBREG
  300. #define NRFX_USBREG_ENABLED 1
  301. #endif
  302. #ifdef CONFIG_NRFX_WDT
  303. #define NRFX_WDT_ENABLED 1
  304. #endif
  305. #ifdef CONFIG_NRFX_WDT0
  306. #define NRFX_WDT0_ENABLED 1
  307. #endif
  308. #ifdef CONFIG_NRFX_WDT1
  309. #define NRFX_WDT1_ENABLED 1
  310. #endif
  311. #if defined(CONFIG_SOC_SERIES_BSIM_NRFXX)
  312. #include "nrfx_config_bsim.h"
  313. #endif
  314. /*
  315. * For chips with TrustZone support, MDK provides CMSIS-Core peripheral
  316. * accessing symbols in two flavors, with secure and non-secure base address
  317. * mappings. Their names contain the suffix _S or _NS, respectively.
  318. * Because nrfx HALs and drivers require these peripheral accessing symbols
  319. * without any suffixes, the following macro is provided that will translate
  320. * their names according to the kind of the target that is built.
  321. */
  322. #if defined(NRF_TRUSTZONE_NONSECURE)
  323. #define NRF_PERIPH(P) P##_NS
  324. #else
  325. #define NRF_PERIPH(P) P##_S
  326. #endif
  327. #if defined(NRF51)
  328. #include <nrfx_config_nrf51.h>
  329. #elif defined(NRF52805_XXAA)
  330. #include <nrfx_config_nrf52805.h>
  331. #elif defined(NRF52810_XXAA)
  332. #include <nrfx_config_nrf52810.h>
  333. #elif defined(NRF52811_XXAA)
  334. #include <nrfx_config_nrf52811.h>
  335. #elif defined(NRF52820_XXAA)
  336. #include <nrfx_config_nrf52820.h>
  337. #elif defined(NRF52832_XXAA) || defined (NRF52832_XXAB)
  338. #include <nrfx_config_nrf52832.h>
  339. #elif defined(NRF52833_XXAA)
  340. #include <nrfx_config_nrf52833.h>
  341. #elif defined(NRF52840_XXAA)
  342. #include <nrfx_config_nrf52840.h>
  343. #elif defined(NRF5340_XXAA_APPLICATION)
  344. #include <nrfx_config_nrf5340_application.h>
  345. #elif defined(NRF5340_XXAA_NETWORK)
  346. #include <nrfx_config_nrf5340_network.h>
  347. #elif defined(NRF9160_XXAA)
  348. #include <nrfx_config_nrf9160.h>
  349. #else
  350. #error "Unknown device."
  351. #endif
  352. #endif // NRFX_CONFIG_H__