hc
2024-12-19 9370bb92b2d16684ee45cf24e879c93c509162da
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
/******************************************************************************
 *
 * Copyright(c) 2007 - 2022 Realtek Corporation.
 *
 * This program is free software; you can redistribute it and/or modify it
 * under the terms of version 2 of the GNU General Public License as
 * published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
 * more details.
 *
 *****************************************************************************/
#define _RTW_REGDB_RTK_C_
 
#include <drv_types.h>
 
#define RTW_DOMAIN_MAP_VER    "63"
#define RTW_DOMAIN_MAP_M_VER    ""
#define RTW_COUNTRY_MAP_VER    "39"
#define RTW_COUNTRY_MAP_M_VER    ""
 
#define rtw_is_5g_band1(ch) ((ch) >= 36 && (ch) <= 48)
#define rtw_is_5g_band2(ch) ((ch) >= 52 && (ch) <= 64)
#define rtw_is_5g_band3(ch) ((ch) >= 100 && (ch) <= 144)
#define rtw_is_5g_band4(ch) ((ch) >= 149 && (ch) <= 177)
 
#define rtw_is_6g_band1(ch) ((ch) >= 1 && (ch) <= 93)
#define rtw_is_6g_band2(ch) ((ch) >= 97 && (ch) <= 117)
#define rtw_is_6g_band3(ch) ((ch) >= 121 && (ch) <= 189)
#define rtw_is_6g_band4(ch) ((ch) >= 193 && (ch) <= 237)
 
struct ch_list_t {
   u8 *len_ch_attr;
};
 
#define CLA_2G_12_14_PASSIVE    BIT0
 
#define CLA_5G_B1_PASSIVE        BIT0
#define CLA_5G_B2_PASSIVE        BIT1
#define CLA_5G_B3_PASSIVE        BIT2
#define CLA_5G_B4_PASSIVE        BIT3
#define CLA_5G_B2_DFS            BIT4
#define CLA_5G_B3_DFS            BIT5
#define CLA_5G_B4_DFS            BIT6
 
#define CLA_6G_B1_PASSIVE        BIT0
#define CLA_6G_B2_PASSIVE        BIT1
#define CLA_6G_B3_PASSIVE        BIT2
#define CLA_6G_B4_PASSIVE        BIT3
 
