1 /******************************************************************************
3 * Copyright(c) 2009-2014 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 * The full GNU General Public License is included in this distribution in the
15 * file called LICENSE.
17 * Contact Information:
18 * wlanfae <wlanfae@realtek.com>
19 * Realtek Corporation, No. 2, Innovation Road II, Hsinchu Science Park,
20 * Hsinchu 300, Taiwan.
22 * Larry Finger <Larry.Finger@lwfinger.net>
24 *****************************************************************************/
33 static bool _rtl8723be_phy_rf6052_config_parafile(struct ieee80211_hw
*hw
);
35 void rtl8723be_phy_rf6052_set_bandwidth(struct ieee80211_hw
*hw
, u8 bandwidth
)
37 struct rtl_priv
*rtlpriv
= rtl_priv(hw
);
38 struct rtl_phy
*rtlphy
= &(rtlpriv
->phy
);
41 case HT_CHANNEL_WIDTH_20
:
42 rtlphy
->rfreg_chnlval
[0] = ((rtlphy
->rfreg_chnlval
[0] &
43 0xfffff3ff) | BIT(10) | BIT(11));
44 rtl_set_rfreg(hw
, RF90_PATH_A
, RF_CHNLBW
, RFREG_OFFSET_MASK
,
45 rtlphy
->rfreg_chnlval
[0]);
47 case HT_CHANNEL_WIDTH_20_40
:
48 rtlphy
->rfreg_chnlval
[0] = ((rtlphy
->rfreg_chnlval
[0] &
49 0xfffff3ff) | BIT(10));
50 rtl_set_rfreg(hw
, RF90_PATH_A
, RF_CHNLBW
, RFREG_OFFSET_MASK
,
51 rtlphy
->rfreg_chnlval
[0]);
54 RT_TRACE(rtlpriv
, COMP_ERR
, DBG_EMERG
,
55 "unknown bandwidth: %#X\n", bandwidth
);
60 void rtl8723be_phy_rf6052_set_cck_txpower(struct ieee80211_hw
*hw
,
63 struct rtl_priv
*rtlpriv
= rtl_priv(hw
);
64 struct rtl_phy
*rtlphy
= &(rtlpriv
->phy
);
65 struct rtl_mac
*mac
= rtl_mac(rtl_priv(hw
));
66 struct rtl_efuse
*rtlefuse
= rtl_efuse(rtl_priv(hw
));
67 u32 tx_agc
[2] = {0, 0}, tmpval
;
68 bool turbo_scanoff
= false;
74 if (rtlefuse
->eeprom_regulatory
!= 0)
77 if (mac
->act_scanning
) {
78 tx_agc
[RF90_PATH_A
] = 0x3f3f3f3f;
79 tx_agc
[RF90_PATH_B
] = 0x3f3f3f3f;
82 for (idx1
= RF90_PATH_A
; idx1
<= RF90_PATH_B
; idx1
++) {
83 tx_agc
[idx1
] = ppowerlevel
[idx1
] |
84 (ppowerlevel
[idx1
] << 8) |
85 (ppowerlevel
[idx1
] << 16) |
86 (ppowerlevel
[idx1
] << 24);
90 for (idx1
= RF90_PATH_A
; idx1
<= RF90_PATH_B
; idx1
++) {
91 tx_agc
[idx1
] = ppowerlevel
[idx1
] |
92 (ppowerlevel
[idx1
] << 8) |
93 (ppowerlevel
[idx1
] << 16) |
94 (ppowerlevel
[idx1
] << 24);
97 if (rtlefuse
->eeprom_regulatory
== 0) {
99 (rtlphy
->mcs_txpwrlevel_origoffset
[0][6]) +
100 (rtlphy
->mcs_txpwrlevel_origoffset
[0][7] << 8);
101 tx_agc
[RF90_PATH_A
] += tmpval
;
103 tmpval
= (rtlphy
->mcs_txpwrlevel_origoffset
[0][14]) +
104 (rtlphy
->mcs_txpwrlevel_origoffset
[0][15] <<
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
;
118 rtl8723be_dm_txpower_track_adjust(hw
, 1, &direction
, &pwrtrac_value
);
119 if (direction
== 1) {
120 tx_agc
[0] += pwrtrac_value
;
121 tx_agc
[1] += pwrtrac_value
;
122 } else if (direction
== 2) {
123 tx_agc
[0] -= pwrtrac_value
;
124 tx_agc
[1] -= pwrtrac_value
;
126 tmpval
= tx_agc
[RF90_PATH_A
] & 0xff;
127 rtl_set_bbreg(hw
, RTXAGC_A_CCK1_MCS32
, MASKBYTE1
, tmpval
);
129 RTPRINT(rtlpriv
, FPHY
, PHY_TXPWR
,
130 "CCK PWR 1M (rf-A) = 0x%x (reg 0x%x)\n", tmpval
,
131 RTXAGC_A_CCK1_MCS32
);
133 tmpval
= tx_agc
[RF90_PATH_A
] >> 8;
135 /*tmpval = tmpval & 0xff00ffff;*/
137 rtl_set_bbreg(hw
, RTXAGC_B_CCK11_A_CCK2_11
, 0xffffff00, tmpval
);
139 RTPRINT(rtlpriv
, FPHY
, PHY_TXPWR
,
140 "CCK PWR 2~11M (rf-A) = 0x%x (reg 0x%x)\n", tmpval
,
141 RTXAGC_B_CCK11_A_CCK2_11
);
143 tmpval
= tx_agc
[RF90_PATH_B
] >> 24;
144 rtl_set_bbreg(hw
, RTXAGC_B_CCK11_A_CCK2_11
, MASKBYTE0
, tmpval
);
146 RTPRINT(rtlpriv
, FPHY
, PHY_TXPWR
,
147 "CCK PWR 11M (rf-B) = 0x%x (reg 0x%x)\n", tmpval
,
148 RTXAGC_B_CCK11_A_CCK2_11
);
150 tmpval
= tx_agc
[RF90_PATH_B
] & 0x00ffffff;
151 rtl_set_bbreg(hw
, RTXAGC_B_CCK1_55_MCS32
, 0xffffff00, tmpval
);
153 RTPRINT(rtlpriv
, FPHY
, PHY_TXPWR
,
154 "CCK PWR 1~5.5M (rf-B) = 0x%x (reg 0x%x)\n", tmpval
,
155 RTXAGC_B_CCK1_55_MCS32
);
158 static void rtl8723be_phy_get_power_base(struct ieee80211_hw
*hw
,
159 u8
*ppowerlevel_ofdm
,
160 u8
*ppowerlevel_bw20
,
161 u8
*ppowerlevel_bw40
,
162 u8 channel
, u32
*ofdmbase
,
165 struct rtl_priv
*rtlpriv
= rtl_priv(hw
);
166 struct rtl_phy
*rtlphy
= &(rtlpriv
->phy
);
167 u32 powerbase0
, powerbase1
;
170 for (i
= 0; i
< 2; i
++) {
171 powerbase0
= ppowerlevel_ofdm
[i
];
173 powerbase0
= (powerbase0
<< 24) | (powerbase0
<< 16) |
174 (powerbase0
<< 8) | powerbase0
;
175 *(ofdmbase
+ i
) = powerbase0
;
176 RTPRINT(rtlpriv
, FPHY
, PHY_TXPWR
,
177 " [OFDM power base index rf(%c) = 0x%x]\n",
178 ((i
== 0) ? 'A' : 'B'), *(ofdmbase
+ i
));
181 for (i
= 0; i
< 2; i
++) {
182 if (rtlphy
->current_chan_bw
== HT_CHANNEL_WIDTH_20
)
183 powerlevel
[i
] = ppowerlevel_bw20
[i
];
185 powerlevel
[i
] = ppowerlevel_bw40
[i
];
187 powerbase1
= powerlevel
[i
];
188 powerbase1
= (powerbase1
<< 24) | (powerbase1
<< 16) |
189 (powerbase1
<< 8) | powerbase1
;
191 *(mcsbase
+ i
) = powerbase1
;
193 RTPRINT(rtlpriv
, FPHY
, PHY_TXPWR
,
194 " [MCS power base index rf(%c) = 0x%x]\n",
195 ((i
== 0) ? 'A' : 'B'), *(mcsbase
+ i
));
199 static void _rtl8723be_get_txpower_writeval_by_regulatory(
200 struct ieee80211_hw
*hw
,
201 u8 channel
, u8 index
,
206 struct rtl_priv
*rtlpriv
= rtl_priv(hw
);
207 struct rtl_phy
*rtlphy
= &(rtlpriv
->phy
);
208 struct rtl_efuse
*rtlefuse
= rtl_efuse(rtl_priv(hw
));
209 u8 i
, chnlgroup
= 0, pwr_diff_limit
[4], pwr_diff
= 0, customer_pwr_diff
;
210 u32 writeval
, customer_limit
, rf
;
212 for (rf
= 0; rf
< 2; rf
++) {
213 switch (rtlefuse
->eeprom_regulatory
) {
218 rtlphy
->mcs_txpwrlevel_origoffset
[chnlgroup
][index
+
220 + ((index
< 2) ? powerbase0
[rf
] : powerbase1
[rf
]);
222 RTPRINT(rtlpriv
, FPHY
, PHY_TXPWR
,
223 "RTK better performance, writeval(%c) = 0x%x\n",
224 ((rf
== 0) ? 'A' : 'B'), writeval
);
227 if (rtlphy
->pwrgroup_cnt
== 1) {
232 else if (channel
< 6)
234 else if (channel
< 9)
236 else if (channel
< 12)
238 else if (channel
< 14)
240 else if (channel
== 14)
245 rtlphy
->mcs_txpwrlevel_origoffset
[chnlgroup
]
246 [index
+ (rf
? 8 : 0)] + ((index
< 2) ?
250 RTPRINT(rtlpriv
, FPHY
, PHY_TXPWR
,
251 "Realtek regulatory, 20MHz, writeval(%c) = 0x%x\n",
252 ((rf
== 0) ? 'A' : 'B'), writeval
);
257 ((index
< 2) ? powerbase0
[rf
] : powerbase1
[rf
]);
259 RTPRINT(rtlpriv
, FPHY
, PHY_TXPWR
,
260 "Better regulatory, writeval(%c) = 0x%x\n",
261 ((rf
== 0) ? 'A' : 'B'), writeval
);
266 if (rtlphy
->current_chan_bw
== HT_CHANNEL_WIDTH_20_40
) {
267 RTPRINT(rtlpriv
, FPHY
, PHY_TXPWR
,
268 "customer's limit, 40MHz rf(%c) = 0x%x\n",
269 ((rf
== 0) ? 'A' : 'B'),
270 rtlefuse
->pwrgroup_ht40
273 RTPRINT(rtlpriv
, FPHY
, PHY_TXPWR
,
274 "customer's limit, 20MHz rf(%c) = 0x%x\n",
275 ((rf
== 0) ? 'A' : 'B'),
276 rtlefuse
->pwrgroup_ht20
282 rtlefuse
->txpwr_legacyhtdiff
[rf
][channel
-1];
283 else if (rtlphy
->current_chan_bw
==
286 rtlefuse
->txpwr_ht20diff
[rf
][channel
-1];
288 if (rtlphy
->current_chan_bw
== HT_CHANNEL_WIDTH_20_40
)
290 rtlefuse
->pwrgroup_ht40
[rf
][channel
-1];
293 rtlefuse
->pwrgroup_ht20
[rf
][channel
-1];
295 if (pwr_diff
> customer_pwr_diff
)
298 pwr_diff
= customer_pwr_diff
- pwr_diff
;
300 for (i
= 0; i
< 4; i
++) {
302 (u8
)((rtlphy
->mcs_txpwrlevel_origoffset
303 [chnlgroup
][index
+ (rf
? 8 : 0)] &
304 (0x7f << (i
* 8))) >> (i
* 8));
306 if (pwr_diff_limit
[i
] > pwr_diff
)
307 pwr_diff_limit
[i
] = pwr_diff
;
310 customer_limit
= (pwr_diff_limit
[3] << 24) |
311 (pwr_diff_limit
[2] << 16) |
312 (pwr_diff_limit
[1] << 8) |
315 RTPRINT(rtlpriv
, FPHY
, PHY_TXPWR
,
316 "Customer's limit rf(%c) = 0x%x\n",
317 ((rf
== 0) ? 'A' : 'B'), customer_limit
);
319 writeval
= customer_limit
+ ((index
< 2) ?
323 RTPRINT(rtlpriv
, FPHY
, PHY_TXPWR
,
324 "Customer, writeval rf(%c)= 0x%x\n",
325 ((rf
== 0) ? 'A' : 'B'), writeval
);
330 rtlphy
->mcs_txpwrlevel_origoffset
[chnlgroup
]
331 [index
+ (rf
? 8 : 0)]
332 + ((index
< 2) ? powerbase0
[rf
] : powerbase1
[rf
]);
334 RTPRINT(rtlpriv
, FPHY
, PHY_TXPWR
,
335 "RTK better performance, writeval rf(%c) = 0x%x\n",
336 ((rf
== 0) ? 'A' : 'B'), writeval
);
340 if (rtlpriv
->dm
.dynamic_txhighpower_lvl
== TXHIGHPWRLEVEL_BT1
)
341 writeval
= writeval
- 0x06060606;
342 else if (rtlpriv
->dm
.dynamic_txhighpower_lvl
==
344 writeval
= writeval
- 0x0c0c0c0c;
345 *(p_outwriteval
+ rf
) = writeval
;
349 static void _rtl8723be_write_ofdm_power_reg(struct ieee80211_hw
*hw
,
350 u8 index
, u32
*pvalue
)
352 struct rtl_priv
*rtlpriv
= rtl_priv(hw
);
353 u16 regoffset_a
[6] = {
354 RTXAGC_A_RATE18_06
, RTXAGC_A_RATE54_24
,
355 RTXAGC_A_MCS03_MCS00
, RTXAGC_A_MCS07_MCS04
,
356 RTXAGC_A_MCS11_MCS08
, RTXAGC_A_MCS15_MCS12
358 u16 regoffset_b
[6] = {
359 RTXAGC_B_RATE18_06
, RTXAGC_B_RATE54_24
,
360 RTXAGC_B_MCS03_MCS00
, RTXAGC_B_MCS07_MCS04
,
361 RTXAGC_B_MCS11_MCS08
, RTXAGC_B_MCS15_MCS12
363 u8 i
, rf
, pwr_val
[4];
367 for (rf
= 0; rf
< 2; rf
++) {
368 writeval
= pvalue
[rf
];
369 for (i
= 0; i
< 4; i
++) {
370 pwr_val
[i
] = (u8
)((writeval
& (0x7f <<
371 (i
* 8))) >> (i
* 8));
373 if (pwr_val
[i
] > RF6052_MAX_TX_PWR
)
374 pwr_val
[i
] = RF6052_MAX_TX_PWR
;
376 writeval
= (pwr_val
[3] << 24) | (pwr_val
[2] << 16) |
377 (pwr_val
[1] << 8) | pwr_val
[0];
380 regoffset
= regoffset_a
[index
];
382 regoffset
= regoffset_b
[index
];
383 rtl_set_bbreg(hw
, regoffset
, MASKDWORD
, writeval
);
385 RTPRINT(rtlpriv
, FPHY
, PHY_TXPWR
,
386 "Set 0x%x = %08x\n", regoffset
, writeval
);
390 void rtl8723be_phy_rf6052_set_ofdm_txpower(struct ieee80211_hw
*hw
,
391 u8
*ppowerlevel_ofdm
,
392 u8
*ppowerlevel_bw20
,
393 u8
*ppowerlevel_bw40
, u8 channel
)
395 u32 writeval
[2], powerbase0
[2], powerbase1
[2];
400 rtl8723be_phy_get_power_base(hw
, ppowerlevel_ofdm
, ppowerlevel_bw20
,
401 ppowerlevel_bw40
, channel
,
402 &powerbase0
[0], &powerbase1
[0]);
404 rtl8723be_dm_txpower_track_adjust(hw
, 1, &direction
, &pwrtrac_value
);
406 for (index
= 0; index
< 6; index
++) {
407 _rtl8723be_get_txpower_writeval_by_regulatory(hw
,
412 if (direction
== 1) {
413 writeval
[0] += pwrtrac_value
;
414 writeval
[1] += pwrtrac_value
;
415 } else if (direction
== 2) {
416 writeval
[0] -= pwrtrac_value
;
417 writeval
[1] -= pwrtrac_value
;
419 _rtl8723be_write_ofdm_power_reg(hw
, index
, &writeval
[0]);
423 bool rtl8723be_phy_rf6052_config(struct ieee80211_hw
*hw
)
425 struct rtl_priv
*rtlpriv
= rtl_priv(hw
);
426 struct rtl_phy
*rtlphy
= &(rtlpriv
->phy
);
428 if (rtlphy
->rf_type
== RF_1T1R
)
429 rtlphy
->num_total_rfpath
= 1;
431 rtlphy
->num_total_rfpath
= 2;
433 return _rtl8723be_phy_rf6052_config_parafile(hw
);
437 static bool _rtl8723be_phy_rf6052_config_parafile(struct ieee80211_hw
*hw
)
439 struct rtl_priv
*rtlpriv
= rtl_priv(hw
);
440 struct rtl_phy
*rtlphy
= &(rtlpriv
->phy
);
443 bool rtstatus
= true;
444 struct bb_reg_def
*pphyreg
;
446 for (rfpath
= 0; rfpath
< rtlphy
->num_total_rfpath
; rfpath
++) {
447 pphyreg
= &rtlphy
->phyreg_def
[rfpath
];
452 u4_regvalue
= rtl_get_bbreg(hw
, pphyreg
->rfintfs
,
457 u4_regvalue
= rtl_get_bbreg(hw
, pphyreg
->rfintfs
,
462 rtl_set_bbreg(hw
, pphyreg
->rfintfe
, BRFSI_RFENV
<< 16, 0x1);
465 rtl_set_bbreg(hw
, pphyreg
->rfintfo
, BRFSI_RFENV
, 0x1);
468 rtl_set_bbreg(hw
, pphyreg
->rfhssi_para2
,
469 B3WIREADDREAALENGTH
, 0x0);
472 rtl_set_bbreg(hw
, pphyreg
->rfhssi_para2
, B3WIREDATALENGTH
, 0x0);
477 rtstatus
= rtl8723be_phy_config_rf_with_headerfile(hw
,
478 (enum radio_path
)rfpath
);
481 rtstatus
= rtl8723be_phy_config_rf_with_headerfile(hw
,
482 (enum radio_path
)rfpath
);
493 rtl_set_bbreg(hw
, pphyreg
->rfintfs
,
494 BRFSI_RFENV
, u4_regvalue
);
498 rtl_set_bbreg(hw
, pphyreg
->rfintfs
,
499 BRFSI_RFENV
<< 16, u4_regvalue
);
504 RT_TRACE(rtlpriv
, COMP_INIT
, DBG_TRACE
,
505 "Radio[%d] Fail!!", rfpath
);
510 RT_TRACE(rtlpriv
, COMP_INIT
, DBG_TRACE
, "\n");