Commit b21faf0e authored by Bitterblue Smith's avatar Bitterblue Smith Committed by Ping-Ke Shih

wifi: rtlwifi: rtl8192d: Use "rtl92d" prefix

Some functions moved from rtl8192de still use the "rtl92de" prefix.
Rename them.
Signed-off-by: default avatarBitterblue Smith <rtl8821cerfe2@gmail.com>
Signed-off-by: default avatarPing-Ke Shih <pkshih@realtek.com>
Link: https://msgid.link/abe3624d-f986-4a24-966c-67defa962e3f@gmail.com
parent e88c1714
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
#include "hw_common.h" #include "hw_common.h"
#include "phy_common.h" #include "phy_common.h"
void rtl92de_stop_tx_beacon(struct ieee80211_hw *hw) void rtl92d_stop_tx_beacon(struct ieee80211_hw *hw)
{ {
struct rtl_priv *rtlpriv = rtl_priv(hw); struct rtl_priv *rtlpriv = rtl_priv(hw);
u8 tmp1byte; u8 tmp1byte;
...@@ -27,9 +27,9 @@ void rtl92de_stop_tx_beacon(struct ieee80211_hw *hw) ...@@ -27,9 +27,9 @@ void rtl92de_stop_tx_beacon(struct ieee80211_hw *hw)
tmp1byte &= ~(BIT(0)); tmp1byte &= ~(BIT(0));
rtl_write_byte(rtlpriv, REG_TBTT_PROHIBIT + 2, tmp1byte); rtl_write_byte(rtlpriv, REG_TBTT_PROHIBIT + 2, tmp1byte);
} }
EXPORT_SYMBOL_GPL(rtl92de_stop_tx_beacon); EXPORT_SYMBOL_GPL(rtl92d_stop_tx_beacon);
void rtl92de_resume_tx_beacon(struct ieee80211_hw *hw) void rtl92d_resume_tx_beacon(struct ieee80211_hw *hw)
{ {
struct rtl_priv *rtlpriv = rtl_priv(hw); struct rtl_priv *rtlpriv = rtl_priv(hw);
u8 tmp1byte; u8 tmp1byte;
...@@ -42,7 +42,7 @@ void rtl92de_resume_tx_beacon(struct ieee80211_hw *hw) ...@@ -42,7 +42,7 @@ void rtl92de_resume_tx_beacon(struct ieee80211_hw *hw)
tmp1byte |= BIT(0); tmp1byte |= BIT(0);
rtl_write_byte(rtlpriv, REG_TBTT_PROHIBIT + 2, tmp1byte); rtl_write_byte(rtlpriv, REG_TBTT_PROHIBIT + 2, tmp1byte);
} }
EXPORT_SYMBOL_GPL(rtl92de_resume_tx_beacon); EXPORT_SYMBOL_GPL(rtl92d_resume_tx_beacon);
void rtl92d_get_hw_reg(struct ieee80211_hw *hw, u8 variable, u8 *val) void rtl92d_get_hw_reg(struct ieee80211_hw *hw, u8 variable, u8 *val)
{ {
...@@ -285,7 +285,7 @@ void rtl92d_set_hw_reg(struct ieee80211_hw *hw, u8 variable, u8 *val) ...@@ -285,7 +285,7 @@ void rtl92d_set_hw_reg(struct ieee80211_hw *hw, u8 variable, u8 *val)
} }
EXPORT_SYMBOL_GPL(rtl92d_set_hw_reg); EXPORT_SYMBOL_GPL(rtl92d_set_hw_reg);
bool rtl92de_llt_write(struct ieee80211_hw *hw, u32 address, u32 data) bool rtl92d_llt_write(struct ieee80211_hw *hw, u32 address, u32 data)
{ {
struct rtl_priv *rtlpriv = rtl_priv(hw); struct rtl_priv *rtlpriv = rtl_priv(hw);
bool status = true; bool status = true;
...@@ -307,9 +307,9 @@ bool rtl92de_llt_write(struct ieee80211_hw *hw, u32 address, u32 data) ...@@ -307,9 +307,9 @@ bool rtl92de_llt_write(struct ieee80211_hw *hw, u32 address, u32 data)
} while (++count); } while (++count);
return status; return status;
} }
EXPORT_SYMBOL_GPL(rtl92de_llt_write); EXPORT_SYMBOL_GPL(rtl92d_llt_write);
void rtl92de_enable_hw_security_config(struct ieee80211_hw *hw) void rtl92d_enable_hw_security_config(struct ieee80211_hw *hw)
{ {
struct rtl_priv *rtlpriv = rtl_priv(hw); struct rtl_priv *rtlpriv = rtl_priv(hw);
u8 sec_reg_value; u8 sec_reg_value;
...@@ -334,16 +334,16 @@ void rtl92de_enable_hw_security_config(struct ieee80211_hw *hw) ...@@ -334,16 +334,16 @@ void rtl92de_enable_hw_security_config(struct ieee80211_hw *hw)
"The SECR-value %x\n", sec_reg_value); "The SECR-value %x\n", sec_reg_value);
rtlpriv->cfg->ops->set_hw_reg(hw, HW_VAR_WPA_CONFIG, &sec_reg_value); rtlpriv->cfg->ops->set_hw_reg(hw, HW_VAR_WPA_CONFIG, &sec_reg_value);
} }
EXPORT_SYMBOL_GPL(rtl92de_enable_hw_security_config); EXPORT_SYMBOL_GPL(rtl92d_enable_hw_security_config);
/* don't set REG_EDCA_BE_PARAM here because /* don't set REG_EDCA_BE_PARAM here because
* mac80211 will send pkt when scan * mac80211 will send pkt when scan
*/ */
void rtl92de_set_qos(struct ieee80211_hw *hw, int aci) void rtl92d_set_qos(struct ieee80211_hw *hw, int aci)
{ {
rtl92d_dm_init_edca_turbo(hw); rtl92d_dm_init_edca_turbo(hw);
} }
EXPORT_SYMBOL_GPL(rtl92de_set_qos); EXPORT_SYMBOL_GPL(rtl92d_set_qos);
static enum version_8192d _rtl92d_read_chip_version(struct ieee80211_hw *hw) static enum version_8192d _rtl92d_read_chip_version(struct ieee80211_hw *hw)
{ {
...@@ -362,8 +362,8 @@ static enum version_8192d _rtl92d_read_chip_version(struct ieee80211_hw *hw) ...@@ -362,8 +362,8 @@ static enum version_8192d _rtl92d_read_chip_version(struct ieee80211_hw *hw)
return version; return version;
} }
static void _rtl92de_readpowervalue_fromprom(struct txpower_info *pwrinfo, static void _rtl92d_readpowervalue_fromprom(struct txpower_info *pwrinfo,
u8 *efuse, bool autoloadfail) u8 *efuse, bool autoloadfail)
{ {
u32 rfpath, eeaddr, group, offset, offset1, offset2; u32 rfpath, eeaddr, group, offset, offset1, offset2;
u8 i, val8; u8 i, val8;
...@@ -500,8 +500,8 @@ static void _rtl92de_readpowervalue_fromprom(struct txpower_info *pwrinfo, ...@@ -500,8 +500,8 @@ static void _rtl92de_readpowervalue_fromprom(struct txpower_info *pwrinfo,
} }
} }
static void _rtl92de_read_txpower_info(struct ieee80211_hw *hw, static void _rtl92d_read_txpower_info(struct ieee80211_hw *hw,
bool autoload_fail, u8 *hwinfo) bool autoload_fail, u8 *hwinfo)
{ {
struct rtl_priv *rtlpriv = rtl_priv(hw); struct rtl_priv *rtlpriv = rtl_priv(hw);
struct rtl_efuse *rtlefuse = rtl_efuse(rtl_priv(hw)); struct rtl_efuse *rtlefuse = rtl_efuse(rtl_priv(hw));
...@@ -509,7 +509,7 @@ static void _rtl92de_read_txpower_info(struct ieee80211_hw *hw, ...@@ -509,7 +509,7 @@ static void _rtl92de_read_txpower_info(struct ieee80211_hw *hw,
u8 tempval[2], i, pwr, diff; u8 tempval[2], i, pwr, diff;
u32 ch, rfpath, group; u32 ch, rfpath, group;
_rtl92de_readpowervalue_fromprom(&pwrinfo, hwinfo, autoload_fail); _rtl92d_readpowervalue_fromprom(&pwrinfo, hwinfo, autoload_fail);
if (!autoload_fail) { if (!autoload_fail) {
/* bit0~2 */ /* bit0~2 */
rtlefuse->eeprom_regulatory = (hwinfo[EEPROM_RF_OPT1] & 0x7); rtlefuse->eeprom_regulatory = (hwinfo[EEPROM_RF_OPT1] & 0x7);
...@@ -613,8 +613,8 @@ static void _rtl92de_read_txpower_info(struct ieee80211_hw *hw, ...@@ -613,8 +613,8 @@ static void _rtl92de_read_txpower_info(struct ieee80211_hw *hw,
} }
} }
static void _rtl92de_read_macphymode_from_prom(struct ieee80211_hw *hw, static void _rtl92d_read_macphymode_from_prom(struct ieee80211_hw *hw,
u8 *content) u8 *content)
{ {
struct rtl_priv *rtlpriv = rtl_priv(hw); struct rtl_priv *rtlpriv = rtl_priv(hw);
struct rtl_hal *rtlhal = rtl_hal(rtl_priv(hw)); struct rtl_hal *rtlhal = rtl_hal(rtl_priv(hw));
...@@ -636,15 +636,15 @@ static void _rtl92de_read_macphymode_from_prom(struct ieee80211_hw *hw, ...@@ -636,15 +636,15 @@ static void _rtl92de_read_macphymode_from_prom(struct ieee80211_hw *hw,
} }
} }
static void _rtl92de_read_macphymode_and_bandtype(struct ieee80211_hw *hw, static void _rtl92d_read_macphymode_and_bandtype(struct ieee80211_hw *hw,
u8 *content) u8 *content)
{ {
_rtl92de_read_macphymode_from_prom(hw, content); _rtl92d_read_macphymode_from_prom(hw, content);
rtl92d_phy_config_macphymode(hw); rtl92d_phy_config_macphymode(hw);
rtl92d_phy_config_macphymode_info(hw); rtl92d_phy_config_macphymode_info(hw);
} }
static void _rtl92de_efuse_update_chip_version(struct ieee80211_hw *hw) static void _rtl92d_efuse_update_chip_version(struct ieee80211_hw *hw)
{ {
struct rtl_priv *rtlpriv = rtl_priv(hw); struct rtl_priv *rtlpriv = rtl_priv(hw);
enum version_8192d chipver = rtlpriv->rtlhal.version; enum version_8192d chipver = rtlpriv->rtlhal.version;
...@@ -676,7 +676,7 @@ static void _rtl92de_efuse_update_chip_version(struct ieee80211_hw *hw) ...@@ -676,7 +676,7 @@ static void _rtl92de_efuse_update_chip_version(struct ieee80211_hw *hw)
rtlpriv->rtlhal.version = chipver; rtlpriv->rtlhal.version = chipver;
} }
static void _rtl92de_read_adapter_info(struct ieee80211_hw *hw) static void _rtl92d_read_adapter_info(struct ieee80211_hw *hw)
{ {
static const int params_pci[] = { static const int params_pci[] = {
RTL8190_EEPROM_ID, EEPROM_VID, EEPROM_DID, RTL8190_EEPROM_ID, EEPROM_VID, EEPROM_DID,
...@@ -706,8 +706,8 @@ static void _rtl92de_read_adapter_info(struct ieee80211_hw *hw) ...@@ -706,8 +706,8 @@ static void _rtl92de_read_adapter_info(struct ieee80211_hw *hw)
if (rtl_get_hwinfo(hw, rtlpriv, HWSET_MAX_SIZE, hwinfo, params)) if (rtl_get_hwinfo(hw, rtlpriv, HWSET_MAX_SIZE, hwinfo, params))
goto exit; goto exit;
_rtl92de_efuse_update_chip_version(hw); _rtl92d_efuse_update_chip_version(hw);
_rtl92de_read_macphymode_and_bandtype(hw, hwinfo); _rtl92d_read_macphymode_and_bandtype(hw, hwinfo);
/* Read Permanent MAC address for 2nd interface */ /* Read Permanent MAC address for 2nd interface */
if (rtlhal->interfaceindex != 0) if (rtlhal->interfaceindex != 0)
...@@ -717,7 +717,7 @@ static void _rtl92de_read_adapter_info(struct ieee80211_hw *hw) ...@@ -717,7 +717,7 @@ static void _rtl92de_read_adapter_info(struct ieee80211_hw *hw)
rtlpriv->cfg->ops->set_hw_reg(hw, HW_VAR_ETHER_ADDR, rtlpriv->cfg->ops->set_hw_reg(hw, HW_VAR_ETHER_ADDR,
rtlefuse->dev_addr); rtlefuse->dev_addr);
rtl_dbg(rtlpriv, COMP_INIT, DBG_DMESG, "%pM\n", rtlefuse->dev_addr); rtl_dbg(rtlpriv, COMP_INIT, DBG_DMESG, "%pM\n", rtlefuse->dev_addr);
_rtl92de_read_txpower_info(hw, rtlefuse->autoload_failflag, hwinfo); _rtl92d_read_txpower_info(hw, rtlefuse->autoload_failflag, hwinfo);
/* Read Channel Plan */ /* Read Channel Plan */
switch (rtlhal->bandset) { switch (rtlhal->bandset) {
...@@ -739,7 +739,7 @@ static void _rtl92de_read_adapter_info(struct ieee80211_hw *hw) ...@@ -739,7 +739,7 @@ static void _rtl92de_read_adapter_info(struct ieee80211_hw *hw)
kfree(hwinfo); kfree(hwinfo);
} }
void rtl92de_read_eeprom_info(struct ieee80211_hw *hw) void rtl92d_read_eeprom_info(struct ieee80211_hw *hw)
{ {
struct rtl_priv *rtlpriv = rtl_priv(hw); struct rtl_priv *rtlpriv = rtl_priv(hw);
struct rtl_efuse *rtlefuse = rtl_efuse(rtl_priv(hw)); struct rtl_efuse *rtlefuse = rtl_efuse(rtl_priv(hw));
...@@ -760,15 +760,15 @@ void rtl92de_read_eeprom_info(struct ieee80211_hw *hw) ...@@ -760,15 +760,15 @@ void rtl92de_read_eeprom_info(struct ieee80211_hw *hw)
rtl_dbg(rtlpriv, COMP_INIT, DBG_LOUD, "Autoload OK\n"); rtl_dbg(rtlpriv, COMP_INIT, DBG_LOUD, "Autoload OK\n");
rtlefuse->autoload_failflag = false; rtlefuse->autoload_failflag = false;
_rtl92de_read_adapter_info(hw); _rtl92d_read_adapter_info(hw);
} else { } else {
pr_err("Autoload ERR!!\n"); pr_err("Autoload ERR!!\n");
} }
} }
EXPORT_SYMBOL_GPL(rtl92de_read_eeprom_info); EXPORT_SYMBOL_GPL(rtl92d_read_eeprom_info);
static void rtl92de_update_hal_rate_table(struct ieee80211_hw *hw, static void rtl92d_update_hal_rate_table(struct ieee80211_hw *hw,
struct ieee80211_sta *sta) struct ieee80211_sta *sta)
{ {
struct rtl_hal *rtlhal = rtl_hal(rtl_priv(hw)); struct rtl_hal *rtlhal = rtl_hal(rtl_priv(hw));
struct rtl_mac *mac = rtl_mac(rtl_priv(hw)); struct rtl_mac *mac = rtl_mac(rtl_priv(hw));
...@@ -851,9 +851,9 @@ static void rtl92de_update_hal_rate_table(struct ieee80211_hw *hw, ...@@ -851,9 +851,9 @@ static void rtl92de_update_hal_rate_table(struct ieee80211_hw *hw,
rtl_read_dword(rtlpriv, REG_ARFR0)); rtl_read_dword(rtlpriv, REG_ARFR0));
} }
static void rtl92de_update_hal_rate_mask(struct ieee80211_hw *hw, static void rtl92d_update_hal_rate_mask(struct ieee80211_hw *hw,
struct ieee80211_sta *sta, struct ieee80211_sta *sta,
u8 rssi_level, bool update_bw) u8 rssi_level, bool update_bw)
{ {
struct rtl_hal *rtlhal = rtl_hal(rtl_priv(hw)); struct rtl_hal *rtlhal = rtl_hal(rtl_priv(hw));
struct rtl_mac *mac = rtl_mac(rtl_priv(hw)); struct rtl_mac *mac = rtl_mac(rtl_priv(hw));
...@@ -1009,20 +1009,20 @@ static void rtl92de_update_hal_rate_mask(struct ieee80211_hw *hw, ...@@ -1009,20 +1009,20 @@ static void rtl92de_update_hal_rate_mask(struct ieee80211_hw *hw,
sta_entry->ratr_index = ratr_index; sta_entry->ratr_index = ratr_index;
} }
void rtl92de_update_hal_rate_tbl(struct ieee80211_hw *hw, void rtl92d_update_hal_rate_tbl(struct ieee80211_hw *hw,
struct ieee80211_sta *sta, struct ieee80211_sta *sta,
u8 rssi_level, bool update_bw) u8 rssi_level, bool update_bw)
{ {
struct rtl_priv *rtlpriv = rtl_priv(hw); struct rtl_priv *rtlpriv = rtl_priv(hw);
if (rtlpriv->dm.useramask) if (rtlpriv->dm.useramask)
rtl92de_update_hal_rate_mask(hw, sta, rssi_level, update_bw); rtl92d_update_hal_rate_mask(hw, sta, rssi_level, update_bw);
else else
rtl92de_update_hal_rate_table(hw, sta); rtl92d_update_hal_rate_table(hw, sta);
} }
EXPORT_SYMBOL_GPL(rtl92de_update_hal_rate_tbl); EXPORT_SYMBOL_GPL(rtl92d_update_hal_rate_tbl);
void rtl92de_update_channel_access_setting(struct ieee80211_hw *hw) void rtl92d_update_channel_access_setting(struct ieee80211_hw *hw)
{ {
struct rtl_priv *rtlpriv = rtl_priv(hw); struct rtl_priv *rtlpriv = rtl_priv(hw);
struct rtl_mac *mac = rtl_mac(rtl_priv(hw)); struct rtl_mac *mac = rtl_mac(rtl_priv(hw));
...@@ -1036,9 +1036,9 @@ void rtl92de_update_channel_access_setting(struct ieee80211_hw *hw) ...@@ -1036,9 +1036,9 @@ void rtl92de_update_channel_access_setting(struct ieee80211_hw *hw)
sifs_timer = 0x1010; sifs_timer = 0x1010;
rtlpriv->cfg->ops->set_hw_reg(hw, HW_VAR_SIFS, (u8 *)&sifs_timer); rtlpriv->cfg->ops->set_hw_reg(hw, HW_VAR_SIFS, (u8 *)&sifs_timer);
} }
EXPORT_SYMBOL_GPL(rtl92de_update_channel_access_setting); EXPORT_SYMBOL_GPL(rtl92d_update_channel_access_setting);
bool rtl92de_gpio_radio_on_off_checking(struct ieee80211_hw *hw, u8 *valid) bool rtl92d_gpio_radio_on_off_checking(struct ieee80211_hw *hw, u8 *valid)
{ {
struct rtl_priv *rtlpriv = rtl_priv(hw); struct rtl_priv *rtlpriv = rtl_priv(hw);
struct rtl_ps_ctl *ppsc = rtl_psc(rtl_priv(hw)); struct rtl_ps_ctl *ppsc = rtl_psc(rtl_priv(hw));
...@@ -1093,11 +1093,11 @@ bool rtl92de_gpio_radio_on_off_checking(struct ieee80211_hw *hw, u8 *valid) ...@@ -1093,11 +1093,11 @@ bool rtl92de_gpio_radio_on_off_checking(struct ieee80211_hw *hw, u8 *valid)
*valid = 1; *valid = 1;
return !ppsc->hwradiooff; return !ppsc->hwradiooff;
} }
EXPORT_SYMBOL_GPL(rtl92de_gpio_radio_on_off_checking); EXPORT_SYMBOL_GPL(rtl92d_gpio_radio_on_off_checking);
void rtl92de_set_key(struct ieee80211_hw *hw, u32 key_index, void rtl92d_set_key(struct ieee80211_hw *hw, u32 key_index,
u8 *p_macaddr, bool is_group, u8 enc_algo, u8 *p_macaddr, bool is_group, u8 enc_algo,
bool is_wepkey, bool clear_all) bool is_wepkey, bool clear_all)
{ {
static const u8 cam_const_addr[4][6] = { static const u8 cam_const_addr[4][6] = {
{0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, {0x00, 0x00, 0x00, 0x00, 0x00, 0x00},
...@@ -1222,4 +1222,4 @@ void rtl92de_set_key(struct ieee80211_hw *hw, u32 key_index, ...@@ -1222,4 +1222,4 @@ void rtl92de_set_key(struct ieee80211_hw *hw, u32 key_index,
} }
} }
} }
EXPORT_SYMBOL_GPL(rtl92de_set_key); EXPORT_SYMBOL_GPL(rtl92d_set_key);
...@@ -4,21 +4,21 @@ ...@@ -4,21 +4,21 @@
#ifndef __RTL92D_HW_COMMON_H__ #ifndef __RTL92D_HW_COMMON_H__
#define __RTL92D_HW_COMMON_H__ #define __RTL92D_HW_COMMON_H__
void rtl92de_stop_tx_beacon(struct ieee80211_hw *hw); void rtl92d_stop_tx_beacon(struct ieee80211_hw *hw);
void rtl92de_resume_tx_beacon(struct ieee80211_hw *hw); void rtl92d_resume_tx_beacon(struct ieee80211_hw *hw);
void rtl92d_get_hw_reg(struct ieee80211_hw *hw, u8 variable, u8 *val); void rtl92d_get_hw_reg(struct ieee80211_hw *hw, u8 variable, u8 *val);
void rtl92d_set_hw_reg(struct ieee80211_hw *hw, u8 variable, u8 *val); void rtl92d_set_hw_reg(struct ieee80211_hw *hw, u8 variable, u8 *val);
bool rtl92de_llt_write(struct ieee80211_hw *hw, u32 address, u32 data); bool rtl92d_llt_write(struct ieee80211_hw *hw, u32 address, u32 data);
void rtl92de_enable_hw_security_config(struct ieee80211_hw *hw); void rtl92d_enable_hw_security_config(struct ieee80211_hw *hw);
void rtl92de_set_qos(struct ieee80211_hw *hw, int aci); void rtl92d_set_qos(struct ieee80211_hw *hw, int aci);
void rtl92de_read_eeprom_info(struct ieee80211_hw *hw); void rtl92d_read_eeprom_info(struct ieee80211_hw *hw);
void rtl92de_update_hal_rate_tbl(struct ieee80211_hw *hw, void rtl92d_update_hal_rate_tbl(struct ieee80211_hw *hw,
struct ieee80211_sta *sta, struct ieee80211_sta *sta,
u8 rssi_level, bool update_bw); u8 rssi_level, bool update_bw);
void rtl92de_update_channel_access_setting(struct ieee80211_hw *hw); void rtl92d_update_channel_access_setting(struct ieee80211_hw *hw);
bool rtl92de_gpio_radio_on_off_checking(struct ieee80211_hw *hw, u8 *valid); bool rtl92d_gpio_radio_on_off_checking(struct ieee80211_hw *hw, u8 *valid);
void rtl92de_set_key(struct ieee80211_hw *hw, u32 key_index, void rtl92d_set_key(struct ieee80211_hw *hw, u32 key_index,
u8 *p_macaddr, bool is_group, u8 enc_algo, u8 *p_macaddr, bool is_group, u8 enc_algo,
bool is_wepkey, bool clear_all); bool is_wepkey, bool clear_all);
#endif #endif
...@@ -7,8 +7,8 @@ ...@@ -7,8 +7,8 @@
#include "def.h" #include "def.h"
#include "trx_common.h" #include "trx_common.h"
static long _rtl92de_translate_todbm(struct ieee80211_hw *hw, static long _rtl92d_translate_todbm(struct ieee80211_hw *hw,
u8 signal_strength_index) u8 signal_strength_index)
{ {
long signal_power; long signal_power;
...@@ -17,13 +17,13 @@ static long _rtl92de_translate_todbm(struct ieee80211_hw *hw, ...@@ -17,13 +17,13 @@ static long _rtl92de_translate_todbm(struct ieee80211_hw *hw,
return signal_power; return signal_power;
} }
static void _rtl92de_query_rxphystatus(struct ieee80211_hw *hw, static void _rtl92d_query_rxphystatus(struct ieee80211_hw *hw,
struct rtl_stats *pstats, struct rtl_stats *pstats,
__le32 *pdesc, __le32 *pdesc,
struct rx_fwinfo_92d *p_drvinfo, struct rx_fwinfo_92d *p_drvinfo,
bool packet_match_bssid, bool packet_match_bssid,
bool packet_toself, bool packet_toself,
bool packet_beacon) bool packet_beacon)
{ {
struct rtl_priv *rtlpriv = rtl_priv(hw); struct rtl_priv *rtlpriv = rtl_priv(hw);
struct rtl_phy *rtlphy = &rtlpriv->phy; struct rtl_phy *rtlphy = &rtlpriv->phy;
...@@ -203,8 +203,8 @@ static void rtl92d_loop_over_paths(struct ieee80211_hw *hw, ...@@ -203,8 +203,8 @@ static void rtl92d_loop_over_paths(struct ieee80211_hw *hw,
} }
} }
static void _rtl92de_process_ui_rssi(struct ieee80211_hw *hw, static void _rtl92d_process_ui_rssi(struct ieee80211_hw *hw,
struct rtl_stats *pstats) struct rtl_stats *pstats)
{ {
struct rtl_priv *rtlpriv = rtl_priv(hw); struct rtl_priv *rtlpriv = rtl_priv(hw);
struct rt_smooth_data *ui_rssi; struct rt_smooth_data *ui_rssi;
...@@ -226,15 +226,15 @@ static void _rtl92de_process_ui_rssi(struct ieee80211_hw *hw, ...@@ -226,15 +226,15 @@ static void _rtl92de_process_ui_rssi(struct ieee80211_hw *hw,
if (ui_rssi->index >= PHY_RSSI_SLID_WIN_MAX) if (ui_rssi->index >= PHY_RSSI_SLID_WIN_MAX)
ui_rssi->index = 0; ui_rssi->index = 0;
tmpval = ui_rssi->total_val / ui_rssi->total_num; tmpval = ui_rssi->total_val / ui_rssi->total_num;
rtlpriv->stats.signal_strength = _rtl92de_translate_todbm(hw, (u8)tmpval); rtlpriv->stats.signal_strength = _rtl92d_translate_todbm(hw, (u8)tmpval);
pstats->rssi = rtlpriv->stats.signal_strength; pstats->rssi = rtlpriv->stats.signal_strength;
if (!pstats->is_cck && pstats->packet_toself) if (!pstats->is_cck && pstats->packet_toself)
rtl92d_loop_over_paths(hw, pstats); rtl92d_loop_over_paths(hw, pstats);
} }
static void _rtl92de_update_rxsignalstatistics(struct ieee80211_hw *hw, static void _rtl92d_update_rxsignalstatistics(struct ieee80211_hw *hw,
struct rtl_stats *pstats) struct rtl_stats *pstats)
{ {
struct rtl_priv *rtlpriv = rtl_priv(hw); struct rtl_priv *rtlpriv = rtl_priv(hw);
int weighting = 0; int weighting = 0;
...@@ -249,8 +249,8 @@ static void _rtl92de_update_rxsignalstatistics(struct ieee80211_hw *hw, ...@@ -249,8 +249,8 @@ static void _rtl92de_update_rxsignalstatistics(struct ieee80211_hw *hw,
5 + pstats->recvsignalpower + weighting) / 6; 5 + pstats->recvsignalpower + weighting) / 6;
} }
static void _rtl92de_process_pwdb(struct ieee80211_hw *hw, static void _rtl92d_process_pwdb(struct ieee80211_hw *hw,
struct rtl_stats *pstats) struct rtl_stats *pstats)
{ {
struct rtl_priv *rtlpriv = rtl_priv(hw); struct rtl_priv *rtlpriv = rtl_priv(hw);
struct rtl_mac *mac = rtl_mac(rtl_priv(hw)); struct rtl_mac *mac = rtl_mac(rtl_priv(hw));
...@@ -276,7 +276,7 @@ static void _rtl92de_process_pwdb(struct ieee80211_hw *hw, ...@@ -276,7 +276,7 @@ static void _rtl92de_process_pwdb(struct ieee80211_hw *hw,
(pstats->rx_pwdb_all)) / (RX_SMOOTH_FACTOR); (pstats->rx_pwdb_all)) / (RX_SMOOTH_FACTOR);
} }
rtlpriv->dm.undec_sm_pwdb = undec_sm_pwdb; rtlpriv->dm.undec_sm_pwdb = undec_sm_pwdb;
_rtl92de_update_rxsignalstatistics(hw, pstats); _rtl92d_update_rxsignalstatistics(hw, pstats);
} }
} }
...@@ -301,8 +301,8 @@ static void rtl92d_loop_over_streams(struct ieee80211_hw *hw, ...@@ -301,8 +301,8 @@ static void rtl92d_loop_over_streams(struct ieee80211_hw *hw,
} }
} }
static void _rtl92de_process_ui_link_quality(struct ieee80211_hw *hw, static void _rtl92d_process_ui_link_quality(struct ieee80211_hw *hw,
struct rtl_stats *pstats) struct rtl_stats *pstats)
{ {
struct rtl_priv *rtlpriv = rtl_priv(hw); struct rtl_priv *rtlpriv = rtl_priv(hw);
struct rt_smooth_data *ui_link_quality; struct rt_smooth_data *ui_link_quality;
...@@ -330,24 +330,24 @@ static void _rtl92de_process_ui_link_quality(struct ieee80211_hw *hw, ...@@ -330,24 +330,24 @@ static void _rtl92de_process_ui_link_quality(struct ieee80211_hw *hw,
rtl92d_loop_over_streams(hw, pstats); rtl92d_loop_over_streams(hw, pstats);
} }
static void _rtl92de_process_phyinfo(struct ieee80211_hw *hw, static void _rtl92d_process_phyinfo(struct ieee80211_hw *hw,
u8 *buffer, u8 *buffer,
struct rtl_stats *pcurrent_stats) struct rtl_stats *pcurrent_stats)
{ {
if (!pcurrent_stats->packet_matchbssid && if (!pcurrent_stats->packet_matchbssid &&
!pcurrent_stats->packet_beacon) !pcurrent_stats->packet_beacon)
return; return;
_rtl92de_process_ui_rssi(hw, pcurrent_stats); _rtl92d_process_ui_rssi(hw, pcurrent_stats);
_rtl92de_process_pwdb(hw, pcurrent_stats); _rtl92d_process_pwdb(hw, pcurrent_stats);
_rtl92de_process_ui_link_quality(hw, pcurrent_stats); _rtl92d_process_ui_link_quality(hw, pcurrent_stats);
} }
static void _rtl92de_translate_rx_signal_stuff(struct ieee80211_hw *hw, static void _rtl92d_translate_rx_signal_stuff(struct ieee80211_hw *hw,
struct sk_buff *skb, struct sk_buff *skb,
struct rtl_stats *pstats, struct rtl_stats *pstats,
__le32 *pdesc, __le32 *pdesc,
struct rx_fwinfo_92d *p_drvinfo) struct rx_fwinfo_92d *p_drvinfo)
{ {
struct rtl_efuse *rtlefuse = rtl_efuse(rtl_priv(hw)); struct rtl_efuse *rtlefuse = rtl_efuse(rtl_priv(hw));
struct rtl_mac *mac = rtl_mac(rtl_priv(hw)); struct rtl_mac *mac = rtl_mac(rtl_priv(hw));
...@@ -375,15 +375,15 @@ static void _rtl92de_translate_rx_signal_stuff(struct ieee80211_hw *hw, ...@@ -375,15 +375,15 @@ static void _rtl92de_translate_rx_signal_stuff(struct ieee80211_hw *hw,
packet_toself = packet_matchbssid && packet_toself = packet_matchbssid &&
ether_addr_equal(praddr, rtlefuse->dev_addr); ether_addr_equal(praddr, rtlefuse->dev_addr);
packet_beacon = ieee80211_is_beacon(fc); packet_beacon = ieee80211_is_beacon(fc);
_rtl92de_query_rxphystatus(hw, pstats, pdesc, p_drvinfo, _rtl92d_query_rxphystatus(hw, pstats, pdesc, p_drvinfo,
packet_matchbssid, packet_toself, packet_matchbssid, packet_toself,
packet_beacon); packet_beacon);
_rtl92de_process_phyinfo(hw, tmp_buf, pstats); _rtl92d_process_phyinfo(hw, tmp_buf, pstats);
} }
bool rtl92de_rx_query_desc(struct ieee80211_hw *hw, struct rtl_stats *stats, bool rtl92d_rx_query_desc(struct ieee80211_hw *hw, struct rtl_stats *stats,
struct ieee80211_rx_status *rx_status, struct ieee80211_rx_status *rx_status,
u8 *pdesc8, struct sk_buff *skb) u8 *pdesc8, struct sk_buff *skb)
{ {
__le32 *pdesc = (__le32 *)pdesc8; __le32 *pdesc = (__le32 *)pdesc8;
struct rx_fwinfo_92d *p_drvinfo; struct rx_fwinfo_92d *p_drvinfo;
...@@ -423,17 +423,17 @@ bool rtl92de_rx_query_desc(struct ieee80211_hw *hw, struct rtl_stats *stats, ...@@ -423,17 +423,17 @@ bool rtl92de_rx_query_desc(struct ieee80211_hw *hw, struct rtl_stats *stats,
if (phystatus) { if (phystatus) {
p_drvinfo = (struct rx_fwinfo_92d *)(skb->data + p_drvinfo = (struct rx_fwinfo_92d *)(skb->data +
stats->rx_bufshift); stats->rx_bufshift);
_rtl92de_translate_rx_signal_stuff(hw, skb, stats, pdesc, _rtl92d_translate_rx_signal_stuff(hw, skb, stats, pdesc,
p_drvinfo); p_drvinfo);
} }
/*rx_status->qual = stats->signal; */ /*rx_status->qual = stats->signal; */
rx_status->signal = stats->recvsignalpower + 10; rx_status->signal = stats->recvsignalpower + 10;
return true; return true;
} }
EXPORT_SYMBOL_GPL(rtl92de_rx_query_desc); EXPORT_SYMBOL_GPL(rtl92d_rx_query_desc);
void rtl92de_set_desc(struct ieee80211_hw *hw, u8 *pdesc8, bool istx, void rtl92d_set_desc(struct ieee80211_hw *hw, u8 *pdesc8, bool istx,
u8 desc_name, u8 *val) u8 desc_name, u8 *val)
{ {
__le32 *pdesc = (__le32 *)pdesc8; __le32 *pdesc = (__le32 *)pdesc8;
...@@ -473,10 +473,10 @@ void rtl92de_set_desc(struct ieee80211_hw *hw, u8 *pdesc8, bool istx, ...@@ -473,10 +473,10 @@ void rtl92de_set_desc(struct ieee80211_hw *hw, u8 *pdesc8, bool istx,
} }
} }
} }
EXPORT_SYMBOL_GPL(rtl92de_set_desc); EXPORT_SYMBOL_GPL(rtl92d_set_desc);
u64 rtl92de_get_desc(struct ieee80211_hw *hw, u64 rtl92d_get_desc(struct ieee80211_hw *hw,
u8 *p_desc8, bool istx, u8 desc_name) u8 *p_desc8, bool istx, u8 desc_name)
{ {
__le32 *p_desc = (__le32 *)p_desc8; __le32 *p_desc = (__le32 *)p_desc8;
u32 ret = 0; u32 ret = 0;
...@@ -513,4 +513,4 @@ u64 rtl92de_get_desc(struct ieee80211_hw *hw, ...@@ -513,4 +513,4 @@ u64 rtl92de_get_desc(struct ieee80211_hw *hw,
} }
return ret; return ret;
} }
EXPORT_SYMBOL_GPL(rtl92de_get_desc); EXPORT_SYMBOL_GPL(rtl92d_get_desc);
...@@ -393,13 +393,13 @@ struct rx_fwinfo_92d { ...@@ -393,13 +393,13 @@ struct rx_fwinfo_92d {
#endif #endif
} __packed; } __packed;
bool rtl92de_rx_query_desc(struct ieee80211_hw *hw, bool rtl92d_rx_query_desc(struct ieee80211_hw *hw,
struct rtl_stats *stats, struct rtl_stats *stats,
struct ieee80211_rx_status *rx_status, struct ieee80211_rx_status *rx_status,
u8 *pdesc, struct sk_buff *skb); u8 *pdesc, struct sk_buff *skb);
void rtl92de_set_desc(struct ieee80211_hw *hw, u8 *pdesc, bool istx, void rtl92d_set_desc(struct ieee80211_hw *hw, u8 *pdesc, bool istx,
u8 desc_name, u8 *val); u8 desc_name, u8 *val);
u64 rtl92de_get_desc(struct ieee80211_hw *hw, u64 rtl92d_get_desc(struct ieee80211_hw *hw,
u8 *p_desc, bool istx, u8 desc_name); u8 *p_desc, bool istx, u8 desc_name);
#endif #endif
...@@ -181,7 +181,7 @@ void rtl92de_set_hw_reg(struct ieee80211_hw *hw, u8 variable, u8 *val) ...@@ -181,7 +181,7 @@ void rtl92de_set_hw_reg(struct ieee80211_hw *hw, u8 variable, u8 *val)
u8 btype_ibss = val[0]; u8 btype_ibss = val[0];
if (btype_ibss) if (btype_ibss)
rtl92de_stop_tx_beacon(hw); rtl92d_stop_tx_beacon(hw);
_rtl92de_set_bcn_ctrl_reg(hw, 0, BIT(3)); _rtl92de_set_bcn_ctrl_reg(hw, 0, BIT(3));
rtl_write_dword(rtlpriv, REG_TSFTR, rtl_write_dword(rtlpriv, REG_TSFTR,
(u32) (mac->tsf & 0xffffffff)); (u32) (mac->tsf & 0xffffffff));
...@@ -189,7 +189,7 @@ void rtl92de_set_hw_reg(struct ieee80211_hw *hw, u8 variable, u8 *val) ...@@ -189,7 +189,7 @@ void rtl92de_set_hw_reg(struct ieee80211_hw *hw, u8 variable, u8 *val)
(u32) ((mac->tsf >> 32) & 0xffffffff)); (u32) ((mac->tsf >> 32) & 0xffffffff));
_rtl92de_set_bcn_ctrl_reg(hw, BIT(3), 0); _rtl92de_set_bcn_ctrl_reg(hw, BIT(3), 0);
if (btype_ibss) if (btype_ibss)
rtl92de_resume_tx_beacon(hw); rtl92d_resume_tx_beacon(hw);
break; break;
} }
...@@ -295,13 +295,13 @@ static bool _rtl92de_llt_table_init(struct ieee80211_hw *hw) ...@@ -295,13 +295,13 @@ static bool _rtl92de_llt_table_init(struct ieee80211_hw *hw)
/* 18. LLT_table_init(Adapter); */ /* 18. LLT_table_init(Adapter); */
for (i = 0; i < (txpktbuf_bndy - 1); i++) { for (i = 0; i < (txpktbuf_bndy - 1); i++) {
status = rtl92de_llt_write(hw, i, i + 1); status = rtl92d_llt_write(hw, i, i + 1);
if (!status) if (!status)
return status; return status;
} }
/* end of list */ /* end of list */
status = rtl92de_llt_write(hw, (txpktbuf_bndy - 1), 0xFF); status = rtl92d_llt_write(hw, (txpktbuf_bndy - 1), 0xFF);
if (!status) if (!status)
return status; return status;
...@@ -310,13 +310,13 @@ static bool _rtl92de_llt_table_init(struct ieee80211_hw *hw) ...@@ -310,13 +310,13 @@ static bool _rtl92de_llt_table_init(struct ieee80211_hw *hw)
/* config this MAC as two MAC transfer. */ /* config this MAC as two MAC transfer. */
/* Otherwise used as local loopback buffer. */ /* Otherwise used as local loopback buffer. */
for (i = txpktbuf_bndy; i < maxpage; i++) { for (i = txpktbuf_bndy; i < maxpage; i++) {
status = rtl92de_llt_write(hw, i, (i + 1)); status = rtl92d_llt_write(hw, i, (i + 1));
if (!status) if (!status)
return status; return status;
} }
/* Let last entry point to the start entry of ring buffer */ /* Let last entry point to the start entry of ring buffer */
status = rtl92de_llt_write(hw, maxpage, txpktbuf_bndy); status = rtl92d_llt_write(hw, maxpage, txpktbuf_bndy);
if (!status) if (!status)
return status; return status;
...@@ -688,7 +688,7 @@ int rtl92de_hw_init(struct ieee80211_hw *hw) ...@@ -688,7 +688,7 @@ int rtl92de_hw_init(struct ieee80211_hw *hw)
/* reset hw sec */ /* reset hw sec */
rtl_cam_reset_all_entry(hw); rtl_cam_reset_all_entry(hw);
rtl92de_enable_hw_security_config(hw); rtl92d_enable_hw_security_config(hw);
/* Read EEPROM TX power index and PHY_REG_PG.txt to capture correct */ /* Read EEPROM TX power index and PHY_REG_PG.txt to capture correct */
/* TX power index for different rate set. */ /* TX power index for different rate set. */
...@@ -742,11 +742,11 @@ static int _rtl92de_set_media_status(struct ieee80211_hw *hw, ...@@ -742,11 +742,11 @@ static int _rtl92de_set_media_status(struct ieee80211_hw *hw,
if (type == NL80211_IFTYPE_UNSPECIFIED || if (type == NL80211_IFTYPE_UNSPECIFIED ||
type == NL80211_IFTYPE_STATION) { type == NL80211_IFTYPE_STATION) {
rtl92de_stop_tx_beacon(hw); rtl92d_stop_tx_beacon(hw);
_rtl92de_enable_bcn_sub_func(hw); _rtl92de_enable_bcn_sub_func(hw);
} else if (type == NL80211_IFTYPE_ADHOC || } else if (type == NL80211_IFTYPE_ADHOC ||
type == NL80211_IFTYPE_AP) { type == NL80211_IFTYPE_AP) {
rtl92de_resume_tx_beacon(hw); rtl92d_resume_tx_beacon(hw);
_rtl92de_disable_bcn_sub_func(hw); _rtl92de_disable_bcn_sub_func(hw);
} else { } else {
rtl_dbg(rtlpriv, COMP_ERR, DBG_WARNING, rtl_dbg(rtlpriv, COMP_ERR, DBG_WARNING,
......
...@@ -187,7 +187,7 @@ static void rtl92d_deinit_sw_vars(struct ieee80211_hw *hw) ...@@ -187,7 +187,7 @@ static void rtl92d_deinit_sw_vars(struct ieee80211_hw *hw)
static struct rtl_hal_ops rtl8192de_hal_ops = { static struct rtl_hal_ops rtl8192de_hal_ops = {
.init_sw_vars = rtl92d_init_sw_vars, .init_sw_vars = rtl92d_init_sw_vars,
.deinit_sw_vars = rtl92d_deinit_sw_vars, .deinit_sw_vars = rtl92d_deinit_sw_vars,
.read_eeprom_info = rtl92de_read_eeprom_info, .read_eeprom_info = rtl92d_read_eeprom_info,
.interrupt_recognized = rtl92de_interrupt_recognized, .interrupt_recognized = rtl92de_interrupt_recognized,
.hw_init = rtl92de_hw_init, .hw_init = rtl92de_hw_init,
.hw_disable = rtl92de_card_disable, .hw_disable = rtl92de_card_disable,
...@@ -197,30 +197,30 @@ static struct rtl_hal_ops rtl8192de_hal_ops = { ...@@ -197,30 +197,30 @@ static struct rtl_hal_ops rtl8192de_hal_ops = {
.disable_interrupt = rtl92de_disable_interrupt, .disable_interrupt = rtl92de_disable_interrupt,
.set_network_type = rtl92de_set_network_type, .set_network_type = rtl92de_set_network_type,
.set_chk_bssid = rtl92de_set_check_bssid, .set_chk_bssid = rtl92de_set_check_bssid,
.set_qos = rtl92de_set_qos, .set_qos = rtl92d_set_qos,
.set_bcn_reg = rtl92de_set_beacon_related_registers, .set_bcn_reg = rtl92de_set_beacon_related_registers,
.set_bcn_intv = rtl92de_set_beacon_interval, .set_bcn_intv = rtl92de_set_beacon_interval,
.update_interrupt_mask = rtl92de_update_interrupt_mask, .update_interrupt_mask = rtl92de_update_interrupt_mask,
.get_hw_reg = rtl92de_get_hw_reg, .get_hw_reg = rtl92de_get_hw_reg,
.set_hw_reg = rtl92de_set_hw_reg, .set_hw_reg = rtl92de_set_hw_reg,
.update_rate_tbl = rtl92de_update_hal_rate_tbl, .update_rate_tbl = rtl92d_update_hal_rate_tbl,
.fill_tx_desc = rtl92de_tx_fill_desc, .fill_tx_desc = rtl92de_tx_fill_desc,
.fill_tx_cmddesc = rtl92de_tx_fill_cmddesc, .fill_tx_cmddesc = rtl92de_tx_fill_cmddesc,
.query_rx_desc = rtl92de_rx_query_desc, .query_rx_desc = rtl92d_rx_query_desc,
.set_channel_access = rtl92de_update_channel_access_setting, .set_channel_access = rtl92d_update_channel_access_setting,
.radio_onoff_checking = rtl92de_gpio_radio_on_off_checking, .radio_onoff_checking = rtl92d_gpio_radio_on_off_checking,
.set_bw_mode = rtl92d_phy_set_bw_mode, .set_bw_mode = rtl92d_phy_set_bw_mode,
.switch_channel = rtl92d_phy_sw_chnl, .switch_channel = rtl92d_phy_sw_chnl,
.dm_watchdog = rtl92de_dm_watchdog, .dm_watchdog = rtl92de_dm_watchdog,
.scan_operation_backup = rtl_phy_scan_operation_backup, .scan_operation_backup = rtl_phy_scan_operation_backup,
.set_rf_power_state = rtl92d_phy_set_rf_power_state, .set_rf_power_state = rtl92d_phy_set_rf_power_state,
.led_control = rtl92de_led_control, .led_control = rtl92de_led_control,
.set_desc = rtl92de_set_desc, .set_desc = rtl92d_set_desc,
.get_desc = rtl92de_get_desc, .get_desc = rtl92d_get_desc,
.is_tx_desc_closed = rtl92de_is_tx_desc_closed, .is_tx_desc_closed = rtl92de_is_tx_desc_closed,
.tx_polling = rtl92de_tx_polling, .tx_polling = rtl92de_tx_polling,
.enable_hw_sec = rtl92de_enable_hw_security_config, .enable_hw_sec = rtl92d_enable_hw_security_config,
.set_key = rtl92de_set_key, .set_key = rtl92d_set_key,
.get_bbreg = rtl92d_phy_query_bb_reg, .get_bbreg = rtl92d_phy_query_bb_reg,
.set_bbreg = rtl92d_phy_set_bb_reg, .set_bbreg = rtl92d_phy_set_bb_reg,
.get_rfreg = rtl92d_phy_query_rf_reg, .get_rfreg = rtl92d_phy_query_rf_reg,
......
...@@ -292,7 +292,7 @@ bool rtl92de_is_tx_desc_closed(struct ieee80211_hw *hw, ...@@ -292,7 +292,7 @@ bool rtl92de_is_tx_desc_closed(struct ieee80211_hw *hw,
struct rtl_pci *rtlpci = rtl_pcidev(rtl_pcipriv(hw)); struct rtl_pci *rtlpci = rtl_pcidev(rtl_pcipriv(hw));
struct rtl8192_tx_ring *ring = &rtlpci->tx_ring[hw_queue]; struct rtl8192_tx_ring *ring = &rtlpci->tx_ring[hw_queue];
u8 *entry = (u8 *)(&ring->desc[ring->idx]); u8 *entry = (u8 *)(&ring->desc[ring->idx]);
u8 own = (u8)rtl92de_get_desc(hw, entry, true, HW_DESC_OWN); u8 own = (u8)rtl92d_get_desc(hw, entry, true, HW_DESC_OWN);
/* a beacon packet will only use the first /* a beacon packet will only use the first
* descriptor by defaut, and the own bit may not * descriptor by defaut, and the own bit may not
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment