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 *****************************************************************************/
38 static void _rtl92s_get_powerbase(struct ieee80211_hw
*hw
, u8
*p_pwrlevel
,
39 u8 chnl
, u32
*ofdmbase
, u32
*mcsbase
,
42 struct rtl_priv
*rtlpriv
= rtl_priv(hw
);
43 struct rtl_phy
*rtlphy
= &(rtlpriv
->phy
);
44 struct rtl_efuse
*rtlefuse
= rtl_efuse(rtl_priv(hw
));
45 u32 pwrbase0
, pwrbase1
;
46 u8 legacy_pwrdiff
= 0, ht20_pwrdiff
= 0;
49 for (i
= 0; i
< 2; i
++)
50 pwrlevel
[i
] = p_pwrlevel
[i
];
52 /* We only care about the path A for legacy. */
53 if (rtlefuse
->eeprom_version
< 2) {
54 pwrbase0
= pwrlevel
[0] + (rtlefuse
->legacy_httxpowerdiff
& 0xf);
55 } else if (rtlefuse
->eeprom_version
>= 2) {
56 legacy_pwrdiff
= rtlefuse
->txpwr_legacyhtdiff
57 [RF90_PATH_A
][chnl
- 1];
59 /* For legacy OFDM, tx pwr always > HT OFDM pwr.
60 * We do not care Path B
61 * legacy OFDM pwr diff. NO BB register
63 pwrbase0
= pwrlevel
[0] + legacy_pwrdiff
;
66 pwrbase0
= (pwrbase0
<< 24) | (pwrbase0
<< 16) | (pwrbase0
<< 8) |
71 if (rtlefuse
->eeprom_version
>= 2) {
72 /* Check HT20 to HT40 diff */
73 if (rtlphy
->current_chan_bw
== HT_CHANNEL_WIDTH_20
) {
74 for (i
= 0; i
< 2; i
++) {
76 /* HT 20<->40 pwr diff */
77 ht20_pwrdiff
= rtlefuse
->txpwr_ht20diff
80 if (ht20_pwrdiff
< 8) /* 0~+7 */
81 pwrlevel
[i
] += ht20_pwrdiff
;
82 else /* index8-15=-8~-1 */
83 pwrlevel
[i
] -= (16 - ht20_pwrdiff
);
88 /* use index of rf-A */
89 pwrbase1
= pwrlevel
[0];
90 pwrbase1
= (pwrbase1
<< 24) | (pwrbase1
<< 16) | (pwrbase1
<< 8) |
94 /* The following is for Antenna
95 * diff from Ant-B to Ant-A */
96 p_final_pwridx
[0] = pwrlevel
[0];
97 p_final_pwridx
[1] = pwrlevel
[1];
99 switch (rtlefuse
->eeprom_regulatory
) {
101 /* The following is for calculation
102 * of the power diff for Ant-B to Ant-A. */
103 if (rtlphy
->current_chan_bw
== HT_CHANNEL_WIDTH_20_40
) {
104 p_final_pwridx
[0] += rtlefuse
->pwrgroup_ht40
107 p_final_pwridx
[1] += rtlefuse
->pwrgroup_ht40
111 p_final_pwridx
[0] += rtlefuse
->pwrgroup_ht20
114 p_final_pwridx
[1] += rtlefuse
->pwrgroup_ht20
123 if (rtlphy
->current_chan_bw
== HT_CHANNEL_WIDTH_20_40
) {
124 RT_TRACE(rtlpriv
, COMP_POWER
, DBG_LOUD
,
125 "40MHz finalpwr_idx (A / B) = 0x%x / 0x%x\n",
126 p_final_pwridx
[0], p_final_pwridx
[1]);
128 RT_TRACE(rtlpriv
, COMP_POWER
, DBG_LOUD
,
129 "20MHz finalpwr_idx (A / B) = 0x%x / 0x%x\n",
130 p_final_pwridx
[0], p_final_pwridx
[1]);
134 static void _rtl92s_set_antennadiff(struct ieee80211_hw
*hw
,
137 struct rtl_priv
*rtlpriv
= rtl_priv(hw
);
138 struct rtl_efuse
*rtlefuse
= rtl_efuse(rtl_priv(hw
));
139 struct rtl_phy
*rtlphy
= &(rtlpriv
->phy
);
140 char ant_pwr_diff
= 0;
143 if (rtlphy
->rf_type
== RF_2T2R
) {
144 ant_pwr_diff
= p_final_pwridx
[1] - p_final_pwridx
[0];
146 /* range is from 7~-8,
148 if (ant_pwr_diff
> 7)
150 if (ant_pwr_diff
< -8)
153 RT_TRACE(rtlpriv
, COMP_POWER
, DBG_LOUD
,
154 "Antenna Diff from RF-B to RF-A = %d (0x%x)\n",
155 ant_pwr_diff
, ant_pwr_diff
& 0xf);
160 /* Antenna TX power difference */
161 rtlefuse
->antenna_txpwdiff
[2] = 0;/* RF-D, don't care */
162 rtlefuse
->antenna_txpwdiff
[1] = 0;/* RF-C, don't care */
163 rtlefuse
->antenna_txpwdiff
[0] = (u8
)(ant_pwr_diff
); /* RF-B */
165 u4reg_val
= rtlefuse
->antenna_txpwdiff
[2] << 8 |
166 rtlefuse
->antenna_txpwdiff
[1] << 4 |
167 rtlefuse
->antenna_txpwdiff
[0];
169 rtl_set_bbreg(hw
, RFPGA0_TXGAINSTAGE
, (BXBTXAGC
| BXCTXAGC
| BXDTXAGC
),
172 RT_TRACE(rtlpriv
, COMP_POWER
, DBG_LOUD
, "Write BCD-Diff(0x%x) = 0x%x\n",
173 RFPGA0_TXGAINSTAGE
, u4reg_val
);
176 static void _rtl92s_get_txpower_writeval_byregulatory(struct ieee80211_hw
*hw
,
182 struct rtl_priv
*rtlpriv
= rtl_priv(hw
);
183 struct rtl_phy
*rtlphy
= &(rtlpriv
->phy
);
184 struct rtl_efuse
*rtlefuse
= rtl_efuse(rtl_priv(hw
));
185 u8 i
, chnlgroup
, pwrdiff_limit
[4];
186 u32 writeval
, customer_limit
;
188 /* Index 0 & 1= legacy OFDM, 2-5=HT_MCS rate */
189 switch (rtlefuse
->eeprom_regulatory
) {
191 /* Realtek better performance increase power diff
192 * defined by Realtek for large power */
195 writeval
= rtlphy
->mcs_offset
[chnlgroup
][index
] +
196 ((index
< 2) ? pwrbase0
: pwrbase1
);
198 RT_TRACE(rtlpriv
, COMP_POWER
, DBG_LOUD
,
199 "RTK better performance, writeval = 0x%x\n", writeval
);
202 /* Realtek regulatory increase power diff defined
203 * by Realtek for regulatory */
204 if (rtlphy
->current_chan_bw
== HT_CHANNEL_WIDTH_20_40
) {
205 writeval
= ((index
< 2) ? pwrbase0
: pwrbase1
);
207 RT_TRACE(rtlpriv
, COMP_POWER
, DBG_LOUD
,
208 "Realtek regulatory, 40MHz, writeval = 0x%x\n",
211 if (rtlphy
->pwrgroup_cnt
== 1)
214 if (rtlphy
->pwrgroup_cnt
>= 3) {
217 else if (chnl
>= 4 && chnl
<= 8)
221 if (rtlphy
->pwrgroup_cnt
== 4)
225 writeval
= rtlphy
->mcs_offset
[chnlgroup
][index
]
227 pwrbase0
: pwrbase1
);
229 RT_TRACE(rtlpriv
, COMP_POWER
, DBG_LOUD
,
230 "Realtek regulatory, 20MHz, writeval = 0x%x\n",
235 /* Better regulatory don't increase any power diff */
236 writeval
= ((index
< 2) ? pwrbase0
: pwrbase1
);
237 RT_TRACE(rtlpriv
, COMP_POWER
, DBG_LOUD
,
238 "Better regulatory, writeval = 0x%x\n", writeval
);
241 /* Customer defined power diff. increase power diff
242 defined by customer. */
245 if (rtlphy
->current_chan_bw
== HT_CHANNEL_WIDTH_20_40
) {
246 RT_TRACE(rtlpriv
, COMP_POWER
, DBG_LOUD
,
247 "customer's limit, 40MHz = 0x%x\n",
248 rtlefuse
->pwrgroup_ht40
249 [RF90_PATH_A
][chnl
- 1]);
251 RT_TRACE(rtlpriv
, COMP_POWER
, DBG_LOUD
,
252 "customer's limit, 20MHz = 0x%x\n",
253 rtlefuse
->pwrgroup_ht20
254 [RF90_PATH_A
][chnl
- 1]);
257 for (i
= 0; i
< 4; i
++) {
258 pwrdiff_limit
[i
] = (u8
)((rtlphy
->mcs_offset
259 [chnlgroup
][index
] & (0x7f << (i
* 8)))
262 if (rtlphy
->current_chan_bw
==
263 HT_CHANNEL_WIDTH_20_40
) {
264 if (pwrdiff_limit
[i
] >
265 rtlefuse
->pwrgroup_ht40
266 [RF90_PATH_A
][chnl
- 1]) {
268 rtlefuse
->pwrgroup_ht40
269 [RF90_PATH_A
][chnl
- 1];
272 if (pwrdiff_limit
[i
] >
273 rtlefuse
->pwrgroup_ht20
274 [RF90_PATH_A
][chnl
- 1]) {
276 rtlefuse
->pwrgroup_ht20
277 [RF90_PATH_A
][chnl
- 1];
282 customer_limit
= (pwrdiff_limit
[3] << 24) |
283 (pwrdiff_limit
[2] << 16) |
284 (pwrdiff_limit
[1] << 8) |
286 RT_TRACE(rtlpriv
, COMP_POWER
, DBG_LOUD
,
287 "Customer's limit = 0x%x\n", customer_limit
);
289 writeval
= customer_limit
+ ((index
< 2) ?
290 pwrbase0
: pwrbase1
);
291 RT_TRACE(rtlpriv
, COMP_POWER
, DBG_LOUD
,
292 "Customer, writeval = 0x%x\n", writeval
);
296 writeval
= rtlphy
->mcs_offset
[chnlgroup
][index
] +
297 ((index
< 2) ? pwrbase0
: pwrbase1
);
298 RT_TRACE(rtlpriv
, COMP_POWER
, DBG_LOUD
,
299 "RTK better performance, writeval = 0x%x\n", writeval
);
303 if (rtlpriv
->dm
.dynamic_txhighpower_lvl
== TX_HIGH_PWR_LEVEL_LEVEL1
)
304 writeval
= 0x10101010;
305 else if (rtlpriv
->dm
.dynamic_txhighpower_lvl
==
306 TX_HIGH_PWR_LEVEL_LEVEL2
)
309 *p_outwrite_val
= writeval
;
313 static void _rtl92s_write_ofdm_powerreg(struct ieee80211_hw
*hw
,
316 struct rtl_priv
*rtlpriv
= rtl_priv(hw
);
317 struct rtl_phy
*rtlphy
= &(rtlpriv
->phy
);
318 struct rtl_efuse
*rtlefuse
= rtl_efuse(rtl_priv(hw
));
319 u16 regoffset
[6] = {0xe00, 0xe04, 0xe10, 0xe14, 0xe18, 0xe1c};
321 u8 rfa_lower_bound
= 0, rfa_upper_bound
= 0, rf_pwr_diff
= 0;
324 /* If path A and Path B coexist, we must limit Path A tx power.
325 * Protect Path B pwr over or under flow. We need to calculate
326 * upper and lower bound of path A tx power. */
327 if (rtlphy
->rf_type
== RF_2T2R
) {
328 rf_pwr_diff
= rtlefuse
->antenna_txpwdiff
[0];
331 if (rf_pwr_diff
>= 8) {
332 /* Prevent underflow!! */
333 rfa_lower_bound
= 0x10 - rf_pwr_diff
;
334 /* if (rf_pwr_diff >= 0) Diff = 0-7 */
336 rfa_upper_bound
= RF6052_MAX_TX_PWR
- rf_pwr_diff
;
340 for (i
= 0; i
< 4; i
++) {
341 rfa_pwr
[i
] = (u8
)((writeval
& (0x7f << (i
* 8))) >> (i
* 8));
342 if (rfa_pwr
[i
] > RF6052_MAX_TX_PWR
)
343 rfa_pwr
[i
] = RF6052_MAX_TX_PWR
;
345 /* If path A and Path B coexist, we must limit Path A tx power.
346 * Protect Path B pwr over or under flow. We need to calculate
347 * upper and lower bound of path A tx power. */
348 if (rtlphy
->rf_type
== RF_2T2R
) {
350 if (rf_pwr_diff
>= 8) {
351 /* Prevent underflow!! */
352 if (rfa_pwr
[i
] < rfa_lower_bound
)
353 rfa_pwr
[i
] = rfa_lower_bound
;
355 } else if (rf_pwr_diff
>= 1) {
356 /* Prevent overflow */
357 if (rfa_pwr
[i
] > rfa_upper_bound
)
358 rfa_pwr
[i
] = rfa_upper_bound
;
364 writeval
= (rfa_pwr
[3] << 24) | (rfa_pwr
[2] << 16) | (rfa_pwr
[1] << 8) |
367 rtl_set_bbreg(hw
, regoffset
[index
], 0x7f7f7f7f, writeval
);
370 void rtl92s_phy_rf6052_set_ofdmtxpower(struct ieee80211_hw
*hw
,
371 u8
*p_pwrlevel
, u8 chnl
)
373 u32 writeval
, pwrbase0
, pwrbase1
;
377 _rtl92s_get_powerbase(hw
, p_pwrlevel
, chnl
, &pwrbase0
, &pwrbase1
,
379 _rtl92s_set_antennadiff(hw
, &finalpwr_idx
[0]);
381 for (index
= 0; index
< 6; index
++) {
382 _rtl92s_get_txpower_writeval_byregulatory(hw
, chnl
, index
,
383 pwrbase0
, pwrbase1
, &writeval
);
385 _rtl92s_write_ofdm_powerreg(hw
, index
, writeval
);
389 void rtl92s_phy_rf6052_set_ccktxpower(struct ieee80211_hw
*hw
, u8 pwrlevel
)
391 struct rtl_priv
*rtlpriv
= rtl_priv(hw
);
392 struct rtl_mac
*mac
= rtl_mac(rtl_priv(hw
));
393 struct rtl_efuse
*rtlefuse
= rtl_efuse(rtl_priv(hw
));
395 bool dont_inc_cck_or_turboscanoff
= false;
397 if (((rtlefuse
->eeprom_version
>= 2) &&
398 (rtlefuse
->txpwr_safetyflag
== 1)) ||
399 ((rtlefuse
->eeprom_version
>= 2) &&
400 (rtlefuse
->eeprom_regulatory
!= 0)))
401 dont_inc_cck_or_turboscanoff
= true;
403 if (mac
->act_scanning
) {
405 if (dont_inc_cck_or_turboscanoff
)
410 if (rtlpriv
->dm
.dynamic_txhighpower_lvl
==
411 TX_HIGH_PWR_LEVEL_LEVEL1
)
413 else if (rtlpriv
->dm
.dynamic_txhighpower_lvl
==
414 TX_HIGH_PWR_LEVEL_LEVEL2
)
418 if (txagc
> RF6052_MAX_TX_PWR
)
419 txagc
= RF6052_MAX_TX_PWR
;
421 rtl_set_bbreg(hw
, RTXAGC_CCK_MCS32
, BTX_AGCRATECCK
, txagc
);
425 bool rtl92s_phy_rf6052_config(struct ieee80211_hw
*hw
)
427 struct rtl_priv
*rtlpriv
= rtl_priv(hw
);
428 struct rtl_phy
*rtlphy
= &(rtlpriv
->phy
);
431 bool rtstatus
= true;
432 struct bb_reg_def
*pphyreg
;
435 for (rfpath
= 0; rfpath
< rtlphy
->num_total_rfpath
; rfpath
++) {
437 pphyreg
= &rtlphy
->phyreg_def
[rfpath
];
439 /* Store original RFENV control type */
443 u4reg_val
= rtl92s_phy_query_bb_reg(hw
,
449 u4reg_val
= rtl92s_phy_query_bb_reg(hw
,
455 /* Set RF_ENV enable */
456 rtl92s_phy_set_bb_reg(hw
, pphyreg
->rfintfe
,
457 BRFSI_RFENV
<< 16, 0x1);
459 /* Set RF_ENV output high */
460 rtl92s_phy_set_bb_reg(hw
, pphyreg
->rfintfo
, BRFSI_RFENV
, 0x1);
462 /* Set bit number of Address and Data for RF register */
463 rtl92s_phy_set_bb_reg(hw
, pphyreg
->rfhssi_para2
,
464 B3WIRE_ADDRESSLENGTH
, 0x0);
465 rtl92s_phy_set_bb_reg(hw
, pphyreg
->rfhssi_para2
,
466 B3WIRE_DATALENGTH
, 0x0);
468 /* Initialize RF fom connfiguration file */
471 rtstatus
= rtl92s_phy_config_rf(hw
,
472 (enum radio_path
)rfpath
);
475 rtstatus
= rtl92s_phy_config_rf(hw
,
476 (enum radio_path
)rfpath
);
484 /* Restore RFENV control type */
488 rtl92s_phy_set_bb_reg(hw
, pphyreg
->rfintfs
, BRFSI_RFENV
,
493 rtl92s_phy_set_bb_reg(hw
, pphyreg
->rfintfs
,
500 pr_err("Radio[%d] Fail!!\n", rfpath
);
512 void rtl92s_phy_rf6052_set_bandwidth(struct ieee80211_hw
*hw
, u8 bandwidth
)
514 struct rtl_priv
*rtlpriv
= rtl_priv(hw
);
515 struct rtl_phy
*rtlphy
= &(rtlpriv
->phy
);
518 case HT_CHANNEL_WIDTH_20
:
519 rtlphy
->rfreg_chnlval
[0] = ((rtlphy
->rfreg_chnlval
[0] &
520 0xfffff3ff) | 0x0400);
521 rtl_set_rfreg(hw
, RF90_PATH_A
, RF_CHNLBW
, RFREG_OFFSET_MASK
,
522 rtlphy
->rfreg_chnlval
[0]);
524 case HT_CHANNEL_WIDTH_20_40
:
525 rtlphy
->rfreg_chnlval
[0] = ((rtlphy
->rfreg_chnlval
[0] &
527 rtl_set_rfreg(hw
, RF90_PATH_A
, RF_CHNLBW
, RFREG_OFFSET_MASK
,
528 rtlphy
->rfreg_chnlval
[0]);
531 RT_TRACE(rtlpriv
, COMP_ERR
, DBG_EMERG
,
532 "unknown bandwidth: %#X\n", bandwidth
);