hc
2024-05-14 bedbef8ad3e75a304af6361af235302bcc61d06b
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
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
/******************************************************************************
 *
 * Copyright(c) 2007 - 2011 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    __HALDMOUTSRC_H__
#define __HALDMOUTSRC_H__
 
//============================================================
// include files
//============================================================
#include "phydm_pre_define.h"
#include "phydm_dig.h"
#include "phydm_edcaturbocheck.h"
#include "phydm_pathdiv.h"
#include "phydm_antdiv.h"
#include "phydm_antdect.h"
#include "phydm_dynamicbbpowersaving.h"
#include "phydm_rainfo.h"
#include "phydm_dynamictxpower.h"
#include "phydm_cfotracking.h"
#include "phydm_acs.h"
#include "phydm_adaptivity.h"
 
 
#if (RTL8814A_SUPPORT == 1)
#include "rtl8814a/phydm_iqk_8814a.h"
#endif
 
 
#if (DM_ODM_SUPPORT_TYPE & (ODM_AP))
#include "halphyrf_ap.h"
#include "phydm_powertracking_ap.h"
#endif
 
#if (DM_ODM_SUPPORT_TYPE & (ODM_CE))
#include "phydm_noisemonitor.h"
#include "halphyrf_ce.h"
#include "phydm_powertracking_ce.h"
#endif
 
#if(DM_ODM_SUPPORT_TYPE & (ODM_WIN))
#include "phydm_beamforming.h"
#include "phydm_rxhp.h"
#include "halphyrf_win.h"
#include "phydm_powertracking_win.h"
#endif
 
//============================================================
// Definition 
//============================================================
//
// 2011/09/22 MH Define all team supprt ability.
//
 
//
// 2011/09/22 MH Define for all teams. Please Define the constan in your precomp header.
//
//#define        DM_ODM_SUPPORT_AP            0
//#define        DM_ODM_SUPPORT_ADSL            0
//#define        DM_ODM_SUPPORT_CE            0
//#define        DM_ODM_SUPPORT_MP            1
 
//
// 2011/09/28 MH Define ODM SW team support flag.
//
 
//For SW AntDiv, PathDiv, 8192C AntDiv joint use
#define    TP_MODE        0
#define    RSSI_MODE        1
 
#define    TRAFFIC_LOW    0
#define    TRAFFIC_HIGH    1
#define    TRAFFIC_UltraLOW    2
 
#define    NONE            0
 
 
/*NBI API------------------------------------*/
#define    NBI_ENABLE 1
#define    NBI_DISABLE 2
 
#define    NBI_TABLE_SIZE_128    27
#define    NBI_TABLE_SIZE_256    59
 
#define    NUM_START_CH_80M    7
#define    NUM_START_CH_40M    14
 
#define    CH_OFFSET_40M        2
#define    CH_OFFSET_80M        6
/*------------------------------------------------*/
 
#define    SET_SUCCESS    1
#define    SET_ERROR        2
#define    SET_NO_NEED    3
 
#define    FFT_128_TYPE    1
#define    FFT_256_TYPE    2
 
#define PHYDM_WATCH_DOG_PERIOD    2
 
//8723A High Power IGI Setting
#define        DM_DIG_HIGH_PWR_IGI_LOWER_BOUND    0x22
#define          DM_DIG_Gmode_HIGH_PWR_IGI_LOWER_BOUND 0x28
#define        DM_DIG_HIGH_PWR_THRESHOLD    0x3a
#define        DM_DIG_LOW_PWR_THRESHOLD    0x14
 
 
//============================================================
// structure and define
//============================================================
 
//
// 2011/09/20 MH Add for AP/ADSLpseudo DM structuer requirement.
// We need to remove to other position???
//
#if(DM_ODM_SUPPORT_TYPE & (ODM_CE|ODM_WIN))
typedef        struct rtl8192cd_priv {
   u1Byte        temp;
 
}rtl8192cd_priv, *prtl8192cd_priv;
#endif
 
 
#if(DM_ODM_SUPPORT_TYPE & (ODM_AP|ODM_ADSL))
typedef        struct _ADAPTER{
   u1Byte        temp;
   #ifdef AP_BUILD_WORKAROUND
   HAL_DATA_TYPE*        temp2;
   prtl8192cd_priv        priv;
   #endif
}ADAPTER, *PADAPTER;
#endif
 
#if (DM_ODM_SUPPORT_TYPE == ODM_AP)
 
typedef        struct _WLAN_STA{
   u1Byte        temp;
} WLAN_STA, *PRT_WLAN_STA;
 
#endif
 
typedef struct _Dynamic_Primary_CCA{
   u1Byte        PriCCA_flag;
   u1Byte        intf_flag;
   u1Byte        intf_type;  
   u1Byte        DupRTS_flag;
   u1Byte        Monitor_flag;
   u1Byte        CH_offset;
   u1Byte      MF_state;
}Pri_CCA_T, *pPri_CCA_T;
 
 
#if (DM_ODM_SUPPORT_TYPE & ODM_AP)
 
 
#ifdef ADSL_AP_BUILD_WORKAROUND
#define MAX_TOLERANCE            5
#define IQK_DELAY_TIME            1        //ms
#endif
#if 0//defined in 8192cd.h
//
// Indicate different AP vendor for IOT issue.
//
typedef enum _HT_IOT_PEER
{
   HT_IOT_PEER_UNKNOWN             = 0,
   HT_IOT_PEER_REALTEK             = 1,
   HT_IOT_PEER_REALTEK_92SE         = 2,
   HT_IOT_PEER_BROADCOM         = 3,
   HT_IOT_PEER_RALINK             = 4,
   HT_IOT_PEER_ATHEROS             = 5,
   HT_IOT_PEER_CISCO                 = 6,
   HT_IOT_PEER_MERU                 = 7,    
   HT_IOT_PEER_MARVELL             = 8,
   HT_IOT_PEER_REALTEK_SOFTAP     = 9,// peer is RealTek SOFT_AP, by Bohn, 2009.12.17
   HT_IOT_PEER_SELF_SOFTAP         = 10, // Self is SoftAP
   HT_IOT_PEER_AIRGO                 = 11,
   HT_IOT_PEER_INTEL                 = 12, 
   HT_IOT_PEER_RTK_APCLIENT         = 13, 
   HT_IOT_PEER_REALTEK_81XX         = 14,    
   HT_IOT_PEER_REALTEK_WOW         = 15,    
   HT_IOT_PEER_MAX                 = 16
}HT_IOT_PEER_E, *PHTIOT_PEER_E;
#endif
#endif//#if(DM_ODM_SUPPORT_TYPE & (ODM_AP|ODM_ADSL))
 
#define        DM_Type_ByFW            0
#define        DM_Type_ByDriver        1
 
//
// Declare for common info
//
 
