summaryrefslogtreecommitdiff
path: root/drivers/net/wireless/ath6kl/include/AR6002/hw4.0/hw/gpio_athr_wlan_reg.h
blob: 60ea43b7806e0fd6942826aed7f609818f4bd785 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
// ------------------------------------------------------------------
// Copyright (c) 2004-2007 Atheros Corporation.  All rights reserved.
// 
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License version 2 as
// published by the Free Software Foundation;
//
// Software distributed under the License is distributed on an "AS
// IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
// implied. See the License for the specific language governing
// rights and limitations under the License.
//
//
// ------------------------------------------------------------------
//===================================================================
// Author(s): ="Atheros"
//===================================================================


#ifndef _GPIO_ATHR_WLAN_REG_REG_H_
#define _GPIO_ATHR_WLAN_REG_REG_H_

#define WLAN_GPIO_OUT_ADDRESS                    0x00000000
#define WLAN_GPIO_OUT_OFFSET                     0x00000000
#define WLAN_GPIO_OUT_DATA_MSB                   25
#define WLAN_GPIO_OUT_DATA_LSB                   0
#define WLAN_GPIO_OUT_DATA_MASK                  0x03ffffff
#define WLAN_GPIO_OUT_DATA_GET(x)                (((x) & WLAN_GPIO_OUT_DATA_MASK) >> WLAN_GPIO_OUT_DATA_LSB)
#define WLAN_GPIO_OUT_DATA_SET(x)                (((x) << WLAN_GPIO_OUT_DATA_LSB) & WLAN_GPIO_OUT_DATA_MASK)

#define WLAN_GPIO_OUT_W1TS_ADDRESS               0x00000004
#define WLAN_GPIO_OUT_W1TS_OFFSET                0x00000004
#define WLAN_GPIO_OUT_W1TS_DATA_MSB              25
#define WLAN_GPIO_OUT_W1TS_DATA_LSB              0
#define WLAN_GPIO_OUT_W1TS_DATA_MASK             0x03ffffff
#define WLAN_GPIO_OUT_W1TS_DATA_GET(x)           (((x) & WLAN_GPIO_OUT_W1TS_DATA_MASK) >> WLAN_GPIO_OUT_W1TS_DATA_LSB)
#define WLAN_GPIO_OUT_W1TS_DATA_SET(x)           (((x) << WLAN_GPIO_OUT_W1TS_DATA_LSB) & WLAN_GPIO_OUT_W1TS_DATA_MASK)

#define WLAN_GPIO_OUT_W1TC_ADDRESS               0x00000008
#define WLAN_GPIO_OUT_W1TC_OFFSET                0x00000008
#define WLAN_GPIO_OUT_W1TC_DATA_MSB              25
#define WLAN_GPIO_OUT_W1TC_DATA_LSB              0
#define WLAN_GPIO_OUT_W1TC_DATA_MASK             0x03ffffff
#define WLAN_GPIO_OUT_W1TC_DATA_GET(x)           (((x) & WLAN_GPIO_OUT_W1TC_DATA_MASK) >> WLAN_GPIO_OUT_W1TC_DATA_LSB)
#define WLAN_GPIO_OUT_W1TC_DATA_SET(x)           (((x) << WLAN_GPIO_OUT_W1TC_DATA_LSB) & WLAN_GPIO_OUT_W1TC_DATA_MASK)

#define WLAN_GPIO_ENABLE_ADDRESS                 0x0000000c
#define WLAN_GPIO_ENABLE_OFFSET                  0x0000000c
#define WLAN_GPIO_ENABLE_DATA_MSB                25
#define WLAN_GPIO_ENABLE_DATA_LSB                0
#define WLAN_GPIO_ENABLE_DATA_MASK               0x03ffffff
#define WLAN_GPIO_ENABLE_DATA_GET(x)             (((x) & WLAN_GPIO_ENABLE_DATA_MASK) >> WLAN_GPIO_ENABLE_DATA_LSB)
#define WLAN_GPIO_ENABLE_DATA_SET(x)             (((x) << WLAN_GPIO_ENABLE_DATA_LSB) & WLAN_GPIO_ENABLE_DATA_MASK)

#define WLAN_GPIO_ENABLE_W1TS_ADDRESS            0x00000010
#define WLAN_GPIO_ENABLE_W1TS_OFFSET             0x00000010
#define WLAN_GPIO_ENABLE_W1TS_DATA_MSB           25
#define WLAN_GPIO_ENABLE_W1TS_DATA_LSB           0
#define WLAN_GPIO_ENABLE_W1TS_DATA_MASK          0x03ffffff
#define WLAN_GPIO_ENABLE_W1TS_DATA_GET(x)        (((x) & WLAN_GPIO_ENABLE_W1TS_DATA_MASK) >> WLAN_GPIO_ENABLE_W1TS_DATA_LSB)
#define WLAN_GPIO_ENABLE_W1TS_DATA_SET(x)        (((x) << WLAN_GPIO_ENABLE_W1TS_DATA_LSB) & WLAN_GPIO_ENABLE_W1TS_DATA_MASK)

#define WLAN_GPIO_ENABLE_W1TC_ADDRESS            0x00000014
#define WLAN_GPIO_ENABLE_W1TC_OFFSET             0x00000014
#define WLAN_GPIO_ENABLE_W1TC_DATA_MSB           25
#define WLAN_GPIO_ENABLE_W1TC_DATA_LSB           0
#define WLAN_GPIO_ENABLE_W1TC_DATA_MASK          0x03ffffff
#define WLAN_GPIO_ENABLE_W1TC_DATA_GET(x)        (((x) & WLAN_GPIO_ENABLE_W1TC_DATA_MASK) >> WLAN_GPIO_ENABLE_W1TC_DATA_LSB)
#define WLAN_GPIO_ENABLE_W1TC_DATA_SET(x)        (((x) << WLAN_GPIO_ENABLE_W1TC_DATA_LSB) & WLAN_GPIO_ENABLE_W1TC_DATA_MASK)

#define WLAN_GPIO_IN_ADDRESS                     0x00000018
#define WLAN_GPIO_IN_OFFSET                      0x00000018
#define WLAN_GPIO_IN_DATA_MSB                    25
#define WLAN_GPIO_IN_DATA_LSB                    0
#define WLAN_GPIO_IN_DATA_MASK                   0x03ffffff
#define WLAN_GPIO_IN_DATA_GET(x)                 (((x) & WLAN_GPIO_IN_DATA_MASK) >> WLAN_GPIO_IN_DATA_LSB)
#define WLAN_GPIO_IN_DATA_SET(x)                 (((x) << WLAN_GPIO_IN_DATA_LSB) & WLAN_GPIO_IN_DATA_MASK)

#define WLAN_GPIO_STATUS_ADDRESS                 0x0000001c
#define WLAN_GPIO_STATUS_OFFSET                  0x0000001c
#define WLAN_GPIO_STATUS_INTERRUPT_MSB           25
#define WLAN_GPIO_STATUS_INTERRUPT_LSB           0
#define WLAN_GPIO_STATUS_INTERRUPT_MASK          0x03ffffff
#define WLAN_GPIO_STATUS_INTERRUPT_GET(x)        (((x) & WLAN_GPIO_STATUS_INTERRUPT_MASK) >> WLAN_GPIO_STATUS_INTERRUPT_LSB)
#define WLAN_GPIO_STATUS_INTERRUPT_SET(x)        (((x) << WLAN_GPIO_STATUS_INTERRUPT_LSB) & WLAN_GPIO_STATUS_INTERRUPT_MASK)

#define WLAN_GPIO_STATUS_W1TS_ADDRESS            0x00000020
#define WLAN_GPIO_STATUS_W1TS_OFFSET             0x00000020
#define WLAN_GPIO_STATUS_W1TS_INTERRUPT_MSB      25
#define WLAN_GPIO_STATUS_W1TS_INTERRUPT_LSB      0
#define WLAN_GPIO_STATUS_W1TS_INTERRUPT_MASK     0x03ffffff
#define WLAN_GPIO_STATUS_W1TS_INTERRUPT_GET(x)   (((x) & WLAN_GPIO_STATUS_W1TS_INTERRUPT_MASK) >> WLAN_GPIO_STATUS_W1TS_INTERRUPT_LSB)
#define WLAN_GPIO_STATUS_W1TS_INTERRUPT_SET(x)   (((x) << WLAN_GPIO_STATUS_W1TS_INTERRUPT_LSB) & WLAN_GPIO_STATUS_W1TS_INTERRUPT_MASK)

#define WLAN_GPIO_STATUS_W1TC_ADDRESS            0x00000024
#define WLAN_GPIO_STATUS_W1TC_OFFSET             0x00000024
#define WLAN_GPIO_STATUS_W1TC_INTERRUPT_MSB      25
#define WLAN_GPIO_STATUS_W1TC_INTERRUPT_LSB      0
#define WLAN_GPIO_STATUS_W1TC_INTERRUPT_MASK     0x03ffffff
#define WLAN_GPIO_STATUS_W1TC_INTERRUPT_GET(x)   (((x) & WLAN_GPIO_STATUS_W1TC_INTERRUPT_MASK) >> WLAN_GPIO_STATUS_W1TC_INTERRUPT_LSB)
#define WLAN_GPIO_STATUS_W1TC_INTERRUPT_SET(x)   (((x) << WLAN_GPIO_STATUS_W1TC_INTERRUPT_LSB) & WLAN_GPIO_STATUS_W1TC_INTERRUPT_MASK)

#define WLAN_GPIO_PIN0_ADDRESS                   0x00000028
#define WLAN_GPIO_PIN0_OFFSET                    0x00000028
#define WLAN_GPIO_PIN0_CONFIG_MSB                13
#define WLAN_GPIO_PIN0_CONFIG_LSB                11
#define WLAN_GPIO_PIN0_CONFIG_MASK               0x00003800
#define WLAN_GPIO_PIN0_CONFIG_GET(x)             (((x) & WLAN_GPIO_PIN0_CONFIG_MASK) >> WLAN_GPIO_PIN0_CONFIG_LSB)
#define WLAN_GPIO_PIN0_CONFIG_SET(x)             (((x) << WLAN_GPIO_PIN0_CONFIG_LSB) & WLAN_GPIO_PIN0_CONFIG_MASK)
#define WLAN_GPIO_PIN0_WAKEUP_ENABLE_MSB         10
#define WLAN_GPIO_PIN0_WAKEUP_ENABLE_LSB         10
#define WLAN_GPIO_PIN0_WAKEUP_ENABLE_MASK        0x00000400
#define WLAN_GPIO_PIN0_WAKEUP_ENABLE_GET(x)      (((x) & WLAN_GPIO_PIN0_WAKEUP_ENABLE_MASK) >> WLAN_GPIO_PIN0_WAKEUP_ENABLE_LSB)
#define WLAN_GPIO_PIN0_WAKEUP_ENABLE_SET(x)      (((x) << WLAN_GPIO_PIN0_WAKEUP_ENABLE_LSB) & WLAN_GPIO_PIN0_WAKEUP_ENABLE_MASK)
#define WLAN_GPIO_PIN0_INT_TYPE_MSB              9
#define WLAN_GPIO_PIN0_INT_TYPE_LSB              7
#define WLAN_GPIO_PIN0_INT_TYPE_MASK             0x00000380
#define WLAN_GPIO_PIN0_INT_TYPE_GET(x)           (((x) & WLAN_GPIO_PIN0_INT_TYPE_MASK) >> WLAN_GPIO_PIN0_INT_TYPE_LSB)
#define WLAN_GPIO_PIN0_INT_TYPE_SET(x)           (((x) << WLAN_GPIO_PIN0_INT_TYPE_LSB) & WLAN_GPIO_PIN0_INT_TYPE_MASK)
#define WLAN_GPIO_PIN0_PAD_PULL_MSB              6
#define WLAN_GPIO_PIN0_PAD_PULL_LSB              5
#define WLAN_GPIO_PIN0_PAD_PULL_MASK             0x00000060
#define WLAN_GPIO_PIN0_PAD_PULL_GET(x)           (((x) & WLAN_GPIO_PIN0_PAD_PULL_MASK) >> WLAN_GPIO_PIN0_PAD_PULL_LSB)
#define WLAN_GPIO_PIN0_PAD_PULL_SET(x)           (((x) << WLAN_GPIO_PIN0_PAD_PULL_LSB) & WLAN_GPIO_PIN0_PAD_PULL_MASK)
#define WLAN_GPIO_PIN0_PAD_STRENGTH_MSB          4
#define WLAN_GPIO_PIN0_PAD_STRENGTH_LSB          3
#define WLAN_GPIO_PIN0_PAD_STRENGTH_MASK         0x00000018
#define WLAN_GPIO_PIN0_PAD_STRENGTH_GET(x)       (((x) & WLAN_GPIO_PIN0_PAD_STRENGTH_MASK) >> WLAN_GPIO_PIN0_PAD_STRENGTH_LSB)
#define WLAN_GPIO_PIN0_PAD_STRENGTH_SET(x)       (((x) << WLAN_GPIO_PIN0_PAD_STRENGTH_LSB) & WLAN_GPIO_PIN0_PAD_STRENGTH_MASK)
#define WLAN_GPIO_PIN0_PAD_DRIVER_MSB            2
#define WLAN_GPIO_PIN0_PAD_DRIVER_LSB            2
#define WLAN_GPIO_PIN0_PAD_DRIVER_MASK           0x00000004
#define WLAN_GPIO_PIN0_PAD_DRIVER_GET(x)         (((x) & WLAN_GPIO_PIN0_PAD_DRIVER_MASK) >> WLAN_GPIO_PIN0_PAD_DRIVER_LSB)
#define WLAN_GPIO_PIN0_PAD_DRIVER_SET(x)         (((x) << WLAN_GPIO_PIN0_PAD_DRIVER_LSB) & WLAN_GPIO_PIN0_PAD_DRIVER_MASK)
#define WLAN_GPIO_PIN0_SOURCE_MSB                0
#define WLAN_GPIO_PIN0_SOURCE_LSB                0
#define WLAN_GPIO_PIN0_SOURCE_MASK               0x00000001
#define WLAN_GPIO_PIN0_SOURCE_GET(x)             (((x) & WLAN_GPIO_PIN0_SOURCE_MASK) >> WLAN_GPIO_PIN0_SOURCE_LSB)
#define WLAN_GPIO_PIN0_SOURCE_SET(x)             (((x) << WLAN_GPIO_PIN0_SOURCE_LSB) & WLAN_GPIO_PIN0_SOURCE_MASK)

#define WLAN_GPIO_PIN1_ADDRESS                   0x0000002c
#define WLAN_GPIO_PIN1_OFFSET                    0x0000002c
#define WLAN_GPIO_PIN1_CONFIG_MSB                13
#define WLAN_GPIO_PIN1_CONFIG_LSB                11
#define WLAN_GPIO_PIN1_CONFIG_MASK               0x00003800
#define WLAN_GPIO_PIN1_CONFIG_GET(x)             (((x) & WLAN_GPIO_PIN1_CONFIG_MASK) >> WLAN_GPIO_PIN1_CONFIG_LSB)
#define WLAN_GPIO_PIN1_CONFIG_SET(x)             (((x) << WLAN_GPIO_PIN1_CONFIG_LSB) & WLAN_GPIO_PIN1_CONFIG_MASK)
#define WLAN_GPIO_PIN1_WAKEUP_ENABLE_MSB         10
#define WLAN_GPIO_PIN1_WAKEUP_ENABLE_LSB         10
#define WLAN_GPIO_PIN1_WAKEUP_ENABLE_MASK        0x00000400
#define WLAN_GPIO_PIN1_WAKEUP_ENABLE_GET(x)      (((x) & WLAN_GPIO_PIN1_WAKEUP_ENABLE_MASK) >> WLAN_GPIO_PIN1_WAKEUP_ENABLE_LSB)
#define WLAN_GPIO_PIN1_WAKEUP_ENABLE_SET(x)      (((x) << WLAN_GPIO_PIN1_WAKEUP_ENABLE_LSB) & WLAN_GPIO_PIN1_WAKEUP_ENABLE_MASK)
#define WLAN_GPIO_PIN1_INT_TYPE_MSB              9
#define WLAN_GPIO_PIN1_INT_TYPE_LSB              7
#define WLAN_GPIO_PIN1_INT_TYPE_MASK             0x00000380
#define WLAN_GPIO_PIN1_INT_TYPE_GET(x)           (((x) & WLAN_GPIO_PIN1_INT_TYPE_MASK) >> WLAN_GPIO_PIN1_INT_TYPE_LSB)
#define WLAN_GPIO_PIN1_INT_TYPE_SET(x)           (((x) << WLAN_GPIO_PIN1_INT_TYPE_LSB) & WLAN_GPIO_PIN1_INT_TYPE_MASK)
#define WLAN_GPIO_PIN1_PAD_PULL_MSB              6
#define WLAN_GPIO_PIN1_PAD_PULL_LSB              5
#define WLAN_GPIO_PIN1_PAD_PULL_MASK             0x00000060
#define WLAN_GPIO_PIN1_PAD_PULL_GET(x)           (((x) & WLAN_GPIO_PIN1_PAD_PULL_MASK) >> WLAN_GPIO_PIN1_PAD_PULL_LSB)
#define WLAN_GPIO_PIN1_PAD_PULL_SET(x)           (((x) << WLAN_GPIO_PIN1_PAD_PULL_LSB) & WLAN_GPIO_PIN1_PAD_PULL_MASK)
#define WLAN_GPIO_PIN1_PAD_STRENGTH_MSB          4
#define WLAN_GPIO_PIN1_PAD_STRENGTH_LSB          3
#define WLAN_GPIO_PIN1_PAD_STRENGTH_MASK         0x00000018
#define WLAN_GPIO_PIN1_PAD_STRENGTH_GET(x)       (((x) & WLAN_GPIO_PIN1_PAD_STRENGTH_MASK) >> WLAN_GPIO_PIN1_PAD_STRENGTH_LSB)
#define WLAN_GPIO_PIN1_PAD_STRENGTH_SET(x)       (((x) << WLAN_GPIO_PIN1_PAD_STRENGTH_LSB) & WLAN_GPIO_PIN1_PAD_STRENGTH_MASK)
#define WLAN_GPIO_PIN1_PAD_DRIVER_MSB            2
#define WLAN_GPIO_PIN1_PAD_DRIVER_LSB            2
#define WLAN_GPIO_PIN1_PAD_DRIVER_MASK           0x00000004
#define WLAN_GPIO_PIN1_PAD_DRIVER_GET(x)         (((x) & WLAN_GPIO_PIN1_PAD_DRIVER_MASK) >> WLAN_GPIO_PIN1_PAD_DRIVER_LSB)
#define WLAN_GPIO_PIN1_PAD_DRIVER_SET(x)         (((x) << WLAN_GPIO_PIN1_PAD_DRIVER_LSB) & WLAN_GPIO_PIN1_PAD_DRIVER_MASK)
#define WLAN_GPIO_PIN1_SOURCE_MSB                0
#define WLAN_GPIO_PIN1_SOURCE_LSB                0
#define WLAN_GPIO_PIN1_SOURCE_MASK               0x00000001
#define WLAN_GPIO_PIN1_SOURCE_GET(x)             (((x) & WLAN_GPIO_PIN1_SOURCE_MASK) >> WLAN_GPIO_PIN1_SOURCE_LSB)
#define WLAN_GPIO_PIN1_SOURCE_SET(x)             (((x) << WLAN_GPIO_PIN1_SOURCE_LSB) & WLAN_GPIO_PIN1_SOURCE_MASK)

