blob: d5c23328aef172b392cc4595cc85864cdbd855ff [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>
18#include <linux/slab.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
101/* Can be used by 0x67, 0x6A and 0x68 */
Bob Copeland3a702e42009-03-30 22:30:29 -0400102static const struct ieee80211_regdomain ath_world_regdom_67_68_6A = {
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:
Bob Copeland3a702e42009-03-30 22:30:29 -0400155 return &ath_world_regdom_67_68_6A;
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800156 default:
157 WARN_ON(1);
Bob Copeland3a702e42009-03-30 22:30:29 -0400158 return ath_default_world_regdomain();
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800159 }
160}
161
Luis R. Rodriguez547e4c22009-01-28 12:17:48 -0800162/* Frequency is one where radar detection is required */
Bob Copeland3a702e42009-03-30 22:30:29 -0400163static bool ath_is_radar_freq(u16 center_freq)
Luis R. Rodriguez547e4c22009-01-28 12:17:48 -0800164{
165 return (center_freq >= 5260 && center_freq <= 5700);
166}
167
Luis R. Rodriguez7519a8f2009-01-28 12:17:49 -0800168/*
Luis R. Rodriguez84540862009-02-21 00:20:40 -0500169 * N.B: These exception rules do not apply radar freqs.
170 *
171 * - We enable adhoc (or beaconing) if allowed by 11d
172 * - We enable active scan if the channel is allowed by 11d
173 * - If no country IE has been processed and a we determine we have
174 * received a beacon on a channel we can enable active scan and
175 * adhoc (or beaconing).
Luis R. Rodriguez7519a8f2009-01-28 12:17:49 -0800176 */
Luis R. Rodriguez6b2b2ff2009-03-30 22:30:34 -0400177static void
178ath_reg_apply_beaconing_flags(struct wiphy *wiphy,
179 enum nl80211_reg_initiator initiator)
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800180{
Luis R. Rodriguez84540862009-02-21 00:20:40 -0500181 enum ieee80211_band band;
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800182 struct ieee80211_supported_band *sband;
183 const struct ieee80211_reg_rule *reg_rule;
184 struct ieee80211_channel *ch;
185 unsigned int i;
186 u32 bandwidth = 0;
187 int r;
188
Luis R. Rodriguez84540862009-02-21 00:20:40 -0500189 for (band = 0; band < IEEE80211_NUM_BANDS; band++) {
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800190
Luis R. Rodriguez84540862009-02-21 00:20:40 -0500191 if (!wiphy->bands[band])
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800192 continue;
Luis R. Rodriguez84540862009-02-21 00:20:40 -0500193
194 sband = wiphy->bands[band];
195
196 for (i = 0; i < sband->n_channels; i++) {
197
198 ch = &sband->channels[i];
199
Bob Copeland3a702e42009-03-30 22:30:29 -0400200 if (ath_is_radar_freq(ch->center_freq) ||
Luis R. Rodriguez84540862009-02-21 00:20:40 -0500201 (ch->flags & IEEE80211_CHAN_RADAR))
202 continue;
203
Luis R. Rodriguez7db90f42009-03-09 22:07:41 -0400204 if (initiator == NL80211_REGDOM_SET_BY_COUNTRY_IE) {
Luis R. Rodriguez038659e2009-05-02 00:37:17 -0400205 r = freq_reg_info(wiphy,
206 ch->center_freq,
207 bandwidth,
208 &reg_rule);
Luis R. Rodriguez84540862009-02-21 00:20:40 -0500209 if (r)
210 continue;
211 /*
212 * If 11d had a rule for this channel ensure
213 * we enable adhoc/beaconing if it allows us to
214 * use it. Note that we would have disabled it
215 * by applying our static world regdomain by
216 * default during init, prior to calling our
217 * regulatory_hint().
218 */
219 if (!(reg_rule->flags &
220 NL80211_RRF_NO_IBSS))
221 ch->flags &=
222 ~IEEE80211_CHAN_NO_IBSS;
223 if (!(reg_rule->flags &
224 NL80211_RRF_PASSIVE_SCAN))
225 ch->flags &=
226 ~IEEE80211_CHAN_PASSIVE_SCAN;
227 } else {
228 if (ch->beacon_found)
229 ch->flags &= ~(IEEE80211_CHAN_NO_IBSS |
230 IEEE80211_CHAN_PASSIVE_SCAN);
231 }
232 }
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800233 }
Luis R. Rodriguez84540862009-02-21 00:20:40 -0500234
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800235}
236
237/* Allows active scan scan on Ch 12 and 13 */
Luis R. Rodriguez6b2b2ff2009-03-30 22:30:34 -0400238static void
239ath_reg_apply_active_scan_flags(struct wiphy *wiphy,
240 enum nl80211_reg_initiator initiator)
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800241{
242 struct ieee80211_supported_band *sband;
243 struct ieee80211_channel *ch;
244 const struct ieee80211_reg_rule *reg_rule;
245 u32 bandwidth = 0;
246 int r;
247
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800248 sband = wiphy->bands[IEEE80211_BAND_2GHZ];
249
Luis R. Rodriguez84540862009-02-21 00:20:40 -0500250 /*
251 * If no country IE has been received always enable active scan
252 * on these channels. This is only done for specific regulatory SKUs
253 */
Luis R. Rodriguez7db90f42009-03-09 22:07:41 -0400254 if (initiator != NL80211_REGDOM_SET_BY_COUNTRY_IE) {
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800255 ch = &sband->channels[11]; /* CH 12 */
256 if (ch->flags & IEEE80211_CHAN_PASSIVE_SCAN)
257 ch->flags &= ~IEEE80211_CHAN_PASSIVE_SCAN;
258 ch = &sband->channels[12]; /* CH 13 */
259 if (ch->flags & IEEE80211_CHAN_PASSIVE_SCAN)
260 ch->flags &= ~IEEE80211_CHAN_PASSIVE_SCAN;
261 return;
262 }
263
Luis R. Rodriguez84540862009-02-21 00:20:40 -0500264 /*
265 * If a country IE has been recieved check its rule for this
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800266 * channel first before enabling active scan. The passive scan
Luis R. Rodriguez84540862009-02-21 00:20:40 -0500267 * would have been enforced by the initial processing of our
268 * custom regulatory domain.
269 */
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800270
271 ch = &sband->channels[11]; /* CH 12 */
Luis R. Rodriguez038659e2009-05-02 00:37:17 -0400272 r = freq_reg_info(wiphy, ch->center_freq, bandwidth, &reg_rule);
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800273 if (!r) {
274 if (!(reg_rule->flags & NL80211_RRF_PASSIVE_SCAN))
275 if (ch->flags & IEEE80211_CHAN_PASSIVE_SCAN)
276 ch->flags &= ~IEEE80211_CHAN_PASSIVE_SCAN;
277 }
278
279 ch = &sband->channels[12]; /* CH 13 */
Luis R. Rodriguez038659e2009-05-02 00:37:17 -0400280 r = freq_reg_info(wiphy, ch->center_freq, bandwidth, &reg_rule);
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800281 if (!r) {
282 if (!(reg_rule->flags & NL80211_RRF_PASSIVE_SCAN))
283 if (ch->flags & IEEE80211_CHAN_PASSIVE_SCAN)
284 ch->flags &= ~IEEE80211_CHAN_PASSIVE_SCAN;
285 }
286}
287
288/* Always apply Radar/DFS rules on freq range 5260 MHz - 5700 MHz */
Bob Copelande3bb2492009-03-30 22:30:30 -0400289static void ath_reg_apply_radar_flags(struct wiphy *wiphy)
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800290{
291 struct ieee80211_supported_band *sband;
292 struct ieee80211_channel *ch;
293 unsigned int i;
294
295 if (!wiphy->bands[IEEE80211_BAND_5GHZ])
296 return;
297
298 sband = wiphy->bands[IEEE80211_BAND_5GHZ];
299
300 for (i = 0; i < sband->n_channels; i++) {
301 ch = &sband->channels[i];
Bob Copeland3a702e42009-03-30 22:30:29 -0400302 if (!ath_is_radar_freq(ch->center_freq))
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800303 continue;
304 /* We always enable radar detection/DFS on this
305 * frequency range. Additionally we also apply on
306 * this frequency range:
307 * - If STA mode does not yet have DFS supports disable
308 * active scanning
309 * - If adhoc mode does not support DFS yet then
310 * disable adhoc in the frequency.
311 * - If AP mode does not yet support radar detection/DFS
312 * do not allow AP mode
313 */
314 if (!(ch->flags & IEEE80211_CHAN_DISABLED))
315 ch->flags |= IEEE80211_CHAN_RADAR |
316 IEEE80211_CHAN_NO_IBSS |
317 IEEE80211_CHAN_PASSIVE_SCAN;
318 }
319}
320
Bob Copelande3bb2492009-03-30 22:30:30 -0400321static void ath_reg_apply_world_flags(struct wiphy *wiphy,
Luis R. Rodriguez6b2b2ff2009-03-30 22:30:34 -0400322 enum nl80211_reg_initiator initiator,
323 struct ath_regulatory *reg)
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800324{
Bob Copelandc02cf372009-03-30 22:30:28 -0400325 switch (reg->regpair->regDmnEnum) {
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800326 case 0x60:
327 case 0x63:
328 case 0x66:
329 case 0x67:
Bob Copeland3a702e42009-03-30 22:30:29 -0400330 ath_reg_apply_beaconing_flags(wiphy, initiator);
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800331 break;
332 case 0x68:
Bob Copeland3a702e42009-03-30 22:30:29 -0400333 ath_reg_apply_beaconing_flags(wiphy, initiator);
334 ath_reg_apply_active_scan_flags(wiphy, initiator);
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800335 break;
336 }
337 return;
338}
339
Bob Copeland3a702e42009-03-30 22:30:29 -0400340int ath_reg_notifier_apply(struct wiphy *wiphy,
Luis R. Rodriguez6b2b2ff2009-03-30 22:30:34 -0400341 struct regulatory_request *request,
342 struct ath_regulatory *reg)
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800343{
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800344 /* We always apply this */
Bob Copeland3a702e42009-03-30 22:30:29 -0400345 ath_reg_apply_radar_flags(wiphy);
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800346
347 switch (request->initiator) {
Luis R. Rodriguez7db90f42009-03-09 22:07:41 -0400348 case NL80211_REGDOM_SET_BY_DRIVER:
349 case NL80211_REGDOM_SET_BY_CORE:
350 case NL80211_REGDOM_SET_BY_USER:
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800351 break;
Luis R. Rodriguez7db90f42009-03-09 22:07:41 -0400352 case NL80211_REGDOM_SET_BY_COUNTRY_IE:
Bob Copeland3a702e42009-03-30 22:30:29 -0400353 if (ath_is_world_regd(reg))
354 ath_reg_apply_world_flags(wiphy, request->initiator,
355 reg);
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800356 break;
357 }
358
359 return 0;
360}
Bob Copeland3a702e42009-03-30 22:30:29 -0400361EXPORT_SYMBOL(ath_reg_notifier_apply);
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800362
Bob Copelande3bb2492009-03-30 22:30:30 -0400363static bool ath_regd_is_eeprom_valid(struct ath_regulatory *reg)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700364{
Luis de Bethencourtcfcfe442010-03-30 16:44:33 +0100365 u16 rd = ath_regd_get_eepromRD(reg);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700366 int i;
367
368 if (rd & COUNTRY_ERD_FLAG) {
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800369 /* EEPROM value is a country code */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700370 u16 cc = rd & ~COUNTRY_ERD_FLAG;
Luis R. Rodrigueze03e5ffd2009-06-02 16:30:56 -0400371 printk(KERN_DEBUG
372 "ath: EEPROM indicates we should expect "
373 "a country code\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700374 for (i = 0; i < ARRAY_SIZE(allCountries); i++)
375 if (allCountries[i].countryCode == cc)
376 return true;
377 } else {
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800378 /* EEPROM value is a regpair value */
Luis R. Rodrigueze03e5ffd2009-06-02 16:30:56 -0400379 if (rd != CTRY_DEFAULT)
380 printk(KERN_DEBUG "ath: EEPROM indicates we "
381 "should expect a direct regpair map\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700382 for (i = 0; i < ARRAY_SIZE(regDomainPairs); i++)
383 if (regDomainPairs[i].regDmnEnum == rd)
384 return true;
385 }
Bob Copelandc02cf372009-03-30 22:30:28 -0400386 printk(KERN_DEBUG
Bob Copeland3a702e42009-03-30 22:30:29 -0400387 "ath: invalid regulatory domain/country code 0x%x\n", rd);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700388 return false;
389}
390
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800391/* EEPROM country code to regpair mapping */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700392static struct country_code_to_enum_rd*
Bob Copeland3a702e42009-03-30 22:30:29 -0400393ath_regd_find_country(u16 countryCode)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700394{
395 int i;
396
397 for (i = 0; i < ARRAY_SIZE(allCountries); i++) {
398 if (allCountries[i].countryCode == countryCode)
399 return &allCountries[i];
400 }
401 return NULL;
402}
403
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800404/* EEPROM rd code to regpair mapping */
405static struct country_code_to_enum_rd*
Bob Copeland3a702e42009-03-30 22:30:29 -0400406ath_regd_find_country_by_rd(int regdmn)
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800407{
408 int i;
409
410 for (i = 0; i < ARRAY_SIZE(allCountries); i++) {
411 if (allCountries[i].regDmnEnum == regdmn)
412 return &allCountries[i];
413 }
414 return NULL;
415}
416
417/* Returns the map of the EEPROM set RD to a country code */
Bob Copeland3a702e42009-03-30 22:30:29 -0400418static u16 ath_regd_get_default_country(u16 rd)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700419{
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700420 if (rd & COUNTRY_ERD_FLAG) {
421 struct country_code_to_enum_rd *country = NULL;
422 u16 cc = rd & ~COUNTRY_ERD_FLAG;
423
Bob Copeland3a702e42009-03-30 22:30:29 -0400424 country = ath_regd_find_country(cc);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700425 if (country != NULL)
426 return cc;
427 }
428
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700429 return CTRY_DEFAULT;
430}
431
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800432static struct reg_dmn_pair_mapping*
Bob Copeland3a702e42009-03-30 22:30:29 -0400433ath_get_regpair(int regdmn)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700434{
435 int i;
436
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800437 if (regdmn == NO_ENUMRD)
438 return NULL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700439 for (i = 0; i < ARRAY_SIZE(regDomainPairs); i++) {
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800440 if (regDomainPairs[i].regDmnEnum == regdmn)
441 return &regDomainPairs[i];
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700442 }
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800443 return NULL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700444}
445
Luis R. Rodriguez6b2b2ff2009-03-30 22:30:34 -0400446static int
447ath_regd_init_wiphy(struct ath_regulatory *reg,
448 struct wiphy *wiphy,
449 int (*reg_notifier)(struct wiphy *wiphy,
Bob Copelande3bb2492009-03-30 22:30:30 -0400450 struct regulatory_request *request))
451{
452 const struct ieee80211_regdomain *regd;
453
454 wiphy->reg_notifier = reg_notifier;
Johannes Berg5be83de2009-11-19 00:56:28 +0100455 wiphy->flags |= WIPHY_FLAG_STRICT_REGULATORY;
Bob Copelande3bb2492009-03-30 22:30:30 -0400456
457 if (ath_is_world_regd(reg)) {
458 /*
459 * Anything applied here (prior to wiphy registration) gets
460 * saved on the wiphy orig_* parameters
461 */
462 regd = ath_world_regdomain(reg);
Johannes Berg5be83de2009-11-19 00:56:28 +0100463 wiphy->flags |= WIPHY_FLAG_CUSTOM_REGULATORY;
Bob Copelande3bb2492009-03-30 22:30:30 -0400464 } else {
465 /*
466 * This gets applied in the case of the absense of CRDA,
467 * it's our own custom world regulatory domain, similar to
468 * cfg80211's but we enable passive scanning.
469 */
470 regd = ath_default_world_regdomain();
471 }
472 wiphy_apply_custom_regulatory(wiphy, regd);
473 ath_reg_apply_radar_flags(wiphy);
474 ath_reg_apply_world_flags(wiphy, NL80211_REGDOM_SET_BY_DRIVER, reg);
475 return 0;
476}
477
Luis R. Rodriguez5d2214a2009-07-20 08:32:47 -0700478/*
479 * Some users have reported their EEPROM programmed with
480 * 0x8000 set, this is not a supported regulatory domain
481 * but since we have more than one user with it we need
482 * a solution for them. We default to 0x64, which is the
483 * default Atheros world regulatory domain.
484 */
485static void ath_regd_sanitize(struct ath_regulatory *reg)
486{
487 if (reg->current_rd != COUNTRY_ERD_FLAG)
488 return;
489 printk(KERN_DEBUG "ath: EEPROM regdomain sanitized\n");
490 reg->current_rd = 0x64;
491}
492
Luis R. Rodriguez6b2b2ff2009-03-30 22:30:34 -0400493int
494ath_regd_init(struct ath_regulatory *reg,
495 struct wiphy *wiphy,
496 int (*reg_notifier)(struct wiphy *wiphy,
497 struct regulatory_request *request))
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700498{
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700499 struct country_code_to_enum_rd *country = NULL;
Bob Copelande775aaf2009-02-12 13:38:54 -0500500 u16 regdmn;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700501
Luis R. Rodrigueze03e5ffd2009-06-02 16:30:56 -0400502 if (!reg)
503 return -EINVAL;
504
Luis R. Rodriguez5d2214a2009-07-20 08:32:47 -0700505 ath_regd_sanitize(reg);
506
Luis R. Rodrigueze03e5ffd2009-06-02 16:30:56 -0400507 printk(KERN_DEBUG "ath: EEPROM regdomain: 0x%0x\n", reg->current_rd);
508
Bob Copeland3a702e42009-03-30 22:30:29 -0400509 if (!ath_regd_is_eeprom_valid(reg)) {
Luis R. Rodriguez85efc862009-04-13 21:41:46 -0400510 printk(KERN_ERR "ath: Invalid EEPROM contents\n");
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800511 return -EINVAL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700512 }
513
Bob Copeland3a702e42009-03-30 22:30:29 -0400514 regdmn = ath_regd_get_eepromRD(reg);
515 reg->country_code = ath_regd_get_default_country(regdmn);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700516
Bob Copelandc02cf372009-03-30 22:30:28 -0400517 if (reg->country_code == CTRY_DEFAULT &&
Luis R. Rodrigueze03e5ffd2009-06-02 16:30:56 -0400518 regdmn == CTRY_DEFAULT) {
519 printk(KERN_DEBUG "ath: EEPROM indicates default "
520 "country code should be used\n");
Bob Copelandc02cf372009-03-30 22:30:28 -0400521 reg->country_code = CTRY_UNITED_STATES;
Luis R. Rodrigueze03e5ffd2009-06-02 16:30:56 -0400522 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700523
Bob Copelandc02cf372009-03-30 22:30:28 -0400524 if (reg->country_code == CTRY_DEFAULT) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700525 country = NULL;
526 } else {
Luis R. Rodrigueze03e5ffd2009-06-02 16:30:56 -0400527 printk(KERN_DEBUG "ath: doing EEPROM country->regdmn "
528 "map search\n");
Bob Copeland3a702e42009-03-30 22:30:29 -0400529 country = ath_regd_find_country(reg->country_code);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700530 if (country == NULL) {
Bob Copelandc02cf372009-03-30 22:30:28 -0400531 printk(KERN_DEBUG
Luis R. Rodrigueze03e5ffd2009-06-02 16:30:56 -0400532 "ath: no valid country maps found for "
533 "country code: 0x%0x\n",
Bob Copelandc02cf372009-03-30 22:30:28 -0400534 reg->country_code);
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800535 return -EINVAL;
Luis R. Rodrigueze03e5ffd2009-06-02 16:30:56 -0400536 } else {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700537 regdmn = country->regDmnEnum;
Luis R. Rodrigueze03e5ffd2009-06-02 16:30:56 -0400538 printk(KERN_DEBUG "ath: country maps to "
539 "regdmn code: 0x%0x\n",
540 regdmn);
541 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700542 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700543
Bob Copeland3a702e42009-03-30 22:30:29 -0400544 reg->regpair = ath_get_regpair(regdmn);
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800545
Bob Copelandc02cf372009-03-30 22:30:28 -0400546 if (!reg->regpair) {
Bob Copeland3a702e42009-03-30 22:30:29 -0400547 printk(KERN_DEBUG "ath: "
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800548 "No regulatory domain pair found, cannot continue\n");
549 return -EINVAL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700550 }
551
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800552 if (!country)
Bob Copeland3a702e42009-03-30 22:30:29 -0400553 country = ath_regd_find_country_by_rd(regdmn);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700554
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800555 if (country) {
Bob Copelandc02cf372009-03-30 22:30:28 -0400556 reg->alpha2[0] = country->isoName[0];
557 reg->alpha2[1] = country->isoName[1];
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800558 } else {
Bob Copelandc02cf372009-03-30 22:30:28 -0400559 reg->alpha2[0] = '0';
560 reg->alpha2[1] = '0';
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800561 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700562
Bob Copeland3a702e42009-03-30 22:30:29 -0400563 printk(KERN_DEBUG "ath: Country alpha2 being used: %c%c\n",
Bob Copelandc02cf372009-03-30 22:30:28 -0400564 reg->alpha2[0], reg->alpha2[1]);
Luis R. Rodrigueze03e5ffd2009-06-02 16:30:56 -0400565 printk(KERN_DEBUG "ath: Regpair used: 0x%0x\n",
Bob Copelandc02cf372009-03-30 22:30:28 -0400566 reg->regpair->regDmnEnum);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700567
Bob Copelande3bb2492009-03-30 22:30:30 -0400568 ath_regd_init_wiphy(reg, wiphy, reg_notifier);
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800569 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700570}
Bob Copeland3a702e42009-03-30 22:30:29 -0400571EXPORT_SYMBOL(ath_regd_init);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700572
Bob Copeland3a702e42009-03-30 22:30:29 -0400573u32 ath_regd_get_band_ctl(struct ath_regulatory *reg,
574 enum ieee80211_band band)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700575{
Bob Copelandc02cf372009-03-30 22:30:28 -0400576 if (!reg->regpair ||
577 (reg->country_code == CTRY_DEFAULT &&
Bob Copeland3a702e42009-03-30 22:30:29 -0400578 is_wwr_sku(ath_regd_get_eepromRD(reg)))) {
Bob Copelandfc2ada32009-03-30 22:30:27 -0400579 return SD_NO_CTL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700580 }
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800581
Bob Copelandfc2ada32009-03-30 22:30:27 -0400582 switch (band) {
583 case IEEE80211_BAND_2GHZ:
Bob Copelandc02cf372009-03-30 22:30:28 -0400584 return reg->regpair->reg_2ghz_ctl;
Bob Copelandfc2ada32009-03-30 22:30:27 -0400585 case IEEE80211_BAND_5GHZ:
Bob Copelandc02cf372009-03-30 22:30:28 -0400586 return reg->regpair->reg_5ghz_ctl;
Bob Copelandfc2ada32009-03-30 22:30:27 -0400587 default:
588 return NO_CTL;
589 }
Bob Copelandfc2ada32009-03-30 22:30:27 -0400590}
Bob Copeland3a702e42009-03-30 22:30:29 -0400591EXPORT_SYMBOL(ath_regd_get_band_ctl);