#define IQK_THRESHOLD            8
#define DPK_THRESHOLD            4
 
 
#if (DM_ODM_SUPPORT_TYPE &  (ODM_AP))
__PACK typedef struct _ODM_Phy_Status_Info_
{
   u1Byte        RxPWDBAll;
   u1Byte        SignalQuality;                    /* in 0-100 index. */
   u1Byte        RxMIMOSignalStrength[4];        /* in 0~100 index */
   s1Byte        RxMIMOSignalQuality[4];        /* EVM */
   s1Byte        RxSNR[4];                    /* per-path's SNR */
#if (RTL8822B_SUPPORT == 1)
   u1Byte        RxCount;                        /* RX path counter---*/
#endif
   u1Byte        BandWidth;
 
} __WLAN_ATTRIB_PACK__ ODM_PHY_INFO_T, *PODM_PHY_INFO_T;
 
typedef struct _ODM_Phy_Status_Info_Append_
{
   u1Byte        MAC_CRC32;    
 
}ODM_PHY_INFO_Append_T,*PODM_PHY_INFO_Append_T;
 
#else
 
typedef struct _ODM_Phy_Status_Info_
{
   //
   // Be care, if you want to add any element please insert between 
   // RxPWDBAll & SignalStrength.
   //
#if (DM_ODM_SUPPORT_TYPE &  (ODM_WIN))
   u4Byte        RxPWDBAll;    
#else
   u1Byte        RxPWDBAll;    
#endif
   u1Byte        SignalQuality;                /* in 0-100 index. */
   s1Byte        RxMIMOSignalQuality[4];        /* per-path's EVM */
   u1Byte        RxMIMOEVMdbm[4];            /* per-path's EVM dbm */
   u1Byte        RxMIMOSignalStrength[4];    /* in 0~100 index */
   s2Byte        Cfo_short[4];                /* per-path's Cfo_short */
   s2Byte        Cfo_tail[4];                    /* per-path's Cfo_tail */
   s1Byte        RxPower;                    /* in dBm Translate from PWdB */
   s1Byte        RecvSignalPower;            /* Real power in dBm for this packet, no beautification and aggregation. Keep this raw info to be used for the other procedures. */
   u1Byte        BTRxRSSIPercentage;
   u1Byte        SignalStrength;                /* in 0-100 index. */
   s1Byte        RxPwr[4];                    /* per-path's pwdb */
   s1Byte        RxSNR[4];                    /* per-path's SNR    */
#if (RTL8822B_SUPPORT == 1)
   u1Byte        RxCount:2;                    /* RX path counter---*/
   u1Byte        BandWidth:2;
   u1Byte        rxsc:4;                        /* sub-channel---*/
#else
   u1Byte        BandWidth;
#endif
   u1Byte        btCoexPwrAdjust;
#if (RTL8822B_SUPPORT == 1)
   u1Byte        channel;                        /* channel number---*/
   BOOLEAN        bMuPacket;                    /* is MU packet or not---*/
   BOOLEAN        bBeamformed;                /* BF packet---*/
#endif
}ODM_PHY_INFO_T,*PODM_PHY_INFO_T;
#endif
 
typedef struct _ODM_Per_Pkt_Info_
{
   //u1Byte        Rate;    
   u1Byte        DataRate;
   u1Byte        StationID;
   BOOLEAN        bPacketMatchBSSID;
   BOOLEAN        bPacketToSelf;
   BOOLEAN        bPacketBeacon;
   BOOLEAN        bToSelf;
}ODM_PACKET_INFO_T,*PODM_PACKET_INFO_T;
 
 
typedef struct _ODM_Phy_Dbg_Info_
{
   //ODM Write,debug info
   s1Byte        RxSNRdB[4];
   u4Byte        NumQryPhyStatus;
   u4Byte        NumQryPhyStatusCCK;
   u4Byte        NumQryPhyStatusOFDM;
#if (RTL8822B_SUPPORT == 1)
   u4Byte        NumQryMuPkt;
   u4Byte        NumQryBfPkt;
#endif
   u1Byte        NumQryBeaconPkt;
   //Others
   s4Byte        RxEVM[4];    
   
}ODM_PHY_DBG_INFO_T;
 
 
typedef struct _ODM_Mac_Status_Info_
{
   u1Byte    test;
   
}ODM_MAC_INFO;
 
//
// 2011/20/20 MH For MP driver RT_WLAN_STA =  STA_INFO_T
// Please declare below ODM relative info in your STA info structure.
//
#if 1
typedef        struct _ODM_STA_INFO{
   // Driver Write
   BOOLEAN        bUsed;                // record the sta status link or not?
   //u1Byte        WirelessMode;        // 
   u1Byte        IOTPeer;            // Enum value.    HT_IOT_PEER_E
 
   // ODM Write
   //1 PHY_STATUS_INFO
   u1Byte        RSSI_Path[4];        // 
   u1Byte        RSSI_Ave;
   u1Byte        RXEVM[4];
   u1Byte        RXSNR[4];
 
   // ODM Write
   //1 TX_INFO (may changed by IC)
   //TX_INFO_T        pTxInfo;                // Define in IC folder. Move lower layer.
#if 0
   u1Byte        ANTSEL_A;            //in Jagar: 4bit; others: 2bit
   u1Byte        ANTSEL_B;            //in Jagar: 4bit; others: 2bit
   u1Byte        ANTSEL_C;            //only in Jagar: 4bit
   u1Byte        ANTSEL_D;            //only in Jagar: 4bit
   u1Byte        TX_ANTL;            //not in Jagar: 2bit
   u1Byte        TX_ANT_HT;            //not in Jagar: 2bit
   u1Byte        TX_ANT_CCK;            //not in Jagar: 2bit
   u1Byte        TXAGC_A;            //not in Jagar: 4bit
   u1Byte        TXAGC_B;            //not in Jagar: 4bit
   u1Byte        TXPWR_OFFSET;        //only in Jagar: 3bit
   u1Byte        TX_ANT;                //only in Jagar: 4bit for TX_ANTL/TX_ANTHT/TX_ANT_CCK
#endif
 
   //
   //     Please use compile flag to disabe the strcutrue for other IC except 88E.
   //    Move To lower layer.
   //
   // ODM Write Wilson will handle this part(said by Luke.Lee)
   //TX_RPT_T        pTxRpt;                // Define in IC folder. Move lower layer.
#if 0    
   //1 For 88E RA (don't redefine the naming)
   u1Byte        rate_id;
   u1Byte        rate_SGI;
   u1Byte        rssi_sta_ra;
   u1Byte        SGI_enable;
   u1Byte        Decision_rate;
   u1Byte        Pre_rate;
   u1Byte        Active;
 
   // Driver write Wilson handle.
   //1 TX_RPT (don't redefine the naming)
   u2Byte        RTY[4];                // ???
   u2Byte        TOTAL;                // ???
   u2Byte        DROP;                // ???
   //
   // Please use compile flag to disabe the strcutrue for other IC except 88E.
   //
#endif
 
}ODM_STA_INFO_T, *PODM_STA_INFO_T;
#endif
 
