blob: da6491379738532337095a5b8492b74e517d8940 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
|
#ifndef __INC_PRECOMPINC_H
#define __INC_PRECOMPINC_H
#ifndef __ECOS
//HAL Shared with Driver
#include "StatusCode.h"
#include "HalDbgCmd.h"
//Prototype
#include "HalDef.h"
//MAC Header provided by SD1 HWSD
#include "HalHWCfg.h"
#include "HalComTXDesc.h"
#include "HalComRXDesc.h"
#include "HalComBit.h"
#include "HalComReg.h"
#include "HalComPhyBit.h"
#include "HalComPhyReg.h"
//Instance
#include "HalCommon.h"
#if IS_RTL88XX_GENERATION
#include "Hal88XXPwrSeqCmd.h"
#include "Hal88XXReg.h"
#include "Hal88XXDesc.h"
#include "Hal88XXTxDesc.h"
#include "Hal88XXRxDesc.h"
#include "Hal88XXFirmware.h"
#include "Hal88XXIsr.h"
#include "Hal88XXDebug.h"
#include "Hal88XXPhyCfg.h"
#if IS_RTL8881A_SERIES
#include "Hal8881APwrSeqCmd.h"
#include "Hal8881ADef.h"
#include "Hal8881APhyCfg.h"
#endif
#if IS_RTL8192E_SERIES
#include "Hal8192EPwrSeqCmd.h"
#include "Hal8192EDef.h"
#include "Hal8192EPhyCfg.h"
#endif
#if IS_EXIST_RTL8192EE
#include "Hal8192EEDef.h"
#endif
#include "Hal88XXDef.h"
#endif //IS_RTL88XX_GENERATION
#else
//HAL Shared with Driver
#include "Include/StatusCode.h"
#include "HalDbgCmd.h"
//Prototype
#include "HalDef.h"
//MAC Header provided by SD1 HWSD
#include "HalHeader/HalHWCfg.h"
#include "HalHeader/HalComTXDesc.h"
#include "HalHeader/HalComRXDesc.h"
#include "HalHeader/HalComBit.h"
#include "HalHeader/HalComReg.h"
#include "HalHeader/HalComPhyBit.h"
#include "HalHeader/HalComPhyReg.h"
//Instance
#include "HalCommon.h"
#if IS_RTL88XX_GENERATION
#include "RTL88XX/Hal88XXPwrSeqCmd.h"
#include "RTL88XX/Hal88XXReg.h"
#include "RTL88XX/Hal88XXDesc.h"
#include "RTL88XX/Hal88XXTxDesc.h"
#include "RTL88XX/Hal88XXRxDesc.h"
#include "RTL88XX/Hal88XXFirmware.h"
#include "RTL88XX/Hal88XXIsr.h"
#include "RTL88XX/Hal88XXDebug.h"
#include "RTL88XX/Hal88XXPhyCfg.h"
#if IS_RTL8881A_SERIES
#include "RTL88XX/RTL8881A/Hal8881APwrSeqCmd.h"
#include "RTL88XX/RTL8881A/Hal8881ADef.h"
#include "RTL88XX/RTL8881A/Hal8881APhyCfg.h"
#endif
#if IS_RTL8192E_SERIES
#include "RTL88XX/RTL8192E/Hal8192EPwrSeqCmd.h"
#include "RTL88XX/RTL8192E/Hal8192EDef.h"
#include "RTL88XX/RTL8192E/Hal8192EPhyCfg.h"
#endif
#if IS_EXIST_RTL8192EE
#include "RTL88XX/RTL8192E/RTL8192EE/Hal8192EEDef.h"
#endif
#include "RTL88XX/Hal88XXDef.h"
#endif //IS_RTL88XX_GENERATION
#endif //ECOS
#endif //#ifndef __INC_PRECOMPINC_H
|