#define WLAN_GPIO_PIN2_ADDRESS                   0x00000030
#define WLAN_GPIO_PIN2_OFFSET                    0x00000030
#define WLAN_GPIO_PIN2_CONFIG_MSB                13
#define WLAN_GPIO_PIN2_CONFIG_LSB                11
#define WLAN_GPIO_PIN2_CONFIG_MASK               0x00003800
#define WLAN_GPIO_PIN2_CONFIG_GET(x)             (((x) & WLAN_GPIO_PIN2_CONFIG_MASK) >> WLAN_GPIO_PIN2_CONFIG_LSB)
#define WLAN_GPIO_PIN2_CONFIG_SET(x)             (((x) << WLAN_GPIO_PIN2_CONFIG_LSB) & WLAN_GPIO_PIN2_CONFIG_MASK)
#define WLAN_GPIO_PIN2_WAKEUP_ENABLE_MSB         10
#define WLAN_GPIO_PIN2_WAKEUP_ENABLE_LSB         10
#define WLAN_GPIO_PIN2_WAKEUP_ENABLE_MASK        0x00000400
#define WLAN_GPIO_PIN2_WAKEUP_ENABLE_GET(x)      (((x) & WLAN_GPIO_PIN2_WAKEUP_ENABLE_MASK) >> WLAN_GPIO_PIN2_WAKEUP_ENABLE_LSB)
#define WLAN_GPIO_PIN2_WAKEUP_ENABLE_SET(x)      (((x) << WLAN_GPIO_PIN2_WAKEUP_ENABLE_LSB) & WLAN_GPIO_PIN2_WAKEUP_ENABLE_MASK)
#define WLAN_GPIO_PIN2_INT_TYPE_MSB              9
#define WLAN_GPIO_PIN2_INT_TYPE_LSB              7
#define WLAN_GPIO_PIN2_INT_TYPE_MASK             0x00000380
#define WLAN_GPIO_PIN2_INT_TYPE_GET(x)           (((x) & WLAN_GPIO_PIN2_INT_TYPE_MASK) >> WLAN_GPIO_PIN2_INT_TYPE_LSB)
#define WLAN_GPIO_PIN2_INT_TYPE_SET(x)           (((x) << WLAN_GPIO_PIN2_INT_TYPE_LSB) & WLAN_GPIO_PIN2_INT_TYPE_MASK)
#define WLAN_GPIO_PIN2_PAD_PULL_MSB              6
#define WLAN_GPIO_PIN2_PAD_PULL_LSB              5
#define WLAN_GPIO_PIN2_PAD_PULL_MASK             0x00000060
#define WLAN_GPIO_PIN2_PAD_PULL_GET(x)           (((x) & WLAN_GPIO_PIN2_PAD_PULL_MASK) >> WLAN_GPIO_PIN2_PAD_PULL_LSB)
#define WLAN_GPIO_PIN2_PAD_PULL_SET(x)           (((x) << WLAN_GPIO_PIN2_PAD_PULL_LSB) & WLAN_GPIO_PIN2_PAD_PULL_MASK)
#define WLAN_GPIO_PIN2_PAD_STRENGTH_MSB          4
#define WLAN_GPIO_PIN2_PAD_STRENGTH_LSB          3
#define WLAN_GPIO_PIN2_PAD_STRENGTH_MASK         0x00000018
#define WLAN_GPIO_PIN2_PAD_STRENGTH_GET(x)       (((x) & WLAN_GPIO_PIN2_PAD_STRENGTH_MASK) >> WLAN_GPIO_PIN2_PAD_STRENGTH_LSB)
#define WLAN_GPIO_PIN2_PAD_STRENGTH_SET(x)       (((x) << WLAN_GPIO_PIN2_PAD_STRENGTH_LSB) & WLAN_GPIO_PIN2_PAD_STRENGTH_MASK)
#define WLAN_GPIO_PIN2_PAD_DRIVER_MSB            2
#define WLAN_GPIO_PIN2_PAD_DRIVER_LSB            2
#define WLAN_GPIO_PIN2_PAD_DRIVER_MASK           0x00000004
#define WLAN_GPIO_PIN2_PAD_DRIVER_GET(x)         (((x) & WLAN_GPIO_PIN2_PAD_DRIVER_MASK) >> WLAN_GPIO_PIN2_PAD_DRIVER_LSB)
#define WLAN_GPIO_PIN2_PAD_DRIVER_SET(x)         (((x) << WLAN_GPIO_PIN2_PAD_DRIVER_LSB) & WLAN_GPIO_PIN2_PAD_DRIVER_MASK)
#define WLAN_GPIO_PIN2_SOURCE_MSB                0
#define WLAN_GPIO_PIN2_SOURCE_LSB                0
#define WLAN_GPIO_PIN2_SOURCE_MASK               0x00000001
#define WLAN_GPIO_PIN2_SOURCE_GET(x)             (((x) & WLAN_GPIO_PIN2_SOURCE_MASK) >> WLAN_GPIO_PIN2_SOURCE_LSB)
#define WLAN_GPIO_PIN2_SOURCE_SET(x)             (((x) << WLAN_GPIO_PIN2_SOURCE_LSB) & WLAN_GPIO_PIN2_SOURCE_MASK)

#define WLAN_GPIO_PIN3_ADDRESS                   0x00000034
#define WLAN_GPIO_PIN3_OFFSET                    0x00000034
#define WLAN_GPIO_PIN3_CONFIG_MSB                13
#define WLAN_GPIO_PIN3_CONFIG_LSB                11
#define WLAN_GPIO_PIN3_CONFIG_MASK               0x00003800
#define WLAN_GPIO_PIN3_CONFIG_GET(x)             (((x) & WLAN_GPIO_PIN3_CONFIG_MASK) >> WLAN_GPIO_PIN3_CONFIG_LSB)
#define WLAN_GPIO_PIN3_CONFIG_SET(x)             (((x) << WLAN_GPIO_PIN3_CONFIG_LSB) & WLAN_GPIO_PIN3_CONFIG_MASK)
#define WLAN_GPIO_PIN3_WAKEUP_ENABLE_MSB         10
#define WLAN_GPIO_PIN3_WAKEUP_ENABLE_LSB         10
#define WLAN_GPIO_PIN3_WAKEUP_ENABLE_MASK        0x00000400
#define WLAN_GPIO_PIN3_WAKEUP_ENABLE_GET(x)      (((x) & WLAN_GPIO_PIN3_WAKEUP_ENABLE_MASK) >> WLAN_GPIO_PIN3_WAKEUP_ENABLE_LSB)
#define WLAN_GPIO_PIN3_WAKEUP_ENABLE_SET(x)      (((x) << WLAN_GPIO_PIN3_WAKEUP_ENABLE_LSB) & WLAN_GPIO_PIN3_WAKEUP_ENABLE_MASK)
#define WLAN_GPIO_PIN3_INT_TYPE_MSB              9
#define WLAN_GPIO_PIN3_INT_TYPE_LSB              7
#define WLAN_GPIO_PIN3_INT_TYPE_MASK             0x00000380
#define WLAN_GPIO_PIN3_INT_TYPE_GET(x)           (((x) & WLAN_GPIO_PIN3_INT_TYPE_MASK) >> WLAN_GPIO_PIN3_INT_TYPE_LSB)
#define WLAN_GPIO_PIN3_INT_TYPE_SET(x)           (((x) << WLAN_GPIO_PIN3_INT_TYPE_LSB) & WLAN_GPIO_PIN3_INT_TYPE_MASK)
#define WLAN_GPIO_PIN3_PAD_PULL_MSB              6
#define WLAN_GPIO_PIN3_PAD_PULL_LSB              5
#define WLAN_GPIO_PIN3_PAD_PULL_MASK             0x00000060
#define WLAN_GPIO_PIN3_PAD_PULL_GET(x)           (((x) & WLAN_GPIO_PIN3_PAD_PULL_MASK) >> WLAN_GPIO_PIN3_PAD_PULL_LSB)
#define WLAN_GPIO_PIN3_PAD_PULL_SET(x)           (((x) << WLAN_GPIO_PIN3_PAD_PULL_LSB) & WLAN_GPIO_PIN3_PAD_PULL_MASK)
#define WLAN_GPIO_PIN3_PAD_STRENGTH_MSB          4
#define WLAN_GPIO_PIN3_PAD_STRENGTH_LSB          3
#define WLAN_GPIO_PIN3_PAD_STRENGTH_MASK         0x00000018
#define WLAN_GPIO_PIN3_PAD_STRENGTH_GET(x)       (((x) & WLAN_GPIO_PIN3_PAD_STRENGTH_MASK) >> WLAN_GPIO_PIN3_PAD_STRENGTH_LSB)
#define WLAN_GPIO_PIN3_PAD_STRENGTH_SET(x)       (((x) << WLAN_GPIO_PIN3_PAD_STRENGTH_LSB) & WLAN_GPIO_PIN3_PAD_STRENGTH_MASK)
#define WLAN_GPIO_PIN3_PAD_DRIVER_MSB            2
#define WLAN_GPIO_PIN3_PAD_DRIVER_LSB            2
#define WLAN_GPIO_PIN3_PAD_DRIVER_MASK           0x00000004
#define WLAN_GPIO_PIN3_PAD_DRIVER_GET(x)         (((x) & WLAN_GPIO_PIN3_PAD_DRIVER_MASK) >> WLAN_GPIO_PIN3_PAD_DRIVER_LSB)
#define WLAN_GPIO_PIN3_PAD_DRIVER_SET(x)         (((x) << WLAN_GPIO_PIN3_PAD_DRIVER_LSB) & WLAN_GPIO_PIN3_PAD_DRIVER_MASK)
#define WLAN_GPIO_PIN3_SOURCE_MSB                0
#define WLAN_GPIO_PIN3_SOURCE_LSB                0
#define WLAN_GPIO_PIN3_SOURCE_MASK               0x00000001
#define WLAN_GPIO_PIN3_SOURCE_GET(x)             (((x) & WLAN_GPIO_PIN3_SOURCE_MASK) >> WLAN_GPIO_PIN3_SOURCE_LSB)
#define WLAN_GPIO_PIN3_SOURCE_SET(x)             (((x) << WLAN_GPIO_PIN3_SOURCE_LSB) & WLAN_GPIO_PIN3_SOURCE_MASK)

#define WLAN_GPIO_PIN4_ADDRESS                   0x00000038
#define WLAN_GPIO_PIN4_OFFSET                    0x00000038
#define WLAN_GPIO_PIN4_CONFIG_MSB                13
#define WLAN_GPIO_PIN4_CONFIG_LSB                11
#define WLAN_GPIO_PIN4_CONFIG_MASK               0x00003800
#define WLAN_GPIO_PIN4_CONFIG_GET(x)             (((x) & WLAN_GPIO_PIN4_CONFIG_MASK) >> WLAN_GPIO_PIN4_CONFIG_LSB)
#define WLAN_GPIO_PIN4_CONFIG_SET(x)             (((x) << WLAN_GPIO_PIN4_CONFIG_LSB) & WLAN_GPIO_PIN4_CONFIG_MASK)
#define WLAN_GPIO_PIN4_WAKEUP_ENABLE_MSB         10
#define WLAN_GPIO_PIN4_WAKEUP_ENABLE_LSB         10
#define WLAN_GPIO_PIN4_WAKEUP_ENABLE_MASK        0x00000400
#define WLAN_GPIO_PIN4_WAKEUP_ENABLE_GET(x)      (((x) & WLAN_GPIO_PIN4_WAKEUP_ENABLE_MASK) >> WLAN_GPIO_PIN4_WAKEUP_ENABLE_LSB)
#define WLAN_GPIO_PIN4_WAKEUP_ENABLE_SET(x)      (((x) << WLAN_GPIO_PIN4_WAKEUP_ENABLE_LSB) & WLAN_GPIO_PIN4_WAKEUP_ENABLE_MASK)
#define WLAN_GPIO_PIN4_INT_TYPE_MSB              9
#define WLAN_GPIO_PIN4_INT_TYPE_LSB              7
#define WLAN_GPIO_PIN4_INT_TYPE_MASK             0x00000380
#define WLAN_GPIO_PIN4_INT_TYPE_GET(x)           (((x) & WLAN_GPIO_PIN4_INT_TYPE_MASK) >> WLAN_GPIO_PIN4_INT_TYPE_LSB)
#define WLAN_GPIO_PIN4_INT_TYPE_SET(x)           (((x) << WLAN_GPIO_PIN4_INT_TYPE_LSB) & WLAN_GPIO_PIN4_INT_TYPE_MASK)
#define WLAN_GPIO_PIN4_PAD_PULL_MSB              6
#define WLAN_GPIO_PIN4_PAD_PULL_LSB              5
#define WLAN_GPIO_PIN4_PAD_PULL_MASK             0x00000060
#define WLAN_GPIO_PIN4_PAD_PULL_GET(x)           (((x) & WLAN_GPIO_PIN4_PAD_PULL_MASK) >> WLAN_GPIO_PIN4_PAD_PULL_LSB)
#define WLAN_GPIO_PIN4_PAD_PULL_SET(x)           (((x) << WLAN_GPIO_PIN4_PAD_PULL_LSB) & WLAN_GPIO_PIN4_PAD_PULL_MASK)
#define WLAN_GPIO_PIN4_PAD_STRENGTH_MSB          4
#define WLAN_GPIO_PIN4_PAD_STRENGTH_LSB          3
#define WLAN_GPIO_PIN4_PAD_STRENGTH_MASK         0x00000018
#define WLAN_GPIO_PIN4_PAD_STRENGTH_GET(x)       (((x) & WLAN_GPIO_PIN4_PAD_STRENGTH_MASK) >> WLAN_GPIO_PIN4_PAD_STRENGTH_LSB)
#define WLAN_GPIO_PIN4_PAD_STRENGTH_SET(x)       (((x) << WLAN_GPIO_PIN4_PAD_STRENGTH_LSB) & WLAN_GPIO_PIN4_PAD_STRENGTH_MASK)
#define WLAN_GPIO_PIN4_PAD_DRIVER_MSB            2
#define WLAN_GPIO_PIN4_PAD_DRIVER_LSB            2
#define WLAN_GPIO_PIN4_PAD_DRIVER_MASK           0x00000004
#define WLAN_GPIO_PIN4_PAD_DRIVER_GET(x)         (((x) & WLAN_GPIO_PIN4_PAD_DRIVER_MASK) >> WLAN_GPIO_PIN4_PAD_DRIVER_LSB)
#define WLAN_GPIO_PIN4_PAD_DRIVER_SET(x)         (((x) << WLAN_GPIO_PIN4_PAD_DRIVER_LSB) & WLAN_GPIO_PIN4_PAD_DRIVER_MASK)
#define WLAN_GPIO_PIN4_SOURCE_MSB                0
#define WLAN_GPIO_PIN4_SOURCE_LSB                0
#define WLAN_GPIO_PIN4_SOURCE_MASK               0x00000001
#define WLAN_GPIO_PIN4_SOURCE_GET(x)             (((x) & WLAN_GPIO_PIN4_SOURCE_MASK) >> WLAN_GPIO_PIN4_SOURCE_LSB)
#define WLAN_GPIO_PIN4_SOURCE_SET(x)             (((x) << WLAN_GPIO_PIN4_SOURCE_LSB) & WLAN_GPIO_PIN4_SOURCE_MASK)

#define WLAN_GPIO_PIN5_ADDRESS                   0x0000003c
#define WLAN_GPIO_PIN5_OFFSET                    0x0000003c
#define WLAN_GPIO_PIN5_CONFIG_MSB                13
#define WLAN_GPIO_PIN5_CONFIG_LSB                11
#define WLAN_GPIO_PIN5_CONFIG_MASK               0x00003800
#define WLAN_GPIO_PIN5_CONFIG_GET(x)             (((x) & WLAN_GPIO_PIN5_CONFIG_MASK) >> WLAN_GPIO_PIN5_CONFIG_LSB)
#define WLAN_GPIO_PIN5_CONFIG_SET(x)             (((x) << WLAN_GPIO_PIN5_CONFIG_LSB) & WLAN_GPIO_PIN5_CONFIG_MASK)
#define WLAN_GPIO_PIN5_WAKEUP_ENABLE_MSB         10
#define WLAN_GPIO_PIN5_WAKEUP_ENABLE_LSB         10
#define WLAN_GPIO_PIN5_WAKEUP_ENABLE_MASK        0x00000400
#define WLAN_GPIO_PIN5_WAKEUP_ENABLE_GET(x)      (((x) & WLAN_GPIO_PIN5_WAKEUP_ENABLE_MASK) >> WLAN_GPIO_PIN5_WAKEUP_ENABLE_LSB)
#define WLAN_GPIO_PIN5_WAKEUP_ENABLE_SET(x)      (((x) << WLAN_GPIO_PIN5_WAKEUP_ENABLE_LSB) & WLAN_GPIO_PIN5_WAKEUP_ENABLE_MASK)
#define WLAN_GPIO_PIN5_INT_TYPE_MSB              9
#define WLAN_GPIO_PIN5_INT_TYPE_LSB              7
#define WLAN_GPIO_PIN5_INT_TYPE_MASK             0x00000380
#define WLAN_GPIO_PIN5_INT_TYPE_GET(x)           (((x) & WLAN_GPIO_PIN5_INT_TYPE_MASK) >> WLAN_GPIO_PIN5_INT_TYPE_LSB)
#define WLAN_GPIO_PIN5_INT_TYPE_SET(x)           (((x) << WLAN_GPIO_PIN5_INT_TYPE_LSB) & WLAN_GPIO_PIN5_INT_TYPE_MASK)
#define WLAN_GPIO_PIN5_PAD_PULL_MSB              6
#define WLAN_GPIO_PIN5_PAD_PULL_LSB              5
#define WLAN_GPIO_PIN5_PAD_PULL_MASK             0x00000060
#define WLAN_GPIO_PIN5_PAD_PULL_GET(x)           (((x) & WLAN_GPIO_PIN5_PAD_PULL_MASK) >> WLAN_GPIO_PIN5_PAD_PULL_LSB)
#define WLAN_GPIO_PIN5_PAD_PULL_SET(x)           (((x) << WLAN_GPIO_PIN5_PAD_PULL_LSB) & WLAN_GPIO_PIN5_PAD_PULL_MASK)
#define WLAN_GPIO_PIN5_PAD_STRENGTH_MSB          4
#define WLAN_GPIO_PIN5_PAD_STRENGTH_LSB          3
#define WLAN_GPIO_PIN5_PAD_STRENGTH_MASK         0x00000018
#define WLAN_GPIO_PIN5_PAD_STRENGTH_GET(x)       (((x) & WLAN_GPIO_PIN5_PAD_STRENGTH_MASK) >> WLAN_GPIO_PIN5_PAD_STRENGTH_LSB)
#define WLAN_GPIO_PIN5_PAD_STRENGTH_SET(x)       (((x) << WLAN_GPIO_PIN5_PAD_STRENGTH_LSB) & WLAN_GPIO_PIN5_PAD_STRENGTH_MASK)
#define WLAN_GPIO_PIN5_PAD_DRIVER_MSB            2
#define WLAN_GPIO_PIN5_PAD_DRIVER_LSB            2
#define WLAN_GPIO_PIN5_PAD_DRIVER_MASK           0x00000004
#define WLAN_GPIO_PIN5_PAD_DRIVER_GET(x)         (((x) & WLAN_GPIO_PIN5_PAD_DRIVER_MASK) >> WLAN_GPIO_PIN5_PAD_DRIVER_LSB)
#define WLAN_GPIO_PIN5_PAD_DRIVER_SET(x)         (((x) << WLAN_GPIO_PIN5_PAD_DRIVER_LSB) & WLAN_GPIO_PIN5_PAD_DRIVER_MASK)
#define WLAN_GPIO_PIN5_SOURCE_MSB                0
#define WLAN_GPIO_PIN5_SOURCE_LSB                0
#define WLAN_GPIO_PIN5_SOURCE_MASK               0x00000001
#define WLAN_GPIO_PIN5_SOURCE_GET(x)             (((x) & WLAN_GPIO_PIN5_SOURCE_MASK) >> WLAN_GPIO_PIN5_SOURCE_LSB)
#define WLAN_GPIO_PIN5_SOURCE_SET(x)             (((x) << WLAN_GPIO_PIN5_SOURCE_LSB) & WLAN_GPIO_PIN5_SOURCE_MASK)