//
// 2011/10/20 MH Define Common info enum for all team.
//
typedef enum _ODM_Common_Info_Definition
{
//-------------REMOVED CASE-----------//
   //ODM_CMNINFO_CCK_HP,
   //ODM_CMNINFO_RFPATH_ENABLE,        // Define as ODM write???    
   //ODM_CMNINFO_BT_COEXIST,                // ODM_BT_COEXIST_E
   //ODM_CMNINFO_OP_MODE,                // ODM_OPERATION_MODE_E
//-------------REMOVED CASE-----------//
 
   //
   // Fixed value:
   //
 
   //-----------HOOK BEFORE REG INIT-----------//
   ODM_CMNINFO_PLATFORM = 0,
   ODM_CMNINFO_ABILITY,                    // ODM_ABILITY_E
   ODM_CMNINFO_INTERFACE,                // ODM_INTERFACE_E
   ODM_CMNINFO_MP_TEST_CHIP,
   ODM_CMNINFO_IC_TYPE,                    // ODM_IC_TYPE_E
   ODM_CMNINFO_CUT_VER,                    // ODM_CUT_VERSION_E
   ODM_CMNINFO_FAB_VER,                    // ODM_FAB_E
   ODM_CMNINFO_RF_TYPE,                    // ODM_RF_PATH_E or ODM_RF_TYPE_E?
   ODM_CMNINFO_RFE_TYPE, 
   ODM_CMNINFO_BOARD_TYPE,                // ODM_BOARD_TYPE_E
   ODM_CMNINFO_PACKAGE_TYPE,
   ODM_CMNINFO_EXT_LNA,                    // TRUE
   ODM_CMNINFO_5G_EXT_LNA,    
   ODM_CMNINFO_EXT_PA,
   ODM_CMNINFO_5G_EXT_PA,
   ODM_CMNINFO_GPA,
   ODM_CMNINFO_APA,
   ODM_CMNINFO_GLNA,
   ODM_CMNINFO_ALNA,
   ODM_CMNINFO_EXT_TRSW,
   ODM_CMNINFO_EXT_LNA_GAIN,
   ODM_CMNINFO_PATCH_ID,                //CUSTOMER ID
   ODM_CMNINFO_BINHCT_TEST,
   ODM_CMNINFO_BWIFI_TEST,
   ODM_CMNINFO_SMART_CONCURRENT,
   ODM_CMNINFO_CONFIG_BB_RF,
   ODM_CMNINFO_DOMAIN_CODE_2G,
   ODM_CMNINFO_DOMAIN_CODE_5G,
   ODM_CMNINFO_IQKFWOFFLOAD,
   //-----------HOOK BEFORE REG INIT-----------//    
 
 
   //
   // Dynamic value:
   //
//--------- POINTER REFERENCE-----------//
   ODM_CMNINFO_MAC_PHY_MODE,            // ODM_MAC_PHY_MODE_E
   ODM_CMNINFO_TX_UNI,
   ODM_CMNINFO_RX_UNI,
   ODM_CMNINFO_WM_MODE,                // ODM_WIRELESS_MODE_E
   ODM_CMNINFO_BAND,                    // ODM_BAND_TYPE_E
   ODM_CMNINFO_SEC_CHNL_OFFSET,        // ODM_SEC_CHNL_OFFSET_E
   ODM_CMNINFO_SEC_MODE,                // ODM_SECURITY_E
   ODM_CMNINFO_BW,                        // ODM_BW_E
   ODM_CMNINFO_CHNL,
   ODM_CMNINFO_FORCED_RATE,
   
   ODM_CMNINFO_DMSP_GET_VALUE,
   ODM_CMNINFO_BUDDY_ADAPTOR,
   ODM_CMNINFO_DMSP_IS_MASTER,
   ODM_CMNINFO_SCAN,
   ODM_CMNINFO_POWER_SAVING,
   ODM_CMNINFO_ONE_PATH_CCA,            // ODM_CCA_PATH_E
   ODM_CMNINFO_DRV_STOP,
   ODM_CMNINFO_PNP_IN,
   ODM_CMNINFO_INIT_ON,
   ODM_CMNINFO_ANT_TEST,
   ODM_CMNINFO_NET_CLOSED,
   //ODM_CMNINFO_RTSTA_AID,                // For win driver only?
   ODM_CMNINFO_FORCED_IGI_LB,
   ODM_CMNINFO_P2P_LINK,
   ODM_CMNINFO_FCS_MODE,
   ODM_CMNINFO_IS1ANTENNA,
   ODM_CMNINFO_RFDEFAULTPATH,
//--------- POINTER REFERENCE-----------//
 
//------------CALL BY VALUE-------------//
   ODM_CMNINFO_WIFI_DIRECT,
   ODM_CMNINFO_WIFI_DISPLAY,
   ODM_CMNINFO_LINK_IN_PROGRESS,            
   ODM_CMNINFO_LINK,
   ODM_CMNINFO_STATION_STATE,
   ODM_CMNINFO_RSSI_MIN,
   ODM_CMNINFO_DBG_COMP,                // u8Byte
   ODM_CMNINFO_DBG_LEVEL,                // u4Byte
   ODM_CMNINFO_RA_THRESHOLD_HIGH,        // u1Byte
   ODM_CMNINFO_RA_THRESHOLD_LOW,        // u1Byte
   ODM_CMNINFO_RF_ANTENNA_TYPE,        // u1Byte
   ODM_CMNINFO_BT_ENABLED,
   ODM_CMNINFO_BT_HS_CONNECT_PROCESS,
   ODM_CMNINFO_BT_HS_RSSI,
   ODM_CMNINFO_BT_OPERATION,
   ODM_CMNINFO_BT_LIMITED_DIG,                    //Need to Limited Dig or not
   ODM_CMNINFO_BT_DIG,
   ODM_CMNINFO_BT_BUSY,                    //Check Bt is using or not//neil    
   ODM_CMNINFO_BT_DISABLE_EDCA,
#if(DM_ODM_SUPPORT_TYPE & ODM_AP)        // for repeater mode add by YuChen 2014.06.23
#ifdef UNIVERSAL_REPEATER
   ODM_CMNINFO_VXD_LINK,
#endif
#endif
   ODM_CMNINFO_AP_TOTAL_NUM,
//------------CALL BY VALUE-------------//
 
   //
   // Dynamic ptr array hook itms.
   //
   ODM_CMNINFO_STA_STATUS,
   ODM_CMNINFO_PHY_STATUS,
   ODM_CMNINFO_MAC_STATUS,
   
   ODM_CMNINFO_MAX,
 
 
}ODM_CMNINFO_E;
 
//
// 2011/10/20 MH Define ODM support ability.  ODM_CMNINFO_ABILITY
//
typedef enum _ODM_Support_Ability_Definition
{
   //
   // BB ODM section BIT 0-19
   //
   ODM_BB_DIG                    = BIT0,
   ODM_BB_RA_MASK                = BIT1,
   ODM_BB_DYNAMIC_TXPWR        = BIT2,
   ODM_BB_FA_CNT                    = BIT3,
   ODM_BB_RSSI_MONITOR            = BIT4,
   ODM_BB_CCK_PD                = BIT5,
   ODM_BB_ANT_DIV                = BIT6,
   ODM_BB_PWR_SAVE                = BIT7,
   ODM_BB_PWR_TRAIN                = BIT8,
   ODM_BB_RATE_ADAPTIVE            = BIT9,
   ODM_BB_PATH_DIV                = BIT10,
   ODM_BB_PSD                    = BIT11,
   ODM_BB_RXHP                    = BIT12,
   ODM_BB_ADAPTIVITY                = BIT13,
   ODM_BB_CFO_TRACKING            = BIT14,
   ODM_BB_NHM_CNT                = BIT15,
   ODM_BB_PRIMARY_CCA            = BIT16,
   ODM_BB_TXBF                = BIT17,
   
   //
   // MAC DM section BIT 20-23
   //
   ODM_MAC_EDCA_TURBO            = BIT20,
   ODM_MAC_EARLY_MODE            = BIT21,
   
   //
   // RF ODM section BIT 24-31
   //
   ODM_RF_TX_PWR_TRACK            = BIT24,
   ODM_RF_RX_GAIN_TRACK            = BIT25,
   ODM_RF_CALIBRATION            = BIT26,
   
}ODM_ABILITY_E;
 
