Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1 | /* |
Sujith | cee075a | 2009-03-13 09:07:23 +0530 | [diff] [blame] | 2 | * Copyright (c) 2008-2009 Atheros Communications Inc. |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 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> |
Paul Gortmaker | ee40fa0 | 2011-05-27 16:14:23 -0400 | [diff] [blame] | 18 | #include <linux/export.h> |
Bob Copeland | 3a702e4 | 2009-03-30 22:30:29 -0400 | [diff] [blame] | 19 | #include <net/cfg80211.h> |
| 20 | #include <net/mac80211.h> |
Bob Copeland | 3a702e4 | 2009-03-30 22:30:29 -0400 | [diff] [blame] | 21 | #include "regd.h" |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 22 | #include "regd_common.h" |
| 23 | |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 24 | /* |
| 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. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 30 | |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 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) |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 33 | |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 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) |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 39 | |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 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) |
| 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 Bethencourt | cfcfe44 | 2010-03-30 16:44:33 +0100 | [diff] [blame] | 54 | |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 55 | /* 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 Copeland | 3a702e4 | 2009-03-30 22:30:29 -0400 | [diff] [blame] | 61 | static const struct ieee80211_regdomain ath_world_regdom_60_61_62 = { |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 62 | .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 Copeland | 3a702e4 | 2009-03-30 22:30:29 -0400 | [diff] [blame] | 71 | static const struct ieee80211_regdomain ath_world_regdom_63_65 = { |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 72 | .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 Copeland | 3a702e4 | 2009-03-30 22:30:29 -0400 | [diff] [blame] | 82 | static const struct ieee80211_regdomain ath_world_regdom_64 = { |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 83 | .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 Copeland | 3a702e4 | 2009-03-30 22:30:29 -0400 | [diff] [blame] | 92 | static const struct ieee80211_regdomain ath_world_regdom_66_69 = { |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 93 | .n_reg_rules = 3, |
| 94 | .alpha2 = "99", |
| 95 | .reg_rules = { |
| 96 | ATH9K_2GHZ_CH01_11, |
| 97 | ATH9K_5GHZ_ALL, |
| 98 | } |
| 99 | }; |
| 100 | |
Senthil Balasubramanian | 34a0a20 | 2011-04-14 16:41:30 +0530 | [diff] [blame] | 101 | /* Can be used by 0x67, 0x68, 0x6A and 0x6C */ |
| 102 | static const struct ieee80211_regdomain ath_world_regdom_67_68_6A_6C = { |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 103 | .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. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 111 | |
Bob Copeland | d0f48f9 | 2009-02-12 13:38:55 -0500 | [diff] [blame] | 112 | static inline bool is_wwr_sku(u16 regd) |
| 113 | { |
Christian Lamparter | 641eabb | 2010-02-07 16:01:55 +0100 | [diff] [blame] | 114 | return ((regd & COUNTRY_ERD_FLAG) != COUNTRY_ERD_FLAG) && |
| 115 | (((regd & WORLD_SKU_MASK) == WORLD_SKU_PREFIX) || |
| 116 | (regd == WORLD)); |
Bob Copeland | d0f48f9 | 2009-02-12 13:38:55 -0500 | [diff] [blame] | 117 | } |
| 118 | |
Bob Copeland | 3a702e4 | 2009-03-30 22:30:29 -0400 | [diff] [blame] | 119 | static u16 ath_regd_get_eepromRD(struct ath_regulatory *reg) |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 120 | { |
Bob Copeland | c02cf37 | 2009-03-30 22:30:28 -0400 | [diff] [blame] | 121 | return reg->current_rd & ~WORLDWIDE_ROAMING_FLAG; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 122 | } |
| 123 | |
Bob Copeland | 3a702e4 | 2009-03-30 22:30:29 -0400 | [diff] [blame] | 124 | bool ath_is_world_regd(struct ath_regulatory *reg) |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 125 | { |
Bob Copeland | 3a702e4 | 2009-03-30 22:30:29 -0400 | [diff] [blame] | 126 | return is_wwr_sku(ath_regd_get_eepromRD(reg)); |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 127 | } |
Bob Copeland | 3a702e4 | 2009-03-30 22:30:29 -0400 | [diff] [blame] | 128 | EXPORT_SYMBOL(ath_is_world_regd); |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 129 | |
Bob Copeland | e3bb249 | 2009-03-30 22:30:30 -0400 | [diff] [blame] | 130 | static const struct ieee80211_regdomain *ath_default_world_regdomain(void) |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 131 | { |
| 132 | /* this is the most restrictive */ |
Bob Copeland | 3a702e4 | 2009-03-30 22:30:29 -0400 | [diff] [blame] | 133 | return &ath_world_regdom_64; |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 134 | } |
| 135 | |
Bob Copeland | e3bb249 | 2009-03-30 22:30:30 -0400 | [diff] [blame] | 136 | static const struct |
Bob Copeland | 3a702e4 | 2009-03-30 22:30:29 -0400 | [diff] [blame] | 137 | ieee80211_regdomain *ath_world_regdomain(struct ath_regulatory *reg) |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 138 | { |
Bob Copeland | c02cf37 | 2009-03-30 22:30:28 -0400 | [diff] [blame] | 139 | switch (reg->regpair->regDmnEnum) { |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 140 | case 0x60: |
| 141 | case 0x61: |
| 142 | case 0x62: |
Bob Copeland | 3a702e4 | 2009-03-30 22:30:29 -0400 | [diff] [blame] | 143 | return &ath_world_regdom_60_61_62; |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 144 | case 0x63: |
| 145 | case 0x65: |
Bob Copeland | 3a702e4 | 2009-03-30 22:30:29 -0400 | [diff] [blame] | 146 | return &ath_world_regdom_63_65; |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 147 | case 0x64: |
Bob Copeland | 3a702e4 | 2009-03-30 22:30:29 -0400 | [diff] [blame] | 148 | return &ath_world_regdom_64; |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 149 | case 0x66: |
| 150 | case 0x69: |
Bob Copeland | 3a702e4 | 2009-03-30 22:30:29 -0400 | [diff] [blame] | 151 | return &ath_world_regdom_66_69; |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 152 | case 0x67: |
| 153 | case 0x68: |
| 154 | case 0x6A: |
Senthil Balasubramanian | 34a0a20 | 2011-04-14 16:41:30 +0530 | [diff] [blame] | 155 | case 0x6C: |
| 156 | return &ath_world_regdom_67_68_6A_6C; |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 157 | default: |
| 158 | WARN_ON(1); |
Bob Copeland | 3a702e4 | 2009-03-30 22:30:29 -0400 | [diff] [blame] | 159 | return ath_default_world_regdomain(); |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 160 | } |
| 161 | } |
| 162 | |
Bruno Randolf | 5719efd | 2011-01-25 13:15:33 +0900 | [diff] [blame] | 163 | bool ath_is_49ghz_allowed(u16 regdomain) |
| 164 | { |
| 165 | /* possibly more */ |
| 166 | return regdomain == MKK9_MKKC; |
| 167 | } |
| 168 | EXPORT_SYMBOL(ath_is_49ghz_allowed); |
| 169 | |
Luis R. Rodriguez | 547e4c2 | 2009-01-28 12:17:48 -0800 | [diff] [blame] | 170 | /* Frequency is one where radar detection is required */ |
Bob Copeland | 3a702e4 | 2009-03-30 22:30:29 -0400 | [diff] [blame] | 171 | static bool ath_is_radar_freq(u16 center_freq) |
Luis R. Rodriguez | 547e4c2 | 2009-01-28 12:17:48 -0800 | [diff] [blame] | 172 | { |
| 173 | return (center_freq >= 5260 && center_freq <= 5700); |
| 174 | } |
| 175 | |
Luis R. Rodriguez | 7519a8f | 2009-01-28 12:17:49 -0800 | [diff] [blame] | 176 | /* |
Luis R. Rodriguez | 8454086 | 2009-02-21 00:20:40 -0500 | [diff] [blame] | 177 | * 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. Rodriguez | 7519a8f | 2009-01-28 12:17:49 -0800 | [diff] [blame] | 184 | */ |
Luis R. Rodriguez | 6b2b2ff | 2009-03-30 22:30:34 -0400 | [diff] [blame] | 185 | static void |
| 186 | ath_reg_apply_beaconing_flags(struct wiphy *wiphy, |
| 187 | enum nl80211_reg_initiator initiator) |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 188 | { |
Luis R. Rodriguez | 8454086 | 2009-02-21 00:20:40 -0500 | [diff] [blame] | 189 | enum ieee80211_band band; |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 190 | 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. Rodriguez | 8454086 | 2009-02-21 00:20:40 -0500 | [diff] [blame] | 197 | for (band = 0; band < IEEE80211_NUM_BANDS; band++) { |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 198 | |
Luis R. Rodriguez | 8454086 | 2009-02-21 00:20:40 -0500 | [diff] [blame] | 199 | if (!wiphy->bands[band]) |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 200 | continue; |
Luis R. Rodriguez | 8454086 | 2009-02-21 00:20:40 -0500 | [diff] [blame] | 201 | |
| 202 | sband = wiphy->bands[band]; |
| 203 | |
| 204 | for (i = 0; i < sband->n_channels; i++) { |
| 205 | |
| 206 | ch = &sband->channels[i]; |
| 207 | |
Bob Copeland | 3a702e4 | 2009-03-30 22:30:29 -0400 | [diff] [blame] | 208 | if (ath_is_radar_freq(ch->center_freq) || |
Luis R. Rodriguez | 8454086 | 2009-02-21 00:20:40 -0500 | [diff] [blame] | 209 | (ch->flags & IEEE80211_CHAN_RADAR)) |
| 210 | continue; |
| 211 | |
Luis R. Rodriguez | 7db90f4 | 2009-03-09 22:07:41 -0400 | [diff] [blame] | 212 | if (initiator == NL80211_REGDOM_SET_BY_COUNTRY_IE) { |
Luis R. Rodriguez | 038659e | 2009-05-02 00:37:17 -0400 | [diff] [blame] | 213 | r = freq_reg_info(wiphy, |
| 214 | ch->center_freq, |
| 215 | bandwidth, |
| 216 | ®_rule); |
Luis R. Rodriguez | 8454086 | 2009-02-21 00:20:40 -0500 | [diff] [blame] | 217 | 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. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 241 | } |
Luis R. Rodriguez | 8454086 | 2009-02-21 00:20:40 -0500 | [diff] [blame] | 242 | |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 243 | } |
| 244 | |
| 245 | /* Allows active scan scan on Ch 12 and 13 */ |
Luis R. Rodriguez | 6b2b2ff | 2009-03-30 22:30:34 -0400 | [diff] [blame] | 246 | static void |
| 247 | ath_reg_apply_active_scan_flags(struct wiphy *wiphy, |
| 248 | enum nl80211_reg_initiator initiator) |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 249 | { |
| 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. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 256 | sband = wiphy->bands[IEEE80211_BAND_2GHZ]; |
| 257 | |
Luis R. Rodriguez | 8454086 | 2009-02-21 00:20:40 -0500 | [diff] [blame] | 258 | /* |
| 259 | * If no country IE has been received always enable active scan |
| 260 | * on these channels. This is only done for specific regulatory SKUs |
| 261 | */ |
Luis R. Rodriguez | 7db90f4 | 2009-03-09 22:07:41 -0400 | [diff] [blame] | 262 | if (initiator != NL80211_REGDOM_SET_BY_COUNTRY_IE) { |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 263 | ch = &sband->channels[11]; /* CH 12 */ |
| 264 | if (ch->flags & IEEE80211_CHAN_PASSIVE_SCAN) |
| 265 | ch->flags &= ~IEEE80211_CHAN_PASSIVE_SCAN; |
| 266 | ch = &sband->channels[12]; /* CH 13 */ |
| 267 | if (ch->flags & IEEE80211_CHAN_PASSIVE_SCAN) |
| 268 | ch->flags &= ~IEEE80211_CHAN_PASSIVE_SCAN; |
| 269 | return; |
| 270 | } |
| 271 | |
Luis R. Rodriguez | 8454086 | 2009-02-21 00:20:40 -0500 | [diff] [blame] | 272 | /* |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 273 | * If a country IE has been received check its rule for this |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 274 | * channel first before enabling active scan. The passive scan |
Luis R. Rodriguez | 8454086 | 2009-02-21 00:20:40 -0500 | [diff] [blame] | 275 | * would have been enforced by the initial processing of our |
| 276 | * custom regulatory domain. |
| 277 | */ |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 278 | |
| 279 | ch = &sband->channels[11]; /* CH 12 */ |
Luis R. Rodriguez | 038659e | 2009-05-02 00:37:17 -0400 | [diff] [blame] | 280 | r = freq_reg_info(wiphy, ch->center_freq, bandwidth, ®_rule); |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 281 | 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 | ch = &sband->channels[12]; /* CH 13 */ |
Luis R. Rodriguez | 038659e | 2009-05-02 00:37:17 -0400 | [diff] [blame] | 288 | r = freq_reg_info(wiphy, ch->center_freq, bandwidth, ®_rule); |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 289 | if (!r) { |
| 290 | if (!(reg_rule->flags & NL80211_RRF_PASSIVE_SCAN)) |
| 291 | if (ch->flags & IEEE80211_CHAN_PASSIVE_SCAN) |
| 292 | ch->flags &= ~IEEE80211_CHAN_PASSIVE_SCAN; |
| 293 | } |
| 294 | } |
| 295 | |
| 296 | /* Always apply Radar/DFS rules on freq range 5260 MHz - 5700 MHz */ |
Bob Copeland | e3bb249 | 2009-03-30 22:30:30 -0400 | [diff] [blame] | 297 | static void ath_reg_apply_radar_flags(struct wiphy *wiphy) |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 298 | { |
| 299 | struct ieee80211_supported_band *sband; |
| 300 | struct ieee80211_channel *ch; |
| 301 | unsigned int i; |
| 302 | |
| 303 | if (!wiphy->bands[IEEE80211_BAND_5GHZ]) |
| 304 | return; |
| 305 | |
| 306 | sband = wiphy->bands[IEEE80211_BAND_5GHZ]; |
| 307 | |
| 308 | for (i = 0; i < sband->n_channels; i++) { |
| 309 | ch = &sband->channels[i]; |
Bob Copeland | 3a702e4 | 2009-03-30 22:30:29 -0400 | [diff] [blame] | 310 | if (!ath_is_radar_freq(ch->center_freq)) |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 311 | continue; |
| 312 | /* We always enable radar detection/DFS on this |
| 313 | * frequency range. Additionally we also apply on |
| 314 | * this frequency range: |
| 315 | * - If STA mode does not yet have DFS supports disable |
| 316 | * active scanning |
| 317 | * - If adhoc mode does not support DFS yet then |
| 318 | * disable adhoc in the frequency. |
| 319 | * - If AP mode does not yet support radar detection/DFS |
| 320 | * do not allow AP mode |
| 321 | */ |
| 322 | if (!(ch->flags & IEEE80211_CHAN_DISABLED)) |
| 323 | ch->flags |= IEEE80211_CHAN_RADAR | |
| 324 | IEEE80211_CHAN_NO_IBSS | |
| 325 | IEEE80211_CHAN_PASSIVE_SCAN; |
| 326 | } |
| 327 | } |
| 328 | |
Bob Copeland | e3bb249 | 2009-03-30 22:30:30 -0400 | [diff] [blame] | 329 | static void ath_reg_apply_world_flags(struct wiphy *wiphy, |
Luis R. Rodriguez | 6b2b2ff | 2009-03-30 22:30:34 -0400 | [diff] [blame] | 330 | enum nl80211_reg_initiator initiator, |
| 331 | struct ath_regulatory *reg) |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 332 | { |
Bob Copeland | c02cf37 | 2009-03-30 22:30:28 -0400 | [diff] [blame] | 333 | switch (reg->regpair->regDmnEnum) { |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 334 | case 0x60: |
| 335 | case 0x63: |
| 336 | case 0x66: |
| 337 | case 0x67: |
Luis R. Rodriguez | 2290a9c | 2011-04-14 14:55:36 -0700 | [diff] [blame] | 338 | case 0x6C: |
Bob Copeland | 3a702e4 | 2009-03-30 22:30:29 -0400 | [diff] [blame] | 339 | ath_reg_apply_beaconing_flags(wiphy, initiator); |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 340 | break; |
| 341 | case 0x68: |
Bob Copeland | 3a702e4 | 2009-03-30 22:30:29 -0400 | [diff] [blame] | 342 | ath_reg_apply_beaconing_flags(wiphy, initiator); |
| 343 | ath_reg_apply_active_scan_flags(wiphy, initiator); |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 344 | break; |
| 345 | } |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 346 | } |
| 347 | |
Bob Copeland | 3a702e4 | 2009-03-30 22:30:29 -0400 | [diff] [blame] | 348 | int ath_reg_notifier_apply(struct wiphy *wiphy, |
Luis R. Rodriguez | 6b2b2ff | 2009-03-30 22:30:34 -0400 | [diff] [blame] | 349 | struct regulatory_request *request, |
| 350 | struct ath_regulatory *reg) |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 351 | { |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 352 | /* We always apply this */ |
Bob Copeland | 3a702e4 | 2009-03-30 22:30:29 -0400 | [diff] [blame] | 353 | ath_reg_apply_radar_flags(wiphy); |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 354 | |
Luis R. Rodriguez | 931299c | 2010-12-15 19:24:12 -0800 | [diff] [blame] | 355 | /* |
| 356 | * This would happen when we have sent a custom regulatory request |
| 357 | * a world regulatory domain and the scheduler hasn't yet processed |
| 358 | * any pending requests in the queue. |
| 359 | */ |
| 360 | if (!request) |
| 361 | return 0; |
| 362 | |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 363 | switch (request->initiator) { |
Luis R. Rodriguez | 7db90f4 | 2009-03-09 22:07:41 -0400 | [diff] [blame] | 364 | case NL80211_REGDOM_SET_BY_DRIVER: |
| 365 | case NL80211_REGDOM_SET_BY_CORE: |
| 366 | case NL80211_REGDOM_SET_BY_USER: |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 367 | break; |
Luis R. Rodriguez | 7db90f4 | 2009-03-09 22:07:41 -0400 | [diff] [blame] | 368 | case NL80211_REGDOM_SET_BY_COUNTRY_IE: |
Bob Copeland | 3a702e4 | 2009-03-30 22:30:29 -0400 | [diff] [blame] | 369 | if (ath_is_world_regd(reg)) |
| 370 | ath_reg_apply_world_flags(wiphy, request->initiator, |
| 371 | reg); |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 372 | break; |
| 373 | } |
| 374 | |
| 375 | return 0; |
| 376 | } |
Bob Copeland | 3a702e4 | 2009-03-30 22:30:29 -0400 | [diff] [blame] | 377 | EXPORT_SYMBOL(ath_reg_notifier_apply); |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 378 | |
Bob Copeland | e3bb249 | 2009-03-30 22:30:30 -0400 | [diff] [blame] | 379 | static bool ath_regd_is_eeprom_valid(struct ath_regulatory *reg) |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 380 | { |
Luis de Bethencourt | cfcfe44 | 2010-03-30 16:44:33 +0100 | [diff] [blame] | 381 | u16 rd = ath_regd_get_eepromRD(reg); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 382 | int i; |
| 383 | |
| 384 | if (rd & COUNTRY_ERD_FLAG) { |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 385 | /* EEPROM value is a country code */ |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 386 | u16 cc = rd & ~COUNTRY_ERD_FLAG; |
Luis R. Rodriguez | e03e5ffd | 2009-06-02 16:30:56 -0400 | [diff] [blame] | 387 | printk(KERN_DEBUG |
| 388 | "ath: EEPROM indicates we should expect " |
| 389 | "a country code\n"); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 390 | for (i = 0; i < ARRAY_SIZE(allCountries); i++) |
| 391 | if (allCountries[i].countryCode == cc) |
| 392 | return true; |
| 393 | } else { |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 394 | /* EEPROM value is a regpair value */ |
Luis R. Rodriguez | e03e5ffd | 2009-06-02 16:30:56 -0400 | [diff] [blame] | 395 | if (rd != CTRY_DEFAULT) |
| 396 | printk(KERN_DEBUG "ath: EEPROM indicates we " |
| 397 | "should expect a direct regpair map\n"); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 398 | for (i = 0; i < ARRAY_SIZE(regDomainPairs); i++) |
| 399 | if (regDomainPairs[i].regDmnEnum == rd) |
| 400 | return true; |
| 401 | } |
Bob Copeland | c02cf37 | 2009-03-30 22:30:28 -0400 | [diff] [blame] | 402 | printk(KERN_DEBUG |
Bob Copeland | 3a702e4 | 2009-03-30 22:30:29 -0400 | [diff] [blame] | 403 | "ath: invalid regulatory domain/country code 0x%x\n", rd); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 404 | return false; |
| 405 | } |
| 406 | |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 407 | /* EEPROM country code to regpair mapping */ |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 408 | static struct country_code_to_enum_rd* |
Bob Copeland | 3a702e4 | 2009-03-30 22:30:29 -0400 | [diff] [blame] | 409 | ath_regd_find_country(u16 countryCode) |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 410 | { |
| 411 | int i; |
| 412 | |
| 413 | for (i = 0; i < ARRAY_SIZE(allCountries); i++) { |
| 414 | if (allCountries[i].countryCode == countryCode) |
| 415 | return &allCountries[i]; |
| 416 | } |
| 417 | return NULL; |
| 418 | } |
| 419 | |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 420 | /* EEPROM rd code to regpair mapping */ |
| 421 | static struct country_code_to_enum_rd* |
Bob Copeland | 3a702e4 | 2009-03-30 22:30:29 -0400 | [diff] [blame] | 422 | ath_regd_find_country_by_rd(int regdmn) |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 423 | { |
| 424 | int i; |
| 425 | |
| 426 | for (i = 0; i < ARRAY_SIZE(allCountries); i++) { |
| 427 | if (allCountries[i].regDmnEnum == regdmn) |
| 428 | return &allCountries[i]; |
| 429 | } |
| 430 | return NULL; |
| 431 | } |
| 432 | |
| 433 | /* Returns the map of the EEPROM set RD to a country code */ |
Bob Copeland | 3a702e4 | 2009-03-30 22:30:29 -0400 | [diff] [blame] | 434 | static u16 ath_regd_get_default_country(u16 rd) |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 435 | { |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 436 | if (rd & COUNTRY_ERD_FLAG) { |
| 437 | struct country_code_to_enum_rd *country = NULL; |
| 438 | u16 cc = rd & ~COUNTRY_ERD_FLAG; |
| 439 | |
Bob Copeland | 3a702e4 | 2009-03-30 22:30:29 -0400 | [diff] [blame] | 440 | country = ath_regd_find_country(cc); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 441 | if (country != NULL) |
| 442 | return cc; |
| 443 | } |
| 444 | |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 445 | return CTRY_DEFAULT; |
| 446 | } |
| 447 | |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 448 | static struct reg_dmn_pair_mapping* |
Bob Copeland | 3a702e4 | 2009-03-30 22:30:29 -0400 | [diff] [blame] | 449 | ath_get_regpair(int regdmn) |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 450 | { |
| 451 | int i; |
| 452 | |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 453 | if (regdmn == NO_ENUMRD) |
| 454 | return NULL; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 455 | for (i = 0; i < ARRAY_SIZE(regDomainPairs); i++) { |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 456 | if (regDomainPairs[i].regDmnEnum == regdmn) |
| 457 | return ®DomainPairs[i]; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 458 | } |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 459 | return NULL; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 460 | } |
| 461 | |
Luis R. Rodriguez | 6b2b2ff | 2009-03-30 22:30:34 -0400 | [diff] [blame] | 462 | static int |
| 463 | ath_regd_init_wiphy(struct ath_regulatory *reg, |
| 464 | struct wiphy *wiphy, |
| 465 | int (*reg_notifier)(struct wiphy *wiphy, |
Bob Copeland | e3bb249 | 2009-03-30 22:30:30 -0400 | [diff] [blame] | 466 | struct regulatory_request *request)) |
| 467 | { |
| 468 | const struct ieee80211_regdomain *regd; |
| 469 | |
| 470 | wiphy->reg_notifier = reg_notifier; |
Johannes Berg | 5be83de | 2009-11-19 00:56:28 +0100 | [diff] [blame] | 471 | wiphy->flags |= WIPHY_FLAG_STRICT_REGULATORY; |
Bob Copeland | e3bb249 | 2009-03-30 22:30:30 -0400 | [diff] [blame] | 472 | |
| 473 | if (ath_is_world_regd(reg)) { |
| 474 | /* |
| 475 | * Anything applied here (prior to wiphy registration) gets |
| 476 | * saved on the wiphy orig_* parameters |
| 477 | */ |
| 478 | regd = ath_world_regdomain(reg); |
Johannes Berg | 5be83de | 2009-11-19 00:56:28 +0100 | [diff] [blame] | 479 | wiphy->flags |= WIPHY_FLAG_CUSTOM_REGULATORY; |
Bob Copeland | e3bb249 | 2009-03-30 22:30:30 -0400 | [diff] [blame] | 480 | } else { |
| 481 | /* |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 482 | * This gets applied in the case of the absence of CRDA, |
Bob Copeland | e3bb249 | 2009-03-30 22:30:30 -0400 | [diff] [blame] | 483 | * it's our own custom world regulatory domain, similar to |
| 484 | * cfg80211's but we enable passive scanning. |
| 485 | */ |
| 486 | regd = ath_default_world_regdomain(); |
| 487 | } |
| 488 | wiphy_apply_custom_regulatory(wiphy, regd); |
| 489 | ath_reg_apply_radar_flags(wiphy); |
| 490 | ath_reg_apply_world_flags(wiphy, NL80211_REGDOM_SET_BY_DRIVER, reg); |
| 491 | return 0; |
| 492 | } |
| 493 | |
Luis R. Rodriguez | 5d2214a | 2009-07-20 08:32:47 -0700 | [diff] [blame] | 494 | /* |
| 495 | * Some users have reported their EEPROM programmed with |
| 496 | * 0x8000 set, this is not a supported regulatory domain |
| 497 | * but since we have more than one user with it we need |
| 498 | * a solution for them. We default to 0x64, which is the |
| 499 | * default Atheros world regulatory domain. |
| 500 | */ |
| 501 | static void ath_regd_sanitize(struct ath_regulatory *reg) |
| 502 | { |
| 503 | if (reg->current_rd != COUNTRY_ERD_FLAG) |
| 504 | return; |
| 505 | printk(KERN_DEBUG "ath: EEPROM regdomain sanitized\n"); |
| 506 | reg->current_rd = 0x64; |
| 507 | } |
| 508 | |
Luis R. Rodriguez | 6b2b2ff | 2009-03-30 22:30:34 -0400 | [diff] [blame] | 509 | int |
| 510 | ath_regd_init(struct ath_regulatory *reg, |
| 511 | struct wiphy *wiphy, |
| 512 | int (*reg_notifier)(struct wiphy *wiphy, |
| 513 | struct regulatory_request *request)) |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 514 | { |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 515 | struct country_code_to_enum_rd *country = NULL; |
Bob Copeland | e775aaf | 2009-02-12 13:38:54 -0500 | [diff] [blame] | 516 | u16 regdmn; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 517 | |
Luis R. Rodriguez | e03e5ffd | 2009-06-02 16:30:56 -0400 | [diff] [blame] | 518 | if (!reg) |
| 519 | return -EINVAL; |
| 520 | |
Luis R. Rodriguez | 5d2214a | 2009-07-20 08:32:47 -0700 | [diff] [blame] | 521 | ath_regd_sanitize(reg); |
| 522 | |
Luis R. Rodriguez | e03e5ffd | 2009-06-02 16:30:56 -0400 | [diff] [blame] | 523 | printk(KERN_DEBUG "ath: EEPROM regdomain: 0x%0x\n", reg->current_rd); |
| 524 | |
Bob Copeland | 3a702e4 | 2009-03-30 22:30:29 -0400 | [diff] [blame] | 525 | if (!ath_regd_is_eeprom_valid(reg)) { |
Luis R. Rodriguez | 85efc86 | 2009-04-13 21:41:46 -0400 | [diff] [blame] | 526 | printk(KERN_ERR "ath: Invalid EEPROM contents\n"); |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 527 | return -EINVAL; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 528 | } |
| 529 | |
Bob Copeland | 3a702e4 | 2009-03-30 22:30:29 -0400 | [diff] [blame] | 530 | regdmn = ath_regd_get_eepromRD(reg); |
| 531 | reg->country_code = ath_regd_get_default_country(regdmn); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 532 | |
Bob Copeland | c02cf37 | 2009-03-30 22:30:28 -0400 | [diff] [blame] | 533 | if (reg->country_code == CTRY_DEFAULT && |
Luis R. Rodriguez | e03e5ffd | 2009-06-02 16:30:56 -0400 | [diff] [blame] | 534 | regdmn == CTRY_DEFAULT) { |
| 535 | printk(KERN_DEBUG "ath: EEPROM indicates default " |
| 536 | "country code should be used\n"); |
Bob Copeland | c02cf37 | 2009-03-30 22:30:28 -0400 | [diff] [blame] | 537 | reg->country_code = CTRY_UNITED_STATES; |
Luis R. Rodriguez | e03e5ffd | 2009-06-02 16:30:56 -0400 | [diff] [blame] | 538 | } |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 539 | |
Bob Copeland | c02cf37 | 2009-03-30 22:30:28 -0400 | [diff] [blame] | 540 | if (reg->country_code == CTRY_DEFAULT) { |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 541 | country = NULL; |
| 542 | } else { |
Luis R. Rodriguez | e03e5ffd | 2009-06-02 16:30:56 -0400 | [diff] [blame] | 543 | printk(KERN_DEBUG "ath: doing EEPROM country->regdmn " |
| 544 | "map search\n"); |
Bob Copeland | 3a702e4 | 2009-03-30 22:30:29 -0400 | [diff] [blame] | 545 | country = ath_regd_find_country(reg->country_code); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 546 | if (country == NULL) { |
Bob Copeland | c02cf37 | 2009-03-30 22:30:28 -0400 | [diff] [blame] | 547 | printk(KERN_DEBUG |
Luis R. Rodriguez | e03e5ffd | 2009-06-02 16:30:56 -0400 | [diff] [blame] | 548 | "ath: no valid country maps found for " |
| 549 | "country code: 0x%0x\n", |
Bob Copeland | c02cf37 | 2009-03-30 22:30:28 -0400 | [diff] [blame] | 550 | reg->country_code); |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 551 | return -EINVAL; |
Luis R. Rodriguez | e03e5ffd | 2009-06-02 16:30:56 -0400 | [diff] [blame] | 552 | } else { |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 553 | regdmn = country->regDmnEnum; |
Luis R. Rodriguez | e03e5ffd | 2009-06-02 16:30:56 -0400 | [diff] [blame] | 554 | printk(KERN_DEBUG "ath: country maps to " |
| 555 | "regdmn code: 0x%0x\n", |
| 556 | regdmn); |
| 557 | } |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 558 | } |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 559 | |
Bob Copeland | 3a702e4 | 2009-03-30 22:30:29 -0400 | [diff] [blame] | 560 | reg->regpair = ath_get_regpair(regdmn); |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 561 | |
Bob Copeland | c02cf37 | 2009-03-30 22:30:28 -0400 | [diff] [blame] | 562 | if (!reg->regpair) { |
Bob Copeland | 3a702e4 | 2009-03-30 22:30:29 -0400 | [diff] [blame] | 563 | printk(KERN_DEBUG "ath: " |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 564 | "No regulatory domain pair found, cannot continue\n"); |
| 565 | return -EINVAL; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 566 | } |
| 567 | |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 568 | if (!country) |
Bob Copeland | 3a702e4 | 2009-03-30 22:30:29 -0400 | [diff] [blame] | 569 | country = ath_regd_find_country_by_rd(regdmn); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 570 | |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 571 | if (country) { |
Bob Copeland | c02cf37 | 2009-03-30 22:30:28 -0400 | [diff] [blame] | 572 | reg->alpha2[0] = country->isoName[0]; |
| 573 | reg->alpha2[1] = country->isoName[1]; |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 574 | } else { |
Bob Copeland | c02cf37 | 2009-03-30 22:30:28 -0400 | [diff] [blame] | 575 | reg->alpha2[0] = '0'; |
| 576 | reg->alpha2[1] = '0'; |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 577 | } |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 578 | |
Bob Copeland | 3a702e4 | 2009-03-30 22:30:29 -0400 | [diff] [blame] | 579 | printk(KERN_DEBUG "ath: Country alpha2 being used: %c%c\n", |
Bob Copeland | c02cf37 | 2009-03-30 22:30:28 -0400 | [diff] [blame] | 580 | reg->alpha2[0], reg->alpha2[1]); |
Luis R. Rodriguez | e03e5ffd | 2009-06-02 16:30:56 -0400 | [diff] [blame] | 581 | printk(KERN_DEBUG "ath: Regpair used: 0x%0x\n", |
Bob Copeland | c02cf37 | 2009-03-30 22:30:28 -0400 | [diff] [blame] | 582 | reg->regpair->regDmnEnum); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 583 | |
Bob Copeland | e3bb249 | 2009-03-30 22:30:30 -0400 | [diff] [blame] | 584 | ath_regd_init_wiphy(reg, wiphy, reg_notifier); |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 585 | return 0; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 586 | } |
Bob Copeland | 3a702e4 | 2009-03-30 22:30:29 -0400 | [diff] [blame] | 587 | EXPORT_SYMBOL(ath_regd_init); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 588 | |
Bob Copeland | 3a702e4 | 2009-03-30 22:30:29 -0400 | [diff] [blame] | 589 | u32 ath_regd_get_band_ctl(struct ath_regulatory *reg, |
| 590 | enum ieee80211_band band) |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 591 | { |
Bob Copeland | c02cf37 | 2009-03-30 22:30:28 -0400 | [diff] [blame] | 592 | if (!reg->regpair || |
| 593 | (reg->country_code == CTRY_DEFAULT && |
Bob Copeland | 3a702e4 | 2009-03-30 22:30:29 -0400 | [diff] [blame] | 594 | is_wwr_sku(ath_regd_get_eepromRD(reg)))) { |
Bob Copeland | fc2ada3 | 2009-03-30 22:30:27 -0400 | [diff] [blame] | 595 | return SD_NO_CTL; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 596 | } |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 597 | |
Bob Copeland | fc2ada3 | 2009-03-30 22:30:27 -0400 | [diff] [blame] | 598 | switch (band) { |
| 599 | case IEEE80211_BAND_2GHZ: |
Bob Copeland | c02cf37 | 2009-03-30 22:30:28 -0400 | [diff] [blame] | 600 | return reg->regpair->reg_2ghz_ctl; |
Bob Copeland | fc2ada3 | 2009-03-30 22:30:27 -0400 | [diff] [blame] | 601 | case IEEE80211_BAND_5GHZ: |
Bob Copeland | c02cf37 | 2009-03-30 22:30:28 -0400 | [diff] [blame] | 602 | return reg->regpair->reg_5ghz_ctl; |
Bob Copeland | fc2ada3 | 2009-03-30 22:30:27 -0400 | [diff] [blame] | 603 | default: |
| 604 | return NO_CTL; |
| 605 | } |
Bob Copeland | fc2ada3 | 2009-03-30 22:30:27 -0400 | [diff] [blame] | 606 | } |
Bob Copeland | 3a702e4 | 2009-03-30 22:30:29 -0400 | [diff] [blame] | 607 | EXPORT_SYMBOL(ath_regd_get_band_ctl); |