#define WLAN_GPIO_PIN6_ADDRESS                   0x00000040
#define WLAN_GPIO_PIN6_OFFSET                    0x00000040
#define WLAN_GPIO_PIN6_CONFIG_MSB                13
#define WLAN_GPIO_PIN6_CONFIG_LSB                11
#define WLAN_GPIO_PIN6_CONFIG_MASK               0x00003800
#define WLAN_GPIO_PIN6_CONFIG_GET(x)             (((x) & WLAN_GPIO_PIN6_CONFIG_MASK) >> WLAN_GPIO_PIN6_CONFIG_LSB)
#define WLAN_GPIO_PIN6_CONFIG_SET(x)             (((x) << WLAN_GPIO_PIN6_CONFIG_LSB) & WLAN_GPIO_PIN6_CONFIG_MASK)
#define WLAN_GPIO_PIN6_WAKEUP_ENABLE_MSB         10
#define WLAN_GPIO_PIN6_WAKEUP_ENABLE_LSB         10
#define WLAN_GPIO_PIN6_WAKEUP_ENABLE_MASK        0x00000400
#define WLAN_GPIO_PIN6_WAKEUP_ENABLE_GET(x)      (((x) & WLAN_GPIO_PIN6_WAKEUP_ENABLE_MASK) >> WLAN_GPIO_PIN6_WAKEUP_ENABLE_LSB)
#define WLAN_GPIO_PIN6_WAKEUP_ENABLE_SET(x)      (((x) << WLAN_GPIO_PIN6_WAKEUP_ENABLE_LSB) & WLAN_GPIO_PIN6_WAKEUP_ENABLE_MASK)
#define WLAN_GPIO_PIN6_INT_TYPE_MSB              9
#define WLAN_GPIO_PIN6_INT_TYPE_LSB              7
#define WLAN_GPIO_PIN6_INT_TYPE_MASK             0x00000380
#define WLAN_GPIO_PIN6_INT_TYPE_GET(x)           (((x) & WLAN_GPIO_PIN6_INT_TYPE_MASK) >> WLAN_GPIO_PIN6_INT_TYPE_LSB)
#define WLAN_GPIO_PIN6_INT_TYPE_SET(x)           (((x) << WLAN_GPIO_PIN6_INT_TYPE_LSB) & WLAN_GPIO_PIN6_INT_TYPE_MASK)
#define WLAN_GPIO_PIN6_PAD_PULL_MSB              6
#define WLAN_GPIO_PIN6_PAD_PULL_LSB              5
#define WLAN_GPIO_PIN6_PAD_PULL_MASK             0x00000060
#define WLAN_GPIO_PIN6_PAD_PULL_GET(x)           (((x) & WLAN_GPIO_PIN6_PAD_PULL_MASK) >> WLAN_GPIO_PIN6_PAD_PULL_LSB)
#define WLAN_GPIO_PIN6_PAD_PULL_SET(x)           (((x) << WLAN_GPIO_PIN6_PAD_PULL_LSB) & WLAN_GPIO_PIN6_PAD_PULL_MASK)
#define WLAN_GPIO_PIN6_PAD_STRENGTH_MSB          4
#define WLAN_GPIO_PIN6_PAD_STRENGTH_LSB          3
#define WLAN_GPIO_PIN6_PAD_STRENGTH_MASK         0x00000018
#define WLAN_GPIO_PIN6_PAD_STRENGTH_GET(x)       (((x) & WLAN_GPIO_PIN6_PAD_STRENGTH_MASK) >> WLAN_GPIO_PIN6_PAD_STRENGTH_LSB)
#define WLAN_GPIO_PIN6_PAD_STRENGTH_SET(x)       (((x) << WLAN_GPIO_PIN6_PAD_STRENGTH_LSB) & WLAN_GPIO_PIN6_PAD_STRENGTH_MASK)
#define WLAN_GPIO_PIN6_PAD_DRIVER_MSB            2
#define WLAN_GPIO_PIN6_PAD_DRIVER_LSB            2
#define WLAN_GPIO_PIN6_PAD_DRIVER_MASK           0x00000004
#define WLAN_GPIO_PIN6_PAD_DRIVER_GET(x)         (((x) & WLAN_GPIO_PIN6_PAD_DRIVER_MASK) >> WLAN_GPIO_PIN6_PAD_DRIVER_LSB)
#define WLAN_GPIO_PIN6_PAD_DRIVER_SET(x)         (((x) << WLAN_GPIO_PIN6_PAD_DRIVER_LSB) & WLAN_GPIO_PIN6_PAD_DRIVER_MASK)
#define WLAN_GPIO_PIN6_SOURCE_MSB                0
#define WLAN_GPIO_PIN6_SOURCE_LSB                0
#define WLAN_GPIO_PIN6_SOURCE_MASK               0x00000001
#define WLAN_GPIO_PIN6_SOURCE_GET(x)             (((x) & WLAN_GPIO_PIN6_SOURCE_MASK) >> WLAN_GPIO_PIN6_SOURCE_LSB)
#define WLAN_GPIO_PIN6_SOURCE_SET(x)             (((x) << WLAN_GPIO_PIN6_SOURCE_LSB) & WLAN_GPIO_PIN6_SOURCE_MASK)

#define WLAN_GPIO_PIN7_ADDRESS                   0x00000044
#define WLAN_GPIO_PIN7_OFFSET                    0x00000044
#define WLAN_GPIO_PIN7_CONFIG_MSB                13
#define WLAN_GPIO_PIN7_CONFIG_LSB                11
#define WLAN_GPIO_PIN7_CONFIG_MASK               0x00003800
#define WLAN_GPIO_PIN7_CONFIG_GET(x)             (((x) & WLAN_GPIO_PIN7_CONFIG_MASK) >> WLAN_GPIO_PIN7_CONFIG_LSB)
#define WLAN_GPIO_PIN7_CONFIG_SET(x)             (((x) << WLAN_GPIO_PIN7_CONFIG_LSB) & WLAN_GPIO_PIN7_CONFIG_MASK)
#define WLAN_GPIO_PIN7_WAKEUP_ENABLE_MSB         10
#define WLAN_GPIO_PIN7_WAKEUP_ENABLE_LSB         10
#define WLAN_GPIO_PIN7_WAKEUP_ENABLE_MASK        0x00000400
#define WLAN_GPIO_PIN7_WAKEUP_ENABLE_GET(x)      (((x) & WLAN_GPIO_PIN7_WAKEUP_ENABLE_MASK) >> WLAN_GPIO_PIN7_WAKEUP_ENABLE_LSB)
#define WLAN_GPIO_PIN7_WAKEUP_ENABLE_SET(x)      (((x) << WLAN_GPIO_PIN7_WAKEUP_ENABLE_LSB) & WLAN_GPIO_PIN7_WAKEUP_ENABLE_MASK)
#define WLAN_GPIO_PIN7_INT_TYPE_MSB              9
#define WLAN_GPIO_PIN7_INT_TYPE_LSB              7
#define WLAN_GPIO_PIN7_INT_TYPE_MASK             0x00000380
#define WLAN_GPIO_PIN7_INT_TYPE_GET(x)           (((x) & WLAN_GPIO_PIN7_INT_TYPE_MASK) >> WLAN_GPIO_PIN7_INT_TYPE_LSB)
#define WLAN_GPIO_PIN7_INT_TYPE_SET(x)           (((x) << WLAN_GPIO_PIN7_INT_TYPE_LSB) & WLAN_GPIO_PIN7_INT_TYPE_MASK)
#define WLAN_GPIO_PIN7_PAD_PULL_MSB              6
#define WLAN_GPIO_PIN7_PAD_PULL_LSB              5
#define WLAN_GPIO_PIN7_PAD_PULL_MASK             0x00000060
#define WLAN_GPIO_PIN7_PAD_PULL_GET(x)           (((x) & WLAN_GPIO_PIN7_PAD_PULL_MASK) >> WLAN_GPIO_PIN7_PAD_PULL_LSB)
#define WLAN_GPIO_PIN7_PAD_PULL_SET(x)           (((x) << WLAN_GPIO_PIN7_PAD_PULL_LSB) & WLAN_GPIO_PIN7_PAD_PULL_MASK)
#define WLAN_GPIO_PIN7_PAD_STRENGTH_MSB          4
#define WLAN_GPIO_PIN7_PAD_STRENGTH_LSB          3
#define WLAN_GPIO_PIN7_PAD_STRENGTH_MASK         0x00000018
#define WLAN_GPIO_PIN7_PAD_STRENGTH_GET(x)       (((x) & WLAN_GPIO_PIN7_PAD_STRENGTH_MASK) >> WLAN_GPIO_PIN7_PAD_STRENGTH_LSB)
#define WLAN_GPIO_PIN7_PAD_STRENGTH_SET(x)       (((x) << WLAN_GPIO_PIN7_PAD_STRENGTH_LSB) & WLAN_GPIO_PIN7_PAD_STRENGTH_MASK)
#define WLAN_GPIO_PIN7_PAD_DRIVER_MSB            2
#define WLAN_GPIO_PIN7_PAD_DRIVER_LSB            2
#define WLAN_GPIO_PIN7_PAD_DRIVER_MASK           0x00000004
#define WLAN_GPIO_PIN7_PAD_DRIVER_GET(x)         (((x) & WLAN_GPIO_PIN7_PAD_DRIVER_MASK) >> WLAN_GPIO_PIN7_PAD_DRIVER_LSB)
#define WLAN_GPIO_PIN7_PAD_DRIVER_SET(x)         (((x) << WLAN_GPIO_PIN7_PAD_DRIVER_LSB) & WLAN_GPIO_PIN7_PAD_DRIVER_MASK)
#define WLAN_GPIO_PIN7_SOURCE_MSB                0
#define WLAN_GPIO_PIN7_SOURCE_LSB                0
#define WLAN_GPIO_PIN7_SOURCE_MASK               0x00000001
#define WLAN_GPIO_PIN7_SOURCE_GET(x)             (((x) & WLAN_GPIO_PIN7_SOURCE_MASK) >> WLAN_GPIO_PIN7_SOURCE_LSB)
#define WLAN_GPIO_PIN7_SOURCE_SET(x)             (((x) << WLAN_GPIO_PIN7_SOURCE_LSB) & WLAN_GPIO_PIN7_SOURCE_MASK)

#define WLAN_GPIO_PIN8_ADDRESS                   0x00000048
#define WLAN_GPIO_PIN8_OFFSET                    0x00000048
#define WLAN_GPIO_PIN8_CONFIG_MSB                13
#define WLAN_GPIO_PIN8_CONFIG_LSB                11
#define WLAN_GPIO_PIN8_CONFIG_MASK               0x00003800
#define WLAN_GPIO_PIN8_CONFIG_GET(x)             (((x) & WLAN_GPIO_PIN8_CONFIG_MASK) >> WLAN_GPIO_PIN8_CONFIG_LSB)
#define WLAN_GPIO_PIN8_CONFIG_SET(x)             (((x) << WLAN_GPIO_PIN8_CONFIG_LSB) & WLAN_GPIO_PIN8_CONFIG_MASK)
#define WLAN_GPIO_PIN8_WAKEUP_ENABLE_MSB         10
#define WLAN_GPIO_PIN8_WAKEUP_ENABLE_LSB         10
#define WLAN_GPIO_PIN8_WAKEUP_ENABLE_MASK        0x00000400
#define WLAN_GPIO_PIN8_WAKEUP_ENABLE_GET(x)      (((x) & WLAN_GPIO_PIN8_WAKEUP_ENABLE_MASK) >> WLAN_GPIO_PIN8_WAKEUP_ENABLE_LSB)
#define WLAN_GPIO_PIN8_WAKEUP_ENABLE_SET(x)      (((x) << WLAN_GPIO_PIN8_WAKEUP_ENABLE_LSB) & WLAN_GPIO_PIN8_WAKEUP_ENABLE_MASK)
#define WLAN_GPIO_PIN8_INT_TYPE_MSB              9
#define WLAN_GPIO_PIN8_INT_TYPE_LSB              7
#define WLAN_GPIO_PIN8_INT_TYPE_MASK             0x00000380
#define WLAN_GPIO_PIN8_INT_TYPE_GET(x)           (((x) & WLAN_GPIO_PIN8_INT_TYPE_MASK) >> WLAN_GPIO_PIN8_INT_TYPE_LSB)
#define WLAN_GPIO_PIN8_INT_TYPE_SET(x)           (((x) << WLAN_GPIO_PIN8_INT_TYPE_LSB) & WLAN_GPIO_PIN8_INT_TYPE_MASK)
#define WLAN_GPIO_PIN8_PAD_PULL_MSB              6
#define WLAN_GPIO_PIN8_PAD_PULL_LSB              5
#define WLAN_GPIO_PIN8_PAD_PULL_MASK             0x00000060
#define WLAN_GPIO_PIN8_PAD_PULL_GET(x)           (((x) & WLAN_GPIO_PIN8_PAD_PULL_MASK) >> WLAN_GPIO_PIN8_PAD_PULL_LSB)
#define WLAN_GPIO_PIN8_PAD_PULL_SET(x)           (((x) << WLAN_GPIO_PIN8_PAD_PULL_LSB) & WLAN_GPIO_PIN8_PAD_PULL_MASK)
#define WLAN_GPIO_PIN8_PAD_STRENGTH_MSB          4
#define WLAN_GPIO_PIN8_PAD_STRENGTH_LSB          3
#define WLAN_GPIO_PIN8_PAD_STRENGTH_MASK         0x00000018
#define WLAN_GPIO_PIN8_PAD_STRENGTH_GET(x)       (((x) & WLAN_GPIO_PIN8_PAD_STRENGTH_MASK) >> WLAN_GPIO_PIN8_PAD_STRENGTH_LSB)
#define WLAN_GPIO_PIN8_PAD_STRENGTH_SET(x)       (((x) << WLAN_GPIO_PIN8_PAD_STRENGTH_LSB) & WLAN_GPIO_PIN8_PAD_STRENGTH_MASK)
#define WLAN_GPIO_PIN8_PAD_DRIVER_MSB            2
#define WLAN_GPIO_PIN8_PAD_DRIVER_LSB            2
#define WLAN_GPIO_PIN8_PAD_DRIVER_MASK           0x00000004
#define WLAN_GPIO_PIN8_PAD_DRIVER_GET(x)         (((x) & WLAN_GPIO_PIN8_PAD_DRIVER_MASK) >> WLAN_GPIO_PIN8_PAD_DRIVER_LSB)
#define WLAN_GPIO_PIN8_PAD_DRIVER_SET(x)         (((x) << WLAN_GPIO_PIN8_PAD_DRIVER_LSB) & WLAN_GPIO_PIN8_PAD_DRIVER_MASK)
#define WLAN_GPIO_PIN8_SOURCE_MSB                0
#define WLAN_GPIO_PIN8_SOURCE_LSB                0
#define WLAN_GPIO_PIN8_SOURCE_MASK               0x00000001
#define WLAN_GPIO_PIN8_SOURCE_GET(x)             (((x) & WLAN_GPIO_PIN8_SOURCE_MASK) >> WLAN_GPIO_PIN8_SOURCE_LSB)
#define WLAN_GPIO_PIN8_SOURCE_SET(x)             (((x) << WLAN_GPIO_PIN8_SOURCE_LSB) & WLAN_GPIO_PIN8_SOURCE_MASK)

#define WLAN_GPIO_PIN9_ADDRESS                   0x0000004c
#define WLAN_GPIO_PIN9_OFFSET                    0x0000004c
#define WLAN_GPIO_PIN9_CONFIG_MSB                13
#define WLAN_GPIO_PIN9_CONFIG_LSB                11
#define WLAN_GPIO_PIN9_CONFIG_MASK               0x00003800
#define WLAN_GPIO_PIN9_CONFIG_GET(x)             (((x) & WLAN_GPIO_PIN9_CONFIG_MASK) >> WLAN_GPIO_PIN9_CONFIG_LSB)
#define WLAN_GPIO_PIN9_CONFIG_SET(x)             (((x) << WLAN_GPIO_PIN9_CONFIG_LSB) & WLAN_GPIO_PIN9_CONFIG_MASK)
#define WLAN_GPIO_PIN9_WAKEUP_ENABLE_MSB         10
#define WLAN_GPIO_PIN9_WAKEUP_ENABLE_LSB         10
#define WLAN_GPIO_PIN9_WAKEUP_ENABLE_MASK        0x00000400
#define WLAN_GPIO_PIN9_WAKEUP_ENABLE_GET(x)      (((x) & WLAN_GPIO_PIN9_WAKEUP_ENABLE_MASK) >> WLAN_GPIO_PIN9_WAKEUP_ENABLE_LSB)
#define WLAN_GPIO_PIN9_WAKEUP_ENABLE_SET(x)      (((x) << WLAN_GPIO_PIN9_WAKEUP_ENABLE_LSB) & WLAN_GPIO_PIN9_WAKEUP_ENABLE_MASK)
#define WLAN_GPIO_PIN9_INT_TYPE_MSB              9
#define WLAN_GPIO_PIN9_INT_TYPE_LSB              7
#define WLAN_GPIO_PIN9_INT_TYPE_MASK             0x00000380
#define WLAN_GPIO_PIN9_INT_TYPE_GET(x)           (((x) & WLAN_GPIO_PIN9_INT_TYPE_MASK) >> WLAN_GPIO_PIN9_INT_TYPE_LSB)
#define WLAN_GPIO_PIN9_INT_TYPE_SET(x)           (((x) << WLAN_GPIO_PIN9_INT_TYPE_LSB) & WLAN_GPIO_PIN9_INT_TYPE_MASK)
#define WLAN_GPIO_PIN9_PAD_PULL_MSB              6
#define WLAN_GPIO_PIN9_PAD_PULL_LSB              5
#define WLAN_GPIO_PIN9_PAD_PULL_MASK             0x00000060
#define WLAN_GPIO_PIN9_PAD_PULL_GET(x)           (((x) & WLAN_GPIO_PIN9_PAD_PULL_MASK) >> WLAN_GPIO_PIN9_PAD_PULL_LSB)
#define WLAN_GPIO_PIN9_PAD_PULL_SET(x)           (((x) << WLAN_GPIO_PIN9_PAD_PULL_LSB) & WLAN_GPIO_PIN9_PAD_PULL_MASK)
#define WLAN_GPIO_PIN9_PAD_STRENGTH_MSB          4
#define WLAN_GPIO_PIN9_PAD_STRENGTH_LSB          3
#define WLAN_GPIO_PIN9_PAD_STRENGTH_MASK         0x00000018
#define WLAN_GPIO_PIN9_PAD_STRENGTH_GET(x)       (((x) & WLAN_GPIO_PIN9_PAD_STRENGTH_MASK) >> WLAN_GPIO_PIN9_PAD_STRENGTH_LSB)
#define WLAN_GPIO_PIN9_PAD_STRENGTH_SET(x)       (((x) << WLAN_GPIO_PIN9_PAD_STRENGTH_LSB) & WLAN_GPIO_PIN9_PAD_STRENGTH_MASK)
#define WLAN_GPIO_PIN9_PAD_DRIVER_MSB            2
#define WLAN_GPIO_PIN9_PAD_DRIVER_LSB            2
#define WLAN_GPIO_PIN9_PAD_DRIVER_MASK           0x00000004
#define WLAN_GPIO_PIN9_PAD_DRIVER_GET(x)         (((x) & WLAN_GPIO_PIN9_PAD_DRIVER_MASK) >> WLAN_GPIO_PIN9_PAD_DRIVER_LSB)
#define WLAN_GPIO_PIN9_PAD_DRIVER_SET(x)         (((x) << WLAN_GPIO_PIN9_PAD_DRIVER_LSB) & WLAN_GPIO_PIN9_PAD_DRIVER_MASK)
#define WLAN_GPIO_PIN9_SOURCE_MSB                0
#define WLAN_GPIO_PIN9_SOURCE_LSB                0
#define WLAN_GPIO_PIN9_SOURCE_MASK               0x00000001
#define WLAN_GPIO_PIN9_SOURCE_GET(x)             (((x) & WLAN_GPIO_PIN9_SOURCE_MASK) >> WLAN_GPIO_PIN9_SOURCE_LSB)
#define WLAN_GPIO_PIN9_SOURCE_SET(x)             (((x) << WLAN_GPIO_PIN9_SOURCE_LSB) & WLAN_GPIO_PIN9_SOURCE_MASK)

