提交 ed0fb7eb 编写于 作者: L Larry Finger 提交者: Kalle Valo

rtlwifi: Move macro definitions to core

Several of the drivers still were defining their own copies of various
macros. These are all moved into the core.
Signed-off-by: NLarry Finger <Larry.Finger@lwfinger.net>
Signed-off-by: NKalle Valo <kvalo@codeaurora.org>
上级 9259ee79
...@@ -42,6 +42,7 @@ ...@@ -42,6 +42,7 @@
#define DM_DIG_MAX 0x3e #define DM_DIG_MAX 0x3e
#define DM_DIG_MIN 0x1e #define DM_DIG_MIN 0x1e
#define DM_DIG_MAX_AP 0x32
#define DM_DIG_BACKOFF_MAX 12 #define DM_DIG_BACKOFF_MAX 12
#define DM_DIG_BACKOFF_MIN -4 #define DM_DIG_BACKOFF_MIN -4
#define DM_DIG_BACKOFF_DEFAULT 10 #define DM_DIG_BACKOFF_DEFAULT 10
......
...@@ -186,9 +186,6 @@ ...@@ -186,9 +186,6 @@
#define BW_AUTO_SWITCH_HIGH_LOW 25 #define BW_AUTO_SWITCH_HIGH_LOW 25
#define BW_AUTO_SWITCH_LOW_HIGH 30 #define BW_AUTO_SWITCH_LOW_HIGH 30
#define DM_DIG_MAX_AP 0x32
#define DM_DIG_MIN_AP 0x20
#define DM_DIG_FA_UPPER 0x3e #define DM_DIG_FA_UPPER 0x3e
#define DM_DIG_FA_LOWER 0x1e #define DM_DIG_FA_LOWER 0x1e
#define DM_DIG_FA_TH0 0x200 #define DM_DIG_FA_TH0 0x200
......
...@@ -189,9 +189,6 @@ ...@@ -189,9 +189,6 @@
#define BW_AUTO_SWITCH_HIGH_LOW 25 #define BW_AUTO_SWITCH_HIGH_LOW 25
#define BW_AUTO_SWITCH_LOW_HIGH 30 #define BW_AUTO_SWITCH_LOW_HIGH 30
#define DM_DIG_MAX_AP 0x32
#define DM_DIG_MIN_AP 0x20
#define DM_DIG_FA_UPPER 0x3e #define DM_DIG_FA_UPPER 0x3e
#define DM_DIG_FA_LOWER 0x1e #define DM_DIG_FA_LOWER 0x1e
#define DM_DIG_FA_TH0 0x200 #define DM_DIG_FA_TH0 0x200
......
...@@ -470,7 +470,7 @@ static void _rtl92s_dm_initial_gain_sta_beforeconnect(struct ieee80211_hw *hw) ...@@ -470,7 +470,7 @@ static void _rtl92s_dm_initial_gain_sta_beforeconnect(struct ieee80211_hw *hw)
if (digtable->backoff_enable_flag) if (digtable->backoff_enable_flag)
rtl92s_backoff_enable_flag(hw); rtl92s_backoff_enable_flag(hw);
else else
digtable->back_val = DM_DIG_BACKOFF; digtable->back_val = DM_DIG_BACKOFF_MAX;
if ((digtable->rssi_val + 10 - digtable->back_val) > if ((digtable->rssi_val + 10 - digtable->back_val) >
digtable->rx_gain_max) digtable->rx_gain_max)
...@@ -504,7 +504,7 @@ static void _rtl92s_dm_initial_gain_sta_beforeconnect(struct ieee80211_hw *hw) ...@@ -504,7 +504,7 @@ static void _rtl92s_dm_initial_gain_sta_beforeconnect(struct ieee80211_hw *hw)
digtable->dig_ext_port_stage = DIG_EXT_PORT_STAGE_MAX; digtable->dig_ext_port_stage = DIG_EXT_PORT_STAGE_MAX;
rtl92s_phy_set_fw_cmd(hw, FW_CMD_DIG_ENABLE); rtl92s_phy_set_fw_cmd(hw, FW_CMD_DIG_ENABLE);
digtable->back_val = DM_DIG_BACKOFF; digtable->back_val = DM_DIG_BACKOFF_MAX;
digtable->cur_igvalue = rtlpriv->phy.default_initialgain[0]; digtable->cur_igvalue = rtlpriv->phy.default_initialgain[0];
digtable->pre_igvalue = 0; digtable->pre_igvalue = 0;
return; return;
...@@ -692,7 +692,7 @@ static void _rtl92s_dm_init_dig(struct ieee80211_hw *hw) ...@@ -692,7 +692,7 @@ static void _rtl92s_dm_init_dig(struct ieee80211_hw *hw)
/* for dig debug rssi value */ /* for dig debug rssi value */
digtable->rssi_val = 50; digtable->rssi_val = 50;
digtable->back_val = DM_DIG_BACKOFF; digtable->back_val = DM_DIG_BACKOFF_MAX;
digtable->rx_gain_max = DM_DIG_MAX; digtable->rx_gain_max = DM_DIG_MAX;
digtable->rx_gain_min = DM_DIG_MIN; digtable->rx_gain_min = DM_DIG_MIN;
......
...@@ -83,7 +83,6 @@ enum dm_ratr_sta { ...@@ -83,7 +83,6 @@ enum dm_ratr_sta {
#define DM_DIG_HIGH_PWR_THRESH_HIGH 75 #define DM_DIG_HIGH_PWR_THRESH_HIGH 75
#define DM_DIG_HIGH_PWR_THRESH_LOW 70 #define DM_DIG_HIGH_PWR_THRESH_LOW 70
#define DM_DIG_BACKOFF 12
#define DM_DIG_MIN_Netcore 0x12 #define DM_DIG_MIN_Netcore 0x12
void rtl92s_dm_watchdog(struct ieee80211_hw *hw); void rtl92s_dm_watchdog(struct ieee80211_hw *hw);
......
...@@ -180,9 +180,6 @@ ...@@ -180,9 +180,6 @@
#define BW_AUTO_SWITCH_HIGH_LOW 25 #define BW_AUTO_SWITCH_HIGH_LOW 25
#define BW_AUTO_SWITCH_LOW_HIGH 30 #define BW_AUTO_SWITCH_LOW_HIGH 30
#define DM_DIG_MAX_AP 0x32
#define DM_DIG_MIN_AP 0x20
#define DM_DIG_FA_UPPER 0x3e #define DM_DIG_FA_UPPER 0x3e
#define DM_DIG_FA_LOWER 0x1e #define DM_DIG_FA_LOWER 0x1e
#define DM_DIG_FA_TH0 0x200 #define DM_DIG_FA_TH0 0x200
......
...@@ -187,15 +187,6 @@ ...@@ -187,15 +187,6 @@
#define BW_AUTO_SWITCH_HIGH_LOW 25 #define BW_AUTO_SWITCH_HIGH_LOW 25
#define BW_AUTO_SWITCH_LOW_HIGH 30 #define BW_AUTO_SWITCH_LOW_HIGH 30
#define DM_FALSEALARM_THRESH_LOW 400
#define DM_FALSEALARM_THRESH_HIGH 1000
#define DM_DIG_MAX 0x3e
#define DM_DIG_MIN 0x1e
#define DM_DIG_MAX_AP 0x32
#define DM_DIG_MIN_AP 0x20
#define DM_DIG_FA_UPPER 0x3e #define DM_DIG_FA_UPPER 0x3e
#define DM_DIG_FA_LOWER 0x1e #define DM_DIG_FA_LOWER 0x1e
#define DM_DIG_FA_TH0 200 #define DM_DIG_FA_TH0 200
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册