//Move some non-DM enum,define, struc. form phydm.h to phydm_types.h by Dino
 
// ODM_CMNINFO_ONE_PATH_CCA
typedef enum tag_CCA_Path
{
   ODM_CCA_2R            = 0,
   ODM_CCA_1R_A        = 1,
   ODM_CCA_1R_B        = 2,
}ODM_CCA_PATH_E;
 
//move RAInfo to Phydm_RaInfo.h
 
//Remove struct  PATHDIV_PARA to odm_PathDiv.h 
 
//Remove struct to odm_PowerTracking.h by YuChen
//
// ODM Dynamic common info value definition
//
//Move AntDiv form phydm.h to Phydm_AntDiv.h by Dino
 
//move PathDiv to Phydm_PathDiv.h
 
typedef enum _BASEBAND_CONFIG_PHY_REG_PG_VALUE_TYPE{
   PHY_REG_PG_RELATIVE_VALUE = 0,
   PHY_REG_PG_EXACT_VALUE = 1
} PHY_REG_PG_TYPE;
 
//
// 2011/09/22 MH Copy from SD4 defined structure. We use to support PHY DM integration.
//
#if(DM_ODM_SUPPORT_TYPE & ODM_WIN)
#if (RT_PLATFORM != PLATFORM_LINUX)
typedef 
#endif
   
