diff options
author | Yogesh Ashok Powar <yogeshp@marvell.com> | 2014-02-25 07:12:18 -0500 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2014-02-28 14:33:11 -0500 |
commit | 031eb464fb4b7e475c4e8ca59502f017ae328704 (patch) | |
tree | a5c9a0bb8068fe70039d3654555671bddbe343dc | |
parent | 4c924f42c9c9f60ca861a8c4a52825778e9e09a0 (diff) |
mwl8k: Adding support to gather survey per channel
Survey stats such as channel busy time, rx busy time
and noise are collected when sw_scan starts for every
switched new channel. This happens till sw_scan stops.
All the collected stats are shared up when get_survey()
is called.
This implements support for ACS feature from Hostapd.
Signed-off-by: Yogesh Ashok Powar <yogeshp@marvell.com>
Signed-off-by: Nishant Sarmukadam <nishants@marvell.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
-rw-r--r-- | drivers/net/wireless/mwl8k.c | 115 |
1 files changed, 109 insertions, 6 deletions
diff --git a/drivers/net/wireless/mwl8k.c b/drivers/net/wireless/mwl8k.c index 61d5bea9a9d7..b6d83f6888fa 100644 --- a/drivers/net/wireless/mwl8k.c +++ b/drivers/net/wireless/mwl8k.c | |||
@@ -115,6 +115,8 @@ MODULE_PARM_DESC(ap_mode_default, | |||
115 | */ | 115 | */ |
116 | #define MWL8K_NUM_AMPDU_STREAMS (TOTAL_HW_TX_QUEUES - 1) | 116 | #define MWL8K_NUM_AMPDU_STREAMS (TOTAL_HW_TX_QUEUES - 1) |
117 | 117 | ||
118 | #define MWL8K_NUM_CHANS 18 | ||
119 | |||
118 | struct rxd_ops { | 120 | struct rxd_ops { |
119 | int rxd_size; | 121 | int rxd_size; |
120 | void (*rxd_init)(void *rxd, dma_addr_t next_dma_addr); | 122 | void (*rxd_init)(void *rxd, dma_addr_t next_dma_addr); |
@@ -295,6 +297,9 @@ struct mwl8k_priv { | |||
295 | 297 | ||
296 | /* ACS related */ | 298 | /* ACS related */ |
297 | bool sw_scan_start; | 299 | bool sw_scan_start; |
300 | struct ieee80211_channel *acs_chan; | ||
301 | unsigned long channel_time; | ||
302 | struct survey_info survey[MWL8K_NUM_CHANS]; | ||
298 | }; | 303 | }; |
299 | 304 | ||
300 | #define MAX_WEP_KEY_LEN 13 | 305 | #define MAX_WEP_KEY_LEN 13 |
@@ -3064,6 +3069,64 @@ mwl8k_cmd_set_post_scan(struct ieee80211_hw *hw, const __u8 *mac) | |||
3064 | return rc; | 3069 | return rc; |
3065 | } | 3070 | } |
3066 | 3071 | ||
3072 | static int freq_to_idx(struct mwl8k_priv *priv, int freq) | ||
3073 | { | ||
3074 | struct ieee80211_supported_band *sband; | ||
3075 | int band, ch, idx = 0; | ||
3076 | |||
3077 | for (band = IEEE80211_BAND_2GHZ; band < IEEE80211_NUM_BANDS; band++) { | ||
3078 | sband = priv->hw->wiphy->bands[band]; | ||
3079 | if (!sband) | ||
3080 | continue; | ||
3081 | |||
3082 | for (ch = 0; ch < sband->n_channels; ch++, idx++) | ||
3083 | if (sband->channels[ch].center_freq == freq) | ||
3084 | goto exit; | ||
3085 | } | ||
3086 | |||
3087 | exit: | ||
3088 | return idx; | ||
3089 | } | ||
3090 | |||
3091 | void mwl8k_update_survey(struct mwl8k_priv *priv, | ||
3092 | struct ieee80211_channel *channel) | ||
3093 | { | ||
3094 | u32 cca_cnt, rx_rdy; | ||
3095 | s8 nf = 0, idx; | ||
3096 | struct survey_info *survey; | ||
3097 | |||
3098 | idx = freq_to_idx(priv, priv->acs_chan->center_freq); | ||
3099 | if (idx >= MWL8K_NUM_CHANS) { | ||
3100 | wiphy_err(priv->hw->wiphy, "Failed to update survey\n"); | ||
3101 | return; | ||
3102 | } | ||
3103 | |||
3104 | survey = &priv->survey[idx]; | ||
3105 | |||
3106 | cca_cnt = le32_to_cpu(ioread32(priv->regs + NOK_CCA_CNT_REG)); | ||
3107 | cca_cnt /= 1000; /* uSecs to mSecs */ | ||
3108 | survey->channel_time_busy = (u64) cca_cnt; | ||
3109 | |||
3110 | rx_rdy = le32_to_cpu(ioread32(priv->regs + BBU_RXRDY_CNT_REG)); | ||
3111 | rx_rdy /= 1000; /* uSecs to mSecs */ | ||
3112 | survey->channel_time_rx = (u64) rx_rdy; | ||
3113 | |||
3114 | priv->channel_time = jiffies - priv->channel_time; | ||
3115 | survey->channel_time = jiffies_to_msecs(priv->channel_time); | ||
3116 | |||
3117 | survey->channel = channel; | ||
3118 | |||
3119 | mwl8k_cmd_bbp_reg_access(priv->hw, 0, BBU_AVG_NOISE_VAL, &nf); | ||
3120 | |||
3121 | /* Make sure sign is negative else ACS at hostapd fails */ | ||
3122 | survey->noise = nf * -1; | ||
3123 | |||
3124 | survey->filled = SURVEY_INFO_NOISE_DBM | | ||
3125 | SURVEY_INFO_CHANNEL_TIME | | ||
3126 | SURVEY_INFO_CHANNEL_TIME_BUSY | | ||
3127 | SURVEY_INFO_CHANNEL_TIME_RX; | ||
3128 | } | ||
3129 | |||
3067 | /* | 3130 | /* |
3068 | * CMD_SET_RF_CHANNEL. | 3131 | * CMD_SET_RF_CHANNEL. |
3069 | */ | 3132 | */ |
@@ -3081,6 +3144,7 @@ static int mwl8k_cmd_set_rf_channel(struct ieee80211_hw *hw, | |||
3081 | enum nl80211_channel_type channel_type = | 3144 | enum nl80211_channel_type channel_type = |
3082 | cfg80211_get_chandef_type(&conf->chandef); | 3145 | cfg80211_get_chandef_type(&conf->chandef); |
3083 | struct mwl8k_cmd_set_rf_channel *cmd; | 3146 | struct mwl8k_cmd_set_rf_channel *cmd; |
3147 | struct mwl8k_priv *priv = hw->priv; | ||
3084 | int rc; | 3148 | int rc; |
3085 | 3149 | ||
3086 | cmd = kzalloc(sizeof(*cmd), GFP_KERNEL); | 3150 | cmd = kzalloc(sizeof(*cmd), GFP_KERNEL); |
@@ -3097,13 +3161,29 @@ static int mwl8k_cmd_set_rf_channel(struct ieee80211_hw *hw, | |||
3097 | else if (channel->band == IEEE80211_BAND_5GHZ) | 3161 | else if (channel->band == IEEE80211_BAND_5GHZ) |
3098 | cmd->channel_flags |= cpu_to_le32(0x00000004); | 3162 | cmd->channel_flags |= cpu_to_le32(0x00000004); |
3099 | 3163 | ||
3100 | if (channel_type == NL80211_CHAN_NO_HT || | 3164 | if (!priv->sw_scan_start) { |
3101 | channel_type == NL80211_CHAN_HT20) | 3165 | if (channel_type == NL80211_CHAN_NO_HT || |
3166 | channel_type == NL80211_CHAN_HT20) | ||
3167 | cmd->channel_flags |= cpu_to_le32(0x00000080); | ||
3168 | else if (channel_type == NL80211_CHAN_HT40MINUS) | ||
3169 | cmd->channel_flags |= cpu_to_le32(0x000001900); | ||
3170 | else if (channel_type == NL80211_CHAN_HT40PLUS) | ||
3171 | cmd->channel_flags |= cpu_to_le32(0x000000900); | ||
3172 | } else { | ||
3102 | cmd->channel_flags |= cpu_to_le32(0x00000080); | 3173 | cmd->channel_flags |= cpu_to_le32(0x00000080); |
3103 | else if (channel_type == NL80211_CHAN_HT40MINUS) | 3174 | } |
3104 | cmd->channel_flags |= cpu_to_le32(0x000001900); | 3175 | |
3105 | else if (channel_type == NL80211_CHAN_HT40PLUS) | 3176 | if (priv->sw_scan_start) { |
3106 | cmd->channel_flags |= cpu_to_le32(0x000000900); | 3177 | /* Store current channel stats |
3178 | * before switching to newer one. | ||
3179 | * This will be processed only for AP fw. | ||
3180 | */ | ||
3181 | if (priv->channel_time != 0) | ||
3182 | mwl8k_update_survey(priv, priv->acs_chan); | ||
3183 | |||
3184 | priv->channel_time = jiffies; | ||
3185 | priv->acs_chan = channel; | ||
3186 | } | ||
3107 | 3187 | ||
3108 | rc = mwl8k_post_cmd(hw, &cmd->header); | 3188 | rc = mwl8k_post_cmd(hw, &cmd->header); |
3109 | kfree(cmd); | 3189 | kfree(cmd); |
@@ -5311,6 +5391,27 @@ static int mwl8k_get_survey(struct ieee80211_hw *hw, int idx, | |||
5311 | { | 5391 | { |
5312 | struct mwl8k_priv *priv = hw->priv; | 5392 | struct mwl8k_priv *priv = hw->priv; |
5313 | struct ieee80211_conf *conf = &hw->conf; | 5393 | struct ieee80211_conf *conf = &hw->conf; |
5394 | struct ieee80211_supported_band *sband; | ||
5395 | |||
5396 | if (priv->ap_fw) { | ||
5397 | sband = hw->wiphy->bands[IEEE80211_BAND_2GHZ]; | ||
5398 | |||
5399 | if (sband && idx >= sband->n_channels) { | ||
5400 | idx -= sband->n_channels; | ||
5401 | sband = NULL; | ||
5402 | } | ||
5403 | |||
5404 | if (!sband) | ||
5405 | sband = hw->wiphy->bands[IEEE80211_BAND_5GHZ]; | ||
5406 | |||
5407 | if (!sband || idx >= sband->n_channels) | ||
5408 | return -ENOENT; | ||
5409 | |||
5410 | memcpy(survey, &priv->survey[idx], sizeof(*survey)); | ||
5411 | survey->channel = &sband->channels[idx]; | ||
5412 | |||
5413 | return 0; | ||
5414 | } | ||
5314 | 5415 | ||
5315 | if (idx != 0) | 5416 | if (idx != 0) |
5316 | return -ENOENT; | 5417 | return -ENOENT; |
@@ -5463,6 +5564,7 @@ static void mwl8k_sw_scan_start(struct ieee80211_hw *hw) | |||
5463 | return; | 5564 | return; |
5464 | 5565 | ||
5465 | /* clear all stats */ | 5566 | /* clear all stats */ |
5567 | priv->channel_time = 0; | ||
5466 | ioread32(priv->regs + BBU_RXRDY_CNT_REG); | 5568 | ioread32(priv->regs + BBU_RXRDY_CNT_REG); |
5467 | ioread32(priv->regs + NOK_CCA_CNT_REG); | 5569 | ioread32(priv->regs + NOK_CCA_CNT_REG); |
5468 | mwl8k_cmd_bbp_reg_access(priv->hw, 0, BBU_AVG_NOISE_VAL, &tmp); | 5570 | mwl8k_cmd_bbp_reg_access(priv->hw, 0, BBU_AVG_NOISE_VAL, &tmp); |
@@ -5481,6 +5583,7 @@ static void mwl8k_sw_scan_complete(struct ieee80211_hw *hw) | |||
5481 | priv->sw_scan_start = false; | 5583 | priv->sw_scan_start = false; |
5482 | 5584 | ||
5483 | /* clear all stats */ | 5585 | /* clear all stats */ |
5586 | priv->channel_time = 0; | ||
5484 | ioread32(priv->regs + BBU_RXRDY_CNT_REG); | 5587 | ioread32(priv->regs + BBU_RXRDY_CNT_REG); |
5485 | ioread32(priv->regs + NOK_CCA_CNT_REG); | 5588 | ioread32(priv->regs + NOK_CCA_CNT_REG); |
5486 | mwl8k_cmd_bbp_reg_access(priv->hw, 0, BBU_AVG_NOISE_VAL, &tmp); | 5589 | mwl8k_cmd_bbp_reg_access(priv->hw, 0, BBU_AVG_NOISE_VAL, &tmp); |