2 * Marvell Wireless LAN device driver: Channel, Frequence and Power
4 * Copyright (C) 2011, Marvell International Ltd.
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.
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.
28 #define MWIFIEX_TX_PWR_DEFAULT 20
30 #define MWIFIEX_TX_PWR_US_DEFAULT 20
32 #define MWIFIEX_TX_PWR_JP_DEFAULT 16
34 #define MWIFIEX_TX_PWR_FR_100MW 20
36 #define MWIFIEX_TX_PWR_FR_10MW 10
38 #define MWIFIEX_TX_PWR_EMEA_DEFAULT 20
40 static u8 adhoc_rates_b
[B_SUPPORTED_RATES
] = { 0x82, 0x84, 0x8b, 0x96, 0 };
42 static u8 adhoc_rates_g
[G_SUPPORTED_RATES
] = { 0x8c, 0x12, 0x98, 0x24,
43 0xb0, 0x48, 0x60, 0x6c, 0 };
45 static u8 adhoc_rates_bg
[BG_SUPPORTED_RATES
] = { 0x82, 0x84, 0x8b, 0x96,
46 0x0c, 0x12, 0x18, 0x24,
47 0x30, 0x48, 0x60, 0x6c, 0 };
49 static u8 adhoc_rates_a
[A_SUPPORTED_RATES
] = { 0x8c, 0x12, 0x98, 0x24,
50 0xb0, 0x48, 0x60, 0x6c, 0 };
51 u8 supported_rates_a
[A_SUPPORTED_RATES
] = { 0x0c, 0x12, 0x18, 0x24,
52 0xb0, 0x48, 0x60, 0x6c, 0 };
53 static 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 };
60 u8 supported_rates_b
[B_SUPPORTED_RATES
] = { 0x02, 0x04, 0x0b, 0x16, 0 };
62 u8 supported_rates_g
[G_SUPPORTED_RATES
] = { 0x0c, 0x12, 0x18, 0x24,
63 0x30, 0x48, 0x60, 0x6c, 0 };
65 u8 supported_rates_bg
[BG_SUPPORTED_RATES
] = { 0x02, 0x04, 0x0b, 0x0c,
66 0x12, 0x16, 0x18, 0x24, 0x30, 0x48,
69 u16 region_code_index
[MWIFIEX_MAX_REGION_CODE
] = { 0x10, 0x20, 0x30,
70 0x32, 0x40, 0x41, 0xff };
72 u8 supported_rates_n
[N_SUPPORTED_RATES
] = { 0x02, 0x04, 0 };
75 * This function maps an index in supported rates table into
76 * the corresponding data rate.
78 u32
mwifiex_index_to_data_rate(u8 index
, u8 ht_info
)
80 u16 mcs_rate
[4][8] = {
81 {0x1b, 0x36, 0x51, 0x6c, 0xa2, 0xd8, 0xf3, 0x10e}
83 {0x1e, 0x3c, 0x5a, 0x78, 0xb4, 0xf0, 0x10e, 0x12c}
85 {0x0d, 0x1a, 0x27, 0x34, 0x4e, 0x68, 0x75, 0x82}
87 {0x0e, 0x1c, 0x2b, 0x39, 0x56, 0x73, 0x82, 0x90}
92 if (ht_info
& BIT(0)) {
93 if (index
== MWIFIEX_RATE_BITMAP_MCS0
) {
95 rate
= 0x0D; /* MCS 32 SGI rate */
97 rate
= 0x0C; /* MCS 32 LGI rate */
98 } else if (index
< 8) {
99 if (ht_info
& BIT(1)) {
100 if (ht_info
& BIT(2))
102 rate
= mcs_rate
[1][index
];
105 rate
= mcs_rate
[0][index
];
107 if (ht_info
& BIT(2))
109 rate
= mcs_rate
[3][index
];
112 rate
= mcs_rate
[2][index
];
115 rate
= mwifiex_data_rates
[0];
117 if (index
>= MWIFIEX_SUPPORTED_RATES_EXT
)
119 rate
= mwifiex_data_rates
[index
];
125 * This function maps a data rate value into corresponding index in supported
128 u8
mwifiex_data_rate_to_index(u32 rate
)
133 ptr
= memchr(mwifiex_data_rates
, rate
,
134 sizeof(mwifiex_data_rates
));
136 return (u8
) (ptr
- mwifiex_data_rates
);
142 * This function returns the current active data rates.
144 * The result may vary depending upon connection status.
146 u32
mwifiex_get_active_data_rates(struct mwifiex_private
*priv
, u8
*rates
)
148 if (!priv
->media_connected
)
149 return mwifiex_get_supported_rates(priv
, rates
);
151 return mwifiex_copy_rates(rates
, 0,
152 priv
->curr_bss_params
.data_rates
,
153 priv
->curr_bss_params
.num_of_rates
);
157 * This function locates the Channel-Frequency-Power triplet based upon
158 * band and channel parameters.
160 struct mwifiex_chan_freq_power
*
161 mwifiex_get_cfp_by_band_and_channel_from_cfg80211(struct mwifiex_private
162 *priv
, u8 band
, u16 channel
)
164 struct mwifiex_chan_freq_power
*cfp
= NULL
;
165 struct ieee80211_supported_band
*sband
;
166 struct ieee80211_channel
*ch
;
169 if (mwifiex_band_to_radio_type(band
) == HostCmd_SCAN_RADIO_TYPE_BG
)
170 sband
= priv
->wdev
->wiphy
->bands
[IEEE80211_BAND_2GHZ
];
172 sband
= priv
->wdev
->wiphy
->bands
[IEEE80211_BAND_5GHZ
];
175 dev_err(priv
->adapter
->dev
, "%s: cannot find cfp by band %d"
176 " & channel %d\n", __func__
, band
, channel
);
180 for (i
= 0; i
< sband
->n_channels
; i
++) {
181 ch
= &sband
->channels
[i
];
182 if (((ch
->hw_value
== channel
) ||
183 (channel
== FIRST_VALID_CHANNEL
))
184 && !(ch
->flags
& IEEE80211_CHAN_DISABLED
)) {
185 priv
->cfp
.channel
= channel
;
186 priv
->cfp
.freq
= ch
->center_freq
;
187 priv
->cfp
.max_tx_power
= ch
->max_power
;
192 if (i
== sband
->n_channels
)
193 dev_err(priv
->adapter
->dev
, "%s: cannot find cfp by band %d"
194 " & channel %d\n", __func__
, band
, channel
);
200 * This function locates the Channel-Frequency-Power triplet based upon
201 * band and frequency parameters.
203 struct mwifiex_chan_freq_power
*
204 mwifiex_get_cfp_by_band_and_freq_from_cfg80211(struct mwifiex_private
*priv
,
207 struct mwifiex_chan_freq_power
*cfp
= NULL
;
208 struct ieee80211_supported_band
*sband
;
209 struct ieee80211_channel
*ch
;
212 if (mwifiex_band_to_radio_type(band
) == HostCmd_SCAN_RADIO_TYPE_BG
)
213 sband
= priv
->wdev
->wiphy
->bands
[IEEE80211_BAND_2GHZ
];
215 sband
= priv
->wdev
->wiphy
->bands
[IEEE80211_BAND_5GHZ
];
218 dev_err(priv
->adapter
->dev
, "%s: cannot find cfp by band %d"
219 " & freq %d\n", __func__
, band
, freq
);
223 for (i
= 0; i
< sband
->n_channels
; i
++) {
224 ch
= &sband
->channels
[i
];
225 if ((ch
->center_freq
== freq
) &&
226 !(ch
->flags
& IEEE80211_CHAN_DISABLED
)) {
227 priv
->cfp
.channel
= ch
->hw_value
;
228 priv
->cfp
.freq
= freq
;
229 priv
->cfp
.max_tx_power
= ch
->max_power
;
234 if (i
== sband
->n_channels
)
235 dev_err(priv
->adapter
->dev
, "%s: cannot find cfp by band %d"
236 " & freq %d\n", __func__
, band
, freq
);
242 * This function checks if the data rate is set to auto.
245 mwifiex_is_rate_auto(struct mwifiex_private
*priv
)
250 for (i
= 0; i
< ARRAY_SIZE(priv
->bitmap_rates
); i
++)
251 if (priv
->bitmap_rates
[i
])
261 * This function converts rate bitmap into rate index.
263 int mwifiex_get_rate_index(u16
*rate_bitmap
, int size
)
267 for (i
= 0; i
< size
* 8; i
++)
268 if (rate_bitmap
[i
/ 16] & (1 << (i
% 16)))
275 * This function gets the supported data rates.
277 * The function works in both Ad-Hoc and infra mode by printing the
278 * band and returning the data rates.
280 u32
mwifiex_get_supported_rates(struct mwifiex_private
*priv
, u8
*rates
)
283 struct mwifiex_adapter
*adapter
= priv
->adapter
;
284 if (priv
->bss_mode
== NL80211_IFTYPE_STATION
) {
285 switch (adapter
->config_bands
) {
287 dev_dbg(adapter
->dev
, "info: infra band=%d "
288 "supported_rates_b\n", adapter
->config_bands
);
289 k
= mwifiex_copy_rates(rates
, k
, supported_rates_b
,
290 sizeof(supported_rates_b
));
293 case BAND_G
| BAND_GN
:
294 dev_dbg(adapter
->dev
, "info: infra band=%d "
295 "supported_rates_g\n", adapter
->config_bands
);
296 k
= mwifiex_copy_rates(rates
, k
, supported_rates_g
,
297 sizeof(supported_rates_g
));
299 case BAND_B
| BAND_G
:
300 case BAND_A
| BAND_B
| BAND_G
:
301 case BAND_A
| BAND_B
:
302 case BAND_A
| BAND_B
| BAND_G
| BAND_GN
| BAND_AN
:
303 case BAND_B
| BAND_G
| BAND_GN
:
304 dev_dbg(adapter
->dev
, "info: infra band=%d "
305 "supported_rates_bg\n", adapter
->config_bands
);
306 k
= mwifiex_copy_rates(rates
, k
, supported_rates_bg
,
307 sizeof(supported_rates_bg
));
310 case BAND_A
| BAND_G
:
311 dev_dbg(adapter
->dev
, "info: infra band=%d "
312 "supported_rates_a\n", adapter
->config_bands
);
313 k
= mwifiex_copy_rates(rates
, k
, supported_rates_a
,
314 sizeof(supported_rates_a
));
316 case BAND_A
| BAND_AN
:
317 case BAND_A
| BAND_G
| BAND_AN
| BAND_GN
:
318 dev_dbg(adapter
->dev
, "info: infra band=%d "
319 "supported_rates_a\n", adapter
->config_bands
);
320 k
= mwifiex_copy_rates(rates
, k
, supported_rates_a
,
321 sizeof(supported_rates_a
));
324 dev_dbg(adapter
->dev
, "info: infra band=%d "
325 "supported_rates_n\n", adapter
->config_bands
);
326 k
= mwifiex_copy_rates(rates
, k
, supported_rates_n
,
327 sizeof(supported_rates_n
));
332 switch (adapter
->adhoc_start_band
) {
334 dev_dbg(adapter
->dev
, "info: adhoc B\n");
335 k
= mwifiex_copy_rates(rates
, k
, adhoc_rates_b
,
336 sizeof(adhoc_rates_b
));
339 case BAND_G
| BAND_GN
:
340 dev_dbg(adapter
->dev
, "info: adhoc G only\n");
341 k
= mwifiex_copy_rates(rates
, k
, adhoc_rates_g
,
342 sizeof(adhoc_rates_g
));
344 case BAND_B
| BAND_G
:
345 case BAND_B
| BAND_G
| BAND_GN
:
346 dev_dbg(adapter
->dev
, "info: adhoc BG\n");
347 k
= mwifiex_copy_rates(rates
, k
, adhoc_rates_bg
,
348 sizeof(adhoc_rates_bg
));
351 case BAND_A
| BAND_AN
:
352 dev_dbg(adapter
->dev
, "info: adhoc A\n");
353 k
= mwifiex_copy_rates(rates
, k
, adhoc_rates_a
,
354 sizeof(adhoc_rates_a
));