struct DM_Out_Source_Dynamic_Mechanism_Structure
#else// for AP,ADSL,CE Team
typedef  struct DM_Out_Source_Dynamic_Mechanism_Structure
#endif
{
   //RT_TIMER     FastAntTrainingTimer;
   //
   //    Add for different team use temporarily
   //
   PADAPTER        Adapter;        // For CE/NIC team
   prtl8192cd_priv    priv;            // For AP/ADSL team
   // WHen you use Adapter or priv pointer, you must make sure the pointer is ready.
   BOOLEAN            odm_ready;
 
#if(DM_ODM_SUPPORT_TYPE & (ODM_CE|ODM_WIN))
   rtl8192cd_priv        fake_priv;
#endif
#if(DM_ODM_SUPPORT_TYPE & (ODM_AP|ODM_ADSL))
   // ADSL_AP_BUILD_WORKAROUND
   ADAPTER            fake_adapter;
#endif
   
   PHY_REG_PG_TYPE        PhyRegPgValueType;
   u1Byte                PhyRegPgVersion;
 
   u8Byte            DebugComponents;
   u4Byte            DebugLevel;
   
   u4Byte            NumQryPhyStatusAll;     //CCK + OFDM
   u4Byte            LastNumQryPhyStatusAll; 
   u4Byte            RxPWDBAve;
   BOOLEAN            MPDIG_2G;         //off MPDIG
   u1Byte            Times_2G;
   
//------ ODM HANDLE, DRIVER NEEDS NOT TO HOOK------//
   BOOLEAN            bCckHighPower; 
   u1Byte            RFPathRxEnable;        // ODM_CMNINFO_RFPATH_ENABLE
   u1Byte            ControlChannel;
//------ ODM HANDLE, DRIVER NEEDS NOT TO HOOK------//
 
//--------REMOVED COMMON INFO----------//
   //u1Byte                PseudoMacPhyMode;
   //BOOLEAN            *BTCoexist;
   //BOOLEAN            PseudoBtCoexist;
   //u1Byte                OPMode;
   //BOOLEAN            bAPMode;
   //BOOLEAN            bClientMode;
   //BOOLEAN            bAdHocMode;
   //BOOLEAN            bSlaveOfDMSP;
//--------REMOVED COMMON INFO----------//
 
 
//1  COMMON INFORMATION
 
   //
   // Init Value
   //
//-----------HOOK BEFORE REG INIT-----------//    
    BOOLEAN         NoisyDecision;
    u4Byte          NoisyDecision_Smooth;
   // ODM Platform info AP/ADSL/CE/MP = 1/2/3/4
   u1Byte            SupportPlatform;        
   // ODM Support Ability DIG/RATR/TX_PWR_TRACK/ ¡K¡K = 1/2/3/¡K
   u4Byte            SupportAbility;
   // ODM PCIE/USB/SDIO = 1/2/3
   u1Byte            SupportInterface;            
   // ODM composite or independent. Bit oriented/ 92C+92D+ .... or any other type = 1/2/3/...
   u4Byte            SupportICType;    
   // Cut Version TestChip/A-cut/B-cut... = 0/1/2/3/...
   u1Byte            CutVersion;
   // Fab Version TSMC/UMC = 0/1
   u1Byte            FabVersion;
   // RF Type 4T4R/3T3R/2T2R/1T2R/1T1R/...
   u1Byte            RFType;
   u1Byte            RFEType;    
   // Board Type Normal/HighPower/MiniCard/SLIM/Combo/... = 0/1/2/3/4/...
   u1Byte            BoardType;
   u1Byte            PackageType;
   u1Byte            TypeGLNA;
   u1Byte            TypeGPA;
   u1Byte            TypeALNA;
   u1Byte            TypeAPA;
   // with external LNA  NO/Yes = 0/1
   u1Byte            ExtLNA; // 2G
   u1Byte            ExtLNA5G; //5G
   // with external PA  NO/Yes = 0/1
   u1Byte            ExtPA; // 2G
   u1Byte            ExtPA5G; //5G
   // with external TRSW  NO/Yes = 0/1
   u1Byte            ExtTRSW;
   u1Byte            ExtLNAGain; // 2G
   u1Byte            PatchID; //Customer ID
   BOOLEAN            bInHctTest;
   BOOLEAN            bWIFITest;
 
   BOOLEAN            bDualMacSmartConcurrent;
   u4Byte            BK_SupportAbility;
   u1Byte            AntDivType;
   BOOLEAN            ConfigBBRF;
   u1Byte            odm_Regulation2_4G;
   u1Byte            odm_Regulation5G;
   u1Byte            IQKFWOffload;
   u8                is_nbi_enable;
//-----------HOOK BEFORE REG INIT-----------//    
 
   //
   // Dynamic Value
   //    
//--------- POINTER REFERENCE-----------//
 
   u1Byte            u1Byte_temp;
   BOOLEAN            BOOLEAN_temp;
   PADAPTER        PADAPTER_temp;
   
   // MAC PHY Mode SMSP/DMSP/DMDP = 0/1/2
   u1Byte            *pMacPhyMode;
   //TX Unicast byte count
   u8Byte            *pNumTxBytesUnicast;
   //RX Unicast byte count
   u8Byte            *pNumRxBytesUnicast;
   // Wireless mode B/G/A/N = BIT0/BIT1/BIT2/BIT3
   u1Byte            *pWirelessMode; //ODM_WIRELESS_MODE_E
   // Frequence band 2.4G/5G = 0/1
   u1Byte            *pBandType;
   // Secondary channel offset don't_care/below/above = 0/1/2
   u1Byte            *pSecChOffset;
   // Security mode Open/WEP/AES/TKIP = 0/1/2/3
   u1Byte            *pSecurity;
   // BW info 20M/40M/80M = 0/1/2
   u1Byte            *pBandWidth;
     // Central channel location Ch1/Ch2/....
   u1Byte            *pChannel;    //central channel number
   BOOLEAN            DPK_Done;
   // Common info for 92D DMSP
   
   BOOLEAN            *pbGetValueFromOtherMac;
   PADAPTER        *pBuddyAdapter;
   BOOLEAN            *pbMasterOfDMSP; //MAC0: master, MAC1: slave
   // Common info for Status
   BOOLEAN            *pbScanInProcess;
   BOOLEAN            *pbPowerSaving;
   // CCA Path 2-path/path-A/path-B = 0/1/2; using ODM_CCA_PATH_E.
   u1Byte            *pOnePathCCA;
   //pMgntInfo->AntennaTest
   u1Byte            *pAntennaTest;
   BOOLEAN            *pbNet_closed;
   //u1Byte            *pAidMap;
   u1Byte            *pu1ForcedIgiLb;
   BOOLEAN            *pIsFcsModeEnable;
/*--------- For 8723B IQK-----------*/
   BOOLEAN            *pIs1Antenna;
   u1Byte            *pRFDefaultPath;
   // 0:S1, 1:S0
   
//--------- POINTER REFERENCE-----------//
   pu2Byte            pForcedDataRate;
//------------CALL BY VALUE-------------//
   BOOLEAN            bLinkInProcess;
   BOOLEAN            bWIFI_Direct;
   BOOLEAN            bWIFI_Display;
   BOOLEAN            bLinked;
   BOOLEAN            bsta_state;
#if(DM_ODM_SUPPORT_TYPE & ODM_AP)        // for repeater mode add by YuChen 2014.06.23
#ifdef UNIVERSAL_REPEATER
   BOOLEAN            VXD_bLinked;
#endif
#endif                                    // for repeater mode add by YuChen 2014.06.23    
   u1Byte            RSSI_Min;    
   u1Byte            InterfaceIndex; /*Add for 92D  dual MAC: 0--Mac0 1--Mac1*/
   BOOLEAN            bIsMPChip;
   BOOLEAN            bOneEntryOnly;
   BOOLEAN            mp_mode;
   u4Byte            OneEntry_MACID;
   u1Byte            pre_number_linked_client;    
   u1Byte            number_linked_client;
   u1Byte            pre_number_active_client;    
   u1Byte            number_active_client;
   // Common info for BTDM
   BOOLEAN            bBtEnabled;            // BT is enabled
   BOOLEAN            bBtConnectProcess;    // BT HS is under connection progress.
   u1Byte            btHsRssi;                // BT HS mode wifi rssi value.
   BOOLEAN            bBtHsOperation;        // BT HS mode is under progress
   u1Byte            btHsDigVal;            // use BT rssi to decide the DIG value
   BOOLEAN            bBtDisableEdcaTurbo;    // Under some condition, don't enable the EDCA Turbo
   BOOLEAN            bBtBusy;               // BT is busy.
   BOOLEAN            bBtLimitedDig;           // BT is busy.
//------------CALL BY VALUE-------------//
   u1Byte            RSSI_A;
   u1Byte            RSSI_B;
   u1Byte            RSSI_C;
   u1Byte            RSSI_D;
   u8Byte            RSSI_TRSW;    
   u8Byte            RSSI_TRSW_H;
   u8Byte            RSSI_TRSW_L;    
   u8Byte            RSSI_TRSW_iso;
   u1Byte            TRXAntStatus;
   u1Byte            cck_lna_idx;
   u1Byte            cck_vga_idx;
   u1Byte            ofdm_agc_idx[4];
 
   u1Byte            RxRate;
   BOOLEAN            bNoisyState;
   u1Byte            TxRate;
   u1Byte            LinkedInterval;
   u1Byte            preChannel;
   u4Byte            TxagcOffsetValueA;
   BOOLEAN            IsTxagcOffsetPositiveA;
   u4Byte            TxagcOffsetValueB;
   BOOLEAN            IsTxagcOffsetPositiveB;
   u8Byte            lastTxOkCnt;
   u8Byte            lastRxOkCnt;
   u4Byte            BbSwingOffsetA;
   BOOLEAN            IsBbSwingOffsetPositiveA;
   u4Byte            BbSwingOffsetB;
   BOOLEAN            IsBbSwingOffsetPositiveB;
   u1Byte            antdiv_rssi;
   u1Byte            fat_comb_a;
   u1Byte            fat_comb_b;
   u1Byte            antdiv_intvl;
   u1Byte            AntType;
   u1Byte            pre_AntType;
   u1Byte            antdiv_period;
   u1Byte            antdiv_select;
   u1Byte            path_select;    
   u1Byte            antdiv_evm_en;
   u1Byte            bdc_holdstate;
   u1Byte            NdpaPeriod;
   BOOLEAN            H2C_RARpt_connect;
   BOOLEAN            cck_agc_report_type;
   
   u1Byte            dm_dig_max_TH;
   u1Byte             dm_dig_min_TH;
   u1Byte             print_agc;
   u1Byte            consecutive_idlel_time;    /*unit: second*/
   //For Adaptivtiy
   u2Byte            NHM_cnt_0;
   u2Byte            NHM_cnt_1;
   s1Byte            TH_L2H_ini;
   s1Byte            TH_EDCCA_HL_diff;
   s1Byte            TH_L2H_ini_mode2;
   s1Byte            TH_EDCCA_HL_diff_mode2;
   BOOLEAN            Carrier_Sense_enable;
   u1Byte            Adaptivity_IGI_upper;
   BOOLEAN            adaptivity_flag;
   u1Byte            DCbackoff;
   BOOLEAN            Adaptivity_enable;
   u1Byte            APTotalNum;
   BOOLEAN            EDCCA_enable;
   ADAPTIVITY_STATISTICS    Adaptivity;
   //For Adaptivtiy
   u1Byte            LastUSBHub;
   u1Byte            TxBfDataRate;
   
   u1Byte            c2h_cmd_start;
   u1Byte            fw_debug_trace[60]; 
   u1Byte            pre_c2h_seq;
   BOOLEAN            fw_buff_is_enpty;
   u4Byte            data_frame_num;
 
#if (DM_ODM_SUPPORT_TYPE &  (ODM_CE))
   ODM_NOISE_MONITOR noise_level;//[ODM_MAX_CHANNEL_NUM];
#endif
   //
   //2 Define STA info.
   // _ODM_STA_INFO
   // 2012/01/12 MH For MP, we need to reduce one array pointer for default port.??
   PSTA_INFO_T        pODM_StaInfo[ODM_ASSOCIATE_ENTRY_NUM];
   u2Byte            platform2phydm_macid_table[ODM_ASSOCIATE_ENTRY_NUM];        /* platform_macid_table[platform_macid] = phydm_macid */
 
#if (RATE_ADAPTIVE_SUPPORT == 1)
   u2Byte             CurrminRptTime;
   ODM_RA_INFO_T   RAInfo[ODM_ASSOCIATE_ENTRY_NUM]; //Use MacID as array index. STA MacID=0, VWiFi Client MacID={1, ODM_ASSOCIATE_ENTRY_NUM-1} //YJ,add,120119
#endif
   //
   // 2012/02/14 MH Add to share 88E ra with other SW team.
   // We need to colelct all support abilit to a proper area.
   //
   BOOLEAN                RaSupport88E;
 
   // Define ...........
 
   // Latest packet phy info (ODM write)
   ODM_PHY_DBG_INFO_T     PhyDbgInfo;
   //PHY_INFO_88E        PhyInfo;
 
   // Latest packet phy info (ODM write)
   ODM_MAC_INFO        *pMacInfo;
   //MAC_INFO_88E        MacInfo;
 
   // Different Team independt structure??
 
   //
   //TX_RTP_CMN        TX_retrpo;
   //TX_RTP_88E        TX_retrpo;
   //TX_RTP_8195        TX_retrpo;
 
   //
   //ODM Structure
   //
        #if (defined(CONFIG_HW_ANTENNA_DIVERSITY))
   #if (DM_ODM_SUPPORT_TYPE & (ODM_AP))
   BDC_T                    DM_BdcTable;
   #endif
        #endif
   FAT_T                        DM_FatTable;
   DIG_T                        DM_DigTable;
   PS_T                        DM_PSTable;
   Pri_CCA_T                    DM_PriCCA;
#if (DM_ODM_SUPPORT_TYPE & ODM_WIN)
   RXHP_T                        DM_RXHP_Table;
#endif
   RA_T                        DM_RA_Table;  
   FALSE_ALARM_STATISTICS        FalseAlmCnt;
   FALSE_ALARM_STATISTICS        FlaseAlmCntBuddyAdapter;
   SWAT_T                        DM_SWAT_Table;
   BOOLEAN                        RSSI_test;
   CFO_TRACKING                    DM_CfoTrack;
   ACS                            DM_ACS;
 
 
#if (RTL8814A_SUPPORT == 1)
   IQK_INFO    IQK_info;
#endif /* (RTL8814A_SUPPORT==1) */
 
 
#if (DM_ODM_SUPPORT_TYPE & ODM_WIN)
   //Path Div Struct
   PATHDIV_PARA    pathIQK;
#endif
#if(defined(CONFIG_PATH_DIVERSITY))
   PATHDIV_T    DM_PathDiv;
#endif    
 
   EDCA_T        DM_EDCA_Table;
   u4Byte        WMMEDCA_BE;
 
   // Copy from SD4 structure
   //
   // ==================================================
   //
 
   //common
   //u1Byte        DM_Type;    
   //u1Byte    PSD_Report_RXHP[80];   // Add By Gary
   //u1Byte    PSD_func_flag;               // Add By Gary
   //for DIG
   //u1Byte        bDMInitialGainEnable;
   //u1Byte        binitialized; // for dm_initial_gain_Multi_STA use.
   //for Antenna diversity
   //u8    AntDivCfg;// 0:OFF , 1:ON, 2:by efuse
   //PSTA_INFO_T RSSI_target;
 
   BOOLEAN            *pbDriverStopped;
   BOOLEAN            *pbDriverIsGoingToPnpSetPowerSleep;
   BOOLEAN            *pinit_adpt_in_progress;
 
   //PSD
   BOOLEAN            bUserAssignLevel;
   RT_TIMER         PSDTimer;
   u1Byte            RSSI_BT;            //come from BT
   BOOLEAN            bPSDinProcess;
   BOOLEAN            bPSDactive;
   BOOLEAN            bDMInitialGainEnable;
 
   //MPT DIG
   RT_TIMER         MPT_DIGTimer;
   
   //for rate adaptive, in fact,  88c/92c fw will handle this
   u1Byte            bUseRAMask;
 
   ODM_RATE_ADAPTIVE    RateAdaptive;
//#if (DM_ODM_SUPPORT_TYPE & (ODM_WIN | ODM_CE))
#if(defined(CONFIG_ANT_DETECTION))
   ANT_DETECTED_INFO    AntDetectedInfo; // Antenna detected information for RSSI tool
#endif
   ODM_RF_CAL_T    RFCalibrateInfo;
 
   
   //
   // Dynamic ATC switch
   //
 
#if (DM_ODM_SUPPORT_TYPE &  (ODM_WIN|ODM_CE))    
   //
   // Power Training
   //
   BOOLEAN            bDisablePowerTraining;
   u1Byte            ForcePowerTrainingState;
   BOOLEAN            bChangeState;
   u4Byte            PT_score;
   u8Byte            OFDM_RX_Cnt;
   u8Byte            CCK_RX_Cnt;
#endif
 
   //
   // ODM system resource.
   //
 
   // ODM relative time.
   RT_TIMER                 PathDivSwitchTimer;
   //2011.09.27 add for Path Diversity
   RT_TIMER                CCKPathDiversityTimer;
   RT_TIMER     FastAntTrainingTimer;
#ifdef ODM_EVM_ENHANCE_ANTDIV
   RT_TIMER             EVM_FastAntTrainingTimer;
#endif
   RT_TIMER        sbdcnt_timer;
 
   // ODM relative workitem.
#if (DM_ODM_SUPPORT_TYPE == ODM_WIN)
#if USE_WORKITEM
   RT_WORK_ITEM            PathDivSwitchWorkitem;
   RT_WORK_ITEM            CCKPathDiversityWorkitem;
   RT_WORK_ITEM            FastAntTrainingWorkitem;
   RT_WORK_ITEM            MPT_DIGWorkitem;
   RT_WORK_ITEM            RaRptWorkitem;
   RT_WORK_ITEM            sbdcnt_workitem;
#endif
 
#if (BEAMFORMING_SUPPORT == 1)
   RT_BEAMFORMING_INFO BeamformingInfo;
#endif 
#endif
 
#if(DM_ODM_SUPPORT_TYPE & ODM_WIN)
   
#if (RT_PLATFORM != PLATFORM_LINUX)
} DM_ODM_T, *PDM_ODM_T;        // DM_Dynamic_Mechanism_Structure
#else
};
#endif    
 
