Commit defe02c7 authored by Pontus Fuchs's avatar Pontus Fuchs Committed by Luciano Coelho

wl12xx: Set IEEE80211_TX_RC_SHORT_GI if short GI was used on

New FW reports usage of short GI as a rate class index. Check for
this rate and set the IEEE80211_TX_RC_SHORT_GI if used.
Signed-off-by: default avatarPontus Fuchs <pontus.fuchs@gmail.com>
Signed-off-by: default avatarEliad Peller <eliad@wizery.com>
Signed-off-by: default avatarLuciano Coelho <coelho@ti.com>
parent d2e2d769
...@@ -66,7 +66,8 @@ enum { ...@@ -66,7 +66,8 @@ enum {
}; };
enum { enum {
CONF_HW_RXTX_RATE_MCS7 = 0, CONF_HW_RXTX_RATE_MCS7_SGI = 0,
CONF_HW_RXTX_RATE_MCS7,
CONF_HW_RXTX_RATE_MCS6, CONF_HW_RXTX_RATE_MCS6,
CONF_HW_RXTX_RATE_MCS5, CONF_HW_RXTX_RATE_MCS5,
CONF_HW_RXTX_RATE_MCS4, CONF_HW_RXTX_RATE_MCS4,
...@@ -92,7 +93,7 @@ enum { ...@@ -92,7 +93,7 @@ enum {
}; };
/* Rates between and including these are MCS rates */ /* Rates between and including these are MCS rates */
#define CONF_HW_RXTX_RATE_MCS_MIN CONF_HW_RXTX_RATE_MCS7 #define CONF_HW_RXTX_RATE_MCS_MIN CONF_HW_RXTX_RATE_MCS7_SGI
#define CONF_HW_RXTX_RATE_MCS_MAX CONF_HW_RXTX_RATE_MCS0 #define CONF_HW_RXTX_RATE_MCS_MAX CONF_HW_RXTX_RATE_MCS0
enum { enum {
......
...@@ -4406,6 +4406,7 @@ static struct ieee80211_channel wl1271_channels[] = { ...@@ -4406,6 +4406,7 @@ static struct ieee80211_channel wl1271_channels[] = {
/* mapping to indexes for wl1271_rates */ /* mapping to indexes for wl1271_rates */
static const u8 wl1271_rate_to_idx_2ghz[] = { static const u8 wl1271_rate_to_idx_2ghz[] = {
/* MCS rates are used only with 11n */ /* MCS rates are used only with 11n */
7, /* CONF_HW_RXTX_RATE_MCS7_SGI */
7, /* CONF_HW_RXTX_RATE_MCS7 */ 7, /* CONF_HW_RXTX_RATE_MCS7 */
6, /* CONF_HW_RXTX_RATE_MCS6 */ 6, /* CONF_HW_RXTX_RATE_MCS6 */
5, /* CONF_HW_RXTX_RATE_MCS5 */ 5, /* CONF_HW_RXTX_RATE_MCS5 */
...@@ -4527,6 +4528,7 @@ static struct ieee80211_channel wl1271_channels_5ghz[] = { ...@@ -4527,6 +4528,7 @@ static struct ieee80211_channel wl1271_channels_5ghz[] = {
/* mapping to indexes for wl1271_rates_5ghz */ /* mapping to indexes for wl1271_rates_5ghz */
static const u8 wl1271_rate_to_idx_5ghz[] = { static const u8 wl1271_rate_to_idx_5ghz[] = {
/* MCS rates are used only with 11n */ /* MCS rates are used only with 11n */
7, /* CONF_HW_RXTX_RATE_MCS7_SGI */
7, /* CONF_HW_RXTX_RATE_MCS7 */ 7, /* CONF_HW_RXTX_RATE_MCS7 */
6, /* CONF_HW_RXTX_RATE_MCS6 */ 6, /* CONF_HW_RXTX_RATE_MCS6 */
5, /* CONF_HW_RXTX_RATE_MCS5 */ 5, /* CONF_HW_RXTX_RATE_MCS5 */
......
...@@ -766,10 +766,14 @@ void wl1271_tx_work(struct work_struct *work) ...@@ -766,10 +766,14 @@ void wl1271_tx_work(struct work_struct *work)
static u8 wl1271_tx_get_rate_flags(u8 rate_class_index) static u8 wl1271_tx_get_rate_flags(u8 rate_class_index)
{ {
u8 flags = 0;
if (rate_class_index >= CONF_HW_RXTX_RATE_MCS_MIN && if (rate_class_index >= CONF_HW_RXTX_RATE_MCS_MIN &&
rate_class_index <= CONF_HW_RXTX_RATE_MCS_MAX) rate_class_index <= CONF_HW_RXTX_RATE_MCS_MAX)
return IEEE80211_TX_RC_MCS; flags |= IEEE80211_TX_RC_MCS;
return 0; if (rate_class_index == CONF_HW_RXTX_RATE_MCS7_SGI)
flags |= IEEE80211_TX_RC_SHORT_GI;
return flags;
} }
static void wl1271_tx_complete_packet(struct wl1271 *wl, static void wl1271_tx_complete_packet(struct wl1271 *wl,
......
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