blob: ed4966fdb8d3859291264c6aaf94c2008bbee83c [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. Rodriguez5f8e0772009-01-22 15:16:48 -080024/*
25 * This is a set of common rules used by our world regulatory domains.
26 * We have 12 world regulatory domains. To save space we consolidate
27 * the regulatory domains in 5 structures by frequency and change
28 * the flags on our reg_notifier() on a case by case basis.
29 */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070030
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -080031/* Only these channels all allow active scan on all world regulatory domains */
32#define ATH9K_2GHZ_CH01_11 REG_RULE(2412-10, 2462+10, 40, 0, 20, 0)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070033
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -080034/* We enable active scan on these a case by case basis by regulatory domain */
35#define ATH9K_2GHZ_CH12_13 REG_RULE(2467-10, 2472+10, 40, 0, 20,\
36 NL80211_RRF_PASSIVE_SCAN)
37#define ATH9K_2GHZ_CH14 REG_RULE(2484-10, 2484+10, 40, 0, 20,\
38 NL80211_RRF_PASSIVE_SCAN | NL80211_RRF_NO_OFDM)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070039
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -080040/* We allow IBSS on these on a case by case basis by regulatory domain */
41#define ATH9K_5GHZ_5150_5350 REG_RULE(5150-10, 5350+10, 40, 0, 30,\
42 NL80211_RRF_PASSIVE_SCAN | NL80211_RRF_NO_IBSS)
43#define ATH9K_5GHZ_5470_5850 REG_RULE(5470-10, 5850+10, 40, 0, 30,\
44 NL80211_RRF_PASSIVE_SCAN | NL80211_RRF_NO_IBSS)
45#define ATH9K_5GHZ_5725_5850 REG_RULE(5725-10, 5850+10, 40, 0, 30,\
46 NL80211_RRF_PASSIVE_SCAN | NL80211_RRF_NO_IBSS)
47
48#define ATH9K_2GHZ_ALL ATH9K_2GHZ_CH01_11, \
49 ATH9K_2GHZ_CH12_13, \
50 ATH9K_2GHZ_CH14
51
52#define ATH9K_5GHZ_ALL ATH9K_5GHZ_5150_5350, \
53 ATH9K_5GHZ_5470_5850
Luis de Bethencourtcfcfe442010-03-30 16:44:33 +010054
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -080055/* This one skips what we call "mid band" */
56#define ATH9K_5GHZ_NO_MIDBAND ATH9K_5GHZ_5150_5350, \
57 ATH9K_5GHZ_5725_5850
58
59/* Can be used for:
60 * 0x60, 0x61, 0x62 */
Bob Copeland3a702e42009-03-30 22:30:29 -040061static const struct ieee80211_regdomain ath_world_regdom_60_61_62 = {
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -080062 .n_reg_rules = 5,
63 .alpha2 = "99",
64 .reg_rules = {
65 ATH9K_2GHZ_ALL,
66 ATH9K_5GHZ_ALL,
67 }
68};
69
70/* Can be used by 0x63 and 0x65 */
Bob Copeland3a702e42009-03-30 22:30:29 -040071static const struct ieee80211_regdomain ath_world_regdom_63_65 = {
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -080072 .n_reg_rules = 4,
73 .alpha2 = "99",
74 .reg_rules = {
75 ATH9K_2GHZ_CH01_11,
76 ATH9K_2GHZ_CH12_13,
77 ATH9K_5GHZ_NO_MIDBAND,
78 }
79};
80
81/* Can be used by 0x64 only */
Bob Copeland3a702e42009-03-30 22:30:29 -040082static const struct ieee80211_regdomain ath_world_regdom_64 = {
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -080083 .n_reg_rules = 3,
84 .alpha2 = "99",
85 .reg_rules = {
86 ATH9K_2GHZ_CH01_11,
87 ATH9K_5GHZ_NO_MIDBAND,
88 }
89};
90
91/* Can be used by 0x66 and 0x69 */
Bob Copeland3a702e42009-03-30 22:30:29 -040092static const struct ieee80211_regdomain ath_world_regdom_66_69 = {
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -080093 .n_reg_rules = 3,
94 .alpha2 = "99",
95 .reg_rules = {
96 ATH9K_2GHZ_CH01_11,
97 ATH9K_5GHZ_ALL,
98 }
99};
100
Senthil Balasubramanian34a0a202011-04-14 16:41:30 +0530101/* Can be used by 0x67, 0x68, 0x6A and 0x6C */
102static const struct ieee80211_regdomain ath_world_regdom_67_68_6A_6C = {
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800103 .n_reg_rules = 4,
104 .alpha2 = "99",
105 .reg_rules = {
106 ATH9K_2GHZ_CH01_11,
107 ATH9K_2GHZ_CH12_13,
108 ATH9K_5GHZ_ALL,
109 }
110};
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700111
Bob Copelandd0f48f92009-02-12 13:38:55 -0500112static inline bool is_wwr_sku(u16 regd)
113{
Christian Lamparter641eabb2010-02-07 16:01:55 +0100114 return ((regd & COUNTRY_ERD_FLAG) != COUNTRY_ERD_FLAG) &&
115 (((regd & WORLD_SKU_MASK) == WORLD_SKU_PREFIX) ||
116 (regd == WORLD));
Bob Copelandd0f48f92009-02-12 13:38:55 -0500117}
118
Bob Copeland3a702e42009-03-30 22:30:29 -0400119static u16 ath_regd_get_eepromRD(struct ath_regulatory *reg)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700120{
Bob Copelandc02cf372009-03-30 22:30:28 -0400121 return reg->current_rd & ~WORLDWIDE_ROAMING_FLAG;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700122}
123
Bob Copeland3a702e42009-03-30 22:30:29 -0400124bool ath_is_world_regd(struct ath_regulatory *reg)
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800125{
Bob Copeland3a702e42009-03-30 22:30:29 -0400126 return is_wwr_sku(ath_regd_get_eepromRD(reg));
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800127}
Bob Copeland3a702e42009-03-30 22:30:29 -0400128EXPORT_SYMBOL(ath_is_world_regd);
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800129
Bob Copelande3bb2492009-03-30 22:30:30 -0400130static const struct ieee80211_regdomain *ath_default_world_regdomain(void)
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800131{
132 /* this is the most restrictive */
Bob Copeland3a702e42009-03-30 22:30:29 -0400133 return &ath_world_regdom_64;
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800134}
135
Bob Copelande3bb2492009-03-30 22:30:30 -0400136static const struct
Bob Copeland3a702e42009-03-30 22:30:29 -0400137ieee80211_regdomain *ath_world_regdomain(struct ath_regulatory *reg)
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800138{
Bob Copelandc02cf372009-03-30 22:30:28 -0400139 switch (reg->regpair->regDmnEnum) {
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800140 case 0x60:
141 case 0x61:
142 case 0x62:
Bob Copeland3a702e42009-03-30 22:30:29 -0400143 return &ath_world_regdom_60_61_62;
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800144 case 0x63:
145 case 0x65:
Bob Copeland3a702e42009-03-30 22:30:29 -0400146 return &ath_world_regdom_63_65;
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800147 case 0x64:
Bob Copeland3a702e42009-03-30 22:30:29 -0400148 return &ath_world_regdom_64;
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800149 case 0x66:
150 case 0x69:
Bob Copeland3a702e42009-03-30 22:30:29 -0400151 return &ath_world_regdom_66_69;
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800152 case 0x67:
153 case 0x68:
154 case 0x6A:
Senthil Balasubramanian34a0a202011-04-14 16:41:30 +0530155 case 0x6C:
156 return &ath_world_regdom_67_68_6A_6C;
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800157 default:
158 WARN_ON(1);
Bob Copeland3a702e42009-03-30 22:30:29 -0400159 return ath_default_world_regdomain();
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800160 }
161}
162
Bruno Randolf5719efd2011-01-25 13:15:33 +0900163bool ath_is_49ghz_allowed(u16 regdomain)
164{
165 /* possibly more */
166 return regdomain == MKK9_MKKC;
167}
168EXPORT_SYMBOL(ath_is_49ghz_allowed);
169
Luis R. Rodriguez547e4c22009-01-28 12:17:48 -0800170/* Frequency is one where radar detection is required */
Bob Copeland3a702e42009-03-30 22:30:29 -0400171static bool ath_is_radar_freq(u16 center_freq)
Luis R. Rodriguez547e4c22009-01-28 12:17:48 -0800172{
173 return (center_freq >= 5260 && center_freq <= 5700);
174}
175
Luis R. Rodriguez7519a8f2009-01-28 12:17:49 -0800176/*
Luis R. Rodriguez84540862009-02-21 00:20:40 -0500177 * N.B: These exception rules do not apply radar freqs.
178 *
179 * - We enable adhoc (or beaconing) if allowed by 11d
180 * - We enable active scan if the channel is allowed by 11d
181 * - If no country IE has been processed and a we determine we have
182 * received a beacon on a channel we can enable active scan and
183 * adhoc (or beaconing).
Luis R. Rodriguez7519a8f2009-01-28 12:17:49 -0800184 */
Luis R. Rodriguez6b2b2ff2009-03-30 22:30:34 -0400185static void
186ath_reg_apply_beaconing_flags(struct wiphy *wiphy,
187 enum nl80211_reg_initiator initiator)
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800188{
Luis R. Rodriguez84540862009-02-21 00:20:40 -0500189 enum ieee80211_band band;
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800190 struct ieee80211_supported_band *sband;
191 const struct ieee80211_reg_rule *reg_rule;
192 struct ieee80211_channel *ch;
193 unsigned int i;
194 u32 bandwidth = 0;
195 int r;
196
Luis R. Rodriguez84540862009-02-21 00:20:40 -0500197 for (band = 0; band < IEEE80211_NUM_BANDS; band++) {
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800198
Luis R. Rodriguez84540862009-02-21 00:20:40 -0500199 if (!wiphy->bands[band])
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800200 continue;
Luis R. Rodriguez84540862009-02-21 00:20:40 -0500201
202 sband = wiphy->bands[band];
203
204 for (i = 0; i < sband->n_channels; i++) {
205
206 ch = &sband->channels[i];
207
Bob Copeland3a702e42009-03-30 22:30:29 -0400208 if (ath_is_radar_freq(ch->center_freq) ||
Luis R. Rodriguez84540862009-02-21 00:20:40 -0500209 (ch->flags & IEEE80211_CHAN_RADAR))
210 continue;
211
Luis R. Rodriguez7db90f42009-03-09 22:07:41 -0400212 if (initiator == NL80211_REGDOM_SET_BY_COUNTRY_IE) {
Luis R. Rodriguez038659e2009-05-02 00:37:17 -0400213 r = freq_reg_info(wiphy,
214 ch->center_freq,
215 bandwidth,
216 &reg_rule);
Luis R. Rodriguez84540862009-02-21 00:20:40 -0500217 if (r)
218 continue;
219 /*
220 * If 11d had a rule for this channel ensure
221 * we enable adhoc/beaconing if it allows us to
222 * use it. Note that we would have disabled it
223 * by applying our static world regdomain by
224 * default during init, prior to calling our
225 * regulatory_hint().
226 */
227 if (!(reg_rule->flags &
228 NL80211_RRF_NO_IBSS))
229 ch->flags &=
230 ~IEEE80211_CHAN_NO_IBSS;
231 if (!(reg_rule->flags &
232 NL80211_RRF_PASSIVE_SCAN))
233 ch->flags &=
234 ~IEEE80211_CHAN_PASSIVE_SCAN;
235 } else {
236 if (ch->beacon_found)
237 ch->flags &= ~(IEEE80211_CHAN_NO_IBSS |
238 IEEE80211_CHAN_PASSIVE_SCAN);
239 }
240 }
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800241 }
Luis R. Rodriguez84540862009-02-21 00:20:40 -0500242
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800243}
244
245/* Allows active scan scan on Ch 12 and 13 */
Luis R. Rodriguez6b2b2ff2009-03-30 22:30:34 -0400246static void
247ath_reg_apply_active_scan_flags(struct wiphy *wiphy,
248 enum nl80211_reg_initiator initiator)
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800249{
250 struct ieee80211_supported_band *sband;
251 struct ieee80211_channel *ch;
252 const struct ieee80211_reg_rule *reg_rule;
253 u32 bandwidth = 0;
254 int r;
255
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800256 sband = wiphy->bands[IEEE80211_BAND_2GHZ];
Helmut Schaaa59be082011-11-08 14:01:13 +0100257 if (!sband)
258 return;
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800259
Luis R. Rodriguez84540862009-02-21 00:20:40 -0500260 /*
261 * If no country IE has been received always enable active scan
262 * on these channels. This is only done for specific regulatory SKUs
263 */
Luis R. Rodriguez7db90f42009-03-09 22:07:41 -0400264 if (initiator != NL80211_REGDOM_SET_BY_COUNTRY_IE) {
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800265 ch = &sband->channels[11]; /* CH 12 */
266 if (ch->flags & IEEE80211_CHAN_PASSIVE_SCAN)
267 ch->flags &= ~IEEE80211_CHAN_PASSIVE_SCAN;
268 ch = &sband->channels[12]; /* CH 13 */
269 if (ch->flags & IEEE80211_CHAN_PASSIVE_SCAN)
270 ch->flags &= ~IEEE80211_CHAN_PASSIVE_SCAN;
271 return;
272 }
273
Luis R. Rodriguez84540862009-02-21 00:20:40 -0500274 /*
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300275 * If a country IE has been received check its rule for this
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800276 * channel first before enabling active scan. The passive scan
Luis R. Rodriguez84540862009-02-21 00:20:40 -0500277 * would have been enforced by the initial processing of our
278 * custom regulatory domain.
279 */
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800280
281 ch = &sband->channels[11]; /* CH 12 */
Luis R. Rodriguez038659e2009-05-02 00:37:17 -0400282 r = freq_reg_info(wiphy, ch->center_freq, bandwidth, &reg_rule);
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800283 if (!r) {
284 if (!(reg_rule->flags & NL80211_RRF_PASSIVE_SCAN))
285 if (ch->flags & IEEE80211_CHAN_PASSIVE_SCAN)
286 ch->flags &= ~IEEE80211_CHAN_PASSIVE_SCAN;
287 }
288
289 ch = &sband->channels[12]; /* CH 13 */
Luis R. Rodriguez038659e2009-05-02 00:37:17 -0400290 r = freq_reg_info(wiphy, ch->center_freq, bandwidth, &reg_rule);
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800291 if (!r) {
292 if (!(reg_rule->flags & NL80211_RRF_PASSIVE_SCAN))
293 if (ch->flags & IEEE80211_CHAN_PASSIVE_SCAN)
294 ch->flags &= ~IEEE80211_CHAN_PASSIVE_SCAN;
295 }
296}
297
298/* Always apply Radar/DFS rules on freq range 5260 MHz - 5700 MHz */
Bob Copelande3bb2492009-03-30 22:30:30 -0400299static void ath_reg_apply_radar_flags(struct wiphy *wiphy)
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800300{
301 struct ieee80211_supported_band *sband;
302 struct ieee80211_channel *ch;
303 unsigned int i;
304
305 if (!wiphy->bands[IEEE80211_BAND_5GHZ])
306 return;
307
308 sband = wiphy->bands[IEEE80211_BAND_5GHZ];
309
310 for (i = 0; i < sband->n_channels; i++) {
311 ch = &sband->channels[i];
Bob Copeland3a702e42009-03-30 22:30:29 -0400312 if (!ath_is_radar_freq(ch->center_freq))
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800313 continue;
314 /* We always enable radar detection/DFS on this
315 * frequency range. Additionally we also apply on
316 * this frequency range:
317 * - If STA mode does not yet have DFS supports disable
318 * active scanning
319 * - If adhoc mode does not support DFS yet then
320 * disable adhoc in the frequency.
321 * - If AP mode does not yet support radar detection/DFS
322 * do not allow AP mode
323 */
324 if (!(ch->flags & IEEE80211_CHAN_DISABLED))
325 ch->flags |= IEEE80211_CHAN_RADAR |
326 IEEE80211_CHAN_NO_IBSS |
327 IEEE80211_CHAN_PASSIVE_SCAN;
328 }
329}
330
Bob Copelande3bb2492009-03-30 22:30:30 -0400331static void ath_reg_apply_world_flags(struct wiphy *wiphy,
Luis R. Rodriguez6b2b2ff2009-03-30 22:30:34 -0400332 enum nl80211_reg_initiator initiator,
333 struct ath_regulatory *reg)
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800334{
Bob Copelandc02cf372009-03-30 22:30:28 -0400335 switch (reg->regpair->regDmnEnum) {
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800336 case 0x60:
337 case 0x63:
338 case 0x66:
339 case 0x67:
Luis R. Rodriguez2290a9c2011-04-14 14:55:36 -0700340 case 0x6C:
Bob Copeland3a702e42009-03-30 22:30:29 -0400341 ath_reg_apply_beaconing_flags(wiphy, initiator);
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800342 break;
343 case 0x68:
Bob Copeland3a702e42009-03-30 22:30:29 -0400344 ath_reg_apply_beaconing_flags(wiphy, initiator);
345 ath_reg_apply_active_scan_flags(wiphy, initiator);
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800346 break;
347 }
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800348}
349
Bob Copeland3a702e42009-03-30 22:30:29 -0400350int ath_reg_notifier_apply(struct wiphy *wiphy,
Luis R. Rodriguez6b2b2ff2009-03-30 22:30:34 -0400351 struct regulatory_request *request,
352 struct ath_regulatory *reg)
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800353{
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800354 /* We always apply this */
Bob Copeland3a702e42009-03-30 22:30:29 -0400355 ath_reg_apply_radar_flags(wiphy);
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800356
Luis R. Rodriguez931299c2010-12-15 19:24:12 -0800357 /*
358 * This would happen when we have sent a custom regulatory request
359 * a world regulatory domain and the scheduler hasn't yet processed
360 * any pending requests in the queue.
361 */
362 if (!request)
363 return 0;
364
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800365 switch (request->initiator) {
Luis R. Rodriguez7db90f42009-03-09 22:07:41 -0400366 case NL80211_REGDOM_SET_BY_DRIVER:
367 case NL80211_REGDOM_SET_BY_CORE:
368 case NL80211_REGDOM_SET_BY_USER:
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800369 break;
Luis R. Rodriguez7db90f42009-03-09 22:07:41 -0400370 case NL80211_REGDOM_SET_BY_COUNTRY_IE:
Bob Copeland3a702e42009-03-30 22:30:29 -0400371 if (ath_is_world_regd(reg))
372 ath_reg_apply_world_flags(wiphy, request->initiator,
373 reg);
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800374 break;
375 }
376
377 return 0;
378}
Bob Copeland3a702e42009-03-30 22:30:29 -0400379EXPORT_SYMBOL(ath_reg_notifier_apply);
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800380
Bob Copelande3bb2492009-03-30 22:30:30 -0400381static bool ath_regd_is_eeprom_valid(struct ath_regulatory *reg)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700382{
Luis de Bethencourtcfcfe442010-03-30 16:44:33 +0100383 u16 rd = ath_regd_get_eepromRD(reg);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700384 int i;
385
386 if (rd & COUNTRY_ERD_FLAG) {
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800387 /* EEPROM value is a country code */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700388 u16 cc = rd & ~COUNTRY_ERD_FLAG;
Luis R. Rodrigueze03e5ffd2009-06-02 16:30:56 -0400389 printk(KERN_DEBUG
390 "ath: EEPROM indicates we should expect "
391 "a country code\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700392 for (i = 0; i < ARRAY_SIZE(allCountries); i++)
393 if (allCountries[i].countryCode == cc)
394 return true;
395 } else {
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800396 /* EEPROM value is a regpair value */
Luis R. Rodrigueze03e5ffd2009-06-02 16:30:56 -0400397 if (rd != CTRY_DEFAULT)
398 printk(KERN_DEBUG "ath: EEPROM indicates we "
399 "should expect a direct regpair map\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700400 for (i = 0; i < ARRAY_SIZE(regDomainPairs); i++)
401 if (regDomainPairs[i].regDmnEnum == rd)
402 return true;
403 }
Bob Copelandc02cf372009-03-30 22:30:28 -0400404 printk(KERN_DEBUG
Bob Copeland3a702e42009-03-30 22:30:29 -0400405 "ath: invalid regulatory domain/country code 0x%x\n", rd);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700406 return false;
407}
408
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800409/* EEPROM country code to regpair mapping */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700410static struct country_code_to_enum_rd*
Bob Copeland3a702e42009-03-30 22:30:29 -0400411ath_regd_find_country(u16 countryCode)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700412{
413 int i;
414
415 for (i = 0; i < ARRAY_SIZE(allCountries); i++) {
416 if (allCountries[i].countryCode == countryCode)
417 return &allCountries[i];
418 }
419 return NULL;
420}
421
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800422/* EEPROM rd code to regpair mapping */
423static struct country_code_to_enum_rd*
Bob Copeland3a702e42009-03-30 22:30:29 -0400424ath_regd_find_country_by_rd(int regdmn)
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800425{
426 int i;
427
428 for (i = 0; i < ARRAY_SIZE(allCountries); i++) {
429 if (allCountries[i].regDmnEnum == regdmn)
430 return &allCountries[i];
431 }
432 return NULL;
433}
434
435/* Returns the map of the EEPROM set RD to a country code */
Bob Copeland3a702e42009-03-30 22:30:29 -0400436static u16 ath_regd_get_default_country(u16 rd)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700437{
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700438 if (rd & COUNTRY_ERD_FLAG) {
439 struct country_code_to_enum_rd *country = NULL;
440 u16 cc = rd & ~COUNTRY_ERD_FLAG;
441
Bob Copeland3a702e42009-03-30 22:30:29 -0400442 country = ath_regd_find_country(cc);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700443 if (country != NULL)
444 return cc;
445 }
446
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700447 return CTRY_DEFAULT;
448}
449
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800450static struct reg_dmn_pair_mapping*
Bob Copeland3a702e42009-03-30 22:30:29 -0400451ath_get_regpair(int regdmn)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700452{
453 int i;
454
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800455 if (regdmn == NO_ENUMRD)
456 return NULL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700457 for (i = 0; i < ARRAY_SIZE(regDomainPairs); i++) {
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800458 if (regDomainPairs[i].regDmnEnum == regdmn)
459 return &regDomainPairs[i];
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700460 }
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800461 return NULL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700462}
463
Luis R. Rodriguez6b2b2ff2009-03-30 22:30:34 -0400464static int
465ath_regd_init_wiphy(struct ath_regulatory *reg,
466 struct wiphy *wiphy,
467 int (*reg_notifier)(struct wiphy *wiphy,
Bob Copelande3bb2492009-03-30 22:30:30 -0400468 struct regulatory_request *request))
469{
470 const struct ieee80211_regdomain *regd;
471
472 wiphy->reg_notifier = reg_notifier;
Johannes Berg5be83de2009-11-19 00:56:28 +0100473 wiphy->flags |= WIPHY_FLAG_STRICT_REGULATORY;
Bob Copelande3bb2492009-03-30 22:30:30 -0400474
475 if (ath_is_world_regd(reg)) {
476 /*
477 * Anything applied here (prior to wiphy registration) gets
478 * saved on the wiphy orig_* parameters
479 */
480 regd = ath_world_regdomain(reg);
Johannes Berg5be83de2009-11-19 00:56:28 +0100481 wiphy->flags |= WIPHY_FLAG_CUSTOM_REGULATORY;
Bob Copelande3bb2492009-03-30 22:30:30 -0400482 } else {
483 /*
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300484 * This gets applied in the case of the absence of CRDA,
Bob Copelande3bb2492009-03-30 22:30:30 -0400485 * it's our own custom world regulatory domain, similar to
486 * cfg80211's but we enable passive scanning.
487 */
488 regd = ath_default_world_regdomain();
489 }
490 wiphy_apply_custom_regulatory(wiphy, regd);
491 ath_reg_apply_radar_flags(wiphy);
492 ath_reg_apply_world_flags(wiphy, NL80211_REGDOM_SET_BY_DRIVER, reg);
493 return 0;
494}
495
Luis R. Rodriguez5d2214a2009-07-20 08:32:47 -0700496/*
497 * Some users have reported their EEPROM programmed with
498 * 0x8000 set, this is not a supported regulatory domain
499 * but since we have more than one user with it we need
500 * a solution for them. We default to 0x64, which is the
501 * default Atheros world regulatory domain.
502 */
503static void ath_regd_sanitize(struct ath_regulatory *reg)
504{
505 if (reg->current_rd != COUNTRY_ERD_FLAG)
506 return;
507 printk(KERN_DEBUG "ath: EEPROM regdomain sanitized\n");
508 reg->current_rd = 0x64;
509}
510
Luis R. Rodriguez43fcb432011-12-08 23:59:23 +0530511static int __ath_regd_init(struct ath_regulatory *reg)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700512{
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700513 struct country_code_to_enum_rd *country = NULL;
Bob Copelande775aaf2009-02-12 13:38:54 -0500514 u16 regdmn;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700515
Luis R. Rodrigueze03e5ffd2009-06-02 16:30:56 -0400516 if (!reg)
517 return -EINVAL;
518
Luis R. Rodriguez5d2214a2009-07-20 08:32:47 -0700519 ath_regd_sanitize(reg);
520
Luis R. Rodrigueze03e5ffd2009-06-02 16:30:56 -0400521 printk(KERN_DEBUG "ath: EEPROM regdomain: 0x%0x\n", reg->current_rd);
522
Bob Copeland3a702e42009-03-30 22:30:29 -0400523 if (!ath_regd_is_eeprom_valid(reg)) {
Luis R. Rodriguez85efc862009-04-13 21:41:46 -0400524 printk(KERN_ERR "ath: Invalid EEPROM contents\n");
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800525 return -EINVAL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700526 }
527
Bob Copeland3a702e42009-03-30 22:30:29 -0400528 regdmn = ath_regd_get_eepromRD(reg);
529 reg->country_code = ath_regd_get_default_country(regdmn);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700530
Bob Copelandc02cf372009-03-30 22:30:28 -0400531 if (reg->country_code == CTRY_DEFAULT &&
Luis R. Rodrigueze03e5ffd2009-06-02 16:30:56 -0400532 regdmn == CTRY_DEFAULT) {
533 printk(KERN_DEBUG "ath: EEPROM indicates default "
534 "country code should be used\n");
Bob Copelandc02cf372009-03-30 22:30:28 -0400535 reg->country_code = CTRY_UNITED_STATES;
Luis R. Rodrigueze03e5ffd2009-06-02 16:30:56 -0400536 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700537
Bob Copelandc02cf372009-03-30 22:30:28 -0400538 if (reg->country_code == CTRY_DEFAULT) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700539 country = NULL;
540 } else {
Luis R. Rodrigueze03e5ffd2009-06-02 16:30:56 -0400541 printk(KERN_DEBUG "ath: doing EEPROM country->regdmn "
542 "map search\n");
Bob Copeland3a702e42009-03-30 22:30:29 -0400543 country = ath_regd_find_country(reg->country_code);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700544 if (country == NULL) {
Bob Copelandc02cf372009-03-30 22:30:28 -0400545 printk(KERN_DEBUG
Luis R. Rodrigueze03e5ffd2009-06-02 16:30:56 -0400546 "ath: no valid country maps found for "
547 "country code: 0x%0x\n",
Bob Copelandc02cf372009-03-30 22:30:28 -0400548 reg->country_code);
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800549 return -EINVAL;
Luis R. Rodrigueze03e5ffd2009-06-02 16:30:56 -0400550 } else {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700551 regdmn = country->regDmnEnum;
Luis R. Rodrigueze03e5ffd2009-06-02 16:30:56 -0400552 printk(KERN_DEBUG "ath: country maps to "
553 "regdmn code: 0x%0x\n",
554 regdmn);
555 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700556 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700557
Bob Copeland3a702e42009-03-30 22:30:29 -0400558 reg->regpair = ath_get_regpair(regdmn);
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800559
Bob Copelandc02cf372009-03-30 22:30:28 -0400560 if (!reg->regpair) {
Bob Copeland3a702e42009-03-30 22:30:29 -0400561 printk(KERN_DEBUG "ath: "
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800562 "No regulatory domain pair found, cannot continue\n");
563 return -EINVAL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700564 }
565
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800566 if (!country)
Bob Copeland3a702e42009-03-30 22:30:29 -0400567 country = ath_regd_find_country_by_rd(regdmn);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700568
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800569 if (country) {
Bob Copelandc02cf372009-03-30 22:30:28 -0400570 reg->alpha2[0] = country->isoName[0];
571 reg->alpha2[1] = country->isoName[1];
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800572 } else {
Bob Copelandc02cf372009-03-30 22:30:28 -0400573 reg->alpha2[0] = '0';
574 reg->alpha2[1] = '0';
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800575 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700576
Bob Copeland3a702e42009-03-30 22:30:29 -0400577 printk(KERN_DEBUG "ath: Country alpha2 being used: %c%c\n",
Bob Copelandc02cf372009-03-30 22:30:28 -0400578 reg->alpha2[0], reg->alpha2[1]);
Luis R. Rodrigueze03e5ffd2009-06-02 16:30:56 -0400579 printk(KERN_DEBUG "ath: Regpair used: 0x%0x\n",
Bob Copelandc02cf372009-03-30 22:30:28 -0400580 reg->regpair->regDmnEnum);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700581
Luis R. Rodriguez43fcb432011-12-08 23:59:23 +0530582 return 0;
583}
584
585int
586ath_regd_init(struct ath_regulatory *reg,
587 struct wiphy *wiphy,
588 int (*reg_notifier)(struct wiphy *wiphy,
589 struct regulatory_request *request))
590{
591 int r;
592
593 r = __ath_regd_init(reg);
594 if (r)
595 return r;
596
Bob Copelande3bb2492009-03-30 22:30:30 -0400597 ath_regd_init_wiphy(reg, wiphy, reg_notifier);
Luis R. Rodriguez43fcb432011-12-08 23:59:23 +0530598
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800599 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700600}
Bob Copeland3a702e42009-03-30 22:30:29 -0400601EXPORT_SYMBOL(ath_regd_init);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700602
Bob Copeland3a702e42009-03-30 22:30:29 -0400603u32 ath_regd_get_band_ctl(struct ath_regulatory *reg,
604 enum ieee80211_band band)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700605{
Bob Copelandc02cf372009-03-30 22:30:28 -0400606 if (!reg->regpair ||
607 (reg->country_code == CTRY_DEFAULT &&
Bob Copeland3a702e42009-03-30 22:30:29 -0400608 is_wwr_sku(ath_regd_get_eepromRD(reg)))) {
Bob Copelandfc2ada32009-03-30 22:30:27 -0400609 return SD_NO_CTL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700610 }
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800611
Bob Copelandfc2ada32009-03-30 22:30:27 -0400612 switch (band) {
613 case IEEE80211_BAND_2GHZ:
Bob Copelandc02cf372009-03-30 22:30:28 -0400614 return reg->regpair->reg_2ghz_ctl;
Bob Copelandfc2ada32009-03-30 22:30:27 -0400615 case IEEE80211_BAND_5GHZ:
Bob Copelandc02cf372009-03-30 22:30:28 -0400616 return reg->regpair->reg_5ghz_ctl;
Bob Copelandfc2ada32009-03-30 22:30:27 -0400617 default:
618 return NO_CTL;
619 }
Bob Copelandfc2ada32009-03-30 22:30:27 -0400620}
Bob Copeland3a702e42009-03-30 22:30:29 -0400621EXPORT_SYMBOL(ath_regd_get_band_ctl);