mFrame
載入中...
搜尋中...
無符合項目
chip/src/gpio/GPIO.h
1
7#ifndef CHIP_A3754241_08E1_4F86_B049_0FACC9D70DF5
8#define CHIP_A3754241_08E1_4F86_B049_0FACC9D70DF5
9
10/* ***************************************************************************************
11 * Include
12 */
13
14//----------------------------------------------------------------------------------------
15#include "mframe.h"
16
17//----------------------------------------------------------------------------------------
18#include "./Count.h"
19#include "./InterruptConfig.h"
20#include "./Mask.h"
21#include "./PinConfig.h"
22#include "./Register.h"
23#include "./Shift.h"
24#include "./VersionInfo.h"
25
26/* ***************************************************************************************
27 * Namespace
28 */
29namespace chip::gpio {
30 class GPIO;
31 extern Register& GPIO0;
32 extern Register& GPIO1;
33 extern Register& GPIO2;
34 extern Register& GPIO3;
35 extern Register* const GPIO[];
36} // namespace chip::gpio
37
38/* ***************************************************************************************
39 * Class/Interface/Struct/Enum
40 */
42 /* *************************************************************************************
43 * Variable
44 */
45
46 /* *************************************************************************************
47 * Abstract Method
48 */
49
50 /* *************************************************************************************
51 * Construct Method
52 */
53 public:
58 GPIO(void);
59
64 virtual ~GPIO(void) override;
65
66 /* *************************************************************************************
67 * Operator Method
68 */
69
70 /* *************************************************************************************
71 * Public Method <Override>
72 */
73
74 /* *************************************************************************************
75 * Public Method
76 */
77
78 /* *************************************************************************************
79 * Protected Method
80 */
81
82 /* *************************************************************************************
83 * Private Method
84 */
85
86 /* *************************************************************************************
87 * Static Variable
88 */
89
90 /* *************************************************************************************
91 * Static Method
92 */
93 public:
120 static void pinInit(Register& base, uint32 pin, const PinConfig& config);
121
128 static void getVersionInfo(Register& base, VersionInfo& info);
129
136 static inline void portInputEnable(Register& base, uint32 mask) {
137 base.pidr &= static_cast<uint32>(~mask);
138 }
139
146 static inline void portInputDisable(Register& base, uint32 mask) {
147 base.pidr |= static_cast<uint32>(mask);
148 }
149
159 static inline void pinWrite(Register& base, uint32 pin, uint8 output) {
160 if (output == 0U) {
161 base.pcor = static_cast<uint32>(1UL << pin);
162 } else {
163 base.psor = static_cast<uint32>(1UL << pin);
164 }
165 }
166
173 static inline void portSet(Register& base, uint32 mask) {
174 base.psor = static_cast<uint32>(mask);
175 }
176
183 static inline void portClear(Register& base, uint32 mask) {
184 base.pcor = static_cast<uint32>(mask);
185 }
186
193 static inline void portToggle(Register& base, uint32 mask) {
194 base.ptor = static_cast<uint32>(mask);
195 }
196
206 static inline uint32 pinRead(Register& base, uint32 pin) {
207 return ((static_cast<uint32>(base.pdir) >> pin) & 0x01UL);
208 }
209
231 static inline void setPinInterruptConfig(Register& base, uint32 pin, InterruptConfig config) {
232 base.icr[pin] = static_cast<uint32>((base.icr[pin] & ~+Mask::ICR_IRQC) | GPIO::ICR_IRQC(+config));
233 }
234
243 static uint32 gpioGetInterruptFlags(Register& base);
244
252 static uint8 pinGetInterruptFlag(Register& base, uint32 pin);
253
260 static void gpioClearInterruptFlags(Register& base, uint32 mask);
261
268 static void pinClearInterruptFlag(Register& base, uint32 pin);
269
275 static inline uint32 getPinsDMARequestFlags(Register& base) {
276 return (base.isfr[1]);
277 }
278
300 static inline void setMultipleInterruptPinsConfig(Register& base, uint32 mask, InterruptConfig config) {
301 if (0UL != (mask & 0xffffUL)) {
302 base.giclr = static_cast<uint32>((GPIO::ICR_IRQC(+config)) | (mask & 0xffffU));
303 }
304 mask = mask >> 16U;
305 if (mask != 0UL) {
306 base.gichr = static_cast<uint32>((GPIO::ICR_IRQC(+config)) | (mask & 0xffffU));
307 }
308 }
309
319 static inline constexpr uint32 VERID_FEATURE(uint32 value) {
320 return ((value << +Shift::VERID_FEATURE) & +Mask::VERID_FEATURE);
321 }
322
328 static inline constexpr uint32 VERID_MINOR(uint32 value) {
329 return ((value << +Shift::VERID_MINOR) & +Mask::VERID_MINOR);
330 }
331
337 static inline constexpr uint32 VERID_MAJOR(uint32 value) {
338 return ((value << +Shift::VERID_MAJOR) & +Mask::VERID_MAJOR);
339 }
340
346 static inline constexpr uint32 PARAM_IRQNUM(uint32 value) {
347 return ((value << +Shift::PARAM_IRQNUM) & +Mask::PARAM_IRQNUM);
348 }
349
359 static inline constexpr uint32 PDOR_PDO0(uint32 value) {
360 return ((value << +Shift::PDOR_PDO0) & +Mask::PDOR_PDO0);
361 }
362
372 static inline constexpr uint32 PDOR_PDO1(uint32 value) {
373 return ((value << +Shift::PDOR_PDO1) & +Mask::PDOR_PDO1);
374 }
375
385 static inline constexpr uint32 PDOR_PDO2(uint32 value) {
386 return ((value << +Shift::PDOR_PDO2) & +Mask::PDOR_PDO2);
387 }
388
398 static inline constexpr uint32 PDOR_PDO3(uint32 value) {
399 return ((value << +Shift::PDOR_PDO3) & +Mask::PDOR_PDO3);
400 }
401
411 static inline constexpr uint32 PDOR_PDO4(uint32 value) {
412 return ((value << +Shift::PDOR_PDO4) & +Mask::PDOR_PDO4);
413 }
414
424 static inline constexpr uint32 PDOR_PDO5(uint32 value) {
425 return ((value << +Shift::PDOR_PDO5) & +Mask::PDOR_PDO5);
426 }
427
437 static inline constexpr uint32 PDOR_PDO6(uint32 value) {
438 return ((value << +Shift::PDOR_PDO6) & +Mask::PDOR_PDO6);
439 }
440
450 static inline constexpr uint32 PDOR_PDO7(uint32 value) {
451 return ((value << +Shift::PDOR_PDO7) & +Mask::PDOR_PDO7);
452 }
453
463 static inline constexpr uint32 PDOR_PDO8(uint32 value) {
464 return ((value << +Shift::PDOR_PDO8) & +Mask::PDOR_PDO8);
465 }
466
476 static inline constexpr uint32 PDOR_PDO9(uint32 value) {
477 return ((value << +Shift::PDOR_PDO9) & +Mask::PDOR_PDO9);
478 }
479
489 static inline constexpr uint32 PDOR_PDO10(uint32 value) {
490 return ((value << +Shift::PDOR_PDO10) & +Mask::PDOR_PDO10);
491 }
492
502 static inline constexpr uint32 PDOR_PDO11(uint32 value) {
503 return ((value << +Shift::PDOR_PDO11) & +Mask::PDOR_PDO11);
504 }
505
515 static inline constexpr uint32 PDOR_PDO12(uint32 value) {
516 return ((value << +Shift::PDOR_PDO12) & +Mask::PDOR_PDO12);
517 }
518
528 static inline constexpr uint32 PDOR_PDO13(uint32 value) {
529 return ((value << +Shift::PDOR_PDO13) & +Mask::PDOR_PDO13);
530 }
531
541 static inline constexpr uint32 PDOR_PDO14(uint32 value) {
542 return ((value << +Shift::PDOR_PDO14) & +Mask::PDOR_PDO14);
543 }
544
554 static inline constexpr uint32 PDOR_PDO15(uint32 value) {
555 return ((value << +Shift::PDOR_PDO15) & +Mask::PDOR_PDO15);
556 }
557
567 static inline constexpr uint32 PDOR_PDO16(uint32 value) {
568 return ((value << +Shift::PDOR_PDO16) & +Mask::PDOR_PDO16);
569 }
570
580 static inline constexpr uint32 PDOR_PDO17(uint32 value) {
581 return ((value << +Shift::PDOR_PDO17) & +Mask::PDOR_PDO17);
582 }
583
593 static inline constexpr uint32 PDOR_PDO18(uint32 value) {
594 return ((value << +Shift::PDOR_PDO18) & +Mask::PDOR_PDO18);
595 }
596
606 static inline constexpr uint32 PDOR_PDO19(uint32 value) {
607 return ((value << +Shift::PDOR_PDO19) & +Mask::PDOR_PDO19);
608 }
609
619 static inline constexpr uint32 PDOR_PDO20(uint32 value) {
620 return ((value << +Shift::PDOR_PDO20) & +Mask::PDOR_PDO20);
621 }
622
632 static inline constexpr uint32 PDOR_PDO21(uint32 value) {
633 return ((value << +Shift::PDOR_PDO21) & +Mask::PDOR_PDO21);
634 }
635
645 static inline constexpr uint32 PDOR_PDO22(uint32 value) {
646 return ((value << +Shift::PDOR_PDO22) & +Mask::PDOR_PDO22);
647 }
648
658 static inline constexpr uint32 PDOR_PDO23(uint32 value) {
659 return ((value << +Shift::PDOR_PDO23) & +Mask::PDOR_PDO23);
660 }
661
671 static inline constexpr uint32 PDOR_PDO24(uint32 value) {
672 return ((value << +Shift::PDOR_PDO24) & +Mask::PDOR_PDO24);
673 }
674
684 static inline constexpr uint32 PDOR_PDO25(uint32 value) {
685 return ((value << +Shift::PDOR_PDO25) & +Mask::PDOR_PDO25);
686 }
687
697 static inline constexpr uint32 PDOR_PDO26(uint32 value) {
698 return ((value << +Shift::PDOR_PDO26) & +Mask::PDOR_PDO26);
699 }
700
710 static inline constexpr uint32 PDOR_PDO27(uint32 value) {
711 return ((value << +Shift::PDOR_PDO27) & +Mask::PDOR_PDO27);
712 }
713
723 static inline constexpr uint32 PDOR_PDO28(uint32 value) {
724 return ((value << +Shift::PDOR_PDO28) & +Mask::PDOR_PDO28);
725 }
726
736 static inline constexpr uint32 PDOR_PDO29(uint32 value) {
737 return ((value << +Shift::PDOR_PDO29) & +Mask::PDOR_PDO29);
738 }
739
749 static inline constexpr uint32 PDOR_PDO30(uint32 value) {
750 return ((value << +Shift::PDOR_PDO30) & +Mask::PDOR_PDO30);
751 }
752
762 static inline constexpr uint32 PDOR_PDO31(uint32 value) {
763 return ((value << +Shift::PDOR_PDO31) & +Mask::PDOR_PDO31);
764 }
765
775 static inline constexpr uint32 PSOR_PTSO0(uint32 value) {
776 return ((value << +Shift::PSOR_PTSO0) & +Mask::PSOR_PTSO0);
777 }
778
788 static inline constexpr uint32 PSOR_PTSO1(uint32 value) {
789 return ((value << +Shift::PSOR_PTSO1) & +Mask::PSOR_PTSO1);
790 }
791
801 static inline constexpr uint32 PSOR_PTSO2(uint32 value) {
802 return ((value << +Shift::PSOR_PTSO2) & +Mask::PSOR_PTSO2);
803 }
804
814 static inline constexpr uint32 PSOR_PTSO3(uint32 value) {
815 return ((value << +Shift::PSOR_PTSO3) & +Mask::PSOR_PTSO3);
816 }
817
827 static inline constexpr uint32 PSOR_PTSO4(uint32 value) {
828 return ((value << +Shift::PSOR_PTSO4) & +Mask::PSOR_PTSO4);
829 }
830
840 static inline constexpr uint32 PSOR_PTSO5(uint32 value) {
841 return ((value << +Shift::PSOR_PTSO5) & +Mask::PSOR_PTSO5);
842 }
843
853 static inline constexpr uint32 PSOR_PTSO6(uint32 value) {
854 return ((value << +Shift::PSOR_PTSO6) & +Mask::PSOR_PTSO6);
855 }
856
866 static inline constexpr uint32 PSOR_PTSO7(uint32 value) {
867 return ((value << +Shift::PSOR_PTSO7) & +Mask::PSOR_PTSO7);
868 }
869
879 static inline constexpr uint32 PSOR_PTSO8(uint32 value) {
880 return ((value << +Shift::PSOR_PTSO8) & +Mask::PSOR_PTSO8);
881 }
882
892 static inline constexpr uint32 PSOR_PTSO9(uint32 value) {
893 return ((value << +Shift::PSOR_PTSO9) & +Mask::PSOR_PTSO9);
894 }
895
905 static inline constexpr uint32 PSOR_PTSO10(uint32 value) {
906 return ((value << +Shift::PSOR_PTSO10) & +Mask::PSOR_PTSO10);
907 }
908
918 static inline constexpr uint32 PSOR_PTSO11(uint32 value) {
919 return ((value << +Shift::PSOR_PTSO11) & +Mask::PSOR_PTSO11);
920 }
921
931 static inline constexpr uint32 PSOR_PTSO12(uint32 value) {
932 return ((value << +Shift::PSOR_PTSO12) & +Mask::PSOR_PTSO12);
933 }
934
944 static inline constexpr uint32 PSOR_PTSO13(uint32 value) {
945 return ((value << +Shift::PSOR_PTSO13) & +Mask::PSOR_PTSO13);
946 }
947
957 static inline constexpr uint32 PSOR_PTSO14(uint32 value) {
958 return ((value << +Shift::PSOR_PTSO14) & +Mask::PSOR_PTSO14);
959 }
960
970 static inline constexpr uint32 PSOR_PTSO15(uint32 value) {
971 return ((value << +Shift::PSOR_PTSO15) & +Mask::PSOR_PTSO15);
972 }
973
983 static inline constexpr uint32 PSOR_PTSO16(uint32 value) {
984 return ((value << +Shift::PSOR_PTSO16) & +Mask::PSOR_PTSO16);
985 }
986
996 static inline constexpr uint32 PSOR_PTSO17(uint32 value) {
997 return ((value << +Shift::PSOR_PTSO17) & +Mask::PSOR_PTSO17);
998 }
999
1009 static inline constexpr uint32 PSOR_PTSO18(uint32 value) {
1010 return ((value << +Shift::PSOR_PTSO18) & +Mask::PSOR_PTSO18);
1011 }
1012
1022 static inline constexpr uint32 PSOR_PTSO19(uint32 value) {
1023 return ((value << +Shift::PSOR_PTSO19) & +Mask::PSOR_PTSO19);
1024 }
1025
1035 static inline constexpr uint32 PSOR_PTSO20(uint32 value) {
1036 return ((value << +Shift::PSOR_PTSO20) & +Mask::PSOR_PTSO20);
1037 }
1038
1048 static inline constexpr uint32 PSOR_PTSO21(uint32 value) {
1049 return ((value << +Shift::PSOR_PTSO21) & +Mask::PSOR_PTSO21);
1050 }
1051
1061 static inline constexpr uint32 PSOR_PTSO22(uint32 value) {
1062 return ((value << +Shift::PSOR_PTSO22) & +Mask::PSOR_PTSO22);
1063 }
1064
1074 static inline constexpr uint32 PSOR_PTSO23(uint32 value) {
1075 return ((value << +Shift::PSOR_PTSO23) & +Mask::PSOR_PTSO23);
1076 }
1077
1087 static inline constexpr uint32 PSOR_PTSO24(uint32 value) {
1088 return ((value << +Shift::PSOR_PTSO24) & +Mask::PSOR_PTSO24);
1089 }
1090
1100 static inline constexpr uint32 PSOR_PTSO25(uint32 value) {
1101 return ((value << +Shift::PSOR_PTSO25) & +Mask::PSOR_PTSO25);
1102 }
1103
1113 static inline constexpr uint32 PSOR_PTSO26(uint32 value) {
1114 return ((value << +Shift::PSOR_PTSO26) & +Mask::PSOR_PTSO26);
1115 }
1116
1126 static inline constexpr uint32 PSOR_PTSO27(uint32 value) {
1127 return ((value << +Shift::PSOR_PTSO27) & +Mask::PSOR_PTSO27);
1128 }
1129
1139 static inline constexpr uint32 PSOR_PTSO28(uint32 value) {
1140 return ((value << +Shift::PSOR_PTSO28) & +Mask::PSOR_PTSO28);
1141 }
1142
1152 static inline constexpr uint32 PSOR_PTSO29(uint32 value) {
1153 return ((value << +Shift::PSOR_PTSO29) & +Mask::PSOR_PTSO29);
1154 }
1155
1165 static inline constexpr uint32 PSOR_PTSO30(uint32 value) {
1166 return ((value << +Shift::PSOR_PTSO30) & +Mask::PSOR_PTSO30);
1167 }
1168
1178 static inline constexpr uint32 PSOR_PTSO31(uint32 value) {
1179 return ((value << +Shift::PSOR_PTSO31) & +Mask::PSOR_PTSO31);
1180 }
1181
1191 static inline constexpr uint32 PCOR_PTCO0(uint32 value) {
1192 return ((value << +Shift::PCOR_PTCO0) & +Mask::PCOR_PTCO0);
1193 }
1194
1204 static inline constexpr uint32 PCOR_PTCO1(uint32 value) {
1205 return ((value << +Shift::PCOR_PTCO1) & +Mask::PCOR_PTCO1);
1206 }
1207
1217 static inline constexpr uint32 PCOR_PTCO2(uint32 value) {
1218 return ((value << +Shift::PCOR_PTCO2) & +Mask::PCOR_PTCO2);
1219 }
1220
1230 static inline constexpr uint32 PCOR_PTCO3(uint32 value) {
1231 return ((value << +Shift::PCOR_PTCO3) & +Mask::PCOR_PTCO3);
1232 }
1233
1243 static inline constexpr uint32 PCOR_PTCO4(uint32 value) {
1244 return ((value << +Shift::PCOR_PTCO4) & +Mask::PCOR_PTCO4);
1245 }
1246
1256 static inline constexpr uint32 PCOR_PTCO5(uint32 value) {
1257 return ((value << +Shift::PCOR_PTCO5) & +Mask::PCOR_PTCO5);
1258 }
1259
1269 static inline constexpr uint32 PCOR_PTCO6(uint32 value) {
1270 return ((value << +Shift::PCOR_PTCO6) & +Mask::PCOR_PTCO6);
1271 }
1272
1282 static inline constexpr uint32 PCOR_PTCO7(uint32 value) {
1283 return ((value << +Shift::PCOR_PTCO7) & +Mask::PCOR_PTCO7);
1284 }
1285
1295 static inline constexpr uint32 PCOR_PTCO8(uint32 value) {
1296 return ((value << +Shift::PCOR_PTCO8) & +Mask::PCOR_PTCO8);
1297 }
1298
1308 static inline constexpr uint32 PCOR_PTCO9(uint32 value) {
1309 return ((value << +Shift::PCOR_PTCO9) & +Mask::PCOR_PTCO9);
1310 }
1311
1321 static inline constexpr uint32 PCOR_PTCO10(uint32 value) {
1322 return ((value << +Shift::PCOR_PTCO10) & +Mask::PCOR_PTCO10);
1323 }
1324
1334 static inline constexpr uint32 PCOR_PTCO11(uint32 value) {
1335 return ((value << +Shift::PCOR_PTCO11) & +Mask::PCOR_PTCO11);
1336 }
1337
1347 static inline constexpr uint32 PCOR_PTCO12(uint32 value) {
1348 return ((value << +Shift::PCOR_PTCO12) & +Mask::PCOR_PTCO12);
1349 }
1350
1360 static inline constexpr uint32 PCOR_PTCO13(uint32 value) {
1361 return ((value << +Shift::PCOR_PTCO13) & +Mask::PCOR_PTCO13);
1362 }
1363
1373 static inline constexpr uint32 PCOR_PTCO14(uint32 value) {
1374 return ((value << +Shift::PCOR_PTCO14) & +Mask::PCOR_PTCO14);
1375 }
1376
1386 static inline constexpr uint32 PCOR_PTCO15(uint32 value) {
1387 return ((value << +Shift::PCOR_PTCO15) & +Mask::PCOR_PTCO15);
1388 }
1389
1399 static inline constexpr uint32 PCOR_PTCO16(uint32 value) {
1400 return ((value << +Shift::PCOR_PTCO16) & +Mask::PCOR_PTCO16);
1401 }
1402
1412 static inline constexpr uint32 PCOR_PTCO17(uint32 value) {
1413 return ((value << +Shift::PCOR_PTCO17) & +Mask::PCOR_PTCO17);
1414 }
1415
1425 static inline constexpr uint32 PCOR_PTCO18(uint32 value) {
1426 return ((value << +Shift::PCOR_PTCO18) & +Mask::PCOR_PTCO18);
1427 }
1428
1438 static inline constexpr uint32 PCOR_PTCO19(uint32 value) {
1439 return ((value << +Shift::PCOR_PTCO19) & +Mask::PCOR_PTCO19);
1440 }
1441
1451 static inline constexpr uint32 PCOR_PTCO20(uint32 value) {
1452 return ((value << +Shift::PCOR_PTCO20) & +Mask::PCOR_PTCO20);
1453 }
1454
1464 static inline constexpr uint32 PCOR_PTCO21(uint32 value) {
1465 return ((value << +Shift::PCOR_PTCO21) & +Mask::PCOR_PTCO21);
1466 }
1467
1477 static inline constexpr uint32 PCOR_PTCO22(uint32 value) {
1478 return ((value << +Shift::PCOR_PTCO22) & +Mask::PCOR_PTCO22);
1479 }
1480
1490 static inline constexpr uint32 PCOR_PTCO23(uint32 value) {
1491 return ((value << +Shift::PCOR_PTCO23) & +Mask::PCOR_PTCO23);
1492 }
1493
1503 static inline constexpr uint32 PCOR_PTCO24(uint32 value) {
1504 return ((value << +Shift::PCOR_PTCO24) & +Mask::PCOR_PTCO24);
1505 }
1506
1516 static inline constexpr uint32 PCOR_PTCO25(uint32 value) {
1517 return ((value << +Shift::PCOR_PTCO25) & +Mask::PCOR_PTCO25);
1518 }
1519
1529 static inline constexpr uint32 PCOR_PTCO26(uint32 value) {
1530 return ((value << +Shift::PCOR_PTCO26) & +Mask::PCOR_PTCO26);
1531 }
1532
1542 static inline constexpr uint32 PCOR_PTCO27(uint32 value) {
1543 return ((value << +Shift::PCOR_PTCO27) & +Mask::PCOR_PTCO27);
1544 }
1545
1555 static inline constexpr uint32 PCOR_PTCO28(uint32 value) {
1556 return ((value << +Shift::PCOR_PTCO28) & +Mask::PCOR_PTCO28);
1557 }
1558
1568 static inline constexpr uint32 PCOR_PTCO29(uint32 value) {
1569 return ((value << +Shift::PCOR_PTCO29) & +Mask::PCOR_PTCO29);
1570 }
1571
1581 static inline constexpr uint32 PCOR_PTCO30(uint32 value) {
1582 return ((value << +Shift::PCOR_PTCO30) & +Mask::PCOR_PTCO30);
1583 }
1584
1594 static inline constexpr uint32 PCOR_PTCO31(uint32 value) {
1595 return ((value << +Shift::PCOR_PTCO31) & +Mask::PCOR_PTCO31);
1596 }
1597
1607 static inline constexpr uint32 PTOR_PTTO0(uint32 value) {
1608 return ((value << +Shift::PTOR_PTTO0) & +Mask::PTOR_PTTO0);
1609 }
1610
1620 static inline constexpr uint32 PTOR_PTTO1(uint32 value) {
1621 return ((value << +Shift::PTOR_PTTO1) & +Mask::PTOR_PTTO1);
1622 }
1623
1633 static inline constexpr uint32 PTOR_PTTO2(uint32 value) {
1634 return ((value << +Shift::PTOR_PTTO2) & +Mask::PTOR_PTTO2);
1635 }
1636
1646 static inline constexpr uint32 PTOR_PTTO3(uint32 value) {
1647 return ((value << +Shift::PTOR_PTTO3) & +Mask::PTOR_PTTO3);
1648 }
1649
1659 static inline constexpr uint32 PTOR_PTTO4(uint32 value) {
1660 return ((value << +Shift::PTOR_PTTO4) & +Mask::PTOR_PTTO4);
1661 }
1662
1672 static inline constexpr uint32 PTOR_PTTO5(uint32 value) {
1673 return ((value << +Shift::PTOR_PTTO5) & +Mask::PTOR_PTTO5);
1674 }
1675
1685 static inline constexpr uint32 PTOR_PTTO6(uint32 value) {
1686 return ((value << +Shift::PTOR_PTTO6) & +Mask::PTOR_PTTO6);
1687 }
1688
1698 static inline constexpr uint32 PTOR_PTTO7(uint32 value) {
1699 return ((value << +Shift::PTOR_PTTO7) & +Mask::PTOR_PTTO7);
1700 }
1701
1711 static inline constexpr uint32 PTOR_PTTO8(uint32 value) {
1712 return ((value << +Shift::PTOR_PTTO8) & +Mask::PTOR_PTTO8);
1713 }
1714
1724 static inline constexpr uint32 PTOR_PTTO9(uint32 value) {
1725 return ((value << +Shift::PTOR_PTTO9) & +Mask::PTOR_PTTO9);
1726 }
1727
1737 static inline constexpr uint32 PTOR_PTTO10(uint32 value) {
1738 return ((value << +Shift::PTOR_PTTO10) & +Mask::PTOR_PTTO10);
1739 }
1740
1750 static inline constexpr uint32 PTOR_PTTO11(uint32 value) {
1751 return ((value << +Shift::PTOR_PTTO11) & +Mask::PTOR_PTTO11);
1752 }
1753
1763 static inline constexpr uint32 PTOR_PTTO12(uint32 value) {
1764 return ((value << +Shift::PTOR_PTTO12) & +Mask::PTOR_PTTO12);
1765 }
1766
1776 static inline constexpr uint32 PTOR_PTTO13(uint32 value) {
1777 return ((value << +Shift::PTOR_PTTO13) & +Mask::PTOR_PTTO13);
1778 }
1779
1789 static inline constexpr uint32 PTOR_PTTO14(uint32 value) {
1790 return ((value << +Shift::PTOR_PTTO14) & +Mask::PTOR_PTTO14);
1791 }
1792
1802 static inline constexpr uint32 PTOR_PTTO15(uint32 value) {
1803 return ((value << +Shift::PTOR_PTTO15) & +Mask::PTOR_PTTO15);
1804 }
1805
1815 static inline constexpr uint32 PTOR_PTTO16(uint32 value) {
1816 return ((value << +Shift::PTOR_PTTO16) & +Mask::PTOR_PTTO16);
1817 }
1818
1828 static inline constexpr uint32 PTOR_PTTO17(uint32 value) {
1829 return ((value << +Shift::PTOR_PTTO17) & +Mask::PTOR_PTTO17);
1830 }
1831
1841 static inline constexpr uint32 PTOR_PTTO18(uint32 value) {
1842 return ((value << +Shift::PTOR_PTTO18) & +Mask::PTOR_PTTO18);
1843 }
1844
1854 static inline constexpr uint32 PTOR_PTTO19(uint32 value) {
1855 return ((value << +Shift::PTOR_PTTO19) & +Mask::PTOR_PTTO19);
1856 }
1857
1867 static inline constexpr uint32 PTOR_PTTO20(uint32 value) {
1868 return ((value << +Shift::PTOR_PTTO20) & +Mask::PTOR_PTTO20);
1869 }
1870
1880 static inline constexpr uint32 PTOR_PTTO21(uint32 value) {
1881 return ((value << +Shift::PTOR_PTTO21) & +Mask::PTOR_PTTO21);
1882 }
1883
1893 static inline constexpr uint32 PTOR_PTTO22(uint32 value) {
1894 return ((value << +Shift::PTOR_PTTO22) & +Mask::PTOR_PTTO22);
1895 }
1896
1906 static inline constexpr uint32 PTOR_PTTO23(uint32 value) {
1907 return ((value << +Shift::PTOR_PTTO23) & +Mask::PTOR_PTTO23);
1908 }
1909
1919 static inline constexpr uint32 PTOR_PTTO24(uint32 value) {
1920 return ((value << +Shift::PTOR_PTTO24) & +Mask::PTOR_PTTO24);
1921 }
1922
1932 static inline constexpr uint32 PTOR_PTTO25(uint32 value) {
1933 return ((value << +Shift::PTOR_PTTO25) & +Mask::PTOR_PTTO25);
1934 }
1935
1945 static inline constexpr uint32 PTOR_PTTO26(uint32 value) {
1946 return ((value << +Shift::PTOR_PTTO26) & +Mask::PTOR_PTTO26);
1947 }
1948
1958 static inline constexpr uint32 PTOR_PTTO27(uint32 value) {
1959 return ((value << +Shift::PTOR_PTTO27) & +Mask::PTOR_PTTO27);
1960 }
1961
1971 static inline constexpr uint32 PTOR_PTTO28(uint32 value) {
1972 return ((value << +Shift::PTOR_PTTO28) & +Mask::PTOR_PTTO28);
1973 }
1974
1984 static inline constexpr uint32 PTOR_PTTO29(uint32 value) {
1985 return ((value << +Shift::PTOR_PTTO29) & +Mask::PTOR_PTTO29);
1986 }
1987
1997 static inline constexpr uint32 PTOR_PTTO30(uint32 value) {
1998 return ((value << +Shift::PTOR_PTTO30) & +Mask::PTOR_PTTO30);
1999 }
2000
2010 static inline constexpr uint32 PTOR_PTTO31(uint32 value) {
2011 return ((value << +Shift::PTOR_PTTO31) & +Mask::PTOR_PTTO31);
2012 }
2013
2023 static inline constexpr uint32 PDIR_PDI0(uint32 value) {
2024 return ((value << +Shift::PDIR_PDI0) & +Mask::PDIR_PDI0);
2025 }
2026
2036 static inline constexpr uint32 PDIR_PDI1(uint32 value) {
2037 return ((value << +Shift::PDIR_PDI1) & +Mask::PDIR_PDI1);
2038 }
2039
2049 static inline constexpr uint32 PDIR_PDI2(uint32 value) {
2050 return ((value << +Shift::PDIR_PDI2) & +Mask::PDIR_PDI2);
2051 }
2052
2062 static inline constexpr uint32 PDIR_PDI3(uint32 value) {
2063 return ((value << +Shift::PDIR_PDI3) & +Mask::PDIR_PDI3);
2064 }
2065
2075 static inline constexpr uint32 PDIR_PDI4(uint32 value) {
2076 return ((value << +Shift::PDIR_PDI4) & +Mask::PDIR_PDI4);
2077 }
2078
2088 static inline constexpr uint32 PDIR_PDI5(uint32 value) {
2089 return ((value << +Shift::PDIR_PDI5) & +Mask::PDIR_PDI5);
2090 }
2091
2101 static inline constexpr uint32 PDIR_PDI6(uint32 value) {
2102 return ((value << +Shift::PDIR_PDI6) & +Mask::PDIR_PDI6);
2103 }
2104
2114 static inline constexpr uint32 PDIR_PDI7(uint32 value) {
2115 return ((value << +Shift::PDIR_PDI7) & +Mask::PDIR_PDI7);
2116 }
2117
2127 static inline constexpr uint32 PDIR_PDI8(uint32 value) {
2128 return ((value << +Shift::PDIR_PDI8) & +Mask::PDIR_PDI8);
2129 }
2130
2140 static inline constexpr uint32 PDIR_PDI9(uint32 value) {
2141 return ((value << +Shift::PDIR_PDI9) & +Mask::PDIR_PDI9);
2142 }
2143
2153 static inline constexpr uint32 PDIR_PDI10(uint32 value) {
2154 return ((value << +Shift::PDIR_PDI10) & +Mask::PDIR_PDI10);
2155 }
2156
2166 static inline constexpr uint32 PDIR_PDI11(uint32 value) {
2167 return ((value << +Shift::PDIR_PDI11) & +Mask::PDIR_PDI11);
2168 }
2169
2179 static inline constexpr uint32 PDIR_PDI12(uint32 value) {
2180 return ((value << +Shift::PDIR_PDI12) & +Mask::PDIR_PDI12);
2181 }
2182
2192 static inline constexpr uint32 PDIR_PDI13(uint32 value) {
2193 return ((value << +Shift::PDIR_PDI13) & +Mask::PDIR_PDI13);
2194 }
2195
2205 static inline constexpr uint32 PDIR_PDI14(uint32 value) {
2206 return ((value << +Shift::PDIR_PDI14) & +Mask::PDIR_PDI14);
2207 }
2208
2218 static inline constexpr uint32 PDIR_PDI15(uint32 value) {
2219 return ((value << +Shift::PDIR_PDI15) & +Mask::PDIR_PDI15);
2220 }
2221
2231 static inline constexpr uint32 PDIR_PDI16(uint32 value) {
2232 return ((value << +Shift::PDIR_PDI16) & +Mask::PDIR_PDI16);
2233 }
2234
2244 static inline constexpr uint32 PDIR_PDI17(uint32 value) {
2245 return ((value << +Shift::PDIR_PDI17) & +Mask::PDIR_PDI17);
2246 }
2247
2257 static inline constexpr uint32 PDIR_PDI18(uint32 value) {
2258 return ((value << +Shift::PDIR_PDI18) & +Mask::PDIR_PDI18);
2259 }
2260
2270 static inline constexpr uint32 PDIR_PDI19(uint32 value) {
2271 return ((value << +Shift::PDIR_PDI19) & +Mask::PDIR_PDI19);
2272 }
2273
2283 static inline constexpr uint32 PDIR_PDI20(uint32 value) {
2284 return ((value << +Shift::PDIR_PDI20) & +Mask::PDIR_PDI20);
2285 }
2286
2296 static inline constexpr uint32 PDIR_PDI21(uint32 value) {
2297 return ((value << +Shift::PDIR_PDI21) & +Mask::PDIR_PDI21);
2298 }
2299
2309 static inline constexpr uint32 PDIR_PDI22(uint32 value) {
2310 return ((value << +Shift::PDIR_PDI22) & +Mask::PDIR_PDI22);
2311 }
2312
2322 static inline constexpr uint32 PDIR_PDI23(uint32 value) {
2323 return ((value << +Shift::PDIR_PDI23) & +Mask::PDIR_PDI23);
2324 }
2325
2335 static inline constexpr uint32 PDIR_PDI24(uint32 value) {
2336 return ((value << +Shift::PDIR_PDI24) & +Mask::PDIR_PDI24);
2337 }
2338
2348 static inline constexpr uint32 PDIR_PDI25(uint32 value) {
2349 return ((value << +Shift::PDIR_PDI25) & +Mask::PDIR_PDI25);
2350 }
2351
2361 static inline constexpr uint32 PDIR_PDI26(uint32 value) {
2362 return ((value << +Shift::PDIR_PDI26) & +Mask::PDIR_PDI26);
2363 }
2364
2374 static inline constexpr uint32 PDIR_PDI27(uint32 value) {
2375 return ((value << +Shift::PDIR_PDI27) & +Mask::PDIR_PDI27);
2376 }
2377
2387 static inline constexpr uint32 PDIR_PDI28(uint32 value) {
2388 return ((value << +Shift::PDIR_PDI28) & +Mask::PDIR_PDI28);
2389 }
2390
2400 static inline constexpr uint32 PDIR_PDI29(uint32 value) {
2401 return ((value << +Shift::PDIR_PDI29) & +Mask::PDIR_PDI29);
2402 }
2403
2413 static inline constexpr uint32 PDIR_PDI30(uint32 value) {
2414 return ((value << +Shift::PDIR_PDI30) & +Mask::PDIR_PDI30);
2415 }
2416
2426 static inline constexpr uint32 PDIR_PDI31(uint32 value) {
2427 return ((value << +Shift::PDIR_PDI31) & +Mask::PDIR_PDI31);
2428 }
2429
2439 static inline constexpr uint32 PDDR_PDD0(uint32 value) {
2440 return ((value << +Shift::PDDR_PDD0) & +Mask::PDDR_PDD0);
2441 }
2442
2452 static inline constexpr uint32 PDDR_PDD1(uint32 value) {
2453 return ((value << +Shift::PDDR_PDD1) & +Mask::PDDR_PDD1);
2454 }
2455
2465 static inline constexpr uint32 PDDR_PDD2(uint32 value) {
2466 return ((value << +Shift::PDDR_PDD2) & +Mask::PDDR_PDD2);
2467 }
2468
2478 static inline constexpr uint32 PDDR_PDD3(uint32 value) {
2479 return ((value << +Shift::PDDR_PDD3) & +Mask::PDDR_PDD3);
2480 }
2481
2491 static inline constexpr uint32 PDDR_PDD4(uint32 value) {
2492 return ((value << +Shift::PDDR_PDD4) & +Mask::PDDR_PDD4);
2493 }
2494
2504 static inline constexpr uint32 PDDR_PDD5(uint32 value) {
2505 return ((value << +Shift::PDDR_PDD5) & +Mask::PDDR_PDD5);
2506 }
2507
2517 static inline constexpr uint32 PDDR_PDD6(uint32 value) {
2518 return ((value << +Shift::PDDR_PDD6) & +Mask::PDDR_PDD6);
2519 }
2520
2530 static inline constexpr uint32 PDDR_PDD7(uint32 value) {
2531 return ((value << +Shift::PDDR_PDD7) & +Mask::PDDR_PDD7);
2532 }
2533
2543 static inline constexpr uint32 PDDR_PDD8(uint32 value) {
2544 return ((value << +Shift::PDDR_PDD8) & +Mask::PDDR_PDD8);
2545 }
2546
2556 static inline constexpr uint32 PDDR_PDD9(uint32 value) {
2557 return ((value << +Shift::PDDR_PDD9) & +Mask::PDDR_PDD9);
2558 }
2559
2569 static inline constexpr uint32 PDDR_PDD10(uint32 value) {
2570 return ((value << +Shift::PDDR_PDD10) & +Mask::PDDR_PDD10);
2571 }
2572
2582 static inline constexpr uint32 PDDR_PDD11(uint32 value) {
2583 return ((value << +Shift::PDDR_PDD11) & +Mask::PDDR_PDD11);
2584 }
2585
2595 static inline constexpr uint32 PDDR_PDD12(uint32 value) {
2596 return ((value << +Shift::PDDR_PDD12) & +Mask::PDDR_PDD12);
2597 }
2598
2608 static inline constexpr uint32 PDDR_PDD13(uint32 value) {
2609 return ((value << +Shift::PDDR_PDD13) & +Mask::PDDR_PDD13);
2610 }
2611
2621 static inline constexpr uint32 PDDR_PDD14(uint32 value) {
2622 return ((value << +Shift::PDDR_PDD14) & +Mask::PDDR_PDD14);
2623 }
2624
2634 static inline constexpr uint32 PDDR_PDD15(uint32 value) {
2635 return ((value << +Shift::PDDR_PDD15) & +Mask::PDDR_PDD15);
2636 }
2637
2647 static inline constexpr uint32 PDDR_PDD16(uint32 value) {
2648 return ((value << +Shift::PDDR_PDD16) & +Mask::PDDR_PDD16);
2649 }
2650
2660 static inline constexpr uint32 PDDR_PDD17(uint32 value) {
2661 return ((value << +Shift::PDDR_PDD17) & +Mask::PDDR_PDD17);
2662 }
2663
2673 static inline constexpr uint32 PDDR_PDD18(uint32 value) {
2674 return ((value << +Shift::PDDR_PDD18) & +Mask::PDDR_PDD18);
2675 }
2676
2686 static inline constexpr uint32 PDDR_PDD19(uint32 value) {
2687 return ((value << +Shift::PDDR_PDD19) & +Mask::PDDR_PDD19);
2688 }
2689
2699 static inline constexpr uint32 PDDR_PDD20(uint32 value) {
2700 return ((value << +Shift::PDDR_PDD20) & +Mask::PDDR_PDD20);
2701 }
2702
2712 static inline constexpr uint32 PDDR_PDD21(uint32 value) {
2713 return ((value << +Shift::PDDR_PDD21) & +Mask::PDDR_PDD21);
2714 }
2715
2725 static inline constexpr uint32 PDDR_PDD22(uint32 value) {
2726 return ((value << +Shift::PDDR_PDD22) & +Mask::PDDR_PDD22);
2727 }
2728
2738 static inline constexpr uint32 PDDR_PDD23(uint32 value) {
2739 return ((value << +Shift::PDDR_PDD23) & +Mask::PDDR_PDD23);
2740 }
2741
2751 static inline constexpr uint32 PDDR_PDD24(uint32 value) {
2752 return ((value << +Shift::PDDR_PDD24) & +Mask::PDDR_PDD24);
2753 }
2754
2764 static inline constexpr uint32 PDDR_PDD25(uint32 value) {
2765 return ((value << +Shift::PDDR_PDD25) & +Mask::PDDR_PDD25);
2766 }
2767
2777 static inline constexpr uint32 PDDR_PDD26(uint32 value) {
2778 return ((value << +Shift::PDDR_PDD26) & +Mask::PDDR_PDD26);
2779 }
2780
2790 static inline constexpr uint32 PDDR_PDD27(uint32 value) {
2791 return ((value << +Shift::PDDR_PDD27) & +Mask::PDDR_PDD27);
2792 }
2793
2803 static inline constexpr uint32 PDDR_PDD28(uint32 value) {
2804 return ((value << +Shift::PDDR_PDD28) & +Mask::PDDR_PDD28);
2805 }
2806
2816 static inline constexpr uint32 PDDR_PDD29(uint32 value) {
2817 return ((value << +Shift::PDDR_PDD29) & +Mask::PDDR_PDD29);
2818 }
2819
2829 static inline constexpr uint32 PDDR_PDD30(uint32 value) {
2830 return ((value << +Shift::PDDR_PDD30) & +Mask::PDDR_PDD30);
2831 }
2832
2842 static inline constexpr uint32 PDDR_PDD31(uint32 value) {
2843 return ((value << +Shift::PDDR_PDD31) & +Mask::PDDR_PDD31);
2844 }
2845
2855 static inline constexpr uint32 PIDR_PID0(uint32 value) {
2856 return ((value << +Shift::PIDR_PID0) & +Mask::PIDR_PID0);
2857 }
2858
2868 static inline constexpr uint32 PIDR_PID1(uint32 value) {
2869 return ((value << +Shift::PIDR_PID1) & +Mask::PIDR_PID1);
2870 }
2871
2881 static inline constexpr uint32 PIDR_PID2(uint32 value) {
2882 return ((value << +Shift::PIDR_PID2) & +Mask::PIDR_PID2);
2883 }
2884
2894 static inline constexpr uint32 PIDR_PID3(uint32 value) {
2895 return ((value << +Shift::PIDR_PID3) & +Mask::PIDR_PID3);
2896 }
2897
2907 static inline constexpr uint32 PIDR_PID4(uint32 value) {
2908 return ((value << +Shift::PIDR_PID4) & +Mask::PIDR_PID4);
2909 }
2910
2920 static inline constexpr uint32 PIDR_PID5(uint32 value) {
2921 return ((value << +Shift::PIDR_PID5) & +Mask::PIDR_PID5);
2922 }
2923
2933 static inline constexpr uint32 PIDR_PID6(uint32 value) {
2934 return ((value << +Shift::PIDR_PID6) & +Mask::PIDR_PID6);
2935 }
2936
2946 static inline constexpr uint32 PIDR_PID7(uint32 value) {
2947 return ((value << +Shift::PIDR_PID7) & +Mask::PIDR_PID7);
2948 }
2949
2959 static inline constexpr uint32 PIDR_PID8(uint32 value) {
2960 return ((value << +Shift::PIDR_PID8) & +Mask::PIDR_PID8);
2961 }
2962
2972 static inline constexpr uint32 PIDR_PID9(uint32 value) {
2973 return ((value << +Shift::PIDR_PID9) & +Mask::PIDR_PID9);
2974 }
2975
2985 static inline constexpr uint32 PIDR_PID10(uint32 value) {
2986 return ((value << +Shift::PIDR_PID10) & +Mask::PIDR_PID10);
2987 }
2988
2998 static inline constexpr uint32 PIDR_PID11(uint32 value) {
2999 return ((value << +Shift::PIDR_PID11) & +Mask::PIDR_PID11);
3000 }
3001
3011 static inline constexpr uint32 PIDR_PID12(uint32 value) {
3012 return ((value << +Shift::PIDR_PID12) & +Mask::PIDR_PID12);
3013 }
3014
3024 static inline constexpr uint32 PIDR_PID13(uint32 value) {
3025 return ((value << +Shift::PIDR_PID13) & +Mask::PIDR_PID13);
3026 }
3027
3037 static inline constexpr uint32 PIDR_PID14(uint32 value) {
3038 return ((value << +Shift::PIDR_PID14) & +Mask::PIDR_PID14);
3039 }
3040
3050 static inline constexpr uint32 PIDR_PID15(uint32 value) {
3051 return ((value << +Shift::PIDR_PID15) & +Mask::PIDR_PID15);
3052 }
3053
3063 static inline constexpr uint32 PIDR_PID16(uint32 value) {
3064 return ((value << +Shift::PIDR_PID16) & +Mask::PIDR_PID16);
3065 }
3066
3076 static inline constexpr uint32 PIDR_PID17(uint32 value) {
3077 return ((value << +Shift::PIDR_PID17) & +Mask::PIDR_PID17);
3078 }
3079
3089 static inline constexpr uint32 PIDR_PID18(uint32 value) {
3090 return ((value << +Shift::PIDR_PID18) & +Mask::PIDR_PID18);
3091 }
3092
3102 static inline constexpr uint32 PIDR_PID19(uint32 value) {
3103 return ((value << +Shift::PIDR_PID19) & +Mask::PIDR_PID19);
3104 }
3105
3115 static inline constexpr uint32 PIDR_PID20(uint32 value) {
3116 return ((value << +Shift::PIDR_PID20) & +Mask::PIDR_PID20);
3117 }
3118
3128 static inline constexpr uint32 PIDR_PID21(uint32 value) {
3129 return ((value << +Shift::PIDR_PID21) & +Mask::PIDR_PID21);
3130 }
3131
3141 static inline constexpr uint32 PIDR_PID22(uint32 value) {
3142 return ((value << +Shift::PIDR_PID22) & +Mask::PIDR_PID22);
3143 }
3144
3154 static inline constexpr uint32 PIDR_PID23(uint32 value) {
3155 return ((value << +Shift::PIDR_PID23) & +Mask::PIDR_PID23);
3156 }
3157
3167 static inline constexpr uint32 PIDR_PID24(uint32 value) {
3168 return ((value << +Shift::PIDR_PID24) & +Mask::PIDR_PID24);
3169 }
3170
3180 static inline constexpr uint32 PIDR_PID25(uint32 value) {
3181 return ((value << +Shift::PIDR_PID25) & +Mask::PIDR_PID25);
3182 }
3183
3193 static inline constexpr uint32 PIDR_PID26(uint32 value) {
3194 return ((value << +Shift::PIDR_PID26) & +Mask::PIDR_PID26);
3195 }
3196
3206 static inline constexpr uint32 PIDR_PID27(uint32 value) {
3207 return ((value << +Shift::PIDR_PID27) & +Mask::PIDR_PID27);
3208 }
3209
3219 static inline constexpr uint32 PIDR_PID28(uint32 value) {
3220 return ((value << +Shift::PIDR_PID28) & +Mask::PIDR_PID28);
3221 }
3222
3232 static inline constexpr uint32 PIDR_PID29(uint32 value) {
3233 return ((value << +Shift::PIDR_PID29) & +Mask::PIDR_PID29);
3234 }
3235
3245 static inline constexpr uint32 PIDR_PID30(uint32 value) {
3246 return ((value << +Shift::PIDR_PID30) & +Mask::PIDR_PID30);
3247 }
3248
3258 static inline constexpr uint32 PIDR_PID31(uint32 value) {
3259 return ((value << +Shift::PIDR_PID31) & +Mask::PIDR_PID31);
3260 }
3261
3271 static inline constexpr uint8 PDR_PD(uint8 value) {
3272 return static_cast<uint8>((value << static_cast<uint8>(+Shift::PDR_PD)) & static_cast<uint8>(+Mask::PDR_PD));
3273 }
3274
3314 static inline constexpr uint32 ICR_IRQC(uint32 value) {
3315 return ((value << +Shift::ICR_IRQC) & +Mask::ICR_IRQC);
3316 }
3317
3331 static inline constexpr uint32 ICR_ISF(uint32 value) {
3332 return ((value << +Shift::ICR_ISF) & +Mask::ICR_ISF);
3333 }
3334
3344 static inline constexpr uint32 GICLR_GIWE0(uint32 value) {
3345 return ((value << +Shift::GICLR_GIWE0) & +Mask::GICLR_GIWE0);
3346 }
3347
3357 static inline constexpr uint32 GICLR_GIWE1(uint32 value) {
3358 return ((value << +Shift::GICLR_GIWE1) & +Mask::GICLR_GIWE1);
3359 }
3360
3370 static inline constexpr uint32 GICLR_GIWE2(uint32 value) {
3371 return ((value << +Shift::GICLR_GIWE2) & +Mask::GICLR_GIWE2);
3372 }
3373
3383 static inline constexpr uint32 GICLR_GIWE3(uint32 value) {
3384 return ((value << +Shift::GICLR_GIWE3) & +Mask::GICLR_GIWE3);
3385 }
3386
3396 static inline constexpr uint32 GICLR_GIWE4(uint32 value) {
3397 return ((value << +Shift::GICLR_GIWE4) & +Mask::GICLR_GIWE4);
3398 }
3399
3409 static inline constexpr uint32 GICLR_GIWE5(uint32 value) {
3410 return ((value << +Shift::GICLR_GIWE5) & +Mask::GICLR_GIWE5);
3411 }
3412
3422 static inline constexpr uint32 GICLR_GIWE6(uint32 value) {
3423 return ((value << +Shift::GICLR_GIWE6) & +Mask::GICLR_GIWE6);
3424 }
3425
3435 static inline constexpr uint32 GICLR_GIWE7(uint32 value) {
3436 return ((value << +Shift::GICLR_GIWE7) & +Mask::GICLR_GIWE7);
3437 }
3438
3448 static inline constexpr uint32 GICLR_GIWE8(uint32 value) {
3449 return ((value << +Shift::GICLR_GIWE8) & +Mask::GICLR_GIWE8);
3450 }
3451
3461 static inline constexpr uint32 GICLR_GIWE9(uint32 value) {
3462 return ((value << +Shift::GICLR_GIWE9) & +Mask::GICLR_GIWE9);
3463 }
3464
3474 static inline constexpr uint32 GICLR_GIWE10(uint32 value) {
3475 return ((value << +Shift::GICLR_GIWE10) & +Mask::GICLR_GIWE10);
3476 }
3477
3487 static inline constexpr uint32 GICLR_GIWE11(uint32 value) {
3488 return ((value << +Shift::GICLR_GIWE11) & +Mask::GICLR_GIWE11);
3489 }
3490
3500 static inline constexpr uint32 GICLR_GIWE12(uint32 value) {
3501 return ((value << +Shift::GICLR_GIWE12) & +Mask::GICLR_GIWE12);
3502 }
3503
3513 static inline constexpr uint32 GICLR_GIWE13(uint32 value) {
3514 return ((value << +Shift::GICLR_GIWE13) & +Mask::GICLR_GIWE13);
3515 }
3516
3526 static inline constexpr uint32 GICLR_GIWE14(uint32 value) {
3527 return ((value << +Shift::GICLR_GIWE14) & +Mask::GICLR_GIWE14);
3528 }
3529
3539 static inline constexpr uint32 GICLR_GIWE15(uint32 value) {
3540 return ((value << +Shift::GICLR_GIWE15) & +Mask::GICLR_GIWE15);
3541 }
3542
3548 static inline constexpr uint32 GICLR_GIWD(uint32 value) {
3549 return ((value << +Shift::GICLR_GIWD) & +Mask::GICLR_GIWD);
3550 }
3551
3561 static inline constexpr uint32 GICHR_GIWE16(uint32 value) {
3562 return ((value << +Shift::GICHR_GIWE16) & +Mask::GICHR_GIWE16);
3563 }
3564
3574 static inline constexpr uint32 GICHR_GIWE17(uint32 value) {
3575 return ((value << +Shift::GICHR_GIWE17) & +Mask::GICHR_GIWE17);
3576 }
3577
3587 static inline constexpr uint32 GICHR_GIWE18(uint32 value) {
3588 return ((value << +Shift::GICHR_GIWE18) & +Mask::GICHR_GIWE18);
3589 }
3590
3600 static inline constexpr uint32 GICHR_GIWE19(uint32 value) {
3601 return ((value << +Shift::GICHR_GIWE19) & +Mask::GICHR_GIWE19);
3602 }
3603
3613 static inline constexpr uint32 GICHR_GIWE20(uint32 value) {
3614 return ((value << +Shift::GICHR_GIWE20) & +Mask::GICHR_GIWE20);
3615 }
3616
3626 static inline constexpr uint32 GICHR_GIWE21(uint32 value) {
3627 return ((value << +Shift::GICHR_GIWE21) & +Mask::GICHR_GIWE21);
3628 }
3629
3639 static inline constexpr uint32 GICHR_GIWE22(uint32 value) {
3640 return ((value << +Shift::GICHR_GIWE22) & +Mask::GICHR_GIWE22);
3641 }
3642
3652 static inline constexpr uint32 GICHR_GIWE23(uint32 value) {
3653 return ((value << +Shift::GICHR_GIWE23) & +Mask::GICHR_GIWE23);
3654 }
3655
3665 static inline constexpr uint32 GICHR_GIWE24(uint32 value) {
3666 return ((value << +Shift::GICHR_GIWE24) & +Mask::GICHR_GIWE24);
3667 }
3668
3678 static inline constexpr uint32 GICHR_GIWE25(uint32 value) {
3679 return ((value << +Shift::GICHR_GIWE25) & +Mask::GICHR_GIWE25);
3680 }
3681
3691 static inline constexpr uint32 GICHR_GIWE26(uint32 value) {
3692 return ((value << +Shift::GICHR_GIWE26) & +Mask::GICHR_GIWE26);
3693 }
3694
3704 static inline constexpr uint32 GICHR_GIWE27(uint32 value) {
3705 return ((value << +Shift::GICHR_GIWE27) & +Mask::GICHR_GIWE27);
3706 }
3707
3717 static inline constexpr uint32 GICHR_GIWE28(uint32 value) {
3718 return ((value << +Shift::GICHR_GIWE28) & +Mask::GICHR_GIWE28);
3719 }
3720
3730 static inline constexpr uint32 GICHR_GIWE29(uint32 value) {
3731 return ((value << +Shift::GICHR_GIWE29) & +Mask::GICHR_GIWE29);
3732 }
3733
3743 static inline constexpr uint32 GICHR_GIWE30(uint32 value) {
3744 return ((value << +Shift::GICHR_GIWE30) & +Mask::GICHR_GIWE30);
3745 }
3746
3756 static inline constexpr uint32 GICHR_GIWE31(uint32 value) {
3757 return ((value << +Shift::GICHR_GIWE31) & +Mask::GICHR_GIWE31);
3758 }
3759
3765 static inline constexpr uint32 GICHR_GIWD(uint32 value) {
3766 return ((value << +Shift::GICHR_GIWD) & +Mask::GICHR_GIWD);
3767 }
3768
3782 static inline constexpr uint32 ISFR_ISF0(uint32 value) {
3783 return ((value << +Shift::ISFR_ISF0) & +Mask::ISFR_ISF0);
3784 }
3785
3799 static inline constexpr uint32 ISFR_ISF1(uint32 value) {
3800 return ((value << +Shift::ISFR_ISF1) & +Mask::ISFR_ISF1);
3801 }
3802
3816 static inline constexpr uint32 ISFR_ISF2(uint32 value) {
3817 return ((value << +Shift::ISFR_ISF2) & +Mask::ISFR_ISF2);
3818 }
3819
3833 static inline constexpr uint32 ISFR_ISF3(uint32 value) {
3834 return ((value << +Shift::ISFR_ISF3) & +Mask::ISFR_ISF3);
3835 }
3836
3850 static inline constexpr uint32 ISFR_ISF4(uint32 value) {
3851 return ((value << +Shift::ISFR_ISF4) & +Mask::ISFR_ISF4);
3852 }
3853
3867 static inline constexpr uint32 ISFR_ISF5(uint32 value) {
3868 return ((value << +Shift::ISFR_ISF5) & +Mask::ISFR_ISF5);
3869 }
3870
3884 static inline constexpr uint32 ISFR_ISF6(uint32 value) {
3885 return ((value << +Shift::ISFR_ISF6) & +Mask::ISFR_ISF6);
3886 }
3887
3901 static inline constexpr uint32 ISFR_ISF7(uint32 value) {
3902 return ((value << +Shift::ISFR_ISF7) & +Mask::ISFR_ISF7);
3903 }
3904
3918 static inline constexpr uint32 ISFR_ISF8(uint32 value) {
3919 return ((value << +Shift::ISFR_ISF8) & +Mask::ISFR_ISF8);
3920 }
3921
3935 static inline constexpr uint32 ISFR_ISF9(uint32 value) {
3936 return ((value << +Shift::ISFR_ISF9) & +Mask::ISFR_ISF9);
3937 }
3938
3952 static inline constexpr uint32 ISFR_ISF10(uint32 value) {
3953 return ((value << +Shift::ISFR_ISF10) & +Mask::ISFR_ISF10);
3954 }
3955
3969 static inline constexpr uint32 ISFR_ISF11(uint32 value) {
3970 return ((value << +Shift::ISFR_ISF11) & +Mask::ISFR_ISF11);
3971 }
3972
3986 static inline constexpr uint32 ISFR_ISF12(uint32 value) {
3987 return ((value << +Shift::ISFR_ISF12) & +Mask::ISFR_ISF12);
3988 }
3989
4003 static inline constexpr uint32 ISFR_ISF13(uint32 value) {
4004 return ((value << +Shift::ISFR_ISF13) & +Mask::ISFR_ISF13);
4005 }
4006
4020 static inline constexpr uint32 ISFR_ISF14(uint32 value) {
4021 return ((value << +Shift::ISFR_ISF14) & +Mask::ISFR_ISF14);
4022 }
4023
4037 static inline constexpr uint32 ISFR_ISF15(uint32 value) {
4038 return ((value << +Shift::ISFR_ISF15) & +Mask::ISFR_ISF15);
4039 }
4040
4054 static inline constexpr uint32 ISFR_ISF16(uint32 value) {
4055 return ((value << +Shift::ISFR_ISF16) & +Mask::ISFR_ISF16);
4056 }
4057
4071 static inline constexpr uint32 ISFR_ISF17(uint32 value) {
4072 return ((value << +Shift::ISFR_ISF17) & +Mask::ISFR_ISF17);
4073 }
4074
4088 static inline constexpr uint32 ISFR_ISF18(uint32 value) {
4089 return ((value << +Shift::ISFR_ISF18) & +Mask::ISFR_ISF18);
4090 }
4091
4105 static inline constexpr uint32 ISFR_ISF19(uint32 value) {
4106 return ((value << +Shift::ISFR_ISF19) & +Mask::ISFR_ISF19);
4107 }
4108
4122 static inline constexpr uint32 ISFR_ISF20(uint32 value) {
4123 return ((value << +Shift::ISFR_ISF20) & +Mask::ISFR_ISF20);
4124 }
4125
4139 static inline constexpr uint32 ISFR_ISF21(uint32 value) {
4140 return ((value << +Shift::ISFR_ISF21) & +Mask::ISFR_ISF21);
4141 }
4142
4156 static inline constexpr uint32 ISFR_ISF22(uint32 value) {
4157 return ((value << +Shift::ISFR_ISF22) & +Mask::ISFR_ISF22);
4158 }
4159
4173 static inline constexpr uint32 ISFR_ISF23(uint32 value) {
4174 return ((value << +Shift::ISFR_ISF23) & +Mask::ISFR_ISF23);
4175 }
4176
4190 static inline constexpr uint32 ISFR_ISF24(uint32 value) {
4191 return ((value << +Shift::ISFR_ISF24) & +Mask::ISFR_ISF24);
4192 }
4193
4207 static inline constexpr uint32 ISFR_ISF25(uint32 value) {
4208 return ((value << +Shift::ISFR_ISF25) & +Mask::ISFR_ISF25);
4209 }
4210
4224 static inline constexpr uint32 ISFR_ISF26(uint32 value) {
4225 return ((value << +Shift::ISFR_ISF26) & +Mask::ISFR_ISF26);
4226 }
4227
4241 static inline constexpr uint32 ISFR_ISF27(uint32 value) {
4242 return ((value << +Shift::ISFR_ISF27) & +Mask::ISFR_ISF27);
4243 }
4244
4258 static inline constexpr uint32 ISFR_ISF28(uint32 value) {
4259 return ((value << +Shift::ISFR_ISF28) & +Mask::ISFR_ISF28);
4260 }
4261
4275 static inline constexpr uint32 ISFR_ISF29(uint32 value) {
4276 return ((value << +Shift::ISFR_ISF29) & +Mask::ISFR_ISF29);
4277 }
4278
4292 static inline constexpr uint32 ISFR_ISF30(uint32 value) {
4293 return ((value << +Shift::ISFR_ISF30) & +Mask::ISFR_ISF30);
4294 }
4295
4309 static inline constexpr uint32 ISFR_ISF31(uint32 value) {
4310 return ((value << +Shift::ISFR_ISF31) & +Mask::ISFR_ISF31);
4311 }
4312};
4313
4314/* ***************************************************************************************
4315 * End of file
4316 */
4317
4318#endif /* CHIP_A3754241_08E1_4F86_B049_0FACC9D70DF5 */
Definition chip/src/gpio/GPIO.h:41
static constexpr uint32 ISFR_ISF1(uint32 value)
ISFR - ISF1.
Definition chip/src/gpio/GPIO.h:3799
static constexpr uint32 PIDR_PID3(uint32 value)
PIDR - PID3.
Definition chip/src/gpio/GPIO.h:2894
static constexpr uint32 PDIR_PDI2(uint32 value)
PDIR - PDI2.
Definition chip/src/gpio/GPIO.h:2049
static constexpr uint32 PDDR_PDD28(uint32 value)
PDDR - PDD28.
Definition chip/src/gpio/GPIO.h:2803
static void portToggle(Register &base, uint32 mask)
Reverses the current output logic of the multiple GPIO pins.
Definition chip/src/gpio/GPIO.h:193
static constexpr uint32 PDIR_PDI27(uint32 value)
PDIR - PDI27.
Definition chip/src/gpio/GPIO.h:2374
static constexpr uint32 PTOR_PTTO6(uint32 value)
PORT - PTTO6.
Definition chip/src/gpio/GPIO.h:1685
static void gpioClearInterruptFlags(Register &base, uint32 mask)
Clears GPIO pin interrupt status flags.
static constexpr uint32 PDIR_PDI3(uint32 value)
PDIR - PDI3.
Definition chip/src/gpio/GPIO.h:2062
static constexpr uint32 PDOR_PDO0(uint32 value)
PDOR - PDO0.
Definition chip/src/gpio/GPIO.h:359
static constexpr uint32 PDOR_PDO22(uint32 value)
PDOR - PDO22.
Definition chip/src/gpio/GPIO.h:645
static constexpr uint32 PTOR_PTTO18(uint32 value)
PORT - PTTO18.
Definition chip/src/gpio/GPIO.h:1841
static constexpr uint32 ISFR_ISF16(uint32 value)
ISFR - ISF16.
Definition chip/src/gpio/GPIO.h:4054
static constexpr uint32 PDDR_PDD2(uint32 value)
PDDR - PDD2.
Definition chip/src/gpio/GPIO.h:2465
static constexpr uint32 GICHR_GIWE17(uint32 value)
GICHR - GIWE17.
Definition chip/src/gpio/GPIO.h:3574
static constexpr uint32 PSOR_PTSO21(uint32 value)
PSOR - PTSO21.
Definition chip/src/gpio/GPIO.h:1048
static constexpr uint32 PCOR_PTCO11(uint32 value)
PCOR - PTCO11.
Definition chip/src/gpio/GPIO.h:1334
static constexpr uint32 GICHR_GIWE21(uint32 value)
GICHR - GIWE21.
Definition chip/src/gpio/GPIO.h:3626
static constexpr uint32 PSOR_PTSO25(uint32 value)
PSOR - PTSO25.
Definition chip/src/gpio/GPIO.h:1100
static constexpr uint32 PSOR_PTSO9(uint32 value)
PSOR - PTSO9.
Definition chip/src/gpio/GPIO.h:892
static constexpr uint32 GICHR_GIWD(uint32 value)
GICHR - GIWD.
Definition chip/src/gpio/GPIO.h:3765
static constexpr uint32 PDDR_PDD13(uint32 value)
PDDR - PDD13.
Definition chip/src/gpio/GPIO.h:2608
static constexpr uint32 PDIR_PDI24(uint32 value)
PDIR - PDI24.
Definition chip/src/gpio/GPIO.h:2335
static constexpr uint32 PARAM_IRQNUM(uint32 value)
PARAM - IRQNUM.
Definition chip/src/gpio/GPIO.h:346
static constexpr uint32 PSOR_PTSO11(uint32 value)
PSOR - PTSO11.
Definition chip/src/gpio/GPIO.h:918
static constexpr uint32 PDDR_PDD16(uint32 value)
PDDR - PDD16.
Definition chip/src/gpio/GPIO.h:2647
static constexpr uint32 GICLR_GIWE11(uint32 value)
GICLR - GIWE11.
Definition chip/src/gpio/GPIO.h:3487
static constexpr uint32 PCOR_PTCO30(uint32 value)
PCOR - PTCO30.
Definition chip/src/gpio/GPIO.h:1581
static constexpr uint32 PDDR_PDD10(uint32 value)
PDDR - PDD10.
Definition chip/src/gpio/GPIO.h:2569
static constexpr uint32 PCOR_PTCO25(uint32 value)
PCOR - PTCO25.
Definition chip/src/gpio/GPIO.h:1516
static constexpr uint32 PDIR_PDI5(uint32 value)
PDIR - PDI5.
Definition chip/src/gpio/GPIO.h:2088
static constexpr uint32 PTOR_PTTO14(uint32 value)
PORT - PTTO14.
Definition chip/src/gpio/GPIO.h:1789
static constexpr uint32 PCOR_PTCO17(uint32 value)
PCOR - PTCO17.
Definition chip/src/gpio/GPIO.h:1412
static void getVersionInfo(Register &base, VersionInfo &info)
Get GPIO version information.
static constexpr uint32 PSOR_PTSO19(uint32 value)
PSOR - PTSO19.
Definition chip/src/gpio/GPIO.h:1022
static constexpr uint32 GICHR_GIWE20(uint32 value)
GICHR - GIWE20.
Definition chip/src/gpio/GPIO.h:3613
static constexpr uint32 PDOR_PDO18(uint32 value)
PDOR - PDO18.
Definition chip/src/gpio/GPIO.h:593
static constexpr uint32 PSOR_PTSO0(uint32 value)
PSOR - PTSO0.
Definition chip/src/gpio/GPIO.h:775
static constexpr uint32 PIDR_PID20(uint32 value)
PIDR - PID20.
Definition chip/src/gpio/GPIO.h:3115
static constexpr uint32 PDOR_PDO14(uint32 value)
PDOR - PDO14.
Definition chip/src/gpio/GPIO.h:541
static constexpr uint32 GICLR_GIWE10(uint32 value)
GICLR - GIWE10.
Definition chip/src/gpio/GPIO.h:3474
static constexpr uint32 PIDR_PID2(uint32 value)
PIDR - PID2.
Definition chip/src/gpio/GPIO.h:2881
static constexpr uint32 PDIR_PDI18(uint32 value)
PDIR - PDI18.
Definition chip/src/gpio/GPIO.h:2257
static constexpr uint32 PTOR_PTTO9(uint32 value)
PORT - PTTO9.
Definition chip/src/gpio/GPIO.h:1724
static constexpr uint32 GICHR_GIWE30(uint32 value)
GICHR - GIWE30.
Definition chip/src/gpio/GPIO.h:3743
static constexpr uint32 ISFR_ISF24(uint32 value)
ISFR - ISF24.
Definition chip/src/gpio/GPIO.h:4190
static constexpr uint32 PDIR_PDI20(uint32 value)
PDIR - PDI20.
Definition chip/src/gpio/GPIO.h:2283
static constexpr uint32 ISFR_ISF27(uint32 value)
ISFR - ISF27.
Definition chip/src/gpio/GPIO.h:4241
static constexpr uint32 GICLR_GIWE15(uint32 value)
GICLR - GIWE15.
Definition chip/src/gpio/GPIO.h:3539
static constexpr uint32 PSOR_PTSO14(uint32 value)
PSOR - PTSO14.
Definition chip/src/gpio/GPIO.h:957
static constexpr uint32 ISFR_ISF19(uint32 value)
ISFR - ISF19.
Definition chip/src/gpio/GPIO.h:4105
static constexpr uint32 PTOR_PTTO24(uint32 value)
PORT - PTTO24.
Definition chip/src/gpio/GPIO.h:1919
static constexpr uint32 PIDR_PID28(uint32 value)
PIDR - PID28.
Definition chip/src/gpio/GPIO.h:3219
static constexpr uint32 PDDR_PDD31(uint32 value)
PDDR - PDD31.
Definition chip/src/gpio/GPIO.h:2842
static constexpr uint32 PCOR_PTCO3(uint32 value)
PCOR - PTCO3.
Definition chip/src/gpio/GPIO.h:1230
static constexpr uint32 ICR_ISF(uint32 value)
ICR - ISF.
Definition chip/src/gpio/GPIO.h:3331
static constexpr uint32 GICLR_GIWE1(uint32 value)
GICLR - GIWE1.
Definition chip/src/gpio/GPIO.h:3357
static constexpr uint32 GICLR_GIWE12(uint32 value)
GICLR - GIWE12.
Definition chip/src/gpio/GPIO.h:3500
static constexpr uint32 PSOR_PTSO4(uint32 value)
PSOR - PTSO4.
Definition chip/src/gpio/GPIO.h:827
static constexpr uint32 GICHR_GIWE27(uint32 value)
GICHR - GIWE27.
Definition chip/src/gpio/GPIO.h:3704
static constexpr uint32 ISFR_ISF11(uint32 value)
ISFR - ISF11.
Definition chip/src/gpio/GPIO.h:3969
static constexpr uint32 PDIR_PDI14(uint32 value)
PDIR - PDI14.
Definition chip/src/gpio/GPIO.h:2205
static constexpr uint32 PDIR_PDI17(uint32 value)
PDIR - PDI17.
Definition chip/src/gpio/GPIO.h:2244
static constexpr uint32 PCOR_PTCO31(uint32 value)
PCOR - PTCO31.
Definition chip/src/gpio/GPIO.h:1594
static constexpr uint32 PDOR_PDO19(uint32 value)
PDOR - PDO19.
Definition chip/src/gpio/GPIO.h:606
static constexpr uint32 PIDR_PID16(uint32 value)
PIDR - PID16.
Definition chip/src/gpio/GPIO.h:3063
static constexpr uint32 PDDR_PDD4(uint32 value)
PDDR - PDD4.
Definition chip/src/gpio/GPIO.h:2491
static constexpr uint32 PTOR_PTTO8(uint32 value)
PORT - PTTO8.
Definition chip/src/gpio/GPIO.h:1711
static constexpr uint32 PIDR_PID15(uint32 value)
PIDR - PID15.
Definition chip/src/gpio/GPIO.h:3050
static constexpr uint32 GICLR_GIWE8(uint32 value)
GICLR - GIWE8.
Definition chip/src/gpio/GPIO.h:3448
static constexpr uint32 ISFR_ISF3(uint32 value)
ISFR - ISF3.
Definition chip/src/gpio/GPIO.h:3833
static constexpr uint32 PIDR_PID25(uint32 value)
PIDR - PID25.
Definition chip/src/gpio/GPIO.h:3180
static constexpr uint32 PDOR_PDO1(uint32 value)
PDOR - PDO1.
Definition chip/src/gpio/GPIO.h:372
static constexpr uint32 PTOR_PTTO11(uint32 value)
PORT - PTTO11.
Definition chip/src/gpio/GPIO.h:1750
static constexpr uint32 PCOR_PTCO19(uint32 value)
PCOR - PTCO19.
Definition chip/src/gpio/GPIO.h:1438
static constexpr uint32 PIDR_PID13(uint32 value)
PIDR - PID13.
Definition chip/src/gpio/GPIO.h:3024
static constexpr uint32 PTOR_PTTO2(uint32 value)
PORT - PTTO2.
Definition chip/src/gpio/GPIO.h:1633
static constexpr uint32 PSOR_PTSO17(uint32 value)
PSOR - PTSO17.
Definition chip/src/gpio/GPIO.h:996
static constexpr uint32 PDDR_PDD22(uint32 value)
PDDR - PDD22.
Definition chip/src/gpio/GPIO.h:2725
static constexpr uint32 PTOR_PTTO1(uint32 value)
PORT - PTTO1.
Definition chip/src/gpio/GPIO.h:1620
static constexpr uint32 PCOR_PTCO9(uint32 value)
PCOR - PTCO9.
Definition chip/src/gpio/GPIO.h:1308
static constexpr uint32 ISFR_ISF7(uint32 value)
ISFR - ISF7.
Definition chip/src/gpio/GPIO.h:3901
static constexpr uint32 PSOR_PTSO30(uint32 value)
PSOR - PTSO30.
Definition chip/src/gpio/GPIO.h:1165
static constexpr uint32 ISFR_ISF18(uint32 value)
ISFR - ISF18.
Definition chip/src/gpio/GPIO.h:4088
static constexpr uint32 PDDR_PDD25(uint32 value)
PDDR - PDD25.
Definition chip/src/gpio/GPIO.h:2764
static constexpr uint32 PCOR_PTCO12(uint32 value)
PCOR - PTCO12.
Definition chip/src/gpio/GPIO.h:1347
static void portInputDisable(Register &base, uint32 mask)
Disable port input.
Definition chip/src/gpio/GPIO.h:146
static constexpr uint32 PSOR_PTSO28(uint32 value)
PSOR - PTSO28.
Definition chip/src/gpio/GPIO.h:1139
static constexpr uint32 PDOR_PDO8(uint32 value)
PDOR - PDO8.
Definition chip/src/gpio/GPIO.h:463
static constexpr uint32 PDIR_PDI8(uint32 value)
PDIR - PDI8.
Definition chip/src/gpio/GPIO.h:2127
static constexpr uint32 PIDR_PID14(uint32 value)
PIDR - PID14.
Definition chip/src/gpio/GPIO.h:3037
static constexpr uint32 PIDR_PID18(uint32 value)
PIDR - PID18.
Definition chip/src/gpio/GPIO.h:3089
static constexpr uint32 ISFR_ISF5(uint32 value)
ISFR - ISF5.
Definition chip/src/gpio/GPIO.h:3867
static constexpr uint32 PTOR_PTTO4(uint32 value)
PORT - PTTO4.
Definition chip/src/gpio/GPIO.h:1659
static constexpr uint32 ISFR_ISF0(uint32 value)
ISFR - ISF0.
Definition chip/src/gpio/GPIO.h:3782
static uint32 pinRead(Register &base, uint32 pin)
Reads the current input value of the GPIO port.
Definition chip/src/gpio/GPIO.h:206
static void setPinInterruptConfig(Register &base, uint32 pin, InterruptConfig config)
Configures the gpio pin interrupt/DMA request.
Definition chip/src/gpio/GPIO.h:231
static constexpr uint32 PDOR_PDO20(uint32 value)
PDOR - PDO20.
Definition chip/src/gpio/GPIO.h:619
static constexpr uint32 PDOR_PDO3(uint32 value)
PDOR - PDO3.
Definition chip/src/gpio/GPIO.h:398
static constexpr uint32 PTOR_PTTO22(uint32 value)
PORT - PTTO22.
Definition chip/src/gpio/GPIO.h:1893
static constexpr uint32 GICLR_GIWE5(uint32 value)
GICLR - GIWE5.
Definition chip/src/gpio/GPIO.h:3409
static constexpr uint32 ISFR_ISF31(uint32 value)
ISFR - ISF31.
Definition chip/src/gpio/GPIO.h:4309
static constexpr uint32 GICLR_GIWE6(uint32 value)
GICLR - GIWE6.
Definition chip/src/gpio/GPIO.h:3422
static constexpr uint32 PTOR_PTTO15(uint32 value)
PORT - PTTO15.
Definition chip/src/gpio/GPIO.h:1802
static void pinClearInterruptFlag(Register &base, uint32 pin)
Clear GPIO individual pin's interrupt status flag.
static constexpr uint32 ISFR_ISF12(uint32 value)
ISFR - ISF12.
Definition chip/src/gpio/GPIO.h:3986
static constexpr uint32 PDIR_PDI31(uint32 value)
PDIR - PDI31.
Definition chip/src/gpio/GPIO.h:2426
static constexpr uint32 PDDR_PDD5(uint32 value)
PDDR - PDD5.
Definition chip/src/gpio/GPIO.h:2504
static constexpr uint32 ISFR_ISF4(uint32 value)
ISFR - ISF4.
Definition chip/src/gpio/GPIO.h:3850
static constexpr uint32 PIDR_PID10(uint32 value)
PIDR - PID10.
Definition chip/src/gpio/GPIO.h:2985
static constexpr uint32 PDIR_PDI21(uint32 value)
PDIR - PDI21.
Definition chip/src/gpio/GPIO.h:2296
static constexpr uint32 PDIR_PDI0(uint32 value)
PDIR - PDI0.
Definition chip/src/gpio/GPIO.h:2023
static constexpr uint32 PCOR_PTCO6(uint32 value)
PCOR - PTCO6.
Definition chip/src/gpio/GPIO.h:1269
static constexpr uint32 PIDR_PID27(uint32 value)
PIDR - PID27.
Definition chip/src/gpio/GPIO.h:3206
static constexpr uint32 PCOR_PTCO10(uint32 value)
PCOR - PTCO10.
Definition chip/src/gpio/GPIO.h:1321
static constexpr uint32 PDOR_PDO27(uint32 value)
PDOR - PDO27.
Definition chip/src/gpio/GPIO.h:710
static uint32 getPinsDMARequestFlags(Register &base)
Reads the GPIO DMA request flags. The corresponding flag will be cleared automatically at the complet...
Definition chip/src/gpio/GPIO.h:275
static constexpr uint32 GICHR_GIWE23(uint32 value)
GICHR - GIWE23.
Definition chip/src/gpio/GPIO.h:3652
static constexpr uint32 PDIR_PDI28(uint32 value)
PDIR - PDI28.
Definition chip/src/gpio/GPIO.h:2387
static constexpr uint32 PSOR_PTSO3(uint32 value)
PSOR - PTSO3.
Definition chip/src/gpio/GPIO.h:814
static constexpr uint32 PIDR_PID11(uint32 value)
PIDR - PID11.
Definition chip/src/gpio/GPIO.h:2998
static constexpr uint32 PDOR_PDO23(uint32 value)
PDOR - PDO23.
Definition chip/src/gpio/GPIO.h:658
static constexpr uint32 PDIR_PDI15(uint32 value)
PDIR - PDI15.
Definition chip/src/gpio/GPIO.h:2218
static constexpr uint32 PIDR_PID23(uint32 value)
PIDR - PID23.
Definition chip/src/gpio/GPIO.h:3154
static constexpr uint32 PDDR_PDD6(uint32 value)
PDDR - PDD6.
Definition chip/src/gpio/GPIO.h:2517
static constexpr uint32 ISFR_ISF22(uint32 value)
ISFR - ISF22.
Definition chip/src/gpio/GPIO.h:4156
static constexpr uint32 PDDR_PDD1(uint32 value)
PDDR - PDD1.
Definition chip/src/gpio/GPIO.h:2452
static constexpr uint32 PCOR_PTCO16(uint32 value)
PCOR - PTCO16.
Definition chip/src/gpio/GPIO.h:1399
static constexpr uint32 PDOR_PDO26(uint32 value)
PDOR - PDO26.
Definition chip/src/gpio/GPIO.h:697
static constexpr uint32 ICR_IRQC(uint32 value)
ICR - IRQC.
Definition chip/src/gpio/GPIO.h:3314
static constexpr uint32 PDIR_PDI12(uint32 value)
PDIR - PDI12.
Definition chip/src/gpio/GPIO.h:2179
static constexpr uint32 ISFR_ISF14(uint32 value)
ISFR - ISF14.
Definition chip/src/gpio/GPIO.h:4020
static constexpr uint32 ISFR_ISF30(uint32 value)
ISFR - ISF30.
Definition chip/src/gpio/GPIO.h:4292
static constexpr uint32 PDIR_PDI9(uint32 value)
PDIR - PDI9.
Definition chip/src/gpio/GPIO.h:2140
static constexpr uint32 GICLR_GIWD(uint32 value)
GICLR - GIWD.
Definition chip/src/gpio/GPIO.h:3548
static constexpr uint32 PDOR_PDO7(uint32 value)
PDOR - PDO7.
Definition chip/src/gpio/GPIO.h:450
static constexpr uint32 ISFR_ISF23(uint32 value)
ISFR - ISF23.
Definition chip/src/gpio/GPIO.h:4173
static constexpr uint32 PDDR_PDD30(uint32 value)
PDDR - PDD30.
Definition chip/src/gpio/GPIO.h:2829
static constexpr uint32 PDDR_PDD12(uint32 value)
PDDR - PDD12.
Definition chip/src/gpio/GPIO.h:2595
static constexpr uint32 PDOR_PDO13(uint32 value)
PDOR - PDO13.
Definition chip/src/gpio/GPIO.h:528
static constexpr uint32 PIDR_PID6(uint32 value)
PIDR - PID6.
Definition chip/src/gpio/GPIO.h:2933
static constexpr uint32 PIDR_PID7(uint32 value)
PIDR - PID7.
Definition chip/src/gpio/GPIO.h:2946
static constexpr uint32 PSOR_PTSO23(uint32 value)
PSOR - PTSO23.
Definition chip/src/gpio/GPIO.h:1074
static constexpr uint32 PIDR_PID29(uint32 value)
PIDR - PID29.
Definition chip/src/gpio/GPIO.h:3232
static constexpr uint32 GICHR_GIWE22(uint32 value)
GICHR - GIWE22.
Definition chip/src/gpio/GPIO.h:3639
static constexpr uint32 PDIR_PDI23(uint32 value)
PDIR - PDI23.
Definition chip/src/gpio/GPIO.h:2322
static constexpr uint32 PSOR_PTSO29(uint32 value)
PSOR - PTSO29.
Definition chip/src/gpio/GPIO.h:1152
static constexpr uint32 GICLR_GIWE0(uint32 value)
GICLR - GIWE0.
Definition chip/src/gpio/GPIO.h:3344
static constexpr uint32 PSOR_PTSO7(uint32 value)
PSOR - PTSO7.
Definition chip/src/gpio/GPIO.h:866
static constexpr uint32 PDOR_PDO10(uint32 value)
PDOR - PDO10.
Definition chip/src/gpio/GPIO.h:489
static constexpr uint32 ISFR_ISF29(uint32 value)
ISFR - ISF29.
Definition chip/src/gpio/GPIO.h:4275
static constexpr uint32 PDIR_PDI6(uint32 value)
PDIR - PDI6.
Definition chip/src/gpio/GPIO.h:2101
static constexpr uint32 PTOR_PTTO17(uint32 value)
PORT - PTTO17.
Definition chip/src/gpio/GPIO.h:1828
static void pinWrite(Register &base, uint32 pin, uint8 output)
Sets the output level of the multiple GPIO pins to the logic 1 or 0.
Definition chip/src/gpio/GPIO.h:159
static constexpr uint32 PCOR_PTCO15(uint32 value)
PCOR - PTCO15.
Definition chip/src/gpio/GPIO.h:1386
static constexpr uint8 PDR_PD(uint8 value)
PDR - PD.
Definition chip/src/gpio/GPIO.h:3271
static constexpr uint32 PCOR_PTCO23(uint32 value)
PCOR - PTCO23.
Definition chip/src/gpio/GPIO.h:1490
static constexpr uint32 PSOR_PTSO15(uint32 value)
PSOR - PTSO15.
Definition chip/src/gpio/GPIO.h:970
static constexpr uint32 VERID_MINOR(uint32 value)
VERID - MINOR.
Definition chip/src/gpio/GPIO.h:328
static constexpr uint32 PSOR_PTSO27(uint32 value)
PSOR - PTSO27.
Definition chip/src/gpio/GPIO.h:1126
static constexpr uint32 PCOR_PTCO29(uint32 value)
PCOR - PTCO29.
Definition chip/src/gpio/GPIO.h:1568
static constexpr uint32 PTOR_PTTO31(uint32 value)
PORT - PTTO31.
Definition chip/src/gpio/GPIO.h:2010
static constexpr uint32 PIDR_PID24(uint32 value)
PIDR - PID24.
Definition chip/src/gpio/GPIO.h:3167
static constexpr uint32 PDDR_PDD14(uint32 value)
PDDR - PDD14.
Definition chip/src/gpio/GPIO.h:2621
static constexpr uint32 PTOR_PTTO13(uint32 value)
PORT - PTTO13.
Definition chip/src/gpio/GPIO.h:1776
static constexpr uint32 ISFR_ISF10(uint32 value)
ISFR - ISF10.
Definition chip/src/gpio/GPIO.h:3952
static constexpr uint32 PDOR_PDO15(uint32 value)
PDOR - PDO15.
Definition chip/src/gpio/GPIO.h:554
static constexpr uint32 PDOR_PDO5(uint32 value)
PDOR - PDO5.
Definition chip/src/gpio/GPIO.h:424
static constexpr uint32 PIDR_PID9(uint32 value)
PIDR - PID9.
Definition chip/src/gpio/GPIO.h:2972
static constexpr uint32 GICLR_GIWE14(uint32 value)
GICLR - GIWE14.
Definition chip/src/gpio/GPIO.h:3526
static constexpr uint32 PIDR_PID19(uint32 value)
PIDR - PID19.
Definition chip/src/gpio/GPIO.h:3102
static constexpr uint32 PSOR_PTSO6(uint32 value)
PSOR - PTSO6.
Definition chip/src/gpio/GPIO.h:853
static constexpr uint32 PDDR_PDD3(uint32 value)
PDDR - PDD3.
Definition chip/src/gpio/GPIO.h:2478
static constexpr uint32 PTOR_PTTO12(uint32 value)
PORT - PTTO12.
Definition chip/src/gpio/GPIO.h:1763
static constexpr uint32 PCOR_PTCO7(uint32 value)
PCOR - PTCO7.
Definition chip/src/gpio/GPIO.h:1282
static constexpr uint32 PDOR_PDO29(uint32 value)
PDOR - PDO29.
Definition chip/src/gpio/GPIO.h:736
static constexpr uint32 ISFR_ISF25(uint32 value)
ISFR - ISF25.
Definition chip/src/gpio/GPIO.h:4207
static constexpr uint32 PDIR_PDI7(uint32 value)
PDIR - PDI7.
Definition chip/src/gpio/GPIO.h:2114
static constexpr uint32 PDIR_PDI30(uint32 value)
PDIR - PDI30.
Definition chip/src/gpio/GPIO.h:2413
virtual ~GPIO(void) override
Destroy the object.
static constexpr uint32 PCOR_PTCO18(uint32 value)
PCOR - PTCO18.
Definition chip/src/gpio/GPIO.h:1425
static constexpr uint32 PTOR_PTTO21(uint32 value)
PORT - PTTO21.
Definition chip/src/gpio/GPIO.h:1880
static constexpr uint32 PCOR_PTCO5(uint32 value)
PCOR - PTCO5.
Definition chip/src/gpio/GPIO.h:1256
static constexpr uint32 PIDR_PID17(uint32 value)
PIDR - PID17.
Definition chip/src/gpio/GPIO.h:3076
static constexpr uint32 PSOR_PTSO24(uint32 value)
PSOR - PTSO24.
Definition chip/src/gpio/GPIO.h:1087
static constexpr uint32 GICHR_GIWE25(uint32 value)
GICHR - GIWE25.
Definition chip/src/gpio/GPIO.h:3678
static constexpr uint32 PDIR_PDI29(uint32 value)
PDIR - PDI29.
Definition chip/src/gpio/GPIO.h:2400
static constexpr uint32 PSOR_PTSO13(uint32 value)
PSOR - PTSO13.
Definition chip/src/gpio/GPIO.h:944
static void setMultipleInterruptPinsConfig(Register &base, uint32 mask, InterruptConfig config)
Sets the GPIO interrupt configuration in PCR register for multiple pins.
Definition chip/src/gpio/GPIO.h:300
static constexpr uint32 PTOR_PTTO19(uint32 value)
PORT - PTTO19.
Definition chip/src/gpio/GPIO.h:1854
static constexpr uint32 PTOR_PTTO0(uint32 value)
PORT - PTTO0.
Definition chip/src/gpio/GPIO.h:1607
static constexpr uint32 PCOR_PTCO24(uint32 value)
PCOR - PTCO24.
Definition chip/src/gpio/GPIO.h:1503
static constexpr uint32 PDOR_PDO17(uint32 value)
PDOR - PDO17.
Definition chip/src/gpio/GPIO.h:580
static constexpr uint32 PDOR_PDO21(uint32 value)
PDOR - PDO21.
Definition chip/src/gpio/GPIO.h:632
static constexpr uint32 PTOR_PTTO26(uint32 value)
PORT - PTTO26.
Definition chip/src/gpio/GPIO.h:1945
static constexpr uint32 PDOR_PDO4(uint32 value)
PDOR - PDO4.
Definition chip/src/gpio/GPIO.h:411
static constexpr uint32 GICHR_GIWE31(uint32 value)
GICHR - GIWE31.
Definition chip/src/gpio/GPIO.h:3756
static void portClear(Register &base, uint32 mask)
Sets the output level of the multiple GPIO pins to the logic 0.
Definition chip/src/gpio/GPIO.h:183
static constexpr uint32 ISFR_ISF13(uint32 value)
ISFR - ISF13.
Definition chip/src/gpio/GPIO.h:4003
static constexpr uint32 PSOR_PTSO16(uint32 value)
PSOR - PTSO16.
Definition chip/src/gpio/GPIO.h:983
static constexpr uint32 ISFR_ISF8(uint32 value)
ISFR - ISF8.
Definition chip/src/gpio/GPIO.h:3918
static constexpr uint32 PIDR_PID0(uint32 value)
PIDR - PID0.
Definition chip/src/gpio/GPIO.h:2855
static void portInputEnable(Register &base, uint32 mask)
Enable port input.
Definition chip/src/gpio/GPIO.h:136
static constexpr uint32 PDIR_PDI22(uint32 value)
PDIR - PDI22.
Definition chip/src/gpio/GPIO.h:2309
static constexpr uint32 ISFR_ISF26(uint32 value)
ISFR - ISF26.
Definition chip/src/gpio/GPIO.h:4224
static constexpr uint32 PCOR_PTCO4(uint32 value)
PCOR - PTCO4.
Definition chip/src/gpio/GPIO.h:1243
static constexpr uint32 ISFR_ISF15(uint32 value)
ISFR - ISF15.
Definition chip/src/gpio/GPIO.h:4037
static constexpr uint32 PIDR_PID12(uint32 value)
PIDR - PID12.
Definition chip/src/gpio/GPIO.h:3011
static constexpr uint32 PCOR_PTCO27(uint32 value)
PCOR - PTCO27.
Definition chip/src/gpio/GPIO.h:1542
static constexpr uint32 GICLR_GIWE2(uint32 value)
GICLR - GIWE2.
Definition chip/src/gpio/GPIO.h:3370
static constexpr uint32 PCOR_PTCO22(uint32 value)
PCOR - PTCO22.
Definition chip/src/gpio/GPIO.h:1477
static constexpr uint32 PTOR_PTTO30(uint32 value)
PORT - PTTO30.
Definition chip/src/gpio/GPIO.h:1997
static constexpr uint32 PCOR_PTCO20(uint32 value)
PCOR - PTCO20.
Definition chip/src/gpio/GPIO.h:1451
static constexpr uint32 GICHR_GIWE19(uint32 value)
GICHR - GIWE19.
Definition chip/src/gpio/GPIO.h:3600
static constexpr uint32 PTOR_PTTO10(uint32 value)
PORT - PTTO10.
Definition chip/src/gpio/GPIO.h:1737
static constexpr uint32 PDOR_PDO25(uint32 value)
PDOR - PDO25.
Definition chip/src/gpio/GPIO.h:684
static constexpr uint32 PSOR_PTSO2(uint32 value)
PSOR - PTSO2.
Definition chip/src/gpio/GPIO.h:801
static constexpr uint32 GICHR_GIWE16(uint32 value)
GICHR - GIWE16.
Definition chip/src/gpio/GPIO.h:3561
GPIO(void)
Construct a new object.
static constexpr uint32 PCOR_PTCO2(uint32 value)
PCOR - PTCO2.
Definition chip/src/gpio/GPIO.h:1217
static constexpr uint32 PTOR_PTTO29(uint32 value)
PORT - PTTO29.
Definition chip/src/gpio/GPIO.h:1984
static constexpr uint32 PIDR_PID22(uint32 value)
PIDR - PID22.
Definition chip/src/gpio/GPIO.h:3141
static constexpr uint32 PSOR_PTSO31(uint32 value)
PSOR - PTSO31.
Definition chip/src/gpio/GPIO.h:1178
static constexpr uint32 PDDR_PDD18(uint32 value)
PDDR - PDD18.
Definition chip/src/gpio/GPIO.h:2673
static constexpr uint32 PSOR_PTSO22(uint32 value)
PSOR - PTSO22.
Definition chip/src/gpio/GPIO.h:1061
static constexpr uint32 PCOR_PTCO14(uint32 value)
PCOR - PTCO14.
Definition chip/src/gpio/GPIO.h:1373
static constexpr uint32 PDOR_PDO12(uint32 value)
PDOR - PDO12.
Definition chip/src/gpio/GPIO.h:515
static constexpr uint32 PIDR_PID21(uint32 value)
PIDR - PID21.
Definition chip/src/gpio/GPIO.h:3128
static constexpr uint32 VERID_FEATURE(uint32 value)
VERID - FEATURE.
Definition chip/src/gpio/GPIO.h:319
static constexpr uint32 PDDR_PDD19(uint32 value)
PDDR - PDD19.
Definition chip/src/gpio/GPIO.h:2686
static constexpr uint32 PCOR_PTCO26(uint32 value)
PCOR - PTCO26.
Definition chip/src/gpio/GPIO.h:1529
static constexpr uint32 GICHR_GIWE28(uint32 value)
GICHR - GIWE28.
Definition chip/src/gpio/GPIO.h:3717
static constexpr uint32 PDDR_PDD26(uint32 value)
PDDR - PDD26.
Definition chip/src/gpio/GPIO.h:2777
static constexpr uint32 PDDR_PDD0(uint32 value)
PDDR - PDD0.
Definition chip/src/gpio/GPIO.h:2439
static constexpr uint32 PDDR_PDD8(uint32 value)
PDDR - PDD8.
Definition chip/src/gpio/GPIO.h:2543
static constexpr uint32 PDOR_PDO16(uint32 value)
PDOR - PDO16.
Definition chip/src/gpio/GPIO.h:567
static constexpr uint32 PIDR_PID26(uint32 value)
PIDR - PID26.
Definition chip/src/gpio/GPIO.h:3193
static constexpr uint32 PSOR_PTSO12(uint32 value)
PSOR - PTSO12.
Definition chip/src/gpio/GPIO.h:931
static constexpr uint32 PCOR_PTCO21(uint32 value)
PCOR - PTCO21.
Definition chip/src/gpio/GPIO.h:1464
static constexpr uint32 PDIR_PDI10(uint32 value)
PDIR - PDI10.
Definition chip/src/gpio/GPIO.h:2153
static constexpr uint32 PDDR_PDD24(uint32 value)
PDDR - PDD24.
Definition chip/src/gpio/GPIO.h:2751
static constexpr uint32 PDOR_PDO6(uint32 value)
PDOR - PDO6.
Definition chip/src/gpio/GPIO.h:437
static constexpr uint32 PDDR_PDD21(uint32 value)
PDDR - PDD21.
Definition chip/src/gpio/GPIO.h:2712
static constexpr uint32 PDOR_PDO2(uint32 value)
PDOR - PDO2.
Definition chip/src/gpio/GPIO.h:385
static constexpr uint32 ISFR_ISF17(uint32 value)
ISFR - ISF17.
Definition chip/src/gpio/GPIO.h:4071
static uint32 gpioGetInterruptFlags(Register &base)
Read the GPIO interrupt status flags.
static constexpr uint32 PTOR_PTTO20(uint32 value)
PORT - PTTO20.
Definition chip/src/gpio/GPIO.h:1867
static constexpr uint32 PDOR_PDO30(uint32 value)
PDOR - PDO30.
Definition chip/src/gpio/GPIO.h:749
static constexpr uint32 PTOR_PTTO25(uint32 value)
PORT - PTTO25.
Definition chip/src/gpio/GPIO.h:1932
static constexpr uint32 PDIR_PDI1(uint32 value)
PDIR - PDI1.
Definition chip/src/gpio/GPIO.h:2036
static constexpr uint32 PCOR_PTCO13(uint32 value)
PCOR - PTCO13.
Definition chip/src/gpio/GPIO.h:1360
static constexpr uint32 PCOR_PTCO1(uint32 value)
PCOR - PTCO1.
Definition chip/src/gpio/GPIO.h:1204
static constexpr uint32 PSOR_PTSO10(uint32 value)
PSOR - PTSO10.
Definition chip/src/gpio/GPIO.h:905
static constexpr uint32 PIDR_PID8(uint32 value)
PIDR - PID8.
Definition chip/src/gpio/GPIO.h:2959
static constexpr uint32 ISFR_ISF9(uint32 value)
ISFR - ISF9.
Definition chip/src/gpio/GPIO.h:3935
static constexpr uint32 PDDR_PDD9(uint32 value)
PDDR - PDD9.
Definition chip/src/gpio/GPIO.h:2556
static constexpr uint32 PDIR_PDI16(uint32 value)
PDIR - PDI16.
Definition chip/src/gpio/GPIO.h:2231
static constexpr uint32 PDIR_PDI13(uint32 value)
PDIR - PDI13.
Definition chip/src/gpio/GPIO.h:2192
static constexpr uint32 PDIR_PDI25(uint32 value)
PDIR - PDI25.
Definition chip/src/gpio/GPIO.h:2348
static constexpr uint32 GICLR_GIWE3(uint32 value)
GICLR - GIWE3.
Definition chip/src/gpio/GPIO.h:3383
static constexpr uint32 GICLR_GIWE4(uint32 value)
GICLR - GIWE4.
Definition chip/src/gpio/GPIO.h:3396
static constexpr uint32 PIDR_PID5(uint32 value)
PIDR - PID5.
Definition chip/src/gpio/GPIO.h:2920
static constexpr uint32 PCOR_PTCO28(uint32 value)
PCOR - PTCO28.
Definition chip/src/gpio/GPIO.h:1555
static constexpr uint32 PDOR_PDO24(uint32 value)
PDOR - PDO24.
Definition chip/src/gpio/GPIO.h:671
static constexpr uint32 PSOR_PTSO5(uint32 value)
PSOR - PTSO5.
Definition chip/src/gpio/GPIO.h:840
static constexpr uint32 PSOR_PTSO26(uint32 value)
PSOR - PTSO26.
Definition chip/src/gpio/GPIO.h:1113
static constexpr uint32 PDDR_PDD27(uint32 value)
PDDR - PDD27.
Definition chip/src/gpio/GPIO.h:2790
static constexpr uint32 PSOR_PTSO20(uint32 value)
PSOR - PTSO20.
Definition chip/src/gpio/GPIO.h:1035
static constexpr uint32 PSOR_PTSO1(uint32 value)
PSOR - PTSO1.
Definition chip/src/gpio/GPIO.h:788
static constexpr uint32 PTOR_PTTO16(uint32 value)
PORT - PTTO16.
Definition chip/src/gpio/GPIO.h:1815
static constexpr uint32 PCOR_PTCO0(uint32 value)
PCOR - PTCO0.
Definition chip/src/gpio/GPIO.h:1191
static constexpr uint32 GICHR_GIWE26(uint32 value)
GICHR - GIWE26.
Definition chip/src/gpio/GPIO.h:3691
static constexpr uint32 PDDR_PDD7(uint32 value)
PDDR - PDD7.
Definition chip/src/gpio/GPIO.h:2530
static constexpr uint32 GICHR_GIWE18(uint32 value)
GICHR - GIWE18.
Definition chip/src/gpio/GPIO.h:3587
static constexpr uint32 PTOR_PTTO5(uint32 value)
PORT - PTTO5.
Definition chip/src/gpio/GPIO.h:1672
static constexpr uint32 GICHR_GIWE29(uint32 value)
GICHR - GIWE29.
Definition chip/src/gpio/GPIO.h:3730
static constexpr uint32 PDIR_PDI26(uint32 value)
PDIR - PDI26.
Definition chip/src/gpio/GPIO.h:2361
static void portSet(Register &base, uint32 mask)
Sets the output level of the multiple GPIO pins to the logic 1.
Definition chip/src/gpio/GPIO.h:173
static constexpr uint32 PTOR_PTTO23(uint32 value)
PORT - PTTO23.
Definition chip/src/gpio/GPIO.h:1906
static constexpr uint32 PDIR_PDI4(uint32 value)
PDIR - PDI4.
Definition chip/src/gpio/GPIO.h:2075
static constexpr uint32 PDDR_PDD20(uint32 value)
PDDR - PDD20.
Definition chip/src/gpio/GPIO.h:2699
static constexpr uint32 PDOR_PDO9(uint32 value)
PDOR - PDO9.
Definition chip/src/gpio/GPIO.h:476
static constexpr uint32 PTOR_PTTO3(uint32 value)
PORT - PTTO3.
Definition chip/src/gpio/GPIO.h:1646
static constexpr uint32 ISFR_ISF21(uint32 value)
ISFR - ISF21.
Definition chip/src/gpio/GPIO.h:4139
static constexpr uint32 ISFR_ISF6(uint32 value)
ISFR - ISF6.
Definition chip/src/gpio/GPIO.h:3884
static constexpr uint32 GICLR_GIWE7(uint32 value)
GICLR - GIWE7.
Definition chip/src/gpio/GPIO.h:3435
static constexpr uint32 PIDR_PID31(uint32 value)
PIDR - PID31.
Definition chip/src/gpio/GPIO.h:3258
static constexpr uint32 PDOR_PDO31(uint32 value)
PDOR - PDO31.
Definition chip/src/gpio/GPIO.h:762
static constexpr uint32 ISFR_ISF20(uint32 value)
ISFR - ISF20.
Definition chip/src/gpio/GPIO.h:4122
static constexpr uint32 PIDR_PID1(uint32 value)
PIDR - PID1.
Definition chip/src/gpio/GPIO.h:2868
static constexpr uint32 PDOR_PDO11(uint32 value)
PDOR - PDO11.
Definition chip/src/gpio/GPIO.h:502
static constexpr uint32 PTOR_PTTO27(uint32 value)
PORT - PTTO27.
Definition chip/src/gpio/GPIO.h:1958
static constexpr uint32 VERID_MAJOR(uint32 value)
VERID - MAJOR.
Definition chip/src/gpio/GPIO.h:337
static constexpr uint32 PCOR_PTCO8(uint32 value)
PCOR - PTCO8.
Definition chip/src/gpio/GPIO.h:1295
static constexpr uint32 ISFR_ISF2(uint32 value)
ISFR - ISF2.
Definition chip/src/gpio/GPIO.h:3816
static constexpr uint32 GICLR_GIWE13(uint32 value)
GICLR - GIWE13.
Definition chip/src/gpio/GPIO.h:3513
static constexpr uint32 ISFR_ISF28(uint32 value)
ISFR - ISF28.
Definition chip/src/gpio/GPIO.h:4258
static constexpr uint32 PDIR_PDI11(uint32 value)
PDIR - PDI11.
Definition chip/src/gpio/GPIO.h:2166
static void pinInit(Register &base, uint32 pin, const PinConfig &config)
Initializes a GPIO pin used by the board.
static constexpr uint32 PIDR_PID4(uint32 value)
PIDR - PID4.
Definition chip/src/gpio/GPIO.h:2907
static uint8 pinGetInterruptFlag(Register &base, uint32 pin)
Read individual pin's interrupt status flag.
static constexpr uint32 PDDR_PDD23(uint32 value)
PDDR - PDD23.
Definition chip/src/gpio/GPIO.h:2738
static constexpr uint32 PDIR_PDI19(uint32 value)
PDIR - PDI19.
Definition chip/src/gpio/GPIO.h:2270
static constexpr uint32 PSOR_PTSO8(uint32 value)
PSOR - PTSO8.
Definition chip/src/gpio/GPIO.h:879
static constexpr uint32 PTOR_PTTO28(uint32 value)
PORT - PTTO28.
Definition chip/src/gpio/GPIO.h:1971
static constexpr uint32 PTOR_PTTO7(uint32 value)
PORT - PTTO7.
Definition chip/src/gpio/GPIO.h:1698
static constexpr uint32 GICHR_GIWE24(uint32 value)
GICHR - GIWE24.
Definition chip/src/gpio/GPIO.h:3665
static constexpr uint32 PIDR_PID30(uint32 value)
PIDR - PID30.
Definition chip/src/gpio/GPIO.h:3245
static constexpr uint32 GICLR_GIWE9(uint32 value)
GICLR - GIWE9.
Definition chip/src/gpio/GPIO.h:3461
static constexpr uint32 PDOR_PDO28(uint32 value)
PDOR - PDO28.
Definition chip/src/gpio/GPIO.h:723
static constexpr uint32 PSOR_PTSO18(uint32 value)
PSOR - PTSO18.
Definition chip/src/gpio/GPIO.h:1009
static constexpr uint32 PDDR_PDD15(uint32 value)
PDDR - PDD15.
Definition chip/src/gpio/GPIO.h:2634
static constexpr uint32 PDDR_PDD17(uint32 value)
PDDR - PDD17.
Definition chip/src/gpio/GPIO.h:2660
static constexpr uint32 PDDR_PDD11(uint32 value)
PDDR - PDD11.
Definition chip/src/gpio/GPIO.h:2582
static constexpr uint32 PDDR_PDD29(uint32 value)
PDDR - PDD29.
Definition chip/src/gpio/GPIO.h:2816
Definition Object.h:34
Definition gpio/Count.h:22
InterruptConfig
Definition InterruptConfig.h:33
@ ISFR_ISF8
ISFR - ISF8.
@ PTOR_PTTO2
PORT - PTTO2.
@ PCOR_PTCO8
PCOR - PTCO8.
@ PSOR_PTSO4
PSOR - PTSO4.
@ PDR_PD
PDR - PD.
@ PSOR_PTSO22
PSOR - PTSO22.
@ PTOR_PTTO27
PORT - PTTO27.
@ PDDR_PDD19
PDDR - PDD19.
@ PTOR_PTTO14
PORT - PTTO14.
@ PDOR_PDO17
PDOR - PDO17.
@ PCOR_PTCO4
PCOR - PTCO4.
@ PIDR_PID10
PIDR - PID10.
@ PDOR_PDO10
PDOR - PDO10.
@ PSOR_PTSO24
PSOR - PTSO24.
@ GICLR_GIWE1
GICLR - GIWE1.
@ PIDR_PID9
PIDR - PID9.
@ PTOR_PTTO26
PORT - PTTO26.
@ PIDR_PID17
PIDR - PID17.
@ PDOR_PDO9
PDOR - PDO9.
@ ISFR_ISF29
ISFR - ISF29.
@ PDDR_PDD13
PDDR - PDD13.
@ GICLR_GIWE15
GICLR - GIWE15.
@ PSOR_PTSO21
PSOR - PTSO21.
@ PSOR_PTSO23
PSOR - PTSO23.
@ ISFR_ISF30
ISFR - ISF30.
@ PDIR_PDI18
PDIR - PDI18.
@ PDIR_PDI27
PDIR - PDI27.
@ PSOR_PTSO15
PSOR - PTSO15.
@ PDDR_PDD4
PDDR - PDD4.
@ PDOR_PDO3
PDOR - PDO3.
@ PSOR_PTSO2
PSOR - PTSO2.
@ ISFR_ISF28
ISFR - ISF28.
@ PCOR_PTCO18
PCOR - PTCO18.
@ PTOR_PTTO9
PORT - PTTO9.
@ ISFR_ISF10
ISFR - ISF10.
@ PDIR_PDI14
PDIR - PDI14.
@ PDDR_PDD27
PDDR - PDD27.
@ PDIR_PDI30
PDIR - PDI30.
@ ICR_IRQC
ICR - IRQC.
@ PIDR_PID29
PIDR - PID29.
@ VERID_MINOR
VERID - MINOR.
@ PDIR_PDI17
PDIR - PDI17.
@ GICHR_GIWD
GICHR - GIWD.
@ PDDR_PDD20
PDDR - PDD20.
@ PSOR_PTSO30
PSOR - PTSO30.
@ PTOR_PTTO28
PORT - PTTO28.
@ GICLR_GIWE7
GICLR - GIWE7.
@ PSOR_PTSO20
PSOR - PTSO20.
@ PDOR_PDO5
PDOR - PDO5.
@ PDIR_PDI5
PDIR - PDI5.
@ PDDR_PDD25
PDDR - PDD25.
@ GICHR_GIWE21
GICHR - GIWE21.
@ ISFR_ISF31
ISFR - ISF31.
@ PCOR_PTCO3
PCOR - PTCO3.
@ PARAM_IRQNUM
PARAM - IRQNUM.
@ PDOR_PDO16
PDOR - PDO16.
@ PCOR_PTCO16
PCOR - PTCO16.
@ PSOR_PTSO13
PSOR - PTSO13.
@ PDDR_PDD5
PDDR - PDD5.
@ PCOR_PTCO15
PCOR - PTCO15.
@ GICLR_GIWD
GICLR - GIWD.
@ PDDR_PDD15
PDDR - PDD15.
@ PTOR_PTTO1
PORT - PTTO1.
@ PTOR_PTTO10
PORT - PTTO10.
@ PIDR_PID26
PIDR - PID26.
@ PCOR_PTCO2
PCOR - PTCO2.
@ GICHR_GIWE23
GICHR - GIWE23.
@ PDDR_PDD26
PDDR - PDD26.
@ PSOR_PTSO11
PSOR - PTSO11.
@ GICHR_GIWE18
GICHR - GIWE18.
@ PDDR_PDD14
PDDR - PDD14.
@ PSOR_PTSO17
PSOR - PTSO17.
@ GICHR_GIWE28
GICHR - GIWE28.
@ PDDR_PDD0
PDDR - PDD0.
@ PIDR_PID3
PIDR - PID3.
@ PDIR_PDI19
PDIR - PDI19.
@ PDIR_PDI28
PDIR - PDI28.
@ PDOR_PDO18
PDOR - PDO18.
@ PSOR_PTSO19
PSOR - PTSO19.
@ PCOR_PTCO25
PCOR - PTCO25.
@ PSOR_PTSO16
PSOR - PTSO16.
@ ISFR_ISF3
ISFR - ISF3.
@ PCOR_PTCO17
PCOR - PTCO17.
@ PDOR_PDO8
PDOR - PDO8.
@ PCOR_PTCO28
PCOR - PTCO28.
@ ISFR_ISF12
ISFR - ISF12.
@ PDOR_PDO23
PDOR - PDO23.
@ PIDR_PID8
PIDR - PID8.
@ PDIR_PDI29
PDIR - PDI29.
@ PCOR_PTCO5
PCOR - PTCO5.
@ PDIR_PDI21
PDIR - PDI21.
@ PDDR_PDD8
PDDR - PDD8.
@ PDOR_PDO31
PDOR - PDO31.
@ PSOR_PTSO28
PSOR - PTSO28.
@ ISFR_ISF4
ISFR - ISF4.
@ PCOR_PTCO24
PCOR - PTCO24.
@ PSOR_PTSO9
PSOR - PTSO9.
@ GICHR_GIWE22
GICHR - GIWE22.
@ PDIR_PDI13
PDIR - PDI13.
@ PTOR_PTTO20
PORT - PTTO20.
@ PIDR_PID0
PIDR - PID0.
@ PTOR_PTTO21
PORT - PTTO21.
@ ISFR_ISF23
ISFR - ISF23.
@ PDIR_PDI25
PDIR - PDI25.
@ PTOR_PTTO22
PORT - PTTO22.
@ PIDR_PID20
PIDR - PID20.
@ ISFR_ISF2
ISFR - ISF2.
@ GICHR_GIWE29
GICHR - GIWE29.
@ PDOR_PDO6
PDOR - PDO6.
@ PDDR_PDD3
PDDR - PDD3.
@ PTOR_PTTO25
PORT - PTTO25.
@ PCOR_PTCO9
PCOR - PTCO9.
@ PDDR_PDD21
PDDR - PDD21.
@ PDDR_PDD17
PDDR - PDD17.
@ PCOR_PTCO19
PCOR - PTCO19.
@ ISFR_ISF17
ISFR - ISF17.
@ PSOR_PTSO7
PSOR - PTSO7.
@ PCOR_PTCO7
PCOR - PTCO7.
@ PTOR_PTTO19
PORT - PTTO19.
@ PTOR_PTTO7
PORT - PTTO7.
@ PDOR_PDO22
PDOR - PDO22.
@ PSOR_PTSO31
PSOR - PTSO31.
@ ISFR_ISF9
ISFR - ISF9.
@ PSOR_PTSO6
PSOR - PTSO6.
@ PDIR_PDI16
PDIR - PDI16.
@ PIDR_PID24
PIDR - PID24.
@ VERID_FEATURE
VERID - FEATURE.
@ PCOR_PTCO30
PCOR - PTCO30.
@ ISFR_ISF14
ISFR - ISF14.
@ PCOR_PTCO6
PCOR - PTCO6.
@ PSOR_PTSO3
PSOR - PTSO3.
@ PDOR_PDO28
PDOR - PDO28.
@ PIDR_PID22
PIDR - PID22.
@ PDOR_PDO29
PDOR - PDO29.
@ PTOR_PTTO8
PORT - PTTO8.
@ ISFR_ISF13
ISFR - ISF13.
@ PDIR_PDI12
PDIR - PDI12.
@ PDOR_PDO24
PDOR - PDO24.
@ GICHR_GIWE24
GICHR - GIWE24.
@ PDIR_PDI24
PDIR - PDI24.
@ PDDR_PDD12
PDDR - PDD12.
@ PSOR_PTSO14
PSOR - PTSO14.
@ PCOR_PTCO21
PCOR - PTCO21.
@ PIDR_PID28
PIDR - PID28.
@ PDOR_PDO19
PDOR - PDO19.
@ ICR_ISF
ICR - ISF.
@ PDIR_PDI8
PDIR - PDI8.
@ PIDR_PID14
PIDR - PID14.
@ GICLR_GIWE13
GICLR - GIWE13.
@ PDOR_PDO27
PDOR - PDO27.
@ PDOR_PDO1
PDOR - PDO1.
@ PIDR_PID30
PIDR - PID30.
@ ISFR_ISF19
ISFR - ISF19.
@ GICLR_GIWE5
GICLR - GIWE5.
@ ISFR_ISF27
ISFR - ISF27.
@ PCOR_PTCO31
PCOR - PTCO31.
@ PDIR_PDI7
PDIR - PDI7.
@ PTOR_PTTO24
PORT - PTTO24.
@ PDIR_PDI0
PDIR - PDI0.
@ ISFR_ISF16
ISFR - ISF16.
@ PDOR_PDO4
PDOR - PDO4.
@ PTOR_PTTO31
PORT - PTTO31.
@ ISFR_ISF24
ISFR - ISF24.
@ ISFR_ISF15
ISFR - ISF15.
@ PDIR_PDI23
PDIR - PDI23.
@ GICLR_GIWE4
GICLR - GIWE4.
@ PDIR_PDI26
PDIR - PDI26.
@ PSOR_PTSO0
PSOR - PTSO0.
@ PDIR_PDI4
PDIR - PDI4.
@ PIDR_PID4
PIDR - PID4.
@ PCOR_PTCO11
PCOR - PTCO11.
@ PDDR_PDD11
PDDR - PDD11.
@ PSOR_PTSO10
PSOR - PTSO10.
@ ISFR_ISF25
ISFR - ISF25.
@ ISFR_ISF21
ISFR - ISF21.
@ PDOR_PDO12
PDOR - PDO12.
@ PTOR_PTTO29
PORT - PTTO29.
@ PDIR_PDI11
PDIR - PDI11.
@ ISFR_ISF18
ISFR - ISF18.
@ ISFR_ISF0
ISFR - ISF0.
@ PCOR_PTCO29
PCOR - PTCO29.
@ PCOR_PTCO13
PCOR - PTCO13.
@ PCOR_PTCO12
PCOR - PTCO12.
@ PDDR_PDD28
PDDR - PDD28.
@ PCOR_PTCO20
PCOR - PTCO20.
@ PDDR_PDD23
PDDR - PDD23.
@ PDDR_PDD6
PDDR - PDD6.
@ GICHR_GIWE30
GICHR - GIWE30.
@ GICLR_GIWE3
GICLR - GIWE3.
@ PDIR_PDI31
PDIR - PDI31.
@ PTOR_PTTO0
PORT - PTTO0.
@ PDDR_PDD16
PDDR - PDD16.
@ PIDR_PID23
PIDR - PID23.
@ PTOR_PTTO23
PORT - PTTO23.
@ PDOR_PDO15
PDOR - PDO15.
@ PIDR_PID16
PIDR - PID16.
@ PSOR_PTSO27
PSOR - PTSO27.
@ PIDR_PID27
PIDR - PID27.
@ PDDR_PDD1
PDDR - PDD1.
@ PSOR_PTSO29
PSOR - PTSO29.
@ PDDR_PDD30
PDDR - PDD30.
@ PIDR_PID7
PIDR - PID7.
@ PDOR_PDO21
PDOR - PDO21.
@ ISFR_ISF11
ISFR - ISF11.
@ PDOR_PDO0
PDOR - PDO0.
@ GICHR_GIWE16
GICHR - GIWE16.
@ GICLR_GIWE6
GICLR - GIWE6.
@ PDDR_PDD2
PDDR - PDD2.
@ PDOR_PDO11
PDOR - PDO11.
@ PIDR_PID12
PIDR - PID12.
@ PDOR_PDO26
PDOR - PDO26.
@ PTOR_PTTO30
PORT - PTTO30.
@ VERID_MAJOR
VERID - MAJOR.
@ GICHR_GIWE31
GICHR - GIWE31.
@ PTOR_PTTO11
PORT - PTTO11.
@ PDOR_PDO25
PDOR - PDO25.
@ GICLR_GIWE9
GICLR - GIWE9.
@ PCOR_PTCO22
PCOR - PTCO22.
@ PIDR_PID2
PIDR - PID2.
@ GICHR_GIWE27
GICHR - GIWE27.
@ PDDR_PDD9
PDDR - PDD9.
@ PTOR_PTTO16
PORT - PTTO16.
@ PDDR_PDD31
PDDR - PDD31.
@ PIDR_PID25
PIDR - PID25.
@ PDIR_PDI22
PDIR - PDI22.
@ PDDR_PDD22
PDDR - PDD22.
@ PSOR_PTSO18
PSOR - PTSO18.
@ PDIR_PDI1
PDIR - PDI1.
@ GICLR_GIWE11
GICLR - GIWE11.
@ PSOR_PTSO5
PSOR - PTSO5.
@ ISFR_ISF1
ISFR - ISF1.
@ PIDR_PID1
PIDR - PID1.
@ PDDR_PDD7
PDDR - PDD7.
@ PIDR_PID18
PIDR - PID18.
@ PTOR_PTTO17
PORT - PTTO17.
@ PDDR_PDD10
PDDR - PDD10.
@ PDDR_PDD24
PDDR - PDD24.
@ ISFR_ISF26
ISFR - ISF26.
@ PDOR_PDO13
PDOR - PDO13.
@ PDIR_PDI3
PDIR - PDI3.
@ PSOR_PTSO26
PSOR - PTSO26.
@ PDOR_PDO14
PDOR - PDO14.
@ GICHR_GIWE17
GICHR - GIWE17.
@ PDDR_PDD18
PDDR - PDD18.
@ PTOR_PTTO3
PORT - PTTO3.
@ PSOR_PTSO8
PSOR - PTSO8.
@ PDIR_PDI10
PDIR - PDI10.
@ PSOR_PTSO25
PSOR - PTSO25.
@ PIDR_PID11
PIDR - PID11.
@ PDIR_PDI9
PDIR - PDI9.
@ PDIR_PDI15
PDIR - PDI15.
@ PCOR_PTCO26
PCOR - PTCO26.
@ GICLR_GIWE2
GICLR - GIWE2.
@ PIDR_PID15
PIDR - PID15.
@ PDIR_PDI20
PDIR - PDI20.
@ GICHR_GIWE19
GICHR - GIWE19.
@ ISFR_ISF20
ISFR - ISF20.
@ PSOR_PTSO12
PSOR - PTSO12.
@ GICLR_GIWE12
GICLR - GIWE12.
@ PIDR_PID5
PIDR - PID5.
@ PIDR_PID21
PIDR - PID21.
@ PCOR_PTCO14
PCOR - PTCO14.
@ PCOR_PTCO0
PCOR - PTCO0.
@ GICHR_GIWE25
GICHR - GIWE25.
@ GICHR_GIWE20
GICHR - GIWE20.
@ PTOR_PTTO15
PORT - PTTO15.
@ PTOR_PTTO13
PORT - PTTO13.
@ GICLR_GIWE0
GICLR - GIWE0.
@ ISFR_ISF6
ISFR - ISF6.
@ PDIR_PDI2
PDIR - PDI2.
@ PDOR_PDO20
PDOR - PDO20.
@ ISFR_ISF7
ISFR - ISF7.
@ GICLR_GIWE8
GICLR - GIWE8.
@ PCOR_PTCO1
PCOR - PTCO1.
@ PTOR_PTTO18
PORT - PTTO18.
@ PIDR_PID6
PIDR - PID6.
@ PTOR_PTTO12
PORT - PTTO12.
@ PCOR_PTCO27
PCOR - PTCO27.
@ PTOR_PTTO4
PORT - PTTO4.
@ PIDR_PID31
PIDR - PID31.
@ PIDR_PID13
PIDR - PID13.
@ PDDR_PDD29
PDDR - PDD29.
@ PCOR_PTCO10
PCOR - PTCO10.
@ PCOR_PTCO23
PCOR - PTCO23.
@ PTOR_PTTO5
PORT - PTTO5.
@ PDOR_PDO2
PDOR - PDO2.
@ PDIR_PDI6
PDIR - PDI6.
@ PIDR_PID19
PIDR - PID19.
@ ISFR_ISF5
ISFR - ISF5.
@ PSOR_PTSO1
PSOR - PTSO1.
@ GICHR_GIWE26
GICHR - GIWE26.
@ PDOR_PDO30
PDOR - PDO30.
@ PTOR_PTTO6
PORT - PTTO6.
@ ISFR_ISF22
ISFR - ISF22.
@ GICLR_GIWE14
GICLR - GIWE14.
@ PDOR_PDO7
PDOR - PDO7.
@ GICLR_GIWE10
GICLR - GIWE10.
@ ISFR_ISF8
ISFR - ISF8.
@ PTOR_PTTO2
PORT - PTTO2.
@ PCOR_PTCO8
PCOR - PTCO8.
@ PSOR_PTSO4
PSOR - PTSO4.
@ PDR_PD
PDR - PD.
@ PSOR_PTSO22
PSOR - PTSO22.
@ PTOR_PTTO27
PORT - PTTO27.
@ PDDR_PDD19
PDDR - PDD19.
@ PTOR_PTTO14
PORT - PTTO14.
@ PDOR_PDO17
PDOR - PDO17.
@ PCOR_PTCO4
PCOR - PTCO4.
@ PIDR_PID10
PIDR - PID10.
@ PDOR_PDO10
PDOR - PDO10.
@ PSOR_PTSO24
PSOR - PTSO24.
@ GICLR_GIWE1
GICLR - GIWE1.
@ PIDR_PID9
PIDR - PID9.
@ PTOR_PTTO26
PORT - PTTO26.
@ PIDR_PID17
PIDR - PID17.
@ PDOR_PDO9
PDOR - PDO9.
@ ISFR_ISF29
ISFR - ISF29.
@ PDDR_PDD13
PDDR - PDD13.
@ GICLR_GIWE15
GICLR - GIWE15.
@ PSOR_PTSO21
PSOR - PTSO21.
@ PSOR_PTSO23
PSOR - PTSO23.
@ ISFR_ISF30
ISFR - ISF30.
@ PDIR_PDI18
PDIR - PDI18.
@ PDIR_PDI27
PDIR - PDI27.
@ PSOR_PTSO15
PSOR - PTSO15.
@ PDDR_PDD4
PDDR - PDD4.
@ PDOR_PDO3
PDOR - PDO3.
@ PSOR_PTSO2
PSOR - PTSO2.
@ ISFR_ISF28
ISFR - ISF28.
@ PCOR_PTCO18
PCOR - PTCO18.
@ PTOR_PTTO9
PORT - PTTO9.
@ ISFR_ISF10
ISFR - ISF10.
@ PDIR_PDI14
PDIR - PDI14.
@ PDDR_PDD27
PDDR - PDD27.
@ PDIR_PDI30
PDIR - PDI30.
@ ICR_IRQC
ICR - IRQC.
@ PIDR_PID29
PIDR - PID29.
@ VERID_MINOR
VERID - MINOR.
@ PDIR_PDI17
PDIR - PDI17.
@ GICHR_GIWD
GICHR - GIWD.
@ PDDR_PDD20
PDDR - PDD20.
@ PSOR_PTSO30
PSOR - PTSO30.
@ PTOR_PTTO28
PORT - PTTO28.
@ GICLR_GIWE7
GICLR - GIWE7.
@ PSOR_PTSO20
PSOR - PTSO20.
@ PDOR_PDO5
PDOR - PDO5.
@ PDIR_PDI5
PDIR - PDI5.
@ PDDR_PDD25
PDDR - PDD25.
@ GICHR_GIWE21
GICHR - GIWE21.
@ ISFR_ISF31
ISFR - ISF31.
@ PCOR_PTCO3
PCOR - PTCO3.
@ PARAM_IRQNUM
PARAM - IRQNUM.
@ PDOR_PDO16
PDOR - PDO16.
@ PCOR_PTCO16
PCOR - PTCO16.
@ PSOR_PTSO13
PSOR - PTSO13.
@ PDDR_PDD5
PDDR - PDD5.
@ PCOR_PTCO15
PCOR - PTCO15.
@ GICLR_GIWD
GICLR - GIWD.
@ PDDR_PDD15
PDDR - PDD15.
@ PTOR_PTTO1
PORT - PTTO1.
@ PTOR_PTTO10
PORT - PTTO10.
@ PIDR_PID26
PIDR - PID26.
@ PCOR_PTCO2
PCOR - PTCO2.
@ GICHR_GIWE23
GICHR - GIWE23.
@ PDDR_PDD26
PDDR - PDD26.
@ PSOR_PTSO11
PSOR - PTSO11.
@ GICHR_GIWE18
GICHR - GIWE18.
@ PDDR_PDD14
PDDR - PDD14.
@ PSOR_PTSO17
PSOR - PTSO17.
@ GICHR_GIWE28
GICHR - GIWE28.
@ PDDR_PDD0
PDDR - PDD0.
@ PIDR_PID3
PIDR - PID3.
@ PDIR_PDI19
PDIR - PDI19.
@ PDIR_PDI28
PDIR - PDI28.
@ PDOR_PDO18
PDOR - PDO18.
@ PSOR_PTSO19
PSOR - PTSO19.
@ PCOR_PTCO25
PCOR - PTCO25.
@ PSOR_PTSO16
PSOR - PTSO16.
@ ISFR_ISF3
ISFR - ISF3.
@ PCOR_PTCO17
PCOR - PTCO17.
@ PDOR_PDO8
PDOR - PDO8.
@ PCOR_PTCO28
PCOR - PTCO28.
@ ISFR_ISF12
ISFR - ISF12.
@ PDOR_PDO23
PDOR - PDO23.
@ PIDR_PID8
PIDR - PID8.
@ PDIR_PDI29
PDIR - PDI29.
@ PCOR_PTCO5
PCOR - PTCO5.
@ PDIR_PDI21
PDIR - PDI21.
@ PDDR_PDD8
PDDR - PDD8.
@ PDOR_PDO31
PDOR - PDO31.
@ PSOR_PTSO28
PSOR - PTSO28.
@ ISFR_ISF4
ISFR - ISF4.
@ PCOR_PTCO24
PCOR - PTCO24.
@ PSOR_PTSO9
PSOR - PTSO9.
@ GICHR_GIWE22
GICHR - GIWE22.
@ PDIR_PDI13
PDIR - PDI13.
@ PTOR_PTTO20
PORT - PTTO20.
@ PIDR_PID0
PIDR - PID0.
@ PTOR_PTTO21
PORT - PTTO21.
@ ISFR_ISF23
ISFR - ISF23.
@ PDIR_PDI25
PDIR - PDI25.
@ PTOR_PTTO22
PORT - PTTO22.
@ PIDR_PID20
PIDR - PID20.
@ ISFR_ISF2
ISFR - ISF2.
@ GICHR_GIWE29
GICHR - GIWE29.
@ PDOR_PDO6
PDOR - PDO6.
@ PDDR_PDD3
PDDR - PDD3.
@ PTOR_PTTO25
PORT - PTTO25.
@ PCOR_PTCO9
PCOR - PTCO9.
@ PDDR_PDD21
PDDR - PDD21.
@ PDDR_PDD17
PDDR - PDD17.
@ PCOR_PTCO19
PCOR - PTCO19.
@ ISFR_ISF17
ISFR - ISF17.
@ PSOR_PTSO7
PSOR - PTSO7.
@ PCOR_PTCO7
PCOR - PTCO7.
@ PTOR_PTTO19
PORT - PTTO19.
@ PTOR_PTTO7
PORT - PTTO7.
@ PDOR_PDO22
PDOR - PDO22.
@ PSOR_PTSO31
PSOR - PTSO31.
@ ISFR_ISF9
ISFR - ISF9.
@ PSOR_PTSO6
PSOR - PTSO6.
@ PDIR_PDI16
PDIR - PDI16.
@ PIDR_PID24
PIDR - PID24.
@ VERID_FEATURE
VERID - FEATURE.
@ PCOR_PTCO30
PCOR - PTCO30.
@ ISFR_ISF14
ISFR - ISF14.
@ PCOR_PTCO6
PCOR - PTCO6.
@ PSOR_PTSO3
PSOR - PTSO3.
@ PDOR_PDO28
PDOR - PDO28.
@ PIDR_PID22
PIDR - PID22.
@ PDOR_PDO29
PDOR - PDO29.
@ PTOR_PTTO8
PORT - PTTO8.
@ ISFR_ISF13
ISFR - ISF13.
@ PDIR_PDI12
PDIR - PDI12.
@ PDOR_PDO24
PDOR - PDO24.
@ GICHR_GIWE24
GICHR - GIWE24.
@ PDIR_PDI24
PDIR - PDI24.
@ PDDR_PDD12
PDDR - PDD12.
@ PSOR_PTSO14
PSOR - PTSO14.
@ PCOR_PTCO21
PCOR - PTCO21.
@ PIDR_PID28
PIDR - PID28.
@ PDOR_PDO19
PDOR - PDO19.
@ ICR_ISF
ICR - ISF.
@ PDIR_PDI8
PDIR - PDI8.
@ PIDR_PID14
PIDR - PID14.
@ GICLR_GIWE13
GICLR - GIWE13.
@ PDOR_PDO27
PDOR - PDO27.
@ PDOR_PDO1
PDOR - PDO1.
@ PIDR_PID30
PIDR - PID30.
@ ISFR_ISF19
ISFR - ISF19.
@ GICLR_GIWE5
GICLR - GIWE5.
@ ISFR_ISF27
ISFR - ISF27.
@ PCOR_PTCO31
PCOR - PTCO31.
@ PDIR_PDI7
PDIR - PDI7.
@ PTOR_PTTO24
PORT - PTTO24.
@ PDIR_PDI0
PDIR - PDI0.
@ ISFR_ISF16
ISFR - ISF16.
@ PDOR_PDO4
PDOR - PDO4.
@ PTOR_PTTO31
PORT - PTTO31.
@ ISFR_ISF24
ISFR - ISF24.
@ ISFR_ISF15
ISFR - ISF15.
@ PDIR_PDI23
PDIR - PDI23.
@ GICLR_GIWE4
GICLR - GIWE4.
@ PDIR_PDI26
PDIR - PDI26.
@ PSOR_PTSO0
PSOR - PTSO0.
@ PDIR_PDI4
PDIR - PDI4.
@ PIDR_PID4
PIDR - PID4.
@ PCOR_PTCO11
PCOR - PTCO11.
@ PDDR_PDD11
PDDR - PDD11.
@ PSOR_PTSO10
PSOR - PTSO10.
@ ISFR_ISF25
ISFR - ISF25.
@ ISFR_ISF21
ISFR - ISF21.
@ PDOR_PDO12
PDOR - PDO12.
@ PTOR_PTTO29
PORT - PTTO29.
@ PDIR_PDI11
PDIR - PDI11.
@ ISFR_ISF18
ISFR - ISF18.
@ ISFR_ISF0
ISFR - ISF0.
@ PCOR_PTCO29
PCOR - PTCO29.
@ PCOR_PTCO13
PCOR - PTCO13.
@ PCOR_PTCO12
PCOR - PTCO12.
@ PDDR_PDD28
PDDR - PDD28.
@ PCOR_PTCO20
PCOR - PTCO20.
@ PDDR_PDD23
PDDR - PDD23.
@ PDDR_PDD6
PDDR - PDD6.
@ GICHR_GIWE30
GICHR - GIWE30.
@ GICLR_GIWE3
GICLR - GIWE3.
@ PDIR_PDI31
PDIR - PDI31.
@ PTOR_PTTO0
PORT - PTTO0.
@ PDDR_PDD16
PDDR - PDD16.
@ PIDR_PID23
PIDR - PID23.
@ PTOR_PTTO23
PORT - PTTO23.
@ PDOR_PDO15
PDOR - PDO15.
@ PIDR_PID16
PIDR - PID16.
@ PSOR_PTSO27
PSOR - PTSO27.
@ PIDR_PID27
PIDR - PID27.
@ PDDR_PDD1
PDDR - PDD1.
@ PSOR_PTSO29
PSOR - PTSO29.
@ PDDR_PDD30
PDDR - PDD30.
@ PIDR_PID7
PIDR - PID7.
@ PDOR_PDO21
PDOR - PDO21.
@ ISFR_ISF11
ISFR - ISF11.
@ PDOR_PDO0
PDOR - PDO0.
@ GICHR_GIWE16
GICHR - GIWE16.
@ GICLR_GIWE6
GICLR - GIWE6.
@ PDDR_PDD2
PDDR - PDD2.
@ PDOR_PDO11
PDOR - PDO11.
@ PIDR_PID12
PIDR - PID12.
@ PDOR_PDO26
PDOR - PDO26.
@ PTOR_PTTO30
PORT - PTTO30.
@ VERID_MAJOR
VERID - MAJOR.
@ GICHR_GIWE31
GICHR - GIWE31.
@ PTOR_PTTO11
PORT - PTTO11.
@ PDOR_PDO25
PDOR - PDO25.
@ GICLR_GIWE9
GICLR - GIWE9.
@ PCOR_PTCO22
PCOR - PTCO22.
@ PIDR_PID2
PIDR - PID2.
@ GICHR_GIWE27
GICHR - GIWE27.
@ PDDR_PDD9
PDDR - PDD9.
@ PTOR_PTTO16
PORT - PTTO16.
@ PDDR_PDD31
PDDR - PDD31.
@ PIDR_PID25
PIDR - PID25.
@ PDIR_PDI22
PDIR - PDI22.
@ PDDR_PDD22
PDDR - PDD22.
@ PSOR_PTSO18
PSOR - PTSO18.
@ PDIR_PDI1
PDIR - PDI1.
@ GICLR_GIWE11
GICLR - GIWE11.
@ PSOR_PTSO5
PSOR - PTSO5.
@ ISFR_ISF1
ISFR - ISF1.
@ PIDR_PID1
PIDR - PID1.
@ PDDR_PDD7
PDDR - PDD7.
@ PIDR_PID18
PIDR - PID18.
@ PTOR_PTTO17
PORT - PTTO17.
@ PDDR_PDD10
PDDR - PDD10.
@ PDDR_PDD24
PDDR - PDD24.
@ ISFR_ISF26
ISFR - ISF26.
@ PDOR_PDO13
PDOR - PDO13.
@ PDIR_PDI3
PDIR - PDI3.
@ PSOR_PTSO26
PSOR - PTSO26.
@ PDOR_PDO14
PDOR - PDO14.
@ GICHR_GIWE17
GICHR - GIWE17.
@ PDDR_PDD18
PDDR - PDD18.
@ PTOR_PTTO3
PORT - PTTO3.
@ PSOR_PTSO8
PSOR - PTSO8.
@ PDIR_PDI10
PDIR - PDI10.
@ PSOR_PTSO25
PSOR - PTSO25.
@ PIDR_PID11
PIDR - PID11.
@ PDIR_PDI9
PDIR - PDI9.
@ PDIR_PDI15
PDIR - PDI15.
@ PCOR_PTCO26
PCOR - PTCO26.
@ GICLR_GIWE2
GICLR - GIWE2.
@ PIDR_PID15
PIDR - PID15.
@ PDIR_PDI20
PDIR - PDI20.
@ GICHR_GIWE19
GICHR - GIWE19.
@ ISFR_ISF20
ISFR - ISF20.
@ PSOR_PTSO12
PSOR - PTSO12.
@ GICLR_GIWE12
GICLR - GIWE12.
@ PIDR_PID5
PIDR - PID5.
@ PIDR_PID21
PIDR - PID21.
@ PCOR_PTCO14
PCOR - PTCO14.
@ PCOR_PTCO0
PCOR - PTCO0.
@ GICHR_GIWE25
GICHR - GIWE25.
@ GICHR_GIWE20
GICHR - GIWE20.
@ PTOR_PTTO15
PORT - PTTO15.
@ PTOR_PTTO13
PORT - PTTO13.
@ GICLR_GIWE0
GICLR - GIWE0.
@ ISFR_ISF6
ISFR - ISF6.
@ PDIR_PDI2
PDIR - PDI2.
@ PDOR_PDO20
PDOR - PDO20.
@ ISFR_ISF7
ISFR - ISF7.
@ GICLR_GIWE8
GICLR - GIWE8.
@ PCOR_PTCO1
PCOR - PTCO1.
@ PTOR_PTTO18
PORT - PTTO18.
@ PIDR_PID6
PIDR - PID6.
@ PTOR_PTTO12
PORT - PTTO12.
@ PCOR_PTCO27
PCOR - PTCO27.
@ PTOR_PTTO4
PORT - PTTO4.
@ PIDR_PID31
PIDR - PID31.
@ PIDR_PID13
PIDR - PID13.
@ PDDR_PDD29
PDDR - PDD29.
@ PCOR_PTCO10
PCOR - PTCO10.
@ PCOR_PTCO23
PCOR - PTCO23.
@ PTOR_PTTO5
PORT - PTTO5.
@ PDOR_PDO2
PDOR - PDO2.
@ PDIR_PDI6
PDIR - PDI6.
@ PIDR_PID19
PIDR - PID19.
@ ISFR_ISF5
ISFR - ISF5.
@ PSOR_PTSO1
PSOR - PTSO1.
@ GICHR_GIWE26
GICHR - GIWE26.
@ PDOR_PDO30
PDOR - PDO30.
@ PTOR_PTTO6
PORT - PTTO6.
@ ISFR_ISF22
ISFR - ISF22.
@ GICLR_GIWE14
GICLR - GIWE14.
@ PDOR_PDO7
PDOR - PDO7.
@ GICLR_GIWE10
GICLR - GIWE10.
The GPIO pin configuration structure.
Definition PinConfig.h:39
GPIO_Peripheral_Access_Layer GPIO Peripheral Access Layer.
Definition gpio/Register.h:34
__O uint32 pcor
Definition gpio/Register.h:40
__IO uint32 isfr[1]
Definition gpio/Register.h:51
__O uint32 ptor
Definition gpio/Register.h:41
__O uint32 giclr
Definition gpio/Register.h:48
__O uint32 psor
Definition gpio/Register.h:39
__IO uint32 icr[32]
Definition gpio/Register.h:47
__IO uint32 pidr
Definition gpio/Register.h:44
__O uint32 gichr
Definition gpio/Register.h:49
__I uint32 pdir
Definition gpio/Register.h:42
Definition VersionInfo.h:29