#define WLAN_GPIO_PIN10_ADDRESS                  0x00000050
#define WLAN_GPIO_PIN10_OFFSET                   0x00000050
#define WLAN_GPIO_PIN10_CONFIG_MSB               13
#define WLAN_GPIO_PIN10_CONFIG_LSB               11
#define WLAN_GPIO_PIN10_CONFIG_MASK              0x00003800
#define WLAN_GPIO_PIN10_CONFIG_GET(x)            (((x) & WLAN_GPIO_PIN10_CONFIG_MASK) >> WLAN_GPIO_PIN10_CONFIG_LSB)
#define WLAN_GPIO_PIN10_CONFIG_SET(x)            (((x) << WLAN_GPIO_PIN10_CONFIG_LSB) & WLAN_GPIO_PIN10_CONFIG_MASK)
#define WLAN_GPIO_PIN10_WAKEUP_ENABLE_MSB        10
#define WLAN_GPIO_PIN10_WAKEUP_ENABLE_LSB        10
#define WLAN_GPIO_PIN10_WAKEUP_ENABLE_MASK       0x00000400
#define WLAN_GPIO_PIN10_WAKEUP_ENABLE_GET(x)     (((x) & WLAN_GPIO_PIN10_WAKEUP_ENABLE_MASK) >> WLAN_GPIO_PIN10_WAKEUP_ENABLE_LSB)
#define WLAN_GPIO_PIN10_WAKEUP_ENABLE_SET(x)     (((x) << WLAN_GPIO_PIN10_WAKEUP_ENABLE_LSB) & WLAN_GPIO_PIN10_WAKEUP_ENABLE_MASK)
#define WLAN_GPIO_PIN10_INT_TYPE_MSB             9
#define WLAN_GPIO_PIN10_INT_TYPE_LSB             7
#define WLAN_GPIO_PIN10_INT_TYPE_MASK            0x00000380
#define WLAN_GPIO_PIN10_INT_TYPE_GET(x)          (((x) & WLAN_GPIO_PIN10_INT_TYPE_MASK) >> WLAN_GPIO_PIN10_INT_TYPE_LSB)
#define WLAN_GPIO_PIN10_INT_TYPE_SET(x)          (((x) << WLAN_GPIO_PIN10_INT_TYPE_LSB) & WLAN_GPIO_PIN10_INT_TYPE_MASK)
#define WLAN_GPIO_PIN10_PAD_PULL_MSB             6
#define WLAN_GPIO_PIN10_PAD_PULL_LSB             5
#define WLAN_GPIO_PIN10_PAD_PULL_MASK            0x00000060
#define WLAN_GPIO_PIN10_PAD_PULL_GET(x)          (((x) & WLAN_GPIO_PIN10_PAD_PULL_MASK) >> WLAN_GPIO_PIN10_PAD_PULL_LSB)
#define WLAN_GPIO_PIN10_PAD_PULL_SET(x)          (((x) << WLAN_GPIO_PIN10_PAD_PULL_LSB) & WLAN_GPIO_PIN10_PAD_PULL_MASK)
#define WLAN_GPIO_PIN10_PAD_STRENGTH_MSB         4
#define WLAN_GPIO_PIN10_PAD_STRENGTH_LSB         3
#define WLAN_GPIO_PIN10_PAD_STRENGTH_MASK        0x00000018
#define WLAN_GPIO_PIN10_PAD_STRENGTH_GET(x)      (((x) & WLAN_GPIO_PIN10_PAD_STRENGTH_MASK) >> WLAN_GPIO_PIN10_PAD_STRENGTH_LSB)
#define WLAN_GPIO_PIN10_PAD_STRENGTH_SET(x)      (((x) << WLAN_GPIO_PIN10_PAD_STRENGTH_LSB) & WLAN_GPIO_PIN10_PAD_STRENGTH_MASK)
#define WLAN_GPIO_PIN10_PAD_DRIVER_MSB           2
#define WLAN_GPIO_PIN10_PAD_DRIVER_LSB           2
#define WLAN_GPIO_PIN10_PAD_DRIVER_MASK          0x00000004
#define WLAN_GPIO_PIN10_PAD_DRIVER_GET(x)        (((x) & WLAN_GPIO_PIN10_PAD_DRIVER_MASK) >> WLAN_GPIO_PIN10_PAD_DRIVER_LSB)
#define WLAN_GPIO_PIN10_PAD_DRIVER_SET(x)        (((x) << WLAN_GPIO_PIN10_PAD_DRIVER_LSB) & WLAN_GPIO_PIN10_PAD_DRIVER_MASK)
#define WLAN_GPIO_PIN10_SOURCE_MSB               0
#define WLAN_GPIO_PIN10_SOURCE_LSB               0
#define WLAN_GPIO_PIN10_SOURCE_MASK              0x00000001
#define WLAN_GPIO_PIN10_SOURCE_GET(x)            (((x) & WLAN_GPIO_PIN10_SOURCE_MASK) >> WLAN_GPIO_PIN10_SOURCE_LSB)
#define WLAN_GPIO_PIN10_SOURCE_SET(x)            (((x) << WLAN_GPIO_PIN10_SOURCE_LSB) & WLAN_GPIO_PIN10_SOURCE_MASK)

#define WLAN_GPIO_PIN11_ADDRESS                  0x00000054
#define WLAN_GPIO_PIN11_OFFSET                   0x00000054
#define WLAN_GPIO_PIN11_CONFIG_MSB               13
#define WLAN_GPIO_PIN11_CONFIG_LSB               11
#define WLAN_GPIO_PIN11_CONFIG_MASK              0x00003800
#define WLAN_GPIO_PIN11_CONFIG_GET(x)            (((x) & WLAN_GPIO_PIN11_CONFIG_MASK) >> WLAN_GPIO_PIN11_CONFIG_LSB)
#define WLAN_GPIO_PIN11_CONFIG_SET(x)            (((x) << WLAN_GPIO_PIN11_CONFIG_LSB) & WLAN_GPIO_PIN11_CONFIG_MASK)
#define WLAN_GPIO_PIN11_WAKEUP_ENABLE_MSB        10
#define WLAN_GPIO_PIN11_WAKEUP_ENABLE_LSB        10
#define WLAN_GPIO_PIN11_WAKEUP_ENABLE_MASK       0x00000400
#define WLAN_GPIO_PIN11_WAKEUP_ENABLE_GET(x)     (((x) & WLAN_GPIO_PIN11_WAKEUP_ENABLE_MASK) >> WLAN_GPIO_PIN11_WAKEUP_ENABLE_LSB)
#define WLAN_GPIO_PIN11_WAKEUP_ENABLE_SET(x)     (((x) << WLAN_GPIO_PIN11_WAKEUP_ENABLE_LSB) & WLAN_GPIO_PIN11_WAKEUP_ENABLE_MASK)
#define WLAN_GPIO_PIN11_INT_TYPE_MSB             9
#define WLAN_GPIO_PIN11_INT_TYPE_LSB             7
#define WLAN_GPIO_PIN11_INT_TYPE_MASK            0x00000380
#define WLAN_GPIO_PIN11_INT_TYPE_GET(x)          (((x) & WLAN_GPIO_PIN11_INT_TYPE_MASK) >> WLAN_GPIO_PIN11_INT_TYPE_LSB)
#define WLAN_GPIO_PIN11_INT_TYPE_SET(x)          (((x) << WLAN_GPIO_PIN11_INT_TYPE_LSB) & WLAN_GPIO_PIN11_INT_TYPE_MASK)
#define WLAN_GPIO_PIN11_PAD_PULL_MSB             6
#define WLAN_GPIO_PIN11_PAD_PULL_LSB             5
#define WLAN_GPIO_PIN11_PAD_PULL_MASK            0x00000060
#define WLAN_GPIO_PIN11_PAD_PULL_GET(x)          (((x) & WLAN_GPIO_PIN11_PAD_PULL_MASK) >> WLAN_GPIO_PIN11_PAD_PULL_LSB)
#define WLAN_GPIO_PIN11_PAD_PULL_SET(x)          (((x) << WLAN_GPIO_PIN11_PAD_PULL_LSB) & WLAN_GPIO_PIN11_PAD_PULL_MASK)
#define WLAN_GPIO_PIN11_PAD_STRENGTH_MSB         4
#define WLAN_GPIO_PIN11_PAD_STRENGTH_LSB         3
#define WLAN_GPIO_PIN11_PAD_STRENGTH_MASK        0x00000018
#define WLAN_GPIO_PIN11_PAD_STRENGTH_GET(x)      (((x) & WLAN_GPIO_PIN11_PAD_STRENGTH_MASK) >> WLAN_GPIO_PIN11_PAD_STRENGTH_LSB)
#define WLAN_GPIO_PIN11_PAD_STRENGTH_SET(x)      (((x) << WLAN_GPIO_PIN11_PAD_STRENGTH_LSB) & WLAN_GPIO_PIN11_PAD_STRENGTH_MASK)
#define WLAN_GPIO_PIN11_PAD_DRIVER_MSB           2
#define WLAN_GPIO_PIN11_PAD_DRIVER_LSB           2
#define WLAN_GPIO_PIN11_PAD_DRIVER_MASK          0x00000004
#define WLAN_GPIO_PIN11_PAD_DRIVER_GET(x)        (((x) & WLAN_GPIO_PIN11_PAD_DRIVER_MASK) >> WLAN_GPIO_PIN11_PAD_DRIVER_LSB)
#define WLAN_GPIO_PIN11_PAD_DRIVER_SET(x)        (((x) << WLAN_GPIO_PIN11_PAD_DRIVER_LSB) & WLAN_GPIO_PIN11_PAD_DRIVER_MASK)
#define WLAN_GPIO_PIN11_SOURCE_MSB               0
#define WLAN_GPIO_PIN11_SOURCE_LSB               0
#define WLAN_GPIO_PIN11_SOURCE_MASK              0x00000001
#define WLAN_GPIO_PIN11_SOURCE_GET(x)            (((x) & WLAN_GPIO_PIN11_SOURCE_MASK) >> WLAN_GPIO_PIN11_SOURCE_LSB)
#define WLAN_GPIO_PIN11_SOURCE_SET(x)            (((x) << WLAN_GPIO_PIN11_SOURCE_LSB) & WLAN_GPIO_PIN11_SOURCE_MASK)

#define WLAN_GPIO_PIN12_ADDRESS                  0x00000058
#define WLAN_GPIO_PIN12_OFFSET                   0x00000058
#define WLAN_GPIO_PIN12_CONFIG_MSB               13
#define WLAN_GPIO_PIN12_CONFIG_LSB               11
#define WLAN_GPIO_PIN12_CONFIG_MASK              0x00003800
#define WLAN_GPIO_PIN12_CONFIG_GET(x)            (((x) & WLAN_GPIO_PIN12_CONFIG_MASK) >> WLAN_GPIO_PIN12_CONFIG_LSB)
#define WLAN_GPIO_PIN12_CONFIG_SET(x)            (((x) << WLAN_GPIO_PIN12_CONFIG_LSB) & WLAN_GPIO_PIN12_CONFIG_MASK)
#define WLAN_GPIO_PIN12_WAKEUP_ENABLE_MSB        10
#define WLAN_GPIO_PIN12_WAKEUP_ENABLE_LSB        10
#define WLAN_GPIO_PIN12_WAKEUP_ENABLE_MASK       0x00000400
#define WLAN_GPIO_PIN12_WAKEUP_ENABLE_GET(x)     (((x) & WLAN_GPIO_PIN12_WAKEUP_ENABLE_MASK) >> WLAN_GPIO_PIN12_WAKEUP_ENABLE_LSB)
#define WLAN_GPIO_PIN12_WAKEUP_ENABLE_SET(x)     (((x) << WLAN_GPIO_PIN12_WAKEUP_ENABLE_LSB) & WLAN_GPIO_PIN12_WAKEUP_ENABLE_MASK)
#define WLAN_GPIO_PIN12_INT_TYPE_MSB             9
#define WLAN_GPIO_PIN12_INT_TYPE_LSB             7
#define WLAN_GPIO_PIN12_INT_TYPE_MASK            0x00000380
#define WLAN_GPIO_PIN12_INT_TYPE_GET(x)          (((x) & WLAN_GPIO_PIN12_INT_TYPE_MASK) >> WLAN_GPIO_PIN12_INT_TYPE_LSB)
#define WLAN_GPIO_PIN12_INT_TYPE_SET(x)          (((x) << WLAN_GPIO_PIN12_INT_TYPE_LSB) & WLAN_GPIO_PIN12_INT_TYPE_MASK)
#define WLAN_GPIO_PIN12_PAD_PULL_MSB             6
#define WLAN_GPIO_PIN12_PAD_PULL_LSB             5
#define WLAN_GPIO_PIN12_PAD_PULL_MASK            0x00000060
#define WLAN_GPIO_PIN12_PAD_PULL_GET(x)          (((x) & WLAN_GPIO_PIN12_PAD_PULL_MASK) >> WLAN_GPIO_PIN12_PAD_PULL_LSB)
#define WLAN_GPIO_PIN12_PAD_PULL_SET(x)          (((x) << WLAN_GPIO_PIN12_PAD_PULL_LSB) & WLAN_GPIO_PIN12_PAD_PULL_MASK)
#define WLAN_GPIO_PIN12_PAD_STRENGTH_MSB         4
#define WLAN_GPIO_PIN12_PAD_STRENGTH_LSB         3
#define WLAN_GPIO_PIN12_PAD_STRENGTH_MASK        0x00000018
#define WLAN_GPIO_PIN12_PAD_STRENGTH_GET(x)      (((x) & WLAN_GPIO_PIN12_PAD_STRENGTH_MASK) >> WLAN_GPIO_PIN12_PAD_STRENGTH_LSB)
#define WLAN_GPIO_PIN12_PAD_STRENGTH_SET(x)      (((x) << WLAN_GPIO_PIN12_PAD_STRENGTH_LSB) & WLAN_GPIO_PIN12_PAD_STRENGTH_MASK)
#define WLAN_GPIO_PIN12_PAD_DRIVER_MSB           2
#define WLAN_GPIO_PIN12_PAD_DRIVER_LSB           2
#define WLAN_GPIO_PIN12_PAD_DRIVER_MASK          0x00000004
#define WLAN_GPIO_PIN12_PAD_DRIVER_GET(x)        (((x) & WLAN_GPIO_PIN12_PAD_DRIVER_MASK) >> WLAN_GPIO_PIN12_PAD_DRIVER_LSB)
#define WLAN_GPIO_PIN12_PAD_DRIVER_SET(x)        (((x) << WLAN_GPIO_PIN12_PAD_DRIVER_LSB) & WLAN_GPIO_PIN12_PAD_DRIVER_MASK)
#define WLAN_GPIO_PIN12_SOURCE_MSB               0
#define WLAN_GPIO_PIN12_SOURCE_LSB               0
#define WLAN_GPIO_PIN12_SOURCE_MASK              0x00000001
#define WLAN_GPIO_PIN12_SOURCE_GET(x)            (((x) & WLAN_GPIO_PIN12_SOURCE_MASK) >> WLAN_GPIO_PIN12_SOURCE_LSB)
#define WLAN_GPIO_PIN12_SOURCE_SET(x)            (((x) << WLAN_GPIO_PIN12_SOURCE_LSB) & WLAN_GPIO_PIN12_SOURCE_MASK)

