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
| /******************************************************************************
| *
| * Copyright(c) 2007 - 2012 Realtek Corporation. All rights reserved.
| *
| * 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.
| *
| * You should have received a copy of the GNU General Public License along with
| * this program; if not, write to the Free Software Foundation, Inc.,
| * 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
| *
| *
| ******************************************************************************/
|
|
| #ifndef __RT_CHANNELPLAN_H__
| #define __RT_CHANNELPLAN_H__
|
| typedef enum _RT_CHANNEL_DOMAIN_NEW
| {
|
| //===== Add new channel plan above this line ===============//
|
| // For new architecture we define different 2G/5G CH area for all country.
| // 2.4 G only
| RT_CHANNEL_DOMAIN_2G_WORLD_5G_NULL = 0x20,
| RT_CHANNEL_DOMAIN_2G_ETSI1_5G_NULL = 0x21,
| RT_CHANNEL_DOMAIN_2G_FCC1_5G_NULL = 0x22,
| RT_CHANNEL_DOMAIN_2G_MKK1_5G_NULL = 0x23,
| RT_CHANNEL_DOMAIN_2G_ETSI2_5G_NULL = 0x24,
| // 2.4 G + 5G type 1
| RT_CHANNEL_DOMAIN_2G_FCC1_5G_FCC1 = 0x25,
| RT_CHANNEL_DOMAIN_2G_WORLD_5G_ETSI1 = 0x26,
| //RT_CHANNEL_DOMAIN_2G_WORLD_5G_ETSI1 = 0x27,
| // .....
|
| RT_CHANNEL_DOMAIN_MAX_NEW,
|
| }RT_CHANNEL_DOMAIN_NEW, *PRT_CHANNEL_DOMAIN_NEW;
|
|
| #if 0
| #define DOMAIN_CODE_2G_WORLD \
| {1,2,3,4,5,6,7,8,9,10,11,12,13}, 13
| #define DOMAIN_CODE_2G_ETSI1 \
| {1,2,3,4,5,6,7,8,9,10,11,12,13}, 13
| #define DOMAIN_CODE_2G_ETSI2 \
| {1,2,3,4,5,6,7,8,9,10,11}, 11
| #define DOMAIN_CODE_2G_FCC1 \
| {1,2,3,4,5,6,7,8,9,10,11,12,13,14}, 14
| #define DOMAIN_CODE_2G_MKK1 \
| {10,11,12,13}, 4
|
| #define DOMAIN_CODE_5G_ETSI1 \
| {36,40,44,48,52,56,60,64,100,104,108,112,116,120,124,128,132,136,140}, 19
| #define DOMAIN_CODE_5G_ETSI2 \
| {36,40,44,48,52,56,60,64,100,104,108,112,116,120,124,128,132,136,140,149,153,157,161,165}, 24
| #define DOMAIN_CODE_5G_ETSI3 \
| {36,40,44,48,52,56,60,64,100,104,108,112,116,120,124,128,132,149,153,157,161,165}, 22
| #define DOMAIN_CODE_5G_FCC1 \
| {36,40,44,48,52,56,60,64,100,104,108,112,116,120,124,128,132,136,140,149,153,157,161,165}, 24
| #define DOMAIN_CODE_5G_FCC2 \
| {36,40,44,48,149,153,157,161,165}, 9
| #define DOMAIN_CODE_5G_FCC3 \
| {36,40,44,48,52,56,60,64,149,153,157,161,165}, 13
| #define DOMAIN_CODE_5G_FCC4 \
| {36,40,44,48,52,56,60,64,149,153,157,161}, 12
| #define DOMAIN_CODE_5G_FCC5 \
| {149,153,157,161,165}, 5
| #define DOMAIN_CODE_5G_FCC6 \
| {36,40,44,48,52,56,60,64}, 8
| #define DOMAIN_CODE_5G_FCC7 \
| {36,40,44,48,52,56,60,64,100,104,108,112,116,136,140,149,153,157,161,165}, 20
| #define DOMAIN_CODE_5G_IC1 \
| {36,40,44,48,52,56,60,64,100,104,108,112,116,136,140,149,153,157,161,165}, 20
| #define DOMAIN_CODE_5G_KCC1 \
| {36,40,44,48,52,56,60,64,100,104,108,112,116,120,124,149,153,157,161,165}, 20
| #define DOMAIN_CODE_5G_MKK1 \
| {36,40,44,48,52,56,60,64,100,104,108,112,116,120,124,128,132,136,140}, 19
| #define DOMAIN_CODE_5G_MKK2 \
| {36,40,44,48,52,56,60,64}, 8
| #define DOMAIN_CODE_5G_MKK3 \
| {100,104,108,112,116,120,124,128,132,136,140}, 11
| #define DOMAIN_CODE_5G_NCC1 \
| {56,60,64,100,104,108,112,116,136,140,149,153,157,161,165}, 24
| #define DOMAIN_CODE_5G_NCC2 \
| {56,60,64,149,153,157,161,165}, 8
| #define UNDEFINED \
| {0}, 0
| #endif
|
| //
| //
| //
| /*
|
| Countries "Country Abbreviation" Domain Code SKU's Ch# of 20MHz
| 2G 5G Ch# of 40MHz
| "Albaniaªüº¸¤Ú¥§¨È" AL Local Test
|
| "Algeriaªüº¸¤Î§Q¨È" DZ CE TCF
|
| "Antigua & Barbuda¦w´£¥Ê®q&¤Ú¥¬¹F" AG 2G_WORLD FCC TCF
|
| "Argentinaªü®Ú§Ê" AR 2G_WORLD Local Test
|
| "Armenia¨È¬ü¥§¨È" AM 2G_WORLD ETSI
|
| "Arubaªü¾|¤Ú®q" AW 2G_WORLD FCC TCF
|
| "Australia¿D¬w" AU 2G_WORLD 5G_ETSI2
|
| "Austria¶ø¦a§Q" AT 2G_WORLD 5G_ETSI1 CE
|
| "Azerbaijanªü¶ë«ô¾Ê" AZ 2G_WORLD CE TCF
|
| "Bahamas¤Ú«¢°¨" BS 2G_WORLD
|
| "Barbados¤Ú¤Ú¦h´µ" BB 2G_WORLD FCC TCF
|
| "Belgium¤ñ§Q®É" BE 2G_WORLD 5G_ETSI1 CE
|
| "Bermuda¦Ê¼}¹F" BM 2G_WORLD FCC TCF
|
| "Brazil¤Ú¦è" BR 2G_WORLD Local Test
|
| "Bulgaria«O¥[§Q¨È" BG 2G_WORLD 5G_ETSI1 CE
|
| "Canada¥[®³¤j" CA 2G_FCC1 5G_FCC7 IC / FCC IC / FCC
|
| "Cayman Islands¶}°Ò¸s®q" KY 2G_WORLD 5G_ETSI1 CE
|
| "Chile´¼§Q" CL 2G_WORLD FCC TCF
|
| "China¤¤°ê" CN 2G_WORLD 5G_FCC5 «H³¡?¡i2002¡j353?
|
| "ColumbiaôÛ¤ñ¨È" CO 2G_WORLD Voluntary
|
| "Costa Ricaô´µ¹F¾¤¥[" CR 2G_WORLD FCC TCF
|
| "Cyprus¶ë®ú¸ô´µ" CY 2G_WORLD 5G_ETSI1 CE
|
| "Czech ±¶§J" CZ 2G_WORLD 5G_ETSI1 CE
|
| "Denmark¤¦³Á" DK 2G_WORLD 5G_ETSI1 CE
|
| "Dominican Republic¦h©ú¥§¥[¦@©M°ê" DO 2G_WORLD FCC TCF
|
| "Egypt®J¤Î" EG 2G_WORLD CE T CF
|
| "El SalvadorÂĺ¸¥Ë¦h" SV 2G_WORLD Voluntary
|
| "Estonia·R¨F¥§¨È" EE 2G_WORLD 5G_ETSI1 CE
|
| "FinlandªâÄõ" FI 2G_WORLD 5G_ETSI1 CE
|
| "Franceªk°ê" FR 5G_E TSI1 CE
|
| "Germany¼w°ê" DE 2G_WORLD 5G_ETSI1 CE
|
| "Greece §ÆÃ¾" GR 2G_WORLD 5G_ETSI1 CE
|
| "GuamÃö®q" GU 2G_WORLD
|
| "Guatemala¥Ê¦a°¨©Ô" GT 2G_WORLD
|
| "Haiti®ü¦a" HT 2G_WORLD FCC TCF
|
| "Honduras§»³£©Ô´µ" HN 2G_WORLD FCC TCF
|
| "Hungary¦I¤ú§Q" HU 2G_WORLD 5G_ETSI1 CE
|
| "Iceland¦B®q" IS 2G_WORLD 5G_ETSI1 CE
|
| "India¦L«×" IN 2G_WORLD 5G_FCC3 FCC/CE TCF
|
| "Ireland·Rº¸Äõ" IE 2G_WORLD 5G_ETSI1 CE
|
| "Israel¥H¦â¦C" IL 5G_F CC6 CE TCF
|
| "Italy¸q¤j§Q" IT 2G_WORLD 5G_ETSI1 CE
|
| "Japan¤é¥»" JP 2G_MKK1 5G_MKK1 MKK MKK
|
| "KoreaÁú°ê" KR 2G_WORLD 5G_KCC1 KCC KCC
|
| "Latvia©Ô²æºû¨È" LV 2G_WORLD 5G_ETSI1 CE
|
| "Lithuania¥ß³³©{" LT 2G_WORLD 5G_ETSI1 CE
|
| "Luxembourg¿c´Ë³ù" LU 2G_WORLD 5G_ETSI1 CE
|
| "Malaysia°¨¨Ó¦è¨È" MY 2G_WORLD Local Test
|
| "Malta°¨º¸¥L" MT 2G_WORLD 5G_ETSI1 CE
|
| "Mexico¾¥¦èô" MX 2G_WORLD 5G_FCC3 Local Test
|
| "Morocco¼¯¬¥ô" MA CE TCF
|
| "Netherlands²üÄõ" NL 2G_WORLD 5G_ETSI1 CE
|
| "New Zealand¯Ã¦èÄõ" NZ 2G_WORLD 5G_ETSI2
|
| "Norway®¿«Â" NO 2G_WORLD 5G_ETSI1 CE
|
| "Panama¤Ú®³°¨ " PA 2G_FCC1 Voluntary
|
| "Philippines栮ᯮ" PH 2G_WORLD FCC TCF
|
| "PolandªiÄõ" PL 2G_WORLD 5G_ETSI1 CE
|
| "Portugal¸²µå¤ú" PT 2G_WORLD 5G_ETSI1 CE
|
| "Romaniaù°¨¥§¨È" RO 2G_WORLD 5G_ETSI1 CE
|
| "Russia«Xù´µ" RU 2G_WORLD 5G_ETSI3 CE TCF
|
| "Saudi Arabia¨F¦aªü©Ô§B" SA 2G_WORLD CE TCF
|
| "Singapore·s¥[©Y" SG 2G_WORLD
|
| "Slovakia´µ¬¥¥ï§J" SK 2G_WORLD 5G_ETSI1 CE
|
| "Slovenia´µ¬¥ºû¥§¨È" SI 2G_WORLD 5G_ETSI1 CE
|
| "South Africa«n«D" ZA 2G_WORLD CE TCF
|
| "Spain¦è¯Z¤ú" ES 5G_ETSI1 CE
|
| "Sweden·ç¨å" SE 2G_WORLD 5G_ETSI1 CE
|
| "Switzerland·ç¤h" CH 2G_WORLD 5G_ETSI1 CE
|
| "Taiwan»OÆW" TW 2G_FCC1 5G_NCC1 NCC
|
| "Thailand®õ°ê" TH 2G_WORLD FCC/CE TCF
|
| "Turkey¤g¦Õ¨ä" TR 2G_WORLD
|
| "Ukraine¯Q§JÄõ" UA 2G_WORLD Local Test
|
| "United Kingdom^°ê" GB 2G_WORLD 5G_ETSI1 CE ETSI
|
| "United States¬ü°ê" US 2G_FCC1 5G_FCC7 FCC FCC
|
| "Venezuela©e¤º·ç©Ô" VE 2G_WORLD 5G_FCC4 FCC TCF
|
| "Vietnam¶V«n" VN 2G_WORLD FCC/CE TCF
|
|
|
| */
|
| // Counter abbervation.
| typedef enum _RT_COUNTRY_DEFINE_NUM
| {
| RT_CTRY_AL, // "Albaniaªüº¸¤Ú¥§¨È"
| RT_CTRY_DZ, // "Algeriaªüº¸¤Î§Q¨È"
| RT_CTRY_AG, // "Antigua & Barbuda¦w´£¥Ê®q&¤Ú¥¬¹F"
| RT_CTRY_AR, // "Argentinaªü®Ú§Ê"
| RT_CTRY_AM, // "Armenia¨È¬ü¥§¨È"
| RT_CTRY_AW, // "Arubaªü¾|¤Ú®q"
| RT_CTRY_AU, // "Australia¿D¬w"
| RT_CTRY_AT, // "Austria¶ø¦a§Q"
| RT_CTRY_AZ, // "Azerbaijanªü¶ë«ô¾Ê"
| RT_CTRY_BS, // "Bahamas¤Ú«¢°¨"
| RT_CTRY_BB, // "Barbados¤Ú¤Ú¦h´µ"
| RT_CTRY_BE, // "Belgium¤ñ§Q®É"
| RT_CTRY_BM, // "Bermuda¦Ê¼}¹F"
| RT_CTRY_BR, // "Brazil¤Ú¦è"
| RT_CTRY_BG, // "Bulgaria«O¥[§Q¨È"
| RT_CTRY_CA, // "Canada¥[®³¤j"
| RT_CTRY_KY, // "Cayman Islands¶}°Ò¸s®q"
| RT_CTRY_CL, // "Chile´¼§Q"
| RT_CTRY_CN, // "China¤¤°ê"
| RT_CTRY_CO, // "ColumbiaôÛ¤ñ¨È"
| RT_CTRY_CR, // "Costa Ricaô´µ¹F¾¤¥["
| RT_CTRY_CY, // "Cyprus¶ë®ú¸ô´µ"
| RT_CTRY_CZ, // "Czech ±¶§J"
| RT_CTRY_DK, // "Denmark¤¦³Á"
| RT_CTRY_DO, // "Dominican Republic¦h©ú¥§¥[¦@©M°ê"
| RT_CTRY_CE, // "Egypt®J¤Î" EG 2G_WORLD
| RT_CTRY_SV, // "El SalvadorÂĺ¸¥Ë¦h"
| RT_CTRY_EE, // "Estonia·R¨F¥§¨È"
| RT_CTRY_FI, // "FinlandªâÄõ"
| RT_CTRY_FR, // "Franceªk°ê"
| RT_CTRY_DE, // "Germany¼w°ê"
| RT_CTRY_GR, // "Greece §ÆÃ¾"
| RT_CTRY_GU, // "GuamÃö®q"
| RT_CTRY_GT, // "Guatemala¥Ê¦a°¨©Ô"
| RT_CTRY_HT, // "Haiti®ü¦a"
| RT_CTRY_HN, // "Honduras§»³£©Ô´µ"
| RT_CTRY_HU, // "Hungary¦I¤ú§Q"
| RT_CTRY_IS, // "Iceland¦B®q"
| RT_CTRY_IN, // "India¦L«×"
| RT_CTRY_IE, // "Ireland·Rº¸Äõ"
| RT_CTRY_IL, // "Israel¥H¦â¦C"
| RT_CTRY_IT, // "Italy¸q¤j§Q"
| RT_CTRY_JP, // "Japan¤é¥»"
| RT_CTRY_KR, // "KoreaÁú°ê"
| RT_CTRY_LV, // "Latvia©Ô²æºû¨È"
| RT_CTRY_LT, // "Lithuania¥ß³³©{"
| RT_CTRY_LU, // "Luxembourg¿c´Ë³ù"
| RT_CTRY_MY, // "Malaysia°¨¨Ó¦è¨È"
| RT_CTRY_MT, // "Malta°¨º¸¥L"
| RT_CTRY_MX, // "Mexico¾¥¦èô"
| RT_CTRY_MA, // "Morocco¼¯¬¥ô"
| RT_CTRY_NL, // "Netherlands²üÄõ"
| RT_CTRY_NZ, // "New Zealand¯Ã¦èÄõ"
| RT_CTRY_NO, // "Norway®¿«Â"
| RT_CTRY_PA, // "Panama¤Ú®³°¨ "
| RT_CTRY_PH, // "Philippines栮ᯮ"
| RT_CTRY_PL, // "PolandªiÄõ"
| RT_CTRY_PT, // "Portugal¸²µå¤ú"
| RT_CTRY_RO, // "Romaniaù°¨¥§¨È"
| RT_CTRY_RU, // "Russia«Xù´µ"
| RT_CTRY_SA, // "Saudi Arabia¨F¦aªü©Ô§B"
| RT_CTRY_SG, // "Singapore·s¥[©Y"
| RT_CTRY_SK, // "Slovakia´µ¬¥¥ï§J"
| RT_CTRY_SI, // "Slovenia´µ¬¥ºû¥§¨È"
| RT_CTRY_ZA, // "South Africa«n«D"
| RT_CTRY_ES, // "Spain¦è¯Z¤ú"
| RT_CTRY_SE, // "Sweden·ç¨å"
| RT_CTRY_CH, // "Switzerland·ç¤h"
| RT_CTRY_TW, // "Taiwan»OÆW"
| RT_CTRY_TH, // "Thailand®õ°ê"
| RT_CTRY_TR, // "Turkey¤g¦Õ¨ä"
| RT_CTRY_UA, // "Ukraine¯Q§JÄõ"
| RT_CTRY_GB, // "United Kingdom^°ê"
| RT_CTRY_US, // "United States¬ü°ê"
| RT_CTRY_VE, // "Venezuela©e¤º·ç©Ô"
| RT_CTRY_VN, // "Vietnam¶V«n"
| RT_CTRY_MAX, //
|
| }RT_COUNTRY_NAME, *PRT_COUNTRY_NAME;
|
| // Scan type including active and passive scan.
| typedef enum _RT_SCAN_TYPE_NEW
| {
| SCAN_NULL,
| SCAN_ACT,
| SCAN_PAS,
| SCAN_BOTH,
| }RT_SCAN_TYPE_NEW, *PRT_SCAN_TYPE_NEW;
|
|
| // Power table sample.
|
| typedef struct _RT_CHNL_PLAN_LIMIT
| {
| u2Byte Chnl_Start;
| u2Byte Chnl_end;
|
| u2Byte Freq_Start;
| u2Byte Freq_end;
| }RT_CHNL_PLAN_LIMIT, *PRT_CHNL_PLAN_LIMIT;
|
|
| //
| // 2.4G Regulatory Domains
| //
| typedef enum _RT_REGULATION_DOMAIN_2G
| {
| RT_2G_NULL,
| RT_2G_WORLD,
| RT_2G_ETSI1,
| RT_2G_FCC1,
| RT_2G_MKK1,
| RT_2G_ETSI2
|
| }RT_REGULATION_2G, *PRT_REGULATION_2G;
|
|
| //typedef struct _RT_CHANNEL_BEHAVIOR
| //{
| // u1Byte Chnl;
| // RT_SCAN_TYPE_NEW
| //
| //}RT_CHANNEL_BEHAVIOR, *PRT_CHANNEL_BEHAVIOR;
|
| //typedef struct _RT_CHANNEL_PLAN_TYPE
| //{
| // RT_CHANNEL_BEHAVIOR
| // u1Byte Chnl_num;
| //}RT_CHNL_PLAN_TYPE, *PRT_CHNL_PLAN_TYPE;
|
| //
| // 2.4G Channel Number
| // Channel definition & number
| //
| #define CHNL_RT_2G_NULL \
| {0}, 0
| #define CHNL_RT_2G_WORLD \
| {1,2,3,4,5,6,7,8,9,10,11,12,13}, 13
| #define CHNL_RT_2G_WORLD_TEST \
| {1,2,3,4,5,6,7,8,9,10,11,12,13}, 13
|
| #define CHNL_RT_2G_EFSI1 \
| {1,2,3,4,5,6,7,8,9,10,11,12,13}, 13
| #define CHNL_RT_2G_FCC1 \
| {1,2,3,4,5,6,7,8,9,10,11}, 11
| #define CHNL_RT_2G_MKK1 \
| {1,2,3,4,5,6,7,8,9,10,11,12,13,14}, 14
| #define CHNL_RT_2G_ETSI2 \
| {10,11,12,13}, 4
|
| //
| // 2.4G Channel Active or passive scan.
| //
| #define CHNL_RT_2G_NULL_SCAN_TYPE \
| {SCAN_NULL}
| #define CHNL_RT_2G_WORLD_SCAN_TYPE \
| {1,1,1,1,1,1,1,1,1,1,1,0,0}
| #define CHNL_RT_2G_EFSI1_SCAN_TYPE \
| {1,1,1,1,1,1,1,1,1,1,1,1,1}
| #define CHNL_RT_2G_FCC1_SCAN_TYPE \
| {1,1,1,1,1,1,1,1,1,1,1}
| #define CHNL_RT_2G_MKK1_SCAN_TYPE \
| {1,1,1,1,1,1,1,1,1,1,1,1,1,1}
| #define CHNL_RT_2G_ETSI2_SCAN_TYPE \
| {1,1,1,1}
|
|
| //
| // 2.4G Band & Frequency Section
| // Freqency start & end / band number
| //
| #define FREQ_RT_2G_NULL \
| {0}, 0
| // Passive scan CH 12, 13
| #define FREQ_RT_2G_WORLD \
| {2412, 2472}, 1
| #define FREQ_RT_2G_EFSI1 \
| {2412, 2472}, 1
| #define FREQ_RT_2G_FCC1 \
| {2412, 2462}, 1
| #define FREQ_RT_2G_MKK1 \
| {2412, 2484}, 1
| #define FREQ_RT_2G_ETSI2 \
| {2457, 2472}, 1
|
|
| //
| // 5G Regulatory Domains
| //
| typedef enum _RT_REGULATION_DOMAIN_5G
| {
| RT_5G_NULL,
| RT_5G_WORLD,
| RT_5G_ETSI1,
| RT_5G_ETSI2,
| RT_5G_ETSI3,
| RT_5G_FCC1,
| RT_5G_FCC2,
| RT_5G_FCC3,
| RT_5G_FCC4,
| RT_5G_FCC5,
| RT_5G_FCC6,
| RT_5G_FCC7,
| RT_5G_IC1,
| RT_5G_KCC1,
| RT_5G_MKK1,
| RT_5G_MKK2,
| RT_5G_MKK3,
| RT_5G_NCC1,
|
| }RT_REGULATION_5G, *PRT_REGULATION_5G;
|
| //
| // 5G Channel Number
| //
| #define CHNL_RT_5G_NULL \
| {0}, 0
| #define CHNL_RT_5G_WORLD \
| {36,40,44,48,52,56,60,64,100,104,108,112,116,120,124,128,132,136,140}, 19
| #define CHNL_RT_5G_ETSI1 \
| {36,40,44,48,52,56,60,64,100,104,108,112,116,120,124,128,132,136,140,149,153,157,161,165}, 24
| #define CHNL_RT_5G_ETSI2 \
| {36,40,44,48,52,56,60,64,100,104,108,112,116,120,124,128,132,149,153,157,161,165}, 22
| #define CHNL_RT_5G_ETSI3 \
| {36,40,44,48,52,56,60,64,100,104,108,112,116,120,124,128,132,136,140,149,153,157,161,165}, 24
| #define CHNL_RT_5G_FCC1 \
| {36,40,44,48,149,153,157,161,165}, 9
| #define CHNL_RT_5G_FCC2 \
| {36,40,44,48,52,56,60,64,149,153,157,161,165}, 13
| #define CHNL_RT_5G_FCC3 \
| {36,40,44,48,52,56,60,64,149,153,157,161}, 12
| #define CHNL_RT_5G_FCC4 \
| {149,153,157,161,165}, 5
| #define CHNL_RT_5G_FCC5 \
| {36,40,44,48,52,56,60,64}, 8
| #define CHNL_RT_5G_FCC6 \
| {36,40,44,48,52,56,60,64,100,104,108,112,116,136,140,149,153,157,161,165}, 20
| #define CHNL_RT_5G_FCC7 \
| {36,40,44,48,52,56,60,64,100,104,108,112,116,136,140,149,153,157,161,165}, 20
| #define CHNL_RT_5G_IC1 \
| {36,40,44,48,52,56,60,64,100,104,108,112,116,120,124,149,153,157,161,165}, 20
| #define CHNL_RT_5G_KCC1 \
| {36,40,44,48,52,56,60,64,100,104,108,112,116,120,124,128,132,136,140}, 19
| #define CHNL_RT_5G_MKK1 \
| {36,40,44,48,52,56,60,64}, 8
| #define CHNL_RT_5G_MKK2 \
| {100,104,108,112,116,120,124,128,132,136,140}, 11
| #define CHNL_RT_5G_MKK3 \
| {56,60,64,100,104,108,112,116,136,140,149,153,157,161,165}, 24
| #define CHNL_RT_5G_NCC1 \
| {56,60,64,149,153,157,161,165}, 8
|
| //
| // 5G Channel Active or passive scan.
| //
| #define CHNL_RT_5G_NULL_SCAN_TYPE \
| {SCAN_NULL}
| #define CHNL_RT_5G_WORLD_SCAN_TYPE \
| {1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}
| #define CHNL_RT_5G_ETSI1_SCAN_TYPE \
| {1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}
| #define CHNL_RT_5G_ETSI2_SCAN_TYPE \
| {36,40,44,48,52,56,60,64,100,104,108,112,116,120,124,128,132,149,153,157,161,165}, 22
| #define CHNL_RT_5G_ETSI3_SCAN_TYPE \
| {36,40,44,48,52,56,60,64,100,104,108,112,116,120,124,128,132,136,140,149,153,157,161,165}, 24
| #define CHNL_RT_5G_FCC1_SCAN_TYPE \
| {36,40,44,48,149,153,157,161,165}, 9
| #define CHNL_RT_5G_FCC2_SCAN_TYPE \
| {36,40,44,48,52,56,60,64,149,153,157,161,165}, 13
| #define CHNL_RT_5G_FCC3_SCAN_TYPE \
| {36,40,44,48,52,56,60,64,149,153,157,161}, 12
| #define CHNL_RT_5G_FCC4_SCAN_TYPE \
| {149,153,157,161,165}, 5
| #define CHNL_RT_5G_FCC5_SCAN_TYPE \
| {36,40,44,48,52,56,60,64}, 8
| #define CHNL_RT_5G_FCC6_SCAN_TYPE \
| {36,40,44,48,52,56,60,64,100,104,108,112,116,136,140,149,153,157,161,165}, 20
| #define CHNL_RT_5G_FCC7_SCAN_TYPE \
| {36,40,44,48,52,56,60,64,100,104,108,112,116,136,140,149,153,157,161,165}, 20
| #define CHNL_RT_5G_IC1_SCAN_TYPE \
| {36,40,44,48,52,56,60,64,100,104,108,112,116,120,124,149,153,157,161,165}, 20
| #define CHNL_RT_5G_KCC1_SCAN_TYPE \
| {36,40,44,48,52,56,60,64,100,104,108,112,116,120,124,128,132,136,140}, 19
| #define CHNL_RT_5G_MKK1_SCAN_TYPE \
| {36,40,44,48,52,56,60,64}, 8
| #define CHNL_RT_5G_MKK2_SCAN_TYPE \
| {100,104,108,112,116,120,124,128,132,136,140}, 11
| #define CHNL_RT_5G_MKK3_SCAN_TYPE \
| {56,60,64,100,104,108,112,116,136,140,149,153,157,161,165}, 24
| #define CHNL_RT_5G_NCC1_SCAN_TYPE \
| {56,60,64,149,153,157,161,165}, 8
|
| //
| // Global Regulation
| //
| typedef enum _RT_REGULATION_COMMON
| {
| RT_WORLD,
| RT_FCC,
| RT_MKK,
| RT_ETSI,
| RT_IC,
| RT_CE,
| RT_NCC,
|
| }RT_REGULATION_CMN, *PRT_REGULATION_CMN;
|
|
|
| //
| // Special requirement for different regulation domain.
| // For internal test or customerize special request.
| //
| typedef enum _RT_CHNLPLAN_SREQ
| {
| RT_SREQ_NA = 0x0,
| RT_SREQ_2G_ADHOC_11N = 0x00000001,
| RT_SREQ_2G_ADHOC_11B = 0x00000002,
| RT_SREQ_2G_ALL_PASS = 0x00000004,
| RT_SREQ_2G_ALL_ACT = 0x00000008,
| RT_SREQ_5G_ADHOC_11N = 0x00000010,
| RT_SREQ_5G_ADHOC_11AC = 0x00000020,
| RT_SREQ_5G_ALL_PASS = 0x00000040,
| RT_SREQ_5G_ALL_ACT = 0x00000080,
| RT_SREQ_C1_PLAN = 0x00000100,
| RT_SREQ_C2_PLAN = 0x00000200,
| RT_SREQ_C3_PLAN = 0x00000400,
| RT_SREQ_C4_PLAN = 0x00000800,
| RT_SREQ_NFC_ON = 0x00001000,
| RT_SREQ_MASK = 0x0000FFFF, /* Requirements bit mask */
|
| }RT_CHNLPLAN_SREQ, *PRT_CHNLPLAN_SREQ;
|
|
| //
| // RT_COUNTRY_NAME & RT_REGULATION_2G & RT_REGULATION_5G transfer table
| //
| //
| typedef struct _RT_CHANNEL_PLAN_COUNTRY_TRANSFER_TABLE
| {
| //
| // Define countery domain and corresponding
| //
| RT_COUNTRY_NAME Country_Enum;
| char Country_Name[3];
|
| //char Domain_Name[12];
| RT_REGULATION_2G Domain_2G;
|
| RT_REGULATION_5G Domain_5G;
|
| RT_CHANNEL_DOMAIN RtChDomain;
| //u1Byte Country_Area;
|
| }RT_CHNL_CTRY_TBL, *PRT_CHNL_CTRY_TBL;
|
|
| #define RT_MAX_CHNL_NUM_2G 13
| #define RT_MAX_CHNL_NUM_5G 44
|
| // Power table sample.
|
| typedef struct _RT_CHNL_PLAN_PWR_LIMIT
| {
| u2Byte Chnl_Start;
| u2Byte Chnl_end;
| u1Byte dB_Max;
| u2Byte mW_Max;
| }RT_CHNL_PWR_LIMIT, *PRT_CHNL_PWR_LIMIT;
|
|
| #define RT_MAX_BAND_NUM 5
|
| typedef struct _RT_CHANNEL_PLAN_MAXPWR
| {
| // STRING_T
| RT_CHNL_PWR_LIMIT Chnl[RT_MAX_BAND_NUM];
| u1Byte Band_Useful_Num;
|
|
| }RT_CHANNEL_PLAN_MAXPWR, *PRT_CHANNEL_PLAN_MAXPWR;
|
|
| //
| // Power By Rate Table.
| //
|
|
|
| typedef struct _RT_CHANNEL_PLAN_NEW
| {
| //
| // Define countery domain and corresponding
| //
| //char Country_Name[36];
| //u1Byte Country_Enum;
|
| //char Domain_Name[12];
|
|
| PRT_CHNL_CTRY_TBL pCtryTransfer;
|
| RT_CHANNEL_DOMAIN RtChDomain;
|
| RT_REGULATION_2G Domain_2G;
|
| RT_REGULATION_5G Domain_5G;
|
| RT_REGULATION_CMN Regulator;
|
| RT_CHNLPLAN_SREQ ChnlSreq;
|
| //RT_CHNL_PLAN_LIMIT RtChnl;
|
| u1Byte Chnl2G[MAX_CHANNEL_NUM]; // CHNL_RT_2G_WORLD
| u1Byte Len2G;
| u1Byte Chnl2GScanTp[MAX_CHANNEL_NUM]; // CHNL_RT_2G_WORLD_SCAN_TYPE
| //u1Byte Freq2G[2]; // FREQ_RT_2G_WORLD
|
| u1Byte Chnl5G[MAX_CHANNEL_NUM];
| u1Byte Len5G;
| u1Byte Chnl5GScanTp[MAX_CHANNEL_NUM];
| //u1Byte Freq2G[2]; // FREQ_RT_2G_WORLD
|
| RT_CHANNEL_PLAN_MAXPWR ChnlMaxPwr;
|
|
| }RT_CHANNEL_PLAN_NEW, *PRT_CHANNEL_PLAN_NEW;
|
|
| #endif // __RT_CHANNELPLAN_H__
|
|
|
|
|
|
|