Merge remote-tracking branch 'asoc/fix/blackfin' into asoc-linus
[deliverable/linux.git] / net / wireless / chan.c
CommitLineData
59bbb6f7
JB
1/*
2 * This file contains helper code to handle channel
3 * settings and keeping track of what is possible at
4 * any point in time.
5 *
6 * Copyright 2009 Johannes Berg <johannes@sipsolutions.net>
7 */
8
54858ee5 9#include <linux/export.h>
59bbb6f7
JB
10#include <net/cfg80211.h>
11#include "core.h"
e35e4d28 12#include "rdev-ops.h"
59bbb6f7 13
3d9d1d66
JB
14void cfg80211_chandef_create(struct cfg80211_chan_def *chandef,
15 struct ieee80211_channel *chan,
16 enum nl80211_channel_type chan_type)
9236d838 17{
3d9d1d66
JB
18 if (WARN_ON(!chan))
19 return;
9236d838 20
3d9d1d66
JB
21 chandef->chan = chan;
22 chandef->center_freq2 = 0;
4ee3e063 23
3d9d1d66
JB
24 switch (chan_type) {
25 case NL80211_CHAN_NO_HT:
26 chandef->width = NL80211_CHAN_WIDTH_20_NOHT;
27 chandef->center_freq1 = chan->center_freq;
28 break;
29 case NL80211_CHAN_HT20:
30 chandef->width = NL80211_CHAN_WIDTH_20;
31 chandef->center_freq1 = chan->center_freq;
32 break;
9236d838 33 case NL80211_CHAN_HT40PLUS:
3d9d1d66
JB
34 chandef->width = NL80211_CHAN_WIDTH_40;
35 chandef->center_freq1 = chan->center_freq + 10;
09a02fdb 36 break;
9236d838 37 case NL80211_CHAN_HT40MINUS:
3d9d1d66
JB
38 chandef->width = NL80211_CHAN_WIDTH_40;
39 chandef->center_freq1 = chan->center_freq - 10;
09a02fdb 40 break;
9236d838 41 default:
3d9d1d66
JB
42 WARN_ON(1);
43 }
44}
45EXPORT_SYMBOL(cfg80211_chandef_create);
46
9f5e8f6e 47bool cfg80211_chandef_valid(const struct cfg80211_chan_def *chandef)
3d9d1d66
JB
48{
49 u32 control_freq;
50
51 if (!chandef->chan)
52 return false;
53
54 control_freq = chandef->chan->center_freq;
55
56 switch (chandef->width) {
2f301ab2
SW
57 case NL80211_CHAN_WIDTH_5:
58 case NL80211_CHAN_WIDTH_10:
3d9d1d66
JB
59 case NL80211_CHAN_WIDTH_20:
60 case NL80211_CHAN_WIDTH_20_NOHT:
61 if (chandef->center_freq1 != control_freq)
62 return false;
63 if (chandef->center_freq2)
64 return false;
65 break;
66 case NL80211_CHAN_WIDTH_40:
67 if (chandef->center_freq1 != control_freq + 10 &&
68 chandef->center_freq1 != control_freq - 10)
69 return false;
70 if (chandef->center_freq2)
71 return false;
72 break;
73 case NL80211_CHAN_WIDTH_80P80:
74 if (chandef->center_freq1 != control_freq + 30 &&
75 chandef->center_freq1 != control_freq + 10 &&
76 chandef->center_freq1 != control_freq - 10 &&
77 chandef->center_freq1 != control_freq - 30)
78 return false;
79 if (!chandef->center_freq2)
80 return false;
9cab3151
JB
81 /* adjacent is not allowed -- that's a 160 MHz channel */
82 if (chandef->center_freq1 - chandef->center_freq2 == 80 ||
83 chandef->center_freq2 - chandef->center_freq1 == 80)
84 return false;
3d9d1d66
JB
85 break;
86 case NL80211_CHAN_WIDTH_80:
87 if (chandef->center_freq1 != control_freq + 30 &&
88 chandef->center_freq1 != control_freq + 10 &&
89 chandef->center_freq1 != control_freq - 10 &&
90 chandef->center_freq1 != control_freq - 30)
91 return false;
92 if (chandef->center_freq2)
93 return false;
94 break;
95 case NL80211_CHAN_WIDTH_160:
96 if (chandef->center_freq1 != control_freq + 70 &&
97 chandef->center_freq1 != control_freq + 50 &&
98 chandef->center_freq1 != control_freq + 30 &&
99 chandef->center_freq1 != control_freq + 10 &&
100 chandef->center_freq1 != control_freq - 10 &&
101 chandef->center_freq1 != control_freq - 30 &&
102 chandef->center_freq1 != control_freq - 50 &&
103 chandef->center_freq1 != control_freq - 70)
104 return false;
105 if (chandef->center_freq2)
106 return false;
107 break;
108 default:
109 return false;
110 }
111
112 return true;
113}
9f5e8f6e 114EXPORT_SYMBOL(cfg80211_chandef_valid);
3d9d1d66
JB
115
116static void chandef_primary_freqs(const struct cfg80211_chan_def *c,
117 int *pri40, int *pri80)
118{
119 int tmp;
120
121 switch (c->width) {
122 case NL80211_CHAN_WIDTH_40:
123 *pri40 = c->center_freq1;
124 *pri80 = 0;
125 break;
126 case NL80211_CHAN_WIDTH_80:
127 case NL80211_CHAN_WIDTH_80P80:
128 *pri80 = c->center_freq1;
129 /* n_P20 */
130 tmp = (30 + c->chan->center_freq - c->center_freq1)/20;
131 /* n_P40 */
132 tmp /= 2;
133 /* freq_P40 */
134 *pri40 = c->center_freq1 - 20 + 40 * tmp;
135 break;
136 case NL80211_CHAN_WIDTH_160:
137 /* n_P20 */
138 tmp = (70 + c->chan->center_freq - c->center_freq1)/20;
139 /* n_P40 */
140 tmp /= 2;
141 /* freq_P40 */
142 *pri40 = c->center_freq1 - 60 + 40 * tmp;
143 /* n_P80 */
144 tmp /= 2;
145 *pri80 = c->center_freq1 - 40 + 80 * tmp;
146 break;
147 default:
148 WARN_ON_ONCE(1);
149 }
150}
151
04f39047
SW
152static int cfg80211_chandef_get_width(const struct cfg80211_chan_def *c)
153{
154 int width;
155
156 switch (c->width) {
2f301ab2
SW
157 case NL80211_CHAN_WIDTH_5:
158 width = 5;
159 break;
160 case NL80211_CHAN_WIDTH_10:
161 width = 10;
162 break;
04f39047
SW
163 case NL80211_CHAN_WIDTH_20:
164 case NL80211_CHAN_WIDTH_20_NOHT:
165 width = 20;
166 break;
167 case NL80211_CHAN_WIDTH_40:
168 width = 40;
169 break;
170 case NL80211_CHAN_WIDTH_80P80:
171 case NL80211_CHAN_WIDTH_80:
172 width = 80;
173 break;
174 case NL80211_CHAN_WIDTH_160:
175 width = 160;
176 break;
177 default:
178 WARN_ON_ONCE(1);
179 return -1;
180 }
181 return width;
182}
183
3d9d1d66
JB
184const struct cfg80211_chan_def *
185cfg80211_chandef_compatible(const struct cfg80211_chan_def *c1,
186 const struct cfg80211_chan_def *c2)
187{
188 u32 c1_pri40, c1_pri80, c2_pri40, c2_pri80;
189
190 /* If they are identical, return */
191 if (cfg80211_chandef_identical(c1, c2))
192 return c1;
193
194 /* otherwise, must have same control channel */
195 if (c1->chan != c2->chan)
196 return NULL;
197
198 /*
199 * If they have the same width, but aren't identical,
200 * then they can't be compatible.
201 */
202 if (c1->width == c2->width)
203 return NULL;
204
2f301ab2
SW
205 /*
206 * can't be compatible if one of them is 5 or 10 MHz,
207 * but they don't have the same width.
208 */
209 if (c1->width == NL80211_CHAN_WIDTH_5 ||
210 c1->width == NL80211_CHAN_WIDTH_10 ||
211 c2->width == NL80211_CHAN_WIDTH_5 ||
212 c2->width == NL80211_CHAN_WIDTH_10)
213 return NULL;
214
3d9d1d66
JB
215 if (c1->width == NL80211_CHAN_WIDTH_20_NOHT ||
216 c1->width == NL80211_CHAN_WIDTH_20)
217 return c2;
218
219 if (c2->width == NL80211_CHAN_WIDTH_20_NOHT ||
220 c2->width == NL80211_CHAN_WIDTH_20)
221 return c1;
222
223 chandef_primary_freqs(c1, &c1_pri40, &c1_pri80);
224 chandef_primary_freqs(c2, &c2_pri40, &c2_pri80);
225
226 if (c1_pri40 != c2_pri40)
227 return NULL;
228
229 WARN_ON(!c1_pri80 && !c2_pri80);
230 if (c1_pri80 && c2_pri80 && c1_pri80 != c2_pri80)
231 return NULL;
232
233 if (c1->width > c2->width)
234 return c1;
235 return c2;
236}
237EXPORT_SYMBOL(cfg80211_chandef_compatible);
238
04f39047
SW
239static void cfg80211_set_chans_dfs_state(struct wiphy *wiphy, u32 center_freq,
240 u32 bandwidth,
241 enum nl80211_dfs_state dfs_state)
242{
243 struct ieee80211_channel *c;
244 u32 freq;
245
246 for (freq = center_freq - bandwidth/2 + 10;
247 freq <= center_freq + bandwidth/2 - 10;
248 freq += 20) {
249 c = ieee80211_get_channel(wiphy, freq);
250 if (!c || !(c->flags & IEEE80211_CHAN_RADAR))
251 continue;
252
253 c->dfs_state = dfs_state;
254 c->dfs_state_entered = jiffies;
255 }
256}
257
258void cfg80211_set_dfs_state(struct wiphy *wiphy,
259 const struct cfg80211_chan_def *chandef,
260 enum nl80211_dfs_state dfs_state)
261{
262 int width;
263
264 if (WARN_ON(!cfg80211_chandef_valid(chandef)))
265 return;
266
267 width = cfg80211_chandef_get_width(chandef);
268 if (width < 0)
269 return;
270
271 cfg80211_set_chans_dfs_state(wiphy, chandef->center_freq1,
272 width, dfs_state);
273
274 if (!chandef->center_freq2)
275 return;
276 cfg80211_set_chans_dfs_state(wiphy, chandef->center_freq2,
277 width, dfs_state);
278}
279
280static int cfg80211_get_chans_dfs_required(struct wiphy *wiphy,
281 u32 center_freq,
282 u32 bandwidth)
283{
284 struct ieee80211_channel *c;
2f301ab2
SW
285 u32 freq, start_freq, end_freq;
286
287 if (bandwidth <= 20) {
288 start_freq = center_freq;
289 end_freq = center_freq;
290 } else {
291 start_freq = center_freq - bandwidth/2 + 10;
292 end_freq = center_freq + bandwidth/2 - 10;
293 }
04f39047 294
2f301ab2 295 for (freq = start_freq; freq <= end_freq; freq += 20) {
04f39047
SW
296 c = ieee80211_get_channel(wiphy, freq);
297 if (!c)
298 return -EINVAL;
299
300 if (c->flags & IEEE80211_CHAN_RADAR)
301 return 1;
302 }
303 return 0;
304}
305
306
307int cfg80211_chandef_dfs_required(struct wiphy *wiphy,
308 const struct cfg80211_chan_def *chandef)
309{
310 int width;
311 int r;
312
313 if (WARN_ON(!cfg80211_chandef_valid(chandef)))
314 return -EINVAL;
315
316 width = cfg80211_chandef_get_width(chandef);
317 if (width < 0)
318 return -EINVAL;
319
320 r = cfg80211_get_chans_dfs_required(wiphy, chandef->center_freq1,
321 width);
322 if (r)
323 return r;
324
325 if (!chandef->center_freq2)
326 return 0;
327
328 return cfg80211_get_chans_dfs_required(wiphy, chandef->center_freq2,
329 width);
330}
331
9f5e8f6e
JB
332static bool cfg80211_secondary_chans_ok(struct wiphy *wiphy,
333 u32 center_freq, u32 bandwidth,
334 u32 prohibited_flags)
3d9d1d66
JB
335{
336 struct ieee80211_channel *c;
2f301ab2
SW
337 u32 freq, start_freq, end_freq;
338
339 if (bandwidth <= 20) {
340 start_freq = center_freq;
341 end_freq = center_freq;
342 } else {
343 start_freq = center_freq - bandwidth/2 + 10;
344 end_freq = center_freq + bandwidth/2 - 10;
345 }
3d9d1d66 346
2f301ab2 347 for (freq = start_freq; freq <= end_freq; freq += 20) {
3d9d1d66 348 c = ieee80211_get_channel(wiphy, freq);
04f39047
SW
349 if (!c)
350 return false;
351
352 /* check for radar flags */
353 if ((prohibited_flags & c->flags & IEEE80211_CHAN_RADAR) &&
354 (c->dfs_state != NL80211_DFS_AVAILABLE))
355 return false;
356
357 /* check for the other flags */
358 if (c->flags & prohibited_flags & ~IEEE80211_CHAN_RADAR)
3d9d1d66 359 return false;
9236d838
LR
360 }
361
3d9d1d66
JB
362 return true;
363}
364
9f5e8f6e
JB
365bool cfg80211_chandef_usable(struct wiphy *wiphy,
366 const struct cfg80211_chan_def *chandef,
367 u32 prohibited_flags)
3d9d1d66 368{
9f5e8f6e
JB
369 struct ieee80211_sta_ht_cap *ht_cap;
370 struct ieee80211_sta_vht_cap *vht_cap;
371 u32 width, control_freq;
3d9d1d66 372
9f5e8f6e
JB
373 if (WARN_ON(!cfg80211_chandef_valid(chandef)))
374 return false;
3d9d1d66 375
9f5e8f6e
JB
376 ht_cap = &wiphy->bands[chandef->chan->band]->ht_cap;
377 vht_cap = &wiphy->bands[chandef->chan->band]->vht_cap;
3d9d1d66 378
9f5e8f6e 379 control_freq = chandef->chan->center_freq;
9236d838 380
3d9d1d66 381 switch (chandef->width) {
2f301ab2
SW
382 case NL80211_CHAN_WIDTH_5:
383 width = 5;
384 break;
385 case NL80211_CHAN_WIDTH_10:
386 width = 10;
387 break;
3d9d1d66 388 case NL80211_CHAN_WIDTH_20:
9f5e8f6e
JB
389 if (!ht_cap->ht_supported)
390 return false;
391 case NL80211_CHAN_WIDTH_20_NOHT:
3d9d1d66
JB
392 width = 20;
393 break;
394 case NL80211_CHAN_WIDTH_40:
395 width = 40;
9f5e8f6e
JB
396 if (!ht_cap->ht_supported)
397 return false;
398 if (!(ht_cap->cap & IEEE80211_HT_CAP_SUP_WIDTH_20_40) ||
399 ht_cap->cap & IEEE80211_HT_CAP_40MHZ_INTOLERANT)
400 return false;
401 if (chandef->center_freq1 < control_freq &&
402 chandef->chan->flags & IEEE80211_CHAN_NO_HT40MINUS)
403 return false;
404 if (chandef->center_freq1 > control_freq &&
405 chandef->chan->flags & IEEE80211_CHAN_NO_HT40PLUS)
406 return false;
3d9d1d66 407 break;
3d9d1d66 408 case NL80211_CHAN_WIDTH_80P80:
9f5e8f6e
JB
409 if (!(vht_cap->cap & IEEE80211_VHT_CAP_SUPP_CHAN_WIDTH_160_80PLUS80MHZ))
410 return false;
411 case NL80211_CHAN_WIDTH_80:
412 if (!vht_cap->vht_supported)
413 return false;
c7a6ee27 414 prohibited_flags |= IEEE80211_CHAN_NO_80MHZ;
3d9d1d66
JB
415 width = 80;
416 break;
417 case NL80211_CHAN_WIDTH_160:
9f5e8f6e
JB
418 if (!vht_cap->vht_supported)
419 return false;
420 if (!(vht_cap->cap & IEEE80211_VHT_CAP_SUPP_CHAN_WIDTH_160MHZ))
421 return false;
c7a6ee27 422 prohibited_flags |= IEEE80211_CHAN_NO_160MHZ;
3d9d1d66
JB
423 width = 160;
424 break;
425 default:
426 WARN_ON_ONCE(1);
9236d838 427 return false;
4ee3e063 428 }
3d9d1d66 429
c7a6ee27
JB
430 /*
431 * TODO: What if there are only certain 80/160/80+80 MHz channels
432 * allowed by the driver, or only certain combinations?
433 * For 40 MHz the driver can set the NO_HT40 flags, but for
434 * 80/160 MHz and in particular 80+80 MHz this isn't really
435 * feasible and we only have NO_80MHZ/NO_160MHZ so far but
436 * no way to cover 80+80 MHz or more complex restrictions.
437 * Note that such restrictions also need to be advertised to
438 * userspace, for example for P2P channel selection.
439 */
9f5e8f6e 440
a6662dba
JB
441 if (width > 20)
442 prohibited_flags |= IEEE80211_CHAN_NO_OFDM;
443
2f301ab2
SW
444 /* 5 and 10 MHz are only defined for the OFDM PHY */
445 if (width < 20)
446 prohibited_flags |= IEEE80211_CHAN_NO_OFDM;
447
448
9f5e8f6e
JB
449 if (!cfg80211_secondary_chans_ok(wiphy, chandef->center_freq1,
450 width, prohibited_flags))
451 return false;
452
453 if (!chandef->center_freq2)
454 return true;
455 return cfg80211_secondary_chans_ok(wiphy, chandef->center_freq2,
456 width, prohibited_flags);
457}
458EXPORT_SYMBOL(cfg80211_chandef_usable);
459
460bool cfg80211_reg_can_beacon(struct wiphy *wiphy,
461 struct cfg80211_chan_def *chandef)
462{
463 bool res;
464
465 trace_cfg80211_reg_can_beacon(wiphy, chandef);
3d9d1d66 466
9f5e8f6e
JB
467 res = cfg80211_chandef_usable(wiphy, chandef,
468 IEEE80211_CHAN_DISABLED |
469 IEEE80211_CHAN_PASSIVE_SCAN |
470 IEEE80211_CHAN_NO_IBSS |
471 IEEE80211_CHAN_RADAR);
3d9d1d66
JB
472
473 trace_cfg80211_return_bool(res);
474 return res;
9236d838 475}
683b6d3b 476EXPORT_SYMBOL(cfg80211_reg_can_beacon);
9236d838 477
e8c9bd5b 478int cfg80211_set_monitor_channel(struct cfg80211_registered_device *rdev,
683b6d3b 479 struct cfg80211_chan_def *chandef)
9588bbd5 480{
e8c9bd5b 481 if (!rdev->ops->set_monitor_channel)
9588bbd5 482 return -EOPNOTSUPP;
4f03c1ed
MK
483 if (!cfg80211_has_monitors_only(rdev))
484 return -EBUSY;
9588bbd5 485
683b6d3b 486 return rdev_set_monitor_channel(rdev, chandef);
59bbb6f7 487}
26ab9a0c
MK
488
489void
8e95ea49 490cfg80211_get_chan_state(struct wireless_dev *wdev,
26ab9a0c
MK
491 struct ieee80211_channel **chan,
492 enum cfg80211_chan_mode *chanmode)
493{
494 *chan = NULL;
495 *chanmode = CHAN_MODE_UNDEFINED;
496
26ab9a0c
MK
497 ASSERT_WDEV_LOCK(wdev);
498
98104fde 499 if (wdev->netdev && !netif_running(wdev->netdev))
26ab9a0c
MK
500 return;
501
502 switch (wdev->iftype) {
503 case NL80211_IFTYPE_ADHOC:
504 if (wdev->current_bss) {
505 *chan = wdev->current_bss->pub.channel;
506 *chanmode = wdev->ibss_fixed
507 ? CHAN_MODE_SHARED
508 : CHAN_MODE_EXCLUSIVE;
509 return;
510 }
511 case NL80211_IFTYPE_STATION:
512 case NL80211_IFTYPE_P2P_CLIENT:
513 if (wdev->current_bss) {
514 *chan = wdev->current_bss->pub.channel;
515 *chanmode = CHAN_MODE_SHARED;
516 return;
517 }
518 break;
519 case NL80211_IFTYPE_AP:
520 case NL80211_IFTYPE_P2P_GO:
04f39047
SW
521 if (wdev->cac_started) {
522 *chan = wdev->channel;
523 *chanmode = CHAN_MODE_SHARED;
524 } else if (wdev->beacon_interval) {
f53594a0
FF
525 *chan = wdev->channel;
526 *chanmode = CHAN_MODE_SHARED;
527 }
528 return;
26ab9a0c 529 case NL80211_IFTYPE_MESH_POINT:
f53594a0
FF
530 if (wdev->mesh_id_len) {
531 *chan = wdev->channel;
532 *chanmode = CHAN_MODE_SHARED;
533 }
26ab9a0c
MK
534 return;
535 case NL80211_IFTYPE_MONITOR:
536 case NL80211_IFTYPE_AP_VLAN:
537 case NL80211_IFTYPE_WDS:
538 /* these interface types don't really have a channel */
539 return;
98104fde
JB
540 case NL80211_IFTYPE_P2P_DEVICE:
541 if (wdev->wiphy->features &
542 NL80211_FEATURE_P2P_DEVICE_NEEDS_CHANNEL)
543 *chanmode = CHAN_MODE_EXCLUSIVE;
544 return;
26ab9a0c
MK
545 case NL80211_IFTYPE_UNSPECIFIED:
546 case NUM_NL80211_IFTYPES:
547 WARN_ON(1);
548 }
549
550 return;
551}
This page took 0.266211 seconds and 5 git commands to generate.