1 /******************************************************************************
3 * Copyright(c) 2009-2012 Realtek Corporation.
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of version 2 of the GNU General Public License as
7 * published by the Free Software Foundation.
9 * This program is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
14 * You should have received a copy of the GNU General Public License along with
15 * this program; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
18 * The full GNU General Public License is included in this distribution in the
19 * file called LICENSE.
21 * Contact Information:
22 * wlanfae <wlanfae@realtek.com>
23 * Realtek Corporation, No. 2, Innovation Road II, Hsinchu Science Park,
24 * Hsinchu 300, Taiwan.
26 * Larry Finger <Larry.Finger@lwfinger.net>
28 *****************************************************************************/
37 static bool _rtl92ce_phy_rf6052_config_parafile(struct ieee80211_hw
*hw
);
39 void rtl92ce_phy_rf6052_set_bandwidth(struct ieee80211_hw
*hw
, u8 bandwidth
)
41 struct rtl_priv
*rtlpriv
= rtl_priv(hw
);
42 struct rtl_phy
*rtlphy
= &(rtlpriv
->phy
);
45 case HT_CHANNEL_WIDTH_20
:
46 rtlphy
->rfreg_chnlval
[0] = ((rtlphy
->rfreg_chnlval
[0] &
47 0xfffff3ff) | 0x0400);
48 rtl_set_rfreg(hw
, RF90_PATH_A
, RF_CHNLBW
, RFREG_OFFSET_MASK
,
49 rtlphy
->rfreg_chnlval
[0]);
51 case HT_CHANNEL_WIDTH_20_40
:
52 rtlphy
->rfreg_chnlval
[0] = ((rtlphy
->rfreg_chnlval
[0] &
54 rtl_set_rfreg(hw
, RF90_PATH_A
, RF_CHNLBW
, RFREG_OFFSET_MASK
,
55 rtlphy
->rfreg_chnlval
[0]);
58 RT_TRACE(rtlpriv
, COMP_ERR
, DBG_EMERG
,
59 "unknown bandwidth: %#X\n", bandwidth
);
64 void rtl92ce_phy_rf6052_set_cck_txpower(struct ieee80211_hw
*hw
,
67 struct rtl_priv
*rtlpriv
= rtl_priv(hw
);
68 struct rtl_phy
*rtlphy
= &(rtlpriv
->phy
);
69 struct rtl_mac
*mac
= rtl_mac(rtl_priv(hw
));
70 struct rtl_efuse
*rtlefuse
= rtl_efuse(rtl_priv(hw
));
71 u32 tx_agc
[2] = {0, 0}, tmpval
;
72 bool turbo_scanoff
= false;
76 if (rtlefuse
->eeprom_regulatory
!= 0)
79 if (mac
->act_scanning
) {
80 tx_agc
[RF90_PATH_A
] = 0x3f3f3f3f;
81 tx_agc
[RF90_PATH_B
] = 0x3f3f3f3f;
84 for (idx1
= RF90_PATH_A
; idx1
<= RF90_PATH_B
; idx1
++) {
85 tx_agc
[idx1
] = ppowerlevel
[idx1
] |
86 (ppowerlevel
[idx1
] << 8) |
87 (ppowerlevel
[idx1
] << 16) |
88 (ppowerlevel
[idx1
] << 24);
92 for (idx1
= RF90_PATH_A
; idx1
<= RF90_PATH_B
; idx1
++) {
93 tx_agc
[idx1
] = ppowerlevel
[idx1
] |
94 (ppowerlevel
[idx1
] << 8) |
95 (ppowerlevel
[idx1
] << 16) |
96 (ppowerlevel
[idx1
] << 24);
99 if (rtlefuse
->eeprom_regulatory
== 0) {
100 tmpval
= (rtlphy
->mcs_offset
[0][6]) +
101 (rtlphy
->mcs_offset
[0][7] << 8);
102 tx_agc
[RF90_PATH_A
] += tmpval
;
104 tmpval
= (rtlphy
->mcs_offset
[0][14]) +
105 (rtlphy
->mcs_offset
[0][15] << 24);
106 tx_agc
[RF90_PATH_B
] += tmpval
;
110 for (idx1
= RF90_PATH_A
; idx1
<= RF90_PATH_B
; idx1
++) {
111 ptr
= (u8
*) (&(tx_agc
[idx1
]));
112 for (idx2
= 0; idx2
< 4; idx2
++) {
113 if (*ptr
> RF6052_MAX_TX_PWR
)
114 *ptr
= RF6052_MAX_TX_PWR
;
119 tmpval
= tx_agc
[RF90_PATH_A
] & 0xff;
120 rtl_set_bbreg(hw
, RTXAGC_A_CCK1_MCS32
, MASKBYTE1
, tmpval
);
122 RTPRINT(rtlpriv
, FPHY
, PHY_TXPWR
,
123 "CCK PWR 1M (rf-A) = 0x%x (reg 0x%x)\n",
124 tmpval
, RTXAGC_A_CCK1_MCS32
);
126 tmpval
= tx_agc
[RF90_PATH_A
] >> 8;
128 tmpval
= tmpval
& 0xff00ffff;
130 rtl_set_bbreg(hw
, RTXAGC_B_CCK11_A_CCK2_11
, 0xffffff00, tmpval
);
132 RTPRINT(rtlpriv
, FPHY
, PHY_TXPWR
,
133 "CCK PWR 2~11M (rf-A) = 0x%x (reg 0x%x)\n",
134 tmpval
, RTXAGC_B_CCK11_A_CCK2_11
);
136 tmpval
= tx_agc
[RF90_PATH_B
] >> 24;
137 rtl_set_bbreg(hw
, RTXAGC_B_CCK11_A_CCK2_11
, MASKBYTE0
, tmpval
);
139 RTPRINT(rtlpriv
, FPHY
, PHY_TXPWR
,
140 "CCK PWR 11M (rf-B) = 0x%x (reg 0x%x)\n",
141 tmpval
, RTXAGC_B_CCK11_A_CCK2_11
);
143 tmpval
= tx_agc
[RF90_PATH_B
] & 0x00ffffff;
144 rtl_set_bbreg(hw
, RTXAGC_B_CCK1_55_MCS32
, 0xffffff00, tmpval
);
146 RTPRINT(rtlpriv
, FPHY
, PHY_TXPWR
,
147 "CCK PWR 1~5.5M (rf-B) = 0x%x (reg 0x%x)\n",
148 tmpval
, RTXAGC_B_CCK1_55_MCS32
);
151 static void rtl92c_phy_get_power_base(struct ieee80211_hw
*hw
,
152 u8
*ppowerlevel
, u8 channel
,
153 u32
*ofdmbase
, u32
*mcsbase
)
155 struct rtl_priv
*rtlpriv
= rtl_priv(hw
);
156 struct rtl_phy
*rtlphy
= &(rtlpriv
->phy
);
157 struct rtl_efuse
*rtlefuse
= rtl_efuse(rtl_priv(hw
));
158 u32 powerBase0
, powerBase1
;
159 u8 legacy_pwrdiff
, ht20_pwrdiff
;
162 for (i
= 0; i
< 2; i
++) {
163 powerlevel
[i
] = ppowerlevel
[i
];
164 legacy_pwrdiff
= rtlefuse
->txpwr_legacyhtdiff
[i
][channel
- 1];
165 powerBase0
= powerlevel
[i
] + legacy_pwrdiff
;
167 powerBase0
= (powerBase0
<< 24) | (powerBase0
<< 16) |
168 (powerBase0
<< 8) | powerBase0
;
169 *(ofdmbase
+ i
) = powerBase0
;
170 RTPRINT(rtlpriv
, FPHY
, PHY_TXPWR
,
171 " [OFDM power base index rf(%c) = 0x%x]\n",
172 i
== 0 ? 'A' : 'B', *(ofdmbase
+ i
));
175 for (i
= 0; i
< 2; i
++) {
176 if (rtlphy
->current_chan_bw
== HT_CHANNEL_WIDTH_20
) {
177 ht20_pwrdiff
= rtlefuse
->txpwr_ht20diff
[i
][channel
- 1];
178 powerlevel
[i
] += ht20_pwrdiff
;
180 powerBase1
= powerlevel
[i
];
181 powerBase1
= (powerBase1
<< 24) |
182 (powerBase1
<< 16) | (powerBase1
<< 8) | powerBase1
;
184 *(mcsbase
+ i
) = powerBase1
;
186 RTPRINT(rtlpriv
, FPHY
, PHY_TXPWR
,
187 " [MCS power base index rf(%c) = 0x%x]\n",
188 i
== 0 ? 'A' : 'B', *(mcsbase
+ i
));
192 static void _rtl92c_get_txpower_writeval_by_regulatory(struct ieee80211_hw
*hw
,
193 u8 channel
, u8 index
,
198 struct rtl_priv
*rtlpriv
= rtl_priv(hw
);
199 struct rtl_phy
*rtlphy
= &(rtlpriv
->phy
);
200 struct rtl_efuse
*rtlefuse
= rtl_efuse(rtl_priv(hw
));
201 u8 i
, chnlgroup
= 0, pwr_diff_limit
[4];
202 u32 writeVal
, customer_limit
, rf
;
204 for (rf
= 0; rf
< 2; rf
++) {
205 switch (rtlefuse
->eeprom_regulatory
) {
209 writeVal
= rtlphy
->mcs_offset
[chnlgroup
][index
+
211 + ((index
< 2) ? powerBase0
[rf
] : powerBase1
[rf
]);
213 RTPRINT(rtlpriv
, FPHY
, PHY_TXPWR
,
214 "RTK better performance, writeVal(%c) = 0x%x\n",
215 rf
== 0 ? 'A' : 'B', writeVal
);
218 if (rtlphy
->current_chan_bw
== HT_CHANNEL_WIDTH_20_40
) {
219 writeVal
= ((index
< 2) ? powerBase0
[rf
] :
222 RTPRINT(rtlpriv
, FPHY
, PHY_TXPWR
,
223 "Realtek regulatory, 40MHz, writeVal(%c) = 0x%x\n",
224 rf
== 0 ? 'A' : 'B', writeVal
);
226 if (rtlphy
->pwrgroup_cnt
== 1)
228 if (rtlphy
->pwrgroup_cnt
>= 3) {
231 else if (channel
>= 4 && channel
<= 9)
233 else if (channel
> 9)
235 if (rtlphy
->pwrgroup_cnt
== 4)
239 writeVal
= rtlphy
->mcs_offset
[chnlgroup
]
240 [index
+ (rf
? 8 : 0)] + ((index
< 2) ?
244 RTPRINT(rtlpriv
, FPHY
, PHY_TXPWR
,
245 "Realtek regulatory, 20MHz, writeVal(%c) = 0x%x\n",
246 rf
== 0 ? 'A' : 'B', writeVal
);
251 ((index
< 2) ? powerBase0
[rf
] : powerBase1
[rf
]);
253 RTPRINT(rtlpriv
, FPHY
, PHY_TXPWR
,
254 "Better regulatory, writeVal(%c) = 0x%x\n",
255 rf
== 0 ? 'A' : 'B', writeVal
);
260 if (rtlphy
->current_chan_bw
== HT_CHANNEL_WIDTH_20_40
) {
261 RTPRINT(rtlpriv
, FPHY
, PHY_TXPWR
,
262 "customer's limit, 40MHz rf(%c) = 0x%x\n",
264 rtlefuse
->pwrgroup_ht40
[rf
][channel
-
267 RTPRINT(rtlpriv
, FPHY
, PHY_TXPWR
,
268 "customer's limit, 20MHz rf(%c) = 0x%x\n",
270 rtlefuse
->pwrgroup_ht20
[rf
][channel
-
273 for (i
= 0; i
< 4; i
++) {
274 pwr_diff_limit
[i
] = (u8
) ((rtlphy
->mcs_offset
276 (rf
? 8 : 0)] & (0x7f << (i
* 8))) >>
279 if (rtlphy
->current_chan_bw
==
280 HT_CHANNEL_WIDTH_20_40
) {
281 if (pwr_diff_limit
[i
] >
283 pwrgroup_ht40
[rf
][channel
- 1])
285 rtlefuse
->pwrgroup_ht40
[rf
]
288 if (pwr_diff_limit
[i
] >
290 pwrgroup_ht20
[rf
][channel
- 1])
292 rtlefuse
->pwrgroup_ht20
[rf
]
297 customer_limit
= (pwr_diff_limit
[3] << 24) |
298 (pwr_diff_limit
[2] << 16) |
299 (pwr_diff_limit
[1] << 8) | (pwr_diff_limit
[0]);
301 RTPRINT(rtlpriv
, FPHY
, PHY_TXPWR
,
302 "Customer's limit rf(%c) = 0x%x\n",
303 rf
== 0 ? 'A' : 'B', customer_limit
);
305 writeVal
= customer_limit
+
306 ((index
< 2) ? powerBase0
[rf
] : powerBase1
[rf
]);
308 RTPRINT(rtlpriv
, FPHY
, PHY_TXPWR
,
309 "Customer, writeVal rf(%c)= 0x%x\n",
310 rf
== 0 ? 'A' : 'B', writeVal
);
314 writeVal
= rtlphy
->mcs_offset
[chnlgroup
]
315 [index
+ (rf
? 8 : 0)]
316 + ((index
< 2) ? powerBase0
[rf
] : powerBase1
[rf
]);
318 RTPRINT(rtlpriv
, FPHY
, PHY_TXPWR
,
319 "RTK better performance, writeVal rf(%c) = 0x%x\n",
320 rf
== 0 ? 'A' : 'B', writeVal
);
324 if (rtlpriv
->dm
.dynamic_txhighpower_lvl
== TXHIGHPWRLEVEL_BT1
)
325 writeVal
= writeVal
- 0x06060606;
326 else if (rtlpriv
->dm
.dynamic_txhighpower_lvl
==
328 writeVal
= writeVal
- 0x0c0c0c0c;
329 *(p_outwriteval
+ rf
) = writeVal
;
333 static void _rtl92c_write_ofdm_power_reg(struct ieee80211_hw
*hw
,
334 u8 index
, u32
*pValue
)
336 struct rtl_priv
*rtlpriv
= rtl_priv(hw
);
337 struct rtl_phy
*rtlphy
= &(rtlpriv
->phy
);
339 u16 regoffset_a
[6] = {
340 RTXAGC_A_RATE18_06
, RTXAGC_A_RATE54_24
,
341 RTXAGC_A_MCS03_MCS00
, RTXAGC_A_MCS07_MCS04
,
342 RTXAGC_A_MCS11_MCS08
, RTXAGC_A_MCS15_MCS12
344 u16 regoffset_b
[6] = {
345 RTXAGC_B_RATE18_06
, RTXAGC_B_RATE54_24
,
346 RTXAGC_B_MCS03_MCS00
, RTXAGC_B_MCS07_MCS04
,
347 RTXAGC_B_MCS11_MCS08
, RTXAGC_B_MCS15_MCS12
349 u8 i
, rf
, pwr_val
[4];
353 for (rf
= 0; rf
< 2; rf
++) {
354 writeVal
= pValue
[rf
];
355 for (i
= 0; i
< 4; i
++) {
356 pwr_val
[i
] = (u8
) ((writeVal
& (0x7f <<
357 (i
* 8))) >> (i
* 8));
359 if (pwr_val
[i
] > RF6052_MAX_TX_PWR
)
360 pwr_val
[i
] = RF6052_MAX_TX_PWR
;
362 writeVal
= (pwr_val
[3] << 24) | (pwr_val
[2] << 16) |
363 (pwr_val
[1] << 8) | pwr_val
[0];
366 regoffset
= regoffset_a
[index
];
368 regoffset
= regoffset_b
[index
];
369 rtl_set_bbreg(hw
, regoffset
, MASKDWORD
, writeVal
);
371 RTPRINT(rtlpriv
, FPHY
, PHY_TXPWR
,
372 "Set 0x%x = %08x\n", regoffset
, writeVal
);
374 if (((get_rf_type(rtlphy
) == RF_2T2R
) &&
375 (regoffset
== RTXAGC_A_MCS15_MCS12
||
376 regoffset
== RTXAGC_B_MCS15_MCS12
)) ||
377 ((get_rf_type(rtlphy
) != RF_2T2R
) &&
378 (regoffset
== RTXAGC_A_MCS07_MCS04
||
379 regoffset
== RTXAGC_B_MCS07_MCS04
))) {
381 writeVal
= pwr_val
[3];
382 if (regoffset
== RTXAGC_A_MCS15_MCS12
||
383 regoffset
== RTXAGC_A_MCS07_MCS04
)
385 if (regoffset
== RTXAGC_B_MCS15_MCS12
||
386 regoffset
== RTXAGC_B_MCS07_MCS04
)
389 for (i
= 0; i
< 3; i
++) {
390 writeVal
= (writeVal
> 6) ? (writeVal
- 6) : 0;
391 rtl_write_byte(rtlpriv
, (u32
) (regoffset
+ i
),
398 void rtl92ce_phy_rf6052_set_ofdm_txpower(struct ieee80211_hw
*hw
,
399 u8
*ppowerlevel
, u8 channel
)
401 u32 writeVal
[2], powerBase0
[2], powerBase1
[2];
404 rtl92c_phy_get_power_base(hw
, ppowerlevel
,
405 channel
, &powerBase0
[0], &powerBase1
[0]);
407 for (index
= 0; index
< 6; index
++) {
408 _rtl92c_get_txpower_writeval_by_regulatory(hw
,
414 _rtl92c_write_ofdm_power_reg(hw
, index
, &writeVal
[0]);
418 bool rtl92ce_phy_rf6052_config(struct ieee80211_hw
*hw
)
420 struct rtl_priv
*rtlpriv
= rtl_priv(hw
);
421 struct rtl_phy
*rtlphy
= &(rtlpriv
->phy
);
423 if (rtlphy
->rf_type
== RF_1T1R
)
424 rtlphy
->num_total_rfpath
= 1;
426 rtlphy
->num_total_rfpath
= 2;
428 return _rtl92ce_phy_rf6052_config_parafile(hw
);
432 static bool _rtl92ce_phy_rf6052_config_parafile(struct ieee80211_hw
*hw
)
434 struct rtl_priv
*rtlpriv
= rtl_priv(hw
);
435 struct rtl_phy
*rtlphy
= &(rtlpriv
->phy
);
438 bool rtstatus
= true;
439 struct bb_reg_def
*pphyreg
;
441 for (rfpath
= 0; rfpath
< rtlphy
->num_total_rfpath
; rfpath
++) {
443 pphyreg
= &rtlphy
->phyreg_def
[rfpath
];
448 u4_regvalue
= rtl_get_bbreg(hw
, pphyreg
->rfintfs
,
453 u4_regvalue
= rtl_get_bbreg(hw
, pphyreg
->rfintfs
,
458 rtl_set_bbreg(hw
, pphyreg
->rfintfe
, BRFSI_RFENV
<< 16, 0x1);
461 rtl_set_bbreg(hw
, pphyreg
->rfintfo
, BRFSI_RFENV
, 0x1);
464 rtl_set_bbreg(hw
, pphyreg
->rfhssi_para2
,
465 B3WIREADDREAALENGTH
, 0x0);
468 rtl_set_bbreg(hw
, pphyreg
->rfhssi_para2
, B3WIREDATALENGTH
, 0x0);
473 rtstatus
= rtl92c_phy_config_rf_with_headerfile(hw
,
474 (enum radio_path
)rfpath
);
477 rtstatus
= rtl92c_phy_config_rf_with_headerfile(hw
,
478 (enum radio_path
)rfpath
);
489 rtl_set_bbreg(hw
, pphyreg
->rfintfs
,
490 BRFSI_RFENV
, u4_regvalue
);
494 rtl_set_bbreg(hw
, pphyreg
->rfintfs
,
495 BRFSI_RFENV
<< 16, u4_regvalue
);
500 RT_TRACE(rtlpriv
, COMP_INIT
, DBG_TRACE
,
501 "Radio[%d] Fail!!\n", rfpath
);
507 RT_TRACE(rtlpriv
, COMP_INIT
, DBG_TRACE
, "<---\n");