1 /*
2 
3 Copyright (c) 2010 - 2024, Nordic Semiconductor ASA All rights reserved.
4 
5 SPDX-License-Identifier: BSD-3-Clause
6 
7 Redistribution and use in source and binary forms, with or without
8 modification, are permitted provided that the following conditions are met:
9 
10 1. Redistributions of source code must retain the above copyright notice, this
11    list of conditions and the following disclaimer.
12 
13 2. Redistributions in binary form must reproduce the above copyright
14    notice, this list of conditions and the following disclaimer in the
15    documentation and/or other materials provided with the distribution.
16 
17 3. Neither the name of Nordic Semiconductor ASA nor the names of its
18    contributors may be used to endorse or promote products derived from this
19    software without specific prior written permission.
20 
21 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
22 AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 IMPLIED WARRANTIES OF MERCHANTABILITY, AND FITNESS FOR A PARTICULAR PURPOSE
24 ARE DISCLAIMED. IN NO EVENT SHALL NORDIC SEMICONDUCTOR ASA OR CONTRIBUTORS BE
25 LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
26 CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
27 SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
28 INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
29 CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
30 ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
31 POSSIBILITY OF SUCH DAMAGE.
32 
33 */
34 
35 #ifndef NRF9230_ENGA_APPLICATION_PERIPHERALS_H
36 #define NRF9230_ENGA_APPLICATION_PERIPHERALS_H
37 
38 #ifdef __cplusplus
39     extern "C" {
40 #endif
41 
42 #include <stdbool.h>
43 /*Extended UICR.*/
44 #define UICREXTENDED_PRESENT 1
45 #define UICREXTENDED_COUNT 1
46 
47 /*CACHEDATA*/
48 #define ICACHEDATA_PRESENT 1
49 #define ICACHEDATA_COUNT 1
50 
51 #define ICACHEDATA_NUMSETS 256                       /*!< Number of sets : 256                                                 */
52 #define ICACHEDATA_NUMWAYS 2                         /*!< Number of ways : 2                                                   */
53 #define ICACHEDATA_NUMDATAUNIT 4                     /*!< Number of data units : 4                                             */
54 #define ICACHEDATA_DATAWIDTH 2                       /*!< Data width of a data unit : 2 word(s)                                */
55 
56 /*CACHEINFO*/
57 #define ICACHEINFO_PRESENT 1
58 #define ICACHEINFO_COUNT 1
59 
60 #define ICACHEINFO_NUMSETS 256                       /*!< Number of sets : 256                                                 */
61 #define ICACHEINFO_NUMWAYS 2                         /*!< Number of ways : 2                                                   */
62 #define ICACHEINFO_NUMDATAUNIT 4                     /*!< Number of data units : 4                                             */
63 #define ICACHEINFO_DATAWIDTH 2                       /*!< Data width of a data unit : 2 word(s)                                */
64 #define ICACHEINFO_TAGWIDTH 19                       /*!< TAG width : 19                                                       */
65 #define ICACHEINFO_DU_EXTENSION 0                    /*!< (unspecified)                                                        */
66 
67 /*User information configuration registers*/
68 #define UICR_PRESENT 1
69 #define UICR_COUNT 1
70 
71 /*Board information configuration registers*/
72 #define BICR_PRESENT 1
73 #define BICR_COUNT 1
74 
75 #define BICR_P0_INTERNAL 1                           /*!< (unspecified)                                                        */
76 #define BICR_P0_POWER 0                              /*!< (unspecified)                                                        */
77 #define BICR_P1_POWER 1                              /*!< (unspecified)                                                        */
78 #define BICR_P2_POWER 1                              /*!< (unspecified)                                                        */
79 #define BICR_P3_POWER 0                              /*!< (unspecified)                                                        */
80 #define BICR_P4_POWER 0                              /*!< (unspecified)                                                        */
81 #define BICR_P5_POWER 0                              /*!< (unspecified)                                                        */
82 #define BICR_P6_POWER 1                              /*!< (unspecified)                                                        */
83 #define BICR_P7_POWER 0                              /*!< (unspecified)                                                        */
84 #define BICR_P8_POWER 1                              /*!< (unspecified)                                                        */
85 #define BICR_P9_POWER 1                              /*!< (unspecified)                                                        */
86 #define BICR_P10_POWER 1                             /*!< (unspecified)                                                        */
87 #define BICR_P11_POWER 1                             /*!< (unspecified)                                                        */
88 #define BICR_P12_POWER 1                             /*!< (unspecified)                                                        */
89 #define BICR_P13_POWER 1                             /*!< (unspecified)                                                        */
90 #define BICR_P14_POWER 0                             /*!< (unspecified)                                                        */
91 #define BICR_P15_POWER 0                             /*!< (unspecified)                                                        */
92 #define BICR_P0_POWER_3V 0                           /*!< (unspecified)                                                        */
93 #define BICR_P1_POWER_3V 0                           /*!< (unspecified)                                                        */
94 #define BICR_P2_POWER_3V 0                           /*!< (unspecified)                                                        */
95 #define BICR_P3_POWER_3V 0                           /*!< (unspecified)                                                        */
96 #define BICR_P4_POWER_3V 0                           /*!< (unspecified)                                                        */
97 #define BICR_P5_POWER_3V 0                           /*!< (unspecified)                                                        */
98 #define BICR_P6_POWER_3V 0                           /*!< (unspecified)                                                        */
99 #define BICR_P7_POWER_3V 0                           /*!< (unspecified)                                                        */
100 #define BICR_P8_POWER_3V 0                           /*!< (unspecified)                                                        */
101 #define BICR_P9_POWER_3V 1                           /*!< (unspecified)                                                        */
102 #define BICR_P10_POWER_3V 0                          /*!< (unspecified)                                                        */
103 #define BICR_P11_POWER_3V 0                          /*!< (unspecified)                                                        */
104 #define BICR_P12_POWER_3V 0                          /*!< (unspecified)                                                        */
105 #define BICR_P13_POWER_3V 0                          /*!< (unspecified)                                                        */
106 #define BICR_P14_POWER_3V 0                          /*!< (unspecified)                                                        */
107 #define BICR_P15_POWER_3V 0                          /*!< (unspecified)                                                        */
108 #define BICR_P0_DRIVECTRL 0                          /*!< (unspecified)                                                        */
109 #define BICR_P1_DRIVECTRL 0                          /*!< (unspecified)                                                        */
110 #define BICR_P2_DRIVECTRL 0                          /*!< (unspecified)                                                        */
111 #define BICR_P3_DRIVECTRL 0                          /*!< (unspecified)                                                        */
112 #define BICR_P4_DRIVECTRL 0                          /*!< (unspecified)                                                        */
113 #define BICR_P5_DRIVECTRL 0                          /*!< (unspecified)                                                        */
114 #define BICR_P6_DRIVECTRL 1                          /*!< (unspecified)                                                        */
115 #define BICR_P7_DRIVECTRL 0                          /*!< (unspecified)                                                        */
116 #define BICR_P8_DRIVECTRL 1                          /*!< (unspecified)                                                        */
117 #define BICR_P9_DRIVECTRL 0                          /*!< (unspecified)                                                        */
118 #define BICR_P10_DRIVECTRL 0                         /*!< (unspecified)                                                        */
119 #define BICR_P11_DRIVECTRL 0                         /*!< (unspecified)                                                        */
120 #define BICR_P12_DRIVECTRL 0                         /*!< (unspecified)                                                        */
121 #define BICR_P13_DRIVECTRL 0                         /*!< (unspecified)                                                        */
122 #define BICR_P14_DRIVECTRL 0                         /*!< (unspecified)                                                        */
123 #define BICR_P15_DRIVECTRL 0                         /*!< (unspecified)                                                        */
124 #define BICR_P0_BIASCTRL 0                           /*!< (unspecified)                                                        */
125 #define BICR_P1_BIASCTRL 0                           /*!< (unspecified)                                                        */
126 #define BICR_P2_BIASCTRL 0                           /*!< (unspecified)                                                        */
127 #define BICR_P3_BIASCTRL 0                           /*!< (unspecified)                                                        */
128 #define BICR_P4_BIASCTRL 0                           /*!< (unspecified)                                                        */
129 #define BICR_P5_BIASCTRL 0                           /*!< (unspecified)                                                        */
130 #define BICR_P6_BIASCTRL 0                           /*!< (unspecified)                                                        */
131 #define BICR_P7_BIASCTRL 0                           /*!< (unspecified)                                                        */
132 #define BICR_P8_BIASCTRL 0                           /*!< (unspecified)                                                        */
133 #define BICR_P9_BIASCTRL 0                           /*!< (unspecified)                                                        */
134 #define BICR_P10_BIASCTRL 0                          /*!< (unspecified)                                                        */
135 #define BICR_P11_BIASCTRL 0                          /*!< (unspecified)                                                        */
136 #define BICR_P12_BIASCTRL 0                          /*!< (unspecified)                                                        */
137 #define BICR_P13_BIASCTRL 0                          /*!< (unspecified)                                                        */
138 #define BICR_P14_BIASCTRL 0                          /*!< (unspecified)                                                        */
139 #define BICR_P15_BIASCTRL 0                          /*!< (unspecified)                                                        */
140 #define BICR_PMICLDO 1                               /*!< (unspecified)                                                        */
141 
142 /*CACHEDATA*/
143 #define DCACHEDATA_PRESENT 1
144 #define DCACHEDATA_COUNT 1
145 
146 #define DCACHEDATA_NUMSETS 256                       /*!< Number of sets : 256                                                 */
147 #define DCACHEDATA_NUMWAYS 2                         /*!< Number of ways : 2                                                   */
148 #define DCACHEDATA_NUMDATAUNIT 8                     /*!< Number of data units : 8                                             */
149 #define DCACHEDATA_DATAWIDTH 1                       /*!< Data width of a data unit : 1 word(s)                                */
150 
151 /*CACHEINFO*/
152 #define DCACHEINFO_PRESENT 1
153 #define DCACHEINFO_COUNT 1
154 
155 #define DCACHEINFO_NUMSETS 256                       /*!< Number of sets : 256                                                 */
156 #define DCACHEINFO_NUMWAYS 2                         /*!< Number of ways : 2                                                   */
157 #define DCACHEINFO_NUMDATAUNIT 8                     /*!< Number of data units : 8                                             */
158 #define DCACHEINFO_DATAWIDTH 1                       /*!< Data width of a data unit : 1 word(s)                                */
159 #define DCACHEINFO_TAGWIDTH 19                       /*!< TAG width : 19                                                       */
160 #define DCACHEINFO_DU_EXTENSION 1                    /*!< (unspecified)                                                        */
161 
162 /*Embedded Trace Macrocell*/
163 #define ETM_PRESENT 1
164 #define ETM_COUNT 1
165 
166 /*Cross-Trigger Interface control*/
167 #define CTI_PRESENT 1
168 #define CTI_COUNT 3
169 
170 /*CM33 SubSystem*/
171 #define CM33SS_PRESENT 1
172 #define CM33SS_COUNT 1
173 
174 #define CPUC_FPUAVAILABLE 1                          /*!< (unspecified)                                                        */
175 
176 /*Cache*/
177 #define CACHE_PRESENT 1
178 #define CACHE_COUNT 2
179 
180 #define ICACHE_VIRTUALCACHE 0                        /*!< (unspecified)                                                        */
181 #define ICACHE_FLUSH 0                               /*!< (unspecified)                                                        */
182 #define ICACHE_CLEAN 0                               /*!< (unspecified)                                                        */
183 #define ICACHE_NONCACHEABLEMISS 1                    /*!< (unspecified)                                                        */
184 #define ICACHE_BUSWIDTH_MIN 0                        /*!< Data bus width : 0..63                                               */
185 #define ICACHE_BUSWIDTH_MAX 63                       /*!< Data bus width : 0..63                                               */
186 #define ICACHE_BUSWIDTH_SIZE 64                      /*!< Data bus width : 0..63                                               */
187 #define ICACHE_SECUREINVALIDATE 0                    /*!< (unspecified)                                                        */
188 
189 #define DCACHE_VIRTUALCACHE 0                        /*!< (unspecified)                                                        */
190 #define DCACHE_FLUSH 1                               /*!< (unspecified)                                                        */
191 #define DCACHE_CLEAN 1                               /*!< (unspecified)                                                        */
192 #define DCACHE_NONCACHEABLEMISS 1                    /*!< (unspecified)                                                        */
193 #define DCACHE_BUSWIDTH_MIN 0                        /*!< Data bus width : 0..63                                               */
194 #define DCACHE_BUSWIDTH_MAX 63                       /*!< Data bus width : 0..63                                               */
195 #define DCACHE_BUSWIDTH_SIZE 64                      /*!< Data bus width : 0..63                                               */
196 #define DCACHE_SECUREINVALIDATE 0                    /*!< (unspecified)                                                        */
197 
198 /*System protection unit*/
199 #define SPU_PRESENT 1
200 #define SPU_COUNT 2
201 
202 #define SPU000_BELLS 0                               /*!< (unspecified)                                                        */
203 #define SPU000_IPCT 0                                /*!< (unspecified)                                                        */
204 #define SPU000_DPPI 0                                /*!< (unspecified)                                                        */
205 #define SPU000_GPIOTE 0                              /*!< (unspecified)                                                        */
206 #define SPU000_GRTC 0                                /*!< (unspecified)                                                        */
207 #define SPU000_GPIO 0                                /*!< (unspecified)                                                        */
208 #define SPU000_CRACEN 0                              /*!< (unspecified)                                                        */
209 #define SPU000_MRAMC 0                               /*!< (unspecified)                                                        */
210 #define SPU000_COEXC 0                               /*!< (unspecified)                                                        */
211 #define SPU000_ANTSWC 0                              /*!< (unspecified)                                                        */
212 #define SPU000_SLAVE_BITS 4                          /*!< SLAVE_BITS=4 (number of address bits required to represent the
213                                                           peripheral slave index)*/
214 
215 #define SPU010_BELLS 0                               /*!< (unspecified)                                                        */
216 #define SPU010_IPCT 1                                /*!< (unspecified)                                                        */
217 #define SPU010_DPPI 0                                /*!< (unspecified)                                                        */
218 #define SPU010_GPIOTE 0                              /*!< (unspecified)                                                        */
219 #define SPU010_GRTC 0                                /*!< (unspecified)                                                        */
220 #define SPU010_GPIO 0                                /*!< (unspecified)                                                        */
221 #define SPU010_CRACEN 0                              /*!< (unspecified)                                                        */
222 #define SPU010_MRAMC 0                               /*!< (unspecified)                                                        */
223 #define SPU010_COEXC 0                               /*!< (unspecified)                                                        */
224 #define SPU010_ANTSWC 0                              /*!< (unspecified)                                                        */
225 #define SPU010_SLAVE_BITS 4                          /*!< SLAVE_BITS=4 (number of address bits required to represent the
226                                                           peripheral slave index)*/
227 
228 /*Memory Privilege Controller*/
229 #define MPC_PRESENT 1
230 #define MPC_COUNT 1
231 
232 #define MPC_EXTEND_CLOCK_REQ 0                       /*!< (unspecified)                                                        */
233 #define MPC_RTCHOKE 1                                /*!< (unspecified)                                                        */
234 #define MPC_OVERRIDE_GRAN 4096                       /*!< The override region granularity is 4096 bytes                        */
235 
236 /*MVDMA performs direct-memory-accesses between memories. Data is transferred according to job descriptor lists. Each transfer has corresponding source and sink descriptor lists with matching data amounts. The lists are in memory and they contain data buffer information, address pointers, buffer sizes and data type attributes.*/
237 
238 #define MVDMA_PRESENT 1
239 #define MVDMA_COUNT 3
240 
241 #define MVDMA_COMPLETED_EVENT 1                      /*!< (unspecified)                                                        */
242 #define MVDMA_DPPI_DISCONNECTED 0                    /*!< (unspecified)                                                        */
243 #define MVDMA_INSTANCE_IN_WRAPPER 0                  /*!< (unspecified)                                                        */
244 
245 #define MVDMA120_COMPLETED_EVENT 1                   /*!< (unspecified)                                                        */
246 #define MVDMA120_DPPI_DISCONNECTED 1                 /*!< (unspecified)                                                        */
247 #define MVDMA120_INSTANCE_IN_WRAPPER 1               /*!< (unspecified)                                                        */
248 
249 #define MVDMA121_COMPLETED_EVENT 1                   /*!< (unspecified)                                                        */
250 #define MVDMA121_DPPI_DISCONNECTED 1                 /*!< (unspecified)                                                        */
251 #define MVDMA121_INSTANCE_IN_WRAPPER 1               /*!< (unspecified)                                                        */
252 
253 /*RAM Controller*/
254 #define RAMC_PRESENT 1
255 #define RAMC_COUNT 3
256 
257 #define RAMC_ECC 0                                   /*!< (unspecified)                                                        */
258 #define RAMC_SEC 1                                   /*!< (unspecified)                                                        */
259 
260 #define RAMC122_ECC 0                                /*!< (unspecified)                                                        */
261 #define RAMC122_SEC 0                                /*!< (unspecified)                                                        */
262 
263 #define RAMC123_ECC 0                                /*!< (unspecified)                                                        */
264 #define RAMC123_SEC 0                                /*!< (unspecified)                                                        */
265 
266 /*HSFLL*/
267 #define HSFLL_PRESENT 1
268 #define HSFLL_COUNT 1
269 
270 #define HSFLL_DITHER_32B 1                           /*!< (unspecified)                                                        */
271 #define HSFLL_CLOCKCTRL_MULT_RESET 6                 /*!< Reset value of register CLOCKCTRL.MULT: clockctrl_mult_reset         */
272 
273 /*LRCCONF*/
274 #define LRCCONF_PRESENT 1
275 #define LRCCONF_COUNT 2
276 
277 #define LRCCONF000_POWERON 0                         /*!< (unspecified)                                                        */
278 #define LRCCONF000_RETAIN 0                          /*!< (unspecified)                                                        */
279 #define LRCCONF000_SYSTEMOFF 0                       /*!< (unspecified)                                                        */
280 #define LRCCONF000_LRCREQHFXO 0                      /*!< (unspecified)                                                        */
281 #define LRCCONF000_NCLK_MIN 0                        /*!< (unspecified)                                                        */
282 #define LRCCONF000_NCLK_MAX 0                        /*!< (unspecified)                                                        */
283 #define LRCCONF000_NCLK_SIZE 1                       /*!< (unspecified)                                                        */
284 #define LRCCONF000_CLKCTRL 1                         /*!< (unspecified)                                                        */
285 #define LRCCONF000_NACTPD_MIN 0                      /*!< (unspecified)                                                        */
286 #define LRCCONF000_NACTPD_MAX 7                      /*!< (unspecified)                                                        */
287 #define LRCCONF000_NACTPD_SIZE 8                     /*!< (unspecified)                                                        */
288 #define LRCCONF000_PDACT 0                           /*!< (unspecified)                                                        */
289 #define LRCCONF000_NPD_MIN 0                         /*!< (unspecified)                                                        */
290 #define LRCCONF000_NPD_MAX 7                         /*!< (unspecified)                                                        */
291 #define LRCCONF000_NPD_SIZE 8                        /*!< (unspecified)                                                        */
292 #define LRCCONF000_OTHERON 0                         /*!< (unspecified)                                                        */
293 #define LRCCONF000_NDOMAINS_MIN 0                    /*!< (unspecified)                                                        */
294 #define LRCCONF000_NDOMAINS_MAX 15                   /*!< (unspecified)                                                        */
295 #define LRCCONF000_NDOMAINS_SIZE 16                  /*!< (unspecified)                                                        */
296 #define LRCCONF000_AX2XWAITSTATES 0                  /*!< (unspecified)                                                        */
297 #define LRCCONF000_POWERON_MAIN_RESET 0              /*!< (unspecified)                                                        */
298 #define LRCCONF000_POWERON_ACT_RESET 0               /*!< (unspecified)                                                        */
299 #define LRCCONF000_RETAIN_MAIN_RESET 1               /*!< (unspecified)                                                        */
300 #define LRCCONF000_RETAIN_ACT_RESET 1                /*!< (unspecified)                                                        */
301 
302 #define LRCCONF010_POWERON 1                         /*!< (unspecified)                                                        */
303 #define LRCCONF010_RETAIN 1                          /*!< (unspecified)                                                        */
304 #define LRCCONF010_SYSTEMOFF 1                       /*!< (unspecified)                                                        */
305 #define LRCCONF010_LRCREQHFXO 1                      /*!< (unspecified)                                                        */
306 #define LRCCONF010_NCLK_MIN 0                        /*!< (unspecified)                                                        */
307 #define LRCCONF010_NCLK_MAX 0                        /*!< (unspecified)                                                        */
308 #define LRCCONF010_NCLK_SIZE 1                       /*!< (unspecified)                                                        */
309 #define LRCCONF010_CLKCTRL 1                         /*!< (unspecified)                                                        */
310 #define LRCCONF010_NACTPD_MIN 0                      /*!< (unspecified)                                                        */
311 #define LRCCONF010_NACTPD_MAX 0                      /*!< (unspecified)                                                        */
312 #define LRCCONF010_NACTPD_SIZE 1                     /*!< (unspecified)                                                        */
313 #define LRCCONF010_PDACT 1                           /*!< (unspecified)                                                        */
314 #define LRCCONF010_NPD_MIN 0                         /*!< (unspecified)                                                        */
315 #define LRCCONF010_NPD_MAX 7                         /*!< (unspecified)                                                        */
316 #define LRCCONF010_NPD_SIZE 8                        /*!< (unspecified)                                                        */
317 #define LRCCONF010_OTHERON 0                         /*!< (unspecified)                                                        */
318 #define LRCCONF010_NDOMAINS_MIN 0                    /*!< (unspecified)                                                        */
319 #define LRCCONF010_NDOMAINS_MAX 15                   /*!< (unspecified)                                                        */
320 #define LRCCONF010_NDOMAINS_SIZE 16                  /*!< (unspecified)                                                        */
321 #define LRCCONF010_AX2XWAITSTATES 0                  /*!< (unspecified)                                                        */
322 #define LRCCONF010_POWERON_MAIN_RESET 0              /*!< Reset value of register POWERON.MAIN: 0                              */
323 #define LRCCONF010_POWERON_ACT_RESET 0               /*!< Reset value of register POWERON.ACT: 0                               */
324 #define LRCCONF010_RETAIN_MAIN_RESET 1               /*!< Reset value of register RETAIN.MAIN: 1                               */
325 #define LRCCONF010_RETAIN_ACT_RESET 1                /*!< Reset value of register RETAIN.ACT: 1                                */
326 
327 /*Memory configuration*/
328 #define MEMCONF_PRESENT 1
329 #define MEMCONF_COUNT 1
330 
331 #define MEMCONF_RETTRIM 1                            /*!< (unspecified)                                                        */
332 #define MEMCONF_REPAIR 0                             /*!< (unspecified)                                                        */
333 #define MEMCONF_POWER 1                              /*!< (unspecified)                                                        */
334 
335 /*Watchdog Timer*/
336 #define WDT_PRESENT 1
337 #define WDT_COUNT 4
338 
339 #define WDT010_ALLOW_STOP 0                          /*!< (unspecified)                                                        */
340 #define WDT010_HAS_INTEN 0                           /*!< (unspecified)                                                        */
341 
342 #define WDT011_ALLOW_STOP 0                          /*!< (unspecified)                                                        */
343 #define WDT011_HAS_INTEN 0                           /*!< (unspecified)                                                        */
344 
345 #define WDT131_ALLOW_STOP 0                          /*!< (unspecified)                                                        */
346 #define WDT131_HAS_INTEN 0                           /*!< (unspecified)                                                        */
347 
348 #define WDT132_ALLOW_STOP 0                          /*!< (unspecified)                                                        */
349 #define WDT132_HAS_INTEN 0                           /*!< (unspecified)                                                        */
350 
351 /*ABB peripheral*/
352 #define ABB_PRESENT 1
353 #define ABB_COUNT 1
354 
355 /*RESETINFO*/
356 #define RESETINFO_PRESENT 1
357 #define RESETINFO_COUNT 1
358 
359 #define RESETINFO_HASRESETREAS 1                     /*!< (unspecified)                                                        */
360 #define RESETINFO_CROSSDOMAINRESET 1                 /*!< (unspecified)                                                        */
361 
362 /*IPCT APB registers*/
363 #define IPCT_PRESENT 1
364 #define IPCT_COUNT 3
365 
366 #define IPCT_IRQ_COUNT 2
367 
368 #define IPCT120_IRQ_COUNT 1
369 
370 #define IPCT130_IRQ_COUNT 1
371 
372 /*Software interrupt*/
373 #define SWI_PRESENT 1
374 #define SWI_COUNT 8
375 
376 /*BELLBOARD APB registers*/
377 #define BELLBOARD_PRESENT 1
378 #define BELLBOARD_COUNT 1
379 
380 #define BELLBOARD_IRQ_COUNT 4
381 
382 /*Factory Information Configuration Registers*/
383 #define FICR_PRESENT 1
384 #define FICR_COUNT 1
385 
386 /*USBHSCORE*/
387 #define USBHSCORE_PRESENT 1
388 #define USBHSCORE_COUNT 1
389 
390 /*I3CCORE*/
391 #define I3CCORE_PRESENT 1
392 #define I3CCORE_COUNT 2
393 
394 /*DMU*/
395 #define DMU_PRESENT 1
396 #define DMU_COUNT 2
397 
398 /*MCAN*/
399 #define MCAN_PRESENT 1
400 #define MCAN_COUNT 2
401 
402 /*System Trace Macrocell data buffer*/
403 #define STMDATA_PRESENT 1
404 #define STMDATA_COUNT 1
405 
406 /*TDDCONF*/
407 #define TDDCONF_PRESENT 1
408 #define TDDCONF_COUNT 1
409 
410 #define TDDCONF_FEATEN_TDDCONF_CLK_320MHZ 0          /*!< (unspecified)                                                        */
411 #define TDDCONF_FEATEN_TDDCONF_CLK_400MHZ 1          /*!< (unspecified)                                                        */
412 
413 /*System Trace Macrocell*/
414 #define STM_PRESENT 1
415 #define STM_COUNT 1
416 
417 /*Trace Port Interface Unit*/
418 #define TPIU_PRESENT 1
419 #define TPIU_COUNT 1
420 
421 /*ATB Replicator module*/
422 #define ATBREPLICATOR_PRESENT 1
423 #define ATBREPLICATOR_COUNT 4
424 
425 /*ATB funnel module*/
426 #define ATBFUNNEL_PRESENT 1
427 #define ATBFUNNEL_COUNT 4
428 
429 /*GPIO Tasks and Events*/
430 #define GPIOTE_PRESENT 1
431 #define GPIOTE_COUNT 2
432 
433 #define GPIOTE130_IRQ_COUNT 2
434 #define GPIOTE130_GPIOTE_NCHANNELS_MIN 0             /*!< Number of GPIOTE channels: 0..7                                      */
435 #define GPIOTE130_GPIOTE_NCHANNELS_MAX 7             /*!< Number of GPIOTE channels: 0..7                                      */
436 #define GPIOTE130_GPIOTE_NCHANNELS_SIZE 8            /*!< Number of GPIOTE channels: 0..7                                      */
437 #define GPIOTE130_GPIOTE_NPORTEVENTS_MIN 0           /*!< Number of GPIOTE port events: 0..3                                   */
438 #define GPIOTE130_GPIOTE_NPORTEVENTS_MAX 3           /*!< Number of GPIOTE port events: 0..3                                   */
439 #define GPIOTE130_GPIOTE_NPORTEVENTS_SIZE 4          /*!< Number of GPIOTE port events: 0..3                                   */
440 #define GPIOTE130_GPIOTE_NINTERRUPTS_MIN 0           /*!< Number of GPIOTE interrupts: 0..1                                    */
441 #define GPIOTE130_GPIOTE_NINTERRUPTS_MAX 1           /*!< Number of GPIOTE interrupts: 0..1                                    */
442 #define GPIOTE130_GPIOTE_NINTERRUPTS_SIZE 2          /*!< Number of GPIOTE interrupts: 0..1                                    */
443 #define GPIOTE130_HAS_PORT_EVENT 1                   /*!< (unspecified)                                                        */
444 
445 #define GPIOTE131_IRQ_COUNT 2
446 #define GPIOTE131_GPIOTE_NCHANNELS_MIN 0             /*!< Number of GPIOTE channels: 0..7                                      */
447 #define GPIOTE131_GPIOTE_NCHANNELS_MAX 7             /*!< Number of GPIOTE channels: 0..7                                      */
448 #define GPIOTE131_GPIOTE_NCHANNELS_SIZE 8            /*!< Number of GPIOTE channels: 0..7                                      */
449 #define GPIOTE131_GPIOTE_NPORTEVENTS_MIN 0           /*!< Number of GPIOTE port events: 0..3                                   */
450 #define GPIOTE131_GPIOTE_NPORTEVENTS_MAX 3           /*!< Number of GPIOTE port events: 0..3                                   */
451 #define GPIOTE131_GPIOTE_NPORTEVENTS_SIZE 4          /*!< Number of GPIOTE port events: 0..3                                   */
452 #define GPIOTE131_GPIOTE_NINTERRUPTS_MIN 0           /*!< Number of GPIOTE interrupts: 0..1                                    */
453 #define GPIOTE131_GPIOTE_NINTERRUPTS_MAX 1           /*!< Number of GPIOTE interrupts: 0..1                                    */
454 #define GPIOTE131_GPIOTE_NINTERRUPTS_SIZE 2          /*!< Number of GPIOTE interrupts: 0..1                                    */
455 #define GPIOTE131_HAS_PORT_EVENT 1                   /*!< (unspecified)                                                        */
456 
457 /*Global Real-time counter*/
458 #define GRTC_PRESENT 1
459 #define GRTC_COUNT 1
460 
461 #define GRTC_IRQ_COUNT 3
462 #define GRTC_MSBWIDTH_MIN 0                          /*!< Width of the RTCOUNTERH, RTCOMPAREH and RTCOMPARESYNCH registers :
463                                                           0..14*/
464 #define GRTC_MSBWIDTH_MAX 14                         /*!< Width of the RTCOUNTERH, RTCOMPAREH and RTCOMPARESYNCH registers :
465                                                           0..14*/
466 #define GRTC_MSBWIDTH_SIZE 15                        /*!< Width of the RTCOUNTERH, RTCOMPAREH and RTCOMPARESYNCH registers :
467                                                           0..14*/
468 #define GRTC_NCC_MIN 0                               /*!< Number of compare/capture registers : 0..15                          */
469 #define GRTC_NCC_MAX 15                              /*!< Number of compare/capture registers : 0..15                          */
470 #define GRTC_NCC_SIZE 16                             /*!< Number of compare/capture registers : 0..15                          */
471 #define GRTC_NTIMEOUT_MIN 0                          /*!< Width of the TIMEOUT register : 0..15                                */
472 #define GRTC_NTIMEOUT_MAX 15                         /*!< Width of the TIMEOUT register : 0..15                                */
473 #define GRTC_NTIMEOUT_SIZE 16                        /*!< Width of the TIMEOUT register : 0..15                                */
474 #define GRTC_NDOMAIN_MIN 0                           /*!< Number of domains at the KEEPRUNNING register: 0..15                 */
475 #define GRTC_NDOMAIN_MAX 15                          /*!< Number of domains at the KEEPRUNNING register: 0..15                 */
476 #define GRTC_NDOMAIN_SIZE 16                         /*!< Number of domains at the KEEPRUNNING register: 0..15                 */
477 #define GRTC_GRTC_NINTERRUPTS_MIN 0                  /*!< Number of GRTC interrupts : 0..2                                     */
478 #define GRTC_GRTC_NINTERRUPTS_MAX 2                  /*!< Number of GRTC interrupts : 0..2                                     */
479 #define GRTC_GRTC_NINTERRUPTS_SIZE 3                 /*!< Number of GRTC interrupts : 0..2                                     */
480 #define GRTC_PWMREGS 1                               /*!< (unspecified)                                                        */
481 #define GRTC_CLKOUTREG 1                             /*!< (unspecified)                                                        */
482 #define GRTC_CLKSELREG 1                             /*!< (unspecified)                                                        */
483 #define GRTC_CLKSELLFLPRC 0                          /*!< (unspecified)                                                        */
484 #define GRTC_CCADD_WRITE_ONLY 0                      /*!< (unspecified)                                                        */
485 #define GRTC_READY_STATUS_AND_EVENTS 0               /*!< (unspecified)                                                        */
486 
487 /*Trace buffer monitor*/
488 #define TBM_PRESENT 1
489 #define TBM_COUNT 1
490 
491 /*USBHS*/
492 #define USBHS_PRESENT 1
493 #define USBHS_COUNT 1
494 
495 /*External Memory Interface*/
496 #define EXMIF_PRESENT 1
497 #define EXMIF_COUNT 1
498 
499 /*BELLBOARD public registers*/
500 #define BELLBOARDPUBLIC_PRESENT 1
501 #define BELLBOARDPUBLIC_COUNT 1
502 
503 /*VPR peripheral registers*/
504 #define VPRPUBLIC_PRESENT 1
505 #define VPRPUBLIC_COUNT 1
506 
507 #define VPR120_VEVIF_NTASKS_MIN 0                    /*!< VEVIF tasks: 0..31                                                   */
508 #define VPR120_VEVIF_NTASKS_MAX 31                   /*!< VEVIF tasks: 0..31                                                   */
509 #define VPR120_VEVIF_NTASKS_SIZE 32                  /*!< VEVIF tasks: 0..31                                                   */
510 #define VPR120_VEVIF_TASKS_MASK 0xFFFFF0FF           /*!< Mask of supported VEVIF tasks: 0xFFFFF0FF                            */
511 
512 /*MUTEX*/
513 #define MUTEX_PRESENT 1
514 #define MUTEX_COUNT 2
515 
516 /*I3C*/
517 #define I3C_PRESENT 1
518 #define I3C_COUNT 2
519 
520 /*VPR peripheral registers*/
521 #define VPR_PRESENT 1
522 #define VPR_COUNT 2
523 
524 #define VPR121_INIT_PC_RESET_VALUE 0x00000000        /*!< Boot vector (INIT_PC_RESET_VALUE): 0x00000000                        */
525 #define VPR121_VPR_START_RESET_VALUE 0               /*!< Self-booting (VPR_START_RESET_VALUE): 0                              */
526 #define VPR121_RAM_BASE_ADDR 0x2F890000              /*!< (unspecified)                                                        */
527 #define VPR121_RAM_SZ 15                             /*!< (unspecified)                                                        */
528 #define VPR121_VPRSAVEDCTX_REGNAME NRF_MEMCONF120->POWER[0].RET /*!< (unspecified)                                             */
529 #define VPR121_VPRSAVEDCTX_REGBIT 23                 /*!< (unspecified)                                                        */
530 #define VPR121_RETAINED 0                            /*!< (unspecified)                                                        */
531 #define VPR121_VPRSAVEDCTX 1                         /*!< (unspecified)                                                        */
532 #define VPR121_VPRSAVEADDR 0x2F800000                /*!< (unspecified)                                                        */
533 #define VPR121_VPRREMAPADDRVTOB 0x00000000           /*!< (unspecified)                                                        */
534 #define VPR121_VEVIF_NTASKS_MIN 0                    /*!< VEVIF tasks: 0..31                                                   */
535 #define VPR121_VEVIF_NTASKS_MAX 31                   /*!< VEVIF tasks: 0..31                                                   */
536 #define VPR121_VEVIF_NTASKS_SIZE 32                  /*!< VEVIF tasks: 0..31                                                   */
537 #define VPR121_VEVIF_TASKS_MASK 0xFFFF0000           /*!< Mask of supported VEVIF tasks: 0xFFFF0000                            */
538 #define VPR121_VEVIF_NDPPI_MIN 24                    /*!< VEVIF DPPI channels: 24..27                                          */
539 #define VPR121_VEVIF_NDPPI_MAX 27                    /*!< VEVIF DPPI channels: 24..27                                          */
540 #define VPR121_VEVIF_NDPPI_SIZE 28                   /*!< VEVIF DPPI channels: 24..27                                          */
541 #define VPR121_VEVIF_NEVENTS_MIN 28                  /*!< VEVIF events: 28..31                                                 */
542 #define VPR121_VEVIF_NEVENTS_MAX 31                  /*!< VEVIF events: 28..31                                                 */
543 #define VPR121_VEVIF_NEVENTS_SIZE 32                 /*!< VEVIF events: 28..31                                                 */
544 #define VPR121_DEBUGGER_OFFSET 1024                  /*!< Debugger interface register offset: 0x5F8D4400                       */
545 
546 #define VPR130_INIT_PC_RESET_VALUE 0x00000000        /*!< Boot vector (INIT_PC_RESET_VALUE): 0x00000000                        */
547 #define VPR130_VPR_START_RESET_VALUE 0               /*!< Self-booting (VPR_START_RESET_VALUE): 0                              */
548 #define VPR130_RAM_BASE_ADDR 0x2FC00000              /*!< (unspecified)                                                        */
549 #define VPR130_RAM_SZ 15                             /*!< (unspecified)                                                        */
550 #define VPR130_VPRSAVEDCTX_REGNAME NRF_MEMCONF130->POWER[0].RET /*!< (unspecified)                                             */
551 #define VPR130_VPRSAVEDCTX_REGBIT 5                  /*!< (unspecified)                                                        */
552 #define VPR130_RETAINED 1                            /*!< (unspecified)                                                        */
553 #define VPR130_VPRSAVEDCTX 1                         /*!< (unspecified)                                                        */
554 #define VPR130_VPRSAVEADDR 0x2F800000                /*!< (unspecified)                                                        */
555 #define VPR130_VPRREMAPADDRVTOB 0x00000000           /*!< (unspecified)                                                        */
556 #define VPR130_VEVIF_NTASKS_MIN 0                    /*!< VEVIF tasks: 0..15                                                   */
557 #define VPR130_VEVIF_NTASKS_MAX 15                   /*!< VEVIF tasks: 0..15                                                   */
558 #define VPR130_VEVIF_NTASKS_SIZE 16                  /*!< VEVIF tasks: 0..15                                                   */
559 #define VPR130_VEVIF_TASKS_MASK 0x0000FFF0           /*!< Mask of supported VEVIF tasks: 0x0000FFF0                            */
560 #define VPR130_VEVIF_NDPPI_MIN 8                     /*!< VEVIF DPPI channels: 8..11                                           */
561 #define VPR130_VEVIF_NDPPI_MAX 11                    /*!< VEVIF DPPI channels: 8..11                                           */
562 #define VPR130_VEVIF_NDPPI_SIZE 12                   /*!< VEVIF DPPI channels: 8..11                                           */
563 #define VPR130_VEVIF_NEVENTS_MIN 12                  /*!< VEVIF events: 12..15                                                 */
564 #define VPR130_VEVIF_NEVENTS_MAX 15                  /*!< VEVIF events: 12..15                                                 */
565 #define VPR130_VEVIF_NEVENTS_SIZE 16                 /*!< VEVIF events: 12..15                                                 */
566 #define VPR130_DEBUGGER_OFFSET 1024                  /*!< Debugger interface register offset: 0x5F908400                       */
567 
568 /*Controller Area Network*/
569 #define CAN_PRESENT 1
570 #define CAN_COUNT 2
571 
572 /*Distributed programmable peripheral interconnect controller*/
573 #define DPPIC_PRESENT 1
574 #define DPPIC_COUNT 8
575 
576 #define DPPIC120_HASCHANNELGROUPS 1                  /*!< (unspecified)                                                        */
577 #define DPPIC120_CH_NUM_MIN 0                        /*!< (unspecified)                                                        */
578 #define DPPIC120_CH_NUM_MAX 7                        /*!< (unspecified)                                                        */
579 #define DPPIC120_CH_NUM_SIZE 8                       /*!< (unspecified)                                                        */
580 #define DPPIC120_GROUP_NUM_MIN 0                     /*!< (unspecified)                                                        */
581 #define DPPIC120_GROUP_NUM_MAX 1                     /*!< (unspecified)                                                        */
582 #define DPPIC120_GROUP_NUM_SIZE 2                    /*!< (unspecified)                                                        */
583 
584 #define DPPIC130_HASCHANNELGROUPS 1                  /*!< (unspecified)                                                        */
585 #define DPPIC130_CH_NUM_MIN 0                        /*!< (unspecified)                                                        */
586 #define DPPIC130_CH_NUM_MAX 7                        /*!< (unspecified)                                                        */
587 #define DPPIC130_CH_NUM_SIZE 8                       /*!< (unspecified)                                                        */
588 #define DPPIC130_GROUP_NUM_MIN 0                     /*!< (unspecified)                                                        */
589 #define DPPIC130_GROUP_NUM_MAX 1                     /*!< (unspecified)                                                        */
590 #define DPPIC130_GROUP_NUM_SIZE 2                    /*!< (unspecified)                                                        */
591 
592 #define DPPIC131_HASCHANNELGROUPS 1                  /*!< (unspecified)                                                        */
593 #define DPPIC131_CH_NUM_MIN 0                        /*!< (unspecified)                                                        */
594 #define DPPIC131_CH_NUM_MAX 7                        /*!< (unspecified)                                                        */
595 #define DPPIC131_CH_NUM_SIZE 8                       /*!< (unspecified)                                                        */
596 #define DPPIC131_GROUP_NUM_MIN 0                     /*!< (unspecified)                                                        */
597 #define DPPIC131_GROUP_NUM_MAX 1                     /*!< (unspecified)                                                        */
598 #define DPPIC131_GROUP_NUM_SIZE 2                    /*!< (unspecified)                                                        */
599 
600 #define DPPIC132_HASCHANNELGROUPS 1                  /*!< (unspecified)                                                        */
601 #define DPPIC132_CH_NUM_MIN 0                        /*!< (unspecified)                                                        */
602 #define DPPIC132_CH_NUM_MAX 7                        /*!< (unspecified)                                                        */
603 #define DPPIC132_CH_NUM_SIZE 8                       /*!< (unspecified)                                                        */
604 #define DPPIC132_GROUP_NUM_MIN 0                     /*!< (unspecified)                                                        */
605 #define DPPIC132_GROUP_NUM_MAX 1                     /*!< (unspecified)                                                        */
606 #define DPPIC132_GROUP_NUM_SIZE 2                    /*!< (unspecified)                                                        */
607 
608 #define DPPIC133_HASCHANNELGROUPS 1                  /*!< (unspecified)                                                        */
609 #define DPPIC133_CH_NUM_MIN 0                        /*!< (unspecified)                                                        */
610 #define DPPIC133_CH_NUM_MAX 7                        /*!< (unspecified)                                                        */
611 #define DPPIC133_CH_NUM_SIZE 8                       /*!< (unspecified)                                                        */
612 #define DPPIC133_GROUP_NUM_MIN 0                     /*!< (unspecified)                                                        */
613 #define DPPIC133_GROUP_NUM_MAX 1                     /*!< (unspecified)                                                        */
614 #define DPPIC133_GROUP_NUM_SIZE 2                    /*!< (unspecified)                                                        */
615 
616 #define DPPIC134_HASCHANNELGROUPS 1                  /*!< (unspecified)                                                        */
617 #define DPPIC134_CH_NUM_MIN 0                        /*!< (unspecified)                                                        */
618 #define DPPIC134_CH_NUM_MAX 7                        /*!< (unspecified)                                                        */
619 #define DPPIC134_CH_NUM_SIZE 8                       /*!< (unspecified)                                                        */
620 #define DPPIC134_GROUP_NUM_MIN 0                     /*!< (unspecified)                                                        */
621 #define DPPIC134_GROUP_NUM_MAX 1                     /*!< (unspecified)                                                        */
622 #define DPPIC134_GROUP_NUM_SIZE 2                    /*!< (unspecified)                                                        */
623 
624 #define DPPIC135_HASCHANNELGROUPS 1                  /*!< (unspecified)                                                        */
625 #define DPPIC135_CH_NUM_MIN 0                        /*!< (unspecified)                                                        */
626 #define DPPIC135_CH_NUM_MAX 7                        /*!< (unspecified)                                                        */
627 #define DPPIC135_CH_NUM_SIZE 8                       /*!< (unspecified)                                                        */
628 #define DPPIC135_GROUP_NUM_MIN 0                     /*!< (unspecified)                                                        */
629 #define DPPIC135_GROUP_NUM_MAX 1                     /*!< (unspecified)                                                        */
630 #define DPPIC135_GROUP_NUM_SIZE 2                    /*!< (unspecified)                                                        */
631 
632 #define DPPIC136_HASCHANNELGROUPS 1                  /*!< (unspecified)                                                        */
633 #define DPPIC136_CH_NUM_MIN 0                        /*!< (unspecified)                                                        */
634 #define DPPIC136_CH_NUM_MAX 7                        /*!< (unspecified)                                                        */
635 #define DPPIC136_CH_NUM_SIZE 8                       /*!< (unspecified)                                                        */
636 #define DPPIC136_GROUP_NUM_MIN 0                     /*!< (unspecified)                                                        */
637 #define DPPIC136_GROUP_NUM_MAX 1                     /*!< (unspecified)                                                        */
638 #define DPPIC136_GROUP_NUM_SIZE 2                    /*!< (unspecified)                                                        */
639 
640 /*Timer/Counter*/
641 #define TIMER_PRESENT 1
642 #define TIMER_COUNT 10
643 
644 #define TIMER120_CC_NUM_MIN 0                        /*!< (unspecified)                                                        */
645 #define TIMER120_CC_NUM_MAX 5                        /*!< (unspecified)                                                        */
646 #define TIMER120_CC_NUM_SIZE 6                       /*!< (unspecified)                                                        */
647 #define TIMER120_MAX_SIZE_MIN 0                      /*!< (unspecified)                                                        */
648 #define TIMER120_MAX_SIZE_MAX 31                     /*!< (unspecified)                                                        */
649 #define TIMER120_MAX_SIZE_SIZE 32                    /*!< (unspecified)                                                        */
650 #define TIMER120_PCLK_MHZ 320                        /*!< Peripheral clock frequency (PCLK) is 320 MHz                         */
651 #define TIMER120_PCLK_VARIABLE 0                     /*!< (unspecified)                                                        */
652 
653 #define TIMER121_CC_NUM_MIN 0                        /*!< (unspecified)                                                        */
654 #define TIMER121_CC_NUM_MAX 5                        /*!< (unspecified)                                                        */
655 #define TIMER121_CC_NUM_SIZE 6                       /*!< (unspecified)                                                        */
656 #define TIMER121_MAX_SIZE_MIN 0                      /*!< (unspecified)                                                        */
657 #define TIMER121_MAX_SIZE_MAX 31                     /*!< (unspecified)                                                        */
658 #define TIMER121_MAX_SIZE_SIZE 32                    /*!< (unspecified)                                                        */
659 #define TIMER121_PCLK_MHZ 320                        /*!< Peripheral clock frequency (PCLK) is 320 MHz                         */
660 #define TIMER121_PCLK_VARIABLE 0                     /*!< (unspecified)                                                        */
661 
662 #define TIMER130_CC_NUM_MIN 0                        /*!< (unspecified)                                                        */
663 #define TIMER130_CC_NUM_MAX 5                        /*!< (unspecified)                                                        */
664 #define TIMER130_CC_NUM_SIZE 6                       /*!< (unspecified)                                                        */
665 #define TIMER130_MAX_SIZE_MIN 0                      /*!< (unspecified)                                                        */
666 #define TIMER130_MAX_SIZE_MAX 31                     /*!< (unspecified)                                                        */
667 #define TIMER130_MAX_SIZE_SIZE 32                    /*!< (unspecified)                                                        */
668 #define TIMER130_PCLK_MHZ 16                         /*!< Peripheral clock frequency (PCLK) is 16 MHz                          */
669 #define TIMER130_PCLK_VARIABLE 0                     /*!< (unspecified)                                                        */
670 
671 #define TIMER131_CC_NUM_MIN 0                        /*!< (unspecified)                                                        */
672 #define TIMER131_CC_NUM_MAX 5                        /*!< (unspecified)                                                        */
673 #define TIMER131_CC_NUM_SIZE 6                       /*!< (unspecified)                                                        */
674 #define TIMER131_MAX_SIZE_MIN 0                      /*!< (unspecified)                                                        */
675 #define TIMER131_MAX_SIZE_MAX 31                     /*!< (unspecified)                                                        */
676 #define TIMER131_MAX_SIZE_SIZE 32                    /*!< (unspecified)                                                        */
677 #define TIMER131_PCLK_MHZ 16                         /*!< Peripheral clock frequency (PCLK) is 16 MHz                          */
678 #define TIMER131_PCLK_VARIABLE 0                     /*!< (unspecified)                                                        */
679 
680 #define TIMER132_CC_NUM_MIN 0                        /*!< (unspecified)                                                        */
681 #define TIMER132_CC_NUM_MAX 5                        /*!< (unspecified)                                                        */
682 #define TIMER132_CC_NUM_SIZE 6                       /*!< (unspecified)                                                        */
683 #define TIMER132_MAX_SIZE_MIN 0                      /*!< (unspecified)                                                        */
684 #define TIMER132_MAX_SIZE_MAX 31                     /*!< (unspecified)                                                        */
685 #define TIMER132_MAX_SIZE_SIZE 32                    /*!< (unspecified)                                                        */
686 #define TIMER132_PCLK_MHZ 16                         /*!< Peripheral clock frequency (PCLK) is 16 MHz                          */
687 #define TIMER132_PCLK_VARIABLE 0                     /*!< (unspecified)                                                        */
688 
689 #define TIMER133_CC_NUM_MIN 0                        /*!< (unspecified)                                                        */
690 #define TIMER133_CC_NUM_MAX 5                        /*!< (unspecified)                                                        */
691 #define TIMER133_CC_NUM_SIZE 6                       /*!< (unspecified)                                                        */
692 #define TIMER133_MAX_SIZE_MIN 0                      /*!< (unspecified)                                                        */
693 #define TIMER133_MAX_SIZE_MAX 31                     /*!< (unspecified)                                                        */
694 #define TIMER133_MAX_SIZE_SIZE 32                    /*!< (unspecified)                                                        */
695 #define TIMER133_PCLK_MHZ 16                         /*!< Peripheral clock frequency (PCLK) is 16 MHz                          */
696 #define TIMER133_PCLK_VARIABLE 0                     /*!< (unspecified)                                                        */
697 
698 #define TIMER134_CC_NUM_MIN 0                        /*!< (unspecified)                                                        */
699 #define TIMER134_CC_NUM_MAX 5                        /*!< (unspecified)                                                        */
700 #define TIMER134_CC_NUM_SIZE 6                       /*!< (unspecified)                                                        */
701 #define TIMER134_MAX_SIZE_MIN 0                      /*!< (unspecified)                                                        */
702 #define TIMER134_MAX_SIZE_MAX 31                     /*!< (unspecified)                                                        */
703 #define TIMER134_MAX_SIZE_SIZE 32                    /*!< (unspecified)                                                        */
704 #define TIMER134_PCLK_MHZ 16                         /*!< Peripheral clock frequency (PCLK) is 16 MHz                          */
705 #define TIMER134_PCLK_VARIABLE 0                     /*!< (unspecified)                                                        */
706 
707 #define TIMER135_CC_NUM_MIN 0                        /*!< (unspecified)                                                        */
708 #define TIMER135_CC_NUM_MAX 5                        /*!< (unspecified)                                                        */
709 #define TIMER135_CC_NUM_SIZE 6                       /*!< (unspecified)                                                        */
710 #define TIMER135_MAX_SIZE_MIN 0                      /*!< (unspecified)                                                        */
711 #define TIMER135_MAX_SIZE_MAX 31                     /*!< (unspecified)                                                        */
712 #define TIMER135_MAX_SIZE_SIZE 32                    /*!< (unspecified)                                                        */
713 #define TIMER135_PCLK_MHZ 16                         /*!< Peripheral clock frequency (PCLK) is 16 MHz                          */
714 #define TIMER135_PCLK_VARIABLE 0                     /*!< (unspecified)                                                        */
715 
716 #define TIMER136_CC_NUM_MIN 0                        /*!< (unspecified)                                                        */
717 #define TIMER136_CC_NUM_MAX 5                        /*!< (unspecified)                                                        */
718 #define TIMER136_CC_NUM_SIZE 6                       /*!< (unspecified)                                                        */
719 #define TIMER136_MAX_SIZE_MIN 0                      /*!< (unspecified)                                                        */
720 #define TIMER136_MAX_SIZE_MAX 31                     /*!< (unspecified)                                                        */
721 #define TIMER136_MAX_SIZE_SIZE 32                    /*!< (unspecified)                                                        */
722 #define TIMER136_PCLK_MHZ 16                         /*!< Peripheral clock frequency (PCLK) is 16 MHz                          */
723 #define TIMER136_PCLK_VARIABLE 0                     /*!< (unspecified)                                                        */
724 
725 #define TIMER137_CC_NUM_MIN 0                        /*!< (unspecified)                                                        */
726 #define TIMER137_CC_NUM_MAX 5                        /*!< (unspecified)                                                        */
727 #define TIMER137_CC_NUM_SIZE 6                       /*!< (unspecified)                                                        */
728 #define TIMER137_MAX_SIZE_MIN 0                      /*!< (unspecified)                                                        */
729 #define TIMER137_MAX_SIZE_MAX 31                     /*!< (unspecified)                                                        */
730 #define TIMER137_MAX_SIZE_SIZE 32                    /*!< (unspecified)                                                        */
731 #define TIMER137_PCLK_MHZ 16                         /*!< Peripheral clock frequency (PCLK) is 16 MHz                          */
732 #define TIMER137_PCLK_VARIABLE 0                     /*!< (unspecified)                                                        */
733 
734 /*Pulse width modulation unit*/
735 #define PWM_PRESENT 1
736 #define PWM_COUNT 5
737 
738 #define PWM120_IDLE_OUT 1                            /*!< (unspecified)                                                        */
739 #define PWM120_COMPARE_MATCH 1                       /*!< (unspecified)                                                        */
740 #define PWM120_FEATURES_V2 0                         /*!< (unspecified)                                                        */
741 #define PWM120_NO_FEATURES_V2 1                      /*!< (unspecified)                                                        */
742 #define PWM120_EASYDMA_CURRENT_AMOUNT_REGISTER_INCLUDED 1 /*!< (unspecified)                                                   */
743 
744 #define PWM130_IDLE_OUT 1                            /*!< (unspecified)                                                        */
745 #define PWM130_COMPARE_MATCH 1                       /*!< (unspecified)                                                        */
746 #define PWM130_FEATURES_V2 0                         /*!< (unspecified)                                                        */
747 #define PWM130_NO_FEATURES_V2 1                      /*!< (unspecified)                                                        */
748 #define PWM130_EASYDMA_CURRENT_AMOUNT_REGISTER_INCLUDED 1 /*!< (unspecified)                                                   */
749 
750 #define PWM131_IDLE_OUT 1                            /*!< (unspecified)                                                        */
751 #define PWM131_COMPARE_MATCH 1                       /*!< (unspecified)                                                        */
752 #define PWM131_FEATURES_V2 0                         /*!< (unspecified)                                                        */
753 #define PWM131_NO_FEATURES_V2 1                      /*!< (unspecified)                                                        */
754 #define PWM131_EASYDMA_CURRENT_AMOUNT_REGISTER_INCLUDED 1 /*!< (unspecified)                                                   */
755 
756 #define PWM132_IDLE_OUT 1                            /*!< (unspecified)                                                        */
757 #define PWM132_COMPARE_MATCH 1                       /*!< (unspecified)                                                        */
758 #define PWM132_FEATURES_V2 0                         /*!< (unspecified)                                                        */
759 #define PWM132_NO_FEATURES_V2 1                      /*!< (unspecified)                                                        */
760 #define PWM132_EASYDMA_CURRENT_AMOUNT_REGISTER_INCLUDED 1 /*!< (unspecified)                                                   */
761 
762 #define PWM133_IDLE_OUT 1                            /*!< (unspecified)                                                        */
763 #define PWM133_COMPARE_MATCH 1                       /*!< (unspecified)                                                        */
764 #define PWM133_FEATURES_V2 0                         /*!< (unspecified)                                                        */
765 #define PWM133_NO_FEATURES_V2 1                      /*!< (unspecified)                                                        */
766 #define PWM133_EASYDMA_CURRENT_AMOUNT_REGISTER_INCLUDED 1 /*!< (unspecified)                                                   */
767 
768 /*SPI Slave*/
769 #define SPIS_PRESENT 1
770 #define SPIS_COUNT 9
771 
772 #define SPIS120_EASYDMA_MAXCNT_MIN 0                 /*!< (unspecified)                                                        */
773 #define SPIS120_EASYDMA_MAXCNT_MAX 14                /*!< (unspecified)                                                        */
774 #define SPIS120_EASYDMA_MAXCNT_SIZE 15               /*!< (unspecified)                                                        */
775 #define SPIS120_EASYDMA_CURRENT_AMOUNT_REGISTER_INCLUDED 1 /*!< (unspecified)                                                  */
776 
777 #define SPIS130_EASYDMA_MAXCNT_MIN 0                 /*!< (unspecified)                                                        */
778 #define SPIS130_EASYDMA_MAXCNT_MAX 14                /*!< (unspecified)                                                        */
779 #define SPIS130_EASYDMA_MAXCNT_SIZE 15               /*!< (unspecified)                                                        */
780 #define SPIS130_EASYDMA_CURRENT_AMOUNT_REGISTER_INCLUDED 1 /*!< (unspecified)                                                  */
781 
782 #define SPIS131_EASYDMA_MAXCNT_MIN 0                 /*!< (unspecified)                                                        */
783 #define SPIS131_EASYDMA_MAXCNT_MAX 14                /*!< (unspecified)                                                        */
784 #define SPIS131_EASYDMA_MAXCNT_SIZE 15               /*!< (unspecified)                                                        */
785 #define SPIS131_EASYDMA_CURRENT_AMOUNT_REGISTER_INCLUDED 1 /*!< (unspecified)                                                  */
786 
787 #define SPIS132_EASYDMA_MAXCNT_MIN 0                 /*!< (unspecified)                                                        */
788 #define SPIS132_EASYDMA_MAXCNT_MAX 14                /*!< (unspecified)                                                        */
789 #define SPIS132_EASYDMA_MAXCNT_SIZE 15               /*!< (unspecified)                                                        */
790 #define SPIS132_EASYDMA_CURRENT_AMOUNT_REGISTER_INCLUDED 1 /*!< (unspecified)                                                  */
791 
792 #define SPIS133_EASYDMA_MAXCNT_MIN 0                 /*!< (unspecified)                                                        */
793 #define SPIS133_EASYDMA_MAXCNT_MAX 14                /*!< (unspecified)                                                        */
794 #define SPIS133_EASYDMA_MAXCNT_SIZE 15               /*!< (unspecified)                                                        */
795 #define SPIS133_EASYDMA_CURRENT_AMOUNT_REGISTER_INCLUDED 1 /*!< (unspecified)                                                  */
796 
797 #define SPIS134_EASYDMA_MAXCNT_MIN 0                 /*!< (unspecified)                                                        */
798 #define SPIS134_EASYDMA_MAXCNT_MAX 14                /*!< (unspecified)                                                        */
799 #define SPIS134_EASYDMA_MAXCNT_SIZE 15               /*!< (unspecified)                                                        */
800 #define SPIS134_EASYDMA_CURRENT_AMOUNT_REGISTER_INCLUDED 1 /*!< (unspecified)                                                  */
801 
802 #define SPIS135_EASYDMA_MAXCNT_MIN 0                 /*!< (unspecified)                                                        */
803 #define SPIS135_EASYDMA_MAXCNT_MAX 14                /*!< (unspecified)                                                        */
804 #define SPIS135_EASYDMA_MAXCNT_SIZE 15               /*!< (unspecified)                                                        */
805 #define SPIS135_EASYDMA_CURRENT_AMOUNT_REGISTER_INCLUDED 1 /*!< (unspecified)                                                  */
806 
807 #define SPIS136_EASYDMA_MAXCNT_MIN 0                 /*!< (unspecified)                                                        */
808 #define SPIS136_EASYDMA_MAXCNT_MAX 14                /*!< (unspecified)                                                        */
809 #define SPIS136_EASYDMA_MAXCNT_SIZE 15               /*!< (unspecified)                                                        */
810 #define SPIS136_EASYDMA_CURRENT_AMOUNT_REGISTER_INCLUDED 1 /*!< (unspecified)                                                  */
811 
812 #define SPIS137_EASYDMA_MAXCNT_MIN 0                 /*!< (unspecified)                                                        */
813 #define SPIS137_EASYDMA_MAXCNT_MAX 14                /*!< (unspecified)                                                        */
814 #define SPIS137_EASYDMA_MAXCNT_SIZE 15               /*!< (unspecified)                                                        */
815 #define SPIS137_EASYDMA_CURRENT_AMOUNT_REGISTER_INCLUDED 1 /*!< (unspecified)                                                  */
816 
817 /*Serial Peripheral Interface Master with EasyDMA*/
818 #define SPIM_PRESENT 1
819 #define SPIM_COUNT 10
820 
821 #define SPIM120_EASYDMA_CURRENT_AMOUNT_REGISTER_INCLUDED 1 /*!< (unspecified)                                                  */
822 #define SPIM120_MAX_DATARATE 32                      /*!< (unspecified)                                                        */
823 #define SPIM120_EASYDMA_MAXCNT_MIN 0                 /*!< (unspecified)                                                        */
824 #define SPIM120_EASYDMA_MAXCNT_MAX 14                /*!< (unspecified)                                                        */
825 #define SPIM120_EASYDMA_MAXCNT_SIZE 15               /*!< (unspecified)                                                        */
826 #define SPIM120_FEATURE_HARDWARE_CSN_PRESENT 1       /*!< (unspecified)                                                        */
827 #define SPIM120_FEATURE_HARDWARE_DCX_PRESENT 1       /*!< (unspecified)                                                        */
828 #define SPIM120_FEATURE_RXDELAY_PRESENT 1            /*!< (unspecified)                                                        */
829 #define SPIM120_STALL_STATUS_PRESENT 0               /*!< (unspecified)                                                        */
830 #define SPIM120_STALL_STATUS_TX_PRESENT 0            /*!< (unspecified)                                                        */
831 #define SPIM120_NUM_CHIPSELECT_MIN 0                 /*!< (unspecified)                                                        */
832 #define SPIM120_NUM_CHIPSELECT_MAX 0                 /*!< (unspecified)                                                        */
833 #define SPIM120_NUM_CHIPSELECT_SIZE 1                /*!< (unspecified)                                                        */
834 #define SPIM120_CORE_FREQUENCY 320                   /*!< Peripheral core frequency is 320 MHz.                                */
835 #define SPIM120_PRESCALER_PRESENT 1                  /*!< (unspecified)                                                        */
836 #define SPIM120_PRESCALER_DIVISOR_RANGE_MIN 4        /*!< (unspecified)                                                        */
837 #define SPIM120_PRESCALER_DIVISOR_RANGE_MAX 126      /*!< (unspecified)                                                        */
838 #define SPIM120_PRESCALER_DIVISOR_RANGE_SIZE 127     /*!< (unspecified)                                                        */
839 #define SPIM120_RXDELAY_VALUE_RANGE_MIN 0            /*!< (unspecified)                                                        */
840 #define SPIM120_RXDELAY_VALUE_RANGE_MAX 7            /*!< (unspecified)                                                        */
841 #define SPIM120_RXDELAY_VALUE_RANGE_SIZE 8           /*!< (unspecified)                                                        */
842 #define SPIM120_RXDELAY_RESET_VALUE 2                /*!< (unspecified)                                                        */
843 #define SPIM120_RXDELAY_FIELD_WIDTH_MIN 0            /*!< (unspecified)                                                        */
844 #define SPIM120_RXDELAY_FIELD_WIDTH_MAX 2            /*!< (unspecified)                                                        */
845 #define SPIM120_RXDELAY_FIELD_WIDTH_SIZE 3           /*!< (unspecified)                                                        */
846 
847 #define SPIM121_EASYDMA_CURRENT_AMOUNT_REGISTER_INCLUDED 1 /*!< (unspecified)                                                  */
848 #define SPIM121_MAX_DATARATE 32                      /*!< (unspecified)                                                        */
849 #define SPIM121_EASYDMA_MAXCNT_MIN 0                 /*!< (unspecified)                                                        */
850 #define SPIM121_EASYDMA_MAXCNT_MAX 14                /*!< (unspecified)                                                        */
851 #define SPIM121_EASYDMA_MAXCNT_SIZE 15               /*!< (unspecified)                                                        */
852 #define SPIM121_FEATURE_HARDWARE_CSN_PRESENT 1       /*!< (unspecified)                                                        */
853 #define SPIM121_FEATURE_HARDWARE_DCX_PRESENT 1       /*!< (unspecified)                                                        */
854 #define SPIM121_FEATURE_RXDELAY_PRESENT 1            /*!< (unspecified)                                                        */
855 #define SPIM121_STALL_STATUS_PRESENT 0               /*!< (unspecified)                                                        */
856 #define SPIM121_STALL_STATUS_TX_PRESENT 0            /*!< (unspecified)                                                        */
857 #define SPIM121_NUM_CHIPSELECT_MIN 0                 /*!< (unspecified)                                                        */
858 #define SPIM121_NUM_CHIPSELECT_MAX 0                 /*!< (unspecified)                                                        */
859 #define SPIM121_NUM_CHIPSELECT_SIZE 1                /*!< (unspecified)                                                        */
860 #define SPIM121_CORE_FREQUENCY 320                   /*!< Peripheral core frequency is 320 MHz.                                */
861 #define SPIM121_PRESCALER_PRESENT 1                  /*!< (unspecified)                                                        */
862 #define SPIM121_PRESCALER_DIVISOR_RANGE_MIN 4        /*!< (unspecified)                                                        */
863 #define SPIM121_PRESCALER_DIVISOR_RANGE_MAX 126      /*!< (unspecified)                                                        */
864 #define SPIM121_PRESCALER_DIVISOR_RANGE_SIZE 127     /*!< (unspecified)                                                        */
865 #define SPIM121_RXDELAY_VALUE_RANGE_MIN 0            /*!< (unspecified)                                                        */
866 #define SPIM121_RXDELAY_VALUE_RANGE_MAX 7            /*!< (unspecified)                                                        */
867 #define SPIM121_RXDELAY_VALUE_RANGE_SIZE 8           /*!< (unspecified)                                                        */
868 #define SPIM121_RXDELAY_RESET_VALUE 2                /*!< (unspecified)                                                        */
869 #define SPIM121_RXDELAY_FIELD_WIDTH_MIN 0            /*!< (unspecified)                                                        */
870 #define SPIM121_RXDELAY_FIELD_WIDTH_MAX 2            /*!< (unspecified)                                                        */
871 #define SPIM121_RXDELAY_FIELD_WIDTH_SIZE 3           /*!< (unspecified)                                                        */
872 
873 #define SPIM130_EASYDMA_CURRENT_AMOUNT_REGISTER_INCLUDED 1 /*!< (unspecified)                                                  */
874 #define SPIM130_MAX_DATARATE 8                       /*!< (unspecified)                                                        */
875 #define SPIM130_EASYDMA_MAXCNT_MIN 0                 /*!< (unspecified)                                                        */
876 #define SPIM130_EASYDMA_MAXCNT_MAX 14                /*!< (unspecified)                                                        */
877 #define SPIM130_EASYDMA_MAXCNT_SIZE 15               /*!< (unspecified)                                                        */
878 #define SPIM130_FEATURE_HARDWARE_CSN_PRESENT 1       /*!< (unspecified)                                                        */
879 #define SPIM130_FEATURE_HARDWARE_DCX_PRESENT 1       /*!< (unspecified)                                                        */
880 #define SPIM130_FEATURE_RXDELAY_PRESENT 1            /*!< (unspecified)                                                        */
881 #define SPIM130_STALL_STATUS_PRESENT 0               /*!< (unspecified)                                                        */
882 #define SPIM130_STALL_STATUS_TX_PRESENT 0            /*!< (unspecified)                                                        */
883 #define SPIM130_NUM_CHIPSELECT_MIN 0                 /*!< (unspecified)                                                        */
884 #define SPIM130_NUM_CHIPSELECT_MAX 0                 /*!< (unspecified)                                                        */
885 #define SPIM130_NUM_CHIPSELECT_SIZE 1                /*!< (unspecified)                                                        */
886 #define SPIM130_CORE_FREQUENCY 16                    /*!< Peripheral core frequency is 16 MHz.                                 */
887 #define SPIM130_PRESCALER_PRESENT 1                  /*!< (unspecified)                                                        */
888 #define SPIM130_PRESCALER_DIVISOR_RANGE_MIN 2        /*!< (unspecified)                                                        */
889 #define SPIM130_PRESCALER_DIVISOR_RANGE_MAX 126      /*!< (unspecified)                                                        */
890 #define SPIM130_PRESCALER_DIVISOR_RANGE_SIZE 127     /*!< (unspecified)                                                        */
891 #define SPIM130_RXDELAY_VALUE_RANGE_MIN 0            /*!< (unspecified)                                                        */
892 #define SPIM130_RXDELAY_VALUE_RANGE_MAX 7            /*!< (unspecified)                                                        */
893 #define SPIM130_RXDELAY_VALUE_RANGE_SIZE 8           /*!< (unspecified)                                                        */
894 #define SPIM130_RXDELAY_RESET_VALUE 2                /*!< (unspecified)                                                        */
895 #define SPIM130_RXDELAY_FIELD_WIDTH_MIN 0            /*!< (unspecified)                                                        */
896 #define SPIM130_RXDELAY_FIELD_WIDTH_MAX 2            /*!< (unspecified)                                                        */
897 #define SPIM130_RXDELAY_FIELD_WIDTH_SIZE 3           /*!< (unspecified)                                                        */
898 
899 #define SPIM131_EASYDMA_CURRENT_AMOUNT_REGISTER_INCLUDED 1 /*!< (unspecified)                                                  */
900 #define SPIM131_MAX_DATARATE 8                       /*!< (unspecified)                                                        */
901 #define SPIM131_EASYDMA_MAXCNT_MIN 0                 /*!< (unspecified)                                                        */
902 #define SPIM131_EASYDMA_MAXCNT_MAX 14                /*!< (unspecified)                                                        */
903 #define SPIM131_EASYDMA_MAXCNT_SIZE 15               /*!< (unspecified)                                                        */
904 #define SPIM131_FEATURE_HARDWARE_CSN_PRESENT 1       /*!< (unspecified)                                                        */
905 #define SPIM131_FEATURE_HARDWARE_DCX_PRESENT 1       /*!< (unspecified)                                                        */
906 #define SPIM131_FEATURE_RXDELAY_PRESENT 1            /*!< (unspecified)                                                        */
907 #define SPIM131_STALL_STATUS_PRESENT 0               /*!< (unspecified)                                                        */
908 #define SPIM131_STALL_STATUS_TX_PRESENT 0            /*!< (unspecified)                                                        */
909 #define SPIM131_NUM_CHIPSELECT_MIN 0                 /*!< (unspecified)                                                        */
910 #define SPIM131_NUM_CHIPSELECT_MAX 0                 /*!< (unspecified)                                                        */
911 #define SPIM131_NUM_CHIPSELECT_SIZE 1                /*!< (unspecified)                                                        */
912 #define SPIM131_CORE_FREQUENCY 16                    /*!< Peripheral core frequency is 16 MHz.                                 */
913 #define SPIM131_PRESCALER_PRESENT 1                  /*!< (unspecified)                                                        */
914 #define SPIM131_PRESCALER_DIVISOR_RANGE_MIN 2        /*!< (unspecified)                                                        */
915 #define SPIM131_PRESCALER_DIVISOR_RANGE_MAX 126      /*!< (unspecified)                                                        */
916 #define SPIM131_PRESCALER_DIVISOR_RANGE_SIZE 127     /*!< (unspecified)                                                        */
917 #define SPIM131_RXDELAY_VALUE_RANGE_MIN 0            /*!< (unspecified)                                                        */
918 #define SPIM131_RXDELAY_VALUE_RANGE_MAX 7            /*!< (unspecified)                                                        */
919 #define SPIM131_RXDELAY_VALUE_RANGE_SIZE 8           /*!< (unspecified)                                                        */
920 #define SPIM131_RXDELAY_RESET_VALUE 2                /*!< (unspecified)                                                        */
921 #define SPIM131_RXDELAY_FIELD_WIDTH_MIN 0            /*!< (unspecified)                                                        */
922 #define SPIM131_RXDELAY_FIELD_WIDTH_MAX 2            /*!< (unspecified)                                                        */
923 #define SPIM131_RXDELAY_FIELD_WIDTH_SIZE 3           /*!< (unspecified)                                                        */
924 
925 #define SPIM132_EASYDMA_CURRENT_AMOUNT_REGISTER_INCLUDED 1 /*!< (unspecified)                                                  */
926 #define SPIM132_MAX_DATARATE 8                       /*!< (unspecified)                                                        */
927 #define SPIM132_EASYDMA_MAXCNT_MIN 0                 /*!< (unspecified)                                                        */
928 #define SPIM132_EASYDMA_MAXCNT_MAX 14                /*!< (unspecified)                                                        */
929 #define SPIM132_EASYDMA_MAXCNT_SIZE 15               /*!< (unspecified)                                                        */
930 #define SPIM132_FEATURE_HARDWARE_CSN_PRESENT 1       /*!< (unspecified)                                                        */
931 #define SPIM132_FEATURE_HARDWARE_DCX_PRESENT 1       /*!< (unspecified)                                                        */
932 #define SPIM132_FEATURE_RXDELAY_PRESENT 1            /*!< (unspecified)                                                        */
933 #define SPIM132_STALL_STATUS_PRESENT 0               /*!< (unspecified)                                                        */
934 #define SPIM132_STALL_STATUS_TX_PRESENT 0            /*!< (unspecified)                                                        */
935 #define SPIM132_NUM_CHIPSELECT_MIN 0                 /*!< (unspecified)                                                        */
936 #define SPIM132_NUM_CHIPSELECT_MAX 0                 /*!< (unspecified)                                                        */
937 #define SPIM132_NUM_CHIPSELECT_SIZE 1                /*!< (unspecified)                                                        */
938 #define SPIM132_CORE_FREQUENCY 16                    /*!< Peripheral core frequency is 16 MHz.                                 */
939 #define SPIM132_PRESCALER_PRESENT 1                  /*!< (unspecified)                                                        */
940 #define SPIM132_PRESCALER_DIVISOR_RANGE_MIN 2        /*!< (unspecified)                                                        */
941 #define SPIM132_PRESCALER_DIVISOR_RANGE_MAX 126      /*!< (unspecified)                                                        */
942 #define SPIM132_PRESCALER_DIVISOR_RANGE_SIZE 127     /*!< (unspecified)                                                        */
943 #define SPIM132_RXDELAY_VALUE_RANGE_MIN 0            /*!< (unspecified)                                                        */
944 #define SPIM132_RXDELAY_VALUE_RANGE_MAX 7            /*!< (unspecified)                                                        */
945 #define SPIM132_RXDELAY_VALUE_RANGE_SIZE 8           /*!< (unspecified)                                                        */
946 #define SPIM132_RXDELAY_RESET_VALUE 2                /*!< (unspecified)                                                        */
947 #define SPIM132_RXDELAY_FIELD_WIDTH_MIN 0            /*!< (unspecified)                                                        */
948 #define SPIM132_RXDELAY_FIELD_WIDTH_MAX 2            /*!< (unspecified)                                                        */
949 #define SPIM132_RXDELAY_FIELD_WIDTH_SIZE 3           /*!< (unspecified)                                                        */
950 
951 #define SPIM133_EASYDMA_CURRENT_AMOUNT_REGISTER_INCLUDED 1 /*!< (unspecified)                                                  */
952 #define SPIM133_MAX_DATARATE 8                       /*!< (unspecified)                                                        */
953 #define SPIM133_EASYDMA_MAXCNT_MIN 0                 /*!< (unspecified)                                                        */
954 #define SPIM133_EASYDMA_MAXCNT_MAX 14                /*!< (unspecified)                                                        */
955 #define SPIM133_EASYDMA_MAXCNT_SIZE 15               /*!< (unspecified)                                                        */
956 #define SPIM133_FEATURE_HARDWARE_CSN_PRESENT 1       /*!< (unspecified)                                                        */
957 #define SPIM133_FEATURE_HARDWARE_DCX_PRESENT 1       /*!< (unspecified)                                                        */
958 #define SPIM133_FEATURE_RXDELAY_PRESENT 1            /*!< (unspecified)                                                        */
959 #define SPIM133_STALL_STATUS_PRESENT 0               /*!< (unspecified)                                                        */
960 #define SPIM133_STALL_STATUS_TX_PRESENT 0            /*!< (unspecified)                                                        */
961 #define SPIM133_NUM_CHIPSELECT_MIN 0                 /*!< (unspecified)                                                        */
962 #define SPIM133_NUM_CHIPSELECT_MAX 0                 /*!< (unspecified)                                                        */
963 #define SPIM133_NUM_CHIPSELECT_SIZE 1                /*!< (unspecified)                                                        */
964 #define SPIM133_CORE_FREQUENCY 16                    /*!< Peripheral core frequency is 16 MHz.                                 */
965 #define SPIM133_PRESCALER_PRESENT 1                  /*!< (unspecified)                                                        */
966 #define SPIM133_PRESCALER_DIVISOR_RANGE_MIN 2        /*!< (unspecified)                                                        */
967 #define SPIM133_PRESCALER_DIVISOR_RANGE_MAX 126      /*!< (unspecified)                                                        */
968 #define SPIM133_PRESCALER_DIVISOR_RANGE_SIZE 127     /*!< (unspecified)                                                        */
969 #define SPIM133_RXDELAY_VALUE_RANGE_MIN 0            /*!< (unspecified)                                                        */
970 #define SPIM133_RXDELAY_VALUE_RANGE_MAX 7            /*!< (unspecified)                                                        */
971 #define SPIM133_RXDELAY_VALUE_RANGE_SIZE 8           /*!< (unspecified)                                                        */
972 #define SPIM133_RXDELAY_RESET_VALUE 2                /*!< (unspecified)                                                        */
973 #define SPIM133_RXDELAY_FIELD_WIDTH_MIN 0            /*!< (unspecified)                                                        */
974 #define SPIM133_RXDELAY_FIELD_WIDTH_MAX 2            /*!< (unspecified)                                                        */
975 #define SPIM133_RXDELAY_FIELD_WIDTH_SIZE 3           /*!< (unspecified)                                                        */
976 
977 #define SPIM134_EASYDMA_CURRENT_AMOUNT_REGISTER_INCLUDED 1 /*!< (unspecified)                                                  */
978 #define SPIM134_MAX_DATARATE 8                       /*!< (unspecified)                                                        */
979 #define SPIM134_EASYDMA_MAXCNT_MIN 0                 /*!< (unspecified)                                                        */
980 #define SPIM134_EASYDMA_MAXCNT_MAX 14                /*!< (unspecified)                                                        */
981 #define SPIM134_EASYDMA_MAXCNT_SIZE 15               /*!< (unspecified)                                                        */
982 #define SPIM134_FEATURE_HARDWARE_CSN_PRESENT 1       /*!< (unspecified)                                                        */
983 #define SPIM134_FEATURE_HARDWARE_DCX_PRESENT 1       /*!< (unspecified)                                                        */
984 #define SPIM134_FEATURE_RXDELAY_PRESENT 1            /*!< (unspecified)                                                        */
985 #define SPIM134_STALL_STATUS_PRESENT 0               /*!< (unspecified)                                                        */
986 #define SPIM134_STALL_STATUS_TX_PRESENT 0            /*!< (unspecified)                                                        */
987 #define SPIM134_NUM_CHIPSELECT_MIN 0                 /*!< (unspecified)                                                        */
988 #define SPIM134_NUM_CHIPSELECT_MAX 0                 /*!< (unspecified)                                                        */
989 #define SPIM134_NUM_CHIPSELECT_SIZE 1                /*!< (unspecified)                                                        */
990 #define SPIM134_CORE_FREQUENCY 16                    /*!< Peripheral core frequency is 16 MHz.                                 */
991 #define SPIM134_PRESCALER_PRESENT 1                  /*!< (unspecified)                                                        */
992 #define SPIM134_PRESCALER_DIVISOR_RANGE_MIN 2        /*!< (unspecified)                                                        */
993 #define SPIM134_PRESCALER_DIVISOR_RANGE_MAX 126      /*!< (unspecified)                                                        */
994 #define SPIM134_PRESCALER_DIVISOR_RANGE_SIZE 127     /*!< (unspecified)                                                        */
995 #define SPIM134_RXDELAY_VALUE_RANGE_MIN 0            /*!< (unspecified)                                                        */
996 #define SPIM134_RXDELAY_VALUE_RANGE_MAX 7            /*!< (unspecified)                                                        */
997 #define SPIM134_RXDELAY_VALUE_RANGE_SIZE 8           /*!< (unspecified)                                                        */
998 #define SPIM134_RXDELAY_RESET_VALUE 2                /*!< (unspecified)                                                        */
999 #define SPIM134_RXDELAY_FIELD_WIDTH_MIN 0            /*!< (unspecified)                                                        */
1000 #define SPIM134_RXDELAY_FIELD_WIDTH_MAX 2            /*!< (unspecified)                                                        */
1001 #define SPIM134_RXDELAY_FIELD_WIDTH_SIZE 3           /*!< (unspecified)                                                        */
1002 
1003 #define SPIM135_EASYDMA_CURRENT_AMOUNT_REGISTER_INCLUDED 1 /*!< (unspecified)                                                  */
1004 #define SPIM135_MAX_DATARATE 8                       /*!< (unspecified)                                                        */
1005 #define SPIM135_EASYDMA_MAXCNT_MIN 0                 /*!< (unspecified)                                                        */
1006 #define SPIM135_EASYDMA_MAXCNT_MAX 14                /*!< (unspecified)                                                        */
1007 #define SPIM135_EASYDMA_MAXCNT_SIZE 15               /*!< (unspecified)                                                        */
1008 #define SPIM135_FEATURE_HARDWARE_CSN_PRESENT 1       /*!< (unspecified)                                                        */
1009 #define SPIM135_FEATURE_HARDWARE_DCX_PRESENT 1       /*!< (unspecified)                                                        */
1010 #define SPIM135_FEATURE_RXDELAY_PRESENT 1            /*!< (unspecified)                                                        */
1011 #define SPIM135_STALL_STATUS_PRESENT 0               /*!< (unspecified)                                                        */
1012 #define SPIM135_STALL_STATUS_TX_PRESENT 0            /*!< (unspecified)                                                        */
1013 #define SPIM135_NUM_CHIPSELECT_MIN 0                 /*!< (unspecified)                                                        */
1014 #define SPIM135_NUM_CHIPSELECT_MAX 0                 /*!< (unspecified)                                                        */
1015 #define SPIM135_NUM_CHIPSELECT_SIZE 1                /*!< (unspecified)                                                        */
1016 #define SPIM135_CORE_FREQUENCY 16                    /*!< Peripheral core frequency is 16 MHz.                                 */
1017 #define SPIM135_PRESCALER_PRESENT 1                  /*!< (unspecified)                                                        */
1018 #define SPIM135_PRESCALER_DIVISOR_RANGE_MIN 2        /*!< (unspecified)                                                        */
1019 #define SPIM135_PRESCALER_DIVISOR_RANGE_MAX 126      /*!< (unspecified)                                                        */
1020 #define SPIM135_PRESCALER_DIVISOR_RANGE_SIZE 127     /*!< (unspecified)                                                        */
1021 #define SPIM135_RXDELAY_VALUE_RANGE_MIN 0            /*!< (unspecified)                                                        */
1022 #define SPIM135_RXDELAY_VALUE_RANGE_MAX 7            /*!< (unspecified)                                                        */
1023 #define SPIM135_RXDELAY_VALUE_RANGE_SIZE 8           /*!< (unspecified)                                                        */
1024 #define SPIM135_RXDELAY_RESET_VALUE 2                /*!< (unspecified)                                                        */
1025 #define SPIM135_RXDELAY_FIELD_WIDTH_MIN 0            /*!< (unspecified)                                                        */
1026 #define SPIM135_RXDELAY_FIELD_WIDTH_MAX 2            /*!< (unspecified)                                                        */
1027 #define SPIM135_RXDELAY_FIELD_WIDTH_SIZE 3           /*!< (unspecified)                                                        */
1028 
1029 #define SPIM136_EASYDMA_CURRENT_AMOUNT_REGISTER_INCLUDED 1 /*!< (unspecified)                                                  */
1030 #define SPIM136_MAX_DATARATE 8                       /*!< (unspecified)                                                        */
1031 #define SPIM136_EASYDMA_MAXCNT_MIN 0                 /*!< (unspecified)                                                        */
1032 #define SPIM136_EASYDMA_MAXCNT_MAX 14                /*!< (unspecified)                                                        */
1033 #define SPIM136_EASYDMA_MAXCNT_SIZE 15               /*!< (unspecified)                                                        */
1034 #define SPIM136_FEATURE_HARDWARE_CSN_PRESENT 1       /*!< (unspecified)                                                        */
1035 #define SPIM136_FEATURE_HARDWARE_DCX_PRESENT 1       /*!< (unspecified)                                                        */
1036 #define SPIM136_FEATURE_RXDELAY_PRESENT 1            /*!< (unspecified)                                                        */
1037 #define SPIM136_STALL_STATUS_PRESENT 0               /*!< (unspecified)                                                        */
1038 #define SPIM136_STALL_STATUS_TX_PRESENT 0            /*!< (unspecified)                                                        */
1039 #define SPIM136_NUM_CHIPSELECT_MIN 0                 /*!< (unspecified)                                                        */
1040 #define SPIM136_NUM_CHIPSELECT_MAX 0                 /*!< (unspecified)                                                        */
1041 #define SPIM136_NUM_CHIPSELECT_SIZE 1                /*!< (unspecified)                                                        */
1042 #define SPIM136_CORE_FREQUENCY 16                    /*!< Peripheral core frequency is 16 MHz.                                 */
1043 #define SPIM136_PRESCALER_PRESENT 1                  /*!< (unspecified)                                                        */
1044 #define SPIM136_PRESCALER_DIVISOR_RANGE_MIN 2        /*!< (unspecified)                                                        */
1045 #define SPIM136_PRESCALER_DIVISOR_RANGE_MAX 126      /*!< (unspecified)                                                        */
1046 #define SPIM136_PRESCALER_DIVISOR_RANGE_SIZE 127     /*!< (unspecified)                                                        */
1047 #define SPIM136_RXDELAY_VALUE_RANGE_MIN 0            /*!< (unspecified)                                                        */
1048 #define SPIM136_RXDELAY_VALUE_RANGE_MAX 7            /*!< (unspecified)                                                        */
1049 #define SPIM136_RXDELAY_VALUE_RANGE_SIZE 8           /*!< (unspecified)                                                        */
1050 #define SPIM136_RXDELAY_RESET_VALUE 2                /*!< (unspecified)                                                        */
1051 #define SPIM136_RXDELAY_FIELD_WIDTH_MIN 0            /*!< (unspecified)                                                        */
1052 #define SPIM136_RXDELAY_FIELD_WIDTH_MAX 2            /*!< (unspecified)                                                        */
1053 #define SPIM136_RXDELAY_FIELD_WIDTH_SIZE 3           /*!< (unspecified)                                                        */
1054 
1055 #define SPIM137_EASYDMA_CURRENT_AMOUNT_REGISTER_INCLUDED 1 /*!< (unspecified)                                                  */
1056 #define SPIM137_MAX_DATARATE 8                       /*!< (unspecified)                                                        */
1057 #define SPIM137_EASYDMA_MAXCNT_MIN 0                 /*!< (unspecified)                                                        */
1058 #define SPIM137_EASYDMA_MAXCNT_MAX 14                /*!< (unspecified)                                                        */
1059 #define SPIM137_EASYDMA_MAXCNT_SIZE 15               /*!< (unspecified)                                                        */
1060 #define SPIM137_FEATURE_HARDWARE_CSN_PRESENT 1       /*!< (unspecified)                                                        */
1061 #define SPIM137_FEATURE_HARDWARE_DCX_PRESENT 1       /*!< (unspecified)                                                        */
1062 #define SPIM137_FEATURE_RXDELAY_PRESENT 1            /*!< (unspecified)                                                        */
1063 #define SPIM137_STALL_STATUS_PRESENT 0               /*!< (unspecified)                                                        */
1064 #define SPIM137_STALL_STATUS_TX_PRESENT 0            /*!< (unspecified)                                                        */
1065 #define SPIM137_NUM_CHIPSELECT_MIN 0                 /*!< (unspecified)                                                        */
1066 #define SPIM137_NUM_CHIPSELECT_MAX 0                 /*!< (unspecified)                                                        */
1067 #define SPIM137_NUM_CHIPSELECT_SIZE 1                /*!< (unspecified)                                                        */
1068 #define SPIM137_CORE_FREQUENCY 16                    /*!< Peripheral core frequency is 16 MHz.                                 */
1069 #define SPIM137_PRESCALER_PRESENT 1                  /*!< (unspecified)                                                        */
1070 #define SPIM137_PRESCALER_DIVISOR_RANGE_MIN 2        /*!< (unspecified)                                                        */
1071 #define SPIM137_PRESCALER_DIVISOR_RANGE_MAX 126      /*!< (unspecified)                                                        */
1072 #define SPIM137_PRESCALER_DIVISOR_RANGE_SIZE 127     /*!< (unspecified)                                                        */
1073 #define SPIM137_RXDELAY_VALUE_RANGE_MIN 0            /*!< (unspecified)                                                        */
1074 #define SPIM137_RXDELAY_VALUE_RANGE_MAX 7            /*!< (unspecified)                                                        */
1075 #define SPIM137_RXDELAY_VALUE_RANGE_SIZE 8           /*!< (unspecified)                                                        */
1076 #define SPIM137_RXDELAY_RESET_VALUE 2                /*!< (unspecified)                                                        */
1077 #define SPIM137_RXDELAY_FIELD_WIDTH_MIN 0            /*!< (unspecified)                                                        */
1078 #define SPIM137_RXDELAY_FIELD_WIDTH_MAX 2            /*!< (unspecified)                                                        */
1079 #define SPIM137_RXDELAY_FIELD_WIDTH_SIZE 3           /*!< (unspecified)                                                        */
1080 
1081 /*UART with EasyDMA*/
1082 #define UARTE_PRESENT 1
1083 #define UARTE_COUNT 9
1084 
1085 #define UARTE120_EASYDMA_MAXCNT_MIN 0                /*!< (unspecified)                                                        */
1086 #define UARTE120_EASYDMA_MAXCNT_MAX 14               /*!< (unspecified)                                                        */
1087 #define UARTE120_EASYDMA_MAXCNT_SIZE 15              /*!< (unspecified)                                                        */
1088 #define UARTE120_TIMEOUT_INTERRUPT 1                 /*!< (unspecified)                                                        */
1089 #define UARTE120_CONFIGURABLE_DATA_FRAME_SIZE 1      /*!< (unspecified)                                                        */
1090 #define UARTE120_CORE_FREQUENCY 320                  /*!< Peripheral clock frequency is 320 MHz.                               */
1091 #define UARTE120_CORE_CLOCK_320 1                    /*!< (unspecified)                                                        */
1092 #define UARTE120_SHORTS_ENDTX_STOPTX 1               /*!< (unspecified)                                                        */
1093 #define UARTE120_EASYDMA_CURRENT_AMOUNT_REGISTER_INCLUDED 1 /*!< (unspecified)                                                 */
1094 
1095 #define UARTE130_EASYDMA_MAXCNT_MIN 0                /*!< (unspecified)                                                        */
1096 #define UARTE130_EASYDMA_MAXCNT_MAX 14               /*!< (unspecified)                                                        */
1097 #define UARTE130_EASYDMA_MAXCNT_SIZE 15              /*!< (unspecified)                                                        */
1098 #define UARTE130_TIMEOUT_INTERRUPT 1                 /*!< (unspecified)                                                        */
1099 #define UARTE130_CONFIGURABLE_DATA_FRAME_SIZE 1      /*!< (unspecified)                                                        */
1100 #define UARTE130_CORE_FREQUENCY 16                   /*!< Peripheral clock frequency is 16 MHz.                                */
1101 #define UARTE130_CORE_CLOCK_16 1                     /*!< (unspecified)                                                        */
1102 #define UARTE130_SHORTS_ENDTX_STOPTX 1               /*!< (unspecified)                                                        */
1103 #define UARTE130_EASYDMA_CURRENT_AMOUNT_REGISTER_INCLUDED 1 /*!< (unspecified)                                                 */
1104 
1105 #define UARTE131_EASYDMA_MAXCNT_MIN 0                /*!< (unspecified)                                                        */
1106 #define UARTE131_EASYDMA_MAXCNT_MAX 14               /*!< (unspecified)                                                        */
1107 #define UARTE131_EASYDMA_MAXCNT_SIZE 15              /*!< (unspecified)                                                        */
1108 #define UARTE131_TIMEOUT_INTERRUPT 1                 /*!< (unspecified)                                                        */
1109 #define UARTE131_CONFIGURABLE_DATA_FRAME_SIZE 1      /*!< (unspecified)                                                        */
1110 #define UARTE131_CORE_FREQUENCY 16                   /*!< Peripheral clock frequency is 16 MHz.                                */
1111 #define UARTE131_CORE_CLOCK_16 1                     /*!< (unspecified)                                                        */
1112 #define UARTE131_SHORTS_ENDTX_STOPTX 1               /*!< (unspecified)                                                        */
1113 #define UARTE131_EASYDMA_CURRENT_AMOUNT_REGISTER_INCLUDED 1 /*!< (unspecified)                                                 */
1114 
1115 #define UARTE132_EASYDMA_MAXCNT_MIN 0                /*!< (unspecified)                                                        */
1116 #define UARTE132_EASYDMA_MAXCNT_MAX 14               /*!< (unspecified)                                                        */
1117 #define UARTE132_EASYDMA_MAXCNT_SIZE 15              /*!< (unspecified)                                                        */
1118 #define UARTE132_TIMEOUT_INTERRUPT 1                 /*!< (unspecified)                                                        */
1119 #define UARTE132_CONFIGURABLE_DATA_FRAME_SIZE 1      /*!< (unspecified)                                                        */
1120 #define UARTE132_CORE_FREQUENCY 16                   /*!< Peripheral clock frequency is 16 MHz.                                */
1121 #define UARTE132_CORE_CLOCK_16 1                     /*!< (unspecified)                                                        */
1122 #define UARTE132_SHORTS_ENDTX_STOPTX 1               /*!< (unspecified)                                                        */
1123 #define UARTE132_EASYDMA_CURRENT_AMOUNT_REGISTER_INCLUDED 1 /*!< (unspecified)                                                 */
1124 
1125 #define UARTE133_EASYDMA_MAXCNT_MIN 0                /*!< (unspecified)                                                        */
1126 #define UARTE133_EASYDMA_MAXCNT_MAX 14               /*!< (unspecified)                                                        */
1127 #define UARTE133_EASYDMA_MAXCNT_SIZE 15              /*!< (unspecified)                                                        */
1128 #define UARTE133_TIMEOUT_INTERRUPT 1                 /*!< (unspecified)                                                        */
1129 #define UARTE133_CONFIGURABLE_DATA_FRAME_SIZE 1      /*!< (unspecified)                                                        */
1130 #define UARTE133_CORE_FREQUENCY 16                   /*!< Peripheral clock frequency is 16 MHz.                                */
1131 #define UARTE133_CORE_CLOCK_16 1                     /*!< (unspecified)                                                        */
1132 #define UARTE133_SHORTS_ENDTX_STOPTX 1               /*!< (unspecified)                                                        */
1133 #define UARTE133_EASYDMA_CURRENT_AMOUNT_REGISTER_INCLUDED 1 /*!< (unspecified)                                                 */
1134 
1135 #define UARTE134_EASYDMA_MAXCNT_MIN 0                /*!< (unspecified)                                                        */
1136 #define UARTE134_EASYDMA_MAXCNT_MAX 14               /*!< (unspecified)                                                        */
1137 #define UARTE134_EASYDMA_MAXCNT_SIZE 15              /*!< (unspecified)                                                        */
1138 #define UARTE134_TIMEOUT_INTERRUPT 1                 /*!< (unspecified)                                                        */
1139 #define UARTE134_CONFIGURABLE_DATA_FRAME_SIZE 1      /*!< (unspecified)                                                        */
1140 #define UARTE134_CORE_FREQUENCY 16                   /*!< Peripheral clock frequency is 16 MHz.                                */
1141 #define UARTE134_CORE_CLOCK_16 1                     /*!< (unspecified)                                                        */
1142 #define UARTE134_SHORTS_ENDTX_STOPTX 1               /*!< (unspecified)                                                        */
1143 #define UARTE134_EASYDMA_CURRENT_AMOUNT_REGISTER_INCLUDED 1 /*!< (unspecified)                                                 */
1144 
1145 #define UARTE135_EASYDMA_MAXCNT_MIN 0                /*!< (unspecified)                                                        */
1146 #define UARTE135_EASYDMA_MAXCNT_MAX 14               /*!< (unspecified)                                                        */
1147 #define UARTE135_EASYDMA_MAXCNT_SIZE 15              /*!< (unspecified)                                                        */
1148 #define UARTE135_TIMEOUT_INTERRUPT 1                 /*!< (unspecified)                                                        */
1149 #define UARTE135_CONFIGURABLE_DATA_FRAME_SIZE 1      /*!< (unspecified)                                                        */
1150 #define UARTE135_CORE_FREQUENCY 16                   /*!< Peripheral clock frequency is 16 MHz.                                */
1151 #define UARTE135_CORE_CLOCK_16 1                     /*!< (unspecified)                                                        */
1152 #define UARTE135_SHORTS_ENDTX_STOPTX 1               /*!< (unspecified)                                                        */
1153 #define UARTE135_EASYDMA_CURRENT_AMOUNT_REGISTER_INCLUDED 1 /*!< (unspecified)                                                 */
1154 
1155 #define UARTE136_EASYDMA_MAXCNT_MIN 0                /*!< (unspecified)                                                        */
1156 #define UARTE136_EASYDMA_MAXCNT_MAX 14               /*!< (unspecified)                                                        */
1157 #define UARTE136_EASYDMA_MAXCNT_SIZE 15              /*!< (unspecified)                                                        */
1158 #define UARTE136_TIMEOUT_INTERRUPT 1                 /*!< (unspecified)                                                        */
1159 #define UARTE136_CONFIGURABLE_DATA_FRAME_SIZE 1      /*!< (unspecified)                                                        */
1160 #define UARTE136_CORE_FREQUENCY 16                   /*!< Peripheral clock frequency is 16 MHz.                                */
1161 #define UARTE136_CORE_CLOCK_16 1                     /*!< (unspecified)                                                        */
1162 #define UARTE136_SHORTS_ENDTX_STOPTX 1               /*!< (unspecified)                                                        */
1163 #define UARTE136_EASYDMA_CURRENT_AMOUNT_REGISTER_INCLUDED 1 /*!< (unspecified)                                                 */
1164 
1165 #define UARTE137_EASYDMA_MAXCNT_MIN 0                /*!< (unspecified)                                                        */
1166 #define UARTE137_EASYDMA_MAXCNT_MAX 14               /*!< (unspecified)                                                        */
1167 #define UARTE137_EASYDMA_MAXCNT_SIZE 15              /*!< (unspecified)                                                        */
1168 #define UARTE137_TIMEOUT_INTERRUPT 1                 /*!< (unspecified)                                                        */
1169 #define UARTE137_CONFIGURABLE_DATA_FRAME_SIZE 1      /*!< (unspecified)                                                        */
1170 #define UARTE137_CORE_FREQUENCY 16                   /*!< Peripheral clock frequency is 16 MHz.                                */
1171 #define UARTE137_CORE_CLOCK_16 1                     /*!< (unspecified)                                                        */
1172 #define UARTE137_SHORTS_ENDTX_STOPTX 1               /*!< (unspecified)                                                        */
1173 #define UARTE137_EASYDMA_CURRENT_AMOUNT_REGISTER_INCLUDED 1 /*!< (unspecified)                                                 */
1174 
1175 /*Real-time counter*/
1176 #define RTC_PRESENT 1
1177 #define RTC_COUNT 2
1178 
1179 #define RTC130_CC_NUM_MIN 0                          /*!< (unspecified)                                                        */
1180 #define RTC130_CC_NUM_MAX 3                          /*!< (unspecified)                                                        */
1181 #define RTC130_CC_NUM_SIZE 4                         /*!< (unspecified)                                                        */
1182 #define RTC130_BIT_WIDTH_MIN 0                       /*!< (unspecified)                                                        */
1183 #define RTC130_BIT_WIDTH_MAX 23                      /*!< (unspecified)                                                        */
1184 #define RTC130_BIT_WIDTH_SIZE 24                     /*!< (unspecified)                                                        */
1185 #define RTC130_LFCLK_ENABLE 0                        /*!< (unspecified)                                                        */
1186 
1187 #define RTC131_CC_NUM_MIN 0                          /*!< (unspecified)                                                        */
1188 #define RTC131_CC_NUM_MAX 3                          /*!< (unspecified)                                                        */
1189 #define RTC131_CC_NUM_SIZE 4                         /*!< (unspecified)                                                        */
1190 #define RTC131_BIT_WIDTH_MIN 0                       /*!< (unspecified)                                                        */
1191 #define RTC131_BIT_WIDTH_MAX 23                      /*!< (unspecified)                                                        */
1192 #define RTC131_BIT_WIDTH_SIZE 24                     /*!< (unspecified)                                                        */
1193 #define RTC131_LFCLK_ENABLE 0                        /*!< (unspecified)                                                        */
1194 
1195 /*Event generator unit*/
1196 #define EGU_PRESENT 1
1197 #define EGU_COUNT 1
1198 
1199 #define EGU130_PEND 0                                /*!< (unspecified)                                                        */
1200 #define EGU130_CH_NUM_MIN 0                          /*!< (unspecified)                                                        */
1201 #define EGU130_CH_NUM_MAX 7                          /*!< (unspecified)                                                        */
1202 #define EGU130_CH_NUM_SIZE 8                         /*!< (unspecified)                                                        */
1203 
1204 /*GPIO Port*/
1205 #define GPIO_PRESENT 1
1206 #define GPIO_COUNT 10
1207 
1208 #define P0_CTRLSEL_MAP1 1                            /*!< (unspecified)                                                        */
1209 #define P0_CTRLSEL_MAP2 0                            /*!< (unspecified)                                                        */
1210 #define P0_CTRLSEL_MAP3 0                            /*!< (unspecified)                                                        */
1211 #define P0_PIN_NUM_MIN 0                             /*!< (unspecified)                                                        */
1212 #define P0_PIN_NUM_MAX 12                            /*!< (unspecified)                                                        */
1213 #define P0_PIN_NUM_SIZE 13                           /*!< (unspecified)                                                        */
1214 #define P0_FEATURE_PINS_PRESENT 0x00001FFFUL         /*!< (unspecified)                                                        */
1215 #define P0_DRIVECTRL 0                               /*!< (unspecified)                                                        */
1216 #define P0_RETAIN 1                                  /*!< (unspecified)                                                        */
1217 #define P0_PWRCTRL 0                                 /*!< (unspecified)                                                        */
1218 #define P0_PIN_OWNER_SEC 0                           /*!< (unspecified)                                                        */
1219 #define P0_BIASCTRL 0                                /*!< (unspecified)                                                        */
1220 
1221 #define P1_CTRLSEL_MAP1 1                            /*!< (unspecified)                                                        */
1222 #define P1_CTRLSEL_MAP2 0                            /*!< (unspecified)                                                        */
1223 #define P1_CTRLSEL_MAP3 0                            /*!< (unspecified)                                                        */
1224 #define P1_PIN_NUM_MIN 0                             /*!< (unspecified)                                                        */
1225 #define P1_PIN_NUM_MAX 11                            /*!< (unspecified)                                                        */
1226 #define P1_PIN_NUM_SIZE 12                           /*!< (unspecified)                                                        */
1227 #define P1_FEATURE_PINS_PRESENT 0x00000FFFUL         /*!< (unspecified)                                                        */
1228 #define P1_DRIVECTRL 0                               /*!< (unspecified)                                                        */
1229 #define P1_RETAIN 1                                  /*!< (unspecified)                                                        */
1230 #define P1_PWRCTRL 0                                 /*!< (unspecified)                                                        */
1231 #define P1_PIN_OWNER_SEC 0                           /*!< (unspecified)                                                        */
1232 #define P1_BIASCTRL 0                                /*!< (unspecified)                                                        */
1233 
1234 #define P2_CTRLSEL_MAP1 1                            /*!< (unspecified)                                                        */
1235 #define P2_CTRLSEL_MAP2 0                            /*!< (unspecified)                                                        */
1236 #define P2_CTRLSEL_MAP3 0                            /*!< (unspecified)                                                        */
1237 #define P2_PIN_NUM_MIN 0                             /*!< (unspecified)                                                        */
1238 #define P2_PIN_NUM_MAX 11                            /*!< (unspecified)                                                        */
1239 #define P2_PIN_NUM_SIZE 12                           /*!< (unspecified)                                                        */
1240 #define P2_FEATURE_PINS_PRESENT 0x00000FFFUL         /*!< (unspecified)                                                        */
1241 #define P2_DRIVECTRL 0                               /*!< (unspecified)                                                        */
1242 #define P2_RETAIN 1                                  /*!< (unspecified)                                                        */
1243 #define P2_PWRCTRL 0                                 /*!< (unspecified)                                                        */
1244 #define P2_PIN_OWNER_SEC 0                           /*!< (unspecified)                                                        */
1245 #define P2_BIASCTRL 0                                /*!< (unspecified)                                                        */
1246 
1247 #define P6_CTRLSEL_MAP1 1                            /*!< (unspecified)                                                        */
1248 #define P6_CTRLSEL_MAP2 0                            /*!< (unspecified)                                                        */
1249 #define P6_CTRLSEL_MAP3 0                            /*!< (unspecified)                                                        */
1250 #define P6_PIN_NUM_MIN 0                             /*!< (unspecified)                                                        */
1251 #define P6_PIN_NUM_MAX 13                            /*!< (unspecified)                                                        */
1252 #define P6_PIN_NUM_SIZE 14                           /*!< (unspecified)                                                        */
1253 #define P6_FEATURE_PINS_PRESENT 0x00003FFFUL         /*!< (unspecified)                                                        */
1254 #define P6_DRIVECTRL 1                               /*!< (unspecified)                                                        */
1255 #define P6_RETAIN 1                                  /*!< (unspecified)                                                        */
1256 #define P6_PWRCTRL 0                                 /*!< (unspecified)                                                        */
1257 #define P6_PIN_OWNER_SEC 0                           /*!< (unspecified)                                                        */
1258 #define P6_BIASCTRL 0                                /*!< (unspecified)                                                        */
1259 
1260 #define P8_CTRLSEL_MAP1 1                            /*!< (unspecified)                                                        */
1261 #define P8_CTRLSEL_MAP2 0                            /*!< (unspecified)                                                        */
1262 #define P8_CTRLSEL_MAP3 0                            /*!< (unspecified)                                                        */
1263 #define P8_PIN_NUM_MIN 0                             /*!< (unspecified)                                                        */
1264 #define P8_PIN_NUM_MAX 4                             /*!< (unspecified)                                                        */
1265 #define P8_PIN_NUM_SIZE 5                            /*!< (unspecified)                                                        */
1266 #define P8_FEATURE_PINS_PRESENT 0x0000001FUL         /*!< (unspecified)                                                        */
1267 #define P8_DRIVECTRL 1                               /*!< (unspecified)                                                        */
1268 #define P8_RETAIN 1                                  /*!< (unspecified)                                                        */
1269 #define P8_PWRCTRL 0                                 /*!< (unspecified)                                                        */
1270 #define P8_PIN_OWNER_SEC 0                           /*!< (unspecified)                                                        */
1271 #define P8_BIASCTRL 0                                /*!< (unspecified)                                                        */
1272 
1273 #define P9_CTRLSEL_MAP1 1                            /*!< (unspecified)                                                        */
1274 #define P9_CTRLSEL_MAP2 0                            /*!< (unspecified)                                                        */
1275 #define P9_CTRLSEL_MAP3 0                            /*!< (unspecified)                                                        */
1276 #define P9_PIN_NUM_MIN 0                             /*!< (unspecified)                                                        */
1277 #define P9_PIN_NUM_MAX 5                             /*!< (unspecified)                                                        */
1278 #define P9_PIN_NUM_SIZE 6                            /*!< (unspecified)                                                        */
1279 #define P9_FEATURE_PINS_PRESENT 0x0000003FUL         /*!< (unspecified)                                                        */
1280 #define P9_DRIVECTRL 0                               /*!< (unspecified)                                                        */
1281 #define P9_RETAIN 1                                  /*!< (unspecified)                                                        */
1282 #define P9_PWRCTRL 1                                 /*!< (unspecified)                                                        */
1283 #define P9_PIN_OWNER_SEC 0                           /*!< (unspecified)                                                        */
1284 #define P9_BIASCTRL 0                                /*!< (unspecified)                                                        */
1285 
1286 #define P10_CTRLSEL_MAP1 1                           /*!< (unspecified)                                                        */
1287 #define P10_CTRLSEL_MAP2 0                           /*!< (unspecified)                                                        */
1288 #define P10_CTRLSEL_MAP3 0                           /*!< (unspecified)                                                        */
1289 #define P10_PIN_NUM_MIN 0                            /*!< (unspecified)                                                        */
1290 #define P10_PIN_NUM_MAX 7                            /*!< (unspecified)                                                        */
1291 #define P10_PIN_NUM_SIZE 8                           /*!< (unspecified)                                                        */
1292 #define P10_FEATURE_PINS_PRESENT 0x000000FFUL        /*!< (unspecified)                                                        */
1293 #define P10_DRIVECTRL 0                              /*!< (unspecified)                                                        */
1294 #define P10_RETAIN 1                                 /*!< (unspecified)                                                        */
1295 #define P10_PWRCTRL 0                                /*!< (unspecified)                                                        */
1296 #define P10_PIN_OWNER_SEC 0                          /*!< (unspecified)                                                        */
1297 #define P10_BIASCTRL 0                               /*!< (unspecified)                                                        */
1298 
1299 #define P11_CTRLSEL_MAP1 1                           /*!< (unspecified)                                                        */
1300 #define P11_CTRLSEL_MAP2 0                           /*!< (unspecified)                                                        */
1301 #define P11_CTRLSEL_MAP3 0                           /*!< (unspecified)                                                        */
1302 #define P11_PIN_NUM_MIN 0                            /*!< (unspecified)                                                        */
1303 #define P11_PIN_NUM_MAX 7                            /*!< (unspecified)                                                        */
1304 #define P11_PIN_NUM_SIZE 8                           /*!< (unspecified)                                                        */
1305 #define P11_FEATURE_PINS_PRESENT 0x000000FFUL        /*!< (unspecified)                                                        */
1306 #define P11_DRIVECTRL 0                              /*!< (unspecified)                                                        */
1307 #define P11_RETAIN 1                                 /*!< (unspecified)                                                        */
1308 #define P11_PWRCTRL 0                                /*!< (unspecified)                                                        */
1309 #define P11_PIN_OWNER_SEC 0                          /*!< (unspecified)                                                        */
1310 #define P11_BIASCTRL 0                               /*!< (unspecified)                                                        */
1311 
1312 #define P12_CTRLSEL_MAP1 1                           /*!< (unspecified)                                                        */
1313 #define P12_CTRLSEL_MAP2 0                           /*!< (unspecified)                                                        */
1314 #define P12_CTRLSEL_MAP3 0                           /*!< (unspecified)                                                        */
1315 #define P12_PIN_NUM_MIN 0                            /*!< (unspecified)                                                        */
1316 #define P12_PIN_NUM_MAX 2                            /*!< (unspecified)                                                        */
1317 #define P12_PIN_NUM_SIZE 3                           /*!< (unspecified)                                                        */
1318 #define P12_FEATURE_PINS_PRESENT 0x00000007UL        /*!< (unspecified)                                                        */
1319 #define P12_DRIVECTRL 0                              /*!< (unspecified)                                                        */
1320 #define P12_RETAIN 1                                 /*!< (unspecified)                                                        */
1321 #define P12_PWRCTRL 0                                /*!< (unspecified)                                                        */
1322 #define P12_PIN_OWNER_SEC 0                          /*!< (unspecified)                                                        */
1323 #define P12_BIASCTRL 0                               /*!< (unspecified)                                                        */
1324 
1325 #define P13_CTRLSEL_MAP1 1                           /*!< (unspecified)                                                        */
1326 #define P13_CTRLSEL_MAP2 0                           /*!< (unspecified)                                                        */
1327 #define P13_CTRLSEL_MAP3 0                           /*!< (unspecified)                                                        */
1328 #define P13_PIN_NUM_MIN 0                            /*!< (unspecified)                                                        */
1329 #define P13_PIN_NUM_MAX 3                            /*!< (unspecified)                                                        */
1330 #define P13_PIN_NUM_SIZE 4                           /*!< (unspecified)                                                        */
1331 #define P13_FEATURE_PINS_PRESENT 0x0000000FUL        /*!< (unspecified)                                                        */
1332 #define P13_DRIVECTRL 0                              /*!< (unspecified)                                                        */
1333 #define P13_RETAIN 1                                 /*!< (unspecified)                                                        */
1334 #define P13_PWRCTRL 0                                /*!< (unspecified)                                                        */
1335 #define P13_PIN_OWNER_SEC 0                          /*!< (unspecified)                                                        */
1336 #define P13_BIASCTRL 0                               /*!< (unspecified)                                                        */
1337 
1338 /*Analog to Digital Converter*/
1339 #define SAADC_PRESENT 1
1340 #define SAADC_COUNT 1
1341 
1342 #define SAADC_PSEL_V2 1                              /*!< (unspecified)                                                        */
1343 #define SAADC_TASKS_CALIBRATEGAIN 0                  /*!< (unspecified)                                                        */
1344 #define SAADC_EASYDMA_CURRENT_AMOUNT_REGISTER_INCLUDED 0 /*!< (unspecified)                                                    */
1345 
1346 /*Comparator*/
1347 #define COMP_PRESENT 1
1348 #define COMP_COUNT 1
1349 
1350 /*Low-power comparator*/
1351 #define LPCOMP_PRESENT 1
1352 #define LPCOMP_COUNT 1
1353 
1354 /*Temperature Sensor*/
1355 #define TEMP_PRESENT 1
1356 #define TEMP_COUNT 1
1357 
1358 /*Inter-IC Sound*/
1359 #define I2S_PRESENT 1
1360 #define I2S_COUNT 2
1361 
1362 /*Pulse Density Modulation (Digital Microphone) Interface*/
1363 #define PDM_PRESENT 1
1364 #define PDM_COUNT 1
1365 
1366 #define PDM_SAMPLE16 1                               /*!< (unspecified)                                                        */
1367 #define PDM_SAMPLE48 0                               /*!< (unspecified)                                                        */
1368 #define PDM_EASYDMA_CURRENT_AMOUNT_REGISTER_INCLUDED 1 /*!< (unspecified)                                                      */
1369 
1370 /*Quadrature Decoder*/
1371 #define QDEC_PRESENT 1
1372 #define QDEC_COUNT 2
1373 
1374 /*I2C compatible Two-Wire Master Interface with EasyDMA*/
1375 #define TWIM_PRESENT 1
1376 #define TWIM_COUNT 8
1377 
1378 #define TWIM130_EASYDMA_MAXCNT_MIN 0                 /*!< (unspecified)                                                        */
1379 #define TWIM130_EASYDMA_MAXCNT_MAX 14                /*!< (unspecified)                                                        */
1380 #define TWIM130_EASYDMA_MAXCNT_SIZE 15               /*!< (unspecified)                                                        */
1381 #define TWIM130_EASYDMA_CURRENT_AMOUNT_REGISTER_INCLUDED 1 /*!< (unspecified)                                                  */
1382 
1383 #define TWIM131_EASYDMA_MAXCNT_MIN 0                 /*!< (unspecified)                                                        */
1384 #define TWIM131_EASYDMA_MAXCNT_MAX 14                /*!< (unspecified)                                                        */
1385 #define TWIM131_EASYDMA_MAXCNT_SIZE 15               /*!< (unspecified)                                                        */
1386 #define TWIM131_EASYDMA_CURRENT_AMOUNT_REGISTER_INCLUDED 1 /*!< (unspecified)                                                  */
1387 
1388 #define TWIM132_EASYDMA_MAXCNT_MIN 0                 /*!< (unspecified)                                                        */
1389 #define TWIM132_EASYDMA_MAXCNT_MAX 14                /*!< (unspecified)                                                        */
1390 #define TWIM132_EASYDMA_MAXCNT_SIZE 15               /*!< (unspecified)                                                        */
1391 #define TWIM132_EASYDMA_CURRENT_AMOUNT_REGISTER_INCLUDED 1 /*!< (unspecified)                                                  */
1392 
1393 #define TWIM133_EASYDMA_MAXCNT_MIN 0                 /*!< (unspecified)                                                        */
1394 #define TWIM133_EASYDMA_MAXCNT_MAX 14                /*!< (unspecified)                                                        */
1395 #define TWIM133_EASYDMA_MAXCNT_SIZE 15               /*!< (unspecified)                                                        */
1396 #define TWIM133_EASYDMA_CURRENT_AMOUNT_REGISTER_INCLUDED 1 /*!< (unspecified)                                                  */
1397 
1398 #define TWIM134_EASYDMA_MAXCNT_MIN 0                 /*!< (unspecified)                                                        */
1399 #define TWIM134_EASYDMA_MAXCNT_MAX 14                /*!< (unspecified)                                                        */
1400 #define TWIM134_EASYDMA_MAXCNT_SIZE 15               /*!< (unspecified)                                                        */
1401 #define TWIM134_EASYDMA_CURRENT_AMOUNT_REGISTER_INCLUDED 1 /*!< (unspecified)                                                  */
1402 
1403 #define TWIM135_EASYDMA_MAXCNT_MIN 0                 /*!< (unspecified)                                                        */
1404 #define TWIM135_EASYDMA_MAXCNT_MAX 14                /*!< (unspecified)                                                        */
1405 #define TWIM135_EASYDMA_MAXCNT_SIZE 15               /*!< (unspecified)                                                        */
1406 #define TWIM135_EASYDMA_CURRENT_AMOUNT_REGISTER_INCLUDED 1 /*!< (unspecified)                                                  */
1407 
1408 #define TWIM136_EASYDMA_MAXCNT_MIN 0                 /*!< (unspecified)                                                        */
1409 #define TWIM136_EASYDMA_MAXCNT_MAX 14                /*!< (unspecified)                                                        */
1410 #define TWIM136_EASYDMA_MAXCNT_SIZE 15               /*!< (unspecified)                                                        */
1411 #define TWIM136_EASYDMA_CURRENT_AMOUNT_REGISTER_INCLUDED 1 /*!< (unspecified)                                                  */
1412 
1413 #define TWIM137_EASYDMA_MAXCNT_MIN 0                 /*!< (unspecified)                                                        */
1414 #define TWIM137_EASYDMA_MAXCNT_MAX 14                /*!< (unspecified)                                                        */
1415 #define TWIM137_EASYDMA_MAXCNT_SIZE 15               /*!< (unspecified)                                                        */
1416 #define TWIM137_EASYDMA_CURRENT_AMOUNT_REGISTER_INCLUDED 1 /*!< (unspecified)                                                  */
1417 
1418 /*I2C compatible Two-Wire Slave Interface with EasyDMA*/
1419 #define TWIS_PRESENT 1
1420 #define TWIS_COUNT 8
1421 
1422 #define TWIS130_EASYDMA_MAXCNT_MIN 0                 /*!< (unspecified)                                                        */
1423 #define TWIS130_EASYDMA_MAXCNT_MAX 14                /*!< (unspecified)                                                        */
1424 #define TWIS130_EASYDMA_MAXCNT_SIZE 15               /*!< (unspecified)                                                        */
1425 #define TWIS130_EASYDMA_CURRENT_AMOUNT_REGISTER_INCLUDED 1 /*!< (unspecified)                                                  */
1426 
1427 #define TWIS131_EASYDMA_MAXCNT_MIN 0                 /*!< (unspecified)                                                        */
1428 #define TWIS131_EASYDMA_MAXCNT_MAX 14                /*!< (unspecified)                                                        */
1429 #define TWIS131_EASYDMA_MAXCNT_SIZE 15               /*!< (unspecified)                                                        */
1430 #define TWIS131_EASYDMA_CURRENT_AMOUNT_REGISTER_INCLUDED 1 /*!< (unspecified)                                                  */
1431 
1432 #define TWIS132_EASYDMA_MAXCNT_MIN 0                 /*!< (unspecified)                                                        */
1433 #define TWIS132_EASYDMA_MAXCNT_MAX 14                /*!< (unspecified)                                                        */
1434 #define TWIS132_EASYDMA_MAXCNT_SIZE 15               /*!< (unspecified)                                                        */
1435 #define TWIS132_EASYDMA_CURRENT_AMOUNT_REGISTER_INCLUDED 1 /*!< (unspecified)                                                  */
1436 
1437 #define TWIS133_EASYDMA_MAXCNT_MIN 0                 /*!< (unspecified)                                                        */
1438 #define TWIS133_EASYDMA_MAXCNT_MAX 14                /*!< (unspecified)                                                        */
1439 #define TWIS133_EASYDMA_MAXCNT_SIZE 15               /*!< (unspecified)                                                        */
1440 #define TWIS133_EASYDMA_CURRENT_AMOUNT_REGISTER_INCLUDED 1 /*!< (unspecified)                                                  */
1441 
1442 #define TWIS134_EASYDMA_MAXCNT_MIN 0                 /*!< (unspecified)                                                        */
1443 #define TWIS134_EASYDMA_MAXCNT_MAX 14                /*!< (unspecified)                                                        */
1444 #define TWIS134_EASYDMA_MAXCNT_SIZE 15               /*!< (unspecified)                                                        */
1445 #define TWIS134_EASYDMA_CURRENT_AMOUNT_REGISTER_INCLUDED 1 /*!< (unspecified)                                                  */
1446 
1447 #define TWIS135_EASYDMA_MAXCNT_MIN 0                 /*!< (unspecified)                                                        */
1448 #define TWIS135_EASYDMA_MAXCNT_MAX 14                /*!< (unspecified)                                                        */
1449 #define TWIS135_EASYDMA_MAXCNT_SIZE 15               /*!< (unspecified)                                                        */
1450 #define TWIS135_EASYDMA_CURRENT_AMOUNT_REGISTER_INCLUDED 1 /*!< (unspecified)                                                  */
1451 
1452 #define TWIS136_EASYDMA_MAXCNT_MIN 0                 /*!< (unspecified)                                                        */
1453 #define TWIS136_EASYDMA_MAXCNT_MAX 14                /*!< (unspecified)                                                        */
1454 #define TWIS136_EASYDMA_MAXCNT_SIZE 15               /*!< (unspecified)                                                        */
1455 #define TWIS136_EASYDMA_CURRENT_AMOUNT_REGISTER_INCLUDED 1 /*!< (unspecified)                                                  */
1456 
1457 #define TWIS137_EASYDMA_MAXCNT_MIN 0                 /*!< (unspecified)                                                        */
1458 #define TWIS137_EASYDMA_MAXCNT_MAX 14                /*!< (unspecified)                                                        */
1459 #define TWIS137_EASYDMA_MAXCNT_SIZE 15               /*!< (unspecified)                                                        */
1460 #define TWIS137_EASYDMA_CURRENT_AMOUNT_REGISTER_INCLUDED 1 /*!< (unspecified)                                                  */
1461 
1462 /* ============================================= SPU010 Split Security Features ============================================== */
1463 /**
1464   * @brief Indexes in SPU010.FEATURES controlling access permissions of features with split security
1465   */
1466 typedef enum {
1467   NRF_APPLICATION_SPU010_FEATURES_IPCT_CH_0  = 0,    /*!< Index of access permissions for channel 0 of IPCT                    */
1468   NRF_APPLICATION_SPU010_FEATURES_IPCT_CH_1  = 1,    /*!< Index of access permissions for channel 1 of IPCT                    */
1469   NRF_APPLICATION_SPU010_FEATURES_IPCT_CH_2  = 2,    /*!< Index of access permissions for channel 2 of IPCT                    */
1470   NRF_APPLICATION_SPU010_FEATURES_IPCT_CH_3  = 3,    /*!< Index of access permissions for channel 3 of IPCT                    */
1471   NRF_APPLICATION_SPU010_FEATURES_IPCT_INTERRUPT_0 = 24, /*!< Index of access permissions for interrupt 0 of IPCT              */
1472   NRF_APPLICATION_SPU010_FEATURES_IPCT_INTERRUPT_1 = 25, /*!< Index of access permissions for interrupt 1 of IPCT              */
1473 } NRF_APPLICATION_SPU010_FEATURES_ENUM_t;
1474 
1475 
1476 #ifdef __cplusplus
1477 }
1478 #endif
1479 #endif /* NRF9230_ENGA_APPLICATION_PERIPHERALS_H */
1480 
1481