blob: 10dea37431b320ec31016203bb8a3bb47bf40070 [file] [log] [blame]
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001/*
Sujithcee075a2009-03-13 09:07:23 +05302 * Copyright (c) 2008-2009 Atheros Communications Inc.
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003 *
4 * Permission to use, copy, modify, and/or distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice appear in all copies.
7 *
8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 */
16
17#include <linux/kernel.h>
Paul Gortmakeree40fa02011-05-27 16:14:23 -040018#include <linux/export.h>
Bob Copeland3a702e42009-03-30 22:30:29 -040019#include <net/cfg80211.h>
20#include <net/mac80211.h>
Bob Copeland3a702e42009-03-30 22:30:29 -040021#include "regd.h"
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070022#include "regd_common.h"
23
Luis R. Rodriguezde1c7322011-12-08 23:59:24 +053024static int __ath_regd_init(struct ath_regulatory *reg);
25
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -080026/*
27 * This is a set of common rules used by our world regulatory domains.
28 * We have 12 world regulatory domains. To save space we consolidate
29 * the regulatory domains in 5 structures by frequency and change
30 * the flags on our reg_notifier() on a case by case basis.
31 */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070032
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -080033/* Only these channels all allow active scan on all world regulatory domains */
34#define ATH9K_2GHZ_CH01_11 REG_RULE(2412-10, 2462+10, 40, 0, 20, 0)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070035
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -080036/* We enable active scan on these a case by case basis by regulatory domain */
37#define ATH9K_2GHZ_CH12_13 REG_RULE(2467-10, 2472+10, 40, 0, 20,\
38 NL80211_RRF_PASSIVE_SCAN)
39#define ATH9K_2GHZ_CH14 REG_RULE(2484-10, 2484+10, 40, 0, 20,\
40 NL80211_RRF_PASSIVE_SCAN | NL80211_RRF_NO_OFDM)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070041
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -080042/* We allow IBSS on these on a case by case basis by regulatory domain */
43#define ATH9K_5GHZ_5150_5350 REG_RULE(5150-10, 5350+10, 40, 0, 30,\
44 NL80211_RRF_PASSIVE_SCAN | NL80211_RRF_NO_IBSS)
45#define ATH9K_5GHZ_5470_5850 REG_RULE(5470-10, 5850+10, 40, 0, 30,\
46 NL80211_RRF_PASSIVE_SCAN | NL80211_RRF_NO_IBSS)
47#define ATH9K_5GHZ_5725_5850 REG_RULE(5725-10, 5850+10, 40, 0, 30,\
48 NL80211_RRF_PASSIVE_SCAN | NL80211_RRF_NO_IBSS)
49
50#define ATH9K_2GHZ_ALL ATH9K_2GHZ_CH01_11, \
51 ATH9K_2GHZ_CH12_13, \
52 ATH9K_2GHZ_CH14
53
54#define ATH9K_5GHZ_ALL ATH9K_5GHZ_5150_5350, \
55 ATH9K_5GHZ_5470_5850
Luis de Bethencourtcfcfe442010-03-30 16:44:33 +010056
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -080057/* This one skips what we call "mid band" */
58#define ATH9K_5GHZ_NO_MIDBAND ATH9K_5GHZ_5150_5350, \
59 ATH9K_5GHZ_5725_5850
60
61/* Can be used for:
62 * 0x60, 0x61, 0x62 */
Bob Copeland3a702e42009-03-30 22:30:29 -040063static const struct ieee80211_regdomain ath_world_regdom_60_61_62 = {
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -080064 .n_reg_rules = 5,
65 .alpha2 = "99",
66 .reg_rules = {
67 ATH9K_2GHZ_ALL,
68 ATH9K_5GHZ_ALL,
69 }
70};
71
72/* Can be used by 0x63 and 0x65 */
Bob Copeland3a702e42009-03-30 22:30:29 -040073static const struct ieee80211_regdomain ath_world_regdom_63_65 = {
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -080074 .n_reg_rules = 4,
75 .alpha2 = "99",
76 .reg_rules = {
77 ATH9K_2GHZ_CH01_11,
78 ATH9K_2GHZ_CH12_13,
79 ATH9K_5GHZ_NO_MIDBAND,
80 }
81};
82
83/* Can be used by 0x64 only */
Bob Copeland3a702e42009-03-30 22:30:29 -040084static const struct ieee80211_regdomain ath_world_regdom_64 = {
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -080085 .n_reg_rules = 3,
86 .alpha2 = "99",
87 .reg_rules = {
88 ATH9K_2GHZ_CH01_11,
89 ATH9K_5GHZ_NO_MIDBAND,
90 }
91};
92
93/* Can be used by 0x66 and 0x69 */
Bob Copeland3a702e42009-03-30 22:30:29 -040094static const struct ieee80211_regdomain ath_world_regdom_66_69 = {
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -080095 .n_reg_rules = 3,
96 .alpha2 = "99",
97 .reg_rules = {
98 ATH9K_2GHZ_CH01_11,
99 ATH9K_5GHZ_ALL,
100 }
101};
102
Senthil Balasubramanian34a0a202011-04-14 16:41:30 +0530103/* Can be used by 0x67, 0x68, 0x6A and 0x6C */
104static const struct ieee80211_regdomain ath_world_regdom_67_68_6A_6C = {
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800105 .n_reg_rules = 4,
106 .alpha2 = "99",
107 .reg_rules = {
108 ATH9K_2GHZ_CH01_11,
109 ATH9K_2GHZ_CH12_13,
110 ATH9K_5GHZ_ALL,
111 }
112};
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700113
Bob Copelandd0f48f92009-02-12 13:38:55 -0500114static inline bool is_wwr_sku(u16 regd)
115{
Christian Lamparter641eabb2010-02-07 16:01:55 +0100116 return ((regd & COUNTRY_ERD_FLAG) != COUNTRY_ERD_FLAG) &&
117 (((regd & WORLD_SKU_MASK) == WORLD_SKU_PREFIX) ||
118 (regd == WORLD));
Bob Copelandd0f48f92009-02-12 13:38:55 -0500119}
120
Bob Copeland3a702e42009-03-30 22:30:29 -0400121static u16 ath_regd_get_eepromRD(struct ath_regulatory *reg)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700122{
Bob Copelandc02cf372009-03-30 22:30:28 -0400123 return reg->current_rd & ~WORLDWIDE_ROAMING_FLAG;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700124}
125
Bob Copeland3a702e42009-03-30 22:30:29 -0400126bool ath_is_world_regd(struct ath_regulatory *reg)
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800127{
Bob Copeland3a702e42009-03-30 22:30:29 -0400128 return is_wwr_sku(ath_regd_get_eepromRD(reg));
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800129}
Bob Copeland3a702e42009-03-30 22:30:29 -0400130EXPORT_SYMBOL(ath_is_world_regd);
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800131
Bob Copelande3bb2492009-03-30 22:30:30 -0400132static const struct ieee80211_regdomain *ath_default_world_regdomain(void)
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800133{
134 /* this is the most restrictive */
Bob Copeland3a702e42009-03-30 22:30:29 -0400135 return &ath_world_regdom_64;
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800136}
137
Bob Copelande3bb2492009-03-30 22:30:30 -0400138static const struct
Bob Copeland3a702e42009-03-30 22:30:29 -0400139ieee80211_regdomain *ath_world_regdomain(struct ath_regulatory *reg)
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800140{
Bob Copelandc02cf372009-03-30 22:30:28 -0400141 switch (reg->regpair->regDmnEnum) {
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800142 case 0x60:
143 case 0x61:
144 case 0x62:
Bob Copeland3a702e42009-03-30 22:30:29 -0400145 return &ath_world_regdom_60_61_62;
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800146 case 0x63:
147 case 0x65:
Bob Copeland3a702e42009-03-30 22:30:29 -0400148 return &ath_world_regdom_63_65;
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800149 case 0x64:
Bob Copeland3a702e42009-03-30 22:30:29 -0400150 return &ath_world_regdom_64;
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800151 case 0x66:
152 case 0x69:
Bob Copeland3a702e42009-03-30 22:30:29 -0400153 return &ath_world_regdom_66_69;
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800154 case 0x67:
155 case 0x68:
156 case 0x6A:
Senthil Balasubramanian34a0a202011-04-14 16:41:30 +0530157 case 0x6C:
158 return &ath_world_regdom_67_68_6A_6C;
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800159 default:
160 WARN_ON(1);
Bob Copeland3a702e42009-03-30 22:30:29 -0400161 return ath_default_world_regdomain();
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800162 }
163}
164
Bruno Randolf5719efd2011-01-25 13:15:33 +0900165bool ath_is_49ghz_allowed(u16 regdomain)
166{
167 /* possibly more */
168 return regdomain == MKK9_MKKC;
169}
170EXPORT_SYMBOL(ath_is_49ghz_allowed);
171
Luis R. Rodriguez547e4c22009-01-28 12:17:48 -0800172/* Frequency is one where radar detection is required */
Bob Copeland3a702e42009-03-30 22:30:29 -0400173static bool ath_is_radar_freq(u16 center_freq)
Luis R. Rodriguez547e4c22009-01-28 12:17:48 -0800174{
175 return (center_freq >= 5260 && center_freq <= 5700);
176}
177
Luis R. Rodriguez7519a8f2009-01-28 12:17:49 -0800178/*
Luis R. Rodriguez84540862009-02-21 00:20:40 -0500179 * N.B: These exception rules do not apply radar freqs.
180 *
181 * - We enable adhoc (or beaconing) if allowed by 11d
182 * - We enable active scan if the channel is allowed by 11d
183 * - If no country IE has been processed and a we determine we have
184 * received a beacon on a channel we can enable active scan and
185 * adhoc (or beaconing).
Luis R. Rodriguez7519a8f2009-01-28 12:17:49 -0800186 */
Luis R. Rodriguez6b2b2ff2009-03-30 22:30:34 -0400187static void
188ath_reg_apply_beaconing_flags(struct wiphy *wiphy,
189 enum nl80211_reg_initiator initiator)
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800190{
Luis R. Rodriguez84540862009-02-21 00:20:40 -0500191 enum ieee80211_band band;
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800192 struct ieee80211_supported_band *sband;
193 const struct ieee80211_reg_rule *reg_rule;
194 struct ieee80211_channel *ch;
195 unsigned int i;
196 u32 bandwidth = 0;
197 int r;
198
Luis R. Rodriguez84540862009-02-21 00:20:40 -0500199 for (band = 0; band < IEEE80211_NUM_BANDS; band++) {
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800200
Luis R. Rodriguez84540862009-02-21 00:20:40 -0500201 if (!wiphy->bands[band])
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800202 continue;
Luis R. Rodriguez84540862009-02-21 00:20:40 -0500203
204 sband = wiphy->bands[band];
205
206 for (i = 0; i < sband->n_channels; i++) {
207
208 ch = &sband->channels[i];
209
Bob Copeland3a702e42009-03-30 22:30:29 -0400210 if (ath_is_radar_freq(ch->center_freq) ||
Luis R. Rodriguez84540862009-02-21 00:20:40 -0500211 (ch->flags & IEEE80211_CHAN_RADAR))
212 continue;
213
Luis R. Rodriguez7db90f42009-03-09 22:07:41 -0400214 if (initiator == NL80211_REGDOM_SET_BY_COUNTRY_IE) {
Luis R. Rodriguez038659e2009-05-02 00:37:17 -0400215 r = freq_reg_info(wiphy,
216 ch->center_freq,
217 bandwidth,
218 &reg_rule);
Luis R. Rodriguez84540862009-02-21 00:20:40 -0500219 if (r)
220 continue;
221 /*
222 * If 11d had a rule for this channel ensure
223 * we enable adhoc/beaconing if it allows us to
224 * use it. Note that we would have disabled it
225 * by applying our static world regdomain by
226 * default during init, prior to calling our
227 * regulatory_hint().
228 */
229 if (!(reg_rule->flags &
230 NL80211_RRF_NO_IBSS))
231 ch->flags &=
232 ~IEEE80211_CHAN_NO_IBSS;
233 if (!(reg_rule->flags &
234 NL80211_RRF_PASSIVE_SCAN))
235 ch->flags &=
236 ~IEEE80211_CHAN_PASSIVE_SCAN;
237 } else {
238 if (ch->beacon_found)
239 ch->flags &= ~(IEEE80211_CHAN_NO_IBSS |
240 IEEE80211_CHAN_PASSIVE_SCAN);
241 }
242 }
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800243 }
Luis R. Rodriguez84540862009-02-21 00:20:40 -0500244
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800245}
246
247/* Allows active scan scan on Ch 12 and 13 */
Luis R. Rodriguez6b2b2ff2009-03-30 22:30:34 -0400248static void
249ath_reg_apply_active_scan_flags(struct wiphy *wiphy,
250 enum nl80211_reg_initiator initiator)
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800251{
252 struct ieee80211_supported_band *sband;
253 struct ieee80211_channel *ch;
254 const struct ieee80211_reg_rule *reg_rule;
255 u32 bandwidth = 0;
256 int r;
257
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800258 sband = wiphy->bands[IEEE80211_BAND_2GHZ];
Helmut Schaaa59be082011-11-08 14:01:13 +0100259 if (!sband)
260 return;
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800261
Luis R. Rodriguez84540862009-02-21 00:20:40 -0500262 /*
263 * If no country IE has been received always enable active scan
264 * on these channels. This is only done for specific regulatory SKUs
265 */
Luis R. Rodriguez7db90f42009-03-09 22:07:41 -0400266 if (initiator != NL80211_REGDOM_SET_BY_COUNTRY_IE) {
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800267 ch = &sband->channels[11]; /* CH 12 */
268 if (ch->flags & IEEE80211_CHAN_PASSIVE_SCAN)
269 ch->flags &= ~IEEE80211_CHAN_PASSIVE_SCAN;
270 ch = &sband->channels[12]; /* CH 13 */
271 if (ch->flags & IEEE80211_CHAN_PASSIVE_SCAN)
272 ch->flags &= ~IEEE80211_CHAN_PASSIVE_SCAN;
273 return;
274 }
275
Luis R. Rodriguez84540862009-02-21 00:20:40 -0500276 /*
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300277 * If a country IE has been received check its rule for this
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800278 * channel first before enabling active scan. The passive scan
Luis R. Rodriguez84540862009-02-21 00:20:40 -0500279 * would have been enforced by the initial processing of our
280 * custom regulatory domain.
281 */
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800282
283 ch = &sband->channels[11]; /* CH 12 */
Luis R. Rodriguez038659e2009-05-02 00:37:17 -0400284 r = freq_reg_info(wiphy, ch->center_freq, bandwidth, &reg_rule);
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800285 if (!r) {
286 if (!(reg_rule->flags & NL80211_RRF_PASSIVE_SCAN))
287 if (ch->flags & IEEE80211_CHAN_PASSIVE_SCAN)
288 ch->flags &= ~IEEE80211_CHAN_PASSIVE_SCAN;
289 }
290
291 ch = &sband->channels[12]; /* CH 13 */
Luis R. Rodriguez038659e2009-05-02 00:37:17 -0400292 r = freq_reg_info(wiphy, ch->center_freq, bandwidth, &reg_rule);
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800293 if (!r) {
294 if (!(reg_rule->flags & NL80211_RRF_PASSIVE_SCAN))
295 if (ch->flags & IEEE80211_CHAN_PASSIVE_SCAN)
296 ch->flags &= ~IEEE80211_CHAN_PASSIVE_SCAN;
297 }
298}
299
300/* Always apply Radar/DFS rules on freq range 5260 MHz - 5700 MHz */
Bob Copelande3bb2492009-03-30 22:30:30 -0400301static void ath_reg_apply_radar_flags(struct wiphy *wiphy)
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800302{
303 struct ieee80211_supported_band *sband;
304 struct ieee80211_channel *ch;
305 unsigned int i;
306
307 if (!wiphy->bands[IEEE80211_BAND_5GHZ])
308 return;
309
310 sband = wiphy->bands[IEEE80211_BAND_5GHZ];
311
312 for (i = 0; i < sband->n_channels; i++) {
313 ch = &sband->channels[i];
Bob Copeland3a702e42009-03-30 22:30:29 -0400314 if (!ath_is_radar_freq(ch->center_freq))
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800315 continue;
316 /* We always enable radar detection/DFS on this
317 * frequency range. Additionally we also apply on
318 * this frequency range:
319 * - If STA mode does not yet have DFS supports disable
320 * active scanning
321 * - If adhoc mode does not support DFS yet then
322 * disable adhoc in the frequency.
323 * - If AP mode does not yet support radar detection/DFS
324 * do not allow AP mode
325 */
326 if (!(ch->flags & IEEE80211_CHAN_DISABLED))
327 ch->flags |= IEEE80211_CHAN_RADAR |
328 IEEE80211_CHAN_NO_IBSS |
329 IEEE80211_CHAN_PASSIVE_SCAN;
330 }
331}
332
Bob Copelande3bb2492009-03-30 22:30:30 -0400333static void ath_reg_apply_world_flags(struct wiphy *wiphy,
Luis R. Rodriguez6b2b2ff2009-03-30 22:30:34 -0400334 enum nl80211_reg_initiator initiator,
335 struct ath_regulatory *reg)
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800336{
Bob Copelandc02cf372009-03-30 22:30:28 -0400337 switch (reg->regpair->regDmnEnum) {
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800338 case 0x60:
339 case 0x63:
340 case 0x66:
341 case 0x67:
Luis R. Rodriguez2290a9c352011-04-14 14:55:36 -0700342 case 0x6C:
Bob Copeland3a702e42009-03-30 22:30:29 -0400343 ath_reg_apply_beaconing_flags(wiphy, initiator);
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800344 break;
345 case 0x68:
Bob Copeland3a702e42009-03-30 22:30:29 -0400346 ath_reg_apply_beaconing_flags(wiphy, initiator);
347 ath_reg_apply_active_scan_flags(wiphy, initiator);
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800348 break;
349 }
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800350}
351
Luis R. Rodriguezde1c7322011-12-08 23:59:24 +0530352static u16 ath_regd_find_country_by_name(char *alpha2)
353{
354 unsigned int i;
355
356 for (i = 0; i < ARRAY_SIZE(allCountries); i++) {
357 if (!memcmp(allCountries[i].isoName, alpha2, 2))
358 return allCountries[i].countryCode;
359 }
360
361 return -1;
362}
363
Bob Copeland3a702e42009-03-30 22:30:29 -0400364int ath_reg_notifier_apply(struct wiphy *wiphy,
Luis R. Rodriguez6b2b2ff2009-03-30 22:30:34 -0400365 struct regulatory_request *request,
366 struct ath_regulatory *reg)
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800367{
Luis R. Rodriguezde1c7322011-12-08 23:59:24 +0530368 struct ath_common *common = container_of(reg, struct ath_common,
369 regulatory);
370 u16 country_code;
371
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800372 /* We always apply this */
Bob Copeland3a702e42009-03-30 22:30:29 -0400373 ath_reg_apply_radar_flags(wiphy);
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800374
Luis R. Rodriguez931299c2010-12-15 19:24:12 -0800375 /*
376 * This would happen when we have sent a custom regulatory request
377 * a world regulatory domain and the scheduler hasn't yet processed
378 * any pending requests in the queue.
379 */
380 if (!request)
381 return 0;
382
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800383 switch (request->initiator) {
Luis R. Rodriguez7db90f42009-03-09 22:07:41 -0400384 case NL80211_REGDOM_SET_BY_CORE:
Luis R. Rodriguezde1c7322011-12-08 23:59:24 +0530385 /*
386 * If common->reg_world_copy is world roaming it means we *were*
387 * world roaming... so we now have to restore that data.
388 */
389 if (!ath_is_world_regd(&common->reg_world_copy))
390 break;
391
392 memcpy(reg, &common->reg_world_copy,
393 sizeof(struct ath_regulatory));
394 break;
395 case NL80211_REGDOM_SET_BY_DRIVER:
Luis R. Rodriguez7db90f42009-03-09 22:07:41 -0400396 case NL80211_REGDOM_SET_BY_USER:
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800397 break;
Luis R. Rodriguez7db90f42009-03-09 22:07:41 -0400398 case NL80211_REGDOM_SET_BY_COUNTRY_IE:
Luis R. Rodriguezde1c7322011-12-08 23:59:24 +0530399 if (!ath_is_world_regd(reg))
400 break;
401
402 country_code = ath_regd_find_country_by_name(request->alpha2);
403 if (country_code == (u16) -1)
404 break;
405
406 reg->current_rd = COUNTRY_ERD_FLAG;
407 reg->current_rd |= country_code;
408
409 printk(KERN_DEBUG "ath: regdomain 0x%0x updated by CountryIE\n",
410 reg->current_rd);
411 __ath_regd_init(reg);
412
413 ath_reg_apply_world_flags(wiphy, request->initiator, reg);
414
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800415 break;
416 }
417
418 return 0;
419}
Bob Copeland3a702e42009-03-30 22:30:29 -0400420EXPORT_SYMBOL(ath_reg_notifier_apply);
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800421
Bob Copelande3bb2492009-03-30 22:30:30 -0400422static bool ath_regd_is_eeprom_valid(struct ath_regulatory *reg)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700423{
Luis de Bethencourtcfcfe442010-03-30 16:44:33 +0100424 u16 rd = ath_regd_get_eepromRD(reg);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700425 int i;
426
427 if (rd & COUNTRY_ERD_FLAG) {
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800428 /* EEPROM value is a country code */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700429 u16 cc = rd & ~COUNTRY_ERD_FLAG;
Luis R. Rodrigueze03e5ffd2009-06-02 16:30:56 -0400430 printk(KERN_DEBUG
431 "ath: EEPROM indicates we should expect "
432 "a country code\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700433 for (i = 0; i < ARRAY_SIZE(allCountries); i++)
434 if (allCountries[i].countryCode == cc)
435 return true;
436 } else {
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800437 /* EEPROM value is a regpair value */
Luis R. Rodrigueze03e5ffd2009-06-02 16:30:56 -0400438 if (rd != CTRY_DEFAULT)
439 printk(KERN_DEBUG "ath: EEPROM indicates we "
440 "should expect a direct regpair map\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700441 for (i = 0; i < ARRAY_SIZE(regDomainPairs); i++)
442 if (regDomainPairs[i].regDmnEnum == rd)
443 return true;
444 }
Bob Copelandc02cf372009-03-30 22:30:28 -0400445 printk(KERN_DEBUG
Bob Copeland3a702e42009-03-30 22:30:29 -0400446 "ath: invalid regulatory domain/country code 0x%x\n", rd);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700447 return false;
448}
449
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800450/* EEPROM country code to regpair mapping */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700451static struct country_code_to_enum_rd*
Bob Copeland3a702e42009-03-30 22:30:29 -0400452ath_regd_find_country(u16 countryCode)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700453{
454 int i;
455
456 for (i = 0; i < ARRAY_SIZE(allCountries); i++) {
457 if (allCountries[i].countryCode == countryCode)
458 return &allCountries[i];
459 }
460 return NULL;
461}
462
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800463/* EEPROM rd code to regpair mapping */
464static struct country_code_to_enum_rd*
Bob Copeland3a702e42009-03-30 22:30:29 -0400465ath_regd_find_country_by_rd(int regdmn)
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800466{
467 int i;
468
469 for (i = 0; i < ARRAY_SIZE(allCountries); i++) {
470 if (allCountries[i].regDmnEnum == regdmn)
471 return &allCountries[i];
472 }
473 return NULL;
474}
475
476/* Returns the map of the EEPROM set RD to a country code */
Bob Copeland3a702e42009-03-30 22:30:29 -0400477static u16 ath_regd_get_default_country(u16 rd)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700478{
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700479 if (rd & COUNTRY_ERD_FLAG) {
480 struct country_code_to_enum_rd *country = NULL;
481 u16 cc = rd & ~COUNTRY_ERD_FLAG;
482
Bob Copeland3a702e42009-03-30 22:30:29 -0400483 country = ath_regd_find_country(cc);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700484 if (country != NULL)
485 return cc;
486 }
487
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700488 return CTRY_DEFAULT;
489}
490
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800491static struct reg_dmn_pair_mapping*
Bob Copeland3a702e42009-03-30 22:30:29 -0400492ath_get_regpair(int regdmn)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700493{
494 int i;
495
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800496 if (regdmn == NO_ENUMRD)
497 return NULL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700498 for (i = 0; i < ARRAY_SIZE(regDomainPairs); i++) {
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800499 if (regDomainPairs[i].regDmnEnum == regdmn)
500 return &regDomainPairs[i];
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700501 }
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800502 return NULL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700503}
504
Luis R. Rodriguez6b2b2ff2009-03-30 22:30:34 -0400505static int
506ath_regd_init_wiphy(struct ath_regulatory *reg,
507 struct wiphy *wiphy,
508 int (*reg_notifier)(struct wiphy *wiphy,
Bob Copelande3bb2492009-03-30 22:30:30 -0400509 struct regulatory_request *request))
510{
511 const struct ieee80211_regdomain *regd;
512
513 wiphy->reg_notifier = reg_notifier;
Johannes Berg5be83de2009-11-19 00:56:28 +0100514 wiphy->flags |= WIPHY_FLAG_STRICT_REGULATORY;
Bob Copelande3bb2492009-03-30 22:30:30 -0400515
516 if (ath_is_world_regd(reg)) {
517 /*
518 * Anything applied here (prior to wiphy registration) gets
519 * saved on the wiphy orig_* parameters
520 */
521 regd = ath_world_regdomain(reg);
Johannes Berg5be83de2009-11-19 00:56:28 +0100522 wiphy->flags |= WIPHY_FLAG_CUSTOM_REGULATORY;
Bob Copelande3bb2492009-03-30 22:30:30 -0400523 } else {
524 /*
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300525 * This gets applied in the case of the absence of CRDA,
Bob Copelande3bb2492009-03-30 22:30:30 -0400526 * it's our own custom world regulatory domain, similar to
527 * cfg80211's but we enable passive scanning.
528 */
529 regd = ath_default_world_regdomain();
530 }
531 wiphy_apply_custom_regulatory(wiphy, regd);
532 ath_reg_apply_radar_flags(wiphy);
533 ath_reg_apply_world_flags(wiphy, NL80211_REGDOM_SET_BY_DRIVER, reg);
534 return 0;
535}
536
Luis R. Rodriguez5d2214a2009-07-20 08:32:47 -0700537/*
538 * Some users have reported their EEPROM programmed with
539 * 0x8000 set, this is not a supported regulatory domain
540 * but since we have more than one user with it we need
541 * a solution for them. We default to 0x64, which is the
542 * default Atheros world regulatory domain.
543 */
544static void ath_regd_sanitize(struct ath_regulatory *reg)
545{
546 if (reg->current_rd != COUNTRY_ERD_FLAG)
547 return;
548 printk(KERN_DEBUG "ath: EEPROM regdomain sanitized\n");
549 reg->current_rd = 0x64;
550}
551
Luis R. Rodriguez43fcb432011-12-08 23:59:23 +0530552static int __ath_regd_init(struct ath_regulatory *reg)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700553{
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700554 struct country_code_to_enum_rd *country = NULL;
Bob Copelande775aaf2009-02-12 13:38:54 -0500555 u16 regdmn;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700556
Luis R. Rodrigueze03e5ffd2009-06-02 16:30:56 -0400557 if (!reg)
558 return -EINVAL;
559
Luis R. Rodriguez5d2214a2009-07-20 08:32:47 -0700560 ath_regd_sanitize(reg);
561
Luis R. Rodrigueze03e5ffd2009-06-02 16:30:56 -0400562 printk(KERN_DEBUG "ath: EEPROM regdomain: 0x%0x\n", reg->current_rd);
563
Bob Copeland3a702e42009-03-30 22:30:29 -0400564 if (!ath_regd_is_eeprom_valid(reg)) {
Luis R. Rodriguez85efc862009-04-13 21:41:46 -0400565 printk(KERN_ERR "ath: Invalid EEPROM contents\n");
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800566 return -EINVAL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700567 }
568
Bob Copeland3a702e42009-03-30 22:30:29 -0400569 regdmn = ath_regd_get_eepromRD(reg);
570 reg->country_code = ath_regd_get_default_country(regdmn);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700571
Bob Copelandc02cf372009-03-30 22:30:28 -0400572 if (reg->country_code == CTRY_DEFAULT &&
Luis R. Rodrigueze03e5ffd2009-06-02 16:30:56 -0400573 regdmn == CTRY_DEFAULT) {
574 printk(KERN_DEBUG "ath: EEPROM indicates default "
575 "country code should be used\n");
Bob Copelandc02cf372009-03-30 22:30:28 -0400576 reg->country_code = CTRY_UNITED_STATES;
Luis R. Rodrigueze03e5ffd2009-06-02 16:30:56 -0400577 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700578
Bob Copelandc02cf372009-03-30 22:30:28 -0400579 if (reg->country_code == CTRY_DEFAULT) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700580 country = NULL;
581 } else {
Luis R. Rodrigueze03e5ffd2009-06-02 16:30:56 -0400582 printk(KERN_DEBUG "ath: doing EEPROM country->regdmn "
583 "map search\n");
Bob Copeland3a702e42009-03-30 22:30:29 -0400584 country = ath_regd_find_country(reg->country_code);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700585 if (country == NULL) {
Bob Copelandc02cf372009-03-30 22:30:28 -0400586 printk(KERN_DEBUG
Luis R. Rodrigueze03e5ffd2009-06-02 16:30:56 -0400587 "ath: no valid country maps found for "
588 "country code: 0x%0x\n",
Bob Copelandc02cf372009-03-30 22:30:28 -0400589 reg->country_code);
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800590 return -EINVAL;
Luis R. Rodrigueze03e5ffd2009-06-02 16:30:56 -0400591 } else {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700592 regdmn = country->regDmnEnum;
Luis R. Rodrigueze03e5ffd2009-06-02 16:30:56 -0400593 printk(KERN_DEBUG "ath: country maps to "
594 "regdmn code: 0x%0x\n",
595 regdmn);
596 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700597 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700598
Bob Copeland3a702e42009-03-30 22:30:29 -0400599 reg->regpair = ath_get_regpair(regdmn);
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800600
Bob Copelandc02cf372009-03-30 22:30:28 -0400601 if (!reg->regpair) {
Bob Copeland3a702e42009-03-30 22:30:29 -0400602 printk(KERN_DEBUG "ath: "
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800603 "No regulatory domain pair found, cannot continue\n");
604 return -EINVAL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700605 }
606
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800607 if (!country)
Bob Copeland3a702e42009-03-30 22:30:29 -0400608 country = ath_regd_find_country_by_rd(regdmn);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700609
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800610 if (country) {
Bob Copelandc02cf372009-03-30 22:30:28 -0400611 reg->alpha2[0] = country->isoName[0];
612 reg->alpha2[1] = country->isoName[1];
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800613 } else {
Bob Copelandc02cf372009-03-30 22:30:28 -0400614 reg->alpha2[0] = '0';
615 reg->alpha2[1] = '0';
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800616 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700617
Bob Copeland3a702e42009-03-30 22:30:29 -0400618 printk(KERN_DEBUG "ath: Country alpha2 being used: %c%c\n",
Bob Copelandc02cf372009-03-30 22:30:28 -0400619 reg->alpha2[0], reg->alpha2[1]);
Luis R. Rodrigueze03e5ffd2009-06-02 16:30:56 -0400620 printk(KERN_DEBUG "ath: Regpair used: 0x%0x\n",
Bob Copelandc02cf372009-03-30 22:30:28 -0400621 reg->regpair->regDmnEnum);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700622
Luis R. Rodriguez43fcb432011-12-08 23:59:23 +0530623 return 0;
624}
625
626int
627ath_regd_init(struct ath_regulatory *reg,
628 struct wiphy *wiphy,
629 int (*reg_notifier)(struct wiphy *wiphy,
630 struct regulatory_request *request))
631{
Luis R. Rodriguezde1c7322011-12-08 23:59:24 +0530632 struct ath_common *common = container_of(reg, struct ath_common,
633 regulatory);
Luis R. Rodriguez43fcb432011-12-08 23:59:23 +0530634 int r;
635
636 r = __ath_regd_init(reg);
637 if (r)
638 return r;
639
Luis R. Rodriguezde1c7322011-12-08 23:59:24 +0530640 if (ath_is_world_regd(reg))
641 memcpy(&common->reg_world_copy, reg,
642 sizeof(struct ath_regulatory));
643
Bob Copelande3bb2492009-03-30 22:30:30 -0400644 ath_regd_init_wiphy(reg, wiphy, reg_notifier);
Luis R. Rodriguez43fcb432011-12-08 23:59:23 +0530645
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800646 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700647}
Bob Copeland3a702e42009-03-30 22:30:29 -0400648EXPORT_SYMBOL(ath_regd_init);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700649
Bob Copeland3a702e42009-03-30 22:30:29 -0400650u32 ath_regd_get_band_ctl(struct ath_regulatory *reg,
651 enum ieee80211_band band)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700652{
Bob Copelandc02cf372009-03-30 22:30:28 -0400653 if (!reg->regpair ||
654 (reg->country_code == CTRY_DEFAULT &&
Bob Copeland3a702e42009-03-30 22:30:29 -0400655 is_wwr_sku(ath_regd_get_eepromRD(reg)))) {
Bob Copelandfc2ada32009-03-30 22:30:27 -0400656 return SD_NO_CTL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700657 }
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800658
Bob Copelandfc2ada32009-03-30 22:30:27 -0400659 switch (band) {
660 case IEEE80211_BAND_2GHZ:
Bob Copelandc02cf372009-03-30 22:30:28 -0400661 return reg->regpair->reg_2ghz_ctl;
Bob Copelandfc2ada32009-03-30 22:30:27 -0400662 case IEEE80211_BAND_5GHZ:
Bob Copelandc02cf372009-03-30 22:30:28 -0400663 return reg->regpair->reg_5ghz_ctl;
Bob Copelandfc2ada32009-03-30 22:30:27 -0400664 default:
665 return NO_CTL;
666 }
Bob Copelandfc2ada32009-03-30 22:30:27 -0400667}
Bob Copeland3a702e42009-03-30 22:30:29 -0400668EXPORT_SYMBOL(ath_regd_get_band_ctl);