blob: bb73cfe14aebf4b6b4828107d49f3142d0142bdb [file] [log] [blame]
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001/*
2 * Marvell Wireless LAN device driver: Channel, Frequence and Power
3 *
4 * Copyright (C) 2011, Marvell International Ltd.
5 *
6 * This software file (the "File") is distributed by Marvell International
7 * Ltd. under the terms of the GNU General Public License Version 2, June 1991
8 * (the "License"). You may use, redistribute and/or modify this File in
9 * accordance with the terms and conditions of the License, a copy of which
10 * is available by writing to the Free Software Foundation, Inc.,
11 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the
12 * worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
13 *
14 * THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE
15 * IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE
16 * ARE EXPRESSLY DISCLAIMED. The License provides additional details about
17 * this warranty disclaimer.
18 */
19
20#include "decl.h"
21#include "ioctl.h"
22#include "util.h"
23#include "fw.h"
24#include "main.h"
25#include "cfg80211.h"
26
27/* 100mW */
28#define MWIFIEX_TX_PWR_DEFAULT 20
29/* 100mW */
30#define MWIFIEX_TX_PWR_US_DEFAULT 20
31/* 50mW */
32#define MWIFIEX_TX_PWR_JP_DEFAULT 16
33/* 100mW */
34#define MWIFIEX_TX_PWR_FR_100MW 20
35/* 10mW */
36#define MWIFIEX_TX_PWR_FR_10MW 10
37/* 100mW */
38#define MWIFIEX_TX_PWR_EMEA_DEFAULT 20
39
40static u8 adhoc_rates_b[B_SUPPORTED_RATES] = { 0x82, 0x84, 0x8b, 0x96, 0 };
41
42static u8 adhoc_rates_g[G_SUPPORTED_RATES] = { 0x8c, 0x12, 0x98, 0x24,
43 0xb0, 0x48, 0x60, 0x6c, 0 };
44
45static u8 adhoc_rates_bg[BG_SUPPORTED_RATES] = { 0x82, 0x84, 0x8b, 0x96,
46 0x0c, 0x12, 0x18, 0x24,
47 0x30, 0x48, 0x60, 0x6c, 0 };
48
49static u8 adhoc_rates_a[A_SUPPORTED_RATES] = { 0x8c, 0x12, 0x98, 0x24,
50 0xb0, 0x48, 0x60, 0x6c, 0 };
51u8 supported_rates_a[A_SUPPORTED_RATES] = { 0x0c, 0x12, 0x18, 0x24,
52 0xb0, 0x48, 0x60, 0x6c, 0 };
53static u16 mwifiex_data_rates[MWIFIEX_SUPPORTED_RATES_EXT] = { 0x02, 0x04,
54 0x0B, 0x16, 0x00, 0x0C, 0x12, 0x18,
55 0x24, 0x30, 0x48, 0x60, 0x6C, 0x90,
56 0x0D, 0x1A, 0x27, 0x34, 0x4E, 0x68,
57 0x75, 0x82, 0x0C, 0x1B, 0x36, 0x51,
58 0x6C, 0xA2, 0xD8, 0xF3, 0x10E, 0x00 };
59
60u8 supported_rates_b[B_SUPPORTED_RATES] = { 0x02, 0x04, 0x0b, 0x16, 0 };
61
62u8 supported_rates_g[G_SUPPORTED_RATES] = { 0x0c, 0x12, 0x18, 0x24,
63 0x30, 0x48, 0x60, 0x6c, 0 };
64
65u8 supported_rates_bg[BG_SUPPORTED_RATES] = { 0x02, 0x04, 0x0b, 0x0c,
66 0x12, 0x16, 0x18, 0x24, 0x30, 0x48,
67 0x60, 0x6c, 0 };
68
69u16 region_code_index[MWIFIEX_MAX_REGION_CODE] = { 0x10, 0x20, 0x30,
70 0x32, 0x40, 0x41, 0xff };
71
72u8 supported_rates_n[N_SUPPORTED_RATES] = { 0x02, 0x04, 0 };
73
74/*
75 * This function maps an index in supported rates table into
76 * the corresponding data rate.
77 */
Amitkumar Karwar572e8f32011-04-13 17:27:08 -070078u32 mwifiex_index_to_data_rate(u8 index, u8 ht_info)
Bing Zhao5e6e3a92011-03-21 18:00:50 -070079{
80 u16 mcs_rate[4][8] = {
81 {0x1b, 0x36, 0x51, 0x6c, 0xa2, 0xd8, 0xf3, 0x10e}
82 , /* LG 40M */
83 {0x1e, 0x3c, 0x5a, 0x78, 0xb4, 0xf0, 0x10e, 0x12c}
84 , /* SG 40M */
85 {0x0d, 0x1a, 0x27, 0x34, 0x4e, 0x68, 0x75, 0x82}
86 , /* LG 20M */
87 {0x0e, 0x1c, 0x2b, 0x39, 0x56, 0x73, 0x82, 0x90}
88 }; /* SG 20M */
89
90 u32 rate;
91
92 if (ht_info & BIT(0)) {
93 if (index == MWIFIEX_RATE_BITMAP_MCS0) {
94 if (ht_info & BIT(2))
95 rate = 0x0D; /* MCS 32 SGI rate */
96 else
97 rate = 0x0C; /* MCS 32 LGI rate */
98 } else if (index < 8) {
99 if (ht_info & BIT(1)) {
100 if (ht_info & BIT(2))
101 /* SGI, 40M */
102 rate = mcs_rate[1][index];
103 else
104 /* LGI, 40M */
105 rate = mcs_rate[0][index];
106 } else {
107 if (ht_info & BIT(2))
108 /* SGI, 20M */
109 rate = mcs_rate[3][index];
110 else
111 /* LGI, 20M */
112 rate = mcs_rate[2][index];
113 }
114 } else
115 rate = mwifiex_data_rates[0];
116 } else {
117 if (index >= MWIFIEX_SUPPORTED_RATES_EXT)
118 index = 0;
119 rate = mwifiex_data_rates[index];
120 }
121 return rate;
122}
123
124/*
125 * This function maps a data rate value into corresponding index in supported
126 * rates table.
127 */
Amitkumar Karwar572e8f32011-04-13 17:27:08 -0700128u8 mwifiex_data_rate_to_index(u32 rate)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700129{
130 u16 *ptr;
131
132 if (rate) {
133 ptr = memchr(mwifiex_data_rates, rate,
134 sizeof(mwifiex_data_rates));
135 if (ptr)
136 return (u8) (ptr - mwifiex_data_rates);
137 }
138 return 0;
139}
140
141/*
142 * This function returns the current active data rates.
143 *
144 * The result may vary depending upon connection status.
145 */
146u32 mwifiex_get_active_data_rates(struct mwifiex_private *priv, u8 *rates)
147{
148 u32 k;
149
150 if (!priv->media_connected)
151 k = mwifiex_get_supported_rates(priv, rates);
152 else
153 k = mwifiex_copy_rates(rates, 0,
154 priv->curr_bss_params.data_rates,
155 priv->curr_bss_params.num_of_rates);
156
157 return k;
158}
159
160/*
161 * This function locates the Channel-Frequency-Power triplet based upon
162 * band and channel parameters.
163 */
164struct mwifiex_chan_freq_power *
165mwifiex_get_cfp_by_band_and_channel_from_cfg80211(struct mwifiex_private
166 *priv, u8 band, u16 channel)
167{
168 struct mwifiex_chan_freq_power *cfp = NULL;
169 struct ieee80211_supported_band *sband;
170 struct ieee80211_channel *ch;
171 int i;
172
173 if (mwifiex_band_to_radio_type(band) == HostCmd_SCAN_RADIO_TYPE_BG)
174 sband = priv->wdev->wiphy->bands[IEEE80211_BAND_2GHZ];
175 else
176 sband = priv->wdev->wiphy->bands[IEEE80211_BAND_5GHZ];
177
178 if (!sband) {
179 dev_err(priv->adapter->dev, "%s: cannot find cfp by band %d"
180 " & channel %d\n", __func__, band, channel);
181 return cfp;
182 }
183
184 for (i = 0; i < sband->n_channels; i++) {
185 ch = &sband->channels[i];
186 if (((ch->hw_value == channel) ||
187 (channel == FIRST_VALID_CHANNEL))
188 && !(ch->flags & IEEE80211_CHAN_DISABLED)) {
189 priv->cfp.channel = channel;
190 priv->cfp.freq = ch->center_freq;
191 priv->cfp.max_tx_power = ch->max_power;
192 cfp = &priv->cfp;
193 break;
194 }
195 }
196 if (i == sband->n_channels)
197 dev_err(priv->adapter->dev, "%s: cannot find cfp by band %d"
198 " & channel %d\n", __func__, band, channel);
199
200 return cfp;
201}
202
203/*
204 * This function locates the Channel-Frequency-Power triplet based upon
205 * band and frequency parameters.
206 */
207struct mwifiex_chan_freq_power *
208mwifiex_get_cfp_by_band_and_freq_from_cfg80211(struct mwifiex_private *priv,
209 u8 band, u32 freq)
210{
211 struct mwifiex_chan_freq_power *cfp = NULL;
212 struct ieee80211_supported_band *sband;
213 struct ieee80211_channel *ch;
214 int i;
215
216 if (mwifiex_band_to_radio_type(band) == HostCmd_SCAN_RADIO_TYPE_BG)
217 sband = priv->wdev->wiphy->bands[IEEE80211_BAND_2GHZ];
218 else
219 sband = priv->wdev->wiphy->bands[IEEE80211_BAND_5GHZ];
220
221 if (!sband) {
222 dev_err(priv->adapter->dev, "%s: cannot find cfp by band %d"
223 " & freq %d\n", __func__, band, freq);
224 return cfp;
225 }
226
227 for (i = 0; i < sband->n_channels; i++) {
228 ch = &sband->channels[i];
229 if ((ch->center_freq == freq) &&
230 !(ch->flags & IEEE80211_CHAN_DISABLED)) {
231 priv->cfp.channel = ch->hw_value;
232 priv->cfp.freq = freq;
233 priv->cfp.max_tx_power = ch->max_power;
234 cfp = &priv->cfp;
235 break;
236 }
237 }
238 if (i == sband->n_channels)
239 dev_err(priv->adapter->dev, "%s: cannot find cfp by band %d"
240 " & freq %d\n", __func__, band, freq);
241
242 return cfp;
243}
244
245/*
246 * This function checks if the data rate is set to auto.
247 */
248u8
249mwifiex_is_rate_auto(struct mwifiex_private *priv)
250{
251 u32 i;
252 int rate_num = 0;
253
254 for (i = 0; i < ARRAY_SIZE(priv->bitmap_rates); i++)
255 if (priv->bitmap_rates[i])
256 rate_num++;
257
258 if (rate_num > 1)
259 return true;
260 else
261 return false;
262}
263
264/*
265 * This function converts rate bitmap into rate index.
266 */
Amitkumar Karwar572e8f32011-04-13 17:27:08 -0700267int mwifiex_get_rate_index(u16 *rate_bitmap, int size)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700268{
269 int i;
270
271 for (i = 0; i < size * 8; i++)
272 if (rate_bitmap[i / 16] & (1 << (i % 16)))
273 return i;
274
275 return 0;
276}
277
278/*
279 * This function gets the supported data rates.
280 *
281 * The function works in both Ad-Hoc and infra mode by printing the
282 * band and returning the data rates.
283 */
284u32 mwifiex_get_supported_rates(struct mwifiex_private *priv, u8 *rates)
285{
286 u32 k = 0;
287 struct mwifiex_adapter *adapter = priv->adapter;
Bing Zhaoeecd8252011-03-28 17:55:41 -0700288 if (priv->bss_mode == NL80211_IFTYPE_STATION) {
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700289 switch (adapter->config_bands) {
290 case BAND_B:
291 dev_dbg(adapter->dev, "info: infra band=%d "
292 "supported_rates_b\n", adapter->config_bands);
293 k = mwifiex_copy_rates(rates, k, supported_rates_b,
294 sizeof(supported_rates_b));
295 break;
296 case BAND_G:
297 case BAND_G | BAND_GN:
298 dev_dbg(adapter->dev, "info: infra band=%d "
299 "supported_rates_g\n", adapter->config_bands);
300 k = mwifiex_copy_rates(rates, k, supported_rates_g,
301 sizeof(supported_rates_g));
302 break;
303 case BAND_B | BAND_G:
304 case BAND_A | BAND_B | BAND_G:
305 case BAND_A | BAND_B:
306 case BAND_A | BAND_B | BAND_G | BAND_GN | BAND_AN:
307 case BAND_B | BAND_G | BAND_GN:
308 dev_dbg(adapter->dev, "info: infra band=%d "
309 "supported_rates_bg\n", adapter->config_bands);
310 k = mwifiex_copy_rates(rates, k, supported_rates_bg,
311 sizeof(supported_rates_bg));
312 break;
313 case BAND_A:
314 case BAND_A | BAND_G:
315 dev_dbg(adapter->dev, "info: infra band=%d "
316 "supported_rates_a\n", adapter->config_bands);
317 k = mwifiex_copy_rates(rates, k, supported_rates_a,
318 sizeof(supported_rates_a));
319 break;
320 case BAND_A | BAND_AN:
321 case BAND_A | BAND_G | BAND_AN | BAND_GN:
322 dev_dbg(adapter->dev, "info: infra band=%d "
323 "supported_rates_a\n", adapter->config_bands);
324 k = mwifiex_copy_rates(rates, k, supported_rates_a,
325 sizeof(supported_rates_a));
326 break;
327 case BAND_GN:
328 dev_dbg(adapter->dev, "info: infra band=%d "
329 "supported_rates_n\n", adapter->config_bands);
330 k = mwifiex_copy_rates(rates, k, supported_rates_n,
331 sizeof(supported_rates_n));
332 break;
333 }
334 } else {
335 /* Ad-hoc mode */
336 switch (adapter->adhoc_start_band) {
337 case BAND_B:
338 dev_dbg(adapter->dev, "info: adhoc B\n");
339 k = mwifiex_copy_rates(rates, k, adhoc_rates_b,
340 sizeof(adhoc_rates_b));
341 break;
342 case BAND_G:
343 case BAND_G | BAND_GN:
344 dev_dbg(adapter->dev, "info: adhoc G only\n");
345 k = mwifiex_copy_rates(rates, k, adhoc_rates_g,
346 sizeof(adhoc_rates_g));
347 break;
348 case BAND_B | BAND_G:
349 case BAND_B | BAND_G | BAND_GN:
350 dev_dbg(adapter->dev, "info: adhoc BG\n");
351 k = mwifiex_copy_rates(rates, k, adhoc_rates_bg,
352 sizeof(adhoc_rates_bg));
353 break;
354 case BAND_A:
355 case BAND_A | BAND_AN:
356 dev_dbg(adapter->dev, "info: adhoc A\n");
357 k = mwifiex_copy_rates(rates, k, adhoc_rates_a,
358 sizeof(adhoc_rates_a));
359 break;
360 }
361 }
362
363 return k;
364}