1 /******************************************************************************
3 * Copyright(c) 2009-2010 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 #include "../rtl8192c/fw_common.h"
39 void rtl92ce_dm_dynamic_txpower(struct ieee80211_hw
*hw
)
41 struct rtl_priv
*rtlpriv
= rtl_priv(hw
);
42 struct rtl_phy
*rtlphy
= &(rtlpriv
->phy
);
43 struct rtl_mac
*mac
= rtl_mac(rtl_priv(hw
));
44 long undecorated_smoothed_pwdb
;
46 if (!rtlpriv
->dm
.dynamic_txpower_enable
)
49 if (rtlpriv
->dm
.dm_flag
& HAL_DM_HIPWR_DISABLE
) {
50 rtlpriv
->dm
.dynamic_txhighpower_lvl
= TXHIGHPWRLEVEL_NORMAL
;
54 if ((mac
->link_state
< MAC80211_LINKED
) &&
55 (rtlpriv
->dm
.entry_min_undecoratedsmoothed_pwdb
== 0)) {
56 RT_TRACE(rtlpriv
, COMP_POWER
, DBG_TRACE
,
57 ("Not connected to any\n"));
59 rtlpriv
->dm
.dynamic_txhighpower_lvl
= TXHIGHPWRLEVEL_NORMAL
;
61 rtlpriv
->dm
.last_dtp_lvl
= TXHIGHPWRLEVEL_NORMAL
;
65 if (mac
->link_state
>= MAC80211_LINKED
) {
66 if (mac
->opmode
== NL80211_IFTYPE_ADHOC
) {
67 undecorated_smoothed_pwdb
=
68 rtlpriv
->dm
.entry_min_undecoratedsmoothed_pwdb
;
69 RT_TRACE(rtlpriv
, COMP_POWER
, DBG_LOUD
,
70 ("AP Client PWDB = 0x%lx\n",
71 undecorated_smoothed_pwdb
));
73 undecorated_smoothed_pwdb
=
74 rtlpriv
->dm
.undecorated_smoothed_pwdb
;
75 RT_TRACE(rtlpriv
, COMP_POWER
, DBG_LOUD
,
76 ("STA Default Port PWDB = 0x%lx\n",
77 undecorated_smoothed_pwdb
));
80 undecorated_smoothed_pwdb
=
81 rtlpriv
->dm
.entry_min_undecoratedsmoothed_pwdb
;
83 RT_TRACE(rtlpriv
, COMP_POWER
, DBG_LOUD
,
84 ("AP Ext Port PWDB = 0x%lx\n",
85 undecorated_smoothed_pwdb
));
88 if (undecorated_smoothed_pwdb
>= TX_POWER_NEAR_FIELD_THRESH_LVL2
) {
89 rtlpriv
->dm
.dynamic_txhighpower_lvl
= TXHIGHPWRLEVEL_LEVEL1
;
90 RT_TRACE(rtlpriv
, COMP_POWER
, DBG_LOUD
,
91 ("TXHIGHPWRLEVEL_LEVEL1 (TxPwr=0x0)\n"));
92 } else if ((undecorated_smoothed_pwdb
<
93 (TX_POWER_NEAR_FIELD_THRESH_LVL2
- 3)) &&
94 (undecorated_smoothed_pwdb
>=
95 TX_POWER_NEAR_FIELD_THRESH_LVL1
)) {
97 rtlpriv
->dm
.dynamic_txhighpower_lvl
= TXHIGHPWRLEVEL_LEVEL1
;
98 RT_TRACE(rtlpriv
, COMP_POWER
, DBG_LOUD
,
99 ("TXHIGHPWRLEVEL_LEVEL1 (TxPwr=0x10)\n"));
100 } else if (undecorated_smoothed_pwdb
<
101 (TX_POWER_NEAR_FIELD_THRESH_LVL1
- 5)) {
102 rtlpriv
->dm
.dynamic_txhighpower_lvl
= TXHIGHPWRLEVEL_NORMAL
;
103 RT_TRACE(rtlpriv
, COMP_POWER
, DBG_LOUD
,
104 ("TXHIGHPWRLEVEL_NORMAL\n"));
107 if ((rtlpriv
->dm
.dynamic_txhighpower_lvl
!= rtlpriv
->dm
.last_dtp_lvl
)) {
108 RT_TRACE(rtlpriv
, COMP_POWER
, DBG_LOUD
,
109 ("PHY_SetTxPowerLevel8192S() Channel = %d\n",
110 rtlphy
->current_channel
));
111 rtl92c_phy_set_txpower_level(hw
, rtlphy
->current_channel
);
114 rtlpriv
->dm
.last_dtp_lvl
= rtlpriv
->dm
.dynamic_txhighpower_lvl
;