#else// for AP,ADSL,CE Team
} DM_ODM_T, *PDM_ODM_T;        // DM_Dynamic_Mechanism_Structure
#endif
 
 
typedef enum _PHYDM_STRUCTURE_TYPE{
   PHYDM_FALSEALMCNT,
   PHYDM_CFOTRACK,
   PHYDM_ADAPTIVITY,
   PHYDM_ROMINFO,
   
}PHYDM_STRUCTURE_TYPE;
 
 
 
 typedef enum _ODM_RF_CONTENT{
   odm_radioa_txt = 0x1000,
   odm_radiob_txt = 0x1001,
   odm_radioc_txt = 0x1002,
   odm_radiod_txt = 0x1003
} ODM_RF_CONTENT;
 
typedef enum _ODM_BB_Config_Type{
   CONFIG_BB_PHY_REG,   
   CONFIG_BB_AGC_TAB,   
   CONFIG_BB_AGC_TAB_2G,
   CONFIG_BB_AGC_TAB_5G, 
   CONFIG_BB_PHY_REG_PG,
   CONFIG_BB_PHY_REG_MP,
   CONFIG_BB_AGC_TAB_DIFF,
} ODM_BB_Config_Type, *PODM_BB_Config_Type;
 
typedef enum _ODM_RF_Config_Type{ 
   CONFIG_RF_RADIO,
    CONFIG_RF_TXPWR_LMT,
} ODM_RF_Config_Type, *PODM_RF_Config_Type;
 