#define WLAN_GPIO_PIN13_ADDRESS                  0x0000005c
#define WLAN_GPIO_PIN13_OFFSET                   0x0000005c
#define WLAN_GPIO_PIN13_CONFIG_MSB               13
#define WLAN_GPIO_PIN13_CONFIG_LSB               11
#define WLAN_GPIO_PIN13_CONFIG_MASK              0x00003800
#define WLAN_GPIO_PIN13_CONFIG_GET(x)            (((x) & WLAN_GPIO_PIN13_CONFIG_MASK) >> WLAN_GPIO_PIN13_CONFIG_LSB)
#define WLAN_GPIO_PIN13_CONFIG_SET(x)            (((x) << WLAN_GPIO_PIN13_CONFIG_LSB) & WLAN_GPIO_PIN13_CONFIG_MASK)
#define WLAN_GPIO_PIN13_WAKEUP_ENABLE_MSB        10
#define WLAN_GPIO_PIN13_WAKEUP_ENABLE_LSB        10
#define WLAN_GPIO_PIN13_WAKEUP_ENABLE_MASK       0x00000400
#define WLAN_GPIO_PIN13_WAKEUP_ENABLE_GET(x)     (((x) & WLAN_GPIO_PIN13_WAKEUP_ENABLE_MASK) >> WLAN_GPIO_PIN13_WAKEUP_ENABLE_LSB)
#define WLAN_GPIO_PIN13_WAKEUP_ENABLE_SET(x)     (((x) << WLAN_GPIO_PIN13_WAKEUP_ENABLE_LSB) & WLAN_GPIO_PIN13_WAKEUP_ENABLE_MASK)
#define WLAN_GPIO_PIN13_INT_TYPE_MSB             9
#define WLAN_GPIO_PIN13_INT_TYPE_LSB             7
#define WLAN_GPIO_PIN13_INT_TYPE_MASK            0x00000380
#define WLAN_GPIO_PIN13_INT_TYPE_GET(x)          (((x) & WLAN_GPIO_PIN13_INT_TYPE_MASK) >> WLAN_GPIO_PIN13_INT_TYPE_LSB)
#define WLAN_GPIO_PIN13_INT_TYPE_SET(x)          (((x) << WLAN_GPIO_PIN13_INT_TYPE_LSB) & WLAN_GPIO_PIN13_INT_TYPE_MASK)
#define WLAN_GPIO_PIN13_PAD_PULL_MSB             6
#define WLAN_GPIO_PIN13_PAD_PULL_LSB             5
#define WLAN_GPIO_PIN13_PAD_PULL_MASK            0x00000060
#define WLAN_GPIO_PIN13_PAD_PULL_GET(x)          (((x) & WLAN_GPIO_PIN13_PAD_PULL_MASK) >> WLAN_GPIO_PIN13_PAD_PULL_LSB)
#define WLAN_GPIO_PIN13_PAD_PULL_SET(x)          (((x) << WLAN_GPIO_PIN13_PAD_PULL_LSB) & WLAN_GPIO_PIN13_PAD_PULL_MASK)
#define WLAN_GPIO_PIN13_PAD_STRENGTH_MSB         4
#define WLAN_GPIO_PIN13_PAD_STRENGTH_LSB         3
#define WLAN_GPIO_PIN13_PAD_STRENGTH_MASK        0x00000018
#define WLAN_GPIO_PIN13_PAD_STRENGTH_GET(x)      (((x) & WLAN_GPIO_PIN13_PAD_STRENGTH_MASK) >> WLAN_GPIO_PIN13_PAD_STRENGTH_LSB)
#define WLAN_GPIO_PIN13_PAD_STRENGTH_SET(x)      (((x) << WLAN_GPIO_PIN13_PAD_STRENGTH_LSB) & WLAN_GPIO_PIN13_PAD_STRENGTH_MASK)
#define WLAN_GPIO_PIN13_PAD_DRIVER_MSB           2
#define WLAN_GPIO_PIN13_PAD_DRIVER_LSB           2
#define WLAN_GPIO_PIN13_PAD_DRIVER_MASK          0x00000004
#define WLAN_GPIO_PIN13_PAD_DRIVER_GET(x)        (((x) & WLAN_GPIO_PIN13_PAD_DRIVER_MASK) >> WLAN_GPIO_PIN13_PAD_DRIVER_LSB)
#define WLAN_GPIO_PIN13_PAD_DRIVER_SET(x)        (((x) << WLAN_GPIO_PIN13_PAD_DRIVER_LSB) & WLAN_GPIO_PIN13_PAD_DRIVER_MASK)
#define WLAN_GPIO_PIN13_SOURCE_MSB               0
#define WLAN_GPIO_PIN13_SOURCE_LSB               0
#define WLAN_GPIO_PIN13_SOURCE_MASK              0x00000001
#define WLAN_GPIO_PIN13_SOURCE_GET(x)            (((x) & WLAN_GPIO_PIN13_SOURCE_MASK) >> WLAN_GPIO_PIN13_SOURCE_LSB)
#define WLAN_GPIO_PIN13_SOURCE_SET(x)            (((x) << WLAN_GPIO_PIN13_SOURCE_LSB) & WLAN_GPIO_PIN13_SOURCE_MASK)

#define WLAN_GPIO_PIN14_ADDRESS                  0x00000060
#define WLAN_GPIO_PIN14_OFFSET                   0x00000060
#define WLAN_GPIO_PIN14_CONFIG_MSB               13
#define WLAN_GPIO_PIN14_CONFIG_LSB               11
#define WLAN_GPIO_PIN14_CONFIG_MASK              0x00003800
#define WLAN_GPIO_PIN14_CONFIG_GET(x)            (((x) & WLAN_GPIO_PIN14_CONFIG_MASK) >> WLAN_GPIO_PIN14_CONFIG_LSB)
#define WLAN_GPIO_PIN14_CONFIG_SET(x)            (((x) << WLAN_GPIO_PIN14_CONFIG_LSB) & WLAN_GPIO_PIN14_CONFIG_MASK)
#define WLAN_GPIO_PIN14_WAKEUP_ENABLE_MSB        10
#define WLAN_GPIO_PIN14_WAKEUP_ENABLE_LSB        10
#define WLAN_GPIO_PIN14_WAKEUP_ENABLE_MASK       0x00000400
#define WLAN_GPIO_PIN14_WAKEUP_ENABLE_GET(x)     (((x) & WLAN_GPIO_PIN14_WAKEUP_ENABLE_MASK) >> WLAN_GPIO_PIN14_WAKEUP_ENABLE_LSB)
#define WLAN_GPIO_PIN14_WAKEUP_ENABLE_SET(x)     (((x) << WLAN_GPIO_PIN14_WAKEUP_ENABLE_LSB) & WLAN_GPIO_PIN14_WAKEUP_ENABLE_MASK)
#define WLAN_GPIO_PIN14_INT_TYPE_MSB             9
#define WLAN_GPIO_PIN14_INT_TYPE_LSB             7
#define WLAN_GPIO_PIN14_INT_TYPE_MASK            0x00000380
#define WLAN_GPIO_PIN14_INT_TYPE_GET(x)          (((x) & WLAN_GPIO_PIN14_INT_TYPE_MASK) >> WLAN_GPIO_PIN14_INT_TYPE_LSB)
#define WLAN_GPIO_PIN14_INT_TYPE_SET(x)          (((x) << WLAN_GPIO_PIN14_INT_TYPE_LSB) & WLAN_GPIO_PIN14_INT_TYPE_MASK)
#define WLAN_GPIO_PIN14_PAD_PULL_MSB             6
#define WLAN_GPIO_PIN14_PAD_PULL_LSB             5
#define WLAN_GPIO_PIN14_PAD_PULL_MASK            0x00000060
#define WLAN_GPIO_PIN14_PAD_PULL_GET(x)          (((x) & WLAN_GPIO_PIN14_PAD_PULL_MASK) >> WLAN_GPIO_PIN14_PAD_PULL_LSB)
#define WLAN_GPIO_PIN14_PAD_PULL_SET(x)          (((x) << WLAN_GPIO_PIN14_PAD_PULL_LSB) & WLAN_GPIO_PIN14_PAD_PULL_MASK)
#define WLAN_GPIO_PIN14_PAD_STRENGTH_MSB         4
#define WLAN_GPIO_PIN14_PAD_STRENGTH_LSB         3
#define WLAN_GPIO_PIN14_PAD_STRENGTH_MASK        0x00000018
#define WLAN_GPIO_PIN14_PAD_STRENGTH_GET(x)      (((x) & WLAN_GPIO_PIN14_PAD_STRENGTH_MASK) >> WLAN_GPIO_PIN14_PAD_STRENGTH_LSB)
#define WLAN_GPIO_PIN14_PAD_STRENGTH_SET(x)      (((x) << WLAN_GPIO_PIN14_PAD_STRENGTH_LSB) & WLAN_GPIO_PIN14_PAD_STRENGTH_MASK)
#define WLAN_GPIO_PIN14_PAD_DRIVER_MSB           2
#define WLAN_GPIO_PIN14_PAD_DRIVER_LSB           2
#define WLAN_GPIO_PIN14_PAD_DRIVER_MASK          0x00000004
#define WLAN_GPIO_PIN14_PAD_DRIVER_GET(x)        (((x) & WLAN_GPIO_PIN14_PAD_DRIVER_MASK) >> WLAN_GPIO_PIN14_PAD_DRIVER_LSB)
#define WLAN_GPIO_PIN14_PAD_DRIVER_SET(x)        (((x) << WLAN_GPIO_PIN14_PAD_DRIVER_LSB) & WLAN_GPIO_PIN14_PAD_DRIVER_MASK)
#define WLAN_GPIO_PIN14_SOURCE_MSB               0
#define WLAN_GPIO_PIN14_SOURCE_LSB               0
#define WLAN_GPIO_PIN14_SOURCE_MASK              0x00000001
#define WLAN_GPIO_PIN14_SOURCE_GET(x)            (((x) & WLAN_GPIO_PIN14_SOURCE_MASK) >> WLAN_GPIO_PIN14_SOURCE_LSB)
#define WLAN_GPIO_PIN14_SOURCE_SET(x)            (((x) << WLAN_GPIO_PIN14_SOURCE_LSB) & WLAN_GPIO_PIN14_SOURCE_MASK)

#define WLAN_GPIO_PIN15_ADDRESS                  0x00000064
#define WLAN_GPIO_PIN15_OFFSET                   0x00000064
#define WLAN_GPIO_PIN15_CONFIG_MSB               13
#define WLAN_GPIO_PIN15_CONFIG_LSB               11
#define WLAN_GPIO_PIN15_CONFIG_MASK              0x00003800
#define WLAN_GPIO_PIN15_CONFIG_GET(x)            (((x) & WLAN_GPIO_PIN15_CONFIG_MASK) >> WLAN_GPIO_PIN15_CONFIG_LSB)
#define WLAN_GPIO_PIN15_CONFIG_SET(x)            (((x) << WLAN_GPIO_PIN15_CONFIG_LSB) & WLAN_GPIO_PIN15_CONFIG_MASK)
#define WLAN_GPIO_PIN15_WAKEUP_ENABLE_MSB        10
#define WLAN_GPIO_PIN15_WAKEUP_ENABLE_LSB        10
#define WLAN_GPIO_PIN15_WAKEUP_ENABLE_MASK       0x00000400
#define WLAN_GPIO_PIN15_WAKEUP_ENABLE_GET(x)     (((x) & WLAN_GPIO_PIN15_WAKEUP_ENABLE_MASK) >> WLAN_GPIO_PIN15_WAKEUP_ENABLE_LSB)
#define WLAN_GPIO_PIN15_WAKEUP_ENABLE_SET(x)     (((x) << WLAN_GPIO_PIN15_WAKEUP_ENABLE_LSB) & WLAN_GPIO_PIN15_WAKEUP_ENABLE_MASK)
#define WLAN_GPIO_PIN15_INT_TYPE_MSB             9
#define WLAN_GPIO_PIN15_INT_TYPE_LSB             7
#define WLAN_GPIO_PIN15_INT_TYPE_MASK            0x00000380
#define WLAN_GPIO_PIN15_INT_TYPE_GET(x)          (((x) & WLAN_GPIO_PIN15_INT_TYPE_MASK) >> WLAN_GPIO_PIN15_INT_TYPE_LSB)
#define WLAN_GPIO_PIN15_INT_TYPE_SET(x)          (((x) << WLAN_GPIO_PIN15_INT_TYPE_LSB) & WLAN_GPIO_PIN15_INT_TYPE_MASK)
#define WLAN_GPIO_PIN15_PAD_PULL_MSB             6
#define WLAN_GPIO_PIN15_PAD_PULL_LSB             5
#define WLAN_GPIO_PIN15_PAD_PULL_MASK            0x00000060
#define WLAN_GPIO_PIN15_PAD_PULL_GET(x)          (((x) & WLAN_GPIO_PIN15_PAD_PULL_MASK) >> WLAN_GPIO_PIN15_PAD_PULL_LSB)
#define WLAN_GPIO_PIN15_PAD_PULL_SET(x)          (((x) << WLAN_GPIO_PIN15_PAD_PULL_LSB) & WLAN_GPIO_PIN15_PAD_PULL_MASK)
#define WLAN_GPIO_PIN15_PAD_STRENGTH_MSB         4
#define WLAN_GPIO_PIN15_PAD_STRENGTH_LSB         3
#define WLAN_GPIO_PIN15_PAD_STRENGTH_MASK        0x00000018
#define WLAN_GPIO_PIN15_PAD_STRENGTH_GET(x)      (((x) & WLAN_GPIO_PIN15_PAD_STRENGTH_MASK) >> WLAN_GPIO_PIN15_PAD_STRENGTH_LSB)
#define WLAN_GPIO_PIN15_PAD_STRENGTH_SET(x)      (((x) << WLAN_GPIO_PIN15_PAD_STRENGTH_LSB) & WLAN_GPIO_PIN15_PAD_STRENGTH_MASK)
#define WLAN_GPIO_PIN15_PAD_DRIVER_MSB           2
#define WLAN_GPIO_PIN15_PAD_DRIVER_LSB           2
#define WLAN_GPIO_PIN15_PAD_DRIVER_MASK          0x00000004
#define WLAN_GPIO_PIN15_PAD_DRIVER_GET(x)        (((x) & WLAN_GPIO_PIN15_PAD_DRIVER_MASK) >> WLAN_GPIO_PIN15_PAD_DRIVER_LSB)
#define WLAN_GPIO_PIN15_PAD_DRIVER_SET(x)        (((x) << WLAN_GPIO_PIN15_PAD_DRIVER_LSB) & WLAN_GPIO_PIN15_PAD_DRIVER_MASK)
#define WLAN_GPIO_PIN15_SOURCE_MSB               0
#define WLAN_GPIO_PIN15_SOURCE_LSB               0
#define WLAN_GPIO_PIN15_SOURCE_MASK              0x00000001
#define WLAN_GPIO_PIN15_SOURCE_GET(x)            (((x) & WLAN_GPIO_PIN15_SOURCE_MASK) >> WLAN_GPIO_PIN15_SOURCE_LSB)
#define WLAN_GPIO_PIN15_SOURCE_SET(x)            (((x) << WLAN_GPIO_PIN15_SOURCE_LSB) & WLAN_GPIO_PIN15_SOURCE_MASK)

#define WLAN_GPIO_PIN16_ADDRESS                  0x00000068
#define WLAN_GPIO_PIN16_OFFSET                   0x00000068
#define WLAN_GPIO_PIN16_CONFIG_MSB               13
#define WLAN_GPIO_PIN16_CONFIG_LSB               11
#define WLAN_GPIO_PIN16_CONFIG_MASK              0x00003800
#define WLAN_GPIO_PIN16_CONFIG_GET(x)            (((x) & WLAN_GPIO_PIN16_CONFIG_MASK) >> WLAN_GPIO_PIN16_CONFIG_LSB)
#define WLAN_GPIO_PIN16_CONFIG_SET(x)            (((x) << WLAN_GPIO_PIN16_CONFIG_LSB) & WLAN_GPIO_PIN16_CONFIG_MASK)
#define WLAN_GPIO_PIN16_WAKEUP_ENABLE_MSB        10
#define WLAN_GPIO_PIN16_WAKEUP_ENABLE_LSB        10
#define WLAN_GPIO_PIN16_WAKEUP_ENABLE_MASK       0x00000400
#define WLAN_GPIO_PIN16_WAKEUP_ENABLE_GET(x)     (((x) & WLAN_GPIO_PIN16_WAKEUP_ENABLE_MASK) >> WLAN_GPIO_PIN16_WAKEUP_ENABLE_LSB)
#define WLAN_GPIO_PIN16_WAKEUP_ENABLE_SET(x)     (((x) << WLAN_GPIO_PIN16_WAKEUP_ENABLE_LSB) & WLAN_GPIO_PIN16_WAKEUP_ENABLE_MASK)
#define WLAN_GPIO_PIN16_INT_TYPE_MSB             9
#define WLAN_GPIO_PIN16_INT_TYPE_LSB             7
#define WLAN_GPIO_PIN16_INT_TYPE_MASK            0x00000380
#define WLAN_GPIO_PIN16_INT_TYPE_GET(x)          (((x) & WLAN_GPIO_PIN16_INT_TYPE_MASK) >> WLAN_GPIO_PIN16_INT_TYPE_LSB)
#define WLAN_GPIO_PIN16_INT_TYPE_SET(x)          (((x) << WLAN_GPIO_PIN16_INT_TYPE_LSB) & WLAN_GPIO_PIN16_INT_TYPE_MASK)
#define WLAN_GPIO_PIN16_PAD_PULL_MSB             6
#define WLAN_GPIO_PIN16_PAD_PULL_LSB             5
#define WLAN_GPIO_PIN16_PAD_PULL_MASK            0x00000060
#define WLAN_GPIO_PIN16_PAD_PULL_GET(x)          (((x) & WLAN_GPIO_PIN16_PAD_PULL_MASK) >> WLAN_GPIO_PIN16_PAD_PULL_LSB)
#define WLAN_GPIO_PIN16_PAD_PULL_SET(x)          (((x) << WLAN_GPIO_PIN16_PAD_PULL_LSB) & WLAN_GPIO_PIN16_PAD_PULL_MASK)
#define WLAN_GPIO_PIN16_PAD_STRENGTH_MSB         4
#define WLAN_GPIO_PIN16_PAD_STRENGTH_LSB         3
#define WLAN_GPIO_PIN16_PAD_STRENGTH_MASK        0x00000018
#define WLAN_GPIO_PIN16_PAD_STRENGTH_GET(x)      (((x) & WLAN_GPIO_PIN16_PAD_STRENGTH_MASK) >> WLAN_GPIO_PIN16_PAD_STRENGTH_LSB)
#define WLAN_GPIO_PIN16_PAD_STRENGTH_SET(x)      (((x) << WLAN_GPIO_PIN16_PAD_STRENGTH_LSB) & WLAN_GPIO_PIN16_PAD_STRENGTH_MASK)
#define WLAN_GPIO_PIN16_PAD_DRIVER_MSB           2
#define WLAN_GPIO_PIN16_PAD_DRIVER_LSB           2
#define WLAN_GPIO_PIN16_PAD_DRIVER_MASK          0x00000004
#define WLAN_GPIO_PIN16_PAD_DRIVER_GET(x)        (((x) & WLAN_GPIO_PIN16_PAD_DRIVER_MASK) >> WLAN_GPIO_PIN16_PAD_DRIVER_LSB)
#define WLAN_GPIO_PIN16_PAD_DRIVER_SET(x)        (((x) << WLAN_GPIO_PIN16_PAD_DRIVER_LSB) & WLAN_GPIO_PIN16_PAD_DRIVER_MASK)
#define WLAN_GPIO_PIN16_SOURCE_MSB               0
#define WLAN_GPIO_PIN16_SOURCE_LSB               0
#define WLAN_GPIO_PIN16_SOURCE_MASK              0x00000001
#define WLAN_GPIO_PIN16_SOURCE_GET(x)            (((x) & WLAN_GPIO_PIN16_SOURCE_MASK) >> WLAN_GPIO_PIN16_SOURCE_LSB)
#define WLAN_GPIO_PIN16_SOURCE_SET(x)            (((x) << WLAN_GPIO_PIN16_SOURCE_LSB) & WLAN_GPIO_PIN16_SOURCE_MASK)

