2 * Copyright (c) 2008 Atheros Communications Inc.
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.
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.
17 #include <linux/kernel.h>
18 #include <linux/slab.h>
22 #include "regd_common.h"
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.
31 /* 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)
34 /* 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)
40 /* 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)
48 #define ATH9K_2GHZ_ALL ATH9K_2GHZ_CH01_11, \
52 #define ATH9K_5GHZ_ALL ATH9K_5GHZ_5150_5350, \
54 /* This one skips what we call "mid band" */
55 #define ATH9K_5GHZ_NO_MIDBAND ATH9K_5GHZ_5150_5350, \
60 static const struct ieee80211_regdomain ath9k_world_regdom_60_61_62 = {
69 /* Can be used by 0x63 and 0x65 */
70 static const struct ieee80211_regdomain ath9k_world_regdom_63_65 = {
76 ATH9K_5GHZ_NO_MIDBAND,
80 /* Can be used by 0x64 only */
81 static const struct ieee80211_regdomain ath9k_world_regdom_64 = {
86 ATH9K_5GHZ_NO_MIDBAND,
90 /* Can be used by 0x66 and 0x69 */
91 static const struct ieee80211_regdomain ath9k_world_regdom_66_69 = {
100 /* Can be used by 0x67, 0x6A and 0x68 */
101 static const struct ieee80211_regdomain ath9k_world_regdom_67_68_6A = {
111 static u16 ath9k_regd_get_eepromRD(struct ath_hal *ah)
113 return ah->ah_currentRD & ~WORLDWIDE_ROAMING_FLAG;
116 u16 ath9k_regd_get_rd(struct ath_hal *ah)
118 return ath9k_regd_get_eepromRD(ah);
121 bool ath9k_is_world_regd(struct ath_hal *ah)
126 const struct ieee80211_regdomain *ath9k_default_world_regdomain(void)
128 /* this is the most restrictive */
129 return &ath9k_world_regdom_64;
132 const struct ieee80211_regdomain *ath9k_world_regdomain(struct ath_hal *ah)
134 switch (ah->regpair->regDmnEnum) {
138 return &ath9k_world_regdom_60_61_62;
141 return &ath9k_world_regdom_63_65;
143 return &ath9k_world_regdom_64;
146 return &ath9k_world_regdom_66_69;
150 return &ath9k_world_regdom_67_68_6A;
153 return ath9k_default_world_regdomain();
157 /* Enable adhoc on 5 GHz if allowed by 11d */
158 static void ath9k_reg_apply_5ghz_adhoc_flags(struct wiphy *wiphy,
159 enum reg_set_by setby)
161 struct ieee80211_hw *hw = wiphy_to_ieee80211_hw(wiphy);
162 struct ath_softc *sc = hw->priv;
163 struct ieee80211_supported_band *sband;
164 const struct ieee80211_reg_rule *reg_rule;
165 struct ieee80211_channel *ch;
170 if (setby != REGDOM_SET_BY_COUNTRY_IE)
172 if (!test_bit(ATH9K_MODE_11A,
173 sc->sc_ah->ah_caps.wireless_modes))
176 sband = wiphy->bands[IEEE80211_BAND_5GHZ];
177 for (i = 0; i < sband->n_channels; i++) {
178 ch = &sband->channels[i];
179 r = freq_reg_info(wiphy, ch->center_freq,
180 &bandwidth, ®_rule);
183 /* If 11d had a rule for this channel ensure we enable adhoc
184 * if it allows us to use it. Note that we would have disabled
185 * it by applying our static world regdomain by default during
187 if (!(reg_rule->flags & NL80211_RRF_NO_IBSS))
188 ch->flags &= ~NL80211_RRF_NO_IBSS;
192 /* Allows active scan scan on Ch 12 and 13 */
193 static void ath9k_reg_apply_active_scan_flags(struct wiphy *wiphy,
194 enum reg_set_by setby)
196 struct ieee80211_supported_band *sband;
197 struct ieee80211_channel *ch;
198 const struct ieee80211_reg_rule *reg_rule;
202 /* Force passive scan on Channels 12-13 */
203 sband = wiphy->bands[IEEE80211_BAND_2GHZ];
205 /* If no country IE has been received always enable active scan
206 * on these channels */
207 if (setby != REGDOM_SET_BY_COUNTRY_IE) {
208 ch = &sband->channels[11]; /* CH 12 */
209 if (ch->flags & IEEE80211_CHAN_PASSIVE_SCAN)
210 ch->flags &= ~IEEE80211_CHAN_PASSIVE_SCAN;
211 ch = &sband->channels[12]; /* CH 13 */
212 if (ch->flags & IEEE80211_CHAN_PASSIVE_SCAN)
213 ch->flags &= ~IEEE80211_CHAN_PASSIVE_SCAN;
217 /* If a country IE has been recieved check its rule for this
218 * channel first before enabling active scan. The passive scan
219 * would have been enforced by the initial probe processing on
220 * our custom regulatory domain. */
222 ch = &sband->channels[11]; /* CH 12 */
223 r = freq_reg_info(wiphy, ch->center_freq, &bandwidth, ®_rule);
225 if (!(reg_rule->flags & NL80211_RRF_PASSIVE_SCAN))
226 if (ch->flags & IEEE80211_CHAN_PASSIVE_SCAN)
227 ch->flags &= ~IEEE80211_CHAN_PASSIVE_SCAN;
230 ch = &sband->channels[12]; /* CH 13 */
231 r = freq_reg_info(wiphy, ch->center_freq, &bandwidth, ®_rule);
233 if (!(reg_rule->flags & NL80211_RRF_PASSIVE_SCAN))
234 if (ch->flags & IEEE80211_CHAN_PASSIVE_SCAN)
235 ch->flags &= ~IEEE80211_CHAN_PASSIVE_SCAN;
239 /* Always apply Radar/DFS rules on freq range 5260 MHz - 5700 MHz */
240 void ath9k_reg_apply_radar_flags(struct wiphy *wiphy)
242 struct ieee80211_supported_band *sband;
243 struct ieee80211_channel *ch;
246 if (!wiphy->bands[IEEE80211_BAND_5GHZ])
249 sband = wiphy->bands[IEEE80211_BAND_5GHZ];
251 for (i = 0; i < sband->n_channels; i++) {
252 ch = &sband->channels[i];
253 if (ch->center_freq < 5260)
255 if (ch->center_freq > 5700)
257 /* We always enable radar detection/DFS on this
258 * frequency range. Additionally we also apply on
259 * this frequency range:
260 * - If STA mode does not yet have DFS supports disable
262 * - If adhoc mode does not support DFS yet then
263 * disable adhoc in the frequency.
264 * - If AP mode does not yet support radar detection/DFS
265 * do not allow AP mode
267 if (!(ch->flags & IEEE80211_CHAN_DISABLED))
268 ch->flags |= IEEE80211_CHAN_RADAR |
269 IEEE80211_CHAN_NO_IBSS |
270 IEEE80211_CHAN_PASSIVE_SCAN;
274 void ath9k_reg_apply_world_flags(struct wiphy *wiphy, enum reg_set_by setby)
276 struct ieee80211_hw *hw = wiphy_to_ieee80211_hw(wiphy);
277 struct ath_softc *sc = hw->priv;
278 struct ath_hal *ah = sc->sc_ah;
280 switch (ah->regpair->regDmnEnum) {
285 ath9k_reg_apply_5ghz_adhoc_flags(wiphy, setby);
288 ath9k_reg_apply_5ghz_adhoc_flags(wiphy, setby);
289 ath9k_reg_apply_active_scan_flags(wiphy, setby);
295 int ath9k_reg_notifier(struct wiphy *wiphy, struct regulatory_request *request)
297 struct ieee80211_hw *hw = wiphy_to_ieee80211_hw(wiphy);
298 struct ath_softc *sc = hw->priv;
300 /* We always apply this */
301 ath9k_reg_apply_radar_flags(wiphy);
303 switch (request->initiator) {
304 case REGDOM_SET_BY_DRIVER:
305 case REGDOM_SET_BY_INIT:
306 case REGDOM_SET_BY_CORE:
307 case REGDOM_SET_BY_USER:
309 case REGDOM_SET_BY_COUNTRY_IE:
310 if (ath9k_is_world_regd(sc->sc_ah))
311 ath9k_reg_apply_world_flags(wiphy, request->initiator);
318 bool ath9k_regd_is_eeprom_valid(struct ath_hal *ah)
320 u16 rd = ath9k_regd_get_eepromRD(ah);
323 if (rd & COUNTRY_ERD_FLAG) {
324 /* EEPROM value is a country code */
325 u16 cc = rd & ~COUNTRY_ERD_FLAG;
326 for (i = 0; i < ARRAY_SIZE(allCountries); i++)
327 if (allCountries[i].countryCode == cc)
330 /* EEPROM value is a regpair value */
331 for (i = 0; i < ARRAY_SIZE(regDomainPairs); i++)
332 if (regDomainPairs[i].regDmnEnum == rd)
335 DPRINTF(ah->ah_sc, ATH_DBG_REGULATORY,
336 "invalid regulatory domain/country code 0x%x\n", rd);
340 /* EEPROM country code to regpair mapping */
341 static struct country_code_to_enum_rd*
342 ath9k_regd_find_country(u16 countryCode)
346 for (i = 0; i < ARRAY_SIZE(allCountries); i++) {
347 if (allCountries[i].countryCode == countryCode)
348 return &allCountries[i];
353 /* EEPROM rd code to regpair mapping */
354 static struct country_code_to_enum_rd*
355 ath9k_regd_find_country_by_rd(int regdmn)
359 for (i = 0; i < ARRAY_SIZE(allCountries); i++) {
360 if (allCountries[i].regDmnEnum == regdmn)
361 return &allCountries[i];
366 /* Returns the map of the EEPROM set RD to a country code */
367 static u16 ath9k_regd_get_default_country(struct ath_hal *ah)
371 rd = ath9k_regd_get_eepromRD(ah);
372 if (rd & COUNTRY_ERD_FLAG) {
373 struct country_code_to_enum_rd *country = NULL;
374 u16 cc = rd & ~COUNTRY_ERD_FLAG;
376 country = ath9k_regd_find_country(cc);
384 static struct reg_dmn_pair_mapping*
385 ath9k_get_regpair(int regdmn)
389 if (regdmn == NO_ENUMRD)
391 for (i = 0; i < ARRAY_SIZE(regDomainPairs); i++) {
392 if (regDomainPairs[i].regDmnEnum == regdmn)
393 return ®DomainPairs[i];
398 int ath9k_regd_init(struct ath_hal *ah)
400 struct country_code_to_enum_rd *country = NULL;
403 if (!ath9k_regd_is_eeprom_valid(ah)) {
404 DPRINTF(ah->ah_sc, ATH_DBG_REGULATORY,
405 "Invalid EEPROM contents\n");
409 ah->ah_countryCode = ath9k_regd_get_default_country(ah);
411 if (ah->ah_countryCode == CTRY_DEFAULT &&
412 ath9k_regd_get_eepromRD(ah) == CTRY_DEFAULT)
413 ah->ah_countryCode = CTRY_UNITED_STATES;
415 if (ah->ah_countryCode == CTRY_DEFAULT) {
416 regdmn = ath9k_regd_get_eepromRD(ah);
419 country = ath9k_regd_find_country(ah->ah_countryCode);
420 if (country == NULL) {
421 DPRINTF(ah->ah_sc, ATH_DBG_REGULATORY,
422 "Country is NULL!!!!, cc= %d\n",
426 regdmn = country->regDmnEnum;
429 ah->ah_currentRDInUse = regdmn;
430 ah->regpair = ath9k_get_regpair(regdmn);
433 DPRINTF(ah->ah_sc, ATH_DBG_FATAL,
434 "No regulatory domain pair found, cannot continue\n");
439 country = ath9k_regd_find_country_by_rd(regdmn);
442 ah->alpha2[0] = country->isoName[0];
443 ah->alpha2[1] = country->isoName[1];
449 DPRINTF(ah->ah_sc, ATH_DBG_REGULATORY,
450 "Country alpha2 being used: %c%c\n"
451 "Regpair detected: 0x%0x\n",
452 ah->alpha2[0], ah->alpha2[1],
453 ah->regpair->regDmnEnum);
458 u32 ath9k_regd_get_ctl(struct ath_hal *ah, struct ath9k_channel *chan)
463 (ah->ah_countryCode == CTRY_DEFAULT && isWwrSKU(ah))) {
465 ctl = SD_NO_CTL | CTL_11B;
466 else if (IS_CHAN_G(chan))
467 ctl = SD_NO_CTL | CTL_11G;
469 ctl = SD_NO_CTL | CTL_11A;
474 ctl = ah->regpair->reg_2ghz_ctl | CTL_11B;
475 else if (IS_CHAN_G(chan))
476 ctl = ah->regpair->reg_5ghz_ctl | CTL_11G;
478 ctl = ah->regpair->reg_5ghz_ctl | CTL_11A;