Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2004-2011 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 "core.h" |
| 18 | #include "cfg80211.h" |
| 19 | #include "debug.h" |
Kalle Valo | abcb344 | 2011-07-22 08:26:20 +0300 | [diff] [blame] | 20 | #include "hif-ops.h" |
Kalle Valo | 003353b0d | 2011-09-01 10:14:21 +0300 | [diff] [blame] | 21 | #include "testmode.h" |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 22 | |
Jouni Malinen | 6bbc7c3 | 2011-09-05 17:38:47 +0300 | [diff] [blame] | 23 | static unsigned int ath6kl_p2p; |
Vasanthakumar Thiagarajan | 3226f68a | 2011-10-25 19:34:24 +0530 | [diff] [blame^] | 24 | static unsigned int multi_norm_if_support; |
Jouni Malinen | 6bbc7c3 | 2011-09-05 17:38:47 +0300 | [diff] [blame] | 25 | |
| 26 | module_param(ath6kl_p2p, uint, 0644); |
Vasanthakumar Thiagarajan | 3226f68a | 2011-10-25 19:34:24 +0530 | [diff] [blame^] | 27 | module_param(multi_norm_if_support, uint, 0644); |
Jouni Malinen | 6bbc7c3 | 2011-09-05 17:38:47 +0300 | [diff] [blame] | 28 | |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 29 | #define RATETAB_ENT(_rate, _rateid, _flags) { \ |
| 30 | .bitrate = (_rate), \ |
| 31 | .flags = (_flags), \ |
| 32 | .hw_value = (_rateid), \ |
| 33 | } |
| 34 | |
| 35 | #define CHAN2G(_channel, _freq, _flags) { \ |
| 36 | .band = IEEE80211_BAND_2GHZ, \ |
| 37 | .hw_value = (_channel), \ |
| 38 | .center_freq = (_freq), \ |
| 39 | .flags = (_flags), \ |
| 40 | .max_antenna_gain = 0, \ |
| 41 | .max_power = 30, \ |
| 42 | } |
| 43 | |
| 44 | #define CHAN5G(_channel, _flags) { \ |
| 45 | .band = IEEE80211_BAND_5GHZ, \ |
| 46 | .hw_value = (_channel), \ |
| 47 | .center_freq = 5000 + (5 * (_channel)), \ |
| 48 | .flags = (_flags), \ |
| 49 | .max_antenna_gain = 0, \ |
| 50 | .max_power = 30, \ |
| 51 | } |
| 52 | |
| 53 | static struct ieee80211_rate ath6kl_rates[] = { |
| 54 | RATETAB_ENT(10, 0x1, 0), |
| 55 | RATETAB_ENT(20, 0x2, 0), |
| 56 | RATETAB_ENT(55, 0x4, 0), |
| 57 | RATETAB_ENT(110, 0x8, 0), |
| 58 | RATETAB_ENT(60, 0x10, 0), |
| 59 | RATETAB_ENT(90, 0x20, 0), |
| 60 | RATETAB_ENT(120, 0x40, 0), |
| 61 | RATETAB_ENT(180, 0x80, 0), |
| 62 | RATETAB_ENT(240, 0x100, 0), |
| 63 | RATETAB_ENT(360, 0x200, 0), |
| 64 | RATETAB_ENT(480, 0x400, 0), |
| 65 | RATETAB_ENT(540, 0x800, 0), |
| 66 | }; |
| 67 | |
| 68 | #define ath6kl_a_rates (ath6kl_rates + 4) |
| 69 | #define ath6kl_a_rates_size 8 |
| 70 | #define ath6kl_g_rates (ath6kl_rates + 0) |
| 71 | #define ath6kl_g_rates_size 12 |
| 72 | |
| 73 | static struct ieee80211_channel ath6kl_2ghz_channels[] = { |
| 74 | CHAN2G(1, 2412, 0), |
| 75 | CHAN2G(2, 2417, 0), |
| 76 | CHAN2G(3, 2422, 0), |
| 77 | CHAN2G(4, 2427, 0), |
| 78 | CHAN2G(5, 2432, 0), |
| 79 | CHAN2G(6, 2437, 0), |
| 80 | CHAN2G(7, 2442, 0), |
| 81 | CHAN2G(8, 2447, 0), |
| 82 | CHAN2G(9, 2452, 0), |
| 83 | CHAN2G(10, 2457, 0), |
| 84 | CHAN2G(11, 2462, 0), |
| 85 | CHAN2G(12, 2467, 0), |
| 86 | CHAN2G(13, 2472, 0), |
| 87 | CHAN2G(14, 2484, 0), |
| 88 | }; |
| 89 | |
| 90 | static struct ieee80211_channel ath6kl_5ghz_a_channels[] = { |
| 91 | CHAN5G(34, 0), CHAN5G(36, 0), |
| 92 | CHAN5G(38, 0), CHAN5G(40, 0), |
| 93 | CHAN5G(42, 0), CHAN5G(44, 0), |
| 94 | CHAN5G(46, 0), CHAN5G(48, 0), |
| 95 | CHAN5G(52, 0), CHAN5G(56, 0), |
| 96 | CHAN5G(60, 0), CHAN5G(64, 0), |
| 97 | CHAN5G(100, 0), CHAN5G(104, 0), |
| 98 | CHAN5G(108, 0), CHAN5G(112, 0), |
| 99 | CHAN5G(116, 0), CHAN5G(120, 0), |
| 100 | CHAN5G(124, 0), CHAN5G(128, 0), |
| 101 | CHAN5G(132, 0), CHAN5G(136, 0), |
| 102 | CHAN5G(140, 0), CHAN5G(149, 0), |
| 103 | CHAN5G(153, 0), CHAN5G(157, 0), |
| 104 | CHAN5G(161, 0), CHAN5G(165, 0), |
| 105 | CHAN5G(184, 0), CHAN5G(188, 0), |
| 106 | CHAN5G(192, 0), CHAN5G(196, 0), |
| 107 | CHAN5G(200, 0), CHAN5G(204, 0), |
| 108 | CHAN5G(208, 0), CHAN5G(212, 0), |
| 109 | CHAN5G(216, 0), |
| 110 | }; |
| 111 | |
| 112 | static struct ieee80211_supported_band ath6kl_band_2ghz = { |
| 113 | .n_channels = ARRAY_SIZE(ath6kl_2ghz_channels), |
| 114 | .channels = ath6kl_2ghz_channels, |
| 115 | .n_bitrates = ath6kl_g_rates_size, |
| 116 | .bitrates = ath6kl_g_rates, |
| 117 | }; |
| 118 | |
| 119 | static struct ieee80211_supported_band ath6kl_band_5ghz = { |
| 120 | .n_channels = ARRAY_SIZE(ath6kl_5ghz_a_channels), |
| 121 | .channels = ath6kl_5ghz_a_channels, |
| 122 | .n_bitrates = ath6kl_a_rates_size, |
| 123 | .bitrates = ath6kl_a_rates, |
| 124 | }; |
| 125 | |
Jouni Malinen | 837cb97 | 2011-10-11 17:31:57 +0300 | [diff] [blame] | 126 | #define CCKM_KRK_CIPHER_SUITE 0x004096ff /* use for KRK */ |
| 127 | |
Vasanthakumar Thiagarajan | 240d279 | 2011-10-25 19:34:13 +0530 | [diff] [blame] | 128 | static int ath6kl_set_wpa_version(struct ath6kl_vif *vif, |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 129 | enum nl80211_wpa_versions wpa_version) |
| 130 | { |
| 131 | ath6kl_dbg(ATH6KL_DBG_WLAN_CFG, "%s: %u\n", __func__, wpa_version); |
| 132 | |
| 133 | if (!wpa_version) { |
Vasanthakumar Thiagarajan | 3450334 | 2011-10-25 19:34:02 +0530 | [diff] [blame] | 134 | vif->auth_mode = NONE_AUTH; |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 135 | } else if (wpa_version & NL80211_WPA_VERSION_2) { |
Vasanthakumar Thiagarajan | 3450334 | 2011-10-25 19:34:02 +0530 | [diff] [blame] | 136 | vif->auth_mode = WPA2_AUTH; |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 137 | } else if (wpa_version & NL80211_WPA_VERSION_1) { |
Vasanthakumar Thiagarajan | 3450334 | 2011-10-25 19:34:02 +0530 | [diff] [blame] | 138 | vif->auth_mode = WPA_AUTH; |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 139 | } else { |
| 140 | ath6kl_err("%s: %u not supported\n", __func__, wpa_version); |
| 141 | return -ENOTSUPP; |
| 142 | } |
| 143 | |
| 144 | return 0; |
| 145 | } |
| 146 | |
Vasanthakumar Thiagarajan | 240d279 | 2011-10-25 19:34:13 +0530 | [diff] [blame] | 147 | static int ath6kl_set_auth_type(struct ath6kl_vif *vif, |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 148 | enum nl80211_auth_type auth_type) |
| 149 | { |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 150 | ath6kl_dbg(ATH6KL_DBG_WLAN_CFG, "%s: 0x%x\n", __func__, auth_type); |
| 151 | |
| 152 | switch (auth_type) { |
| 153 | case NL80211_AUTHTYPE_OPEN_SYSTEM: |
Vasanthakumar Thiagarajan | 3450334 | 2011-10-25 19:34:02 +0530 | [diff] [blame] | 154 | vif->dot11_auth_mode = OPEN_AUTH; |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 155 | break; |
| 156 | case NL80211_AUTHTYPE_SHARED_KEY: |
Vasanthakumar Thiagarajan | 3450334 | 2011-10-25 19:34:02 +0530 | [diff] [blame] | 157 | vif->dot11_auth_mode = SHARED_AUTH; |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 158 | break; |
| 159 | case NL80211_AUTHTYPE_NETWORK_EAP: |
Vasanthakumar Thiagarajan | 3450334 | 2011-10-25 19:34:02 +0530 | [diff] [blame] | 160 | vif->dot11_auth_mode = LEAP_AUTH; |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 161 | break; |
| 162 | |
| 163 | case NL80211_AUTHTYPE_AUTOMATIC: |
Vasanthakumar Thiagarajan | 3450334 | 2011-10-25 19:34:02 +0530 | [diff] [blame] | 164 | vif->dot11_auth_mode = OPEN_AUTH | SHARED_AUTH; |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 165 | break; |
| 166 | |
| 167 | default: |
| 168 | ath6kl_err("%s: 0x%x not spported\n", __func__, auth_type); |
| 169 | return -ENOTSUPP; |
| 170 | } |
| 171 | |
| 172 | return 0; |
| 173 | } |
| 174 | |
Vasanthakumar Thiagarajan | 240d279 | 2011-10-25 19:34:13 +0530 | [diff] [blame] | 175 | static int ath6kl_set_cipher(struct ath6kl_vif *vif, u32 cipher, bool ucast) |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 176 | { |
Vasanthakumar Thiagarajan | 3450334 | 2011-10-25 19:34:02 +0530 | [diff] [blame] | 177 | u8 *ar_cipher = ucast ? &vif->prwise_crypto : &vif->grp_crypto; |
| 178 | u8 *ar_cipher_len = ucast ? &vif->prwise_crypto_len : |
| 179 | &vif->grp_crypto_len; |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 180 | |
| 181 | ath6kl_dbg(ATH6KL_DBG_WLAN_CFG, "%s: cipher 0x%x, ucast %u\n", |
| 182 | __func__, cipher, ucast); |
| 183 | |
| 184 | switch (cipher) { |
| 185 | case 0: |
| 186 | /* our own hack to use value 0 as no crypto used */ |
| 187 | *ar_cipher = NONE_CRYPT; |
| 188 | *ar_cipher_len = 0; |
| 189 | break; |
| 190 | case WLAN_CIPHER_SUITE_WEP40: |
| 191 | *ar_cipher = WEP_CRYPT; |
| 192 | *ar_cipher_len = 5; |
| 193 | break; |
| 194 | case WLAN_CIPHER_SUITE_WEP104: |
| 195 | *ar_cipher = WEP_CRYPT; |
| 196 | *ar_cipher_len = 13; |
| 197 | break; |
| 198 | case WLAN_CIPHER_SUITE_TKIP: |
| 199 | *ar_cipher = TKIP_CRYPT; |
| 200 | *ar_cipher_len = 0; |
| 201 | break; |
| 202 | case WLAN_CIPHER_SUITE_CCMP: |
| 203 | *ar_cipher = AES_CRYPT; |
| 204 | *ar_cipher_len = 0; |
| 205 | break; |
| 206 | default: |
| 207 | ath6kl_err("cipher 0x%x not supported\n", cipher); |
| 208 | return -ENOTSUPP; |
| 209 | } |
| 210 | |
| 211 | return 0; |
| 212 | } |
| 213 | |
Vasanthakumar Thiagarajan | 240d279 | 2011-10-25 19:34:13 +0530 | [diff] [blame] | 214 | static void ath6kl_set_key_mgmt(struct ath6kl_vif *vif, u32 key_mgmt) |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 215 | { |
| 216 | ath6kl_dbg(ATH6KL_DBG_WLAN_CFG, "%s: 0x%x\n", __func__, key_mgmt); |
| 217 | |
| 218 | if (key_mgmt == WLAN_AKM_SUITE_PSK) { |
Vasanthakumar Thiagarajan | 3450334 | 2011-10-25 19:34:02 +0530 | [diff] [blame] | 219 | if (vif->auth_mode == WPA_AUTH) |
| 220 | vif->auth_mode = WPA_PSK_AUTH; |
| 221 | else if (vif->auth_mode == WPA2_AUTH) |
| 222 | vif->auth_mode = WPA2_PSK_AUTH; |
Jouni Malinen | 837cb97 | 2011-10-11 17:31:57 +0300 | [diff] [blame] | 223 | } else if (key_mgmt == 0x00409600) { |
Vasanthakumar Thiagarajan | 3450334 | 2011-10-25 19:34:02 +0530 | [diff] [blame] | 224 | if (vif->auth_mode == WPA_AUTH) |
| 225 | vif->auth_mode = WPA_AUTH_CCKM; |
| 226 | else if (vif->auth_mode == WPA2_AUTH) |
| 227 | vif->auth_mode = WPA2_AUTH_CCKM; |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 228 | } else if (key_mgmt != WLAN_AKM_SUITE_8021X) { |
Vasanthakumar Thiagarajan | 3450334 | 2011-10-25 19:34:02 +0530 | [diff] [blame] | 229 | vif->auth_mode = NONE_AUTH; |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 230 | } |
| 231 | } |
| 232 | |
Vasanthakumar Thiagarajan | 990bd91 | 2011-10-25 19:34:20 +0530 | [diff] [blame] | 233 | static bool ath6kl_cfg80211_ready(struct ath6kl_vif *vif) |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 234 | { |
Vasanthakumar Thiagarajan | 990bd91 | 2011-10-25 19:34:20 +0530 | [diff] [blame] | 235 | struct ath6kl *ar = vif->ar; |
Vasanthakumar Thiagarajan | 59c9844 | 2011-10-25 19:34:01 +0530 | [diff] [blame] | 236 | |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 237 | if (!test_bit(WMI_READY, &ar->flag)) { |
| 238 | ath6kl_err("wmi is not ready\n"); |
| 239 | return false; |
| 240 | } |
| 241 | |
Vasanthakumar Thiagarajan | 59c9844 | 2011-10-25 19:34:01 +0530 | [diff] [blame] | 242 | if (!test_bit(WLAN_ENABLED, &vif->flags)) { |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 243 | ath6kl_err("wlan disabled\n"); |
| 244 | return false; |
| 245 | } |
| 246 | |
| 247 | return true; |
| 248 | } |
| 249 | |
Kevin Fang | 6981ffd | 2011-10-07 08:51:19 +0800 | [diff] [blame] | 250 | static bool ath6kl_is_wpa_ie(const u8 *pos) |
| 251 | { |
| 252 | return pos[0] == WLAN_EID_WPA && pos[1] >= 4 && |
| 253 | pos[2] == 0x00 && pos[3] == 0x50 && |
| 254 | pos[4] == 0xf2 && pos[5] == 0x01; |
| 255 | } |
| 256 | |
| 257 | static bool ath6kl_is_rsn_ie(const u8 *pos) |
| 258 | { |
| 259 | return pos[0] == WLAN_EID_RSN; |
| 260 | } |
| 261 | |
Vasanthakumar Thiagarajan | 334234b | 2011-10-25 19:34:12 +0530 | [diff] [blame] | 262 | static int ath6kl_set_assoc_req_ies(struct ath6kl_vif *vif, const u8 *ies, |
| 263 | size_t ies_len) |
Kevin Fang | 6981ffd | 2011-10-07 08:51:19 +0800 | [diff] [blame] | 264 | { |
Vasanthakumar Thiagarajan | 334234b | 2011-10-25 19:34:12 +0530 | [diff] [blame] | 265 | struct ath6kl *ar = vif->ar; |
Kevin Fang | 6981ffd | 2011-10-07 08:51:19 +0800 | [diff] [blame] | 266 | const u8 *pos; |
| 267 | u8 *buf = NULL; |
| 268 | size_t len = 0; |
| 269 | int ret; |
| 270 | |
| 271 | /* |
| 272 | * Filter out RSN/WPA IE(s) |
| 273 | */ |
| 274 | |
| 275 | if (ies && ies_len) { |
| 276 | buf = kmalloc(ies_len, GFP_KERNEL); |
| 277 | if (buf == NULL) |
| 278 | return -ENOMEM; |
| 279 | pos = ies; |
| 280 | |
| 281 | while (pos + 1 < ies + ies_len) { |
| 282 | if (pos + 2 + pos[1] > ies + ies_len) |
| 283 | break; |
| 284 | if (!(ath6kl_is_wpa_ie(pos) || ath6kl_is_rsn_ie(pos))) { |
| 285 | memcpy(buf + len, pos, 2 + pos[1]); |
| 286 | len += 2 + pos[1]; |
| 287 | } |
| 288 | pos += 2 + pos[1]; |
| 289 | } |
| 290 | } |
| 291 | |
Vasanthakumar Thiagarajan | 334234b | 2011-10-25 19:34:12 +0530 | [diff] [blame] | 292 | ret = ath6kl_wmi_set_appie_cmd(ar->wmi, vif->fw_vif_idx, |
| 293 | WMI_FRAME_ASSOC_REQ, buf, len); |
Kevin Fang | 6981ffd | 2011-10-07 08:51:19 +0800 | [diff] [blame] | 294 | kfree(buf); |
| 295 | return ret; |
| 296 | } |
| 297 | |
Vasanthakumar Thiagarajan | 5505597 | 2011-10-25 19:34:23 +0530 | [diff] [blame] | 298 | static int ath6kl_nliftype_to_drv_iftype(enum nl80211_iftype type, u8 *nw_type) |
| 299 | { |
| 300 | switch (type) { |
| 301 | case NL80211_IFTYPE_STATION: |
| 302 | *nw_type = INFRA_NETWORK; |
| 303 | break; |
| 304 | case NL80211_IFTYPE_ADHOC: |
| 305 | *nw_type = ADHOC_NETWORK; |
| 306 | break; |
| 307 | case NL80211_IFTYPE_AP: |
| 308 | *nw_type = AP_NETWORK; |
| 309 | break; |
| 310 | case NL80211_IFTYPE_P2P_CLIENT: |
| 311 | *nw_type = INFRA_NETWORK; |
| 312 | break; |
| 313 | case NL80211_IFTYPE_P2P_GO: |
| 314 | *nw_type = AP_NETWORK; |
| 315 | break; |
| 316 | default: |
| 317 | ath6kl_err("invalid interface type %u\n", type); |
| 318 | return -ENOTSUPP; |
| 319 | } |
| 320 | |
| 321 | return 0; |
| 322 | } |
| 323 | |
| 324 | static bool ath6kl_is_valid_iftype(struct ath6kl *ar, enum nl80211_iftype type, |
| 325 | u8 *if_idx, u8 *nw_type) |
| 326 | { |
| 327 | int i; |
| 328 | |
| 329 | if (ath6kl_nliftype_to_drv_iftype(type, nw_type)) |
| 330 | return false; |
| 331 | |
| 332 | if (ar->ibss_if_active || ((type == NL80211_IFTYPE_ADHOC) && |
| 333 | ar->num_vif)) |
| 334 | return false; |
| 335 | |
| 336 | if (type == NL80211_IFTYPE_STATION || |
| 337 | type == NL80211_IFTYPE_AP || type == NL80211_IFTYPE_ADHOC) { |
| 338 | for (i = 0; i < MAX_NUM_VIF; i++) { |
| 339 | if ((ar->avail_idx_map >> i) & BIT(0)) { |
| 340 | *if_idx = i; |
| 341 | return true; |
| 342 | } |
| 343 | } |
| 344 | } |
| 345 | |
Vasanthakumar Thiagarajan | 3226f68a | 2011-10-25 19:34:24 +0530 | [diff] [blame^] | 346 | if (type == NL80211_IFTYPE_P2P_CLIENT || |
| 347 | type == NL80211_IFTYPE_P2P_GO) { |
| 348 | for (i = ar->max_norm_iface; i < MAX_NUM_VIF; i++) { |
| 349 | if ((ar->avail_idx_map >> i) & BIT(0)) { |
| 350 | *if_idx = i; |
| 351 | return true; |
| 352 | } |
| 353 | } |
| 354 | } |
| 355 | |
Vasanthakumar Thiagarajan | 5505597 | 2011-10-25 19:34:23 +0530 | [diff] [blame] | 356 | return false; |
| 357 | } |
| 358 | |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 359 | static int ath6kl_cfg80211_connect(struct wiphy *wiphy, struct net_device *dev, |
| 360 | struct cfg80211_connect_params *sme) |
| 361 | { |
| 362 | struct ath6kl *ar = ath6kl_priv(dev); |
Vasanthakumar Thiagarajan | 59c9844 | 2011-10-25 19:34:01 +0530 | [diff] [blame] | 363 | struct ath6kl_vif *vif = netdev_priv(dev); |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 364 | int status; |
| 365 | |
Vasanthakumar Thiagarajan | 14ee6f6 | 2011-10-25 19:34:09 +0530 | [diff] [blame] | 366 | vif->sme_state = SME_CONNECTING; |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 367 | |
Vasanthakumar Thiagarajan | 990bd91 | 2011-10-25 19:34:20 +0530 | [diff] [blame] | 368 | if (!ath6kl_cfg80211_ready(vif)) |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 369 | return -EIO; |
| 370 | |
| 371 | if (test_bit(DESTROY_IN_PROGRESS, &ar->flag)) { |
| 372 | ath6kl_err("destroy in progress\n"); |
| 373 | return -EBUSY; |
| 374 | } |
| 375 | |
| 376 | if (test_bit(SKIP_SCAN, &ar->flag) && |
| 377 | ((sme->channel && sme->channel->center_freq == 0) || |
| 378 | (sme->bssid && is_zero_ether_addr(sme->bssid)))) { |
| 379 | ath6kl_err("SkipScan: channel or bssid invalid\n"); |
| 380 | return -EINVAL; |
| 381 | } |
| 382 | |
| 383 | if (down_interruptible(&ar->sem)) { |
| 384 | ath6kl_err("busy, couldn't get access\n"); |
| 385 | return -ERESTARTSYS; |
| 386 | } |
| 387 | |
| 388 | if (test_bit(DESTROY_IN_PROGRESS, &ar->flag)) { |
| 389 | ath6kl_err("busy, destroy in progress\n"); |
| 390 | up(&ar->sem); |
| 391 | return -EBUSY; |
| 392 | } |
| 393 | |
| 394 | if (ar->tx_pending[ath6kl_wmi_get_control_ep(ar->wmi)]) { |
| 395 | /* |
| 396 | * sleep until the command queue drains |
| 397 | */ |
| 398 | wait_event_interruptible_timeout(ar->event_wq, |
| 399 | ar->tx_pending[ath6kl_wmi_get_control_ep(ar->wmi)] == 0, |
| 400 | WMI_TIMEOUT); |
| 401 | if (signal_pending(current)) { |
| 402 | ath6kl_err("cmd queue drain timeout\n"); |
| 403 | up(&ar->sem); |
| 404 | return -EINTR; |
| 405 | } |
| 406 | } |
| 407 | |
Kevin Fang | 6981ffd | 2011-10-07 08:51:19 +0800 | [diff] [blame] | 408 | if (sme->ie && (sme->ie_len > 0)) { |
Vasanthakumar Thiagarajan | 334234b | 2011-10-25 19:34:12 +0530 | [diff] [blame] | 409 | status = ath6kl_set_assoc_req_ies(vif, sme->ie, sme->ie_len); |
Kevin Fang | 6981ffd | 2011-10-07 08:51:19 +0800 | [diff] [blame] | 410 | if (status) |
| 411 | return status; |
| 412 | } |
| 413 | |
Vasanthakumar Thiagarajan | 59c9844 | 2011-10-25 19:34:01 +0530 | [diff] [blame] | 414 | if (test_bit(CONNECTED, &vif->flags) && |
Vasanthakumar Thiagarajan | 3450334 | 2011-10-25 19:34:02 +0530 | [diff] [blame] | 415 | vif->ssid_len == sme->ssid_len && |
| 416 | !memcmp(vif->ssid, sme->ssid, vif->ssid_len)) { |
Vasanthakumar Thiagarajan | cf5333d | 2011-10-25 19:34:10 +0530 | [diff] [blame] | 417 | vif->reconnect_flag = true; |
Vasanthakumar Thiagarajan | 334234b | 2011-10-25 19:34:12 +0530 | [diff] [blame] | 418 | status = ath6kl_wmi_reconnect_cmd(ar->wmi, vif->fw_vif_idx, |
| 419 | vif->req_bssid, |
Vasanthakumar Thiagarajan | f74bac5 | 2011-10-25 19:34:05 +0530 | [diff] [blame] | 420 | vif->ch_hint); |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 421 | |
| 422 | up(&ar->sem); |
| 423 | if (status) { |
| 424 | ath6kl_err("wmi_reconnect_cmd failed\n"); |
| 425 | return -EIO; |
| 426 | } |
| 427 | return 0; |
Vasanthakumar Thiagarajan | 3450334 | 2011-10-25 19:34:02 +0530 | [diff] [blame] | 428 | } else if (vif->ssid_len == sme->ssid_len && |
| 429 | !memcmp(vif->ssid, sme->ssid, vif->ssid_len)) { |
Vasanthakumar Thiagarajan | 240d279 | 2011-10-25 19:34:13 +0530 | [diff] [blame] | 430 | ath6kl_disconnect(vif); |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 431 | } |
| 432 | |
Vasanthakumar Thiagarajan | 3450334 | 2011-10-25 19:34:02 +0530 | [diff] [blame] | 433 | memset(vif->ssid, 0, sizeof(vif->ssid)); |
| 434 | vif->ssid_len = sme->ssid_len; |
| 435 | memcpy(vif->ssid, sme->ssid, sme->ssid_len); |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 436 | |
| 437 | if (sme->channel) |
Vasanthakumar Thiagarajan | f74bac5 | 2011-10-25 19:34:05 +0530 | [diff] [blame] | 438 | vif->ch_hint = sme->channel->center_freq; |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 439 | |
Vasanthakumar Thiagarajan | 8c8b65e | 2011-10-25 19:34:04 +0530 | [diff] [blame] | 440 | memset(vif->req_bssid, 0, sizeof(vif->req_bssid)); |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 441 | if (sme->bssid && !is_broadcast_ether_addr(sme->bssid)) |
Vasanthakumar Thiagarajan | 8c8b65e | 2011-10-25 19:34:04 +0530 | [diff] [blame] | 442 | memcpy(vif->req_bssid, sme->bssid, sizeof(vif->req_bssid)); |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 443 | |
Vasanthakumar Thiagarajan | 240d279 | 2011-10-25 19:34:13 +0530 | [diff] [blame] | 444 | ath6kl_set_wpa_version(vif, sme->crypto.wpa_versions); |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 445 | |
Vasanthakumar Thiagarajan | 240d279 | 2011-10-25 19:34:13 +0530 | [diff] [blame] | 446 | status = ath6kl_set_auth_type(vif, sme->auth_type); |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 447 | if (status) { |
| 448 | up(&ar->sem); |
| 449 | return status; |
| 450 | } |
| 451 | |
| 452 | if (sme->crypto.n_ciphers_pairwise) |
Vasanthakumar Thiagarajan | 240d279 | 2011-10-25 19:34:13 +0530 | [diff] [blame] | 453 | ath6kl_set_cipher(vif, sme->crypto.ciphers_pairwise[0], true); |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 454 | else |
Vasanthakumar Thiagarajan | 240d279 | 2011-10-25 19:34:13 +0530 | [diff] [blame] | 455 | ath6kl_set_cipher(vif, 0, true); |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 456 | |
Vasanthakumar Thiagarajan | 240d279 | 2011-10-25 19:34:13 +0530 | [diff] [blame] | 457 | ath6kl_set_cipher(vif, sme->crypto.cipher_group, false); |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 458 | |
| 459 | if (sme->crypto.n_akm_suites) |
Vasanthakumar Thiagarajan | 240d279 | 2011-10-25 19:34:13 +0530 | [diff] [blame] | 460 | ath6kl_set_key_mgmt(vif, sme->crypto.akm_suites[0]); |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 461 | |
| 462 | if ((sme->key_len) && |
Vasanthakumar Thiagarajan | 3450334 | 2011-10-25 19:34:02 +0530 | [diff] [blame] | 463 | (vif->auth_mode == NONE_AUTH) && |
| 464 | (vif->prwise_crypto == WEP_CRYPT)) { |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 465 | struct ath6kl_key *key = NULL; |
| 466 | |
| 467 | if (sme->key_idx < WMI_MIN_KEY_INDEX || |
| 468 | sme->key_idx > WMI_MAX_KEY_INDEX) { |
| 469 | ath6kl_err("key index %d out of bounds\n", |
| 470 | sme->key_idx); |
| 471 | up(&ar->sem); |
| 472 | return -ENOENT; |
| 473 | } |
| 474 | |
Vasanthakumar Thiagarajan | 6f2a73f | 2011-10-25 19:34:06 +0530 | [diff] [blame] | 475 | key = &vif->keys[sme->key_idx]; |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 476 | key->key_len = sme->key_len; |
| 477 | memcpy(key->key, sme->key, key->key_len); |
Vasanthakumar Thiagarajan | 3450334 | 2011-10-25 19:34:02 +0530 | [diff] [blame] | 478 | key->cipher = vif->prwise_crypto; |
| 479 | vif->def_txkey_index = sme->key_idx; |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 480 | |
Vasanthakumar Thiagarajan | 334234b | 2011-10-25 19:34:12 +0530 | [diff] [blame] | 481 | ath6kl_wmi_addkey_cmd(ar->wmi, vif->fw_vif_idx, sme->key_idx, |
Vasanthakumar Thiagarajan | 3450334 | 2011-10-25 19:34:02 +0530 | [diff] [blame] | 482 | vif->prwise_crypto, |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 483 | GROUP_USAGE | TX_USAGE, |
| 484 | key->key_len, |
| 485 | NULL, |
| 486 | key->key, KEY_OP_INIT_VAL, NULL, |
| 487 | NO_SYNC_WMIFLAG); |
| 488 | } |
| 489 | |
| 490 | if (!ar->usr_bss_filter) { |
Vasanthakumar Thiagarajan | 59c9844 | 2011-10-25 19:34:01 +0530 | [diff] [blame] | 491 | clear_bit(CLEAR_BSSFILTER_ON_BEACON, &vif->flags); |
Vasanthakumar Thiagarajan | 240d279 | 2011-10-25 19:34:13 +0530 | [diff] [blame] | 492 | if (ath6kl_wmi_bssfilter_cmd(ar->wmi, vif->fw_vif_idx, |
| 493 | ALL_BSS_FILTER, 0) != 0) { |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 494 | ath6kl_err("couldn't set bss filtering\n"); |
| 495 | up(&ar->sem); |
| 496 | return -EIO; |
| 497 | } |
| 498 | } |
| 499 | |
Vasanthakumar Thiagarajan | f5938f2 | 2011-10-25 19:34:03 +0530 | [diff] [blame] | 500 | vif->nw_type = vif->next_mode; |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 501 | |
| 502 | ath6kl_dbg(ATH6KL_DBG_WLAN_CFG, |
| 503 | "%s: connect called with authmode %d dot11 auth %d" |
| 504 | " PW crypto %d PW crypto len %d GRP crypto %d" |
| 505 | " GRP crypto len %d channel hint %u\n", |
| 506 | __func__, |
Vasanthakumar Thiagarajan | 3450334 | 2011-10-25 19:34:02 +0530 | [diff] [blame] | 507 | vif->auth_mode, vif->dot11_auth_mode, vif->prwise_crypto, |
| 508 | vif->prwise_crypto_len, vif->grp_crypto, |
Vasanthakumar Thiagarajan | f74bac5 | 2011-10-25 19:34:05 +0530 | [diff] [blame] | 509 | vif->grp_crypto_len, vif->ch_hint); |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 510 | |
Vasanthakumar Thiagarajan | cf5333d | 2011-10-25 19:34:10 +0530 | [diff] [blame] | 511 | vif->reconnect_flag = 0; |
Vasanthakumar Thiagarajan | 334234b | 2011-10-25 19:34:12 +0530 | [diff] [blame] | 512 | status = ath6kl_wmi_connect_cmd(ar->wmi, vif->fw_vif_idx, vif->nw_type, |
Vasanthakumar Thiagarajan | 3450334 | 2011-10-25 19:34:02 +0530 | [diff] [blame] | 513 | vif->dot11_auth_mode, vif->auth_mode, |
| 514 | vif->prwise_crypto, |
| 515 | vif->prwise_crypto_len, |
| 516 | vif->grp_crypto, vif->grp_crypto_len, |
| 517 | vif->ssid_len, vif->ssid, |
Vasanthakumar Thiagarajan | f74bac5 | 2011-10-25 19:34:05 +0530 | [diff] [blame] | 518 | vif->req_bssid, vif->ch_hint, |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 519 | ar->connect_ctrl_flags); |
| 520 | |
| 521 | up(&ar->sem); |
| 522 | |
| 523 | if (status == -EINVAL) { |
Vasanthakumar Thiagarajan | 3450334 | 2011-10-25 19:34:02 +0530 | [diff] [blame] | 524 | memset(vif->ssid, 0, sizeof(vif->ssid)); |
| 525 | vif->ssid_len = 0; |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 526 | ath6kl_err("invalid request\n"); |
| 527 | return -ENOENT; |
| 528 | } else if (status) { |
| 529 | ath6kl_err("ath6kl_wmi_connect_cmd failed\n"); |
| 530 | return -EIO; |
| 531 | } |
| 532 | |
| 533 | if ((!(ar->connect_ctrl_flags & CONNECT_DO_WPA_OFFLOAD)) && |
Vasanthakumar Thiagarajan | 3450334 | 2011-10-25 19:34:02 +0530 | [diff] [blame] | 534 | ((vif->auth_mode == WPA_PSK_AUTH) |
| 535 | || (vif->auth_mode == WPA2_PSK_AUTH))) { |
Vasanthakumar Thiagarajan | de3ad71 | 2011-10-25 19:34:08 +0530 | [diff] [blame] | 536 | mod_timer(&vif->disconnect_timer, |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 537 | jiffies + msecs_to_jiffies(DISCON_TIMER_INTVAL)); |
| 538 | } |
| 539 | |
| 540 | ar->connect_ctrl_flags &= ~CONNECT_DO_WPA_OFFLOAD; |
Vasanthakumar Thiagarajan | 59c9844 | 2011-10-25 19:34:01 +0530 | [diff] [blame] | 541 | set_bit(CONNECT_PEND, &vif->flags); |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 542 | |
| 543 | return 0; |
| 544 | } |
| 545 | |
Vasanthakumar Thiagarajan | 240d279 | 2011-10-25 19:34:13 +0530 | [diff] [blame] | 546 | static int ath6kl_add_bss_if_needed(struct ath6kl_vif *vif, const u8 *bssid, |
Jouni Malinen | 01cac47 | 2011-09-19 19:14:59 +0300 | [diff] [blame] | 547 | struct ieee80211_channel *chan, |
| 548 | const u8 *beacon_ie, size_t beacon_ie_len) |
| 549 | { |
Vasanthakumar Thiagarajan | 240d279 | 2011-10-25 19:34:13 +0530 | [diff] [blame] | 550 | struct ath6kl *ar = vif->ar; |
Jouni Malinen | 01cac47 | 2011-09-19 19:14:59 +0300 | [diff] [blame] | 551 | struct cfg80211_bss *bss; |
| 552 | u8 *ie; |
| 553 | |
Vasanthakumar Thiagarajan | be98e3a | 2011-10-25 19:33:57 +0530 | [diff] [blame] | 554 | bss = cfg80211_get_bss(ar->wiphy, chan, bssid, |
Vasanthakumar Thiagarajan | 3450334 | 2011-10-25 19:34:02 +0530 | [diff] [blame] | 555 | vif->ssid, vif->ssid_len, WLAN_CAPABILITY_ESS, |
Jouni Malinen | 01cac47 | 2011-09-19 19:14:59 +0300 | [diff] [blame] | 556 | WLAN_CAPABILITY_ESS); |
| 557 | if (bss == NULL) { |
| 558 | /* |
| 559 | * Since cfg80211 may not yet know about the BSS, |
| 560 | * generate a partial entry until the first BSS info |
| 561 | * event becomes available. |
| 562 | * |
| 563 | * Prepend SSID element since it is not included in the Beacon |
| 564 | * IEs from the target. |
| 565 | */ |
Vasanthakumar Thiagarajan | 3450334 | 2011-10-25 19:34:02 +0530 | [diff] [blame] | 566 | ie = kmalloc(2 + vif->ssid_len + beacon_ie_len, GFP_KERNEL); |
Jouni Malinen | 01cac47 | 2011-09-19 19:14:59 +0300 | [diff] [blame] | 567 | if (ie == NULL) |
| 568 | return -ENOMEM; |
| 569 | ie[0] = WLAN_EID_SSID; |
Vasanthakumar Thiagarajan | 3450334 | 2011-10-25 19:34:02 +0530 | [diff] [blame] | 570 | ie[1] = vif->ssid_len; |
| 571 | memcpy(ie + 2, vif->ssid, vif->ssid_len); |
| 572 | memcpy(ie + 2 + vif->ssid_len, beacon_ie, beacon_ie_len); |
Vasanthakumar Thiagarajan | be98e3a | 2011-10-25 19:33:57 +0530 | [diff] [blame] | 573 | bss = cfg80211_inform_bss(ar->wiphy, chan, |
Jouni Malinen | 01cac47 | 2011-09-19 19:14:59 +0300 | [diff] [blame] | 574 | bssid, 0, WLAN_CAPABILITY_ESS, 100, |
Vasanthakumar Thiagarajan | 3450334 | 2011-10-25 19:34:02 +0530 | [diff] [blame] | 575 | ie, 2 + vif->ssid_len + beacon_ie_len, |
Jouni Malinen | 01cac47 | 2011-09-19 19:14:59 +0300 | [diff] [blame] | 576 | 0, GFP_KERNEL); |
| 577 | if (bss) |
| 578 | ath6kl_dbg(ATH6KL_DBG_WLAN_CFG, "added dummy bss for " |
| 579 | "%pM prior to indicating connect/roamed " |
| 580 | "event\n", bssid); |
| 581 | kfree(ie); |
| 582 | } else |
| 583 | ath6kl_dbg(ATH6KL_DBG_WLAN_CFG, "cfg80211 already has a bss " |
| 584 | "entry\n"); |
| 585 | |
| 586 | if (bss == NULL) |
| 587 | return -ENOMEM; |
| 588 | |
| 589 | cfg80211_put_bss(bss); |
| 590 | |
| 591 | return 0; |
| 592 | } |
| 593 | |
Vasanthakumar Thiagarajan | 240d279 | 2011-10-25 19:34:13 +0530 | [diff] [blame] | 594 | void ath6kl_cfg80211_connect_event(struct ath6kl_vif *vif, u16 channel, |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 595 | u8 *bssid, u16 listen_intvl, |
| 596 | u16 beacon_intvl, |
| 597 | enum network_type nw_type, |
| 598 | u8 beacon_ie_len, u8 assoc_req_len, |
| 599 | u8 assoc_resp_len, u8 *assoc_info) |
| 600 | { |
Jouni Malinen | 01cac47 | 2011-09-19 19:14:59 +0300 | [diff] [blame] | 601 | struct ieee80211_channel *chan; |
Vasanthakumar Thiagarajan | 240d279 | 2011-10-25 19:34:13 +0530 | [diff] [blame] | 602 | struct ath6kl *ar = vif->ar; |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 603 | |
| 604 | /* capinfo + listen interval */ |
| 605 | u8 assoc_req_ie_offset = sizeof(u16) + sizeof(u16); |
| 606 | |
| 607 | /* capinfo + status code + associd */ |
| 608 | u8 assoc_resp_ie_offset = sizeof(u16) + sizeof(u16) + sizeof(u16); |
| 609 | |
| 610 | u8 *assoc_req_ie = assoc_info + beacon_ie_len + assoc_req_ie_offset; |
| 611 | u8 *assoc_resp_ie = assoc_info + beacon_ie_len + assoc_req_len + |
| 612 | assoc_resp_ie_offset; |
| 613 | |
| 614 | assoc_req_len -= assoc_req_ie_offset; |
| 615 | assoc_resp_len -= assoc_resp_ie_offset; |
| 616 | |
Jouni Malinen | 32c1087 | 2011-09-19 19:15:07 +0300 | [diff] [blame] | 617 | /* |
| 618 | * Store Beacon interval here; DTIM period will be available only once |
| 619 | * a Beacon frame from the AP is seen. |
| 620 | */ |
Vasanthakumar Thiagarajan | cf5333d | 2011-10-25 19:34:10 +0530 | [diff] [blame] | 621 | vif->assoc_bss_beacon_int = beacon_intvl; |
Vasanthakumar Thiagarajan | 59c9844 | 2011-10-25 19:34:01 +0530 | [diff] [blame] | 622 | clear_bit(DTIM_PERIOD_AVAIL, &vif->flags); |
Jouni Malinen | 32c1087 | 2011-09-19 19:15:07 +0300 | [diff] [blame] | 623 | |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 624 | if (nw_type & ADHOC_NETWORK) { |
| 625 | if (ar->wdev->iftype != NL80211_IFTYPE_ADHOC) { |
| 626 | ath6kl_dbg(ATH6KL_DBG_WLAN_CFG, |
| 627 | "%s: ath6k not in ibss mode\n", __func__); |
| 628 | return; |
| 629 | } |
| 630 | } |
| 631 | |
| 632 | if (nw_type & INFRA_NETWORK) { |
Jouni Malinen | 6b5e5d2 | 2011-08-30 21:58:05 +0300 | [diff] [blame] | 633 | if (ar->wdev->iftype != NL80211_IFTYPE_STATION && |
| 634 | ar->wdev->iftype != NL80211_IFTYPE_P2P_CLIENT) { |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 635 | ath6kl_dbg(ATH6KL_DBG_WLAN_CFG, |
| 636 | "%s: ath6k not in station mode\n", __func__); |
| 637 | return; |
| 638 | } |
| 639 | } |
| 640 | |
Vasanthakumar Thiagarajan | be98e3a | 2011-10-25 19:33:57 +0530 | [diff] [blame] | 641 | chan = ieee80211_get_channel(ar->wiphy, (int) channel); |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 642 | |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 643 | |
| 644 | if (nw_type & ADHOC_NETWORK) { |
Vasanthakumar Thiagarajan | 240d279 | 2011-10-25 19:34:13 +0530 | [diff] [blame] | 645 | cfg80211_ibss_joined(vif->ndev, bssid, GFP_KERNEL); |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 646 | return; |
| 647 | } |
| 648 | |
Vasanthakumar Thiagarajan | 240d279 | 2011-10-25 19:34:13 +0530 | [diff] [blame] | 649 | if (ath6kl_add_bss_if_needed(vif, bssid, chan, assoc_info, |
Jouni Malinen | 01cac47 | 2011-09-19 19:14:59 +0300 | [diff] [blame] | 650 | beacon_ie_len) < 0) { |
| 651 | ath6kl_err("could not add cfg80211 bss entry for " |
| 652 | "connect/roamed notification\n"); |
| 653 | return; |
| 654 | } |
| 655 | |
Vasanthakumar Thiagarajan | 14ee6f6 | 2011-10-25 19:34:09 +0530 | [diff] [blame] | 656 | if (vif->sme_state == SME_CONNECTING) { |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 657 | /* inform connect result to cfg80211 */ |
Vasanthakumar Thiagarajan | 14ee6f6 | 2011-10-25 19:34:09 +0530 | [diff] [blame] | 658 | vif->sme_state = SME_CONNECTED; |
Vasanthakumar Thiagarajan | 240d279 | 2011-10-25 19:34:13 +0530 | [diff] [blame] | 659 | cfg80211_connect_result(vif->ndev, bssid, |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 660 | assoc_req_ie, assoc_req_len, |
| 661 | assoc_resp_ie, assoc_resp_len, |
| 662 | WLAN_STATUS_SUCCESS, GFP_KERNEL); |
Vasanthakumar Thiagarajan | 14ee6f6 | 2011-10-25 19:34:09 +0530 | [diff] [blame] | 663 | } else if (vif->sme_state == SME_CONNECTED) { |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 664 | /* inform roam event to cfg80211 */ |
Vasanthakumar Thiagarajan | 240d279 | 2011-10-25 19:34:13 +0530 | [diff] [blame] | 665 | cfg80211_roamed(vif->ndev, chan, bssid, |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 666 | assoc_req_ie, assoc_req_len, |
| 667 | assoc_resp_ie, assoc_resp_len, GFP_KERNEL); |
| 668 | } |
| 669 | } |
| 670 | |
| 671 | static int ath6kl_cfg80211_disconnect(struct wiphy *wiphy, |
| 672 | struct net_device *dev, u16 reason_code) |
| 673 | { |
| 674 | struct ath6kl *ar = (struct ath6kl *)ath6kl_priv(dev); |
Vasanthakumar Thiagarajan | 3450334 | 2011-10-25 19:34:02 +0530 | [diff] [blame] | 675 | struct ath6kl_vif *vif = netdev_priv(dev); |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 676 | |
| 677 | ath6kl_dbg(ATH6KL_DBG_WLAN_CFG, "%s: reason=%u\n", __func__, |
| 678 | reason_code); |
| 679 | |
Vasanthakumar Thiagarajan | 990bd91 | 2011-10-25 19:34:20 +0530 | [diff] [blame] | 680 | if (!ath6kl_cfg80211_ready(vif)) |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 681 | return -EIO; |
| 682 | |
| 683 | if (test_bit(DESTROY_IN_PROGRESS, &ar->flag)) { |
| 684 | ath6kl_err("busy, destroy in progress\n"); |
| 685 | return -EBUSY; |
| 686 | } |
| 687 | |
| 688 | if (down_interruptible(&ar->sem)) { |
| 689 | ath6kl_err("busy, couldn't get access\n"); |
| 690 | return -ERESTARTSYS; |
| 691 | } |
| 692 | |
Vasanthakumar Thiagarajan | cf5333d | 2011-10-25 19:34:10 +0530 | [diff] [blame] | 693 | vif->reconnect_flag = 0; |
Vasanthakumar Thiagarajan | 240d279 | 2011-10-25 19:34:13 +0530 | [diff] [blame] | 694 | ath6kl_disconnect(vif); |
Vasanthakumar Thiagarajan | 3450334 | 2011-10-25 19:34:02 +0530 | [diff] [blame] | 695 | memset(vif->ssid, 0, sizeof(vif->ssid)); |
| 696 | vif->ssid_len = 0; |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 697 | |
| 698 | if (!test_bit(SKIP_SCAN, &ar->flag)) |
Vasanthakumar Thiagarajan | 8c8b65e | 2011-10-25 19:34:04 +0530 | [diff] [blame] | 699 | memset(vif->req_bssid, 0, sizeof(vif->req_bssid)); |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 700 | |
| 701 | up(&ar->sem); |
| 702 | |
Vasanthakumar Thiagarajan | 14ee6f6 | 2011-10-25 19:34:09 +0530 | [diff] [blame] | 703 | vif->sme_state = SME_DISCONNECTED; |
Vasanthakumar Thiagarajan | 170826d | 2011-09-10 15:26:35 +0530 | [diff] [blame] | 704 | |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 705 | return 0; |
| 706 | } |
| 707 | |
Vasanthakumar Thiagarajan | 240d279 | 2011-10-25 19:34:13 +0530 | [diff] [blame] | 708 | void ath6kl_cfg80211_disconnect_event(struct ath6kl_vif *vif, u8 reason, |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 709 | u8 *bssid, u8 assoc_resp_len, |
| 710 | u8 *assoc_info, u16 proto_reason) |
| 711 | { |
Vasanthakumar Thiagarajan | 240d279 | 2011-10-25 19:34:13 +0530 | [diff] [blame] | 712 | struct ath6kl *ar = vif->ar; |
Vasanthakumar Thiagarajan | 59c9844 | 2011-10-25 19:34:01 +0530 | [diff] [blame] | 713 | |
Vasanthakumar Thiagarajan | 14ee6f6 | 2011-10-25 19:34:09 +0530 | [diff] [blame] | 714 | if (vif->scan_req) { |
| 715 | cfg80211_scan_done(vif->scan_req, true); |
| 716 | vif->scan_req = NULL; |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 717 | } |
| 718 | |
Vasanthakumar Thiagarajan | f5938f2 | 2011-10-25 19:34:03 +0530 | [diff] [blame] | 719 | if (vif->nw_type & ADHOC_NETWORK) { |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 720 | if (ar->wdev->iftype != NL80211_IFTYPE_ADHOC) { |
| 721 | ath6kl_dbg(ATH6KL_DBG_WLAN_CFG, |
| 722 | "%s: ath6k not in ibss mode\n", __func__); |
| 723 | return; |
| 724 | } |
| 725 | memset(bssid, 0, ETH_ALEN); |
Vasanthakumar Thiagarajan | 240d279 | 2011-10-25 19:34:13 +0530 | [diff] [blame] | 726 | cfg80211_ibss_joined(vif->ndev, bssid, GFP_KERNEL); |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 727 | return; |
| 728 | } |
| 729 | |
Vasanthakumar Thiagarajan | f5938f2 | 2011-10-25 19:34:03 +0530 | [diff] [blame] | 730 | if (vif->nw_type & INFRA_NETWORK) { |
Jouni Malinen | 6b5e5d2 | 2011-08-30 21:58:05 +0300 | [diff] [blame] | 731 | if (ar->wdev->iftype != NL80211_IFTYPE_STATION && |
| 732 | ar->wdev->iftype != NL80211_IFTYPE_P2P_CLIENT) { |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 733 | ath6kl_dbg(ATH6KL_DBG_WLAN_CFG, |
| 734 | "%s: ath6k not in station mode\n", __func__); |
| 735 | return; |
| 736 | } |
| 737 | } |
| 738 | |
Vasanthakumar Thiagarajan | 1de547d | 2011-09-23 10:57:50 +0530 | [diff] [blame] | 739 | /* |
| 740 | * Send a disconnect command to target when a disconnect event is |
| 741 | * received with reason code other than 3 (DISCONNECT_CMD - disconnect |
| 742 | * request from host) to make the firmware stop trying to connect even |
| 743 | * after giving disconnect event. There will be one more disconnect |
| 744 | * event for this disconnect command with reason code DISCONNECT_CMD |
| 745 | * which will be notified to cfg80211. |
| 746 | */ |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 747 | |
Vasanthakumar Thiagarajan | 1de547d | 2011-09-23 10:57:50 +0530 | [diff] [blame] | 748 | if (reason != DISCONNECT_CMD) { |
Vasanthakumar Thiagarajan | 334234b | 2011-10-25 19:34:12 +0530 | [diff] [blame] | 749 | ath6kl_wmi_disconnect_cmd(ar->wmi, vif->fw_vif_idx); |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 750 | return; |
| 751 | } |
| 752 | |
Vasanthakumar Thiagarajan | 59c9844 | 2011-10-25 19:34:01 +0530 | [diff] [blame] | 753 | clear_bit(CONNECT_PEND, &vif->flags); |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 754 | |
Vasanthakumar Thiagarajan | 14ee6f6 | 2011-10-25 19:34:09 +0530 | [diff] [blame] | 755 | if (vif->sme_state == SME_CONNECTING) { |
Vasanthakumar Thiagarajan | 240d279 | 2011-10-25 19:34:13 +0530 | [diff] [blame] | 756 | cfg80211_connect_result(vif->ndev, |
Vasanthakumar Thiagarajan | ac59a2b | 2011-09-10 15:26:34 +0530 | [diff] [blame] | 757 | bssid, NULL, 0, |
| 758 | NULL, 0, |
| 759 | WLAN_STATUS_UNSPECIFIED_FAILURE, |
| 760 | GFP_KERNEL); |
Vasanthakumar Thiagarajan | 14ee6f6 | 2011-10-25 19:34:09 +0530 | [diff] [blame] | 761 | } else if (vif->sme_state == SME_CONNECTED) { |
Vasanthakumar Thiagarajan | 240d279 | 2011-10-25 19:34:13 +0530 | [diff] [blame] | 762 | cfg80211_disconnected(vif->ndev, reason, |
Vasanthakumar Thiagarajan | ac59a2b | 2011-09-10 15:26:34 +0530 | [diff] [blame] | 763 | NULL, 0, GFP_KERNEL); |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 764 | } |
| 765 | |
Vasanthakumar Thiagarajan | 14ee6f6 | 2011-10-25 19:34:09 +0530 | [diff] [blame] | 766 | vif->sme_state = SME_DISCONNECTED; |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 767 | } |
| 768 | |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 769 | static int ath6kl_cfg80211_scan(struct wiphy *wiphy, struct net_device *ndev, |
| 770 | struct cfg80211_scan_request *request) |
| 771 | { |
| 772 | struct ath6kl *ar = (struct ath6kl *)ath6kl_priv(ndev); |
Vasanthakumar Thiagarajan | 59c9844 | 2011-10-25 19:34:01 +0530 | [diff] [blame] | 773 | struct ath6kl_vif *vif = netdev_priv(ndev); |
Edward Lu | 1276c9e | 2011-08-30 21:58:00 +0300 | [diff] [blame] | 774 | s8 n_channels = 0; |
| 775 | u16 *channels = NULL; |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 776 | int ret = 0; |
Vasanthakumar Thiagarajan | f1f9217 | 2011-10-01 16:12:36 +0530 | [diff] [blame] | 777 | u32 force_fg_scan = 0; |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 778 | |
Vasanthakumar Thiagarajan | 990bd91 | 2011-10-25 19:34:20 +0530 | [diff] [blame] | 779 | if (!ath6kl_cfg80211_ready(vif)) |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 780 | return -EIO; |
| 781 | |
| 782 | if (!ar->usr_bss_filter) { |
Vasanthakumar Thiagarajan | 59c9844 | 2011-10-25 19:34:01 +0530 | [diff] [blame] | 783 | clear_bit(CLEAR_BSSFILTER_ON_BEACON, &vif->flags); |
Jouni Malinen | 1b1e6ee | 2011-08-30 21:58:10 +0300 | [diff] [blame] | 784 | ret = ath6kl_wmi_bssfilter_cmd( |
Vasanthakumar Thiagarajan | 240d279 | 2011-10-25 19:34:13 +0530 | [diff] [blame] | 785 | ar->wmi, vif->fw_vif_idx, |
Vasanthakumar Thiagarajan | 59c9844 | 2011-10-25 19:34:01 +0530 | [diff] [blame] | 786 | (test_bit(CONNECTED, &vif->flags) ? |
Jouni Malinen | 1b1e6ee | 2011-08-30 21:58:10 +0300 | [diff] [blame] | 787 | ALL_BUT_BSS_FILTER : ALL_BSS_FILTER), 0); |
| 788 | if (ret) { |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 789 | ath6kl_err("couldn't set bss filtering\n"); |
Jouni Malinen | 1b1e6ee | 2011-08-30 21:58:10 +0300 | [diff] [blame] | 790 | return ret; |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 791 | } |
| 792 | } |
| 793 | |
| 794 | if (request->n_ssids && request->ssids[0].ssid_len) { |
| 795 | u8 i; |
| 796 | |
| 797 | if (request->n_ssids > (MAX_PROBED_SSID_INDEX - 1)) |
| 798 | request->n_ssids = MAX_PROBED_SSID_INDEX - 1; |
| 799 | |
| 800 | for (i = 0; i < request->n_ssids; i++) |
Vasanthakumar Thiagarajan | 334234b | 2011-10-25 19:34:12 +0530 | [diff] [blame] | 801 | ath6kl_wmi_probedssid_cmd(ar->wmi, vif->fw_vif_idx, |
| 802 | i + 1, SPECIFIC_SSID_FLAG, |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 803 | request->ssids[i].ssid_len, |
| 804 | request->ssids[i].ssid); |
| 805 | } |
| 806 | |
Jouni Malinen | b84da8c | 2011-08-30 21:57:59 +0300 | [diff] [blame] | 807 | if (request->ie) { |
Vasanthakumar Thiagarajan | 334234b | 2011-10-25 19:34:12 +0530 | [diff] [blame] | 808 | ret = ath6kl_wmi_set_appie_cmd(ar->wmi, vif->fw_vif_idx, |
| 809 | WMI_FRAME_PROBE_REQ, |
Jouni Malinen | b84da8c | 2011-08-30 21:57:59 +0300 | [diff] [blame] | 810 | request->ie, request->ie_len); |
| 811 | if (ret) { |
| 812 | ath6kl_err("failed to set Probe Request appie for " |
| 813 | "scan"); |
| 814 | return ret; |
| 815 | } |
| 816 | } |
| 817 | |
Jouni Malinen | 11869be | 2011-09-02 20:07:06 +0300 | [diff] [blame] | 818 | /* |
| 819 | * Scan only the requested channels if the request specifies a set of |
| 820 | * channels. If the list is longer than the target supports, do not |
| 821 | * configure the list and instead, scan all available channels. |
| 822 | */ |
| 823 | if (request->n_channels > 0 && |
| 824 | request->n_channels <= WMI_MAX_CHANNELS) { |
Edward Lu | 1276c9e | 2011-08-30 21:58:00 +0300 | [diff] [blame] | 825 | u8 i; |
| 826 | |
Jouni Malinen | 11869be | 2011-09-02 20:07:06 +0300 | [diff] [blame] | 827 | n_channels = request->n_channels; |
Edward Lu | 1276c9e | 2011-08-30 21:58:00 +0300 | [diff] [blame] | 828 | |
| 829 | channels = kzalloc(n_channels * sizeof(u16), GFP_KERNEL); |
| 830 | if (channels == NULL) { |
| 831 | ath6kl_warn("failed to set scan channels, " |
| 832 | "scan all channels"); |
| 833 | n_channels = 0; |
| 834 | } |
| 835 | |
| 836 | for (i = 0; i < n_channels; i++) |
| 837 | channels[i] = request->channels[i]->center_freq; |
| 838 | } |
| 839 | |
Vasanthakumar Thiagarajan | 59c9844 | 2011-10-25 19:34:01 +0530 | [diff] [blame] | 840 | if (test_bit(CONNECTED, &vif->flags)) |
Vasanthakumar Thiagarajan | f1f9217 | 2011-10-01 16:12:36 +0530 | [diff] [blame] | 841 | force_fg_scan = 1; |
| 842 | |
Vasanthakumar Thiagarajan | 334234b | 2011-10-25 19:34:12 +0530 | [diff] [blame] | 843 | ret = ath6kl_wmi_startscan_cmd(ar->wmi, vif->fw_vif_idx, WMI_LONG_SCAN, |
| 844 | force_fg_scan, false, 0, 0, n_channels, |
| 845 | channels); |
Jouni Malinen | 1b1e6ee | 2011-08-30 21:58:10 +0300 | [diff] [blame] | 846 | if (ret) |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 847 | ath6kl_err("wmi_startscan_cmd failed\n"); |
Jouni Malinen | 11869be | 2011-09-02 20:07:06 +0300 | [diff] [blame] | 848 | else |
Vasanthakumar Thiagarajan | 14ee6f6 | 2011-10-25 19:34:09 +0530 | [diff] [blame] | 849 | vif->scan_req = request; |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 850 | |
Edward Lu | 1276c9e | 2011-08-30 21:58:00 +0300 | [diff] [blame] | 851 | kfree(channels); |
| 852 | |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 853 | return ret; |
| 854 | } |
| 855 | |
Vasanthakumar Thiagarajan | 240d279 | 2011-10-25 19:34:13 +0530 | [diff] [blame] | 856 | void ath6kl_cfg80211_scan_complete_event(struct ath6kl_vif *vif, int status) |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 857 | { |
Vasanthakumar Thiagarajan | 240d279 | 2011-10-25 19:34:13 +0530 | [diff] [blame] | 858 | struct ath6kl *ar = vif->ar; |
Kalle Valo | 6fd1eac | 2011-07-21 10:22:50 +0300 | [diff] [blame] | 859 | int i; |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 860 | |
| 861 | ath6kl_dbg(ATH6KL_DBG_WLAN_CFG, "%s: status %d\n", __func__, status); |
| 862 | |
Vasanthakumar Thiagarajan | 14ee6f6 | 2011-10-25 19:34:09 +0530 | [diff] [blame] | 863 | if (!vif->scan_req) |
Kalle Valo | 6fd1eac | 2011-07-21 10:22:50 +0300 | [diff] [blame] | 864 | return; |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 865 | |
Kalle Valo | 6fd1eac | 2011-07-21 10:22:50 +0300 | [diff] [blame] | 866 | if ((status == -ECANCELED) || (status == -EBUSY)) { |
Vasanthakumar Thiagarajan | 14ee6f6 | 2011-10-25 19:34:09 +0530 | [diff] [blame] | 867 | cfg80211_scan_done(vif->scan_req, true); |
Kalle Valo | 6fd1eac | 2011-07-21 10:22:50 +0300 | [diff] [blame] | 868 | goto out; |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 869 | } |
Kalle Valo | 6fd1eac | 2011-07-21 10:22:50 +0300 | [diff] [blame] | 870 | |
Vasanthakumar Thiagarajan | 14ee6f6 | 2011-10-25 19:34:09 +0530 | [diff] [blame] | 871 | cfg80211_scan_done(vif->scan_req, false); |
Kalle Valo | 6fd1eac | 2011-07-21 10:22:50 +0300 | [diff] [blame] | 872 | |
Vasanthakumar Thiagarajan | 14ee6f6 | 2011-10-25 19:34:09 +0530 | [diff] [blame] | 873 | if (vif->scan_req->n_ssids && vif->scan_req->ssids[0].ssid_len) { |
| 874 | for (i = 0; i < vif->scan_req->n_ssids; i++) { |
Vasanthakumar Thiagarajan | 334234b | 2011-10-25 19:34:12 +0530 | [diff] [blame] | 875 | ath6kl_wmi_probedssid_cmd(ar->wmi, vif->fw_vif_idx, |
| 876 | i + 1, DISABLE_SSID_FLAG, |
Kalle Valo | 6fd1eac | 2011-07-21 10:22:50 +0300 | [diff] [blame] | 877 | 0, NULL); |
| 878 | } |
| 879 | } |
| 880 | |
| 881 | out: |
Vasanthakumar Thiagarajan | 14ee6f6 | 2011-10-25 19:34:09 +0530 | [diff] [blame] | 882 | vif->scan_req = NULL; |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 883 | } |
| 884 | |
| 885 | static int ath6kl_cfg80211_add_key(struct wiphy *wiphy, struct net_device *ndev, |
| 886 | u8 key_index, bool pairwise, |
| 887 | const u8 *mac_addr, |
| 888 | struct key_params *params) |
| 889 | { |
| 890 | struct ath6kl *ar = (struct ath6kl *)ath6kl_priv(ndev); |
Vasanthakumar Thiagarajan | 59c9844 | 2011-10-25 19:34:01 +0530 | [diff] [blame] | 891 | struct ath6kl_vif *vif = netdev_priv(ndev); |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 892 | struct ath6kl_key *key = NULL; |
| 893 | u8 key_usage; |
| 894 | u8 key_type; |
| 895 | int status = 0; |
| 896 | |
Vasanthakumar Thiagarajan | 990bd91 | 2011-10-25 19:34:20 +0530 | [diff] [blame] | 897 | if (!ath6kl_cfg80211_ready(vif)) |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 898 | return -EIO; |
| 899 | |
Jouni Malinen | 837cb97 | 2011-10-11 17:31:57 +0300 | [diff] [blame] | 900 | if (params->cipher == CCKM_KRK_CIPHER_SUITE) { |
| 901 | if (params->key_len != WMI_KRK_LEN) |
| 902 | return -EINVAL; |
Vasanthakumar Thiagarajan | 240d279 | 2011-10-25 19:34:13 +0530 | [diff] [blame] | 903 | return ath6kl_wmi_add_krk_cmd(ar->wmi, vif->fw_vif_idx, |
| 904 | params->key); |
Jouni Malinen | 837cb97 | 2011-10-11 17:31:57 +0300 | [diff] [blame] | 905 | } |
| 906 | |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 907 | if (key_index < WMI_MIN_KEY_INDEX || key_index > WMI_MAX_KEY_INDEX) { |
| 908 | ath6kl_dbg(ATH6KL_DBG_WLAN_CFG, |
| 909 | "%s: key index %d out of bounds\n", __func__, |
| 910 | key_index); |
| 911 | return -ENOENT; |
| 912 | } |
| 913 | |
Vasanthakumar Thiagarajan | 6f2a73f | 2011-10-25 19:34:06 +0530 | [diff] [blame] | 914 | key = &vif->keys[key_index]; |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 915 | memset(key, 0, sizeof(struct ath6kl_key)); |
| 916 | |
| 917 | if (pairwise) |
| 918 | key_usage = PAIRWISE_USAGE; |
| 919 | else |
| 920 | key_usage = GROUP_USAGE; |
| 921 | |
| 922 | if (params) { |
| 923 | if (params->key_len > WLAN_MAX_KEY_LEN || |
| 924 | params->seq_len > sizeof(key->seq)) |
| 925 | return -EINVAL; |
| 926 | |
| 927 | key->key_len = params->key_len; |
| 928 | memcpy(key->key, params->key, key->key_len); |
| 929 | key->seq_len = params->seq_len; |
| 930 | memcpy(key->seq, params->seq, key->seq_len); |
| 931 | key->cipher = params->cipher; |
| 932 | } |
| 933 | |
| 934 | switch (key->cipher) { |
| 935 | case WLAN_CIPHER_SUITE_WEP40: |
| 936 | case WLAN_CIPHER_SUITE_WEP104: |
| 937 | key_type = WEP_CRYPT; |
| 938 | break; |
| 939 | |
| 940 | case WLAN_CIPHER_SUITE_TKIP: |
| 941 | key_type = TKIP_CRYPT; |
| 942 | break; |
| 943 | |
| 944 | case WLAN_CIPHER_SUITE_CCMP: |
| 945 | key_type = AES_CRYPT; |
| 946 | break; |
| 947 | |
| 948 | default: |
| 949 | return -ENOTSUPP; |
| 950 | } |
| 951 | |
Vasanthakumar Thiagarajan | 3450334 | 2011-10-25 19:34:02 +0530 | [diff] [blame] | 952 | if (((vif->auth_mode == WPA_PSK_AUTH) |
| 953 | || (vif->auth_mode == WPA2_PSK_AUTH)) |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 954 | && (key_usage & GROUP_USAGE)) |
Vasanthakumar Thiagarajan | de3ad71 | 2011-10-25 19:34:08 +0530 | [diff] [blame] | 955 | del_timer(&vif->disconnect_timer); |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 956 | |
| 957 | ath6kl_dbg(ATH6KL_DBG_WLAN_CFG, |
| 958 | "%s: index %d, key_len %d, key_type 0x%x, key_usage 0x%x, seq_len %d\n", |
| 959 | __func__, key_index, key->key_len, key_type, |
| 960 | key_usage, key->seq_len); |
| 961 | |
Vasanthakumar Thiagarajan | 3450334 | 2011-10-25 19:34:02 +0530 | [diff] [blame] | 962 | vif->def_txkey_index = key_index; |
Jouni Malinen | 9a5b131 | 2011-08-30 21:57:52 +0300 | [diff] [blame] | 963 | |
Vasanthakumar Thiagarajan | f5938f2 | 2011-10-25 19:34:03 +0530 | [diff] [blame] | 964 | if (vif->nw_type == AP_NETWORK && !pairwise && |
Jouni Malinen | 9a5b131 | 2011-08-30 21:57:52 +0300 | [diff] [blame] | 965 | (key_type == TKIP_CRYPT || key_type == AES_CRYPT) && params) { |
| 966 | ar->ap_mode_bkey.valid = true; |
| 967 | ar->ap_mode_bkey.key_index = key_index; |
| 968 | ar->ap_mode_bkey.key_type = key_type; |
| 969 | ar->ap_mode_bkey.key_len = key->key_len; |
| 970 | memcpy(ar->ap_mode_bkey.key, key->key, key->key_len); |
Vasanthakumar Thiagarajan | 59c9844 | 2011-10-25 19:34:01 +0530 | [diff] [blame] | 971 | if (!test_bit(CONNECTED, &vif->flags)) { |
Jouni Malinen | 9a5b131 | 2011-08-30 21:57:52 +0300 | [diff] [blame] | 972 | ath6kl_dbg(ATH6KL_DBG_WLAN_CFG, "Delay initial group " |
| 973 | "key configuration until AP mode has been " |
| 974 | "started\n"); |
| 975 | /* |
| 976 | * The key will be set in ath6kl_connect_ap_mode() once |
| 977 | * the connected event is received from the target. |
| 978 | */ |
| 979 | return 0; |
| 980 | } |
| 981 | } |
| 982 | |
Vasanthakumar Thiagarajan | f5938f2 | 2011-10-25 19:34:03 +0530 | [diff] [blame] | 983 | if (vif->next_mode == AP_NETWORK && key_type == WEP_CRYPT && |
Vasanthakumar Thiagarajan | 59c9844 | 2011-10-25 19:34:01 +0530 | [diff] [blame] | 984 | !test_bit(CONNECTED, &vif->flags)) { |
Jouni Malinen | 151411e | 2011-09-15 15:10:16 +0300 | [diff] [blame] | 985 | /* |
| 986 | * Store the key locally so that it can be re-configured after |
| 987 | * the AP mode has properly started |
| 988 | * (ath6kl_install_statioc_wep_keys). |
| 989 | */ |
| 990 | ath6kl_dbg(ATH6KL_DBG_WLAN_CFG, "Delay WEP key configuration " |
| 991 | "until AP mode has been started\n"); |
Vasanthakumar Thiagarajan | 6f2a73f | 2011-10-25 19:34:06 +0530 | [diff] [blame] | 992 | vif->wep_key_list[key_index].key_len = key->key_len; |
| 993 | memcpy(vif->wep_key_list[key_index].key, key->key, |
| 994 | key->key_len); |
Jouni Malinen | 151411e | 2011-09-15 15:10:16 +0300 | [diff] [blame] | 995 | return 0; |
| 996 | } |
| 997 | |
Vasanthakumar Thiagarajan | 334234b | 2011-10-25 19:34:12 +0530 | [diff] [blame] | 998 | status = ath6kl_wmi_addkey_cmd(ar->wmi, vif->fw_vif_idx, |
| 999 | vif->def_txkey_index, |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 1000 | key_type, key_usage, key->key_len, |
| 1001 | key->seq, key->key, KEY_OP_INIT_VAL, |
| 1002 | (u8 *) mac_addr, SYNC_BOTH_WMIFLAG); |
| 1003 | |
| 1004 | if (status) |
| 1005 | return -EIO; |
| 1006 | |
| 1007 | return 0; |
| 1008 | } |
| 1009 | |
| 1010 | static int ath6kl_cfg80211_del_key(struct wiphy *wiphy, struct net_device *ndev, |
| 1011 | u8 key_index, bool pairwise, |
| 1012 | const u8 *mac_addr) |
| 1013 | { |
| 1014 | struct ath6kl *ar = (struct ath6kl *)ath6kl_priv(ndev); |
Vasanthakumar Thiagarajan | 6f2a73f | 2011-10-25 19:34:06 +0530 | [diff] [blame] | 1015 | struct ath6kl_vif *vif = netdev_priv(ndev); |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 1016 | |
| 1017 | ath6kl_dbg(ATH6KL_DBG_WLAN_CFG, "%s: index %d\n", __func__, key_index); |
| 1018 | |
Vasanthakumar Thiagarajan | 990bd91 | 2011-10-25 19:34:20 +0530 | [diff] [blame] | 1019 | if (!ath6kl_cfg80211_ready(vif)) |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 1020 | return -EIO; |
| 1021 | |
| 1022 | if (key_index < WMI_MIN_KEY_INDEX || key_index > WMI_MAX_KEY_INDEX) { |
| 1023 | ath6kl_dbg(ATH6KL_DBG_WLAN_CFG, |
| 1024 | "%s: key index %d out of bounds\n", __func__, |
| 1025 | key_index); |
| 1026 | return -ENOENT; |
| 1027 | } |
| 1028 | |
Vasanthakumar Thiagarajan | 6f2a73f | 2011-10-25 19:34:06 +0530 | [diff] [blame] | 1029 | if (!vif->keys[key_index].key_len) { |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 1030 | ath6kl_dbg(ATH6KL_DBG_WLAN_CFG, |
| 1031 | "%s: index %d is empty\n", __func__, key_index); |
| 1032 | return 0; |
| 1033 | } |
| 1034 | |
Vasanthakumar Thiagarajan | 6f2a73f | 2011-10-25 19:34:06 +0530 | [diff] [blame] | 1035 | vif->keys[key_index].key_len = 0; |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 1036 | |
Vasanthakumar Thiagarajan | 334234b | 2011-10-25 19:34:12 +0530 | [diff] [blame] | 1037 | return ath6kl_wmi_deletekey_cmd(ar->wmi, vif->fw_vif_idx, key_index); |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 1038 | } |
| 1039 | |
| 1040 | static int ath6kl_cfg80211_get_key(struct wiphy *wiphy, struct net_device *ndev, |
| 1041 | u8 key_index, bool pairwise, |
| 1042 | const u8 *mac_addr, void *cookie, |
| 1043 | void (*callback) (void *cookie, |
| 1044 | struct key_params *)) |
| 1045 | { |
Vasanthakumar Thiagarajan | 6f2a73f | 2011-10-25 19:34:06 +0530 | [diff] [blame] | 1046 | struct ath6kl_vif *vif = netdev_priv(ndev); |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 1047 | struct ath6kl_key *key = NULL; |
| 1048 | struct key_params params; |
| 1049 | |
| 1050 | ath6kl_dbg(ATH6KL_DBG_WLAN_CFG, "%s: index %d\n", __func__, key_index); |
| 1051 | |
Vasanthakumar Thiagarajan | 990bd91 | 2011-10-25 19:34:20 +0530 | [diff] [blame] | 1052 | if (!ath6kl_cfg80211_ready(vif)) |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 1053 | return -EIO; |
| 1054 | |
| 1055 | if (key_index < WMI_MIN_KEY_INDEX || key_index > WMI_MAX_KEY_INDEX) { |
| 1056 | ath6kl_dbg(ATH6KL_DBG_WLAN_CFG, |
| 1057 | "%s: key index %d out of bounds\n", __func__, |
| 1058 | key_index); |
| 1059 | return -ENOENT; |
| 1060 | } |
| 1061 | |
Vasanthakumar Thiagarajan | 6f2a73f | 2011-10-25 19:34:06 +0530 | [diff] [blame] | 1062 | key = &vif->keys[key_index]; |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 1063 | memset(¶ms, 0, sizeof(params)); |
| 1064 | params.cipher = key->cipher; |
| 1065 | params.key_len = key->key_len; |
| 1066 | params.seq_len = key->seq_len; |
| 1067 | params.seq = key->seq; |
| 1068 | params.key = key->key; |
| 1069 | |
| 1070 | callback(cookie, ¶ms); |
| 1071 | |
| 1072 | return key->key_len ? 0 : -ENOENT; |
| 1073 | } |
| 1074 | |
| 1075 | static int ath6kl_cfg80211_set_default_key(struct wiphy *wiphy, |
| 1076 | struct net_device *ndev, |
| 1077 | u8 key_index, bool unicast, |
| 1078 | bool multicast) |
| 1079 | { |
| 1080 | struct ath6kl *ar = (struct ath6kl *)ath6kl_priv(ndev); |
Vasanthakumar Thiagarajan | 59c9844 | 2011-10-25 19:34:01 +0530 | [diff] [blame] | 1081 | struct ath6kl_vif *vif = netdev_priv(ndev); |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 1082 | struct ath6kl_key *key = NULL; |
| 1083 | int status = 0; |
| 1084 | u8 key_usage; |
Edward Lu | 229ed6b | 2011-08-30 21:58:07 +0300 | [diff] [blame] | 1085 | enum crypto_type key_type = NONE_CRYPT; |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 1086 | |
| 1087 | ath6kl_dbg(ATH6KL_DBG_WLAN_CFG, "%s: index %d\n", __func__, key_index); |
| 1088 | |
Vasanthakumar Thiagarajan | 990bd91 | 2011-10-25 19:34:20 +0530 | [diff] [blame] | 1089 | if (!ath6kl_cfg80211_ready(vif)) |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 1090 | return -EIO; |
| 1091 | |
| 1092 | if (key_index < WMI_MIN_KEY_INDEX || key_index > WMI_MAX_KEY_INDEX) { |
| 1093 | ath6kl_dbg(ATH6KL_DBG_WLAN_CFG, |
| 1094 | "%s: key index %d out of bounds\n", |
| 1095 | __func__, key_index); |
| 1096 | return -ENOENT; |
| 1097 | } |
| 1098 | |
Vasanthakumar Thiagarajan | 6f2a73f | 2011-10-25 19:34:06 +0530 | [diff] [blame] | 1099 | if (!vif->keys[key_index].key_len) { |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 1100 | ath6kl_dbg(ATH6KL_DBG_WLAN_CFG, "%s: invalid key index %d\n", |
| 1101 | __func__, key_index); |
| 1102 | return -EINVAL; |
| 1103 | } |
| 1104 | |
Vasanthakumar Thiagarajan | 3450334 | 2011-10-25 19:34:02 +0530 | [diff] [blame] | 1105 | vif->def_txkey_index = key_index; |
Vasanthakumar Thiagarajan | 6f2a73f | 2011-10-25 19:34:06 +0530 | [diff] [blame] | 1106 | key = &vif->keys[vif->def_txkey_index]; |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 1107 | key_usage = GROUP_USAGE; |
Vasanthakumar Thiagarajan | 3450334 | 2011-10-25 19:34:02 +0530 | [diff] [blame] | 1108 | if (vif->prwise_crypto == WEP_CRYPT) |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 1109 | key_usage |= TX_USAGE; |
Edward Lu | 229ed6b | 2011-08-30 21:58:07 +0300 | [diff] [blame] | 1110 | if (unicast) |
Vasanthakumar Thiagarajan | 3450334 | 2011-10-25 19:34:02 +0530 | [diff] [blame] | 1111 | key_type = vif->prwise_crypto; |
Edward Lu | 229ed6b | 2011-08-30 21:58:07 +0300 | [diff] [blame] | 1112 | if (multicast) |
Vasanthakumar Thiagarajan | 3450334 | 2011-10-25 19:34:02 +0530 | [diff] [blame] | 1113 | key_type = vif->grp_crypto; |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 1114 | |
Vasanthakumar Thiagarajan | f5938f2 | 2011-10-25 19:34:03 +0530 | [diff] [blame] | 1115 | if (vif->next_mode == AP_NETWORK && !test_bit(CONNECTED, &vif->flags)) |
Jouni Malinen | 9a5b131 | 2011-08-30 21:57:52 +0300 | [diff] [blame] | 1116 | return 0; /* Delay until AP mode has been started */ |
| 1117 | |
Vasanthakumar Thiagarajan | 334234b | 2011-10-25 19:34:12 +0530 | [diff] [blame] | 1118 | status = ath6kl_wmi_addkey_cmd(ar->wmi, vif->fw_vif_idx, |
| 1119 | vif->def_txkey_index, |
Edward Lu | 229ed6b | 2011-08-30 21:58:07 +0300 | [diff] [blame] | 1120 | key_type, key_usage, |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 1121 | key->key_len, key->seq, key->key, |
| 1122 | KEY_OP_INIT_VAL, NULL, |
| 1123 | SYNC_BOTH_WMIFLAG); |
| 1124 | if (status) |
| 1125 | return -EIO; |
| 1126 | |
| 1127 | return 0; |
| 1128 | } |
| 1129 | |
Vasanthakumar Thiagarajan | 240d279 | 2011-10-25 19:34:13 +0530 | [diff] [blame] | 1130 | void ath6kl_cfg80211_tkip_micerr_event(struct ath6kl_vif *vif, u8 keyid, |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 1131 | bool ismcast) |
| 1132 | { |
| 1133 | ath6kl_dbg(ATH6KL_DBG_WLAN_CFG, |
| 1134 | "%s: keyid %d, ismcast %d\n", __func__, keyid, ismcast); |
| 1135 | |
Vasanthakumar Thiagarajan | 240d279 | 2011-10-25 19:34:13 +0530 | [diff] [blame] | 1136 | cfg80211_michael_mic_failure(vif->ndev, vif->bssid, |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 1137 | (ismcast ? NL80211_KEYTYPE_GROUP : |
| 1138 | NL80211_KEYTYPE_PAIRWISE), keyid, NULL, |
| 1139 | GFP_KERNEL); |
| 1140 | } |
| 1141 | |
| 1142 | static int ath6kl_cfg80211_set_wiphy_params(struct wiphy *wiphy, u32 changed) |
| 1143 | { |
| 1144 | struct ath6kl *ar = (struct ath6kl *)wiphy_priv(wiphy); |
Vasanthakumar Thiagarajan | 990bd91 | 2011-10-25 19:34:20 +0530 | [diff] [blame] | 1145 | struct ath6kl_vif *vif; |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 1146 | int ret; |
| 1147 | |
| 1148 | ath6kl_dbg(ATH6KL_DBG_WLAN_CFG, "%s: changed 0x%x\n", __func__, |
| 1149 | changed); |
| 1150 | |
Vasanthakumar Thiagarajan | 990bd91 | 2011-10-25 19:34:20 +0530 | [diff] [blame] | 1151 | vif = ath6kl_vif_first(ar); |
| 1152 | if (!vif) |
| 1153 | return -EIO; |
| 1154 | |
| 1155 | if (!ath6kl_cfg80211_ready(vif)) |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 1156 | return -EIO; |
| 1157 | |
| 1158 | if (changed & WIPHY_PARAM_RTS_THRESHOLD) { |
| 1159 | ret = ath6kl_wmi_set_rts_cmd(ar->wmi, wiphy->rts_threshold); |
| 1160 | if (ret != 0) { |
| 1161 | ath6kl_err("ath6kl_wmi_set_rts_cmd failed\n"); |
| 1162 | return -EIO; |
| 1163 | } |
| 1164 | } |
| 1165 | |
| 1166 | return 0; |
| 1167 | } |
| 1168 | |
| 1169 | /* |
| 1170 | * The type nl80211_tx_power_setting replaces the following |
| 1171 | * data type from 2.6.36 onwards |
| 1172 | */ |
| 1173 | static int ath6kl_cfg80211_set_txpower(struct wiphy *wiphy, |
| 1174 | enum nl80211_tx_power_setting type, |
| 1175 | int dbm) |
| 1176 | { |
| 1177 | struct ath6kl *ar = (struct ath6kl *)wiphy_priv(wiphy); |
Vasanthakumar Thiagarajan | 990bd91 | 2011-10-25 19:34:20 +0530 | [diff] [blame] | 1178 | struct ath6kl_vif *vif; |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 1179 | u8 ath6kl_dbm; |
| 1180 | |
| 1181 | ath6kl_dbg(ATH6KL_DBG_WLAN_CFG, "%s: type 0x%x, dbm %d\n", __func__, |
| 1182 | type, dbm); |
| 1183 | |
Vasanthakumar Thiagarajan | 990bd91 | 2011-10-25 19:34:20 +0530 | [diff] [blame] | 1184 | vif = ath6kl_vif_first(ar); |
| 1185 | if (!vif) |
| 1186 | return -EIO; |
| 1187 | |
| 1188 | if (!ath6kl_cfg80211_ready(vif)) |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 1189 | return -EIO; |
| 1190 | |
| 1191 | switch (type) { |
| 1192 | case NL80211_TX_POWER_AUTOMATIC: |
| 1193 | return 0; |
| 1194 | case NL80211_TX_POWER_LIMITED: |
| 1195 | ar->tx_pwr = ath6kl_dbm = dbm; |
| 1196 | break; |
| 1197 | default: |
| 1198 | ath6kl_dbg(ATH6KL_DBG_WLAN_CFG, "%s: type 0x%x not supported\n", |
| 1199 | __func__, type); |
| 1200 | return -EOPNOTSUPP; |
| 1201 | } |
| 1202 | |
Vasanthakumar Thiagarajan | 990bd91 | 2011-10-25 19:34:20 +0530 | [diff] [blame] | 1203 | ath6kl_wmi_set_tx_pwr_cmd(ar->wmi, vif->fw_vif_idx, ath6kl_dbm); |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 1204 | |
| 1205 | return 0; |
| 1206 | } |
| 1207 | |
| 1208 | static int ath6kl_cfg80211_get_txpower(struct wiphy *wiphy, int *dbm) |
| 1209 | { |
| 1210 | struct ath6kl *ar = (struct ath6kl *)wiphy_priv(wiphy); |
Vasanthakumar Thiagarajan | 990bd91 | 2011-10-25 19:34:20 +0530 | [diff] [blame] | 1211 | struct ath6kl_vif *vif; |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 1212 | |
Vasanthakumar Thiagarajan | 990bd91 | 2011-10-25 19:34:20 +0530 | [diff] [blame] | 1213 | vif = ath6kl_vif_first(ar); |
| 1214 | if (!vif) |
| 1215 | return -EIO; |
| 1216 | |
| 1217 | if (!ath6kl_cfg80211_ready(vif)) |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 1218 | return -EIO; |
| 1219 | |
Vasanthakumar Thiagarajan | 59c9844 | 2011-10-25 19:34:01 +0530 | [diff] [blame] | 1220 | if (test_bit(CONNECTED, &vif->flags)) { |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 1221 | ar->tx_pwr = 0; |
| 1222 | |
Vasanthakumar Thiagarajan | 990bd91 | 2011-10-25 19:34:20 +0530 | [diff] [blame] | 1223 | if (ath6kl_wmi_get_tx_pwr_cmd(ar->wmi, vif->fw_vif_idx) != 0) { |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 1224 | ath6kl_err("ath6kl_wmi_get_tx_pwr_cmd failed\n"); |
| 1225 | return -EIO; |
| 1226 | } |
| 1227 | |
| 1228 | wait_event_interruptible_timeout(ar->event_wq, ar->tx_pwr != 0, |
| 1229 | 5 * HZ); |
| 1230 | |
| 1231 | if (signal_pending(current)) { |
| 1232 | ath6kl_err("target did not respond\n"); |
| 1233 | return -EINTR; |
| 1234 | } |
| 1235 | } |
| 1236 | |
| 1237 | *dbm = ar->tx_pwr; |
| 1238 | return 0; |
| 1239 | } |
| 1240 | |
| 1241 | static int ath6kl_cfg80211_set_power_mgmt(struct wiphy *wiphy, |
| 1242 | struct net_device *dev, |
| 1243 | bool pmgmt, int timeout) |
| 1244 | { |
| 1245 | struct ath6kl *ar = ath6kl_priv(dev); |
| 1246 | struct wmi_power_mode_cmd mode; |
Vasanthakumar Thiagarajan | 334234b | 2011-10-25 19:34:12 +0530 | [diff] [blame] | 1247 | struct ath6kl_vif *vif = netdev_priv(dev); |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 1248 | |
| 1249 | ath6kl_dbg(ATH6KL_DBG_WLAN_CFG, "%s: pmgmt %d, timeout %d\n", |
| 1250 | __func__, pmgmt, timeout); |
| 1251 | |
Vasanthakumar Thiagarajan | 990bd91 | 2011-10-25 19:34:20 +0530 | [diff] [blame] | 1252 | if (!ath6kl_cfg80211_ready(vif)) |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 1253 | return -EIO; |
| 1254 | |
| 1255 | if (pmgmt) { |
| 1256 | ath6kl_dbg(ATH6KL_DBG_WLAN_CFG, "%s: max perf\n", __func__); |
| 1257 | mode.pwr_mode = REC_POWER; |
| 1258 | } else { |
| 1259 | ath6kl_dbg(ATH6KL_DBG_WLAN_CFG, "%s: rec power\n", __func__); |
| 1260 | mode.pwr_mode = MAX_PERF_POWER; |
| 1261 | } |
| 1262 | |
Vasanthakumar Thiagarajan | 334234b | 2011-10-25 19:34:12 +0530 | [diff] [blame] | 1263 | if (ath6kl_wmi_powermode_cmd(ar->wmi, vif->fw_vif_idx, |
| 1264 | mode.pwr_mode) != 0) { |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 1265 | ath6kl_err("wmi_powermode_cmd failed\n"); |
| 1266 | return -EIO; |
| 1267 | } |
| 1268 | |
| 1269 | return 0; |
| 1270 | } |
| 1271 | |
Vasanthakumar Thiagarajan | 5505597 | 2011-10-25 19:34:23 +0530 | [diff] [blame] | 1272 | static struct net_device *ath6kl_cfg80211_add_iface(struct wiphy *wiphy, |
| 1273 | char *name, |
| 1274 | enum nl80211_iftype type, |
| 1275 | u32 *flags, |
| 1276 | struct vif_params *params) |
| 1277 | { |
| 1278 | struct ath6kl *ar = wiphy_priv(wiphy); |
| 1279 | struct net_device *ndev; |
| 1280 | u8 if_idx, nw_type; |
| 1281 | |
| 1282 | if (ar->num_vif == MAX_NUM_VIF) { |
| 1283 | ath6kl_err("Reached maximum number of supported vif\n"); |
| 1284 | return ERR_PTR(-EINVAL); |
| 1285 | } |
| 1286 | |
| 1287 | if (!ath6kl_is_valid_iftype(ar, type, &if_idx, &nw_type)) { |
| 1288 | ath6kl_err("Not a supported interface type\n"); |
| 1289 | return ERR_PTR(-EINVAL); |
| 1290 | } |
| 1291 | |
| 1292 | ndev = ath6kl_interface_add(ar, name, type, if_idx, nw_type); |
| 1293 | if (!ndev) |
| 1294 | return ERR_PTR(-ENOMEM); |
| 1295 | |
| 1296 | ar->num_vif++; |
| 1297 | |
| 1298 | return ndev; |
| 1299 | } |
| 1300 | |
| 1301 | static int ath6kl_cfg80211_del_iface(struct wiphy *wiphy, |
| 1302 | struct net_device *ndev) |
| 1303 | { |
| 1304 | struct ath6kl *ar = wiphy_priv(wiphy); |
| 1305 | struct ath6kl_vif *vif = netdev_priv(ndev); |
| 1306 | |
| 1307 | spin_lock(&ar->list_lock); |
| 1308 | list_del(&vif->list); |
| 1309 | spin_unlock(&ar->list_lock); |
| 1310 | |
| 1311 | ath6kl_cleanup_vif(vif, test_bit(WMI_READY, &ar->flag)); |
| 1312 | |
| 1313 | ath6kl_deinit_if_data(vif); |
| 1314 | |
| 1315 | return 0; |
| 1316 | } |
| 1317 | |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 1318 | static int ath6kl_cfg80211_change_iface(struct wiphy *wiphy, |
| 1319 | struct net_device *ndev, |
| 1320 | enum nl80211_iftype type, u32 *flags, |
| 1321 | struct vif_params *params) |
| 1322 | { |
| 1323 | struct ath6kl *ar = ath6kl_priv(ndev); |
| 1324 | struct wireless_dev *wdev = ar->wdev; |
Vasanthakumar Thiagarajan | f5938f2 | 2011-10-25 19:34:03 +0530 | [diff] [blame] | 1325 | struct ath6kl_vif *vif = netdev_priv(ndev); |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 1326 | |
| 1327 | ath6kl_dbg(ATH6KL_DBG_WLAN_CFG, "%s: type %u\n", __func__, type); |
| 1328 | |
Vasanthakumar Thiagarajan | 990bd91 | 2011-10-25 19:34:20 +0530 | [diff] [blame] | 1329 | if (!ath6kl_cfg80211_ready(vif)) |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 1330 | return -EIO; |
| 1331 | |
| 1332 | switch (type) { |
| 1333 | case NL80211_IFTYPE_STATION: |
Vasanthakumar Thiagarajan | f5938f2 | 2011-10-25 19:34:03 +0530 | [diff] [blame] | 1334 | vif->next_mode = INFRA_NETWORK; |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 1335 | break; |
| 1336 | case NL80211_IFTYPE_ADHOC: |
Vasanthakumar Thiagarajan | f5938f2 | 2011-10-25 19:34:03 +0530 | [diff] [blame] | 1337 | vif->next_mode = ADHOC_NETWORK; |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 1338 | break; |
Jouni Malinen | 6e4604c | 2011-09-05 17:38:46 +0300 | [diff] [blame] | 1339 | case NL80211_IFTYPE_AP: |
Vasanthakumar Thiagarajan | f5938f2 | 2011-10-25 19:34:03 +0530 | [diff] [blame] | 1340 | vif->next_mode = AP_NETWORK; |
Jouni Malinen | 6e4604c | 2011-09-05 17:38:46 +0300 | [diff] [blame] | 1341 | break; |
Jouni Malinen | 6b5e5d2 | 2011-08-30 21:58:05 +0300 | [diff] [blame] | 1342 | case NL80211_IFTYPE_P2P_CLIENT: |
Vasanthakumar Thiagarajan | f5938f2 | 2011-10-25 19:34:03 +0530 | [diff] [blame] | 1343 | vif->next_mode = INFRA_NETWORK; |
Jouni Malinen | 6b5e5d2 | 2011-08-30 21:58:05 +0300 | [diff] [blame] | 1344 | break; |
| 1345 | case NL80211_IFTYPE_P2P_GO: |
Vasanthakumar Thiagarajan | f5938f2 | 2011-10-25 19:34:03 +0530 | [diff] [blame] | 1346 | vif->next_mode = AP_NETWORK; |
Jouni Malinen | 6b5e5d2 | 2011-08-30 21:58:05 +0300 | [diff] [blame] | 1347 | break; |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 1348 | default: |
| 1349 | ath6kl_err("invalid interface type %u\n", type); |
| 1350 | return -EOPNOTSUPP; |
| 1351 | } |
| 1352 | |
| 1353 | wdev->iftype = type; |
| 1354 | |
| 1355 | return 0; |
| 1356 | } |
| 1357 | |
| 1358 | static int ath6kl_cfg80211_join_ibss(struct wiphy *wiphy, |
| 1359 | struct net_device *dev, |
| 1360 | struct cfg80211_ibss_params *ibss_param) |
| 1361 | { |
| 1362 | struct ath6kl *ar = ath6kl_priv(dev); |
Vasanthakumar Thiagarajan | 59c9844 | 2011-10-25 19:34:01 +0530 | [diff] [blame] | 1363 | struct ath6kl_vif *vif = netdev_priv(dev); |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 1364 | int status; |
| 1365 | |
Vasanthakumar Thiagarajan | 990bd91 | 2011-10-25 19:34:20 +0530 | [diff] [blame] | 1366 | if (!ath6kl_cfg80211_ready(vif)) |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 1367 | return -EIO; |
| 1368 | |
Vasanthakumar Thiagarajan | 3450334 | 2011-10-25 19:34:02 +0530 | [diff] [blame] | 1369 | vif->ssid_len = ibss_param->ssid_len; |
| 1370 | memcpy(vif->ssid, ibss_param->ssid, vif->ssid_len); |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 1371 | |
| 1372 | if (ibss_param->channel) |
Vasanthakumar Thiagarajan | f74bac5 | 2011-10-25 19:34:05 +0530 | [diff] [blame] | 1373 | vif->ch_hint = ibss_param->channel->center_freq; |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 1374 | |
| 1375 | if (ibss_param->channel_fixed) { |
| 1376 | /* |
| 1377 | * TODO: channel_fixed: The channel should be fixed, do not |
| 1378 | * search for IBSSs to join on other channels. Target |
| 1379 | * firmware does not support this feature, needs to be |
| 1380 | * updated. |
| 1381 | */ |
| 1382 | return -EOPNOTSUPP; |
| 1383 | } |
| 1384 | |
Vasanthakumar Thiagarajan | 8c8b65e | 2011-10-25 19:34:04 +0530 | [diff] [blame] | 1385 | memset(vif->req_bssid, 0, sizeof(vif->req_bssid)); |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 1386 | if (ibss_param->bssid && !is_broadcast_ether_addr(ibss_param->bssid)) |
Vasanthakumar Thiagarajan | 8c8b65e | 2011-10-25 19:34:04 +0530 | [diff] [blame] | 1387 | memcpy(vif->req_bssid, ibss_param->bssid, |
| 1388 | sizeof(vif->req_bssid)); |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 1389 | |
Vasanthakumar Thiagarajan | 240d279 | 2011-10-25 19:34:13 +0530 | [diff] [blame] | 1390 | ath6kl_set_wpa_version(vif, 0); |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 1391 | |
Vasanthakumar Thiagarajan | 240d279 | 2011-10-25 19:34:13 +0530 | [diff] [blame] | 1392 | status = ath6kl_set_auth_type(vif, NL80211_AUTHTYPE_OPEN_SYSTEM); |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 1393 | if (status) |
| 1394 | return status; |
| 1395 | |
| 1396 | if (ibss_param->privacy) { |
Vasanthakumar Thiagarajan | 240d279 | 2011-10-25 19:34:13 +0530 | [diff] [blame] | 1397 | ath6kl_set_cipher(vif, WLAN_CIPHER_SUITE_WEP40, true); |
| 1398 | ath6kl_set_cipher(vif, WLAN_CIPHER_SUITE_WEP40, false); |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 1399 | } else { |
Vasanthakumar Thiagarajan | 240d279 | 2011-10-25 19:34:13 +0530 | [diff] [blame] | 1400 | ath6kl_set_cipher(vif, 0, true); |
| 1401 | ath6kl_set_cipher(vif, 0, false); |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 1402 | } |
| 1403 | |
Vasanthakumar Thiagarajan | f5938f2 | 2011-10-25 19:34:03 +0530 | [diff] [blame] | 1404 | vif->nw_type = vif->next_mode; |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 1405 | |
| 1406 | ath6kl_dbg(ATH6KL_DBG_WLAN_CFG, |
| 1407 | "%s: connect called with authmode %d dot11 auth %d" |
| 1408 | " PW crypto %d PW crypto len %d GRP crypto %d" |
| 1409 | " GRP crypto len %d channel hint %u\n", |
| 1410 | __func__, |
Vasanthakumar Thiagarajan | 3450334 | 2011-10-25 19:34:02 +0530 | [diff] [blame] | 1411 | vif->auth_mode, vif->dot11_auth_mode, vif->prwise_crypto, |
| 1412 | vif->prwise_crypto_len, vif->grp_crypto, |
Vasanthakumar Thiagarajan | f74bac5 | 2011-10-25 19:34:05 +0530 | [diff] [blame] | 1413 | vif->grp_crypto_len, vif->ch_hint); |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 1414 | |
Vasanthakumar Thiagarajan | 334234b | 2011-10-25 19:34:12 +0530 | [diff] [blame] | 1415 | status = ath6kl_wmi_connect_cmd(ar->wmi, vif->fw_vif_idx, vif->nw_type, |
Vasanthakumar Thiagarajan | 3450334 | 2011-10-25 19:34:02 +0530 | [diff] [blame] | 1416 | vif->dot11_auth_mode, vif->auth_mode, |
| 1417 | vif->prwise_crypto, |
| 1418 | vif->prwise_crypto_len, |
| 1419 | vif->grp_crypto, vif->grp_crypto_len, |
| 1420 | vif->ssid_len, vif->ssid, |
Vasanthakumar Thiagarajan | f74bac5 | 2011-10-25 19:34:05 +0530 | [diff] [blame] | 1421 | vif->req_bssid, vif->ch_hint, |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 1422 | ar->connect_ctrl_flags); |
Vasanthakumar Thiagarajan | 59c9844 | 2011-10-25 19:34:01 +0530 | [diff] [blame] | 1423 | set_bit(CONNECT_PEND, &vif->flags); |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 1424 | |
| 1425 | return 0; |
| 1426 | } |
| 1427 | |
| 1428 | static int ath6kl_cfg80211_leave_ibss(struct wiphy *wiphy, |
| 1429 | struct net_device *dev) |
| 1430 | { |
Vasanthakumar Thiagarajan | 3450334 | 2011-10-25 19:34:02 +0530 | [diff] [blame] | 1431 | struct ath6kl_vif *vif = netdev_priv(dev); |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 1432 | |
Vasanthakumar Thiagarajan | 990bd91 | 2011-10-25 19:34:20 +0530 | [diff] [blame] | 1433 | if (!ath6kl_cfg80211_ready(vif)) |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 1434 | return -EIO; |
| 1435 | |
Vasanthakumar Thiagarajan | 240d279 | 2011-10-25 19:34:13 +0530 | [diff] [blame] | 1436 | ath6kl_disconnect(vif); |
Vasanthakumar Thiagarajan | 3450334 | 2011-10-25 19:34:02 +0530 | [diff] [blame] | 1437 | memset(vif->ssid, 0, sizeof(vif->ssid)); |
| 1438 | vif->ssid_len = 0; |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 1439 | |
| 1440 | return 0; |
| 1441 | } |
| 1442 | |
| 1443 | static const u32 cipher_suites[] = { |
| 1444 | WLAN_CIPHER_SUITE_WEP40, |
| 1445 | WLAN_CIPHER_SUITE_WEP104, |
| 1446 | WLAN_CIPHER_SUITE_TKIP, |
| 1447 | WLAN_CIPHER_SUITE_CCMP, |
Jouni Malinen | 837cb97 | 2011-10-11 17:31:57 +0300 | [diff] [blame] | 1448 | CCKM_KRK_CIPHER_SUITE, |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 1449 | }; |
| 1450 | |
| 1451 | static bool is_rate_legacy(s32 rate) |
| 1452 | { |
| 1453 | static const s32 legacy[] = { 1000, 2000, 5500, 11000, |
| 1454 | 6000, 9000, 12000, 18000, 24000, |
| 1455 | 36000, 48000, 54000 |
| 1456 | }; |
| 1457 | u8 i; |
| 1458 | |
| 1459 | for (i = 0; i < ARRAY_SIZE(legacy); i++) |
| 1460 | if (rate == legacy[i]) |
| 1461 | return true; |
| 1462 | |
| 1463 | return false; |
| 1464 | } |
| 1465 | |
| 1466 | static bool is_rate_ht20(s32 rate, u8 *mcs, bool *sgi) |
| 1467 | { |
| 1468 | static const s32 ht20[] = { 6500, 13000, 19500, 26000, 39000, |
| 1469 | 52000, 58500, 65000, 72200 |
| 1470 | }; |
| 1471 | u8 i; |
| 1472 | |
| 1473 | for (i = 0; i < ARRAY_SIZE(ht20); i++) { |
| 1474 | if (rate == ht20[i]) { |
| 1475 | if (i == ARRAY_SIZE(ht20) - 1) |
| 1476 | /* last rate uses sgi */ |
| 1477 | *sgi = true; |
| 1478 | else |
| 1479 | *sgi = false; |
| 1480 | |
| 1481 | *mcs = i; |
| 1482 | return true; |
| 1483 | } |
| 1484 | } |
| 1485 | return false; |
| 1486 | } |
| 1487 | |
| 1488 | static bool is_rate_ht40(s32 rate, u8 *mcs, bool *sgi) |
| 1489 | { |
| 1490 | static const s32 ht40[] = { 13500, 27000, 40500, 54000, |
| 1491 | 81000, 108000, 121500, 135000, |
| 1492 | 150000 |
| 1493 | }; |
| 1494 | u8 i; |
| 1495 | |
| 1496 | for (i = 0; i < ARRAY_SIZE(ht40); i++) { |
| 1497 | if (rate == ht40[i]) { |
| 1498 | if (i == ARRAY_SIZE(ht40) - 1) |
| 1499 | /* last rate uses sgi */ |
| 1500 | *sgi = true; |
| 1501 | else |
| 1502 | *sgi = false; |
| 1503 | |
| 1504 | *mcs = i; |
| 1505 | return true; |
| 1506 | } |
| 1507 | } |
| 1508 | |
| 1509 | return false; |
| 1510 | } |
| 1511 | |
| 1512 | static int ath6kl_get_station(struct wiphy *wiphy, struct net_device *dev, |
| 1513 | u8 *mac, struct station_info *sinfo) |
| 1514 | { |
| 1515 | struct ath6kl *ar = ath6kl_priv(dev); |
Vasanthakumar Thiagarajan | 59c9844 | 2011-10-25 19:34:01 +0530 | [diff] [blame] | 1516 | struct ath6kl_vif *vif = netdev_priv(dev); |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 1517 | long left; |
| 1518 | bool sgi; |
| 1519 | s32 rate; |
| 1520 | int ret; |
| 1521 | u8 mcs; |
| 1522 | |
Vasanthakumar Thiagarajan | 8c8b65e | 2011-10-25 19:34:04 +0530 | [diff] [blame] | 1523 | if (memcmp(mac, vif->bssid, ETH_ALEN) != 0) |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 1524 | return -ENOENT; |
| 1525 | |
| 1526 | if (down_interruptible(&ar->sem)) |
| 1527 | return -EBUSY; |
| 1528 | |
Vasanthakumar Thiagarajan | b95907a | 2011-10-25 19:34:11 +0530 | [diff] [blame] | 1529 | set_bit(STATS_UPDATE_PEND, &vif->flags); |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 1530 | |
Vasanthakumar Thiagarajan | 334234b | 2011-10-25 19:34:12 +0530 | [diff] [blame] | 1531 | ret = ath6kl_wmi_get_stats_cmd(ar->wmi, vif->fw_vif_idx); |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 1532 | |
| 1533 | if (ret != 0) { |
| 1534 | up(&ar->sem); |
| 1535 | return -EIO; |
| 1536 | } |
| 1537 | |
| 1538 | left = wait_event_interruptible_timeout(ar->event_wq, |
| 1539 | !test_bit(STATS_UPDATE_PEND, |
Vasanthakumar Thiagarajan | b95907a | 2011-10-25 19:34:11 +0530 | [diff] [blame] | 1540 | &vif->flags), |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 1541 | WMI_TIMEOUT); |
| 1542 | |
| 1543 | up(&ar->sem); |
| 1544 | |
| 1545 | if (left == 0) |
| 1546 | return -ETIMEDOUT; |
| 1547 | else if (left < 0) |
| 1548 | return left; |
| 1549 | |
Vasanthakumar Thiagarajan | b95907a | 2011-10-25 19:34:11 +0530 | [diff] [blame] | 1550 | if (vif->target_stats.rx_byte) { |
| 1551 | sinfo->rx_bytes = vif->target_stats.rx_byte; |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 1552 | sinfo->filled |= STATION_INFO_RX_BYTES; |
Vasanthakumar Thiagarajan | b95907a | 2011-10-25 19:34:11 +0530 | [diff] [blame] | 1553 | sinfo->rx_packets = vif->target_stats.rx_pkt; |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 1554 | sinfo->filled |= STATION_INFO_RX_PACKETS; |
| 1555 | } |
| 1556 | |
Vasanthakumar Thiagarajan | b95907a | 2011-10-25 19:34:11 +0530 | [diff] [blame] | 1557 | if (vif->target_stats.tx_byte) { |
| 1558 | sinfo->tx_bytes = vif->target_stats.tx_byte; |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 1559 | sinfo->filled |= STATION_INFO_TX_BYTES; |
Vasanthakumar Thiagarajan | b95907a | 2011-10-25 19:34:11 +0530 | [diff] [blame] | 1560 | sinfo->tx_packets = vif->target_stats.tx_pkt; |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 1561 | sinfo->filled |= STATION_INFO_TX_PACKETS; |
| 1562 | } |
| 1563 | |
Vasanthakumar Thiagarajan | b95907a | 2011-10-25 19:34:11 +0530 | [diff] [blame] | 1564 | sinfo->signal = vif->target_stats.cs_rssi; |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 1565 | sinfo->filled |= STATION_INFO_SIGNAL; |
| 1566 | |
Vasanthakumar Thiagarajan | b95907a | 2011-10-25 19:34:11 +0530 | [diff] [blame] | 1567 | rate = vif->target_stats.tx_ucast_rate; |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 1568 | |
| 1569 | if (is_rate_legacy(rate)) { |
| 1570 | sinfo->txrate.legacy = rate / 100; |
| 1571 | } else if (is_rate_ht20(rate, &mcs, &sgi)) { |
| 1572 | if (sgi) { |
| 1573 | sinfo->txrate.flags |= RATE_INFO_FLAGS_SHORT_GI; |
| 1574 | sinfo->txrate.mcs = mcs - 1; |
| 1575 | } else { |
| 1576 | sinfo->txrate.mcs = mcs; |
| 1577 | } |
| 1578 | |
| 1579 | sinfo->txrate.flags |= RATE_INFO_FLAGS_MCS; |
| 1580 | } else if (is_rate_ht40(rate, &mcs, &sgi)) { |
| 1581 | if (sgi) { |
| 1582 | sinfo->txrate.flags |= RATE_INFO_FLAGS_SHORT_GI; |
| 1583 | sinfo->txrate.mcs = mcs - 1; |
| 1584 | } else { |
| 1585 | sinfo->txrate.mcs = mcs; |
| 1586 | } |
| 1587 | |
| 1588 | sinfo->txrate.flags |= RATE_INFO_FLAGS_40_MHZ_WIDTH; |
| 1589 | sinfo->txrate.flags |= RATE_INFO_FLAGS_MCS; |
| 1590 | } else { |
Kalle Valo | 9a73083 | 2011-09-27 23:33:28 +0300 | [diff] [blame] | 1591 | ath6kl_dbg(ATH6KL_DBG_WLAN_CFG, |
| 1592 | "invalid rate from stats: %d\n", rate); |
| 1593 | ath6kl_debug_war(ar, ATH6KL_WAR_INVALID_RATE); |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 1594 | return 0; |
| 1595 | } |
| 1596 | |
| 1597 | sinfo->filled |= STATION_INFO_TX_BITRATE; |
| 1598 | |
Vasanthakumar Thiagarajan | 59c9844 | 2011-10-25 19:34:01 +0530 | [diff] [blame] | 1599 | if (test_bit(CONNECTED, &vif->flags) && |
| 1600 | test_bit(DTIM_PERIOD_AVAIL, &vif->flags) && |
Vasanthakumar Thiagarajan | f5938f2 | 2011-10-25 19:34:03 +0530 | [diff] [blame] | 1601 | vif->nw_type == INFRA_NETWORK) { |
Jouni Malinen | 32c1087 | 2011-09-19 19:15:07 +0300 | [diff] [blame] | 1602 | sinfo->filled |= STATION_INFO_BSS_PARAM; |
| 1603 | sinfo->bss_param.flags = 0; |
Vasanthakumar Thiagarajan | cf5333d | 2011-10-25 19:34:10 +0530 | [diff] [blame] | 1604 | sinfo->bss_param.dtim_period = vif->assoc_bss_dtim_period; |
| 1605 | sinfo->bss_param.beacon_interval = vif->assoc_bss_beacon_int; |
Jouni Malinen | 32c1087 | 2011-09-19 19:15:07 +0300 | [diff] [blame] | 1606 | } |
| 1607 | |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 1608 | return 0; |
| 1609 | } |
| 1610 | |
| 1611 | static int ath6kl_set_pmksa(struct wiphy *wiphy, struct net_device *netdev, |
| 1612 | struct cfg80211_pmksa *pmksa) |
| 1613 | { |
| 1614 | struct ath6kl *ar = ath6kl_priv(netdev); |
Vasanthakumar Thiagarajan | 334234b | 2011-10-25 19:34:12 +0530 | [diff] [blame] | 1615 | struct ath6kl_vif *vif = netdev_priv(netdev); |
| 1616 | |
| 1617 | return ath6kl_wmi_setpmkid_cmd(ar->wmi, vif->fw_vif_idx, pmksa->bssid, |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 1618 | pmksa->pmkid, true); |
| 1619 | } |
| 1620 | |
| 1621 | static int ath6kl_del_pmksa(struct wiphy *wiphy, struct net_device *netdev, |
| 1622 | struct cfg80211_pmksa *pmksa) |
| 1623 | { |
| 1624 | struct ath6kl *ar = ath6kl_priv(netdev); |
Vasanthakumar Thiagarajan | 334234b | 2011-10-25 19:34:12 +0530 | [diff] [blame] | 1625 | struct ath6kl_vif *vif = netdev_priv(netdev); |
| 1626 | |
| 1627 | return ath6kl_wmi_setpmkid_cmd(ar->wmi, vif->fw_vif_idx, pmksa->bssid, |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 1628 | pmksa->pmkid, false); |
| 1629 | } |
| 1630 | |
| 1631 | static int ath6kl_flush_pmksa(struct wiphy *wiphy, struct net_device *netdev) |
| 1632 | { |
| 1633 | struct ath6kl *ar = ath6kl_priv(netdev); |
Vasanthakumar Thiagarajan | 59c9844 | 2011-10-25 19:34:01 +0530 | [diff] [blame] | 1634 | struct ath6kl_vif *vif = netdev_priv(netdev); |
| 1635 | |
| 1636 | if (test_bit(CONNECTED, &vif->flags)) |
Vasanthakumar Thiagarajan | 334234b | 2011-10-25 19:34:12 +0530 | [diff] [blame] | 1637 | return ath6kl_wmi_setpmkid_cmd(ar->wmi, vif->fw_vif_idx, |
| 1638 | vif->bssid, NULL, false); |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 1639 | return 0; |
| 1640 | } |
| 1641 | |
Kalle Valo | abcb344 | 2011-07-22 08:26:20 +0300 | [diff] [blame] | 1642 | #ifdef CONFIG_PM |
| 1643 | static int ar6k_cfg80211_suspend(struct wiphy *wiphy, |
| 1644 | struct cfg80211_wowlan *wow) |
| 1645 | { |
| 1646 | struct ath6kl *ar = wiphy_priv(wiphy); |
| 1647 | |
| 1648 | return ath6kl_hif_suspend(ar); |
| 1649 | } |
Chilam Ng | aa6cffc | 2011-10-05 10:12:52 +0300 | [diff] [blame] | 1650 | |
| 1651 | static int ar6k_cfg80211_resume(struct wiphy *wiphy) |
| 1652 | { |
| 1653 | struct ath6kl *ar = wiphy_priv(wiphy); |
| 1654 | |
| 1655 | return ath6kl_hif_resume(ar); |
| 1656 | } |
Kalle Valo | abcb344 | 2011-07-22 08:26:20 +0300 | [diff] [blame] | 1657 | #endif |
| 1658 | |
Jouni Malinen | 6a7c9ba | 2011-08-30 21:57:50 +0300 | [diff] [blame] | 1659 | static int ath6kl_set_channel(struct wiphy *wiphy, struct net_device *dev, |
| 1660 | struct ieee80211_channel *chan, |
| 1661 | enum nl80211_channel_type channel_type) |
| 1662 | { |
Vasanthakumar Thiagarajan | cf5333d | 2011-10-25 19:34:10 +0530 | [diff] [blame] | 1663 | struct ath6kl_vif *vif = netdev_priv(dev); |
Jouni Malinen | 6a7c9ba | 2011-08-30 21:57:50 +0300 | [diff] [blame] | 1664 | |
Vasanthakumar Thiagarajan | 990bd91 | 2011-10-25 19:34:20 +0530 | [diff] [blame] | 1665 | if (!ath6kl_cfg80211_ready(vif)) |
Jouni Malinen | 6a7c9ba | 2011-08-30 21:57:50 +0300 | [diff] [blame] | 1666 | return -EIO; |
| 1667 | |
| 1668 | ath6kl_dbg(ATH6KL_DBG_WLAN_CFG, "%s: center_freq=%u hw_value=%u\n", |
| 1669 | __func__, chan->center_freq, chan->hw_value); |
Vasanthakumar Thiagarajan | cf5333d | 2011-10-25 19:34:10 +0530 | [diff] [blame] | 1670 | vif->next_chan = chan->center_freq; |
Jouni Malinen | 6a7c9ba | 2011-08-30 21:57:50 +0300 | [diff] [blame] | 1671 | |
| 1672 | return 0; |
| 1673 | } |
| 1674 | |
Jouni Malinen | 8bdfbf4 | 2011-08-30 21:58:09 +0300 | [diff] [blame] | 1675 | static bool ath6kl_is_p2p_ie(const u8 *pos) |
| 1676 | { |
| 1677 | return pos[0] == WLAN_EID_VENDOR_SPECIFIC && pos[1] >= 4 && |
| 1678 | pos[2] == 0x50 && pos[3] == 0x6f && |
| 1679 | pos[4] == 0x9a && pos[5] == 0x09; |
| 1680 | } |
| 1681 | |
Vasanthakumar Thiagarajan | 334234b | 2011-10-25 19:34:12 +0530 | [diff] [blame] | 1682 | static int ath6kl_set_ap_probe_resp_ies(struct ath6kl_vif *vif, |
| 1683 | const u8 *ies, size_t ies_len) |
Jouni Malinen | 8bdfbf4 | 2011-08-30 21:58:09 +0300 | [diff] [blame] | 1684 | { |
Vasanthakumar Thiagarajan | 334234b | 2011-10-25 19:34:12 +0530 | [diff] [blame] | 1685 | struct ath6kl *ar = vif->ar; |
Jouni Malinen | 8bdfbf4 | 2011-08-30 21:58:09 +0300 | [diff] [blame] | 1686 | const u8 *pos; |
| 1687 | u8 *buf = NULL; |
| 1688 | size_t len = 0; |
| 1689 | int ret; |
| 1690 | |
| 1691 | /* |
| 1692 | * Filter out P2P IE(s) since they will be included depending on |
| 1693 | * the Probe Request frame in ath6kl_send_go_probe_resp(). |
| 1694 | */ |
| 1695 | |
| 1696 | if (ies && ies_len) { |
| 1697 | buf = kmalloc(ies_len, GFP_KERNEL); |
| 1698 | if (buf == NULL) |
| 1699 | return -ENOMEM; |
| 1700 | pos = ies; |
| 1701 | while (pos + 1 < ies + ies_len) { |
| 1702 | if (pos + 2 + pos[1] > ies + ies_len) |
| 1703 | break; |
| 1704 | if (!ath6kl_is_p2p_ie(pos)) { |
| 1705 | memcpy(buf + len, pos, 2 + pos[1]); |
| 1706 | len += 2 + pos[1]; |
| 1707 | } |
| 1708 | pos += 2 + pos[1]; |
| 1709 | } |
| 1710 | } |
| 1711 | |
Vasanthakumar Thiagarajan | 334234b | 2011-10-25 19:34:12 +0530 | [diff] [blame] | 1712 | ret = ath6kl_wmi_set_appie_cmd(ar->wmi, vif->fw_vif_idx, |
| 1713 | WMI_FRAME_PROBE_RESP, buf, len); |
Jouni Malinen | 8bdfbf4 | 2011-08-30 21:58:09 +0300 | [diff] [blame] | 1714 | kfree(buf); |
| 1715 | return ret; |
| 1716 | } |
| 1717 | |
Jouni Malinen | 6a7c9ba | 2011-08-30 21:57:50 +0300 | [diff] [blame] | 1718 | static int ath6kl_ap_beacon(struct wiphy *wiphy, struct net_device *dev, |
| 1719 | struct beacon_parameters *info, bool add) |
| 1720 | { |
| 1721 | struct ath6kl *ar = ath6kl_priv(dev); |
Vasanthakumar Thiagarajan | 3450334 | 2011-10-25 19:34:02 +0530 | [diff] [blame] | 1722 | struct ath6kl_vif *vif = netdev_priv(dev); |
Jouni Malinen | 6a7c9ba | 2011-08-30 21:57:50 +0300 | [diff] [blame] | 1723 | struct ieee80211_mgmt *mgmt; |
| 1724 | u8 *ies; |
| 1725 | int ies_len; |
| 1726 | struct wmi_connect_cmd p; |
| 1727 | int res; |
| 1728 | int i; |
| 1729 | |
| 1730 | ath6kl_dbg(ATH6KL_DBG_WLAN_CFG, "%s: add=%d\n", __func__, add); |
| 1731 | |
Vasanthakumar Thiagarajan | 990bd91 | 2011-10-25 19:34:20 +0530 | [diff] [blame] | 1732 | if (!ath6kl_cfg80211_ready(vif)) |
Jouni Malinen | 6a7c9ba | 2011-08-30 21:57:50 +0300 | [diff] [blame] | 1733 | return -EIO; |
| 1734 | |
Vasanthakumar Thiagarajan | f5938f2 | 2011-10-25 19:34:03 +0530 | [diff] [blame] | 1735 | if (vif->next_mode != AP_NETWORK) |
Jouni Malinen | 6a7c9ba | 2011-08-30 21:57:50 +0300 | [diff] [blame] | 1736 | return -EOPNOTSUPP; |
| 1737 | |
| 1738 | if (info->beacon_ies) { |
Vasanthakumar Thiagarajan | 334234b | 2011-10-25 19:34:12 +0530 | [diff] [blame] | 1739 | res = ath6kl_wmi_set_appie_cmd(ar->wmi, vif->fw_vif_idx, |
| 1740 | WMI_FRAME_BEACON, |
Jouni Malinen | 6a7c9ba | 2011-08-30 21:57:50 +0300 | [diff] [blame] | 1741 | info->beacon_ies, |
| 1742 | info->beacon_ies_len); |
| 1743 | if (res) |
| 1744 | return res; |
| 1745 | } |
| 1746 | if (info->proberesp_ies) { |
Vasanthakumar Thiagarajan | 334234b | 2011-10-25 19:34:12 +0530 | [diff] [blame] | 1747 | res = ath6kl_set_ap_probe_resp_ies(vif, info->proberesp_ies, |
Jouni Malinen | 8bdfbf4 | 2011-08-30 21:58:09 +0300 | [diff] [blame] | 1748 | info->proberesp_ies_len); |
Jouni Malinen | 6a7c9ba | 2011-08-30 21:57:50 +0300 | [diff] [blame] | 1749 | if (res) |
| 1750 | return res; |
| 1751 | } |
| 1752 | if (info->assocresp_ies) { |
Vasanthakumar Thiagarajan | 334234b | 2011-10-25 19:34:12 +0530 | [diff] [blame] | 1753 | res = ath6kl_wmi_set_appie_cmd(ar->wmi, vif->fw_vif_idx, |
| 1754 | WMI_FRAME_ASSOC_RESP, |
Jouni Malinen | 6a7c9ba | 2011-08-30 21:57:50 +0300 | [diff] [blame] | 1755 | info->assocresp_ies, |
| 1756 | info->assocresp_ies_len); |
| 1757 | if (res) |
| 1758 | return res; |
| 1759 | } |
| 1760 | |
| 1761 | if (!add) |
| 1762 | return 0; |
| 1763 | |
Jouni Malinen | 9a5b131 | 2011-08-30 21:57:52 +0300 | [diff] [blame] | 1764 | ar->ap_mode_bkey.valid = false; |
| 1765 | |
Jouni Malinen | 6a7c9ba | 2011-08-30 21:57:50 +0300 | [diff] [blame] | 1766 | /* TODO: |
| 1767 | * info->interval |
| 1768 | * info->dtim_period |
| 1769 | */ |
| 1770 | |
| 1771 | if (info->head == NULL) |
| 1772 | return -EINVAL; |
| 1773 | mgmt = (struct ieee80211_mgmt *) info->head; |
| 1774 | ies = mgmt->u.beacon.variable; |
| 1775 | if (ies > info->head + info->head_len) |
| 1776 | return -EINVAL; |
| 1777 | ies_len = info->head + info->head_len - ies; |
| 1778 | |
| 1779 | if (info->ssid == NULL) |
| 1780 | return -EINVAL; |
Vasanthakumar Thiagarajan | 3450334 | 2011-10-25 19:34:02 +0530 | [diff] [blame] | 1781 | memcpy(vif->ssid, info->ssid, info->ssid_len); |
| 1782 | vif->ssid_len = info->ssid_len; |
Jouni Malinen | 6a7c9ba | 2011-08-30 21:57:50 +0300 | [diff] [blame] | 1783 | if (info->hidden_ssid != NL80211_HIDDEN_SSID_NOT_IN_USE) |
| 1784 | return -EOPNOTSUPP; /* TODO */ |
| 1785 | |
Vasanthakumar Thiagarajan | 3450334 | 2011-10-25 19:34:02 +0530 | [diff] [blame] | 1786 | vif->dot11_auth_mode = OPEN_AUTH; |
Jouni Malinen | 6a7c9ba | 2011-08-30 21:57:50 +0300 | [diff] [blame] | 1787 | |
| 1788 | memset(&p, 0, sizeof(p)); |
| 1789 | |
| 1790 | for (i = 0; i < info->crypto.n_akm_suites; i++) { |
| 1791 | switch (info->crypto.akm_suites[i]) { |
| 1792 | case WLAN_AKM_SUITE_8021X: |
| 1793 | if (info->crypto.wpa_versions & NL80211_WPA_VERSION_1) |
| 1794 | p.auth_mode |= WPA_AUTH; |
| 1795 | if (info->crypto.wpa_versions & NL80211_WPA_VERSION_2) |
| 1796 | p.auth_mode |= WPA2_AUTH; |
| 1797 | break; |
| 1798 | case WLAN_AKM_SUITE_PSK: |
| 1799 | if (info->crypto.wpa_versions & NL80211_WPA_VERSION_1) |
| 1800 | p.auth_mode |= WPA_PSK_AUTH; |
| 1801 | if (info->crypto.wpa_versions & NL80211_WPA_VERSION_2) |
| 1802 | p.auth_mode |= WPA2_PSK_AUTH; |
| 1803 | break; |
| 1804 | } |
| 1805 | } |
| 1806 | if (p.auth_mode == 0) |
| 1807 | p.auth_mode = NONE_AUTH; |
Vasanthakumar Thiagarajan | 3450334 | 2011-10-25 19:34:02 +0530 | [diff] [blame] | 1808 | vif->auth_mode = p.auth_mode; |
Jouni Malinen | 6a7c9ba | 2011-08-30 21:57:50 +0300 | [diff] [blame] | 1809 | |
| 1810 | for (i = 0; i < info->crypto.n_ciphers_pairwise; i++) { |
| 1811 | switch (info->crypto.ciphers_pairwise[i]) { |
| 1812 | case WLAN_CIPHER_SUITE_WEP40: |
| 1813 | case WLAN_CIPHER_SUITE_WEP104: |
| 1814 | p.prwise_crypto_type |= WEP_CRYPT; |
| 1815 | break; |
| 1816 | case WLAN_CIPHER_SUITE_TKIP: |
| 1817 | p.prwise_crypto_type |= TKIP_CRYPT; |
| 1818 | break; |
| 1819 | case WLAN_CIPHER_SUITE_CCMP: |
| 1820 | p.prwise_crypto_type |= AES_CRYPT; |
| 1821 | break; |
| 1822 | } |
| 1823 | } |
Edward Lu | 229ed6b | 2011-08-30 21:58:07 +0300 | [diff] [blame] | 1824 | if (p.prwise_crypto_type == 0) { |
Jouni Malinen | 6a7c9ba | 2011-08-30 21:57:50 +0300 | [diff] [blame] | 1825 | p.prwise_crypto_type = NONE_CRYPT; |
Vasanthakumar Thiagarajan | 240d279 | 2011-10-25 19:34:13 +0530 | [diff] [blame] | 1826 | ath6kl_set_cipher(vif, 0, true); |
Edward Lu | 229ed6b | 2011-08-30 21:58:07 +0300 | [diff] [blame] | 1827 | } else if (info->crypto.n_ciphers_pairwise == 1) |
Vasanthakumar Thiagarajan | 240d279 | 2011-10-25 19:34:13 +0530 | [diff] [blame] | 1828 | ath6kl_set_cipher(vif, info->crypto.ciphers_pairwise[0], true); |
Jouni Malinen | 6a7c9ba | 2011-08-30 21:57:50 +0300 | [diff] [blame] | 1829 | |
| 1830 | switch (info->crypto.cipher_group) { |
| 1831 | case WLAN_CIPHER_SUITE_WEP40: |
| 1832 | case WLAN_CIPHER_SUITE_WEP104: |
| 1833 | p.grp_crypto_type = WEP_CRYPT; |
| 1834 | break; |
| 1835 | case WLAN_CIPHER_SUITE_TKIP: |
| 1836 | p.grp_crypto_type = TKIP_CRYPT; |
| 1837 | break; |
| 1838 | case WLAN_CIPHER_SUITE_CCMP: |
| 1839 | p.grp_crypto_type = AES_CRYPT; |
| 1840 | break; |
| 1841 | default: |
| 1842 | p.grp_crypto_type = NONE_CRYPT; |
| 1843 | break; |
| 1844 | } |
Vasanthakumar Thiagarajan | 240d279 | 2011-10-25 19:34:13 +0530 | [diff] [blame] | 1845 | ath6kl_set_cipher(vif, info->crypto.cipher_group, false); |
Jouni Malinen | 6a7c9ba | 2011-08-30 21:57:50 +0300 | [diff] [blame] | 1846 | |
| 1847 | p.nw_type = AP_NETWORK; |
Vasanthakumar Thiagarajan | f5938f2 | 2011-10-25 19:34:03 +0530 | [diff] [blame] | 1848 | vif->nw_type = vif->next_mode; |
Jouni Malinen | 6a7c9ba | 2011-08-30 21:57:50 +0300 | [diff] [blame] | 1849 | |
Vasanthakumar Thiagarajan | 3450334 | 2011-10-25 19:34:02 +0530 | [diff] [blame] | 1850 | p.ssid_len = vif->ssid_len; |
| 1851 | memcpy(p.ssid, vif->ssid, vif->ssid_len); |
| 1852 | p.dot11_auth_mode = vif->dot11_auth_mode; |
Vasanthakumar Thiagarajan | cf5333d | 2011-10-25 19:34:10 +0530 | [diff] [blame] | 1853 | p.ch = cpu_to_le16(vif->next_chan); |
Jouni Malinen | 6a7c9ba | 2011-08-30 21:57:50 +0300 | [diff] [blame] | 1854 | |
Vasanthakumar Thiagarajan | 334234b | 2011-10-25 19:34:12 +0530 | [diff] [blame] | 1855 | res = ath6kl_wmi_ap_profile_commit(ar->wmi, vif->fw_vif_idx, &p); |
Jouni Malinen | 9a5b131 | 2011-08-30 21:57:52 +0300 | [diff] [blame] | 1856 | if (res < 0) |
| 1857 | return res; |
| 1858 | |
| 1859 | return 0; |
Jouni Malinen | 6a7c9ba | 2011-08-30 21:57:50 +0300 | [diff] [blame] | 1860 | } |
| 1861 | |
| 1862 | static int ath6kl_add_beacon(struct wiphy *wiphy, struct net_device *dev, |
| 1863 | struct beacon_parameters *info) |
| 1864 | { |
| 1865 | return ath6kl_ap_beacon(wiphy, dev, info, true); |
| 1866 | } |
| 1867 | |
| 1868 | static int ath6kl_set_beacon(struct wiphy *wiphy, struct net_device *dev, |
| 1869 | struct beacon_parameters *info) |
| 1870 | { |
| 1871 | return ath6kl_ap_beacon(wiphy, dev, info, false); |
| 1872 | } |
| 1873 | |
| 1874 | static int ath6kl_del_beacon(struct wiphy *wiphy, struct net_device *dev) |
| 1875 | { |
| 1876 | struct ath6kl *ar = ath6kl_priv(dev); |
Vasanthakumar Thiagarajan | 59c9844 | 2011-10-25 19:34:01 +0530 | [diff] [blame] | 1877 | struct ath6kl_vif *vif = netdev_priv(dev); |
Jouni Malinen | 6a7c9ba | 2011-08-30 21:57:50 +0300 | [diff] [blame] | 1878 | |
Vasanthakumar Thiagarajan | f5938f2 | 2011-10-25 19:34:03 +0530 | [diff] [blame] | 1879 | if (vif->nw_type != AP_NETWORK) |
Jouni Malinen | 6a7c9ba | 2011-08-30 21:57:50 +0300 | [diff] [blame] | 1880 | return -EOPNOTSUPP; |
Vasanthakumar Thiagarajan | 59c9844 | 2011-10-25 19:34:01 +0530 | [diff] [blame] | 1881 | if (!test_bit(CONNECTED, &vif->flags)) |
Jouni Malinen | 6a7c9ba | 2011-08-30 21:57:50 +0300 | [diff] [blame] | 1882 | return -ENOTCONN; |
| 1883 | |
Vasanthakumar Thiagarajan | 334234b | 2011-10-25 19:34:12 +0530 | [diff] [blame] | 1884 | ath6kl_wmi_disconnect_cmd(ar->wmi, vif->fw_vif_idx); |
Vasanthakumar Thiagarajan | 59c9844 | 2011-10-25 19:34:01 +0530 | [diff] [blame] | 1885 | clear_bit(CONNECTED, &vif->flags); |
Jouni Malinen | 6a7c9ba | 2011-08-30 21:57:50 +0300 | [diff] [blame] | 1886 | |
| 1887 | return 0; |
| 1888 | } |
| 1889 | |
Jouni Malinen | 2387513 | 2011-08-30 21:57:53 +0300 | [diff] [blame] | 1890 | static int ath6kl_change_station(struct wiphy *wiphy, struct net_device *dev, |
| 1891 | u8 *mac, struct station_parameters *params) |
| 1892 | { |
| 1893 | struct ath6kl *ar = ath6kl_priv(dev); |
Vasanthakumar Thiagarajan | f5938f2 | 2011-10-25 19:34:03 +0530 | [diff] [blame] | 1894 | struct ath6kl_vif *vif = netdev_priv(dev); |
Jouni Malinen | 2387513 | 2011-08-30 21:57:53 +0300 | [diff] [blame] | 1895 | |
Vasanthakumar Thiagarajan | f5938f2 | 2011-10-25 19:34:03 +0530 | [diff] [blame] | 1896 | if (vif->nw_type != AP_NETWORK) |
Jouni Malinen | 2387513 | 2011-08-30 21:57:53 +0300 | [diff] [blame] | 1897 | return -EOPNOTSUPP; |
| 1898 | |
| 1899 | /* Use this only for authorizing/unauthorizing a station */ |
| 1900 | if (!(params->sta_flags_mask & BIT(NL80211_STA_FLAG_AUTHORIZED))) |
| 1901 | return -EOPNOTSUPP; |
| 1902 | |
| 1903 | if (params->sta_flags_set & BIT(NL80211_STA_FLAG_AUTHORIZED)) |
Vasanthakumar Thiagarajan | 334234b | 2011-10-25 19:34:12 +0530 | [diff] [blame] | 1904 | return ath6kl_wmi_ap_set_mlme(ar->wmi, vif->fw_vif_idx, |
| 1905 | WMI_AP_MLME_AUTHORIZE, mac, 0); |
| 1906 | return ath6kl_wmi_ap_set_mlme(ar->wmi, vif->fw_vif_idx, |
| 1907 | WMI_AP_MLME_UNAUTHORIZE, mac, 0); |
Jouni Malinen | 2387513 | 2011-08-30 21:57:53 +0300 | [diff] [blame] | 1908 | } |
| 1909 | |
Jouni Malinen | 63fa1e0 | 2011-08-30 21:57:55 +0300 | [diff] [blame] | 1910 | static int ath6kl_remain_on_channel(struct wiphy *wiphy, |
| 1911 | struct net_device *dev, |
| 1912 | struct ieee80211_channel *chan, |
| 1913 | enum nl80211_channel_type channel_type, |
| 1914 | unsigned int duration, |
| 1915 | u64 *cookie) |
| 1916 | { |
| 1917 | struct ath6kl *ar = ath6kl_priv(dev); |
Vasanthakumar Thiagarajan | 334234b | 2011-10-25 19:34:12 +0530 | [diff] [blame] | 1918 | struct ath6kl_vif *vif = netdev_priv(dev); |
Jouni Malinen | 63fa1e0 | 2011-08-30 21:57:55 +0300 | [diff] [blame] | 1919 | |
| 1920 | /* TODO: if already pending or ongoing remain-on-channel, |
| 1921 | * return -EBUSY */ |
| 1922 | *cookie = 1; /* only a single pending request is supported */ |
| 1923 | |
Vasanthakumar Thiagarajan | 334234b | 2011-10-25 19:34:12 +0530 | [diff] [blame] | 1924 | return ath6kl_wmi_remain_on_chnl_cmd(ar->wmi, vif->fw_vif_idx, |
| 1925 | chan->center_freq, duration); |
Jouni Malinen | 63fa1e0 | 2011-08-30 21:57:55 +0300 | [diff] [blame] | 1926 | } |
| 1927 | |
| 1928 | static int ath6kl_cancel_remain_on_channel(struct wiphy *wiphy, |
| 1929 | struct net_device *dev, |
| 1930 | u64 cookie) |
| 1931 | { |
| 1932 | struct ath6kl *ar = ath6kl_priv(dev); |
Vasanthakumar Thiagarajan | 334234b | 2011-10-25 19:34:12 +0530 | [diff] [blame] | 1933 | struct ath6kl_vif *vif = netdev_priv(dev); |
Jouni Malinen | 63fa1e0 | 2011-08-30 21:57:55 +0300 | [diff] [blame] | 1934 | |
| 1935 | if (cookie != 1) |
| 1936 | return -ENOENT; |
| 1937 | |
Vasanthakumar Thiagarajan | 334234b | 2011-10-25 19:34:12 +0530 | [diff] [blame] | 1938 | return ath6kl_wmi_cancel_remain_on_chnl_cmd(ar->wmi, vif->fw_vif_idx); |
Jouni Malinen | 63fa1e0 | 2011-08-30 21:57:55 +0300 | [diff] [blame] | 1939 | } |
| 1940 | |
Vasanthakumar Thiagarajan | 334234b | 2011-10-25 19:34:12 +0530 | [diff] [blame] | 1941 | static int ath6kl_send_go_probe_resp(struct ath6kl_vif *vif, |
| 1942 | const u8 *buf, size_t len, |
| 1943 | unsigned int freq) |
Jouni Malinen | 8bdfbf4 | 2011-08-30 21:58:09 +0300 | [diff] [blame] | 1944 | { |
Vasanthakumar Thiagarajan | 334234b | 2011-10-25 19:34:12 +0530 | [diff] [blame] | 1945 | struct ath6kl *ar = vif->ar; |
Jouni Malinen | 8bdfbf4 | 2011-08-30 21:58:09 +0300 | [diff] [blame] | 1946 | const u8 *pos; |
| 1947 | u8 *p2p; |
| 1948 | int p2p_len; |
| 1949 | int ret; |
| 1950 | const struct ieee80211_mgmt *mgmt; |
| 1951 | |
| 1952 | mgmt = (const struct ieee80211_mgmt *) buf; |
| 1953 | |
| 1954 | /* Include P2P IE(s) from the frame generated in user space. */ |
| 1955 | |
| 1956 | p2p = kmalloc(len, GFP_KERNEL); |
| 1957 | if (p2p == NULL) |
| 1958 | return -ENOMEM; |
| 1959 | p2p_len = 0; |
| 1960 | |
| 1961 | pos = mgmt->u.probe_resp.variable; |
| 1962 | while (pos + 1 < buf + len) { |
| 1963 | if (pos + 2 + pos[1] > buf + len) |
| 1964 | break; |
| 1965 | if (ath6kl_is_p2p_ie(pos)) { |
| 1966 | memcpy(p2p + p2p_len, pos, 2 + pos[1]); |
| 1967 | p2p_len += 2 + pos[1]; |
| 1968 | } |
| 1969 | pos += 2 + pos[1]; |
| 1970 | } |
| 1971 | |
Vasanthakumar Thiagarajan | 334234b | 2011-10-25 19:34:12 +0530 | [diff] [blame] | 1972 | ret = ath6kl_wmi_send_probe_response_cmd(ar->wmi, vif->fw_vif_idx, freq, |
| 1973 | mgmt->da, p2p, p2p_len); |
Jouni Malinen | 8bdfbf4 | 2011-08-30 21:58:09 +0300 | [diff] [blame] | 1974 | kfree(p2p); |
| 1975 | return ret; |
| 1976 | } |
| 1977 | |
Jouni Malinen | 8a6c8060 | 2011-08-30 21:57:56 +0300 | [diff] [blame] | 1978 | static int ath6kl_mgmt_tx(struct wiphy *wiphy, struct net_device *dev, |
| 1979 | struct ieee80211_channel *chan, bool offchan, |
| 1980 | enum nl80211_channel_type channel_type, |
| 1981 | bool channel_type_valid, unsigned int wait, |
Johannes Berg | e247bd90 | 2011-11-04 11:18:21 +0100 | [diff] [blame] | 1982 | const u8 *buf, size_t len, bool no_cck, |
| 1983 | bool dont_wait_for_ack, u64 *cookie) |
Jouni Malinen | 8a6c8060 | 2011-08-30 21:57:56 +0300 | [diff] [blame] | 1984 | { |
| 1985 | struct ath6kl *ar = ath6kl_priv(dev); |
Vasanthakumar Thiagarajan | 59c9844 | 2011-10-25 19:34:01 +0530 | [diff] [blame] | 1986 | struct ath6kl_vif *vif = netdev_priv(dev); |
Jouni Malinen | 8a6c8060 | 2011-08-30 21:57:56 +0300 | [diff] [blame] | 1987 | u32 id; |
Jouni Malinen | 8bdfbf4 | 2011-08-30 21:58:09 +0300 | [diff] [blame] | 1988 | const struct ieee80211_mgmt *mgmt; |
| 1989 | |
| 1990 | mgmt = (const struct ieee80211_mgmt *) buf; |
| 1991 | if (buf + len >= mgmt->u.probe_resp.variable && |
Vasanthakumar Thiagarajan | f5938f2 | 2011-10-25 19:34:03 +0530 | [diff] [blame] | 1992 | vif->nw_type == AP_NETWORK && test_bit(CONNECTED, &vif->flags) && |
Jouni Malinen | 8bdfbf4 | 2011-08-30 21:58:09 +0300 | [diff] [blame] | 1993 | ieee80211_is_probe_resp(mgmt->frame_control)) { |
| 1994 | /* |
| 1995 | * Send Probe Response frame in AP mode using a separate WMI |
| 1996 | * command to allow the target to fill in the generic IEs. |
| 1997 | */ |
| 1998 | *cookie = 0; /* TX status not supported */ |
Vasanthakumar Thiagarajan | 334234b | 2011-10-25 19:34:12 +0530 | [diff] [blame] | 1999 | return ath6kl_send_go_probe_resp(vif, buf, len, |
Jouni Malinen | 8bdfbf4 | 2011-08-30 21:58:09 +0300 | [diff] [blame] | 2000 | chan->center_freq); |
| 2001 | } |
Jouni Malinen | 8a6c8060 | 2011-08-30 21:57:56 +0300 | [diff] [blame] | 2002 | |
Vasanthakumar Thiagarajan | cf5333d | 2011-10-25 19:34:10 +0530 | [diff] [blame] | 2003 | id = vif->send_action_id++; |
Jouni Malinen | 8a6c8060 | 2011-08-30 21:57:56 +0300 | [diff] [blame] | 2004 | if (id == 0) { |
| 2005 | /* |
| 2006 | * 0 is a reserved value in the WMI command and shall not be |
| 2007 | * used for the command. |
| 2008 | */ |
Vasanthakumar Thiagarajan | cf5333d | 2011-10-25 19:34:10 +0530 | [diff] [blame] | 2009 | id = vif->send_action_id++; |
Jouni Malinen | 8a6c8060 | 2011-08-30 21:57:56 +0300 | [diff] [blame] | 2010 | } |
| 2011 | |
| 2012 | *cookie = id; |
Vasanthakumar Thiagarajan | 334234b | 2011-10-25 19:34:12 +0530 | [diff] [blame] | 2013 | return ath6kl_wmi_send_action_cmd(ar->wmi, vif->fw_vif_idx, id, |
| 2014 | chan->center_freq, wait, |
Jouni Malinen | 8a6c8060 | 2011-08-30 21:57:56 +0300 | [diff] [blame] | 2015 | buf, len); |
| 2016 | } |
| 2017 | |
Jouni Malinen | ae32c30 | 2011-08-30 21:58:01 +0300 | [diff] [blame] | 2018 | static void ath6kl_mgmt_frame_register(struct wiphy *wiphy, |
| 2019 | struct net_device *dev, |
| 2020 | u16 frame_type, bool reg) |
| 2021 | { |
Vasanthakumar Thiagarajan | cf5333d | 2011-10-25 19:34:10 +0530 | [diff] [blame] | 2022 | struct ath6kl_vif *vif = netdev_priv(dev); |
Jouni Malinen | ae32c30 | 2011-08-30 21:58:01 +0300 | [diff] [blame] | 2023 | |
| 2024 | ath6kl_dbg(ATH6KL_DBG_WLAN_CFG, "%s: frame_type=0x%x reg=%d\n", |
| 2025 | __func__, frame_type, reg); |
| 2026 | if (frame_type == IEEE80211_STYPE_PROBE_REQ) { |
| 2027 | /* |
| 2028 | * Note: This notification callback is not allowed to sleep, so |
| 2029 | * we cannot send WMI_PROBE_REQ_REPORT_CMD here. Instead, we |
| 2030 | * hardcode target to report Probe Request frames all the time. |
| 2031 | */ |
Vasanthakumar Thiagarajan | cf5333d | 2011-10-25 19:34:10 +0530 | [diff] [blame] | 2032 | vif->probe_req_report = reg; |
Jouni Malinen | ae32c30 | 2011-08-30 21:58:01 +0300 | [diff] [blame] | 2033 | } |
| 2034 | } |
| 2035 | |
Jouni Malinen | f80574a | 2011-08-30 21:58:04 +0300 | [diff] [blame] | 2036 | static const struct ieee80211_txrx_stypes |
| 2037 | ath6kl_mgmt_stypes[NUM_NL80211_IFTYPES] = { |
| 2038 | [NL80211_IFTYPE_STATION] = { |
| 2039 | .tx = BIT(IEEE80211_STYPE_ACTION >> 4) | |
| 2040 | BIT(IEEE80211_STYPE_PROBE_RESP >> 4), |
| 2041 | .rx = BIT(IEEE80211_STYPE_ACTION >> 4) | |
| 2042 | BIT(IEEE80211_STYPE_PROBE_REQ >> 4) |
| 2043 | }, |
| 2044 | [NL80211_IFTYPE_P2P_CLIENT] = { |
| 2045 | .tx = BIT(IEEE80211_STYPE_ACTION >> 4) | |
| 2046 | BIT(IEEE80211_STYPE_PROBE_RESP >> 4), |
| 2047 | .rx = BIT(IEEE80211_STYPE_ACTION >> 4) | |
| 2048 | BIT(IEEE80211_STYPE_PROBE_REQ >> 4) |
| 2049 | }, |
| 2050 | [NL80211_IFTYPE_P2P_GO] = { |
| 2051 | .tx = BIT(IEEE80211_STYPE_ACTION >> 4) | |
| 2052 | BIT(IEEE80211_STYPE_PROBE_RESP >> 4), |
| 2053 | .rx = BIT(IEEE80211_STYPE_ACTION >> 4) | |
| 2054 | BIT(IEEE80211_STYPE_PROBE_REQ >> 4) |
| 2055 | }, |
| 2056 | }; |
| 2057 | |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 2058 | static struct cfg80211_ops ath6kl_cfg80211_ops = { |
Vasanthakumar Thiagarajan | 5505597 | 2011-10-25 19:34:23 +0530 | [diff] [blame] | 2059 | .add_virtual_intf = ath6kl_cfg80211_add_iface, |
| 2060 | .del_virtual_intf = ath6kl_cfg80211_del_iface, |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 2061 | .change_virtual_intf = ath6kl_cfg80211_change_iface, |
| 2062 | .scan = ath6kl_cfg80211_scan, |
| 2063 | .connect = ath6kl_cfg80211_connect, |
| 2064 | .disconnect = ath6kl_cfg80211_disconnect, |
| 2065 | .add_key = ath6kl_cfg80211_add_key, |
| 2066 | .get_key = ath6kl_cfg80211_get_key, |
| 2067 | .del_key = ath6kl_cfg80211_del_key, |
| 2068 | .set_default_key = ath6kl_cfg80211_set_default_key, |
| 2069 | .set_wiphy_params = ath6kl_cfg80211_set_wiphy_params, |
| 2070 | .set_tx_power = ath6kl_cfg80211_set_txpower, |
| 2071 | .get_tx_power = ath6kl_cfg80211_get_txpower, |
| 2072 | .set_power_mgmt = ath6kl_cfg80211_set_power_mgmt, |
| 2073 | .join_ibss = ath6kl_cfg80211_join_ibss, |
| 2074 | .leave_ibss = ath6kl_cfg80211_leave_ibss, |
| 2075 | .get_station = ath6kl_get_station, |
| 2076 | .set_pmksa = ath6kl_set_pmksa, |
| 2077 | .del_pmksa = ath6kl_del_pmksa, |
| 2078 | .flush_pmksa = ath6kl_flush_pmksa, |
Kalle Valo | 003353b0d | 2011-09-01 10:14:21 +0300 | [diff] [blame] | 2079 | CFG80211_TESTMODE_CMD(ath6kl_tm_cmd) |
Kalle Valo | abcb344 | 2011-07-22 08:26:20 +0300 | [diff] [blame] | 2080 | #ifdef CONFIG_PM |
| 2081 | .suspend = ar6k_cfg80211_suspend, |
Chilam Ng | aa6cffc | 2011-10-05 10:12:52 +0300 | [diff] [blame] | 2082 | .resume = ar6k_cfg80211_resume, |
Kalle Valo | abcb344 | 2011-07-22 08:26:20 +0300 | [diff] [blame] | 2083 | #endif |
Jouni Malinen | 6a7c9ba | 2011-08-30 21:57:50 +0300 | [diff] [blame] | 2084 | .set_channel = ath6kl_set_channel, |
| 2085 | .add_beacon = ath6kl_add_beacon, |
| 2086 | .set_beacon = ath6kl_set_beacon, |
| 2087 | .del_beacon = ath6kl_del_beacon, |
Jouni Malinen | 2387513 | 2011-08-30 21:57:53 +0300 | [diff] [blame] | 2088 | .change_station = ath6kl_change_station, |
Jouni Malinen | 63fa1e0 | 2011-08-30 21:57:55 +0300 | [diff] [blame] | 2089 | .remain_on_channel = ath6kl_remain_on_channel, |
| 2090 | .cancel_remain_on_channel = ath6kl_cancel_remain_on_channel, |
Jouni Malinen | 8a6c8060 | 2011-08-30 21:57:56 +0300 | [diff] [blame] | 2091 | .mgmt_tx = ath6kl_mgmt_tx, |
Jouni Malinen | ae32c30 | 2011-08-30 21:58:01 +0300 | [diff] [blame] | 2092 | .mgmt_frame_register = ath6kl_mgmt_frame_register, |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 2093 | }; |
| 2094 | |
Vasanthakumar Thiagarajan | 8dafb70 | 2011-10-25 19:33:58 +0530 | [diff] [blame] | 2095 | struct ath6kl *ath6kl_core_alloc(struct device *dev) |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 2096 | { |
Jouni Malinen | 6bbc7c3 | 2011-09-05 17:38:47 +0300 | [diff] [blame] | 2097 | struct ath6kl *ar; |
Vasanthakumar Thiagarajan | be98e3a | 2011-10-25 19:33:57 +0530 | [diff] [blame] | 2098 | struct wiphy *wiphy; |
Vasanthakumar Thiagarajan | 8dafb70 | 2011-10-25 19:33:58 +0530 | [diff] [blame] | 2099 | u8 ctr; |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 2100 | |
| 2101 | /* create a new wiphy for use with cfg80211 */ |
Vasanthakumar Thiagarajan | be98e3a | 2011-10-25 19:33:57 +0530 | [diff] [blame] | 2102 | wiphy = wiphy_new(&ath6kl_cfg80211_ops, sizeof(struct ath6kl)); |
Vasanthakumar Thiagarajan | 8dafb70 | 2011-10-25 19:33:58 +0530 | [diff] [blame] | 2103 | |
Vasanthakumar Thiagarajan | be98e3a | 2011-10-25 19:33:57 +0530 | [diff] [blame] | 2104 | if (!wiphy) { |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 2105 | ath6kl_err("couldn't allocate wiphy device\n"); |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 2106 | return NULL; |
| 2107 | } |
| 2108 | |
Vasanthakumar Thiagarajan | be98e3a | 2011-10-25 19:33:57 +0530 | [diff] [blame] | 2109 | ar = wiphy_priv(wiphy); |
Vasanthakumar Thiagarajan | 3226f68a | 2011-10-25 19:34:24 +0530 | [diff] [blame^] | 2110 | if (!multi_norm_if_support) |
| 2111 | ar->p2p = !!ath6kl_p2p; |
Vasanthakumar Thiagarajan | be98e3a | 2011-10-25 19:33:57 +0530 | [diff] [blame] | 2112 | ar->wiphy = wiphy; |
Vasanthakumar Thiagarajan | 8dafb70 | 2011-10-25 19:33:58 +0530 | [diff] [blame] | 2113 | ar->dev = dev; |
| 2114 | |
Vasanthakumar Thiagarajan | 3226f68a | 2011-10-25 19:34:24 +0530 | [diff] [blame^] | 2115 | if (multi_norm_if_support) |
| 2116 | ar->max_norm_iface = 2; |
| 2117 | else |
| 2118 | ar->max_norm_iface = 1; |
| 2119 | |
| 2120 | /* FIXME: Remove this once the multivif support is enabled */ |
| 2121 | ar->max_norm_iface = 1; |
| 2122 | |
Vasanthakumar Thiagarajan | 8dafb70 | 2011-10-25 19:33:58 +0530 | [diff] [blame] | 2123 | spin_lock_init(&ar->lock); |
| 2124 | spin_lock_init(&ar->mcastpsq_lock); |
Vasanthakumar Thiagarajan | 990bd91 | 2011-10-25 19:34:20 +0530 | [diff] [blame] | 2125 | spin_lock_init(&ar->list_lock); |
Vasanthakumar Thiagarajan | 8dafb70 | 2011-10-25 19:33:58 +0530 | [diff] [blame] | 2126 | |
| 2127 | init_waitqueue_head(&ar->event_wq); |
| 2128 | sema_init(&ar->sem, 1); |
| 2129 | |
| 2130 | INIT_LIST_HEAD(&ar->amsdu_rx_buffer_queue); |
Vasanthakumar Thiagarajan | 990bd91 | 2011-10-25 19:34:20 +0530 | [diff] [blame] | 2131 | INIT_LIST_HEAD(&ar->vif_list); |
Vasanthakumar Thiagarajan | 8dafb70 | 2011-10-25 19:33:58 +0530 | [diff] [blame] | 2132 | |
| 2133 | clear_bit(WMI_ENABLED, &ar->flag); |
| 2134 | clear_bit(SKIP_SCAN, &ar->flag); |
| 2135 | clear_bit(DESTROY_IN_PROGRESS, &ar->flag); |
| 2136 | |
| 2137 | ar->listen_intvl_t = A_DEFAULT_LISTEN_INTERVAL; |
| 2138 | ar->listen_intvl_b = 0; |
| 2139 | ar->tx_pwr = 0; |
| 2140 | |
| 2141 | ar->intra_bss = 1; |
| 2142 | memset(&ar->sc_params, 0, sizeof(ar->sc_params)); |
| 2143 | ar->sc_params.short_scan_ratio = WMI_SHORTSCANRATIO_DEFAULT; |
| 2144 | ar->sc_params.scan_ctrl_flags = DEFAULT_SCAN_CTRL_FLAGS; |
| 2145 | ar->lrssi_roam_threshold = DEF_LRSSI_ROAM_THRESHOLD; |
| 2146 | |
| 2147 | memset((u8 *)ar->sta_list, 0, |
| 2148 | AP_MAX_NUM_STA * sizeof(struct ath6kl_sta)); |
| 2149 | |
| 2150 | /* Init the PS queues */ |
| 2151 | for (ctr = 0; ctr < AP_MAX_NUM_STA; ctr++) { |
| 2152 | spin_lock_init(&ar->sta_list[ctr].psq_lock); |
| 2153 | skb_queue_head_init(&ar->sta_list[ctr].psq); |
| 2154 | } |
| 2155 | |
| 2156 | skb_queue_head_init(&ar->mcastpsq); |
| 2157 | |
| 2158 | memcpy(ar->ap_country_code, DEF_AP_COUNTRY_CODE, 3); |
| 2159 | |
| 2160 | return ar; |
| 2161 | } |
| 2162 | |
| 2163 | int ath6kl_register_ieee80211_hw(struct ath6kl *ar) |
| 2164 | { |
| 2165 | struct wiphy *wiphy = ar->wiphy; |
| 2166 | int ret; |
Jouni Malinen | 6bbc7c3 | 2011-09-05 17:38:47 +0300 | [diff] [blame] | 2167 | |
Vasanthakumar Thiagarajan | be98e3a | 2011-10-25 19:33:57 +0530 | [diff] [blame] | 2168 | wiphy->mgmt_stypes = ath6kl_mgmt_stypes; |
Jouni Malinen | f80574a | 2011-08-30 21:58:04 +0300 | [diff] [blame] | 2169 | |
Vasanthakumar Thiagarajan | be98e3a | 2011-10-25 19:33:57 +0530 | [diff] [blame] | 2170 | wiphy->max_remain_on_channel_duration = 5000; |
Jouni Malinen | 63fa1e0 | 2011-08-30 21:57:55 +0300 | [diff] [blame] | 2171 | |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 2172 | /* set device pointer for wiphy */ |
Vasanthakumar Thiagarajan | 8dafb70 | 2011-10-25 19:33:58 +0530 | [diff] [blame] | 2173 | set_wiphy_dev(wiphy, ar->dev); |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 2174 | |
Vasanthakumar Thiagarajan | be98e3a | 2011-10-25 19:33:57 +0530 | [diff] [blame] | 2175 | wiphy->interface_modes = BIT(NL80211_IFTYPE_STATION) | |
Vasanthakumar Thiagarajan | 8dafb70 | 2011-10-25 19:33:58 +0530 | [diff] [blame] | 2176 | BIT(NL80211_IFTYPE_ADHOC) | |
| 2177 | BIT(NL80211_IFTYPE_AP); |
Jouni Malinen | 6bbc7c3 | 2011-09-05 17:38:47 +0300 | [diff] [blame] | 2178 | if (ar->p2p) { |
Vasanthakumar Thiagarajan | be98e3a | 2011-10-25 19:33:57 +0530 | [diff] [blame] | 2179 | wiphy->interface_modes |= BIT(NL80211_IFTYPE_P2P_GO) | |
Vasanthakumar Thiagarajan | 8dafb70 | 2011-10-25 19:33:58 +0530 | [diff] [blame] | 2180 | BIT(NL80211_IFTYPE_P2P_CLIENT); |
Jouni Malinen | 6bbc7c3 | 2011-09-05 17:38:47 +0300 | [diff] [blame] | 2181 | } |
Vasanthakumar Thiagarajan | 8dafb70 | 2011-10-25 19:33:58 +0530 | [diff] [blame] | 2182 | |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 2183 | /* max num of ssids that can be probed during scanning */ |
Vasanthakumar Thiagarajan | be98e3a | 2011-10-25 19:33:57 +0530 | [diff] [blame] | 2184 | wiphy->max_scan_ssids = MAX_PROBED_SSID_INDEX; |
| 2185 | wiphy->max_scan_ie_len = 1000; /* FIX: what is correct limit? */ |
| 2186 | wiphy->bands[IEEE80211_BAND_2GHZ] = &ath6kl_band_2ghz; |
| 2187 | wiphy->bands[IEEE80211_BAND_5GHZ] = &ath6kl_band_5ghz; |
| 2188 | wiphy->signal_type = CFG80211_SIGNAL_TYPE_MBM; |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 2189 | |
Vasanthakumar Thiagarajan | be98e3a | 2011-10-25 19:33:57 +0530 | [diff] [blame] | 2190 | wiphy->cipher_suites = cipher_suites; |
| 2191 | wiphy->n_cipher_suites = ARRAY_SIZE(cipher_suites); |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 2192 | |
Vasanthakumar Thiagarajan | be98e3a | 2011-10-25 19:33:57 +0530 | [diff] [blame] | 2193 | ret = wiphy_register(wiphy); |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 2194 | if (ret < 0) { |
| 2195 | ath6kl_err("couldn't register wiphy device\n"); |
Vasanthakumar Thiagarajan | 8dafb70 | 2011-10-25 19:33:58 +0530 | [diff] [blame] | 2196 | return ret; |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 2197 | } |
| 2198 | |
Vasanthakumar Thiagarajan | 8dafb70 | 2011-10-25 19:33:58 +0530 | [diff] [blame] | 2199 | return 0; |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 2200 | } |
| 2201 | |
Vasanthakumar Thiagarajan | 108438b | 2011-10-25 19:34:00 +0530 | [diff] [blame] | 2202 | static int ath6kl_init_if_data(struct ath6kl_vif *vif) |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 2203 | { |
Vasanthakumar Thiagarajan | 2132c69 | 2011-10-25 19:34:07 +0530 | [diff] [blame] | 2204 | vif->aggr_cntxt = aggr_init(vif->ndev); |
| 2205 | if (!vif->aggr_cntxt) { |
Vasanthakumar Thiagarajan | 8dafb70 | 2011-10-25 19:33:58 +0530 | [diff] [blame] | 2206 | ath6kl_err("failed to initialize aggr\n"); |
| 2207 | return -ENOMEM; |
| 2208 | } |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 2209 | |
Vasanthakumar Thiagarajan | de3ad71 | 2011-10-25 19:34:08 +0530 | [diff] [blame] | 2210 | setup_timer(&vif->disconnect_timer, disconnect_timer_handler, |
Vasanthakumar Thiagarajan | 108438b | 2011-10-25 19:34:00 +0530 | [diff] [blame] | 2211 | (unsigned long) vif->ndev); |
Vasanthakumar Thiagarajan | de3ad71 | 2011-10-25 19:34:08 +0530 | [diff] [blame] | 2212 | set_bit(WMM_ENABLED, &vif->flags); |
Vasanthakumar Thiagarajan | 478ac02 | 2011-10-25 19:34:19 +0530 | [diff] [blame] | 2213 | spin_lock_init(&vif->if_lock); |
Vasanthakumar Thiagarajan | 8dafb70 | 2011-10-25 19:33:58 +0530 | [diff] [blame] | 2214 | |
| 2215 | return 0; |
| 2216 | } |
| 2217 | |
Vasanthakumar Thiagarajan | 108438b | 2011-10-25 19:34:00 +0530 | [diff] [blame] | 2218 | void ath6kl_deinit_if_data(struct ath6kl_vif *vif) |
Vasanthakumar Thiagarajan | 8dafb70 | 2011-10-25 19:33:58 +0530 | [diff] [blame] | 2219 | { |
Vasanthakumar Thiagarajan | 5505597 | 2011-10-25 19:34:23 +0530 | [diff] [blame] | 2220 | struct ath6kl *ar = vif->ar; |
| 2221 | |
Vasanthakumar Thiagarajan | 2132c69 | 2011-10-25 19:34:07 +0530 | [diff] [blame] | 2222 | aggr_module_destroy(vif->aggr_cntxt); |
Vasanthakumar Thiagarajan | 108438b | 2011-10-25 19:34:00 +0530 | [diff] [blame] | 2223 | |
Vasanthakumar Thiagarajan | 5505597 | 2011-10-25 19:34:23 +0530 | [diff] [blame] | 2224 | ar->avail_idx_map |= BIT(vif->fw_vif_idx); |
| 2225 | |
| 2226 | if (vif->nw_type == ADHOC_NETWORK) |
| 2227 | ar->ibss_if_active = false; |
| 2228 | |
Vasanthakumar Thiagarajan | 2792972 | 2011-10-25 19:34:21 +0530 | [diff] [blame] | 2229 | unregister_netdevice(vif->ndev); |
Vasanthakumar Thiagarajan | 5505597 | 2011-10-25 19:34:23 +0530 | [diff] [blame] | 2230 | |
| 2231 | ar->num_vif--; |
Vasanthakumar Thiagarajan | 8dafb70 | 2011-10-25 19:33:58 +0530 | [diff] [blame] | 2232 | } |
| 2233 | |
| 2234 | struct net_device *ath6kl_interface_add(struct ath6kl *ar, char *name, |
Vasanthakumar Thiagarajan | 5505597 | 2011-10-25 19:34:23 +0530 | [diff] [blame] | 2235 | enum nl80211_iftype type, u8 fw_vif_idx, |
| 2236 | u8 nw_type) |
Vasanthakumar Thiagarajan | 8dafb70 | 2011-10-25 19:33:58 +0530 | [diff] [blame] | 2237 | { |
| 2238 | struct net_device *ndev; |
Vasanthakumar Thiagarajan | 108438b | 2011-10-25 19:34:00 +0530 | [diff] [blame] | 2239 | struct ath6kl_vif *vif; |
Vasanthakumar Thiagarajan | 8dafb70 | 2011-10-25 19:33:58 +0530 | [diff] [blame] | 2240 | |
Vasanthakumar Thiagarajan | 5505597 | 2011-10-25 19:34:23 +0530 | [diff] [blame] | 2241 | ndev = alloc_netdev(sizeof(*vif), name, ether_setup); |
Vasanthakumar Thiagarajan | 8dafb70 | 2011-10-25 19:33:58 +0530 | [diff] [blame] | 2242 | if (!ndev) |
| 2243 | return NULL; |
| 2244 | |
Vasanthakumar Thiagarajan | 108438b | 2011-10-25 19:34:00 +0530 | [diff] [blame] | 2245 | vif = netdev_priv(ndev); |
| 2246 | ndev->ieee80211_ptr = &vif->wdev; |
| 2247 | vif->wdev.wiphy = ar->wiphy; |
| 2248 | vif->ar = ar; |
Vasanthakumar Thiagarajan | 108438b | 2011-10-25 19:34:00 +0530 | [diff] [blame] | 2249 | vif->ndev = ndev; |
| 2250 | SET_NETDEV_DEV(ndev, wiphy_dev(vif->wdev.wiphy)); |
| 2251 | vif->wdev.netdev = ndev; |
| 2252 | vif->wdev.iftype = type; |
Vasanthakumar Thiagarajan | 334234b | 2011-10-25 19:34:12 +0530 | [diff] [blame] | 2253 | vif->fw_vif_idx = fw_vif_idx; |
Vasanthakumar Thiagarajan | 5505597 | 2011-10-25 19:34:23 +0530 | [diff] [blame] | 2254 | vif->nw_type = vif->next_mode = nw_type; |
Vasanthakumar Thiagarajan | 108438b | 2011-10-25 19:34:00 +0530 | [diff] [blame] | 2255 | ar->wdev = &vif->wdev; |
Vasanthakumar Thiagarajan | 8dafb70 | 2011-10-25 19:33:58 +0530 | [diff] [blame] | 2256 | |
Vasanthakumar Thiagarajan | 5505597 | 2011-10-25 19:34:23 +0530 | [diff] [blame] | 2257 | memcpy(ndev->dev_addr, ar->mac_addr, ETH_ALEN); |
| 2258 | if (fw_vif_idx != 0) |
| 2259 | ndev->dev_addr[0] = (ndev->dev_addr[0] ^ (1 << fw_vif_idx)) | |
| 2260 | 0x2; |
| 2261 | |
Vasanthakumar Thiagarajan | 8dafb70 | 2011-10-25 19:33:58 +0530 | [diff] [blame] | 2262 | init_netdev(ndev); |
| 2263 | |
Vasanthakumar Thiagarajan | e29f25f | 2011-10-25 19:34:15 +0530 | [diff] [blame] | 2264 | ath6kl_init_control_info(vif); |
Vasanthakumar Thiagarajan | 8dafb70 | 2011-10-25 19:33:58 +0530 | [diff] [blame] | 2265 | |
| 2266 | /* TODO: Pass interface specific pointer instead of ar */ |
Vasanthakumar Thiagarajan | 108438b | 2011-10-25 19:34:00 +0530 | [diff] [blame] | 2267 | if (ath6kl_init_if_data(vif)) |
Vasanthakumar Thiagarajan | 8dafb70 | 2011-10-25 19:33:58 +0530 | [diff] [blame] | 2268 | goto err; |
| 2269 | |
Vasanthakumar Thiagarajan | 2792972 | 2011-10-25 19:34:21 +0530 | [diff] [blame] | 2270 | if (register_netdevice(ndev)) |
Vasanthakumar Thiagarajan | 8dafb70 | 2011-10-25 19:33:58 +0530 | [diff] [blame] | 2271 | goto err; |
| 2272 | |
Vasanthakumar Thiagarajan | 5505597 | 2011-10-25 19:34:23 +0530 | [diff] [blame] | 2273 | ar->avail_idx_map &= ~BIT(fw_vif_idx); |
Vasanthakumar Thiagarajan | 14ee6f6 | 2011-10-25 19:34:09 +0530 | [diff] [blame] | 2274 | vif->sme_state = SME_DISCONNECTED; |
Vasanthakumar Thiagarajan | 59c9844 | 2011-10-25 19:34:01 +0530 | [diff] [blame] | 2275 | set_bit(WLAN_ENABLED, &vif->flags); |
Vasanthakumar Thiagarajan | 8dafb70 | 2011-10-25 19:33:58 +0530 | [diff] [blame] | 2276 | ar->wlan_pwr_state = WLAN_POWER_STATE_ON; |
Vasanthakumar Thiagarajan | 59c9844 | 2011-10-25 19:34:01 +0530 | [diff] [blame] | 2277 | set_bit(NETDEV_REGISTERED, &vif->flags); |
Vasanthakumar Thiagarajan | 8dafb70 | 2011-10-25 19:33:58 +0530 | [diff] [blame] | 2278 | |
Vasanthakumar Thiagarajan | 5505597 | 2011-10-25 19:34:23 +0530 | [diff] [blame] | 2279 | if (type == NL80211_IFTYPE_ADHOC) |
| 2280 | ar->ibss_if_active = true; |
| 2281 | |
Vasanthakumar Thiagarajan | 990bd91 | 2011-10-25 19:34:20 +0530 | [diff] [blame] | 2282 | spin_lock(&ar->list_lock); |
| 2283 | list_add_tail(&vif->list, &ar->vif_list); |
| 2284 | spin_unlock(&ar->list_lock); |
| 2285 | |
Vasanthakumar Thiagarajan | 8dafb70 | 2011-10-25 19:33:58 +0530 | [diff] [blame] | 2286 | return ndev; |
| 2287 | |
| 2288 | err: |
Vasanthakumar Thiagarajan | 2792972 | 2011-10-25 19:34:21 +0530 | [diff] [blame] | 2289 | aggr_module_destroy(vif->aggr_cntxt); |
| 2290 | free_netdev(ndev); |
Vasanthakumar Thiagarajan | 8dafb70 | 2011-10-25 19:33:58 +0530 | [diff] [blame] | 2291 | return NULL; |
| 2292 | } |
| 2293 | |
| 2294 | void ath6kl_deinit_ieee80211_hw(struct ath6kl *ar) |
| 2295 | { |
Vasanthakumar Thiagarajan | be98e3a | 2011-10-25 19:33:57 +0530 | [diff] [blame] | 2296 | wiphy_unregister(ar->wiphy); |
| 2297 | wiphy_free(ar->wiphy); |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 2298 | } |