#define WLAN_GPIO_PIN17_ADDRESS                  0x0000006c
#define WLAN_GPIO_PIN17_OFFSET                   0x0000006c
#define WLAN_GPIO_PIN17_CONFIG_MSB               13
#define WLAN_GPIO_PIN17_CONFIG_LSB               11
#define WLAN_GPIO_PIN17_CONFIG_MASK              0x00003800
#define WLAN_GPIO_PIN17_CONFIG_GET(x)            (((x) & WLAN_GPIO_PIN17_CONFIG_MASK) >> WLAN_GPIO_PIN17_CONFIG_LSB)
#define WLAN_GPIO_PIN17_CONFIG_SET(x)            (((x) << WLAN_GPIO_PIN17_CONFIG_LSB) & WLAN_GPIO_PIN17_CONFIG_MASK)
#define WLAN_GPIO_PIN17_WAKEUP_ENABLE_MSB        10
#define WLAN_GPIO_PIN17_WAKEUP_ENABLE_LSB        10
#define WLAN_GPIO_PIN17_WAKEUP_ENABLE_MASK       0x00000400
#define WLAN_GPIO_PIN17_WAKEUP_ENABLE_GET(x)     (((x) & WLAN_GPIO_PIN17_WAKEUP_ENABLE_MASK) >> WLAN_GPIO_PIN17_WAKEUP_ENABLE_LSB)
#define WLAN_GPIO_PIN17_WAKEUP_ENABLE_SET(x)     (((x) << WLAN_GPIO_PIN17_WAKEUP_ENABLE_LSB) & WLAN_GPIO_PIN17_WAKEUP_ENABLE_MASK)
#define WLAN_GPIO_PIN17_INT_TYPE_MSB             9
#define WLAN_GPIO_PIN17_INT_TYPE_LSB             7
#define WLAN_GPIO_PIN17_INT_TYPE_MASK            0x00000380
#define WLAN_GPIO_PIN17_INT_TYPE_GET(x)          (((x) & WLAN_GPIO_PIN17_INT_TYPE_MASK) >> WLAN_GPIO_PIN17_INT_TYPE_LSB)
#define WLAN_GPIO_PIN17_INT_TYPE_SET(x)          (((x) << WLAN_GPIO_PIN17_INT_TYPE_LSB) & WLAN_GPIO_PIN17_INT_TYPE_MASK)
#define WLAN_GPIO_PIN17_PAD_PULL_MSB             6
#define WLAN_GPIO_PIN17_PAD_PULL_LSB             5
#define WLAN_GPIO_PIN17_PAD_PULL_MASK            0x00000060
#define WLAN_GPIO_PIN17_PAD_PULL_GET(x)          (((x) & WLAN_GPIO_PIN17_PAD_PULL_MASK) >> WLAN_GPIO_PIN17_PAD_PULL_LSB)
#define WLAN_GPIO_PIN17_PAD_PULL_SET(x)          (((x) << WLAN_GPIO_PIN17_PAD_PULL_LSB) & WLAN_GPIO_PIN17_PAD_PULL_MASK)
#define WLAN_GPIO_PIN17_PAD_STRENGTH_MSB         4
#define WLAN_GPIO_PIN17_PAD_STRENGTH_LSB         3
#define WLAN_GPIO_PIN17_PAD_STRENGTH_MASK        0x00000018
#define WLAN_GPIO_PIN17_PAD_STRENGTH_GET(x)      (((x) & WLAN_GPIO_PIN17_PAD_STRENGTH_MASK) >> WLAN_GPIO_PIN17_PAD_STRENGTH_LSB)
#define WLAN_GPIO_PIN17_PAD_STRENGTH_SET(x)      (((x) << WLAN_GPIO_PIN17_PAD_STRENGTH_LSB) & WLAN_GPIO_PIN17_PAD_STRENGTH_MASK)
#define WLAN_GPIO_PIN17_PAD_DRIVER_MSB           2
#define WLAN_GPIO_PIN17_PAD_DRIVER_LSB           2
#define WLAN_GPIO_PIN17_PAD_DRIVER_MASK          0x00000004
#define WLAN_GPIO_PIN17_PAD_DRIVER_GET(x)        (((x) & WLAN_GPIO_PIN17_PAD_DRIVER_MASK) >> WLAN_GPIO_PIN17_PAD_DRIVER_LSB)
#define WLAN_GPIO_PIN17_PAD_DRIVER_SET(x)        (((x) << WLAN_GPIO_PIN17_PAD_DRIVER_LSB) & WLAN_GPIO_PIN17_PAD_DRIVER_MASK)
#define WLAN_GPIO_PIN17_SOURCE_MSB               0
#define WLAN_GPIO_PIN17_SOURCE_LSB               0
#define WLAN_GPIO_PIN17_SOURCE_MASK              0x00000001
#define WLAN_GPIO_PIN17_SOURCE_GET(x)            (((x) & WLAN_GPIO_PIN17_SOURCE_MASK) >> WLAN_GPIO_PIN17_SOURCE_LSB)
#define WLAN_GPIO_PIN17_SOURCE_SET(x)            (((x) << WLAN_GPIO_PIN17_SOURCE_LSB) & WLAN_GPIO_PIN17_SOURCE_MASK)

#define WLAN_GPIO_PIN18_ADDRESS                  0x00000070
#define WLAN_GPIO_PIN18_OFFSET                   0x00000070
#define WLAN_GPIO_PIN18_CONFIG_MSB               13
#define WLAN_GPIO_PIN18_CONFIG_LSB               11
#define WLAN_GPIO_PIN18_CONFIG_MASK              0x00003800
#define WLAN_GPIO_PIN18_CONFIG_GET(x)            (((x) & WLAN_GPIO_PIN18_CONFIG_MASK) >> WLAN_GPIO_PIN18_CONFIG_LSB)
#define WLAN_GPIO_PIN18_CONFIG_SET(x)            (((x) << WLAN_GPIO_PIN18_CONFIG_LSB) & WLAN_GPIO_PIN18_CONFIG_MASK)
#define WLAN_GPIO_PIN18_WAKEUP_ENABLE_MSB        10
#define WLAN_GPIO_PIN18_WAKEUP_ENABLE_LSB        10
#define WLAN_GPIO_PIN18_WAKEUP_ENABLE_MASK       0x00000400
#define WLAN_GPIO_PIN18_WAKEUP_ENABLE_GET(x)     (((x) & WLAN_GPIO_PIN18_WAKEUP_ENABLE_MASK) >> WLAN_GPIO_PIN18_WAKEUP_ENABLE_LSB)
#define WLAN_GPIO_PIN18_WAKEUP_ENABLE_SET(x)     (((x) << WLAN_GPIO_PIN18_WAKEUP_ENABLE_LSB) & WLAN_GPIO_PIN18_WAKEUP_ENABLE_MASK)
#define WLAN_GPIO_PIN18_INT_TYPE_MSB             9
#define WLAN_GPIO_PIN18_INT_TYPE_LSB             7
#define WLAN_GPIO_PIN18_INT_TYPE_MASK            0x00000380
#define WLAN_GPIO_PIN18_INT_TYPE_GET(x)          (((x) & WLAN_GPIO_PIN18_INT_TYPE_MASK) >> WLAN_GPIO_PIN18_INT_TYPE_LSB)
#define WLAN_GPIO_PIN18_INT_TYPE_SET(x)          (((x) << WLAN_GPIO_PIN18_INT_TYPE_LSB) & WLAN_GPIO_PIN18_INT_TYPE_MASK)
#define WLAN_GPIO_PIN18_PAD_PULL_MSB             6
#define WLAN_GPIO_PIN18_PAD_PULL_LSB             5
#define WLAN_GPIO_PIN18_PAD_PULL_MASK            0x00000060
#define WLAN_GPIO_PIN18_PAD_PULL_GET(x)          (((x) & WLAN_GPIO_PIN18_PAD_PULL_MASK) >> WLAN_GPIO_PIN18_PAD_PULL_LSB)
#define WLAN_GPIO_PIN18_PAD_PULL_SET(x)          (((x) << WLAN_GPIO_PIN18_PAD_PULL_LSB) & WLAN_GPIO_PIN18_PAD_PULL_MASK)
#define WLAN_GPIO_PIN18_PAD_STRENGTH_MSB         4
#define WLAN_GPIO_PIN18_PAD_STRENGTH_LSB         3
#define WLAN_GPIO_PIN18_PAD_STRENGTH_MASK        0x00000018
#define WLAN_GPIO_PIN18_PAD_STRENGTH_GET(x)      (((x) & WLAN_GPIO_PIN18_PAD_STRENGTH_MASK) >> WLAN_GPIO_PIN18_PAD_STRENGTH_LSB)
#define WLAN_GPIO_PIN18_PAD_STRENGTH_SET(x)      (((x) << WLAN_GPIO_PIN18_PAD_STRENGTH_LSB) & WLAN_GPIO_PIN18_PAD_STRENGTH_MASK)
#define WLAN_GPIO_PIN18_PAD_DRIVER_MSB           2
#define WLAN_GPIO_PIN18_PAD_DRIVER_LSB           2
#define WLAN_GPIO_PIN18_PAD_DRIVER_MASK          0x00000004
#define WLAN_GPIO_PIN18_PAD_DRIVER_GET(x)        (((x) & WLAN_GPIO_PIN18_PAD_DRIVER_MASK) >> WLAN_GPIO_PIN18_PAD_DRIVER_LSB)
#define WLAN_GPIO_PIN18_PAD_DRIVER_SET(x)        (((x) << WLAN_GPIO_PIN18_PAD_DRIVER_LSB) & WLAN_GPIO_PIN18_PAD_DRIVER_MASK)
#define WLAN_GPIO_PIN18_SOURCE_MSB               0
#define WLAN_GPIO_PIN18_SOURCE_LSB               0
#define WLAN_GPIO_PIN18_SOURCE_MASK              0x00000001
#define WLAN_GPIO_PIN18_SOURCE_GET(x)            (((x) & WLAN_GPIO_PIN18_SOURCE_MASK) >> WLAN_GPIO_PIN18_SOURCE_LSB)
#define WLAN_GPIO_PIN18_SOURCE_SET(x)            (((x) << WLAN_GPIO_PIN18_SOURCE_LSB) & WLAN_GPIO_PIN18_SOURCE_MASK)

#define WLAN_GPIO_PIN19_ADDRESS                  0x00000074
#define WLAN_GPIO_PIN19_OFFSET                   0x00000074
#define WLAN_GPIO_PIN19_CONFIG_MSB               13
#define WLAN_GPIO_PIN19_CONFIG_LSB               11
#define WLAN_GPIO_PIN19_CONFIG_MASK              0x00003800
#define WLAN_GPIO_PIN19_CONFIG_GET(x)            (((x) & WLAN_GPIO_PIN19_CONFIG_MASK) >> WLAN_GPIO_PIN19_CONFIG_LSB)
#define WLAN_GPIO_PIN19_CONFIG_SET(x)            (((x) << WLAN_GPIO_PIN19_CONFIG_LSB) & WLAN_GPIO_PIN19_CONFIG_MASK)
#define WLAN_GPIO_PIN19_WAKEUP_ENABLE_MSB        10
#define WLAN_GPIO_PIN19_WAKEUP_ENABLE_LSB        10
#define WLAN_GPIO_PIN19_WAKEUP_ENABLE_MASK       0x00000400
#define WLAN_GPIO_PIN19_WAKEUP_ENABLE_GET(x)     (((x) & WLAN_GPIO_PIN19_WAKEUP_ENABLE_MASK) >> WLAN_GPIO_PIN19_WAKEUP_ENABLE_LSB)
#define WLAN_GPIO_PIN19_WAKEUP_ENABLE_SET(x)     (((x) << WLAN_GPIO_PIN19_WAKEUP_ENABLE_LSB) & WLAN_GPIO_PIN19_WAKEUP_ENABLE_MASK)
#define WLAN_GPIO_PIN19_INT_TYPE_MSB             9
#define WLAN_GPIO_PIN19_INT_TYPE_LSB             7
#define WLAN_GPIO_PIN19_INT_TYPE_MASK            0x00000380
#define WLAN_GPIO_PIN19_INT_TYPE_GET(x)          (((x) & WLAN_GPIO_PIN19_INT_TYPE_MASK) >> WLAN_GPIO_PIN19_INT_TYPE_LSB)
#define WLAN_GPIO_PIN19_INT_TYPE_SET(x)          (((x) << WLAN_GPIO_PIN19_INT_TYPE_LSB) & WLAN_GPIO_PIN19_INT_TYPE_MASK)
#define WLAN_GPIO_PIN19_PAD_PULL_MSB             6
#define WLAN_GPIO_PIN19_PAD_PULL_LSB             5
#define WLAN_GPIO_PIN19_PAD_PULL_MASK            0x00000060
#define WLAN_GPIO_PIN19_PAD_PULL_GET(x)          (((x) & WLAN_GPIO_PIN19_PAD_PULL_MASK) >> WLAN_GPIO_PIN19_PAD_PULL_LSB)
#define WLAN_GPIO_PIN19_PAD_PULL_SET(x)          (((x) << WLAN_GPIO_PIN19_PAD_PULL_LSB) & WLAN_GPIO_PIN19_PAD_PULL_MASK)
#define WLAN_GPIO_PIN19_PAD_STRENGTH_MSB         4
#define WLAN_GPIO_PIN19_PAD_STRENGTH_LSB         3
#define WLAN_GPIO_PIN19_PAD_STRENGTH_MASK        0x00000018
#define WLAN_GPIO_PIN19_PAD_STRENGTH_GET(x)      (((x) & WLAN_GPIO_PIN19_PAD_STRENGTH_MASK) >> WLAN_GPIO_PIN19_PAD_STRENGTH_LSB)
#define WLAN_GPIO_PIN19_PAD_STRENGTH_SET(x)      (((x) << WLAN_GPIO_PIN19_PAD_STRENGTH_LSB) & WLAN_GPIO_PIN19_PAD_STRENGTH_MASK)
#define WLAN_GPIO_PIN19_PAD_DRIVER_MSB           2
#define WLAN_GPIO_PIN19_PAD_DRIVER_LSB           2
#define WLAN_GPIO_PIN19_PAD_DRIVER_MASK          0x00000004
#define WLAN_GPIO_PIN19_PAD_DRIVER_GET(x)        (((x) & WLAN_GPIO_PIN19_PAD_DRIVER_MASK) >> WLAN_GPIO_PIN19_PAD_DRIVER_LSB)
#define WLAN_GPIO_PIN19_PAD_DRIVER_SET(x)        (((x) << WLAN_GPIO_PIN19_PAD_DRIVER_LSB) & WLAN_GPIO_PIN19_PAD_DRIVER_MASK)
#define WLAN_GPIO_PIN19_SOURCE_MSB               0
#define WLAN_GPIO_PIN19_SOURCE_LSB               0
#define WLAN_GPIO_PIN19_SOURCE_MASK              0x00000001
#define WLAN_GPIO_PIN19_SOURCE_GET(x)            (((x) & WLAN_GPIO_PIN19_SOURCE_MASK) >> WLAN_GPIO_PIN19_SOURCE_LSB)
#define WLAN_GPIO_PIN19_SOURCE_SET(x)            (((x) << WLAN_GPIO_PIN19_SOURCE_LSB) & WLAN_GPIO_PIN19_SOURCE_MASK)

#define WLAN_GPIO_PIN20_ADDRESS                  0x00000078
#define WLAN_GPIO_PIN20_OFFSET                   0x00000078
#define WLAN_GPIO_PIN20_CONFIG_MSB               13
#define WLAN_GPIO_PIN20_CONFIG_LSB               11
#define WLAN_GPIO_PIN20_CONFIG_MASK              0x00003800
#define WLAN_GPIO_PIN20_CONFIG_GET(x)            (((x) & WLAN_GPIO_PIN20_CONFIG_MASK) >> WLAN_GPIO_PIN20_CONFIG_LSB)
#define WLAN_GPIO_PIN20_CONFIG_SET(x)            (((x) << WLAN_GPIO_PIN20_CONFIG_LSB) & WLAN_GPIO_PIN20_CONFIG_MASK)
#define WLAN_GPIO_PIN20_WAKEUP_ENABLE_MSB        10
#define WLAN_GPIO_PIN20_WAKEUP_ENABLE_LSB        10
#define WLAN_GPIO_PIN20_WAKEUP_ENABLE_MASK       0x00000400
#define WLAN_GPIO_PIN20_WAKEUP_ENABLE_GET(x)     (((x) & WLAN_GPIO_PIN20_WAKEUP_ENABLE_MASK) >> WLAN_GPIO_PIN20_WAKEUP_ENABLE_LSB)
#define WLAN_GPIO_PIN20_WAKEUP_ENABLE_SET(x)     (((x) << WLAN_GPIO_PIN20_WAKEUP_ENABLE_LSB) & WLAN_GPIO_PIN20_WAKEUP_ENABLE_MASK)
#define WLAN_GPIO_PIN20_INT_TYPE_MSB             9
#define WLAN_GPIO_PIN20_INT_TYPE_LSB             7
#define WLAN_GPIO_PIN20_INT_TYPE_MASK            0x00000380
#define WLAN_GPIO_PIN20_INT_TYPE_GET(x)          (((x) & WLAN_GPIO_PIN20_INT_TYPE_MASK) >> WLAN_GPIO_PIN20_INT_TYPE_LSB)
#define WLAN_GPIO_PIN20_INT_TYPE_SET(x)          (((x) << WLAN_GPIO_PIN20_INT_TYPE_LSB) & WLAN_GPIO_PIN20_INT_TYPE_MASK)
#define WLAN_GPIO_PIN20_PAD_PULL_MSB             6
#define WLAN_GPIO_PIN20_PAD_PULL_LSB             5
#define WLAN_GPIO_PIN20_PAD_PULL_MASK            0x00000060
#define WLAN_GPIO_PIN20_PAD_PULL_GET(x)          (((x) & WLAN_GPIO_PIN20_PAD_PULL_MASK) >> WLAN_GPIO_PIN20_PAD_PULL_LSB)
#define WLAN_GPIO_PIN20_PAD_PULL_SET(x)          (((x) << WLAN_GPIO_PIN20_PAD_PULL_LSB) & WLAN_GPIO_PIN20_PAD_PULL_MASK)
#define WLAN_GPIO_PIN20_PAD_STRENGTH_MSB         4
#define WLAN_GPIO_PIN20_PAD_STRENGTH_LSB         3
#define WLAN_GPIO_PIN20_PAD_STRENGTH_MASK        0x00000018
#define WLAN_GPIO_PIN20_PAD_STRENGTH_GET(x)      (((x) & WLAN_GPIO_PIN20_PAD_STRENGTH_MASK) >> WLAN_GPIO_PIN20_PAD_STRENGTH_LSB)
#define WLAN_GPIO_PIN20_PAD_STRENGTH_SET(x)      (((x) << WLAN_GPIO_PIN20_PAD_STRENGTH_LSB) & WLAN_GPIO_PIN20_PAD_STRENGTH_MASK)
#define WLAN_GPIO_PIN20_PAD_DRIVER_MSB           2
#define WLAN_GPIO_PIN20_PAD_DRIVER_LSB           2
#define WLAN_GPIO_PIN20_PAD_DRIVER_MASK          0x00000004
#define WLAN_GPIO_PIN20_PAD_DRIVER_GET(x)        (((x) & WLAN_GPIO_PIN20_PAD_DRIVER_MASK) >> WLAN_GPIO_PIN20_PAD_DRIVER_LSB)
#define WLAN_GPIO_PIN20_PAD_DRIVER_SET(x)        (((x) << WLAN_GPIO_PIN20_PAD_DRIVER_LSB) & WLAN_GPIO_PIN20_PAD_DRIVER_MASK)
#define WLAN_GPIO_PIN20_SOURCE_MSB               0
#define WLAN_GPIO_PIN20_SOURCE_LSB               0
#define WLAN_GPIO_PIN20_SOURCE_MASK              0x00000001
#define WLAN_GPIO_PIN20_SOURCE_GET(x)            (((x) & WLAN_GPIO_PIN20_SOURCE_MASK) >> WLAN_GPIO_PIN20_SOURCE_LSB)
#define WLAN_GPIO_PIN20_SOURCE_SET(x)            (((x) << WLAN_GPIO_PIN20_SOURCE_LSB) & WLAN_GPIO_PIN20_SOURCE_MASK)

