nrf52832_peripherals.h 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289
  1. /*
  2. Copyright (c) 2010 - 2018, Nordic Semiconductor ASA
  3. All rights reserved.
  4. Redistribution and use in source and binary forms, with or without modification,
  5. are permitted provided that the following conditions are met:
  6. 1. Redistributions of source code must retain the above copyright notice, this
  7. list of conditions and the following disclaimer.
  8. 2. Redistributions in binary form, except as embedded into a Nordic
  9. Semiconductor ASA integrated circuit in a product or a software update for
  10. such product, must reproduce the above copyright notice, this list of
  11. conditions and the following disclaimer in the documentation and/or other
  12. materials provided with the distribution.
  13. 3. Neither the name of Nordic Semiconductor ASA nor the names of its
  14. contributors may be used to endorse or promote products derived from this
  15. software without specific prior written permission.
  16. 4. This software, with or without modification, must only be used with a
  17. Nordic Semiconductor ASA integrated circuit.
  18. 5. Any software provided in binary form under this license must not be reverse
  19. engineered, decompiled, modified and/or disassembled.
  20. THIS SOFTWARE IS PROVIDED BY NORDIC SEMICONDUCTOR ASA "AS IS" AND ANY EXPRESS
  21. OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  22. OF MERCHANTABILITY, NONINFRINGEMENT, AND FITNESS FOR A PARTICULAR PURPOSE ARE
  23. DISCLAIMED. IN NO EVENT SHALL NORDIC SEMICONDUCTOR ASA OR CONTRIBUTORS BE
  24. LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  25. CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
  26. GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  27. HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  28. LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
  29. OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  30. */
  31. #ifndef _NRF52832_PERIPHERALS_H
  32. #define _NRF52832_PERIPHERALS_H
  33. /* Clock Peripheral */
  34. #define CLOCK_PRESENT
  35. #define CLOCK_COUNT 1
  36. /* Power Peripheral */
  37. #define POWER_PRESENT
  38. #define POWER_COUNT 1
  39. #define POWER_FEATURE_RAM_REGISTERS_PRESENT
  40. #define POWER_FEATURE_RAM_REGISTERS_COUNT 8
  41. /* Floating Point Unit */
  42. #define FPU_PRESENT
  43. #define FPU_COUNT 1
  44. /* Systick timer */
  45. #define SYSTICK_PRESENT
  46. #define SYSTICK_COUNT 1
  47. /* Software Interrupts */
  48. #define SWI_PRESENT
  49. #define SWI_COUNT 6
  50. /* Memory Watch Unit */
  51. #define MWU_PRESENT
  52. #define MWU_COUNT 1
  53. /* GPIO */
  54. #define GPIO_PRESENT
  55. #define GPIO_COUNT 1
  56. #define P0_PIN_NUM 32
  57. /* MPU and BPROT */
  58. #define BPROT_PRESENT
  59. #define BPROT_REGIONS_SIZE 4096
  60. #define BPROT_REGIONS_NUM 128
  61. /* Radio */
  62. #define RADIO_PRESENT
  63. #define RADIO_COUNT 1
  64. #define RADIO_EASYDMA_MAXCNT_SIZE 8
  65. /* Accelerated Address Resolver */
  66. #define AAR_PRESENT
  67. #define AAR_COUNT 1
  68. #define AAR_MAX_IRK_NUM 16
  69. /* AES Electronic CodeBook mode encryption */
  70. #define ECB_PRESENT
  71. #define ECB_COUNT 1
  72. /* AES CCM mode encryption */
  73. #define CCM_PRESENT
  74. #define CCM_COUNT 1
  75. /* NFC Tag */
  76. #define NFCT_PRESENT
  77. #define NFCT_COUNT 1
  78. #define NFCT_EASYDMA_MAXCNT_SIZE 9
  79. /* Peripheral to Peripheral Interconnect */
  80. #define PPI_PRESENT
  81. #define PPI_COUNT 1
  82. #define PPI_CH_NUM 20
  83. #define PPI_FIXED_CH_NUM 12
  84. #define PPI_GROUP_NUM 6
  85. #define PPI_FEATURE_FORKS_PRESENT
  86. /* Event Generator Unit */
  87. #define EGU_PRESENT
  88. #define EGU_COUNT 6
  89. #define EGU0_CH_NUM 16
  90. #define EGU1_CH_NUM 16
  91. #define EGU2_CH_NUM 16
  92. #define EGU3_CH_NUM 16
  93. #define EGU4_CH_NUM 16
  94. #define EGU5_CH_NUM 16
  95. /* Timer/Counter */
  96. #define TIMER_PRESENT
  97. #define TIMER_COUNT 5
  98. #define TIMER0_MAX_SIZE 32
  99. #define TIMER1_MAX_SIZE 32
  100. #define TIMER2_MAX_SIZE 32
  101. #define TIMER3_MAX_SIZE 32
  102. #define TIMER4_MAX_SIZE 32
  103. #define TIMER0_CC_NUM 4
  104. #define TIMER1_CC_NUM 4
  105. #define TIMER2_CC_NUM 4
  106. #define TIMER3_CC_NUM 6
  107. #define TIMER4_CC_NUM 6
  108. /* Real Time Counter */
  109. #define RTC_PRESENT
  110. #define RTC_COUNT 3
  111. #define RTC0_CC_NUM 3
  112. #define RTC1_CC_NUM 4
  113. #define RTC2_CC_NUM 4
  114. /* RNG */
  115. #define RNG_PRESENT
  116. #define RNG_COUNT 1
  117. /* Watchdog Timer */
  118. #define WDT_PRESENT
  119. #define WDT_COUNT 1
  120. /* Temperature Sensor */
  121. #define TEMP_PRESENT
  122. #define TEMP_COUNT 1
  123. /* Serial Peripheral Interface Master */
  124. #define SPI_PRESENT
  125. #define SPI_COUNT 3
  126. /* Serial Peripheral Interface Master with DMA */
  127. #define SPIM_PRESENT
  128. #define SPIM_COUNT 3
  129. #define SPIM0_MAX_DATARATE 8
  130. #define SPIM1_MAX_DATARATE 8
  131. #define SPIM2_MAX_DATARATE 8
  132. #define SPIM0_FEATURE_HARDWARE_CSN_PRESENT 0
  133. #define SPIM1_FEATURE_HARDWARE_CSN_PRESENT 0
  134. #define SPIM2_FEATURE_HARDWARE_CSN_PRESENT 0
  135. #define SPIM0_FEATURE_DCX_PRESENT 0
  136. #define SPIM1_FEATURE_DCX_PRESENT 0
  137. #define SPIM2_FEATURE_DCX_PRESENT 0
  138. #define SPIM0_FEATURE_RXDELAY_PRESENT 0
  139. #define SPIM1_FEATURE_RXDELAY_PRESENT 0
  140. #define SPIM2_FEATURE_RXDELAY_PRESENT 0
  141. #define SPIM0_EASYDMA_MAXCNT_SIZE 8
  142. #define SPIM1_EASYDMA_MAXCNT_SIZE 8
  143. #define SPIM2_EASYDMA_MAXCNT_SIZE 8
  144. /* Serial Peripheral Interface Slave with DMA*/
  145. #define SPIS_PRESENT
  146. #define SPIS_COUNT 3
  147. #define SPIS0_EASYDMA_MAXCNT_SIZE 8
  148. #define SPIS1_EASYDMA_MAXCNT_SIZE 8
  149. #define SPIS2_EASYDMA_MAXCNT_SIZE 8
  150. /* Two Wire Interface Master */
  151. #define TWI_PRESENT
  152. #define TWI_COUNT 2
  153. /* Two Wire Interface Master with DMA */
  154. #define TWIM_PRESENT
  155. #define TWIM_COUNT 2
  156. #define TWIM0_EASYDMA_MAXCNT_SIZE 8
  157. #define TWIM1_EASYDMA_MAXCNT_SIZE 8
  158. /* Two Wire Interface Slave with DMA */
  159. #define TWIS_PRESENT
  160. #define TWIS_COUNT 2
  161. #define TWIS0_EASYDMA_MAXCNT_SIZE 8
  162. #define TWIS1_EASYDMA_MAXCNT_SIZE 8
  163. /* Universal Asynchronous Receiver-Transmitter */
  164. #define UART_PRESENT
  165. #define UART_COUNT 1
  166. /* Universal Asynchronous Receiver-Transmitter with DMA */
  167. #define UARTE_PRESENT
  168. #define UARTE_COUNT 1
  169. #define UARTE0_EASYDMA_MAXCNT_SIZE 8
  170. /* Quadrature Decoder */
  171. #define QDEC_PRESENT
  172. #define QDEC_COUNT 1
  173. /* Successive Approximation Analog to Digital Converter */
  174. #define SAADC_PRESENT
  175. #define SAADC_COUNT 1
  176. #define SAADC_EASYDMA_MAXCNT_SIZE 15
  177. #define SAADC_CH_NUM 8
  178. /* GPIO Tasks and Events */
  179. #define GPIOTE_PRESENT
  180. #define GPIOTE_COUNT 1
  181. #define GPIOTE_CH_NUM 8
  182. #define GPIOTE_FEATURE_SET_PRESENT
  183. #define GPIOTE_FEATURE_CLR_PRESENT
  184. /* Low Power Comparator */
  185. #define LPCOMP_PRESENT
  186. #define LPCOMP_COUNT 1
  187. #define LPCOMP_REFSEL_RESOLUTION 16
  188. #define LPCOMP_FEATURE_HYST_PRESENT
  189. /* Comparator */
  190. #define COMP_PRESENT
  191. #define COMP_COUNT 1
  192. /* Pulse Width Modulator */
  193. #define PWM_PRESENT
  194. #define PWM_COUNT 3
  195. #define PWM0_CH_NUM 4
  196. #define PWM1_CH_NUM 4
  197. #define PWM2_CH_NUM 4
  198. #define PWM0_EASYDMA_MAXCNT_SIZE 15
  199. #define PWM1_EASYDMA_MAXCNT_SIZE 15
  200. #define PWM2_EASYDMA_MAXCNT_SIZE 15
  201. /* Pulse Density Modulator */
  202. #define PDM_PRESENT
  203. #define PDM_COUNT 1
  204. #define PDM_EASYDMA_MAXCNT_SIZE 15
  205. /* Inter-IC Sound Interface */
  206. #define I2S_PRESENT
  207. #define I2S_COUNT 1
  208. #define I2S_EASYDMA_MAXCNT_SIZE 14
  209. #endif // _NRF52832_PERIPHERALS_H