typedef enum _ODM_FW_Config_Type{
    CONFIG_FW_NIC,
    CONFIG_FW_NIC_2,
    CONFIG_FW_AP,
    CONFIG_FW_AP_2,
    CONFIG_FW_MP,
    CONFIG_FW_WoWLAN,
    CONFIG_FW_WoWLAN_2,
    CONFIG_FW_AP_WoWLAN,
    CONFIG_FW_BT,
} ODM_FW_Config_Type;
 
// Status code
#if (DM_ODM_SUPPORT_TYPE != ODM_WIN)
typedef enum _RT_STATUS{
   RT_STATUS_SUCCESS,
   RT_STATUS_FAILURE,
   RT_STATUS_PENDING,
   RT_STATUS_RESOURCE,
   RT_STATUS_INVALID_CONTEXT,
   RT_STATUS_INVALID_PARAMETER,
   RT_STATUS_NOT_SUPPORT,
   RT_STATUS_OS_API_FAILED,
}RT_STATUS,*PRT_STATUS;
#endif // end of RT_STATUS definition
 
#ifdef REMOVE_PACK
#pragma pack()
#endif
 
//#include "odm_function.h"
 
//3===========================================================
//3 DIG
//3===========================================================
 
//Remove DIG by Yuchen
 
//3===========================================================
//3 AGC RX High Power Mode
//3===========================================================
#define          LNA_Low_Gain_1                      0x64
#define          LNA_Low_Gain_2                      0x5A
#define          LNA_Low_Gain_3                      0x58
 
#define          FA_RXHP_TH1                           5000
#define          FA_RXHP_TH2                           1500
#define          FA_RXHP_TH3                             800
#define          FA_RXHP_TH4                             600
#define          FA_RXHP_TH5                             500
 
//3===========================================================
//3 EDCA
//3===========================================================
 
//3===========================================================
//3 Dynamic Tx Power
//3===========================================================
//Dynamic Tx Power Control Threshold
 
//Remove By YuChen
 
//3===========================================================
//3 Tx Power Tracking
//3===========================================================
 
 
 
//3===========================================================
//3 Rate Adaptive
//3===========================================================
//Remove to odm_RaInfo.h by RS_James
 
//3===========================================================
//3 BB Power Save
//3===========================================================
 
typedef enum tag_1R_CCA_Type_Definition
{
   CCA_1R =0,
   CCA_2R = 1,
   CCA_MAX = 2,
}DM_1R_CCA_E;
 
typedef enum tag_RF_Type_Definition
{
   RF_Save =0,
   RF_Normal = 1,
   RF_MAX = 2,
}DM_RF_E;
 
 
//
// Extern Global Variables.
//
//PowerTracking move to odm_powerTrakcing.h by YuChen
//
// check Sta pointer valid or not
//
#if (DM_ODM_SUPPORT_TYPE & (ODM_AP|ODM_ADSL))
#define IS_STA_VALID(pSta)        (pSta && pSta->expire_to)
#elif (DM_ODM_SUPPORT_TYPE & ODM_WIN)
#define IS_STA_VALID(pSta)        (pSta && pSta->bUsed)
#else
#define IS_STA_VALID(pSta)        (pSta)
#endif
 
//Remove DIG by yuchen
 
//Remove BB power saving by Yuchen
 
//remove PT by yuchen
 
//ODM_RAStateCheck() Remove by RS_James
 
#if(DM_ODM_SUPPORT_TYPE & (ODM_WIN|ODM_AP|ODM_ADSL))
//============================================================
// function prototype
//============================================================
//#define DM_ChangeDynamicInitGainThresh        ODM_ChangeDynamicInitGainThresh
//void    ODM_ChangeDynamicInitGainThresh(IN    PADAPTER    pAdapter,
//                                            IN    INT32        DM_Type,
//                                            IN    INT32        DM_Value);
 
//Remove DIG by yuchen
 
 
BOOLEAN
ODM_CheckPowerStatus(
   IN    PADAPTER        Adapter
   );
 
 
//Remove ODM_RateAdaptiveStateApInit() by RS_James
 
//Remove Edca by YuChen
 
#endif
 
 
 
u4Byte odm_ConvertTo_dB(u4Byte Value);
 
u4Byte odm_ConvertTo_linear(u4Byte Value);
 
#if((DM_ODM_SUPPORT_TYPE==ODM_WIN)||(DM_ODM_SUPPORT_TYPE==ODM_CE))
 
u4Byte
GetPSDData(
   PDM_ODM_T    pDM_Odm,
   unsigned int     point,
   u1Byte initial_gain_psd);
 
#endif
 
#if (DM_ODM_SUPPORT_TYPE & ODM_WIN)    
VOID
ODM_DMWatchdog_LPS(
   IN        PDM_ODM_T        pDM_Odm
);
#endif
 
 
s4Byte
ODM_PWdB_Conversion(
    IN  s4Byte X,
    IN  u4Byte TotalBit,
    IN  u4Byte DecimalBit
    );
 
s4Byte
ODM_SignConversion(
    IN  s4Byte value,
    IN  u4Byte TotalBit
    );
 
VOID 
ODM_DMInit(
 IN    PDM_ODM_T    pDM_Odm
);
 
VOID
ODM_DMReset(
   IN    PDM_ODM_T    pDM_Odm
   );
 
VOID
phydm_support_ablity_debug(
   IN        PVOID        pDM_VOID,
   IN        u4Byte        *const dm_value,
   IN        u4Byte            *_used,
   OUT        char                *output,
   IN        u4Byte            *_out_len
   );
 
VOID
ODM_DMWatchdog(
   IN        PDM_ODM_T            pDM_Odm            // For common use in the future
   );
 
VOID
ODM_CmnInfoInit(
   IN        PDM_ODM_T        pDM_Odm,
   IN        ODM_CMNINFO_E    CmnInfo,
   IN        u4Byte            Value    
   );
 
VOID
ODM_CmnInfoHook(
   IN        PDM_ODM_T        pDM_Odm,
   IN        ODM_CMNINFO_E    CmnInfo,
   IN        PVOID            pValue    
   );
 