#define WLAN_GPIO_PIN21_ADDRESS                  0x0000007c
#define WLAN_GPIO_PIN21_OFFSET                   0x0000007c
#define WLAN_GPIO_PIN21_CONFIG_MSB               13
#define WLAN_GPIO_PIN21_CONFIG_LSB               11
#define WLAN_GPIO_PIN21_CONFIG_MASK              0x00003800
#define WLAN_GPIO_PIN21_CONFIG_GET(x)            (((x) & WLAN_GPIO_PIN21_CONFIG_MASK) >> WLAN_GPIO_PIN21_CONFIG_LSB)
#define WLAN_GPIO_PIN21_CONFIG_SET(x)            (((x) << WLAN_GPIO_PIN21_CONFIG_LSB) & WLAN_GPIO_PIN21_CONFIG_MASK)
#define WLAN_GPIO_PIN21_WAKEUP_ENABLE_MSB        10
#define WLAN_GPIO_PIN21_WAKEUP_ENABLE_LSB        10
#define WLAN_GPIO_PIN21_WAKEUP_ENABLE_MASK       0x00000400
#define WLAN_GPIO_PIN21_WAKEUP_ENABLE_GET(x)     (((x) & WLAN_GPIO_PIN21_WAKEUP_ENABLE_MASK) >> WLAN_GPIO_PIN21_WAKEUP_ENABLE_LSB)
#define WLAN_GPIO_PIN21_WAKEUP_ENABLE_SET(x)     (((x) << WLAN_GPIO_PIN21_WAKEUP_ENABLE_LSB) & WLAN_GPIO_PIN21_WAKEUP_ENABLE_MASK)
#define WLAN_GPIO_PIN21_INT_TYPE_MSB             9
#define WLAN_GPIO_PIN21_INT_TYPE_LSB             7
#define WLAN_GPIO_PIN21_INT_TYPE_MASK            0x00000380
#define WLAN_GPIO_PIN21_INT_TYPE_GET(x)          (((x) & WLAN_GPIO_PIN21_INT_TYPE_MASK) >> WLAN_GPIO_PIN21_INT_TYPE_LSB)
#define WLAN_GPIO_PIN21_INT_TYPE_SET(x)          (((x) << WLAN_GPIO_PIN21_INT_TYPE_LSB) & WLAN_GPIO_PIN21_INT_TYPE_MASK)
#define WLAN_GPIO_PIN21_PAD_PULL_MSB             6
#define WLAN_GPIO_PIN21_PAD_PULL_LSB             5
#define WLAN_GPIO_PIN21_PAD_PULL_MASK            0x00000060
#define WLAN_GPIO_PIN21_PAD_PULL_GET(x)          (((x) & WLAN_GPIO_PIN21_PAD_PULL_MASK) >> WLAN_GPIO_PIN21_PAD_PULL_LSB)
#define WLAN_GPIO_PIN21_PAD_PULL_SET(x)          (((x) << WLAN_GPIO_PIN21_PAD_PULL_LSB) & WLAN_GPIO_PIN21_PAD_PULL_MASK)
#define WLAN_GPIO_PIN21_PAD_STRENGTH_MSB         4
#define WLAN_GPIO_PIN21_PAD_STRENGTH_LSB         3
#define WLAN_GPIO_PIN21_PAD_STRENGTH_MASK        0x00000018
#define WLAN_GPIO_PIN21_PAD_STRENGTH_GET(x)      (((x) & WLAN_GPIO_PIN21_PAD_STRENGTH_MASK) >> WLAN_GPIO_PIN21_PAD_STRENGTH_LSB)
#define WLAN_GPIO_PIN21_PAD_STRENGTH_SET(x)      (((x) << WLAN_GPIO_PIN21_PAD_STRENGTH_LSB) & WLAN_GPIO_PIN21_PAD_STRENGTH_MASK)
#define WLAN_GPIO_PIN21_PAD_DRIVER_MSB           2
#define WLAN_GPIO_PIN21_PAD_DRIVER_LSB           2
#define WLAN_GPIO_PIN21_PAD_DRIVER_MASK          0x00000004
#define WLAN_GPIO_PIN21_PAD_DRIVER_GET(x)        (((x) & WLAN_GPIO_PIN21_PAD_DRIVER_MASK) >> WLAN_GPIO_PIN21_PAD_DRIVER_LSB)
#define WLAN_GPIO_PIN21_PAD_DRIVER_SET(x)        (((x) << WLAN_GPIO_PIN21_PAD_DRIVER_LSB) & WLAN_GPIO_PIN21_PAD_DRIVER_MASK)
#define WLAN_GPIO_PIN21_SOURCE_MSB               0
#define WLAN_GPIO_PIN21_SOURCE_LSB               0
#define WLAN_GPIO_PIN21_SOURCE_MASK              0x00000001
#define WLAN_GPIO_PIN21_SOURCE_GET(x)            (((x) & WLAN_GPIO_PIN21_SOURCE_MASK) >> WLAN_GPIO_PIN21_SOURCE_LSB)
#define WLAN_GPIO_PIN21_SOURCE_SET(x)            (((x) << WLAN_GPIO_PIN21_SOURCE_LSB) & WLAN_GPIO_PIN21_SOURCE_MASK)

#define WLAN_GPIO_PIN22_ADDRESS                  0x00000080
#define WLAN_GPIO_PIN22_OFFSET                   0x00000080
#define WLAN_GPIO_PIN22_CONFIG_MSB               13
#define WLAN_GPIO_PIN22_CONFIG_LSB               11
#define WLAN_GPIO_PIN22_CONFIG_MASK              0x00003800
#define WLAN_GPIO_PIN22_CONFIG_GET(x)            (((x) & WLAN_GPIO_PIN22_CONFIG_MASK) >> WLAN_GPIO_PIN22_CONFIG_LSB)
#define WLAN_GPIO_PIN22_CONFIG_SET(x)            (((x) << WLAN_GPIO_PIN22_CONFIG_LSB) & WLAN_GPIO_PIN22_CONFIG_MASK)
#define WLAN_GPIO_PIN22_WAKEUP_ENABLE_MSB        10
#define WLAN_GPIO_PIN22_WAKEUP_ENABLE_LSB        10
#define WLAN_GPIO_PIN22_WAKEUP_ENABLE_MASK       0x00000400
#define WLAN_GPIO_PIN22_WAKEUP_ENABLE_GET(x)     (((x) & WLAN_GPIO_PIN22_WAKEUP_ENABLE_MASK) >> WLAN_GPIO_PIN22_WAKEUP_ENABLE_LSB)
#define WLAN_GPIO_PIN22_WAKEUP_ENABLE_SET(x)     (((x) << WLAN_GPIO_PIN22_WAKEUP_ENABLE_LSB) & WLAN_GPIO_PIN22_WAKEUP_ENABLE_MASK)
#define WLAN_GPIO_PIN22_INT_TYPE_MSB             9
#define WLAN_GPIO_PIN22_INT_TYPE_LSB             7
#define WLAN_GPIO_PIN22_INT_TYPE_MASK            0x00000380
#define WLAN_GPIO_PIN22_INT_TYPE_GET(x)          (((x) & WLAN_GPIO_PIN22_INT_TYPE_MASK) >> WLAN_GPIO_PIN22_INT_TYPE_LSB)
#define WLAN_GPIO_PIN22_INT_TYPE_SET(x)          (((x) << WLAN_GPIO_PIN22_INT_TYPE_LSB) & WLAN_GPIO_PIN22_INT_TYPE_MASK)
#define WLAN_GPIO_PIN22_PAD_PULL_MSB             6
#define WLAN_GPIO_PIN22_PAD_PULL_LSB             5
#define WLAN_GPIO_PIN22_PAD_PULL_MASK            0x00000060
#define WLAN_GPIO_PIN22_PAD_PULL_GET(x)          (((x) & WLAN_GPIO_PIN22_PAD_PULL_MASK) >> WLAN_GPIO_PIN22_PAD_PULL_LSB)
#define WLAN_GPIO_PIN22_PAD_PULL_SET(x)          (((x) << WLAN_GPIO_PIN22_PAD_PULL_LSB) & WLAN_GPIO_PIN22_PAD_PULL_MASK)
#define WLAN_GPIO_PIN22_PAD_STRENGTH_MSB         4
#define WLAN_GPIO_PIN22_PAD_STRENGTH_LSB         3
#define WLAN_GPIO_PIN22_PAD_STRENGTH_MASK        0x00000018
#define WLAN_GPIO_PIN22_PAD_STRENGTH_GET(x)      (((x) & WLAN_GPIO_PIN22_PAD_STRENGTH_MASK) >> WLAN_GPIO_PIN22_PAD_STRENGTH_LSB)
#define WLAN_GPIO_PIN22_PAD_STRENGTH_SET(x)      (((x) << WLAN_GPIO_PIN22_PAD_STRENGTH_LSB) & WLAN_GPIO_PIN22_PAD_STRENGTH_MASK)
#define WLAN_GPIO_PIN22_PAD_DRIVER_MSB           2
#define WLAN_GPIO_PIN22_PAD_DRIVER_LSB           2
#define WLAN_GPIO_PIN22_PAD_DRIVER_MASK          0x00000004
#define WLAN_GPIO_PIN22_PAD_DRIVER_GET(x)        (((x) & WLAN_GPIO_PIN22_PAD_DRIVER_MASK) >> WLAN_GPIO_PIN22_PAD_DRIVER_LSB)
#define WLAN_GPIO_PIN22_PAD_DRIVER_SET(x)        (((x) << WLAN_GPIO_PIN22_PAD_DRIVER_LSB) & WLAN_GPIO_PIN22_PAD_DRIVER_MASK)
#define WLAN_GPIO_PIN22_SOURCE_MSB               0
#define WLAN_GPIO_PIN22_SOURCE_LSB               0
#define WLAN_GPIO_PIN22_SOURCE_MASK              0x00000001
#define WLAN_GPIO_PIN22_SOURCE_GET(x)            (((x) & WLAN_GPIO_PIN22_SOURCE_MASK) >> WLAN_GPIO_PIN22_SOURCE_LSB)
#define WLAN_GPIO_PIN22_SOURCE_SET(x)            (((x) << WLAN_GPIO_PIN22_SOURCE_LSB) & WLAN_GPIO_PIN22_SOURCE_MASK)

#define WLAN_GPIO_PIN23_ADDRESS                  0x00000084
#define WLAN_GPIO_PIN23_OFFSET                   0x00000084
#define WLAN_GPIO_PIN23_CONFIG_MSB               13
#define WLAN_GPIO_PIN23_CONFIG_LSB               11
#define WLAN_GPIO_PIN23_CONFIG_MASK              0x00003800
#define WLAN_GPIO_PIN23_CONFIG_GET(x)            (((x) & WLAN_GPIO_PIN23_CONFIG_MASK) >> WLAN_GPIO_PIN23_CONFIG_LSB)
#define WLAN_GPIO_PIN23_CONFIG_SET(x)            (((x) << WLAN_GPIO_PIN23_CONFIG_LSB) & WLAN_GPIO_PIN23_CONFIG_MASK)
#define WLAN_GPIO_PIN23_WAKEUP_ENABLE_MSB        10
#define WLAN_GPIO_PIN23_WAKEUP_ENABLE_LSB        10
#define WLAN_GPIO_PIN23_WAKEUP_ENABLE_MASK       0x00000400
#define WLAN_GPIO_PIN23_WAKEUP_ENABLE_GET(x)     (((x) & WLAN_GPIO_PIN23_WAKEUP_ENABLE_MASK) >> WLAN_GPIO_PIN23_WAKEUP_ENABLE_LSB)
#define WLAN_GPIO_PIN23_WAKEUP_ENABLE_SET(x)     (((x) << WLAN_GPIO_PIN23_WAKEUP_ENABLE_LSB) & WLAN_GPIO_PIN23_WAKEUP_ENABLE_MASK)
#define WLAN_GPIO_PIN23_INT_TYPE_MSB             9
#define WLAN_GPIO_PIN23_INT_TYPE_LSB             7
#define WLAN_GPIO_PIN23_INT_TYPE_MASK            0x00000380
#define WLAN_GPIO_PIN23_INT_TYPE_GET(x)          (((x) & WLAN_GPIO_PIN23_INT_TYPE_MASK) >> WLAN_GPIO_PIN23_INT_TYPE_LSB)
#define WLAN_GPIO_PIN23_INT_TYPE_SET(x)          (((x) << WLAN_GPIO_PIN23_INT_TYPE_LSB) & WLAN_GPIO_PIN23_INT_TYPE_MASK)
#define WLAN_GPIO_PIN23_PAD_DRIVER_MSB           2
#define WLAN_GPIO_PIN23_PAD_DRIVER_LSB           2
#define WLAN_GPIO_PIN23_PAD_DRIVER_MASK          0x00000004
#define WLAN_GPIO_PIN23_PAD_DRIVER_GET(x)        (((x) & WLAN_GPIO_PIN23_PAD_DRIVER_MASK) >> WLAN_GPIO_PIN23_PAD_DRIVER_LSB)
#define WLAN_GPIO_PIN23_PAD_DRIVER_SET(x)        (((x) << WLAN_GPIO_PIN23_PAD_DRIVER_LSB) & WLAN_GPIO_PIN23_PAD_DRIVER_MASK)
#define WLAN_GPIO_PIN23_SOURCE_MSB               0
#define WLAN_GPIO_PIN23_SOURCE_LSB               0
#define WLAN_GPIO_PIN23_SOURCE_MASK              0x00000001
#define WLAN_GPIO_PIN23_SOURCE_GET(x)            (((x) & WLAN_GPIO_PIN23_SOURCE_MASK) >> WLAN_GPIO_PIN23_SOURCE_LSB)
#define WLAN_GPIO_PIN23_SOURCE_SET(x)            (((x) << WLAN_GPIO_PIN23_SOURCE_LSB) & WLAN_GPIO_PIN23_SOURCE_MASK)

#define WLAN_GPIO_PIN24_ADDRESS                  0x00000088
#define WLAN_GPIO_PIN24_OFFSET                   0x00000088
#define WLAN_GPIO_PIN24_CONFIG_MSB               13
#define WLAN_GPIO_PIN24_CONFIG_LSB               11
#define WLAN_GPIO_PIN24_CONFIG_MASK              0x00003800
#define WLAN_GPIO_PIN24_CONFIG_GET(x)            (((x) & WLAN_GPIO_PIN24_CONFIG_MASK) >> WLAN_GPIO_PIN24_CONFIG_LSB)
#define WLAN_GPIO_PIN24_CONFIG_SET(x)            (((x) << WLAN_GPIO_PIN24_CONFIG_LSB) & WLAN_GPIO_PIN24_CONFIG_MASK)
#define WLAN_GPIO_PIN24_WAKEUP_ENABLE_MSB        10
#define WLAN_GPIO_PIN24_WAKEUP_ENABLE_LSB        10
#define WLAN_GPIO_PIN24_WAKEUP_ENABLE_MASK       0x00000400
#define WLAN_GPIO_PIN24_WAKEUP_ENABLE_GET(x)     (((x) & WLAN_GPIO_PIN24_WAKEUP_ENABLE_MASK) >> WLAN_GPIO_PIN24_WAKEUP_ENABLE_LSB)
#define WLAN_GPIO_PIN24_WAKEUP_ENABLE_SET(x)     (((x) << WLAN_GPIO_PIN24_WAKEUP_ENABLE_LSB) & WLAN_GPIO_PIN24_WAKEUP_ENABLE_MASK)
#define WLAN_GPIO_PIN24_INT_TYPE_MSB             9
#define WLAN_GPIO_PIN24_INT_TYPE_LSB             7
#define WLAN_GPIO_PIN24_INT_TYPE_MASK            0x00000380
#define WLAN_GPIO_PIN24_INT_TYPE_GET(x)          (((x) & WLAN_GPIO_PIN24_INT_TYPE_MASK) >> WLAN_GPIO_PIN24_INT_TYPE_LSB)
#define WLAN_GPIO_PIN24_INT_TYPE_SET(x)          (((x) << WLAN_GPIO_PIN24_INT_TYPE_LSB) & WLAN_GPIO_PIN24_INT_TYPE_MASK)
#define WLAN_GPIO_PIN24_PAD_DRIVER_MSB           2
#define WLAN_GPIO_PIN24_PAD_DRIVER_LSB           2
#define WLAN_GPIO_PIN24_PAD_DRIVER_MASK          0x00000004
#define WLAN_GPIO_PIN24_PAD_DRIVER_GET(x)        (((x) & WLAN_GPIO_PIN24_PAD_DRIVER_MASK) >> WLAN_GPIO_PIN24_PAD_DRIVER_LSB)
#define WLAN_GPIO_PIN24_PAD_DRIVER_SET(x)        (((x) << WLAN_GPIO_PIN24_PAD_DRIVER_LSB) & WLAN_GPIO_PIN24_PAD_DRIVER_MASK)
#define WLAN_GPIO_PIN24_SOURCE_MSB               0
#define WLAN_GPIO_PIN24_SOURCE_LSB               0
#define WLAN_GPIO_PIN24_SOURCE_MASK              0x00000001
#define WLAN_GPIO_PIN24_SOURCE_GET(x)            (((x) & WLAN_GPIO_PIN24_SOURCE_MASK) >> WLAN_GPIO_PIN24_SOURCE_LSB)
#define WLAN_GPIO_PIN24_SOURCE_SET(x)            (((x) << WLAN_GPIO_PIN24_SOURCE_LSB) & WLAN_GPIO_PIN24_SOURCE_MASK)

#define WLAN_GPIO_PIN25_ADDRESS                  0x0000008c
#define WLAN_GPIO_PIN25_OFFSET                   0x0000008c
#define WLAN_GPIO_PIN25_CONFIG_MSB               13
#define WLAN_GPIO_PIN25_CONFIG_LSB               11
#define WLAN_GPIO_PIN25_CONFIG_MASK              0x00003800
#define WLAN_GPIO_PIN25_CONFIG_GET(x)            (((x) & WLAN_GPIO_PIN25_CONFIG_MASK) >> WLAN_GPIO_PIN25_CONFIG_LSB)
#define WLAN_GPIO_PIN25_CONFIG_SET(x)            (((x) << WLAN_GPIO_PIN25_CONFIG_LSB) & WLAN_GPIO_PIN25_CONFIG_MASK)
#define WLAN_GPIO_PIN25_WAKEUP_ENABLE_MSB        10
#define WLAN_GPIO_PIN25_WAKEUP_ENABLE_LSB        10
#define WLAN_GPIO_PIN25_WAKEUP_ENABLE_MASK       0x00000400
#define WLAN_GPIO_PIN25_WAKEUP_ENABLE_GET(x)     (((x) & WLAN_GPIO_PIN25_WAKEUP_ENABLE_MASK) >> WLAN_GPIO_PIN25_WAKEUP_ENABLE_LSB)
#define WLAN_GPIO_PIN25_WAKEUP_ENABLE_SET(x)     (((x) << WLAN_GPIO_PIN25_WAKEUP_ENABLE_LSB) & WLAN_GPIO_PIN25_WAKEUP_ENABLE_MASK)
#define WLAN_GPIO_PIN25_INT_TYPE_MSB             9
#define WLAN_GPIO_PIN25_INT_TYPE_LSB             7
#define WLAN_GPIO_PIN25_INT_TYPE_MASK            0x00000380
#define WLAN_GPIO_PIN25_INT_TYPE_GET(x)          (((x) & WLAN_GPIO_PIN25_INT_TYPE_MASK) >> WLAN_GPIO_PIN25_INT_TYPE_LSB)
#define WLAN_GPIO_PIN25_INT_TYPE_SET(x)          (((x) << WLAN_GPIO_PIN25_INT_TYPE_LSB) & WLAN_GPIO_PIN25_INT_TYPE_MASK)
#define WLAN_GPIO_PIN25_PAD_DRIVER_MSB           2
#define WLAN_GPIO_PIN25_PAD_DRIVER_LSB           2
#define WLAN_GPIO_PIN25_PAD_DRIVER_MASK          0x00000004
#define WLAN_GPIO_PIN25_PAD_DRIVER_GET(x)        (((x) & WLAN_GPIO_PIN25_PAD_DRIVER_MASK) >> WLAN_GPIO_PIN25_PAD_DRIVER_LSB)
#define WLAN_GPIO_PIN25_PAD_DRIVER_SET(x)        (((x) << WLAN_GPIO_PIN25_PAD_DRIVER_LSB) & WLAN_GPIO_PIN25_PAD_DRIVER_MASK)
#define WLAN_GPIO_PIN25_SOURCE_MSB               0
#define WLAN_GPIO_PIN25_SOURCE_LSB               0
#define WLAN_GPIO_PIN25_SOURCE_MASK              0x00000001
#define WLAN_GPIO_PIN25_SOURCE_GET(x)            (((x) & WLAN_GPIO_PIN25_SOURCE_MASK) >> WLAN_GPIO_PIN25_SOURCE_LSB)
#define WLAN_GPIO_PIN25_SOURCE_SET(x)            (((x) << WLAN_GPIO_PIN25_SOURCE_LSB) & WLAN_GPIO_PIN25_SOURCE_MASK)

