Commit d19b8647 authored by Larry Finger's avatar Larry Finger Committed by Greg Kroah-Hartman

staging: r8712u: Add module parameter to disable turbo mode

Signed-off-by: default avatarAlbert Wang <albert_wang@realtek.com.tw>
Signed-off-by: default avatarLarry Finger <Larry.Finger@lwfinger.net>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 1c9bb32a
...@@ -96,8 +96,9 @@ struct registry_priv { ...@@ -96,8 +96,9 @@ struct registry_priv {
u8 ht_enable; u8 ht_enable;
u8 cbw40_enable; u8 cbw40_enable;
u8 ampdu_enable;/*for tx*/ u8 ampdu_enable;/*for tx*/
u8 rf_config ; u8 rf_config;
u8 low_power ; u8 low_power;
u8 wifi_test;
}; };
/* For registry parameters */ /* For registry parameters */
......
...@@ -71,7 +71,8 @@ static void fill_fwpriv(struct _adapter *padapter, struct fw_priv *pfwpriv) ...@@ -71,7 +71,8 @@ static void fill_fwpriv(struct _adapter *padapter, struct fw_priv *pfwpriv)
pfwpriv->mp_mode = (pregpriv->mp_mode == 1) ? 1 : 0; pfwpriv->mp_mode = (pregpriv->mp_mode == 1) ? 1 : 0;
pfwpriv->vcsType = pregpriv->vrtl_carrier_sense; /* 0:off 1:on 2:auto */ pfwpriv->vcsType = pregpriv->vrtl_carrier_sense; /* 0:off 1:on 2:auto */
pfwpriv->vcsMode = pregpriv->vcs_type; /* 1:RTS/CTS 2:CTS to self */ pfwpriv->vcsMode = pregpriv->vcs_type; /* 1:RTS/CTS 2:CTS to self */
pfwpriv->turboMode = 1; /* default enable it */ /* default enable turboMode */
pfwpriv->turboMode = ((pregpriv->wifi_test == 1) ? 0 : 1);
pfwpriv->lowPowerMode = pregpriv->low_power; pfwpriv->lowPowerMode = pregpriv->low_power;
} }
......
...@@ -92,8 +92,13 @@ static int low_power; ...@@ -92,8 +92,13 @@ static int low_power;
/* mac address to use instead of the one stored in Efuse */ /* mac address to use instead of the one stored in Efuse */
char *r8712_initmac; char *r8712_initmac;
static char *initmac; static char *initmac;
/* if wifi_test = 1, driver will disable the turbo mode and pass it to
* firmware private.
*/
static int wifi_test = 0;
module_param_string(ifname, ifname, sizeof(ifname), S_IRUGO|S_IWUSR); module_param_string(ifname, ifname, sizeof(ifname), S_IRUGO|S_IWUSR);
module_param(wifi_test, int, 0644);
module_param(initmac, charp, 0644); module_param(initmac, charp, 0644);
module_param(video_mode, int, 0644); module_param(video_mode, int, 0644);
module_param(chip_version, int, 0644); module_param(chip_version, int, 0644);
...@@ -165,6 +170,7 @@ static uint loadparam(struct _adapter *padapter, struct net_device *pnetdev) ...@@ -165,6 +170,7 @@ static uint loadparam(struct _adapter *padapter, struct net_device *pnetdev)
registry_par->ampdu_enable = (u8)ampdu_enable; registry_par->ampdu_enable = (u8)ampdu_enable;
registry_par->rf_config = (u8)rf_config; registry_par->rf_config = (u8)rf_config;
registry_par->low_power = (u8)low_power; registry_par->low_power = (u8)low_power;
registry_par->wifi_test = (u8) wifi_test;
r8712_initmac = initmac; r8712_initmac = initmac;
return status; return status;
} }
......
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