VOID
ODM_CmnInfoPtrArrayHook(
   IN        PDM_ODM_T        pDM_Odm,
   IN        ODM_CMNINFO_E    CmnInfo,
   IN        u2Byte            Index,
   IN        PVOID            pValue    
   );
 
VOID
ODM_CmnInfoUpdate(
   IN        PDM_ODM_T        pDM_Odm,
   IN        u4Byte            CmnInfo,
   IN        u8Byte            Value    
   );
 
#if(DM_ODM_SUPPORT_TYPE==ODM_AP)
VOID 
ODM_InitAllThreads(
    IN PDM_ODM_T    pDM_Odm 
    );
 
VOID
ODM_StopAllThreads(
   IN PDM_ODM_T    pDM_Odm 
   );
#endif
 
VOID 
ODM_InitAllTimers(
    IN PDM_ODM_T    pDM_Odm 
    );
 
VOID 
ODM_CancelAllTimers(
    IN PDM_ODM_T    pDM_Odm 
    );
 
VOID
ODM_ReleaseAllTimers(
    IN PDM_ODM_T    pDM_Odm 
    );
 
 
 
 
#if (DM_ODM_SUPPORT_TYPE == ODM_WIN)
VOID ODM_InitAllWorkItems(IN PDM_ODM_T    pDM_Odm );
VOID ODM_FreeAllWorkItems(IN PDM_ODM_T    pDM_Odm );
 
 
 
u8Byte
PlatformDivision64(
   IN u8Byte    x,
   IN u8Byte    y
);
 
//====================================================
//3 PathDiV End
//====================================================
 
 
#define DM_ChangeDynamicInitGainThresh        ODM_ChangeDynamicInitGainThresh
//void    ODM_ChangeDynamicInitGainThresh(IN    PADAPTER    pAdapter,
//                                            IN    INT32        DM_Type,
//                                            IN    INT32        DM_Value);
//
// PathDiveristy Remove by RS_James
 
typedef enum tag_DIG_Connect_Definition
{
   DIG_STA_DISCONNECT = 0,    
   DIG_STA_CONNECT = 1,
   DIG_STA_BEFORE_CONNECT = 2,
   DIG_MultiSTA_DISCONNECT = 3,
   DIG_MultiSTA_CONNECT = 4,
   DIG_CONNECT_MAX
}DM_DIG_CONNECT_E;
 
 
//
// 2012/01/12 MH Check afapter status. Temp fix BSOD.
//
#define    HAL_ADAPTER_STS_CHK(pDM_Odm)\
   if (pDM_Odm->Adapter == NULL)\
   {\
       return;\
   }\
 
 
//
// For new definition in MP temporarily fro power tracking,
//
/*
#define odm_TXPowerTrackingDirectCall(_Adapter)    \
   IS_HARDWARE_TYPE_8192D(_Adapter) ? odm_TXPowerTrackingCallback_ThermalMeter_92D(_Adapter) : \
   IS_HARDWARE_TYPE_8192C(_Adapter) ? odm_TXPowerTrackingCallback_ThermalMeter_92C(_Adapter) : \
   IS_HARDWARE_TYPE_8723A(_Adapter) ? odm_TXPowerTrackingCallback_ThermalMeter_8723A(_Adapter) :\
   ODM_TXPowerTrackingCallback_ThermalMeter(_Adapter)
*/
 
 
#endif    // #if (DM_ODM_SUPPORT_TYPE == ODM_WIN)
 
VOID
ODM_AsocEntry_Init(
   IN        PDM_ODM_T        pDM_Odm
   );
 
//Remove ODM_DynamicARFBSelect() by RS_James
 
PVOID
PhyDM_Get_Structure(
   IN        PDM_ODM_T        pDM_Odm,
   IN        u1Byte            Structure_Type
);
 
#if (DM_ODM_SUPPORT_TYPE == ODM_WIN) ||(DM_ODM_SUPPORT_TYPE == ODM_CE)
/*===========================================================*/
/* The following is for compile only*/
/*===========================================================*/
 
#define    IS_HARDWARE_TYPE_8723A(_Adapter)            FALSE
#define IS_HARDWARE_TYPE_8723AE(_Adapter)            FALSE
#define    IS_HARDWARE_TYPE_8192C(_Adapter)            FALSE
#define    IS_HARDWARE_TYPE_8192D(_Adapter)            FALSE
#define    RF_T_METER_92D                    0x42
 
 
#define SET_TX_DESC_ANTSEL_A_92C(__pTxDesc, __Value) SET_BITS_TO_LE_1BYTE(__pTxDesc+8+3, 0, 1, __Value)
#define SET_TX_DESC_TX_ANTL_92C(__pTxDesc, __Value) SET_BITS_TO_LE_1BYTE(__pTxDesc+8+3, 4, 2, __Value)
#define SET_TX_DESC_TX_ANT_HT_92C(__pTxDesc, __Value) SET_BITS_TO_LE_1BYTE(__pTxDesc+8+3, 6, 2, __Value)
#define SET_TX_DESC_TX_ANT_CCK_92C(__pTxDesc, __Value) SET_BITS_TO_LE_1BYTE(__pTxDesc+8+3, 2, 2, __Value)
 
#define GET_RX_STATUS_DESC_RX_MCS(__pRxStatusDesc)                LE_BITS_TO_1BYTE( __pRxStatusDesc+12, 0, 6)
 
#define        RX_HAL_IS_CCK_RATE_92C(pDesc)\
           (GET_RX_STATUS_DESC_RX_MCS(pDesc) == DESC_RATE1M ||\
           GET_RX_STATUS_DESC_RX_MCS(pDesc) == DESC_RATE2M ||\
           GET_RX_STATUS_DESC_RX_MCS(pDesc) == DESC_RATE5_5M ||\
           GET_RX_STATUS_DESC_RX_MCS(pDesc) == DESC_RATE11M)
 
#define        H2C_92C_PSD_RESULT                16
 
#define        rConfig_ram64x16                0xb2c
 
#define TARGET_CHNL_NUM_2G_5G    59
#if (DM_ODM_SUPPORT_TYPE == ODM_WIN)
 
VOID
FillH2CCmd92C(    
   IN    PADAPTER        Adapter,
   IN    u1Byte     ElementID,
   IN    u4Byte     CmdLen,
   IN    pu1Byte    pCmdBuffer
);
VOID
PHY_SetTxPowerLevel8192C(
   IN    PADAPTER        Adapter,
   IN    u1Byte            channel
   );
u1Byte GetRightChnlPlaceforIQK(u1Byte chnl);
 
#endif
 
//===========================================================
#endif //#if (DM_ODM_SUPPORT_TYPE == ODM_WIN)
 
#if (DM_ODM_SUPPORT_TYPE == ODM_CE)
void odm_dtc(PDM_ODM_T pDM_Odm);
#endif /* #if (DM_ODM_SUPPORT_TYPE == ODM_CE) */
 
 
VOID phydm_NoisyDetection(IN    PDM_ODM_T    pDM_Odm    );
 
void
phydm_receiver_blocking(
   IN        PVOID        pDM_VOID
);
 
#endif