#define SDIO_ADDRESS                             0x00000090
#define SDIO_OFFSET                              0x00000090
#define SDIO_PINS_EN_MSB                         0
#define SDIO_PINS_EN_LSB                         0
#define SDIO_PINS_EN_MASK                        0x00000001
#define SDIO_PINS_EN_GET(x)                      (((x) & SDIO_PINS_EN_MASK) >> SDIO_PINS_EN_LSB)
#define SDIO_PINS_EN_SET(x)                      (((x) << SDIO_PINS_EN_LSB) & SDIO_PINS_EN_MASK)

#define FUNC_BUS_ADDRESS                         0x00000094
#define FUNC_BUS_OFFSET                          0x00000094
#define FUNC_BUS_GPIO_MODE_MSB                   22
#define FUNC_BUS_GPIO_MODE_LSB                   22
#define FUNC_BUS_GPIO_MODE_MASK                  0x00400000
#define FUNC_BUS_GPIO_MODE_GET(x)                (((x) & FUNC_BUS_GPIO_MODE_MASK) >> FUNC_BUS_GPIO_MODE_LSB)
#define FUNC_BUS_GPIO_MODE_SET(x)                (((x) << FUNC_BUS_GPIO_MODE_LSB) & FUNC_BUS_GPIO_MODE_MASK)
#define FUNC_BUS_OE_L_MSB                        21
#define FUNC_BUS_OE_L_LSB                        0
#define FUNC_BUS_OE_L_MASK                       0x003fffff
#define FUNC_BUS_OE_L_GET(x)                     (((x) & FUNC_BUS_OE_L_MASK) >> FUNC_BUS_OE_L_LSB)
#define FUNC_BUS_OE_L_SET(x)                     (((x) << FUNC_BUS_OE_L_LSB) & FUNC_BUS_OE_L_MASK)

#define WL_SOC_APB_ADDRESS                       0x00000098
#define WL_SOC_APB_OFFSET                        0x00000098
#define WL_SOC_APB_TOGGLE_MSB                    0
#define WL_SOC_APB_TOGGLE_LSB                    0
#define WL_SOC_APB_TOGGLE_MASK                   0x00000001
#define WL_SOC_APB_TOGGLE_GET(x)                 (((x) & WL_SOC_APB_TOGGLE_MASK) >> WL_SOC_APB_TOGGLE_LSB)
#define WL_SOC_APB_TOGGLE_SET(x)                 (((x) << WL_SOC_APB_TOGGLE_LSB) & WL_SOC_APB_TOGGLE_MASK)

#define WLAN_SIGMA_DELTA_ADDRESS                 0x0000009c
#define WLAN_SIGMA_DELTA_OFFSET                  0x0000009c
#define WLAN_SIGMA_DELTA_ENABLE_MSB              16
#define WLAN_SIGMA_DELTA_ENABLE_LSB              16
#define WLAN_SIGMA_DELTA_ENABLE_MASK             0x00010000
#define WLAN_SIGMA_DELTA_ENABLE_GET(x)           (((x) & WLAN_SIGMA_DELTA_ENABLE_MASK) >> WLAN_SIGMA_DELTA_ENABLE_LSB)
#define WLAN_SIGMA_DELTA_ENABLE_SET(x)           (((x) << WLAN_SIGMA_DELTA_ENABLE_LSB) & WLAN_SIGMA_DELTA_ENABLE_MASK)
#define WLAN_SIGMA_DELTA_PRESCALAR_MSB           15
#define WLAN_SIGMA_DELTA_PRESCALAR_LSB           8
#define WLAN_SIGMA_DELTA_PRESCALAR_MASK          0x0000ff00
#define WLAN_SIGMA_DELTA_PRESCALAR_GET(x)        (((x) & WLAN_SIGMA_DELTA_PRESCALAR_MASK) >> WLAN_SIGMA_DELTA_PRESCALAR_LSB)
#define WLAN_SIGMA_DELTA_PRESCALAR_SET(x)        (((x) << WLAN_SIGMA_DELTA_PRESCALAR_LSB) & WLAN_SIGMA_DELTA_PRESCALAR_MASK)
#define WLAN_SIGMA_DELTA_TARGET_MSB              7
#define WLAN_SIGMA_DELTA_TARGET_LSB              0
#define WLAN_SIGMA_DELTA_TARGET_MASK             0x000000ff
#define WLAN_SIGMA_DELTA_TARGET_GET(x)           (((x) & WLAN_SIGMA_DELTA_TARGET_MASK) >> WLAN_SIGMA_DELTA_TARGET_LSB)
#define WLAN_SIGMA_DELTA_TARGET_SET(x)           (((x) << WLAN_SIGMA_DELTA_TARGET_LSB) & WLAN_SIGMA_DELTA_TARGET_MASK)

#define WL_BOOTSTRAP_ADDRESS                     0x000000a0
#define WL_BOOTSTRAP_OFFSET                      0x000000a0
#define WL_BOOTSTRAP_STATUS_MSB                  22
#define WL_BOOTSTRAP_STATUS_LSB                  0
#define WL_BOOTSTRAP_STATUS_MASK                 0x007fffff
#define WL_BOOTSTRAP_STATUS_GET(x)               (((x) & WL_BOOTSTRAP_STATUS_MASK) >> WL_BOOTSTRAP_STATUS_LSB)
#define WL_BOOTSTRAP_STATUS_SET(x)               (((x) << WL_BOOTSTRAP_STATUS_LSB) & WL_BOOTSTRAP_STATUS_MASK)

#define CLOCK_GPIO_ADDRESS                       0x000000a4
#define CLOCK_GPIO_OFFSET                        0x000000a4
#define CLOCK_GPIO_CLK_REQ_OUT_EN_MSB            2
#define CLOCK_GPIO_CLK_REQ_OUT_EN_LSB            2
#define CLOCK_GPIO_CLK_REQ_OUT_EN_MASK           0x00000004
#define CLOCK_GPIO_CLK_REQ_OUT_EN_GET(x)         (((x) & CLOCK_GPIO_CLK_REQ_OUT_EN_MASK) >> CLOCK_GPIO_CLK_REQ_OUT_EN_LSB)
#define CLOCK_GPIO_CLK_REQ_OUT_EN_SET(x)         (((x) << CLOCK_GPIO_CLK_REQ_OUT_EN_LSB) & CLOCK_GPIO_CLK_REQ_OUT_EN_MASK)
#define CLOCK_GPIO_BT_CLK_REQ_EN_MSB             1
#define CLOCK_GPIO_BT_CLK_REQ_EN_LSB             1
#define CLOCK_GPIO_BT_CLK_REQ_EN_MASK            0x00000002
#define CLOCK_GPIO_BT_CLK_REQ_EN_GET(x)          (((x) & CLOCK_GPIO_BT_CLK_REQ_EN_MASK) >> CLOCK_GPIO_BT_CLK_REQ_EN_LSB)
#define CLOCK_GPIO_BT_CLK_REQ_EN_SET(x)          (((x) << CLOCK_GPIO_BT_CLK_REQ_EN_LSB) & CLOCK_GPIO_BT_CLK_REQ_EN_MASK)
#define CLOCK_GPIO_BT_CLK_OUT_EN_MSB             0
#define CLOCK_GPIO_BT_CLK_OUT_EN_LSB             0
#define CLOCK_GPIO_BT_CLK_OUT_EN_MASK            0x00000001
#define CLOCK_GPIO_BT_CLK_OUT_EN_GET(x)          (((x) & CLOCK_GPIO_BT_CLK_OUT_EN_MASK) >> CLOCK_GPIO_BT_CLK_OUT_EN_LSB)
#define CLOCK_GPIO_BT_CLK_OUT_EN_SET(x)          (((x) << CLOCK_GPIO_BT_CLK_OUT_EN_LSB) & CLOCK_GPIO_BT_CLK_OUT_EN_MASK)

#define WLAN_DEBUG_CONTROL_ADDRESS               0x000000a8
#define WLAN_DEBUG_CONTROL_OFFSET                0x000000a8
#define WLAN_DEBUG_CONTROL_ENABLE_MSB            0
#define WLAN_DEBUG_CONTROL_ENABLE_LSB            0
#define WLAN_DEBUG_CONTROL_ENABLE_MASK           0x00000001
#define WLAN_DEBUG_CONTROL_ENABLE_GET(x)         (((x) & WLAN_DEBUG_CONTROL_ENABLE_MASK) >> WLAN_DEBUG_CONTROL_ENABLE_LSB)
#define WLAN_DEBUG_CONTROL_ENABLE_SET(x)         (((x) << WLAN_DEBUG_CONTROL_ENABLE_LSB) & WLAN_DEBUG_CONTROL_ENABLE_MASK)

#define WLAN_DEBUG_INPUT_SEL_ADDRESS             0x000000ac
#define WLAN_DEBUG_INPUT_SEL_OFFSET              0x000000ac
#define WLAN_DEBUG_INPUT_SEL_SHIFT_MSB           5
#define WLAN_DEBUG_INPUT_SEL_SHIFT_LSB           4
#define WLAN_DEBUG_INPUT_SEL_SHIFT_MASK          0x00000030
#define WLAN_DEBUG_INPUT_SEL_SHIFT_GET(x)        (((x) & WLAN_DEBUG_INPUT_SEL_SHIFT_MASK) >> WLAN_DEBUG_INPUT_SEL_SHIFT_LSB)
#define WLAN_DEBUG_INPUT_SEL_SHIFT_SET(x)        (((x) << WLAN_DEBUG_INPUT_SEL_SHIFT_LSB) & WLAN_DEBUG_INPUT_SEL_SHIFT_MASK)
#define WLAN_DEBUG_INPUT_SEL_SRC_MSB             3
#define WLAN_DEBUG_INPUT_SEL_SRC_LSB             0
#define WLAN_DEBUG_INPUT_SEL_SRC_MASK            0x0000000f
#define WLAN_DEBUG_INPUT_SEL_SRC_GET(x)          (((x) & WLAN_DEBUG_INPUT_SEL_SRC_MASK) >> WLAN_DEBUG_INPUT_SEL_SRC_LSB)
#define WLAN_DEBUG_INPUT_SEL_SRC_SET(x)          (((x) << WLAN_DEBUG_INPUT_SEL_SRC_LSB) & WLAN_DEBUG_INPUT_SEL_SRC_MASK)

#define WLAN_DEBUG_OUT_ADDRESS                   0x000000b0
#define WLAN_DEBUG_OUT_OFFSET                    0x000000b0
#define WLAN_DEBUG_OUT_DATA_MSB                  17
#define WLAN_DEBUG_OUT_DATA_LSB                  0
#define WLAN_DEBUG_OUT_DATA_MASK                 0x0003ffff
#define WLAN_DEBUG_OUT_DATA_GET(x)               (((x) & WLAN_DEBUG_OUT_DATA_MASK) >> WLAN_DEBUG_OUT_DATA_LSB)
#define WLAN_DEBUG_OUT_DATA_SET(x)               (((x) << WLAN_DEBUG_OUT_DATA_LSB) & WLAN_DEBUG_OUT_DATA_MASK)

#define WLAN_RESET_TUPLE_STATUS_ADDRESS          0x000000b4
#define WLAN_RESET_TUPLE_STATUS_OFFSET           0x000000b4
#define WLAN_RESET_TUPLE_STATUS_TEST_RESET_TUPLE_MSB 11
#define WLAN_RESET_TUPLE_STATUS_TEST_RESET_TUPLE_LSB 8
#define WLAN_RESET_TUPLE_STATUS_TEST_RESET_TUPLE_MASK 0x00000f00
#define WLAN_RESET_TUPLE_STATUS_TEST_RESET_TUPLE_GET(x) (((x) & WLAN_RESET_TUPLE_STATUS_TEST_RESET_TUPLE_MASK) >> WLAN_RESET_TUPLE_STATUS_TEST_RESET_TUPLE_LSB)
#define WLAN_RESET_TUPLE_STATUS_TEST_RESET_TUPLE_SET(x) (((x) << WLAN_RESET_TUPLE_STATUS_TEST_RESET_TUPLE_LSB) & WLAN_RESET_TUPLE_STATUS_TEST_RESET_TUPLE_MASK)
#define WLAN_RESET_TUPLE_STATUS_PIN_RESET_TUPLE_MSB 7
#define WLAN_RESET_TUPLE_STATUS_PIN_RESET_TUPLE_LSB 0
#define WLAN_RESET_TUPLE_STATUS_PIN_RESET_TUPLE_MASK 0x000000ff
#define WLAN_RESET_TUPLE_STATUS_PIN_RESET_TUPLE_GET(x) (((x) & WLAN_RESET_TUPLE_STATUS_PIN_RESET_TUPLE_MASK) >> WLAN_RESET_TUPLE_STATUS_PIN_RESET_TUPLE_LSB)
#define WLAN_RESET_TUPLE_STATUS_PIN_RESET_TUPLE_SET(x) (((x) << WLAN_RESET_TUPLE_STATUS_PIN_RESET_TUPLE_LSB) & WLAN_RESET_TUPLE_STATUS_PIN_RESET_TUPLE_MASK)

#define ANTENNA_SLEEP_CONTROL_ADDRESS            0x000000b8
#define ANTENNA_SLEEP_CONTROL_OFFSET             0x000000b8
#define ANTENNA_SLEEP_CONTROL_OVERRIDE_MSB       14
#define ANTENNA_SLEEP_CONTROL_OVERRIDE_LSB       10
#define ANTENNA_SLEEP_CONTROL_OVERRIDE_MASK      0x00007c00
#define ANTENNA_SLEEP_CONTROL_OVERRIDE_GET(x)    (((x) & ANTENNA_SLEEP_CONTROL_OVERRIDE_MASK) >> ANTENNA_SLEEP_CONTROL_OVERRIDE_LSB)
#define ANTENNA_SLEEP_CONTROL_OVERRIDE_SET(x)    (((x) << ANTENNA_SLEEP_CONTROL_OVERRIDE_LSB) & ANTENNA_SLEEP_CONTROL_OVERRIDE_MASK)
#define ANTENNA_SLEEP_CONTROL_VALUE_MSB          9
#define ANTENNA_SLEEP_CONTROL_VALUE_LSB          5
#define ANTENNA_SLEEP_CONTROL_VALUE_MASK         0x000003e0
#define ANTENNA_SLEEP_CONTROL_VALUE_GET(x)       (((x) & ANTENNA_SLEEP_CONTROL_VALUE_MASK) >> ANTENNA_SLEEP_CONTROL_VALUE_LSB)
#define ANTENNA_SLEEP_CONTROL_VALUE_SET(x)       (((x) << ANTENNA_SLEEP_CONTROL_VALUE_LSB) & ANTENNA_SLEEP_CONTROL_VALUE_MASK)
#define ANTENNA_SLEEP_CONTROL_ENABLE_MSB         4
#define ANTENNA_SLEEP_CONTROL_ENABLE_LSB         0
#define ANTENNA_SLEEP_CONTROL_ENABLE_MASK        0x0000001f
#define ANTENNA_SLEEP_CONTROL_ENABLE_GET(x)      (((x) & ANTENNA_SLEEP_CONTROL_ENABLE_MASK) >> ANTENNA_SLEEP_CONTROL_ENABLE_LSB)
#define ANTENNA_SLEEP_CONTROL_ENABLE_SET(x)      (((x) << ANTENNA_SLEEP_CONTROL_ENABLE_LSB) & ANTENNA_SLEEP_CONTROL_ENABLE_MASK)


#ifndef __ASSEMBLER__

typedef struct gpio_athr_wlan_reg_reg_s {
  volatile unsigned int wlan_gpio_out;
  volatile unsigned int wlan_gpio_out_w1ts;
  volatile unsigned int wlan_gpio_out_w1tc;
  volatile unsigned int wlan_gpio_enable;
  volatile unsigned int wlan_gpio_enable_w1ts;
  volatile unsigned int wlan_gpio_enable_w1tc;
  volatile unsigned int wlan_gpio_in;
  volatile unsigned int wlan_gpio_status;
  volatile unsigned int wlan_gpio_status_w1ts;
  volatile unsigned int wlan_gpio_status_w1tc;
  volatile unsigned int wlan_gpio_pin0;
  volatile unsigned int wlan_gpio_pin1;
  volatile unsigned int wlan_gpio_pin2;
  volatile unsigned int wlan_gpio_pin3;
  volatile unsigned int wlan_gpio_pin4;
  volatile unsigned int wlan_gpio_pin5;
  volatile unsigned int wlan_gpio_pin6;
  volatile unsigned int wlan_gpio_pin7;
  volatile unsigned int wlan_gpio_pin8;
  volatile unsigned int wlan_gpio_pin9;
  volatile unsigned int wlan_gpio_pin10;
  volatile unsigned int wlan_gpio_pin11;
  volatile unsigned int wlan_gpio_pin12;
  volatile unsigned int wlan_gpio_pin13;
  volatile unsigned int wlan_gpio_pin14;
  volatile unsigned int wlan_gpio_pin15;
  volatile unsigned int wlan_gpio_pin16;
  volatile unsigned int wlan_gpio_pin17;
  volatile unsigned int wlan_gpio_pin18;
  volatile unsigned int wlan_gpio_pin19;
  volatile unsigned int wlan_gpio_pin20;
  volatile unsigned int wlan_gpio_pin21;
  volatile unsigned int wlan_gpio_pin22;
  volatile unsigned int wlan_gpio_pin23;
  volatile unsigned int wlan_gpio_pin24;
  volatile unsigned int wlan_gpio_pin25;
  volatile unsigned int sdio;
  volatile unsigned int func_bus;
  volatile unsigned int wl_soc_apb;
  volatile unsigned int wlan_sigma_delta;
  volatile unsigned int wl_bootstrap;
  volatile unsigned int clock_gpio;
  volatile unsigned int wlan_debug_control;
  volatile unsigned int wlan_debug_input_sel;
  volatile unsigned int wlan_debug_out;
  volatile unsigned int wlan_reset_tuple_status;
  volatile unsigned int antenna_sleep_control;
} gpio_athr_wlan_reg_reg_t;

#endif /* __ASSEMBLER__ */

#endif /* _GPIO_ATHR_WLAN_REG_H_ */