#define CH_LIST_ENT(_len, arg...) \
   {.len_ch_attr = (u8[_len + 2]) {_len, ##arg}, }
 
#define CH_LIST_LEN(_ch_list) (_ch_list.len_ch_attr[0])
#define CH_LIST_CH(_ch_list, _i) (_ch_list.len_ch_attr[_i + 1])
#define CH_LIST_ATTRIB(_ch_list) (_ch_list.len_ch_attr[CH_LIST_LEN(_ch_list) + 1])
 
enum rtw_chd_2g {
   RTW_CHD_2G_INVALID = 0,
 
   RTW_CHD_2G_00,
   RTW_CHD_2G_01,
   RTW_CHD_2G_02,
   RTW_CHD_2G_03,
   RTW_CHD_2G_04,
   RTW_CHD_2G_05,
   RTW_CHD_2G_06,
 
   RTW_CHD_2G_MAX,
   RTW_CHD_2G_NULL = RTW_CHD_2G_00,
};
 
enum rtw_chd_5g {
   RTW_CHD_5G_INVALID = 0,
 
   RTW_CHD_5G_00,
   RTW_CHD_5G_01,
   RTW_CHD_5G_02,
   RTW_CHD_5G_03,
   RTW_CHD_5G_04,
   RTW_CHD_5G_05,
   RTW_CHD_5G_06,
   RTW_CHD_5G_07,
   RTW_CHD_5G_08,
   RTW_CHD_5G_09,
   RTW_CHD_5G_10,
   RTW_CHD_5G_11,
   RTW_CHD_5G_12,
   RTW_CHD_5G_13,
   RTW_CHD_5G_14,
   RTW_CHD_5G_15,
   RTW_CHD_5G_16,
   RTW_CHD_5G_17,
   RTW_CHD_5G_18,
   RTW_CHD_5G_19,
   RTW_CHD_5G_20,
   RTW_CHD_5G_21,
   RTW_CHD_5G_22,
   RTW_CHD_5G_23,
   RTW_CHD_5G_24,
   RTW_CHD_5G_25,
   RTW_CHD_5G_26,
   RTW_CHD_5G_27,
   RTW_CHD_5G_28,
   RTW_CHD_5G_29,
   RTW_CHD_5G_30,
   RTW_CHD_5G_31,
   RTW_CHD_5G_32,
   RTW_CHD_5G_33,
   RTW_CHD_5G_34,
   RTW_CHD_5G_35,
   RTW_CHD_5G_36,
   RTW_CHD_5G_37,
   RTW_CHD_5G_38,
   RTW_CHD_5G_39,
   RTW_CHD_5G_40,
   RTW_CHD_5G_41,
   RTW_CHD_5G_42,
   RTW_CHD_5G_43,
   RTW_CHD_5G_44,
   RTW_CHD_5G_45,
   RTW_CHD_5G_46,
   RTW_CHD_5G_47,
   RTW_CHD_5G_48,
   RTW_CHD_5G_49,
   RTW_CHD_5G_50,
   RTW_CHD_5G_51,
   RTW_CHD_5G_52,
   RTW_CHD_5G_53,
   RTW_CHD_5G_54,
   RTW_CHD_5G_55,
 
   RTW_CHD_5G_MAX,
   RTW_CHD_5G_NULL = RTW_CHD_5G_00,
};
 
static const struct ch_list_t rtw_channel_def_2g[] = {
   /* RTW_CHD_2G_INVALID */    CH_LIST_ENT(0, 0),
   /* RTW_CHD_2G_00 */    CH_LIST_ENT(0, 0),
   /* RTW_CHD_2G_01 */    CH_LIST_ENT(13, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, CLA_2G_12_14_PASSIVE),
   /* RTW_CHD_2G_02 */    CH_LIST_ENT(13, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 0),
   /* RTW_CHD_2G_03 */    CH_LIST_ENT(11, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 0),
   /* RTW_CHD_2G_04 */    CH_LIST_ENT(14, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 0),
   /* RTW_CHD_2G_05 */    CH_LIST_ENT(4, 10, 11, 12, 13, 0),
   /* RTW_CHD_2G_06 */    CH_LIST_ENT(14, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, CLA_2G_12_14_PASSIVE),
};
 
#if CONFIG_IEEE80211_BAND_5GHZ
static const struct ch_list_t rtw_channel_def_5g[] = {
   /* RTW_CHD_5G_INVALID */    CH_LIST_ENT(0, 0),
   /* RTW_CHD_5G_00 */    CH_LIST_ENT(0, 0),
   /* RTW_CHD_5G_01 */    CH_LIST_ENT(21, 36, 40, 44, 48, 52, 56, 60, 64, 100, 104, 108, 112, 116, 132, 136, 140, 149, 153, 157, 161, 165, CLA_5G_B2_DFS | CLA_5G_B3_DFS),
   /* RTW_CHD_5G_02 */    CH_LIST_ENT(19, 36, 40, 44, 48, 52, 56, 60, 64, 100, 104, 108, 112, 116, 120, 124, 128, 132, 136, 140, CLA_5G_B2_DFS | CLA_5G_B3_DFS),
   /* RTW_CHD_5G_03 */    CH_LIST_ENT(24, 36, 40, 44, 48, 52, 56, 60, 64, 100, 104, 108, 112, 116, 120, 124, 128, 132, 136, 140, 149, 153, 157, 161, 165, CLA_5G_B2_DFS | CLA_5G_B3_DFS),
   /* RTW_CHD_5G_04 */    CH_LIST_ENT(22, 36, 40, 44, 48, 52, 56, 60, 64, 100, 104, 108, 112, 116, 120, 124, 128, 132, 149, 153, 157, 161, 165, CLA_5G_B2_DFS | CLA_5G_B3_DFS),
   /* RTW_CHD_5G_05 */    CH_LIST_ENT(19, 36, 40, 44, 48, 52, 56, 60, 64, 100, 104, 108, 112, 116, 120, 124, 149, 153, 157, 161, CLA_5G_B2_DFS | CLA_5G_B3_DFS),
   /* RTW_CHD_5G_06 */    CH_LIST_ENT(9, 36, 40, 44, 48, 149, 153, 157, 161, 165, 0),
   /* RTW_CHD_5G_07 */    CH_LIST_ENT(13, 36, 40, 44, 48, 52, 56, 60, 64, 149, 153, 157, 161, 165, CLA_5G_B2_DFS),
   /* RTW_CHD_5G_08 */    CH_LIST_ENT(12, 36, 40, 44, 48, 52, 56, 60, 64, 149, 153, 157, 161, CLA_5G_B2_DFS),
   /* RTW_CHD_5G_09 */    CH_LIST_ENT(5, 149, 153, 157, 161, 165, 0),
   /* RTW_CHD_5G_10 */    CH_LIST_ENT(8, 36, 40, 44, 48, 52, 56, 60, 64, CLA_5G_B2_DFS),
   /* RTW_CHD_5G_11 */    CH_LIST_ENT(11, 100, 104, 108, 112, 116, 120, 124, 128, 132, 136, 140, CLA_5G_B3_DFS),
   /* RTW_CHD_5G_12 */    CH_LIST_ENT(16, 56, 60, 64, 100, 104, 108, 112, 116, 132, 136, 140, 149, 153, 157, 161, 165, CLA_5G_B2_DFS | CLA_5G_B3_DFS),
   /* RTW_CHD_5G_13 */    CH_LIST_ENT(8, 56, 60, 64, 149, 153, 157, 161, 165, CLA_5G_B2_DFS),
   /* RTW_CHD_5G_14 */    CH_LIST_ENT(4, 36, 40, 44, 48, 0),
   /* RTW_CHD_5G_15 */    CH_LIST_ENT(4, 149, 153, 157, 161, 0),
   /* RTW_CHD_5G_16 */    CH_LIST_ENT(11, 100, 104, 108, 112, 116, 120, 124, 128, 132, 136, 140, 0),
   /* RTW_CHD_5G_17 */    CH_LIST_ENT(16, 36, 40, 44, 48, 52, 56, 60, 64, 132, 136, 140, 149, 153, 157, 161, 165, CLA_5G_B2_DFS | CLA_5G_B3_DFS),
   /* RTW_CHD_5G_18 */    CH_LIST_ENT(17, 52, 56, 60, 64, 100, 104, 108, 112, 116, 132, 136, 140, 149, 153, 157, 161, 165, CLA_5G_B2_DFS | CLA_5G_B3_DFS),
   /* RTW_CHD_5G_19 */    CH_LIST_ENT(16, 36, 40, 44, 48, 52, 56, 60, 64, 100, 104, 108, 112, 116, 132, 136, 140, CLA_5G_B2_DFS | CLA_5G_B3_DFS),
   /* RTW_CHD_5G_20 */    CH_LIST_ENT(20, 36, 40, 44, 48, 52, 56, 60, 64, 100, 104, 108, 112, 116, 132, 136, 140, 149, 153, 157, 161, CLA_5G_B2_DFS | CLA_5G_B3_DFS),
   /* RTW_CHD_5G_21 */    CH_LIST_ENT(11, 36, 40, 44, 48, 52, 56, 60, 64, 132, 136, 140, CLA_5G_B2_DFS | CLA_5G_B3_DFS),
   /* RTW_CHD_5G_22 */    CH_LIST_ENT(25, 36, 40, 44, 48, 52, 56, 60, 64, 100, 104, 108, 112, 116, 120, 124, 128, 132, 136, 140, 144, 149, 153, 157, 161, 165, CLA_5G_B2_DFS | CLA_5G_B3_DFS),
   /* RTW_CHD_5G_23 */    CH_LIST_ENT(21, 36, 40, 44, 48, 52, 56, 60, 64, 100, 104, 108, 112, 116, 120, 124, 128, 149, 153, 157, 161, 165, CLA_5G_B2_DFS | CLA_5G_B3_DFS),
   /* RTW_CHD_5G_24 */    CH_LIST_ENT(24, 36, 40, 44, 48, 52, 56, 60, 64, 100, 104, 108, 112, 116, 120, 124, 128, 132, 136, 140, 149, 153, 157, 161, 165, CLA_5G_B2_PASSIVE | CLA_5G_B3_PASSIVE | CLA_5G_B4_PASSIVE),
   /* RTW_CHD_5G_25 */    CH_LIST_ENT(24, 36, 40, 44, 48, 52, 56, 60, 64, 100, 104, 108, 112, 116, 120, 124, 128, 132, 136, 140, 149, 153, 157, 161, 165, CLA_5G_B2_PASSIVE | CLA_5G_B3_PASSIVE),
   /* RTW_CHD_5G_26 */    CH_LIST_ENT(24, 36, 40, 44, 48, 52, 56, 60, 64, 100, 104, 108, 112, 116, 120, 124, 128, 132, 136, 140, 149, 153, 157, 161, 165, CLA_5G_B1_PASSIVE | CLA_5G_B2_PASSIVE | CLA_5G_B3_PASSIVE),
   /* RTW_CHD_5G_27 */    CH_LIST_ENT(21, 36, 40, 44, 48, 52, 56, 60, 64, 100, 104, 108, 112, 116, 132, 136, 140, 149, 153, 157, 161, 165, CLA_5G_B2_PASSIVE | CLA_5G_B3_PASSIVE),
   /* RTW_CHD_5G_28 */    CH_LIST_ENT(13, 36, 40, 44, 48, 52, 56, 60, 64, 149, 153, 157, 161, 165, CLA_5G_B2_PASSIVE),
   /* RTW_CHD_5G_29 */    CH_LIST_ENT(13, 36, 40, 44, 48, 52, 56, 60, 64, 149, 153, 157, 161, 165, CLA_5G_B1_PASSIVE | CLA_5G_B2_PASSIVE),
   /* RTW_CHD_5G_30 */    CH_LIST_ENT(9, 36, 40, 44, 48, 149, 153, 157, 161, 165, CLA_5G_B1_PASSIVE | CLA_5G_B4_PASSIVE),
   /* RTW_CHD_5G_31 */    CH_LIST_ENT(24, 36, 40, 44, 48, 52, 56, 60, 64, 100, 104, 108, 112, 116, 120, 124, 128, 132, 136, 140, 149, 153, 157, 161, 165, CLA_5G_B1_PASSIVE | CLA_5G_B2_PASSIVE | CLA_5G_B3_PASSIVE | CLA_5G_B4_PASSIVE),
   /* RTW_CHD_5G_32 */    CH_LIST_ENT(9, 52, 56, 60, 64, 149, 153, 157, 161, 165, CLA_5G_B2_DFS),
   /* RTW_CHD_5G_33 */    CH_LIST_ENT(22, 36, 40, 44, 48, 52, 56, 60, 64, 100, 104, 108, 112, 116, 132, 136, 140, 144, 149, 153, 157, 161, 165, CLA_5G_B2_DFS | CLA_5G_B3_DFS),
   /* RTW_CHD_5G_34 */    CH_LIST_ENT(13, 100, 104, 108, 112, 116, 132, 136, 140, 149, 153, 157, 161, 165, CLA_5G_B3_DFS),
   /* RTW_CHD_5G_35 */    CH_LIST_ENT(8, 100, 104, 108, 112, 116, 132, 136, 140, CLA_5G_B3_DFS),
   /* RTW_CHD_5G_36 */    CH_LIST_ENT(25, 36, 40, 44, 48, 52, 56, 60, 64, 100, 104, 108, 112, 116, 120, 124, 128, 132, 136, 140, 144, 149, 153, 157, 161, 165, CLA_5G_B1_PASSIVE | CLA_5G_B2_PASSIVE | CLA_5G_B2_DFS | CLA_5G_B3_PASSIVE | CLA_5G_B3_DFS | CLA_5G_B4_PASSIVE),
   /* RTW_CHD_5G_37 */    CH_LIST_ENT(8, 36, 40, 44, 48, 52, 56, 60, 64, CLA_5G_B1_PASSIVE | CLA_5G_B2_PASSIVE),
   /* RTW_CHD_5G_38 */    CH_LIST_ENT(16, 52, 56, 60, 64, 100, 104, 108, 112, 116, 120, 124, 128, 132, 136, 140, 144, CLA_5G_B2_DFS | CLA_5G_B3_DFS),
   /* RTW_CHD_5G_39 */    CH_LIST_ENT(21, 36, 40, 44, 48, 52, 56, 60, 64, 100, 104, 108, 112, 116, 120, 124, 128, 149, 153, 157, 161, 165, CLA_5G_B1_PASSIVE | CLA_5G_B2_DFS | CLA_5G_B3_DFS | CLA_5G_B4_DFS),
   /* RTW_CHD_5G_40 */    CH_LIST_ENT(21, 36, 40, 44, 48, 52, 56, 60, 64, 100, 104, 108, 112, 116, 132, 136, 140, 149, 153, 157, 161, 165, CLA_5G_B1_PASSIVE | CLA_5G_B2_DFS | CLA_5G_B3_DFS),
   /* RTW_CHD_5G_41 */    CH_LIST_ENT(24, 36, 40, 44, 48, 52, 56, 60, 64, 100, 104, 108, 112, 116, 120, 124, 128, 132, 136, 140, 149, 153, 157, 161, 165, CLA_5G_B2_DFS | CLA_5G_B3_DFS | CLA_5G_B4_PASSIVE),
   /* RTW_CHD_5G_42 */    CH_LIST_ENT(24, 36, 40, 44, 48, 52, 56, 60, 64, 100, 104, 108, 112, 116, 120, 124, 128, 132, 136, 140, 149, 153, 157, 161, 165, CLA_5G_B1_PASSIVE | CLA_5G_B2_DFS | CLA_5G_B3_DFS | CLA_5G_B4_PASSIVE),
   /* RTW_CHD_5G_43 */    CH_LIST_ENT(23, 36, 40, 44, 48, 52, 56, 60, 64, 100, 104, 108, 112, 116, 120, 124, 128, 136, 140, 149, 153, 157, 161, 165, CLA_5G_B1_PASSIVE | CLA_5G_B2_PASSIVE | CLA_5G_B3_PASSIVE | CLA_5G_B4_PASSIVE),
   /* RTW_CHD_5G_44 */    CH_LIST_ENT(21, 36, 40, 44, 48, 52, 56, 60, 64, 100, 104, 108, 112, 116, 132, 136, 140, 149, 153, 157, 161, 165, CLA_5G_B1_PASSIVE | CLA_5G_B2_PASSIVE | CLA_5G_B3_PASSIVE | CLA_5G_B4_PASSIVE),
   /* RTW_CHD_5G_45 */    CH_LIST_ENT(13, 36, 40, 44, 48, 52, 56, 60, 64, 149, 153, 157, 161, 165, CLA_5G_B1_PASSIVE | CLA_5G_B2_PASSIVE | CLA_5G_B4_PASSIVE),
   /* RTW_CHD_5G_46 */    CH_LIST_ENT(12, 36, 40, 44, 48, 52, 56, 60, 64, 149, 153, 157, 161, CLA_5G_B2_PASSIVE),
   /* RTW_CHD_5G_47 */    CH_LIST_ENT(19, 36, 40, 44, 48, 52, 56, 60, 64, 100, 104, 108, 112, 116, 120, 124, 128, 132, 136, 140, CLA_5G_B2_PASSIVE | CLA_5G_B3_PASSIVE),
   /* RTW_CHD_5G_48 */    CH_LIST_ENT(20, 36, 40, 44, 48, 52, 56, 60, 64, 100, 104, 108, 112, 116, 120, 124, 128, 132, 136, 140, 144, CLA_5G_B2_DFS | CLA_5G_B3_DFS),
   /* RTW_CHD_5G_49 */    CH_LIST_ENT(17, 36, 40, 44, 48, 52, 56, 60, 64, 100, 104, 108, 112, 116, 120, 124, 128, 132, CLA_5G_B2_DFS | CLA_5G_B3_DFS),
   /* RTW_CHD_5G_50 */    CH_LIST_ENT(17, 36, 40, 44, 48, 52, 56, 60, 64, 132, 136, 140, 144, 149, 153, 157, 161, 165, CLA_5G_B2_DFS | CLA_5G_B3_DFS),
   /* RTW_CHD_5G_51 */    CH_LIST_ENT(13, 36, 40, 44, 48, 52, 56, 60, 64, 100, 104, 108, 112, 116, CLA_5G_B2_DFS | CLA_5G_B3_DFS),
   /* RTW_CHD_5G_52 */    CH_LIST_ENT(28, 36, 40, 44, 48, 52, 56, 60, 64, 100, 104, 108, 112, 116, 120, 124, 128, 132, 136, 140, 144, 149, 153, 157, 161, 165, 169, 173, 177, CLA_5G_B2_DFS | CLA_5G_B3_DFS),
   /* RTW_CHD_5G_53 */    CH_LIST_ENT(17, 36, 40, 44, 48, 52, 56, 60, 64, 100, 104, 108, 112, 149, 153, 157, 161, 165, CLA_5G_B2_DFS | CLA_5G_B3_DFS),
   /* RTW_CHD_5G_54 */    CH_LIST_ENT(8, 36, 40, 44, 48, 149, 153, 157, 161, 0),
   /* RTW_CHD_5G_55 */    CH_LIST_ENT(28, 36, 40, 44, 48, 52, 56, 60, 64, 100, 104, 108, 112, 116, 120, 124, 128, 132, 136, 140, 144, 149, 153, 157, 161, 165, 169, 173, 177, CLA_5G_B1_PASSIVE | CLA_5G_B2_PASSIVE | CLA_5G_B2_DFS | CLA_5G_B3_PASSIVE | CLA_5G_B3_DFS | CLA_5G_B4_PASSIVE),
};
#endif /* CONFIG_IEEE80211_BAND_5GHZ */
 
struct chplan_ent_t {
   u8 regd_2g; /* value of enum rtw_regd */
   u8 chd_2g;
#if CONFIG_IEEE80211_BAND_5GHZ
   u8 regd_5g; /* value of enum rtw_regd */
   u8 chd_5g;
#endif
};
 
#if CONFIG_IEEE80211_BAND_5GHZ
#define CHPLAN_ENT(_regd_2g, _chd_2g, _regd_5g, _chd_5g) {.regd_2g = RTW_REGD_##_regd_2g, .chd_2g = RTW_CHD_2G_##_chd_2g, .regd_5g = RTW_REGD_##_regd_5g, .chd_5g = RTW_CHD_5G_##_chd_5g}
#else
#define CHPLAN_ENT(_regd_2g, _chd_2g, _regd_5g, _chd_5g) {.regd_2g = RTW_REGD_##_regd_2g, .chd_2g = RTW_CHD_2G_##_chd_2g}
#endif
 
#define CHPLAN_ENT_NOT_DEFINED CHPLAN_ENT(NA, INVALID, NA, INVALID)
 
static const struct chplan_ent_t RTW_ChannelPlanMap[] = {
   [0x00] = CHPLAN_ENT(ETSI , 02, ETSI , 49),
   [0x01] = CHPLAN_ENT(ETSI , 02, ETSI , 50),
   [0x02] = CHPLAN_ENT(ETSI , 03, ETSI , 07),
   [0x03] = CHPLAN_ENT(ACMA , 02, ACMA , 33),
   [0x04] = CHPLAN_ENT(ETSI , 02, ETSI , 51),
   [0x05] = CHPLAN_ENT(ETSI , 02, ETSI , 06),
   [0x06] = CHPLAN_ENT(ETSI , 02, ETSI , 07),
   [0x07] = CHPLAN_ENT(ETSI , 02, ETSI , 23),
   [0x08] = CHPLAN_ENT(ETSI , 02, ETSI , 21),
   [0x09] = CHPLAN_ENT(ETSI , 02, ETSI , 17),
   [0x0A] = CHPLAN_ENT(NA   , 00, NA   , 00),
   [0x0B] = CHPLAN_ENT(ETSI , 02, ETSI , 22),
   [0x0C] = CHPLAN_ENT(FCC  , 03, FCC  , 54),
   [0x0D] = CHPLAN_ENT(MKK  , 04, MKK  , 14),
   [0x1B] = CHPLAN_ENT(FCC  , 02, FCC  , 52),
   [0x1C] = CHPLAN_ENT(KCC  , 02, KCC  , 53),
   [0x20] = CHPLAN_ENT(WW   , 01, NA   , 00),
   [0x21] = CHPLAN_ENT(ETSI , 02, NA   , 00),
   [0x22] = CHPLAN_ENT(FCC  , 03, NA   , 00),
   [0x23] = CHPLAN_ENT(MKK  , 04, NA   , 00),
   [0x24] = CHPLAN_ENT(ETSI , 05, NA   , 00),
   [0x25] = CHPLAN_ENT(FCC  , 03, FCC  , 03),
   [0x26] = CHPLAN_ENT(ETSI , 01, ETSI , 02),
   [0x27] = CHPLAN_ENT(MKK  , 04, MKK  , 02),
   [0x28] = CHPLAN_ENT(KCC  , 01, KCC  , 05),
   [0x29] = CHPLAN_ENT(FCC  , 01, FCC  , 06),
   [0x2A] = CHPLAN_ENT(FCC  , 02, NA   , 00),
   [0x2B] = CHPLAN_ENT(IC   , 02, IC   , 33),
   [0x2C] = CHPLAN_ENT(MKK  , 02, NA   , 00),
   [0x2D] = CHPLAN_ENT(CHILE, 01, CHILE, 22),
   [0x2E] = CHPLAN_ENT(WW   , 03, WW   , 37),
   [0x2F] = CHPLAN_ENT(CHILE, 01, CHILE, 38),
   [0x30] = CHPLAN_ENT(FCC  , 01, FCC  , 07),
   [0x31] = CHPLAN_ENT(FCC  , 01, FCC  , 08),
   [0x32] = CHPLAN_ENT(FCC  , 01, FCC  , 09),
   [0x33] = CHPLAN_ENT(FCC  , 01, FCC  , 10),
   [0x34] = CHPLAN_ENT(FCC  , 03, FCC  , 01),
   [0x35] = CHPLAN_ENT(ETSI , 01, ETSI , 03),
   [0x36] = CHPLAN_ENT(ETSI , 01, ETSI , 04),
   [0x37] = CHPLAN_ENT(MKK  , 04, MKK  , 10),
   [0x38] = CHPLAN_ENT(MKK  , 04, MKK  , 11),
   [0x39] = CHPLAN_ENT(NCC  , 03, NCC  , 12),
   [0x3A] = CHPLAN_ENT(ETSI , 02, ETSI , 02),
   [0x3B] = CHPLAN_ENT(ACMA , 02, ACMA , 01),
   [0x3C] = CHPLAN_ENT(ETSI , 02, ETSI , 10),
   [0x3D] = CHPLAN_ENT(ETSI , 02, ETSI , 15),
   [0x3E] = CHPLAN_ENT(KCC  , 02, KCC  , 03),
   [0x3F] = CHPLAN_ENT(FCC  , 03, FCC  , 22),
   [0x40] = CHPLAN_ENT(NCC  , 03, NCC  , 13),
   [0x41] = CHPLAN_ENT(WW   , 06, NA   , 00),
   [0x42] = CHPLAN_ENT(ETSI , 02, ETSI , 14),
   [0x43] = CHPLAN_ENT(FCC  , 03, FCC  , 06),
   [0x44] = CHPLAN_ENT(NCC  , 03, NCC  , 09),
   [0x45] = CHPLAN_ENT(ACMA , 01, ACMA , 01),
   [0x46] = CHPLAN_ENT(FCC  , 03, FCC  , 15),
   [0x47] = CHPLAN_ENT(ETSI , 01, ETSI , 10),
   [0x48] = CHPLAN_ENT(ETSI , 01, ETSI , 07),
   [0x49] = CHPLAN_ENT(ETSI , 01, ETSI , 06),
   [0x4A] = CHPLAN_ENT(IC   , 03, IC   , 33),
   [0x4B] = CHPLAN_ENT(KCC  , 02, KCC  , 22),
   [0x4C] = CHPLAN_ENT(FCC  , 03, FCC  , 28),
   [0x4D] = CHPLAN_ENT(MEX  , 02, MEX  , 01),
   [0x4E] = CHPLAN_ENT(ETSI , 02, ETSI , 42),
   [0x4F] = CHPLAN_ENT(NA   , 00, MKK  , 43),
   [0x50] = CHPLAN_ENT(ETSI , 01, ETSI , 16),
   [0x51] = CHPLAN_ENT(ETSI , 01, ETSI , 09),
   [0x52] = CHPLAN_ENT(ETSI , 01, ETSI , 17),
   [0x53] = CHPLAN_ENT(NCC  , 03, NCC  , 18),
   [0x54] = CHPLAN_ENT(ETSI , 01, ETSI , 15),
   [0x55] = CHPLAN_ENT(FCC  , 03, FCC  , 01),
   [0x56] = CHPLAN_ENT(ETSI , 01, ETSI , 19),
   [0x57] = CHPLAN_ENT(FCC  , 03, FCC  , 20),
   [0x58] = CHPLAN_ENT(MKK  , 02, MKK  , 14),
   [0x59] = CHPLAN_ENT(ETSI , 01, ETSI , 21),
   [0x5A] = CHPLAN_ENT(NA   , 00, FCC  , 44),
   [0x5B] = CHPLAN_ENT(NA   , 00, FCC  , 45),
   [0x5C] = CHPLAN_ENT(NA   , 00, FCC  , 43),
   [0x5D] = CHPLAN_ENT(ETSI , 02, ETSI , 08),
   [0x5E] = CHPLAN_ENT(ETSI , 02, ETSI , 03),
   [0x5F] = CHPLAN_ENT(MKK  , 02, MKK  , 47),
   [0x60] = CHPLAN_ENT(FCC  , 03, FCC  , 09),
   [0x61] = CHPLAN_ENT(FCC  , 02, FCC  , 01),
   [0x62] = CHPLAN_ENT(FCC  , 02, FCC  , 03),
   [0x63] = CHPLAN_ENT(ETSI , 01, ETSI , 23),
   [0x64] = CHPLAN_ENT(MKK  , 02, MKK  , 24),
   [0x65] = CHPLAN_ENT(ETSI , 02, ETSI , 24),
   [0x66] = CHPLAN_ENT(FCC  , 03, FCC  , 27),
   [0x67] = CHPLAN_ENT(FCC  , 03, FCC  , 25),
   [0x68] = CHPLAN_ENT(FCC  , 02, FCC  , 27),
   [0x69] = CHPLAN_ENT(FCC  , 02, FCC  , 25),
   [0x6A] = CHPLAN_ENT(ETSI , 02, ETSI , 25),
   [0x6B] = CHPLAN_ENT(FCC  , 01, FCC  , 29),
   [0x6C] = CHPLAN_ENT(FCC  , 01, FCC  , 26),
   [0x6D] = CHPLAN_ENT(FCC  , 02, FCC  , 28),
   [0x6E] = CHPLAN_ENT(FCC  , 01, FCC  , 25),
   [0x6F] = CHPLAN_ENT(NA   , 00, ETSI , 06),
   [0x70] = CHPLAN_ENT(NA   , 00, ETSI , 30),
   [0x71] = CHPLAN_ENT(NA   , 00, ETSI , 25),
   [0x72] = CHPLAN_ENT(NA   , 00, ETSI , 31),
   [0x73] = CHPLAN_ENT(FCC  , 01, FCC  , 01),
   [0x74] = CHPLAN_ENT(FCC  , 02, FCC  , 19),
   [0x75] = CHPLAN_ENT(ETSI , 01, ETSI , 32),
   [0x76] = CHPLAN_ENT(FCC  , 02, FCC  , 22),
   [0x77] = CHPLAN_ENT(ETSI , 01, ETSI , 34),
   [0x78] = CHPLAN_ENT(FCC  , 03, FCC  , 35),
   [0x79] = CHPLAN_ENT(MKK  , 02, MKK  , 02),
   [0x7A] = CHPLAN_ENT(ETSI , 02, ETSI , 28),
   [0x7B] = CHPLAN_ENT(ETSI , 02, ETSI , 46),
   [0x7C] = CHPLAN_ENT(ETSI , 02, ETSI , 47),
   [0x7D] = CHPLAN_ENT(MKK  , 04, MKK  , 48),
   [0x7E] = CHPLAN_ENT(MKK  , 02, MKK  , 48),
   [0x7F] = CHPLAN_ENT(WW   , 01, WW   , 55),
};
 
static const int RTW_ChannelPlanMap_size = sizeof(RTW_ChannelPlanMap) / sizeof(RTW_ChannelPlanMap[0]);
 
static u8 rtk_regdb_get_default_regd_2g(u8 id)
{
   if (id < RTW_ChannelPlanMap_size)
       return RTW_ChannelPlanMap[id].regd_2g;
   return RTW_REGD_NA;
}
 
#if CONFIG_IEEE80211_BAND_5GHZ
static u8 rtk_regdb_get_default_regd_5g(u8 id)
{
   if (id < RTW_ChannelPlanMap_size)
       return RTW_ChannelPlanMap[id].regd_5g;
   return RTW_REGD_NA;
}
#endif
 
static bool rtk_regdb_is_domain_code_valid(u8 id)
{
   if (id < RTW_ChannelPlanMap_size) {
       const struct chplan_ent_t *chplan_map = &RTW_ChannelPlanMap[id];
 
       if (chplan_map->chd_2g != RTW_CHD_2G_INVALID
           #if CONFIG_IEEE80211_BAND_5GHZ
           && chplan_map->chd_5g != RTW_CHD_5G_INVALID
           #endif
       )
           return true;
   }
 
   return false;
}
 
static bool rtk_regdb_domain_get_ch(u8 id, u32 ch, u8 *flags)
{
   u8 index, attrib;
 
   if (flags)
       *flags = 0;
 
#if CONFIG_IEEE80211_BAND_5GHZ
   if (ch > 14) {
       u8 chd_5g = RTW_ChannelPlanMap[id].chd_5g;
 
       attrib = CH_LIST_ATTRIB(rtw_channel_def_5g[chd_5g]);
 
       for (index = 0; index < CH_LIST_LEN(rtw_channel_def_5g[chd_5g]); index++) {
           if (CH_LIST_CH(rtw_channel_def_5g[chd_5g], index) == ch) {
               if (flags) {
                   if ((rtw_is_5g_band1(ch) && (attrib & CLA_5G_B1_PASSIVE)) /* band1 passive */
                       || (rtw_is_5g_band2(ch) && (attrib & CLA_5G_B2_PASSIVE)) /* band2 passive */
                       || (rtw_is_5g_band3(ch) && (attrib & CLA_5G_B3_PASSIVE)) /* band3 passive */
                       || (rtw_is_5g_band4(ch) && (attrib & CLA_5G_B4_PASSIVE)) /* band4 passive */
                   )
                       *flags |= RTW_CHF_NO_IR;
 
                   if ((rtw_is_5g_band2(ch) && (attrib & CLA_5G_B2_DFS))
                       || (rtw_is_5g_band3(ch) && (attrib & CLA_5G_B3_DFS))
                       || (rtw_is_5g_band4(ch) && (attrib & CLA_5G_B4_DFS)))
                       *flags |= RTW_CHF_DFS;
               }
               return true;
           }
       }
   } else
#endif /* CONFIG_IEEE80211_BAND_5GHZ */
    {
       u8 chd_2g = RTW_ChannelPlanMap[id].chd_2g;
 
       attrib = CH_LIST_ATTRIB(rtw_channel_def_2g[chd_2g]);
 
       for (index = 0; index < CH_LIST_LEN(rtw_channel_def_2g[chd_2g]); index++) {
           if (CH_LIST_CH(rtw_channel_def_2g[chd_2g], index) == ch) {
               if (flags) {
                   if (ch >= 12 && ch <= 14 && (attrib & CLA_2G_12_14_PASSIVE))
                       *flags |= RTW_CHF_NO_IR;
               }
               return true;
           }
       }
   }
 
   return false;
}
 
#if CONFIG_IEEE80211_BAND_6GHZ
enum rtw_chd_6g {
   RTW_CHD_6G_INVALID = 0,
 
   RTW_CHD_6G_00,
   RTW_CHD_6G_01,
   RTW_CHD_6G_02,
   RTW_CHD_6G_03,
   RTW_CHD_6G_04,
   RTW_CHD_6G_05,    /* 6G Worldwide */
   RTW_CHD_6G_06,
 
   RTW_CHD_6G_MAX,
   RTW_CHD_6G_NULL = RTW_CHD_6G_00,
};
 
static const struct ch_list_t rtw_channel_def_6g[] = {
   /* RTW_CHD_6G_INVALID */    CH_LIST_ENT(0, 0),
   /* RTW_CHD_6G_00 */    CH_LIST_ENT(0, 0),
   /* RTW_CHD_6G_01 */    CH_LIST_ENT(24, 1, 5, 9, 13, 17, 21, 25, 29, 33, 37, 41, 45, 49, 53, 57, 61, 65, 69, 73, 77, 81, 85, 89, 93, 0),
   /* RTW_CHD_6G_02 */    CH_LIST_ENT(6, 97, 101, 105, 109, 113, 117, 0),
   /* RTW_CHD_6G_03 */    CH_LIST_ENT(18, 121, 125, 129, 133, 137, 141, 145, 149, 153, 157, 161, 165, 169, 173, 177, 181, 185, 189, 0),
   /* RTW_CHD_6G_04 */    CH_LIST_ENT(11, 193, 197, 201, 205, 209, 213, 217, 221, 225, 229, 233, 0),
   /* RTW_CHD_6G_05 */    CH_LIST_ENT(59, 1, 5, 9, 13, 17, 21, 25, 29, 33, 37, 41, 45, 49, 53, 57, 61, 65, 69, 73, 77, 81, 85, 89, 93, 97, 101, 105, 109, 113, 117, 121, 125, 129, 133, 137, 141, 145, 149, 153, 157, 161, 165, 169, 173, 177, 181, 185, 189, 193, 197, 201, 205, 209, 213, 217, 221, 225, 229, 233, CLA_6G_B1_PASSIVE | CLA_6G_B2_PASSIVE | CLA_6G_B3_PASSIVE | CLA_6G_B4_PASSIVE),
   /* RTW_CHD_6G_06 */    CH_LIST_ENT(59, 1, 5, 9, 13, 17, 21, 25, 29, 33, 37, 41, 45, 49, 53, 57, 61, 65, 69, 73, 77, 81, 85, 89, 93, 97, 101, 105, 109, 113, 117, 121, 125, 129, 133, 137, 141, 145, 149, 153, 157, 161, 165, 169, 173, 177, 181, 185, 189, 193, 197, 201, 205, 209, 213, 217, 221, 225, 229, 233, 0),
};
 
struct chplan_6g_ent_t {
   u8 regd; /* value of enum rtw_regd */
   u8 chd;
};
 
#define CHPLAN_6G_ENT(_regd, _chd) {.regd = RTW_REGD_##_regd, .chd = RTW_CHD_6G_##_chd}
 
#define CHPLAN_6G_ENT_NOT_DEFINED CHPLAN_6G_ENT(NA, INVALID)
 
static const struct chplan_6g_ent_t rtw_chplan_6g_map[] = {
   [0x00] = CHPLAN_6G_ENT(NA   , 00),
   [0x01] = CHPLAN_6G_ENT(FCC  , 01),
   [0x02] = CHPLAN_6G_ENT(FCC  , 02),
   [0x03] = CHPLAN_6G_ENT(FCC  , 03),
   [0x04] = CHPLAN_6G_ENT(FCC  , 04),
   [0x05] = CHPLAN_6G_ENT(FCC  , 06),
   [0x06] = CHPLAN_6G_ENT(ETSI , 01),
   [0x07] = CHPLAN_6G_ENT(IC   , 06),
   [0x08] = CHPLAN_6G_ENT(KCC  , 06),
   [0x09] = CHPLAN_6G_ENT(KCC  , 01),
   [0x1B] = CHPLAN_6G_ENT(ACMA , 01),
   [0x1C] = CHPLAN_6G_ENT(MKK  , 01),
   [0x7F] = CHPLAN_6G_ENT(WW   , 05),
};
 
static const int rtw_chplan_6g_map_size = sizeof(rtw_chplan_6g_map) / sizeof(rtw_chplan_6g_map[0]);
 
static u8 rtk_regdb_get_default_regd_6g(u8 id)
{
   if (id < rtw_chplan_6g_map_size)
       return rtw_chplan_6g_map[id].regd;
   return RTW_REGD_NA;
}
 
static bool rtk_regdb_is_domain_code_6g_valid(u8 id)
{
   if (id < rtw_chplan_6g_map_size) {
       const struct chplan_6g_ent_t *chplan_map = &rtw_chplan_6g_map[id];
 
       if (chplan_map->chd != RTW_CHD_6G_INVALID)
           return true;
   }
 
   return false;
}
 
static bool rtk_regdb_domain_6g_get_ch(u8 id, u32 ch, u8 *flags)
{
   u8 index, attrib;
   u8 chd_6g;
 
   if (flags)
       *flags = 0;
 
   chd_6g = rtw_chplan_6g_map[id].chd;
 
   attrib = CH_LIST_ATTRIB(rtw_channel_def_6g[chd_6g]);
 
   for (index = 0; index < CH_LIST_LEN(rtw_channel_def_6g[chd_6g]); index++) {
       if (CH_LIST_CH(rtw_channel_def_6g[chd_6g], index) == ch) {
           if (flags) {
               if ((rtw_is_6g_band1(ch) && (attrib & CLA_6G_B1_PASSIVE)) /* band1 passive */
                   || (rtw_is_6g_band2(ch) && (attrib & CLA_6G_B2_PASSIVE)) /* band2 passive */
                   || (rtw_is_6g_band3(ch) && (attrib & CLA_6G_B3_PASSIVE)) /* band3 passive */
                   || (rtw_is_6g_band4(ch) && (attrib & CLA_6G_B4_PASSIVE)) /* band4 passive */
               )
                   *flags |= RTW_CHF_NO_IR;
           }
           return true;
       }
   }
 
   return false;
}
#endif /* CONFIG_IEEE80211_BAND_6GHZ */
 
static const struct country_chplan country_chplan_map[] = {
   COUNTRY_CHPLAN_ENT("AD", 0x3A, 0x00, DEF    , 1, 1, 1), /* Andorra */
   COUNTRY_CHPLAN_ENT("AE", 0x5E, 0x06, DEF    , 1, 1, 1), /* United Arab Emirates */
   COUNTRY_CHPLAN_ENT("AF", 0x42, 0x00, DEF    , 1, 1, 1), /* Afghanistan */
   COUNTRY_CHPLAN_ENT("AG", 0x76, 0x05, DEF    , 1, 1, 1), /* Antigua & Barbuda */
   COUNTRY_CHPLAN_ENT("AI", 0x5E, 0x06, DEF    , 1, 1, 1), /* Anguilla(UK) */
   COUNTRY_CHPLAN_ENT("AL", 0x5E, 0x00, DEF    , 1, 1, 1), /* Albania */
   COUNTRY_CHPLAN_ENT("AM", 0x5E, 0x06, DEF    , 1, 1, 1), /* Armenia */
   COUNTRY_CHPLAN_ENT("AN", 0x76, 0x00, DEF    , 1, 1, 1), /* Netherlands Antilles */
   COUNTRY_CHPLAN_ENT("AO", 0x5E, 0x00, DEF    , 1, 1, 1), /* Angola */
   COUNTRY_CHPLAN_ENT("AQ", 0x26, 0x00, DEF    , 1, 1, 1), /* Antarctica */
   COUNTRY_CHPLAN_ENT("AR", 0x4D, 0x00, DEF    , 1, 1, 1), /* Argentina */
   COUNTRY_CHPLAN_ENT("AS", 0x76, 0x00, DEF    , 1, 1, 1), /* American Samoa */
   COUNTRY_CHPLAN_ENT("AT", 0x5E, 0x06, DEF    , 1, 1, 1), /* Austria */
   COUNTRY_CHPLAN_ENT("AU", 0x03, 0x1B, DEF    , 1, 1, 1), /* Australia */
   COUNTRY_CHPLAN_ENT("AW", 0x76, 0x05, DEF    , 1, 1, 1), /* Aruba */
   COUNTRY_CHPLAN_ENT("AZ", 0x5E, 0x06, DEF    , 1, 1, 1), /* Azerbaijan */
   COUNTRY_CHPLAN_ENT("BA", 0x5E, 0x00, DEF    , 1, 1, 1), /* Bosnia & Herzegovina */
   COUNTRY_CHPLAN_ENT("BB", 0x76, 0x05, DEF    , 1, 1, 1), /* Barbados */
   COUNTRY_CHPLAN_ENT("BD", 0x5E, 0x00, DEF    , 1, 1, 1), /* Bangladesh */
   COUNTRY_CHPLAN_ENT("BE", 0x5E, 0x06, DEF    , 1, 1, 1), /* Belgium */
   COUNTRY_CHPLAN_ENT("BF", 0x5E, 0x00, DEF    , 1, 1, 1), /* Burkina Faso */
   COUNTRY_CHPLAN_ENT("BG", 0x5E, 0x06, DEF    , 1, 1, 1), /* Bulgaria */
   COUNTRY_CHPLAN_ENT("BH", 0x06, 0x06, DEF    , 1, 1, 1), /* Bahrain */
   COUNTRY_CHPLAN_ENT("BI", 0x3A, 0x06, DEF    , 1, 1, 1), /* Burundi */
   COUNTRY_CHPLAN_ENT("BJ", 0x3A, 0x00, DEF    , 1, 1, 1), /* Benin */
   COUNTRY_CHPLAN_ENT("BM", 0x76, 0x05, DEF    , 1, 1, 1), /* Bermuda (UK) */
   COUNTRY_CHPLAN_ENT("BN", 0x06, 0x00, DEF    , 1, 1, 1), /* Brunei */
   COUNTRY_CHPLAN_ENT("BO", 0x61, 0x00, DEF    , 1, 1, 1), /* Bolivia */
   COUNTRY_CHPLAN_ENT("BR", 0x62, 0x05, DEF    , 1, 1, 1), /* Brazil */
   COUNTRY_CHPLAN_ENT("BS", 0x76, 0x05, DEF    , 1, 1, 1), /* Bahamas */
   COUNTRY_CHPLAN_ENT("BT", 0x5E, 0x00, DEF    , 1, 1, 1), /* Bhutan */
   COUNTRY_CHPLAN_ENT("BV", 0x5E, 0x00, DEF    , 1, 1, 1), /* Bouvet Island (Norway) */
   COUNTRY_CHPLAN_ENT("BW", 0x5E, 0x06, DEF    , 1, 1, 1), /* Botswana */
   COUNTRY_CHPLAN_ENT("BY", 0x08, 0x00, DEF    , 0, 1, 1), /* Belarus */
   COUNTRY_CHPLAN_ENT("BZ", 0x76, 0x00, DEF    , 1, 1, 1), /* Belize */
   COUNTRY_CHPLAN_ENT("CA", 0x2B, 0x07, DEF    , 1, 1, 1), /* Canada */
   COUNTRY_CHPLAN_ENT("CC", 0x03, 0x00, DEF    , 1, 1, 1), /* Cocos (Keeling) Islands (Australia) */
   COUNTRY_CHPLAN_ENT("CD", 0x5E, 0x00, DEF    , 1, 1, 1), /* Congo, Republic of the */
   COUNTRY_CHPLAN_ENT("CF", 0x3A, 0x00, DEF    , 1, 1, 1), /* Central African Republic */
   COUNTRY_CHPLAN_ENT("CG", 0x5E, 0x00, DEF    , 1, 1, 1), /* Congo, Democratic Republic of the. Zaire */
   COUNTRY_CHPLAN_ENT("CH", 0x5E, 0x06, DEF    , 1, 1, 1), /* Switzerland */
   COUNTRY_CHPLAN_ENT("CI", 0x42, 0x00, DEF    , 1, 1, 1), /* Cote d'Ivoire */
   COUNTRY_CHPLAN_ENT("CK", 0x5E, 0x00, DEF    , 1, 1, 1), /* Cook Islands */
   COUNTRY_CHPLAN_ENT("CL", 0x76, 0x01, CHILE  , 1, 1, 1), /* Chile */
   COUNTRY_CHPLAN_ENT("CM", 0x5E, 0x00, DEF    , 1, 1, 1), /* Cameroon */
   COUNTRY_CHPLAN_ENT("CN", 0x06, 0x00, CN     , 1, 1, 1), /* China */
   COUNTRY_CHPLAN_ENT("CO", 0x76, 0x00, DEF    , 1, 1, 1), /* Colombia */
   COUNTRY_CHPLAN_ENT("CR", 0x76, 0x05, DEF    , 1, 1, 1), /* Costa Rica */
   COUNTRY_CHPLAN_ENT("CV", 0x5E, 0x00, DEF    , 1, 1, 1), /* Cape Verde */
   COUNTRY_CHPLAN_ENT("CX", 0x03, 0x00, DEF    , 1, 1, 1), /* Christmas Island (Australia) */
   COUNTRY_CHPLAN_ENT("CY", 0x5E, 0x06, DEF    , 1, 1, 1), /* Cyprus */
   COUNTRY_CHPLAN_ENT("CZ", 0x5E, 0x06, DEF    , 1, 1, 1), /* Czech Republic */
   COUNTRY_CHPLAN_ENT("DE", 0x5E, 0x06, DEF    , 1, 1, 1), /* Germany */
   COUNTRY_CHPLAN_ENT("DJ", 0x5E, 0x06, DEF    , 1, 1, 1), /* Djibouti */
   COUNTRY_CHPLAN_ENT("DK", 0x5E, 0x06, DEF    , 1, 1, 1), /* Denmark */
   COUNTRY_CHPLAN_ENT("DM", 0x76, 0x05, DEF    , 1, 1, 1), /* Dominica */
   COUNTRY_CHPLAN_ENT("DO", 0x76, 0x00, DEF    , 1, 1, 1), /* Dominican Republic */
   COUNTRY_CHPLAN_ENT("DZ", 0x00, 0x06, DEF    , 1, 1, 1), /* Algeria */
   COUNTRY_CHPLAN_ENT("EC", 0x76, 0x00, DEF    , 1, 1, 1), /* Ecuador */
   COUNTRY_CHPLAN_ENT("EE", 0x5E, 0x06, DEF    , 1, 1, 1), /* Estonia */
   COUNTRY_CHPLAN_ENT("EG", 0x3C, 0x00, DEF    , 1, 1, 1), /* Egypt */
   COUNTRY_CHPLAN_ENT("EH", 0x3C, 0x00, DEF    , 1, 1, 1), /* Western Sahara */
   COUNTRY_CHPLAN_ENT("ER", 0x3A, 0x00, DEF    , 1, 1, 1), /* Eritrea */
   COUNTRY_CHPLAN_ENT("ES", 0x5E, 0x06, DEF    , 1, 1, 1), /* Spain, Canary Islands, Ceuta, Melilla */
   COUNTRY_CHPLAN_ENT("ET", 0x3A, 0x00, DEF    , 1, 1, 1), /* Ethiopia */
   COUNTRY_CHPLAN_ENT("FI", 0x5E, 0x06, DEF    , 1, 1, 1), /* Finland */
   COUNTRY_CHPLAN_ENT("FJ", 0x76, 0x00, DEF    , 1, 1, 1), /* Fiji */
   COUNTRY_CHPLAN_ENT("FK", 0x5E, 0x00, DEF    , 1, 1, 1), /* Falkland Islands (Islas Malvinas) (UK) */
   COUNTRY_CHPLAN_ENT("FM", 0x76, 0x00, DEF    , 1, 1, 1), /* Micronesia, Federated States of (USA) */
   COUNTRY_CHPLAN_ENT("FO", 0x5E, 0x00, DEF    , 1, 1, 1), /* Faroe Islands (Denmark) */
   COUNTRY_CHPLAN_ENT("FR", 0x5E, 0x06, DEF    , 1, 1, 1), /* France */
   COUNTRY_CHPLAN_ENT("GA", 0x5E, 0x00, DEF    , 1, 1, 1), /* Gabon */
   COUNTRY_CHPLAN_ENT("GB", 0x0B, 0x06, UK     , 1, 1, 1), /* Great Britain (United Kingdom; England) */
   COUNTRY_CHPLAN_ENT("GD", 0x76, 0x05, DEF    , 1, 1, 1), /* Grenada */
   COUNTRY_CHPLAN_ENT("GE", 0x5E, 0x00, DEF    , 1, 1, 1), /* Georgia */
   COUNTRY_CHPLAN_ENT("GF", 0x3A, 0x00, DEF    , 1, 1, 1), /* French Guiana */
   COUNTRY_CHPLAN_ENT("GG", 0x5E, 0x00, DEF    , 1, 1, 1), /* Guernsey (UK) */
   COUNTRY_CHPLAN_ENT("GH", 0x5E, 0x06, DEF    , 1, 1, 1), /* Ghana */
   COUNTRY_CHPLAN_ENT("GI", 0x5E, 0x00, DEF    , 1, 1, 1), /* Gibraltar (UK) */
   COUNTRY_CHPLAN_ENT("GL", 0x5E, 0x00, DEF    , 1, 1, 1), /* Greenland (Denmark) */
   COUNTRY_CHPLAN_ENT("GM", 0x5E, 0x06, DEF    , 1, 1, 1), /* Gambia */
   COUNTRY_CHPLAN_ENT("GN", 0x5E, 0x00, DEF    , 1, 1, 1), /* Guinea */
   COUNTRY_CHPLAN_ENT("GP", 0x5E, 0x00, DEF    , 1, 1, 1), /* Guadeloupe (France) */
   COUNTRY_CHPLAN_ENT("GQ", 0x5E, 0x06, DEF    , 1, 1, 1), /* Equatorial Guinea */
   COUNTRY_CHPLAN_ENT("GR", 0x5E, 0x06, DEF    , 1, 1, 1), /* Greece */
   COUNTRY_CHPLAN_ENT("GS", 0x3A, 0x00, DEF    , 1, 1, 1), /* South Georgia and the Sandwich Islands (UK) */
   COUNTRY_CHPLAN_ENT("GT", 0x76, 0x05, DEF    , 1, 1, 1), /* Guatemala */
   COUNTRY_CHPLAN_ENT("GU", 0x76, 0x00, DEF    , 1, 1, 1), /* Guam (USA) */
   COUNTRY_CHPLAN_ENT("GW", 0x5E, 0x00, DEF    , 1, 1, 1), /* Guinea-Bissau */
   COUNTRY_CHPLAN_ENT("GY", 0x76, 0x05, DEF    , 1, 1, 1), /* Guyana */
   COUNTRY_CHPLAN_ENT("HK", 0x5E, 0x06, DEF    , 1, 1, 1), /* Hong Kong */
   COUNTRY_CHPLAN_ENT("HM", 0x03, 0x00, DEF    , 1, 1, 1), /* Heard and McDonald Islands (Australia) */
   COUNTRY_CHPLAN_ENT("HN", 0x76, 0x05, DEF    , 1, 1, 1), /* Honduras */
   COUNTRY_CHPLAN_ENT("HR", 0x5E, 0x06, DEF    , 1, 1, 1), /* Croatia */
   COUNTRY_CHPLAN_ENT("HT", 0x76, 0x00, DEF    , 0, 1, 1), /* Haiti */
   COUNTRY_CHPLAN_ENT("HU", 0x5E, 0x06, DEF    , 1, 1, 1), /* Hungary */
   COUNTRY_CHPLAN_ENT("ID", 0x5D, 0x00, DEF    , 1, 1, 1), /* Indonesia */
   COUNTRY_CHPLAN_ENT("IE", 0x5E, 0x06, DEF    , 1, 1, 1), /* Ireland */
   COUNTRY_CHPLAN_ENT("IL", 0x5E, 0x06, DEF    , 1, 1, 1), /* Israel */
   COUNTRY_CHPLAN_ENT("IM", 0x5E, 0x00, DEF    , 1, 1, 1), /* Isle of Man (UK) */
   COUNTRY_CHPLAN_ENT("IN", 0x5E, 0x00, DEF    , 1, 1, 1), /* India */
   COUNTRY_CHPLAN_ENT("IO", 0x3A, 0x00, DEF    , 1, 1, 1), /* British Indian Ocean Territory (UK) */
   COUNTRY_CHPLAN_ENT("IQ", 0x05, 0x00, DEF    , 1, 1, 1), /* Iraq */
   COUNTRY_CHPLAN_ENT("IR", 0x3A, 0x00, DEF    , 0, 0, 0), /* Iran */
   COUNTRY_CHPLAN_ENT("IS", 0x5E, 0x06, DEF    , 1, 1, 1), /* Iceland */
   COUNTRY_CHPLAN_ENT("IT", 0x5E, 0x06, DEF    , 1, 1, 1), /* Italy */
   COUNTRY_CHPLAN_ENT("JE", 0x5E, 0x00, DEF    , 1, 1, 1), /* Jersey (UK) */
   COUNTRY_CHPLAN_ENT("JM", 0x76, 0x05, DEF    , 1, 1, 1), /* Jamaica */
   COUNTRY_CHPLAN_ENT("JO", 0x05, 0x06, DEF    , 1, 1, 1), /* Jordan */
   COUNTRY_CHPLAN_ENT("JP", 0x7D, 0x1C, DEF    , 1, 1, 1), /* Japan- Telec */
   COUNTRY_CHPLAN_ENT("KE", 0x5E, 0x06, DEF    , 1, 1, 1), /* Kenya */
   COUNTRY_CHPLAN_ENT("KG", 0x5E, 0x06, DEF    , 1, 1, 1), /* Kyrgyzstan */
   COUNTRY_CHPLAN_ENT("KH", 0x5E, 0x00, DEF    , 1, 1, 1), /* Cambodia */
   COUNTRY_CHPLAN_ENT("KI", 0x5E, 0x00, DEF    , 1, 1, 1), /* Kiribati */
   COUNTRY_CHPLAN_ENT("KM", 0x5E, 0x06, DEF    , 1, 1, 1), /* Comoros */
   COUNTRY_CHPLAN_ENT("KN", 0x76, 0x05, DEF    , 1, 1, 1), /* Saint Kitts and Nevis */
   COUNTRY_CHPLAN_ENT("KR", 0x4B, 0x08, DEF    , 1, 1, 1), /* South Korea */
   COUNTRY_CHPLAN_ENT("KW", 0x5E, 0x00, DEF    , 1, 1, 1), /* Kuwait */
   COUNTRY_CHPLAN_ENT("KY", 0x76, 0x05, DEF    , 1, 1, 1), /* Cayman Islands (UK) */
   COUNTRY_CHPLAN_ENT("KZ", 0x5E, 0x00, DEF    , 1, 1, 1), /* Kazakhstan */
   COUNTRY_CHPLAN_ENT("LA", 0x5E, 0x00, DEF    , 1, 1, 1), /* Laos */
   COUNTRY_CHPLAN_ENT("LB", 0x5E, 0x00, DEF    , 1, 1, 1), /* Lebanon */
   COUNTRY_CHPLAN_ENT("LC", 0x76, 0x05, DEF    , 1, 1, 1), /* Saint Lucia */
   COUNTRY_CHPLAN_ENT("LI", 0x5E, 0x06, DEF    , 1, 1, 1), /* Liechtenstein */
   COUNTRY_CHPLAN_ENT("LK", 0x5E, 0x00, DEF    , 1, 1, 1), /* Sri Lanka */
   COUNTRY_CHPLAN_ENT("LR", 0x5E, 0x00, DEF    , 1, 1, 1), /* Liberia */
   COUNTRY_CHPLAN_ENT("LS", 0x5E, 0x00, DEF    , 1, 1, 1), /* Lesotho */
   COUNTRY_CHPLAN_ENT("LT", 0x5E, 0x06, DEF    , 1, 1, 1), /* Lithuania */
   COUNTRY_CHPLAN_ENT("LU", 0x5E, 0x06, DEF    , 1, 1, 1), /* Luxembourg */
   COUNTRY_CHPLAN_ENT("LV", 0x5E, 0x06, DEF    , 1, 1, 1), /* Latvia */
   COUNTRY_CHPLAN_ENT("LY", 0x5E, 0x00, DEF    , 1, 1, 1), /* Libya */
   COUNTRY_CHPLAN_ENT("MA", 0x3C, 0x06, DEF    , 1, 1, 1), /* Morocco */
   COUNTRY_CHPLAN_ENT("MC", 0x5E, 0x06, DEF    , 1, 1, 1), /* Monaco */
   COUNTRY_CHPLAN_ENT("MD", 0x5E, 0x06, DEF    , 1, 1, 1), /* Moldova */
   COUNTRY_CHPLAN_ENT("ME", 0x3A, 0x00, DEF    , 1, 1, 1), /* Montenegro */
   COUNTRY_CHPLAN_ENT("MF", 0x76, 0x00, DEF    , 1, 1, 1), /* Saint Martin */
   COUNTRY_CHPLAN_ENT("MG", 0x5E, 0x06, DEF    , 1, 1, 1), /* Madagascar */
   COUNTRY_CHPLAN_ENT("MH", 0x76, 0x00, DEF    , 1, 1, 1), /* Marshall Islands (USA) */
   COUNTRY_CHPLAN_ENT("MK", 0x3A, 0x00, DEF    , 1, 1, 1), /* Republic of Macedonia (FYROM) */
   COUNTRY_CHPLAN_ENT("ML", 0x5E, 0x00, DEF    , 1, 1, 1), /* Mali */
   COUNTRY_CHPLAN_ENT("MM", 0x3A, 0x00, DEF    , 1, 1, 1), /* Burma (Myanmar) */
   COUNTRY_CHPLAN_ENT("MN", 0x5E, 0x00, DEF    , 1, 1, 1), /* Mongolia */
   COUNTRY_CHPLAN_ENT("MO", 0x5E, 0x00, DEF    , 1, 1, 1), /* Macau */
   COUNTRY_CHPLAN_ENT("MP", 0x76, 0x00, DEF    , 1, 1, 1), /* Northern Mariana Islands (USA) */
   COUNTRY_CHPLAN_ENT("MQ", 0x3A, 0x00, DEF    , 1, 1, 1), /* Martinique (France) */
   COUNTRY_CHPLAN_ENT("MR", 0x5E, 0x00, DEF    , 1, 1, 1), /* Mauritania */
   COUNTRY_CHPLAN_ENT("MS", 0x3A, 0x00, DEF    , 1, 1, 1), /* Montserrat (UK) */
   COUNTRY_CHPLAN_ENT("MT", 0x5E, 0x06, DEF    , 1, 1, 1), /* Malta */
   COUNTRY_CHPLAN_ENT("MU", 0x5E, 0x06, DEF    , 1, 1, 1), /* Mauritius */
   COUNTRY_CHPLAN_ENT("MV", 0x3C, 0x00, DEF    , 1, 1, 1), /* Maldives */
   COUNTRY_CHPLAN_ENT("MW", 0x5E, 0x00, DEF    , 1, 1, 1), /* Malawi */
   COUNTRY_CHPLAN_ENT("MX", 0x4D, 0x00, DEF    , 1, 1, 1), /* Mexico */
   COUNTRY_CHPLAN_ENT("MY", 0x07, 0x06, DEF    , 1, 1, 1), /* Malaysia */
   COUNTRY_CHPLAN_ENT("MZ", 0x5E, 0x00, DEF    , 1, 1, 1), /* Mozambique */
   COUNTRY_CHPLAN_ENT("NA", 0x5E, 0x00, DEF    , 1, 1, 1), /* Namibia */
   COUNTRY_CHPLAN_ENT("NC", 0x3A, 0x00, DEF    , 1, 1, 1), /* New Caledonia */
   COUNTRY_CHPLAN_ENT("NE", 0x5E, 0x00, DEF    , 1, 1, 1), /* Niger */
   COUNTRY_CHPLAN_ENT("NF", 0x03, 0x00, DEF    , 1, 1, 1), /* Norfolk Island (Australia) */
   COUNTRY_CHPLAN_ENT("NG", 0x75, 0x00, DEF    , 1, 1, 1), /* Nigeria */
   COUNTRY_CHPLAN_ENT("NI", 0x76, 0x00, DEF    , 1, 1, 1), /* Nicaragua */
   COUNTRY_CHPLAN_ENT("NL", 0x5E, 0x06, DEF    , 1, 1, 1), /* Netherlands */
   COUNTRY_CHPLAN_ENT("NO", 0x5E, 0x06, DEF    , 1, 1, 1), /* Norway */
   COUNTRY_CHPLAN_ENT("NP", 0x06, 0x00, DEF    , 1, 1, 1), /* Nepal */
   COUNTRY_CHPLAN_ENT("NR", 0x5E, 0x00, DEF    , 1, 1, 1), /* Nauru */
   COUNTRY_CHPLAN_ENT("NU", 0x03, 0x00, DEF    , 1, 1, 1), /* Niue */
   COUNTRY_CHPLAN_ENT("NZ", 0x03, 0x1B, DEF    , 1, 1, 1), /* New Zealand */
   COUNTRY_CHPLAN_ENT("OM", 0x5E, 0x00, DEF    , 1, 1, 1), /* Oman */
   COUNTRY_CHPLAN_ENT("PA", 0x76, 0x00, DEF    , 1, 1, 1), /* Panama */
   COUNTRY_CHPLAN_ENT("PE", 0x76, 0x05, DEF    , 1, 1, 1), /* Peru */
   COUNTRY_CHPLAN_ENT("PF", 0x3A, 0x00, DEF    , 1, 1, 1), /* French Polynesia (France) */
   COUNTRY_CHPLAN_ENT("PG", 0x5E, 0x00, DEF    , 1, 1, 1), /* Papua New Guinea */
   COUNTRY_CHPLAN_ENT("PH", 0x5E, 0x00, DEF    , 1, 1, 1), /* Philippines */
   COUNTRY_CHPLAN_ENT("PK", 0x5E, 0x00, DEF    , 1, 1, 1), /* Pakistan */
   COUNTRY_CHPLAN_ENT("PL", 0x5E, 0x06, DEF    , 1, 1, 1), /* Poland */
   COUNTRY_CHPLAN_ENT("PM", 0x5E, 0x00, DEF    , 1, 1, 1), /* Saint Pierre and Miquelon (France) */
   COUNTRY_CHPLAN_ENT("PR", 0x76, 0x00, DEF    , 1, 1, 1), /* Puerto Rico */
   COUNTRY_CHPLAN_ENT("PS", 0x5E, 0x00, DEF    , 1, 1, 1), /* Palestine */
   COUNTRY_CHPLAN_ENT("PT", 0x5E, 0x06, DEF    , 1, 1, 1), /* Portugal */
   COUNTRY_CHPLAN_ENT("PW", 0x76, 0x00, DEF    , 1, 1, 1), /* Palau */
   COUNTRY_CHPLAN_ENT("PY", 0x76, 0x00, DEF    , 1, 1, 1), /* Paraguay */
   COUNTRY_CHPLAN_ENT("QA", 0x5E, 0x06, QATAR  , 1, 1, 1), /* Qatar */
   COUNTRY_CHPLAN_ENT("RE", 0x5E, 0x00, DEF    , 1, 1, 1), /* Reunion (France) */
   COUNTRY_CHPLAN_ENT("RO", 0x5E, 0x06, DEF    , 1, 1, 1), /* Romania */
   COUNTRY_CHPLAN_ENT("RS", 0x5E, 0x06, DEF    , 1, 1, 1), /* Serbia */
   COUNTRY_CHPLAN_ENT("RU", 0x09, 0x00, DEF    , 1, 1, 1), /* Russia(fac/gost), Kaliningrad */
   COUNTRY_CHPLAN_ENT("RW", 0x5E, 0x00, DEF    , 1, 1, 1), /* Rwanda */
   COUNTRY_CHPLAN_ENT("SA", 0x5E, 0x06, DEF    , 1, 1, 1), /* Saudi Arabia */
   COUNTRY_CHPLAN_ENT("SB", 0x3A, 0x00, DEF    , 1, 1, 1), /* Solomon Islands */
   COUNTRY_CHPLAN_ENT("SC", 0x76, 0x00, DEF    , 1, 1, 1), /* Seychelles */
   COUNTRY_CHPLAN_ENT("SE", 0x5E, 0x06, DEF    , 1, 1, 1), /* Sweden */
   COUNTRY_CHPLAN_ENT("SG", 0x5E, 0x00, DEF    , 1, 1, 1), /* Singapore */
   COUNTRY_CHPLAN_ENT("SH", 0x5E, 0x00, DEF    , 1, 1, 1), /* Saint Helena (UK) */
   COUNTRY_CHPLAN_ENT("SI", 0x5E, 0x06, DEF    , 1, 1, 1), /* Slovenia */
   COUNTRY_CHPLAN_ENT("SJ", 0x5E, 0x00, DEF    , 1, 1, 1), /* Svalbard (Norway) */
   COUNTRY_CHPLAN_ENT("SK", 0x5E, 0x06, DEF    , 1, 1, 1), /* Slovakia */
   COUNTRY_CHPLAN_ENT("SL", 0x5E, 0x06, DEF    , 1, 1, 1), /* Sierra Leone */
   COUNTRY_CHPLAN_ENT("SM", 0x3A, 0x00, DEF    , 1, 1, 1), /* San Marino */
   COUNTRY_CHPLAN_ENT("SN", 0x3A, 0x00, DEF    , 1, 1, 1), /* Senegal */
   COUNTRY_CHPLAN_ENT("SO", 0x3A, 0x00, DEF    , 1, 1, 1), /* Somalia */
   COUNTRY_CHPLAN_ENT("SR", 0x74, 0x05, DEF    , 1, 1, 1), /* Suriname */
   COUNTRY_CHPLAN_ENT("ST", 0x5E, 0x00, DEF    , 1, 1, 1), /* Sao Tome and Principe */
   COUNTRY_CHPLAN_ENT("SV", 0x76, 0x05, DEF    , 1, 1, 1), /* El Salvador */
   COUNTRY_CHPLAN_ENT("SX", 0x76, 0x00, DEF    , 1, 1, 1), /* Sint Marteen */
   COUNTRY_CHPLAN_ENT("SZ", 0x5E, 0x00, DEF    , 1, 1, 1), /* Swaziland */
   COUNTRY_CHPLAN_ENT("TC", 0x3A, 0x00, DEF    , 1, 1, 1), /* Turks and Caicos Islands (UK) */
   COUNTRY_CHPLAN_ENT("TD", 0x3A, 0x06, DEF    , 1, 1, 1), /* Chad */
   COUNTRY_CHPLAN_ENT("TF", 0x3A, 0x00, DEF    , 1, 1, 1), /* French Southern and Antarctic Lands (FR Southern Territories) */
   COUNTRY_CHPLAN_ENT("TG", 0x5E, 0x06, DEF    , 1, 1, 1), /* Togo */
   COUNTRY_CHPLAN_ENT("TH", 0x5E, 0x00, DEF    , 1, 1, 1), /* Thailand */
   COUNTRY_CHPLAN_ENT("TJ", 0x5E, 0x06, DEF    , 1, 1, 1), /* Tajikistan */
   COUNTRY_CHPLAN_ENT("TK", 0x03, 0x00, DEF    , 1, 1, 1), /* Tokelau */
   COUNTRY_CHPLAN_ENT("TM", 0x3A, 0x00, DEF    , 1, 1, 1), /* Turkmenistan */
   COUNTRY_CHPLAN_ENT("TN", 0x04, 0x00, DEF    , 1, 1, 1), /* Tunisia */
   COUNTRY_CHPLAN_ENT("TO", 0x3A, 0x00, DEF    , 1, 1, 1), /* Tonga */
   COUNTRY_CHPLAN_ENT("TR", 0x5E, 0x06, DEF    , 1, 1, 1), /* Turkey, Northern Cyprus */
   COUNTRY_CHPLAN_ENT("TT", 0x76, 0x00, DEF    , 1, 1, 1), /* Trinidad & Tobago */
   COUNTRY_CHPLAN_ENT("TV", 0x21, 0x00, DEF    , 0, 0, 0), /* Tuvalu */
   COUNTRY_CHPLAN_ENT("TW", 0x76, 0x00, DEF    , 1, 1, 1), /* Taiwan */
   COUNTRY_CHPLAN_ENT("TZ", 0x5E, 0x00, DEF    , 1, 1, 1), /* Tanzania */
   COUNTRY_CHPLAN_ENT("UA", 0x5E, 0x00, UKRAINE, 1, 1, 1), /* Ukraine */
   COUNTRY_CHPLAN_ENT("UG", 0x3A, 0x00, DEF    , 1, 1, 1), /* Uganda */
   COUNTRY_CHPLAN_ENT("US", 0x1B, 0x05, DEF    , 1, 1, 1), /* United States of America (USA) */
   COUNTRY_CHPLAN_ENT("UY", 0x30, 0x00, DEF    , 1, 1, 1), /* Uruguay */
   COUNTRY_CHPLAN_ENT("UZ", 0x3A, 0x06, DEF    , 1, 1, 1), /* Uzbekistan */
   COUNTRY_CHPLAN_ENT("VA", 0x5E, 0x00, DEF    , 1, 1, 1), /* Holy See (Vatican City) */
   COUNTRY_CHPLAN_ENT("VC", 0x76, 0x00, DEF    , 1, 1, 1), /* Saint Vincent and the Grenadines */
   COUNTRY_CHPLAN_ENT("VE", 0x30, 0x00, DEF    , 1, 1, 1), /* Venezuela */
   COUNTRY_CHPLAN_ENT("VG", 0x76, 0x05, DEF    , 1, 1, 1), /* British Virgin Islands (UK) */
   COUNTRY_CHPLAN_ENT("VI", 0x76, 0x00, DEF    , 1, 1, 1), /* United States Virgin Islands (USA) */
   COUNTRY_CHPLAN_ENT("VN", 0x5E, 0x00, DEF    , 1, 1, 1), /* Vietnam */
   COUNTRY_CHPLAN_ENT("VU", 0x26, 0x00, DEF    , 1, 1, 1), /* Vanuatu */
   COUNTRY_CHPLAN_ENT("WF", 0x3A, 0x00, DEF    , 1, 1, 1), /* Wallis and Futuna (France) */
   COUNTRY_CHPLAN_ENT("WS", 0x76, 0x00, DEF    , 1, 1, 1), /* Samoa */
   COUNTRY_CHPLAN_ENT("XK", 0x5E, 0x00, DEF    , 1, 1, 1), /* Kosovo */
   COUNTRY_CHPLAN_ENT("YE", 0x3A, 0x00, DEF    , 1, 1, 1), /* Yemen */
   COUNTRY_CHPLAN_ENT("YT", 0x5E, 0x00, DEF    , 1, 1, 1), /* Mayotte (France) */
   COUNTRY_CHPLAN_ENT("ZA", 0x5E, 0x00, DEF    , 1, 1, 1), /* South Africa */
   COUNTRY_CHPLAN_ENT("ZM", 0x5E, 0x00, DEF    , 1, 1, 1), /* Zambia */
   COUNTRY_CHPLAN_ENT("ZW", 0x5E, 0x00, DEF    , 1, 1, 1), /* Zimbabwe */
};
 
static bool rtk_regdb_get_chplan_from_alpha2(const char *alpha2, struct country_chplan *ent)
{
   const struct country_chplan *map = country_chplan_map;
   u16 map_sz = sizeof(country_chplan_map) / sizeof(struct country_chplan);
   int i;
 
   for (i = 0; i < map_sz; i++) {
       if (strncmp(alpha2, map[i].alpha2, 2) == 0) {
           if (ent)
               _rtw_memcpy(ent, &map[i], sizeof(*ent));
           return true;
       }
   }
   return false;
}
 
#ifdef CONFIG_RTW_DEBUG
static void rtk_regdb_dump_chplan_test(void *sel)
{
   int i, j;
 
   /* check 2G CHD redundent */
   for (i = RTW_CHD_2G_00; i < RTW_CHD_2G_MAX; i++) {
       for (j = RTW_CHD_2G_00; j < i; j++) {
           if (CH_LIST_LEN(rtw_channel_def_2g[i]) == CH_LIST_LEN(rtw_channel_def_2g[j])
               && _rtw_memcmp(&CH_LIST_CH(rtw_channel_def_2g[i], 0), &CH_LIST_CH(rtw_channel_def_2g[j], 0), CH_LIST_LEN(rtw_channel_def_2g[i]) + 1) == _TRUE)
               RTW_PRINT_SEL(sel, "2G chd:%u and %u is the same\n", i, j);
       }
   }
 
   /* check 2G CHD invalid channel */
   for (i = RTW_CHD_2G_00; i < RTW_CHD_2G_MAX; i++) {
       for (j = 0; j < CH_LIST_LEN(rtw_channel_def_2g[i]); j++) {
           if (rtw_bch2freq(BAND_ON_24G, CH_LIST_CH(rtw_channel_def_2g[i], j)) == 0)
               RTW_PRINT_SEL(sel, "2G invalid ch:%u at (%d,%d)\n", CH_LIST_CH(rtw_channel_def_2g[i], j), i, j);
       }
   }
 
#if CONFIG_IEEE80211_BAND_5GHZ
   /* check 5G CHD redundent */
   for (i = RTW_CHD_5G_00; i < RTW_CHD_5G_MAX; i++) {
       for (j = RTW_CHD_5G_00; j < i; j++) {
           if (CH_LIST_LEN(rtw_channel_def_5g[i]) == CH_LIST_LEN(rtw_channel_def_5g[j])
               && _rtw_memcmp(&CH_LIST_CH(rtw_channel_def_5g[i], 0), &CH_LIST_CH(rtw_channel_def_5g[j], 0), CH_LIST_LEN(rtw_channel_def_5g[i]) + 1) == _TRUE)
               RTW_PRINT_SEL(sel, "5G chd:%u and %u is the same\n", i, j);
       }
   }
 
   /* check 5G CHD invalid channel */
   for (i = RTW_CHD_5G_00; i < RTW_CHD_5G_MAX; i++) {
       for (j = 0; j < CH_LIST_LEN(rtw_channel_def_5g[i]); j++) {
           if (rtw_bch2freq(BAND_ON_5G, CH_LIST_CH(rtw_channel_def_5g[i], j)) == 0)
               RTW_PRINT_SEL(sel, "5G invalid ch:%u at (%d,%d)\n", CH_LIST_CH(rtw_channel_def_5g[i], j), i, j);
       }
   }
#endif
 
#if CONFIG_IEEE80211_BAND_6GHZ
   /* check 6G CHD redundent */
   for (i = RTW_CHD_6G_00; i < RTW_CHD_6G_MAX; i++) {
       for (j = RTW_CHD_6G_00; j < i; j++) {
           if (CH_LIST_LEN(rtw_channel_def_6g[i]) == CH_LIST_LEN(rtw_channel_def_6g[j])
               && _rtw_memcmp(&CH_LIST_CH(rtw_channel_def_6g[i], 0), &CH_LIST_CH(rtw_channel_def_6g[j], 0), CH_LIST_LEN(rtw_channel_def_6g[i]) + 1) == _TRUE)
               RTW_PRINT_SEL(sel, "6G chd:%u and %u is the same\n", i, j);
       }
   }
 
   /* check 6G CHD invalid channel */
   for (i = RTW_CHD_6G_00; i < RTW_CHD_6G_MAX; i++) {
       for (j = 0; j < CH_LIST_LEN(rtw_channel_def_6g[i]); j++) {
           if (rtw_bch2freq(BAND_ON_6G, CH_LIST_CH(rtw_channel_def_6g[i], j)) == 0)
               RTW_PRINT_SEL(sel, "6G invalid ch:%u at (%d,%d)\n", CH_LIST_CH(rtw_channel_def_6g[i], j), i, j);
       }
   }
#endif
 
   /* check chplan 2G_5G redundent */
   for (i = 0; i < RTW_ChannelPlanMap_size; i++) {
       if (!rtw_is_channel_plan_valid(i))
           continue;
       for (j = 0; j < i; j++) {
           if (!rtw_is_channel_plan_valid(j))
               continue;
           if (_rtw_memcmp(&RTW_ChannelPlanMap[i], &RTW_ChannelPlanMap[j], sizeof(RTW_ChannelPlanMap[i])) == _TRUE)
               RTW_PRINT_SEL(sel, "channel plan 0x%02x and 0x%02x is the same\n", i, j);
       }
   }
 
#if CONFIG_IEEE80211_BAND_6GHZ
   /* check chplan 6G redundent */
   for (i = 0; i < rtw_chplan_6g_map_size; i++) {
       if (!rtw_is_channel_plan_6g_valid(i))
           continue;
       for (j = 0; j < i; j++) {
           if (!rtw_is_channel_plan_6g_valid(j))
               continue;
           if (_rtw_memcmp(&rtw_chplan_6g_map[i], &rtw_chplan_6g_map[j], sizeof(rtw_chplan_6g_map[i])) == _TRUE)
               RTW_PRINT_SEL(sel, "channel plan 6g 0x%02x and 0x%02x is the same\n", i, j);
       }
   }
#endif
 
 
   /* check country invalid chplan/chplan_6g */
{
   struct country_chplan ent;
   u8 code[2];
 
   for (code[0] = 'A'; code[0] <= 'Z'; code[0]++) {
       for (code[1] = 'A'; code[1] <= 'Z'; code[1]++) {
           if (!rtw_get_chplan_from_country(code, &ent))
               continue;
           if (!rtw_is_channel_plan_valid(ent.domain_code))
               RTW_PRINT_SEL(sel, "country \"%c%c\" has invalid domain_code:0x%02X\n", code[0], code[1], ent.domain_code);
           #if CONFIG_IEEE80211_BAND_6GHZ
           if (!rtw_is_channel_plan_6g_valid(ent.domain_code_6g))
               RTW_PRINT_SEL(sel, "country \"%c%c\" has invalid domain_code_6g:0x%02X\n", code[0], code[1], ent.domain_code_6g);
           #endif
       }
   }
}
}
#endif /* CONFIG_RTW_DEBUG */
 
static void rtk_regdb_get_ver_str(char *buf, size_t buf_len)
{
   snprintf(buf, buf_len, "%s%s-%s%s", RTW_DOMAIN_MAP_VER, RTW_DOMAIN_MAP_M_VER, RTW_COUNTRY_MAP_VER, RTW_COUNTRY_MAP_M_VER);
}
 
struct rtw_regdb_ops regdb_ops = {
   .get_default_regd_2g = rtk_regdb_get_default_regd_2g,
#if CONFIG_IEEE80211_BAND_5GHZ
   .get_default_regd_5g = rtk_regdb_get_default_regd_5g,
#endif
   .is_domain_code_valid = rtk_regdb_is_domain_code_valid,
   .domain_get_ch = rtk_regdb_domain_get_ch,
 
#if CONFIG_IEEE80211_BAND_6GHZ
   .get_default_regd_6g = rtk_regdb_get_default_regd_6g,
   .is_domain_code_6g_valid = rtk_regdb_is_domain_code_6g_valid,
   .domain_6g_get_ch = rtk_regdb_domain_6g_get_ch,
#endif
 
   .get_chplan_from_alpha2 = rtk_regdb_get_chplan_from_alpha2,
 
#ifdef CONFIG_RTW_DEBUG
   .dump_chplan_test = rtk_regdb_dump_chplan_test,
#endif
   .get_ver_str = rtk_regdb_get_ver_str,
};