hc
2023-12-11 6778948f9de86c3cfaf36725a7c87dcff9ba247f
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
/******************************************************************************
 *
 * 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 __HAL_IC_CFG_H__
#define __HAL_IC_CFG_H__
 
#define RTL8188E_SUPPORT                0
#define RTL8812A_SUPPORT                0
#define RTL8821A_SUPPORT                0
#define RTL8723B_SUPPORT                0
#define RTL8723D_SUPPORT                0
#define RTL8192E_SUPPORT                0
#define RTL8814A_SUPPORT                0
#define RTL8195A_SUPPORT                0
#define RTL8197F_SUPPORT                0
#define RTL8703B_SUPPORT                0
#define RTL8188F_SUPPORT                0
#define RTL8822B_SUPPORT                0
#define RTL8821B_SUPPORT                0
#define RTL8821C_SUPPORT                0
 
/*#if (RTL8188E_SUPPORT==1)*/
#define RATE_ADAPTIVE_SUPPORT            0
#define POWER_TRAINING_ACTIVE            0
#define PHYDM_LA_MODE_SUPPORT            0
 
#ifdef CONFIG_MULTIDRV
#endif
 
#ifdef CONFIG_RTL8188E
   #undef RTL8188E_SUPPORT
   #undef RATE_ADAPTIVE_SUPPORT
   #undef POWER_TRAINING_ACTIVE
 
   #define RTL8188E_SUPPORT                1
   #define RATE_ADAPTIVE_SUPPORT            1
   #define POWER_TRAINING_ACTIVE            1
#endif
 
#ifdef CONFIG_RTL8812A
   #undef RTL8812A_SUPPORT
   #define RTL8812A_SUPPORT                1
#endif
 
#ifdef CONFIG_RTL8821A
   #undef RTL8821A_SUPPORT
   #define RTL8821A_SUPPORT                1
#endif
 
#ifdef CONFIG_RTL8192E
   #undef RTL8192E_SUPPORT
   #define RTL8192E_SUPPORT                1
#endif
 
#ifdef CONFIG_RTL8723B
   #undef RTL8723B_SUPPORT
   #define RTL8723B_SUPPORT                1
#endif
 
#ifdef CONFIG_RTL8723D
   #undef RTL8723D_SUPPORT
   #define RTL8723D_SUPPORT                1
#endif
 
#ifdef CONFIG_RTL8814A
   #undef RTL8814A_SUPPORT
   #define RTL8814A_SUPPORT                1
#endif
 
#ifdef CONFIG_RTL8703B
   #undef RTL8703B_SUPPORT
   #define RTL8703B_SUPPORT                1
#endif
 
#ifdef CONFIG_RTL8188F
   #undef RTL8188F_SUPPORT
   #define RTL8188F_SUPPORT                1
#endif
 
#ifdef CONFIG_RTL8822B
   #undef RTL8822B_SUPPORT
   #define RTL8822B_SUPPORT                1
#endif
   #define RTW_TX_PA_BIAS    /* Adjust TX PA Bias from eFuse */
 
#ifdef CONFIG_RTL8821C
   #undef RTL8821C_SUPPORT
   #define RTL8821C_SUPPORT                1
#endif
 
#endif /*__HAL_IC_CFG_H__*/