blob: ff0afc02f3ce8c74aa2de6e1c31f943bc3a1adda [file] [log] [blame]
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001/*
2 * Copyright (c) 2008 Atheros Communications Inc.
3 *
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>
Sujith394cf0a2009-02-09 13:26:54 +053019#include "ath9k.h"
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070020#include "regd_common.h"
21
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -080022/*
23 * This is a set of common rules used by our world regulatory domains.
24 * We have 12 world regulatory domains. To save space we consolidate
25 * the regulatory domains in 5 structures by frequency and change
26 * the flags on our reg_notifier() on a case by case basis.
27 */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070028
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -080029/* Only these channels all allow active scan on all world regulatory domains */
30#define ATH9K_2GHZ_CH01_11 REG_RULE(2412-10, 2462+10, 40, 0, 20, 0)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070031
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -080032/* We enable active scan on these a case by case basis by regulatory domain */
33#define ATH9K_2GHZ_CH12_13 REG_RULE(2467-10, 2472+10, 40, 0, 20,\
34 NL80211_RRF_PASSIVE_SCAN)
35#define ATH9K_2GHZ_CH14 REG_RULE(2484-10, 2484+10, 40, 0, 20,\
36 NL80211_RRF_PASSIVE_SCAN | NL80211_RRF_NO_OFDM)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070037
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -080038/* We allow IBSS on these on a case by case basis by regulatory domain */
39#define ATH9K_5GHZ_5150_5350 REG_RULE(5150-10, 5350+10, 40, 0, 30,\
40 NL80211_RRF_PASSIVE_SCAN | NL80211_RRF_NO_IBSS)
41#define ATH9K_5GHZ_5470_5850 REG_RULE(5470-10, 5850+10, 40, 0, 30,\
42 NL80211_RRF_PASSIVE_SCAN | NL80211_RRF_NO_IBSS)
43#define ATH9K_5GHZ_5725_5850 REG_RULE(5725-10, 5850+10, 40, 0, 30,\
44 NL80211_RRF_PASSIVE_SCAN | NL80211_RRF_NO_IBSS)
45
46#define ATH9K_2GHZ_ALL ATH9K_2GHZ_CH01_11, \
47 ATH9K_2GHZ_CH12_13, \
48 ATH9K_2GHZ_CH14
49
50#define ATH9K_5GHZ_ALL ATH9K_5GHZ_5150_5350, \
51 ATH9K_5GHZ_5470_5850
52/* This one skips what we call "mid band" */
53#define ATH9K_5GHZ_NO_MIDBAND ATH9K_5GHZ_5150_5350, \
54 ATH9K_5GHZ_5725_5850
55
56/* Can be used for:
57 * 0x60, 0x61, 0x62 */
58static const struct ieee80211_regdomain ath9k_world_regdom_60_61_62 = {
59 .n_reg_rules = 5,
60 .alpha2 = "99",
61 .reg_rules = {
62 ATH9K_2GHZ_ALL,
63 ATH9K_5GHZ_ALL,
64 }
65};
66
67/* Can be used by 0x63 and 0x65 */
68static const struct ieee80211_regdomain ath9k_world_regdom_63_65 = {
69 .n_reg_rules = 4,
70 .alpha2 = "99",
71 .reg_rules = {
72 ATH9K_2GHZ_CH01_11,
73 ATH9K_2GHZ_CH12_13,
74 ATH9K_5GHZ_NO_MIDBAND,
75 }
76};
77
78/* Can be used by 0x64 only */
79static const struct ieee80211_regdomain ath9k_world_regdom_64 = {
80 .n_reg_rules = 3,
81 .alpha2 = "99",
82 .reg_rules = {
83 ATH9K_2GHZ_CH01_11,
84 ATH9K_5GHZ_NO_MIDBAND,
85 }
86};
87
88/* Can be used by 0x66 and 0x69 */
89static const struct ieee80211_regdomain ath9k_world_regdom_66_69 = {
90 .n_reg_rules = 3,
91 .alpha2 = "99",
92 .reg_rules = {
93 ATH9K_2GHZ_CH01_11,
94 ATH9K_5GHZ_ALL,
95 }
96};
97
98/* Can be used by 0x67, 0x6A and 0x68 */
99static const struct ieee80211_regdomain ath9k_world_regdom_67_68_6A = {
100 .n_reg_rules = 4,
101 .alpha2 = "99",
102 .reg_rules = {
103 ATH9K_2GHZ_CH01_11,
104 ATH9K_2GHZ_CH12_13,
105 ATH9K_5GHZ_ALL,
106 }
107};
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700108
Bob Copelandd0f48f92009-02-12 13:38:55 -0500109static inline bool is_wwr_sku(u16 regd)
110{
111 return ((regd & WORLD_SKU_MASK) == WORLD_SKU_PREFIX) ||
112 (regd == WORLD);
113}
114
Sujithcbe61d82009-02-09 13:27:12 +0530115static u16 ath9k_regd_get_eepromRD(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700116{
Sujithd6bad492009-02-09 13:27:08 +0530117 return ah->regulatory.current_rd & ~WORLDWIDE_ROAMING_FLAG;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700118}
119
Sujithcbe61d82009-02-09 13:27:12 +0530120bool ath9k_is_world_regd(struct ath_hw *ah)
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800121{
Bob Copelandd0f48f92009-02-12 13:38:55 -0500122 return is_wwr_sku(ath9k_regd_get_eepromRD(ah));
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800123}
124
125const struct ieee80211_regdomain *ath9k_default_world_regdomain(void)
126{
127 /* this is the most restrictive */
128 return &ath9k_world_regdom_64;
129}
130
Sujithcbe61d82009-02-09 13:27:12 +0530131const struct ieee80211_regdomain *ath9k_world_regdomain(struct ath_hw *ah)
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800132{
Sujithd6bad492009-02-09 13:27:08 +0530133 switch (ah->regulatory.regpair->regDmnEnum) {
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800134 case 0x60:
135 case 0x61:
136 case 0x62:
137 return &ath9k_world_regdom_60_61_62;
138 case 0x63:
139 case 0x65:
140 return &ath9k_world_regdom_63_65;
141 case 0x64:
142 return &ath9k_world_regdom_64;
143 case 0x66:
144 case 0x69:
145 return &ath9k_world_regdom_66_69;
146 case 0x67:
147 case 0x68:
148 case 0x6A:
149 return &ath9k_world_regdom_67_68_6A;
150 default:
151 WARN_ON(1);
152 return ath9k_default_world_regdomain();
153 }
154}
155
Luis R. Rodriguez547e4c22009-01-28 12:17:48 -0800156/* Frequency is one where radar detection is required */
157static bool ath9k_is_radar_freq(u16 center_freq)
158{
159 return (center_freq >= 5260 && center_freq <= 5700);
160}
161
Luis R. Rodriguez7519a8f2009-01-28 12:17:49 -0800162/*
Luis R. Rodriguez84540862009-02-21 00:20:40 -0500163 * N.B: These exception rules do not apply radar freqs.
164 *
165 * - We enable adhoc (or beaconing) if allowed by 11d
166 * - We enable active scan if the channel is allowed by 11d
167 * - If no country IE has been processed and a we determine we have
168 * received a beacon on a channel we can enable active scan and
169 * adhoc (or beaconing).
Luis R. Rodriguez7519a8f2009-01-28 12:17:49 -0800170 */
Luis R. Rodriguez84540862009-02-21 00:20:40 -0500171static void ath9k_reg_apply_beaconing_flags(struct wiphy *wiphy,
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800172 enum reg_set_by setby)
173{
Luis R. Rodriguez84540862009-02-21 00:20:40 -0500174 enum ieee80211_band band;
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800175 struct ieee80211_supported_band *sband;
176 const struct ieee80211_reg_rule *reg_rule;
177 struct ieee80211_channel *ch;
178 unsigned int i;
179 u32 bandwidth = 0;
180 int r;
181
Luis R. Rodriguez84540862009-02-21 00:20:40 -0500182 for (band = 0; band < IEEE80211_NUM_BANDS; band++) {
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800183
Luis R. Rodriguez84540862009-02-21 00:20:40 -0500184 if (!wiphy->bands[band])
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800185 continue;
Luis R. Rodriguez84540862009-02-21 00:20:40 -0500186
187 sband = wiphy->bands[band];
188
189 for (i = 0; i < sband->n_channels; i++) {
190
191 ch = &sband->channels[i];
192
193 if (ath9k_is_radar_freq(ch->center_freq) ||
194 (ch->flags & IEEE80211_CHAN_RADAR))
195 continue;
196
197 if (setby == REGDOM_SET_BY_COUNTRY_IE) {
198 r = freq_reg_info(wiphy, ch->center_freq,
199 &bandwidth, &reg_rule);
200 if (r)
201 continue;
202 /*
203 * If 11d had a rule for this channel ensure
204 * we enable adhoc/beaconing if it allows us to
205 * use it. Note that we would have disabled it
206 * by applying our static world regdomain by
207 * default during init, prior to calling our
208 * regulatory_hint().
209 */
210 if (!(reg_rule->flags &
211 NL80211_RRF_NO_IBSS))
212 ch->flags &=
213 ~IEEE80211_CHAN_NO_IBSS;
214 if (!(reg_rule->flags &
215 NL80211_RRF_PASSIVE_SCAN))
216 ch->flags &=
217 ~IEEE80211_CHAN_PASSIVE_SCAN;
218 } else {
219 if (ch->beacon_found)
220 ch->flags &= ~(IEEE80211_CHAN_NO_IBSS |
221 IEEE80211_CHAN_PASSIVE_SCAN);
222 }
223 }
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800224 }
Luis R. Rodriguez84540862009-02-21 00:20:40 -0500225
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800226}
227
228/* Allows active scan scan on Ch 12 and 13 */
229static void ath9k_reg_apply_active_scan_flags(struct wiphy *wiphy,
230 enum reg_set_by setby)
231{
232 struct ieee80211_supported_band *sband;
233 struct ieee80211_channel *ch;
234 const struct ieee80211_reg_rule *reg_rule;
235 u32 bandwidth = 0;
236 int r;
237
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800238 sband = wiphy->bands[IEEE80211_BAND_2GHZ];
239
Luis R. Rodriguez84540862009-02-21 00:20:40 -0500240 /*
241 * If no country IE has been received always enable active scan
242 * on these channels. This is only done for specific regulatory SKUs
243 */
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800244 if (setby != REGDOM_SET_BY_COUNTRY_IE) {
245 ch = &sband->channels[11]; /* CH 12 */
246 if (ch->flags & IEEE80211_CHAN_PASSIVE_SCAN)
247 ch->flags &= ~IEEE80211_CHAN_PASSIVE_SCAN;
248 ch = &sband->channels[12]; /* CH 13 */
249 if (ch->flags & IEEE80211_CHAN_PASSIVE_SCAN)
250 ch->flags &= ~IEEE80211_CHAN_PASSIVE_SCAN;
251 return;
252 }
253
Luis R. Rodriguez84540862009-02-21 00:20:40 -0500254 /*
255 * If a country IE has been recieved check its rule for this
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800256 * channel first before enabling active scan. The passive scan
Luis R. Rodriguez84540862009-02-21 00:20:40 -0500257 * would have been enforced by the initial processing of our
258 * custom regulatory domain.
259 */
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800260
261 ch = &sband->channels[11]; /* CH 12 */
262 r = freq_reg_info(wiphy, ch->center_freq, &bandwidth, &reg_rule);
263 if (!r) {
264 if (!(reg_rule->flags & NL80211_RRF_PASSIVE_SCAN))
265 if (ch->flags & IEEE80211_CHAN_PASSIVE_SCAN)
266 ch->flags &= ~IEEE80211_CHAN_PASSIVE_SCAN;
267 }
268
269 ch = &sband->channels[12]; /* CH 13 */
270 r = freq_reg_info(wiphy, ch->center_freq, &bandwidth, &reg_rule);
271 if (!r) {
272 if (!(reg_rule->flags & NL80211_RRF_PASSIVE_SCAN))
273 if (ch->flags & IEEE80211_CHAN_PASSIVE_SCAN)
274 ch->flags &= ~IEEE80211_CHAN_PASSIVE_SCAN;
275 }
276}
277
278/* Always apply Radar/DFS rules on freq range 5260 MHz - 5700 MHz */
279void ath9k_reg_apply_radar_flags(struct wiphy *wiphy)
280{
281 struct ieee80211_supported_band *sband;
282 struct ieee80211_channel *ch;
283 unsigned int i;
284
285 if (!wiphy->bands[IEEE80211_BAND_5GHZ])
286 return;
287
288 sband = wiphy->bands[IEEE80211_BAND_5GHZ];
289
290 for (i = 0; i < sband->n_channels; i++) {
291 ch = &sband->channels[i];
Luis R. Rodriguez547e4c22009-01-28 12:17:48 -0800292 if (!ath9k_is_radar_freq(ch->center_freq))
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800293 continue;
294 /* We always enable radar detection/DFS on this
295 * frequency range. Additionally we also apply on
296 * this frequency range:
297 * - If STA mode does not yet have DFS supports disable
298 * active scanning
299 * - If adhoc mode does not support DFS yet then
300 * disable adhoc in the frequency.
301 * - If AP mode does not yet support radar detection/DFS
302 * do not allow AP mode
303 */
304 if (!(ch->flags & IEEE80211_CHAN_DISABLED))
305 ch->flags |= IEEE80211_CHAN_RADAR |
306 IEEE80211_CHAN_NO_IBSS |
307 IEEE80211_CHAN_PASSIVE_SCAN;
308 }
309}
310
311void ath9k_reg_apply_world_flags(struct wiphy *wiphy, enum reg_set_by setby)
312{
313 struct ieee80211_hw *hw = wiphy_to_ieee80211_hw(wiphy);
Jouni Malinenbce048d2009-03-03 19:23:28 +0200314 struct ath_wiphy *aphy = hw->priv;
315 struct ath_softc *sc = aphy->sc;
Sujithcbe61d82009-02-09 13:27:12 +0530316 struct ath_hw *ah = sc->sc_ah;
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800317
Sujithd6bad492009-02-09 13:27:08 +0530318 switch (ah->regulatory.regpair->regDmnEnum) {
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800319 case 0x60:
320 case 0x63:
321 case 0x66:
322 case 0x67:
Luis R. Rodriguez84540862009-02-21 00:20:40 -0500323 ath9k_reg_apply_beaconing_flags(wiphy, setby);
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800324 break;
325 case 0x68:
Luis R. Rodriguez84540862009-02-21 00:20:40 -0500326 ath9k_reg_apply_beaconing_flags(wiphy, setby);
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800327 ath9k_reg_apply_active_scan_flags(wiphy, setby);
328 break;
329 }
330 return;
331}
332
333int ath9k_reg_notifier(struct wiphy *wiphy, struct regulatory_request *request)
334{
335 struct ieee80211_hw *hw = wiphy_to_ieee80211_hw(wiphy);
Jouni Malinenbce048d2009-03-03 19:23:28 +0200336 struct ath_wiphy *aphy = hw->priv;
337 struct ath_softc *sc = aphy->sc;
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800338
339 /* We always apply this */
340 ath9k_reg_apply_radar_flags(wiphy);
341
342 switch (request->initiator) {
343 case REGDOM_SET_BY_DRIVER:
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800344 case REGDOM_SET_BY_CORE:
345 case REGDOM_SET_BY_USER:
346 break;
347 case REGDOM_SET_BY_COUNTRY_IE:
348 if (ath9k_is_world_regd(sc->sc_ah))
349 ath9k_reg_apply_world_flags(wiphy, request->initiator);
350 break;
351 }
352
353 return 0;
354}
355
Sujithcbe61d82009-02-09 13:27:12 +0530356bool ath9k_regd_is_eeprom_valid(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700357{
358 u16 rd = ath9k_regd_get_eepromRD(ah);
359 int i;
360
361 if (rd & COUNTRY_ERD_FLAG) {
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800362 /* EEPROM value is a country code */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700363 u16 cc = rd & ~COUNTRY_ERD_FLAG;
364 for (i = 0; i < ARRAY_SIZE(allCountries); i++)
365 if (allCountries[i].countryCode == cc)
366 return true;
367 } else {
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800368 /* EEPROM value is a regpair value */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700369 for (i = 0; i < ARRAY_SIZE(regDomainPairs); i++)
370 if (regDomainPairs[i].regDmnEnum == rd)
371 return true;
372 }
373 DPRINTF(ah->ah_sc, ATH_DBG_REGULATORY,
Sujith04bd46382008-11-28 22:18:05 +0530374 "invalid regulatory domain/country code 0x%x\n", rd);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700375 return false;
376}
377
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800378/* EEPROM country code to regpair mapping */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700379static struct country_code_to_enum_rd*
380ath9k_regd_find_country(u16 countryCode)
381{
382 int i;
383
384 for (i = 0; i < ARRAY_SIZE(allCountries); i++) {
385 if (allCountries[i].countryCode == countryCode)
386 return &allCountries[i];
387 }
388 return NULL;
389}
390
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800391/* EEPROM rd code to regpair mapping */
392static struct country_code_to_enum_rd*
393ath9k_regd_find_country_by_rd(int regdmn)
394{
395 int i;
396
397 for (i = 0; i < ARRAY_SIZE(allCountries); i++) {
398 if (allCountries[i].regDmnEnum == regdmn)
399 return &allCountries[i];
400 }
401 return NULL;
402}
403
404/* Returns the map of the EEPROM set RD to a country code */
Bob Copelande775aaf2009-02-12 13:38:54 -0500405static u16 ath9k_regd_get_default_country(u16 rd)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700406{
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700407 if (rd & COUNTRY_ERD_FLAG) {
408 struct country_code_to_enum_rd *country = NULL;
409 u16 cc = rd & ~COUNTRY_ERD_FLAG;
410
411 country = ath9k_regd_find_country(cc);
412 if (country != NULL)
413 return cc;
414 }
415
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700416 return CTRY_DEFAULT;
417}
418
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800419static struct reg_dmn_pair_mapping*
420ath9k_get_regpair(int regdmn)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700421{
422 int i;
423
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800424 if (regdmn == NO_ENUMRD)
425 return NULL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700426 for (i = 0; i < ARRAY_SIZE(regDomainPairs); i++) {
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800427 if (regDomainPairs[i].regDmnEnum == regdmn)
428 return &regDomainPairs[i];
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700429 }
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800430 return NULL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700431}
432
Sujithcbe61d82009-02-09 13:27:12 +0530433int ath9k_regd_init(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700434{
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700435 struct country_code_to_enum_rd *country = NULL;
Bob Copelande775aaf2009-02-12 13:38:54 -0500436 u16 regdmn;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700437
438 if (!ath9k_regd_is_eeprom_valid(ah)) {
439 DPRINTF(ah->ah_sc, ATH_DBG_REGULATORY,
Sujith04bd46382008-11-28 22:18:05 +0530440 "Invalid EEPROM contents\n");
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800441 return -EINVAL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700442 }
443
Bob Copelande775aaf2009-02-12 13:38:54 -0500444 regdmn = ath9k_regd_get_eepromRD(ah);
445 ah->regulatory.country_code = ath9k_regd_get_default_country(regdmn);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700446
Sujithd6bad492009-02-09 13:27:08 +0530447 if (ah->regulatory.country_code == CTRY_DEFAULT &&
Bob Copelande775aaf2009-02-12 13:38:54 -0500448 regdmn == CTRY_DEFAULT)
Sujithd6bad492009-02-09 13:27:08 +0530449 ah->regulatory.country_code = CTRY_UNITED_STATES;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700450
Sujithd6bad492009-02-09 13:27:08 +0530451 if (ah->regulatory.country_code == CTRY_DEFAULT) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700452 country = NULL;
453 } else {
Sujithd6bad492009-02-09 13:27:08 +0530454 country = ath9k_regd_find_country(ah->regulatory.country_code);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700455 if (country == NULL) {
456 DPRINTF(ah->ah_sc, ATH_DBG_REGULATORY,
457 "Country is NULL!!!!, cc= %d\n",
Sujithd6bad492009-02-09 13:27:08 +0530458 ah->regulatory.country_code);
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800459 return -EINVAL;
460 } else
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700461 regdmn = country->regDmnEnum;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700462 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700463
Sujithd6bad492009-02-09 13:27:08 +0530464 ah->regulatory.regpair = ath9k_get_regpair(regdmn);
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800465
Sujithd6bad492009-02-09 13:27:08 +0530466 if (!ah->regulatory.regpair) {
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800467 DPRINTF(ah->ah_sc, ATH_DBG_FATAL,
468 "No regulatory domain pair found, cannot continue\n");
469 return -EINVAL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700470 }
471
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800472 if (!country)
473 country = ath9k_regd_find_country_by_rd(regdmn);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700474
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800475 if (country) {
Sujithd6bad492009-02-09 13:27:08 +0530476 ah->regulatory.alpha2[0] = country->isoName[0];
477 ah->regulatory.alpha2[1] = country->isoName[1];
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800478 } else {
Sujithd6bad492009-02-09 13:27:08 +0530479 ah->regulatory.alpha2[0] = '0';
480 ah->regulatory.alpha2[1] = '0';
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800481 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700482
483 DPRINTF(ah->ah_sc, ATH_DBG_REGULATORY,
Luis R. Rodriguez0c6666e2009-01-26 06:48:10 -0800484 "Country alpha2 being used: %c%c\n"
Sujithd6bad492009-02-09 13:27:08 +0530485 "Regulatory.Regpair detected: 0x%0x\n",
486 ah->regulatory.alpha2[0], ah->regulatory.alpha2[1],
487 ah->regulatory.regpair->regDmnEnum);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700488
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800489 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700490}
491
Sujithcbe61d82009-02-09 13:27:12 +0530492u32 ath9k_regd_get_ctl(struct ath_hw *ah, struct ath9k_channel *chan)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700493{
494 u32 ctl = NO_CTL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700495
Sujithd6bad492009-02-09 13:27:08 +0530496 if (!ah->regulatory.regpair ||
Bob Copelandd0f48f92009-02-12 13:38:55 -0500497 (ah->regulatory.country_code == CTRY_DEFAULT &&
498 is_wwr_sku(ath9k_regd_get_eepromRD(ah)))) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700499 if (IS_CHAN_B(chan))
500 ctl = SD_NO_CTL | CTL_11B;
501 else if (IS_CHAN_G(chan))
502 ctl = SD_NO_CTL | CTL_11G;
503 else
504 ctl = SD_NO_CTL | CTL_11A;
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800505 return ctl;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700506 }
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800507
508 if (IS_CHAN_B(chan))
Sujithd6bad492009-02-09 13:27:08 +0530509 ctl = ah->regulatory.regpair->reg_2ghz_ctl | CTL_11B;
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800510 else if (IS_CHAN_G(chan))
Bob Copeland204b1902009-02-21 14:44:18 -0500511 ctl = ah->regulatory.regpair->reg_2ghz_ctl | CTL_11G;
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800512 else
Sujithd6bad492009-02-09 13:27:08 +0530513 ctl = ah->regulatory.regpair->reg_5ghz_ctl | CTL_11A;
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800514
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700515 return ctl;
516}