Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 1 | |
| 2 | /* |
| 3 | * Copyright (c) 2011 Atheros Communications Inc. |
| 4 | * |
| 5 | * Permission to use, copy, modify, and/or distribute this software for any |
| 6 | * purpose with or without fee is hereby granted, provided that the above |
| 7 | * copyright notice and this permission notice appear in all copies. |
| 8 | * |
| 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 16 | */ |
| 17 | |
| 18 | #include <linux/mmc/sdio_func.h> |
| 19 | #include "core.h" |
| 20 | #include "cfg80211.h" |
| 21 | #include "target.h" |
| 22 | #include "debug.h" |
| 23 | #include "hif-ops.h" |
| 24 | |
| 25 | unsigned int debug_mask; |
| 26 | |
| 27 | module_param(debug_mask, uint, 0644); |
| 28 | |
| 29 | /* |
| 30 | * Include definitions here that can be used to tune the WLAN module |
| 31 | * behavior. Different customers can tune the behavior as per their needs, |
| 32 | * here. |
| 33 | */ |
| 34 | |
| 35 | /* |
| 36 | * This configuration item enable/disable keepalive support. |
| 37 | * Keepalive support: In the absence of any data traffic to AP, null |
| 38 | * frames will be sent to the AP at periodic interval, to keep the association |
| 39 | * active. This configuration item defines the periodic interval. |
| 40 | * Use value of zero to disable keepalive support |
| 41 | * Default: 60 seconds |
| 42 | */ |
| 43 | #define WLAN_CONFIG_KEEP_ALIVE_INTERVAL 60 |
| 44 | |
| 45 | /* |
| 46 | * This configuration item sets the value of disconnect timeout |
| 47 | * Firmware delays sending the disconnec event to the host for this |
| 48 | * timeout after is gets disconnected from the current AP. |
| 49 | * If the firmware successly roams within the disconnect timeout |
| 50 | * it sends a new connect event |
| 51 | */ |
| 52 | #define WLAN_CONFIG_DISCONNECT_TIMEOUT 10 |
| 53 | |
| 54 | #define CONFIG_AR600x_DEBUG_UART_TX_PIN 8 |
| 55 | |
| 56 | enum addr_type { |
| 57 | DATASET_PATCH_ADDR, |
| 58 | APP_LOAD_ADDR, |
| 59 | APP_START_OVERRIDE_ADDR, |
| 60 | }; |
| 61 | |
| 62 | #define ATH6KL_DATA_OFFSET 64 |
| 63 | struct sk_buff *ath6kl_buf_alloc(int size) |
| 64 | { |
| 65 | struct sk_buff *skb; |
| 66 | u16 reserved; |
| 67 | |
| 68 | /* Add chacheline space at front and back of buffer */ |
| 69 | reserved = (2 * L1_CACHE_BYTES) + ATH6KL_DATA_OFFSET + |
Vasanthakumar Thiagarajan | 1df94a8 | 2011-08-17 18:45:10 +0530 | [diff] [blame] | 70 | sizeof(struct htc_packet) + ATH6KL_HTC_ALIGN_BYTES; |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 71 | skb = dev_alloc_skb(size + reserved); |
| 72 | |
| 73 | if (skb) |
| 74 | skb_reserve(skb, reserved - L1_CACHE_BYTES); |
| 75 | return skb; |
| 76 | } |
| 77 | |
| 78 | void ath6kl_init_profile_info(struct ath6kl *ar) |
| 79 | { |
| 80 | ar->ssid_len = 0; |
| 81 | memset(ar->ssid, 0, sizeof(ar->ssid)); |
| 82 | |
| 83 | ar->dot11_auth_mode = OPEN_AUTH; |
| 84 | ar->auth_mode = NONE_AUTH; |
| 85 | ar->prwise_crypto = NONE_CRYPT; |
| 86 | ar->prwise_crypto_len = 0; |
| 87 | ar->grp_crypto = NONE_CRYPT; |
| 88 | ar->grp_crpto_len = 0; |
| 89 | memset(ar->wep_key_list, 0, sizeof(ar->wep_key_list)); |
| 90 | memset(ar->req_bssid, 0, sizeof(ar->req_bssid)); |
| 91 | memset(ar->bssid, 0, sizeof(ar->bssid)); |
| 92 | ar->bss_ch = 0; |
| 93 | ar->nw_type = ar->next_mode = INFRA_NETWORK; |
| 94 | } |
| 95 | |
| 96 | static u8 ath6kl_get_fw_iftype(struct ath6kl *ar) |
| 97 | { |
| 98 | switch (ar->nw_type) { |
| 99 | case INFRA_NETWORK: |
| 100 | return HI_OPTION_FW_MODE_BSS_STA; |
| 101 | case ADHOC_NETWORK: |
| 102 | return HI_OPTION_FW_MODE_IBSS; |
| 103 | case AP_NETWORK: |
| 104 | return HI_OPTION_FW_MODE_AP; |
| 105 | default: |
| 106 | ath6kl_err("Unsupported interface type :%d\n", ar->nw_type); |
| 107 | return 0xff; |
| 108 | } |
| 109 | } |
| 110 | |
| 111 | static inline u32 ath6kl_get_hi_item_addr(struct ath6kl *ar, |
| 112 | u32 item_offset) |
| 113 | { |
| 114 | u32 addr = 0; |
| 115 | |
| 116 | if (ar->target_type == TARGET_TYPE_AR6003) |
Kevin Fang | 31024d9 | 2011-07-11 17:14:13 +0800 | [diff] [blame] | 117 | addr = ATH6KL_AR6003_HI_START_ADDR + item_offset; |
| 118 | else if (ar->target_type == TARGET_TYPE_AR6004) |
| 119 | addr = ATH6KL_AR6004_HI_START_ADDR + item_offset; |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 120 | |
| 121 | return addr; |
| 122 | } |
| 123 | |
| 124 | static int ath6kl_set_host_app_area(struct ath6kl *ar) |
| 125 | { |
| 126 | u32 address, data; |
| 127 | struct host_app_area host_app_area; |
| 128 | |
| 129 | /* Fetch the address of the host_app_area_s |
| 130 | * instance in the host interest area */ |
| 131 | address = ath6kl_get_hi_item_addr(ar, HI_ITEM(hi_app_host_interest)); |
Kevin Fang | 31024d9 | 2011-07-11 17:14:13 +0800 | [diff] [blame] | 132 | address = TARG_VTOP(ar->target_type, address); |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 133 | |
| 134 | if (ath6kl_read_reg_diag(ar, &address, &data)) |
| 135 | return -EIO; |
| 136 | |
Kevin Fang | 31024d9 | 2011-07-11 17:14:13 +0800 | [diff] [blame] | 137 | address = TARG_VTOP(ar->target_type, data); |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 138 | host_app_area.wmi_protocol_ver = WMI_PROTOCOL_VERSION; |
| 139 | if (ath6kl_access_datadiag(ar, address, |
| 140 | (u8 *)&host_app_area, |
| 141 | sizeof(struct host_app_area), false)) |
| 142 | return -EIO; |
| 143 | |
| 144 | return 0; |
| 145 | } |
| 146 | |
| 147 | static inline void set_ac2_ep_map(struct ath6kl *ar, |
| 148 | u8 ac, |
| 149 | enum htc_endpoint_id ep) |
| 150 | { |
| 151 | ar->ac2ep_map[ac] = ep; |
| 152 | ar->ep2ac_map[ep] = ac; |
| 153 | } |
| 154 | |
| 155 | /* connect to a service */ |
| 156 | static int ath6kl_connectservice(struct ath6kl *ar, |
| 157 | struct htc_service_connect_req *con_req, |
| 158 | char *desc) |
| 159 | { |
| 160 | int status; |
| 161 | struct htc_service_connect_resp response; |
| 162 | |
| 163 | memset(&response, 0, sizeof(response)); |
| 164 | |
Kalle Valo | ad226ec | 2011-08-10 09:49:12 +0300 | [diff] [blame] | 165 | status = ath6kl_htc_conn_service(ar->htc_target, con_req, &response); |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 166 | if (status) { |
| 167 | ath6kl_err("failed to connect to %s service status:%d\n", |
| 168 | desc, status); |
| 169 | return status; |
| 170 | } |
| 171 | |
| 172 | switch (con_req->svc_id) { |
| 173 | case WMI_CONTROL_SVC: |
| 174 | if (test_bit(WMI_ENABLED, &ar->flag)) |
| 175 | ath6kl_wmi_set_control_ep(ar->wmi, response.endpoint); |
| 176 | ar->ctrl_ep = response.endpoint; |
| 177 | break; |
| 178 | case WMI_DATA_BE_SVC: |
| 179 | set_ac2_ep_map(ar, WMM_AC_BE, response.endpoint); |
| 180 | break; |
| 181 | case WMI_DATA_BK_SVC: |
| 182 | set_ac2_ep_map(ar, WMM_AC_BK, response.endpoint); |
| 183 | break; |
| 184 | case WMI_DATA_VI_SVC: |
| 185 | set_ac2_ep_map(ar, WMM_AC_VI, response.endpoint); |
| 186 | break; |
| 187 | case WMI_DATA_VO_SVC: |
| 188 | set_ac2_ep_map(ar, WMM_AC_VO, response.endpoint); |
| 189 | break; |
| 190 | default: |
| 191 | ath6kl_err("service id is not mapped %d\n", con_req->svc_id); |
| 192 | return -EINVAL; |
| 193 | } |
| 194 | |
| 195 | return 0; |
| 196 | } |
| 197 | |
| 198 | static int ath6kl_init_service_ep(struct ath6kl *ar) |
| 199 | { |
| 200 | struct htc_service_connect_req connect; |
| 201 | |
| 202 | memset(&connect, 0, sizeof(connect)); |
| 203 | |
| 204 | /* these fields are the same for all service endpoints */ |
| 205 | connect.ep_cb.rx = ath6kl_rx; |
| 206 | connect.ep_cb.rx_refill = ath6kl_rx_refill; |
| 207 | connect.ep_cb.tx_full = ath6kl_tx_queue_full; |
| 208 | |
| 209 | /* |
| 210 | * Set the max queue depth so that our ath6kl_tx_queue_full handler |
| 211 | * gets called. |
| 212 | */ |
| 213 | connect.max_txq_depth = MAX_DEFAULT_SEND_QUEUE_DEPTH; |
| 214 | connect.ep_cb.rx_refill_thresh = ATH6KL_MAX_RX_BUFFERS / 4; |
| 215 | if (!connect.ep_cb.rx_refill_thresh) |
| 216 | connect.ep_cb.rx_refill_thresh++; |
| 217 | |
| 218 | /* connect to control service */ |
| 219 | connect.svc_id = WMI_CONTROL_SVC; |
| 220 | if (ath6kl_connectservice(ar, &connect, "WMI CONTROL")) |
| 221 | return -EIO; |
| 222 | |
| 223 | connect.flags |= HTC_FLGS_TX_BNDL_PAD_EN; |
| 224 | |
| 225 | /* |
| 226 | * Limit the HTC message size on the send path, although e can |
| 227 | * receive A-MSDU frames of 4K, we will only send ethernet-sized |
| 228 | * (802.3) frames on the send path. |
| 229 | */ |
| 230 | connect.max_rxmsg_sz = WMI_MAX_TX_DATA_FRAME_LENGTH; |
| 231 | |
| 232 | /* |
| 233 | * To reduce the amount of committed memory for larger A_MSDU |
| 234 | * frames, use the recv-alloc threshold mechanism for larger |
| 235 | * packets. |
| 236 | */ |
| 237 | connect.ep_cb.rx_alloc_thresh = ATH6KL_BUFFER_SIZE; |
| 238 | connect.ep_cb.rx_allocthresh = ath6kl_alloc_amsdu_rxbuf; |
| 239 | |
| 240 | /* |
| 241 | * For the remaining data services set the connection flag to |
| 242 | * reduce dribbling, if configured to do so. |
| 243 | */ |
| 244 | connect.conn_flags |= HTC_CONN_FLGS_REDUCE_CRED_DRIB; |
| 245 | connect.conn_flags &= ~HTC_CONN_FLGS_THRESH_MASK; |
| 246 | connect.conn_flags |= HTC_CONN_FLGS_THRESH_LVL_HALF; |
| 247 | |
| 248 | connect.svc_id = WMI_DATA_BE_SVC; |
| 249 | |
| 250 | if (ath6kl_connectservice(ar, &connect, "WMI DATA BE")) |
| 251 | return -EIO; |
| 252 | |
| 253 | /* connect to back-ground map this to WMI LOW_PRI */ |
| 254 | connect.svc_id = WMI_DATA_BK_SVC; |
| 255 | if (ath6kl_connectservice(ar, &connect, "WMI DATA BK")) |
| 256 | return -EIO; |
| 257 | |
| 258 | /* connect to Video service, map this to to HI PRI */ |
| 259 | connect.svc_id = WMI_DATA_VI_SVC; |
| 260 | if (ath6kl_connectservice(ar, &connect, "WMI DATA VI")) |
| 261 | return -EIO; |
| 262 | |
| 263 | /* |
| 264 | * Connect to VO service, this is currently not mapped to a WMI |
| 265 | * priority stream due to historical reasons. WMI originally |
| 266 | * defined 3 priorities over 3 mailboxes We can change this when |
| 267 | * WMI is reworked so that priorities are not dependent on |
| 268 | * mailboxes. |
| 269 | */ |
| 270 | connect.svc_id = WMI_DATA_VO_SVC; |
| 271 | if (ath6kl_connectservice(ar, &connect, "WMI DATA VO")) |
| 272 | return -EIO; |
| 273 | |
| 274 | return 0; |
| 275 | } |
| 276 | |
| 277 | static void ath6kl_init_control_info(struct ath6kl *ar) |
| 278 | { |
| 279 | u8 ctr; |
| 280 | |
| 281 | clear_bit(WMI_ENABLED, &ar->flag); |
| 282 | ath6kl_init_profile_info(ar); |
| 283 | ar->def_txkey_index = 0; |
| 284 | memset(ar->wep_key_list, 0, sizeof(ar->wep_key_list)); |
| 285 | ar->ch_hint = 0; |
| 286 | ar->listen_intvl_t = A_DEFAULT_LISTEN_INTERVAL; |
| 287 | ar->listen_intvl_b = 0; |
| 288 | ar->tx_pwr = 0; |
| 289 | clear_bit(SKIP_SCAN, &ar->flag); |
| 290 | set_bit(WMM_ENABLED, &ar->flag); |
| 291 | ar->intra_bss = 1; |
| 292 | memset(&ar->sc_params, 0, sizeof(ar->sc_params)); |
| 293 | ar->sc_params.short_scan_ratio = WMI_SHORTSCANRATIO_DEFAULT; |
| 294 | ar->sc_params.scan_ctrl_flags = DEFAULT_SCAN_CTRL_FLAGS; |
| 295 | |
| 296 | memset((u8 *)ar->sta_list, 0, |
| 297 | AP_MAX_NUM_STA * sizeof(struct ath6kl_sta)); |
| 298 | |
| 299 | spin_lock_init(&ar->mcastpsq_lock); |
| 300 | |
| 301 | /* Init the PS queues */ |
| 302 | for (ctr = 0; ctr < AP_MAX_NUM_STA; ctr++) { |
| 303 | spin_lock_init(&ar->sta_list[ctr].psq_lock); |
| 304 | skb_queue_head_init(&ar->sta_list[ctr].psq); |
| 305 | } |
| 306 | |
| 307 | skb_queue_head_init(&ar->mcastpsq); |
| 308 | |
| 309 | memcpy(ar->ap_country_code, DEF_AP_COUNTRY_CODE, 3); |
| 310 | } |
| 311 | |
| 312 | /* |
| 313 | * Set HTC/Mbox operational parameters, this can only be called when the |
| 314 | * target is in the BMI phase. |
| 315 | */ |
| 316 | static int ath6kl_set_htc_params(struct ath6kl *ar, u32 mbox_isr_yield_val, |
| 317 | u8 htc_ctrl_buf) |
| 318 | { |
| 319 | int status; |
| 320 | u32 blk_size; |
| 321 | |
| 322 | blk_size = ar->mbox_info.block_size; |
| 323 | |
| 324 | if (htc_ctrl_buf) |
| 325 | blk_size |= ((u32)htc_ctrl_buf) << 16; |
| 326 | |
| 327 | /* set the host interest area for the block size */ |
| 328 | status = ath6kl_bmi_write(ar, |
| 329 | ath6kl_get_hi_item_addr(ar, |
| 330 | HI_ITEM(hi_mbox_io_block_sz)), |
| 331 | (u8 *)&blk_size, |
| 332 | 4); |
| 333 | if (status) { |
| 334 | ath6kl_err("bmi_write_memory for IO block size failed\n"); |
| 335 | goto out; |
| 336 | } |
| 337 | |
| 338 | ath6kl_dbg(ATH6KL_DBG_TRC, "block size set: %d (target addr:0x%X)\n", |
| 339 | blk_size, |
| 340 | ath6kl_get_hi_item_addr(ar, HI_ITEM(hi_mbox_io_block_sz))); |
| 341 | |
| 342 | if (mbox_isr_yield_val) { |
| 343 | /* set the host interest area for the mbox ISR yield limit */ |
| 344 | status = ath6kl_bmi_write(ar, |
| 345 | ath6kl_get_hi_item_addr(ar, |
| 346 | HI_ITEM(hi_mbox_isr_yield_limit)), |
| 347 | (u8 *)&mbox_isr_yield_val, |
| 348 | 4); |
| 349 | if (status) { |
| 350 | ath6kl_err("bmi_write_memory for yield limit failed\n"); |
| 351 | goto out; |
| 352 | } |
| 353 | } |
| 354 | |
| 355 | out: |
| 356 | return status; |
| 357 | } |
| 358 | |
| 359 | #define REG_DUMP_COUNT_AR6003 60 |
| 360 | #define REGISTER_DUMP_LEN_MAX 60 |
| 361 | |
| 362 | static void ath6kl_dump_target_assert_info(struct ath6kl *ar) |
| 363 | { |
| 364 | u32 address; |
| 365 | u32 regdump_loc = 0; |
| 366 | int status; |
| 367 | u32 regdump_val[REGISTER_DUMP_LEN_MAX]; |
| 368 | u32 i; |
| 369 | |
| 370 | if (ar->target_type != TARGET_TYPE_AR6003) |
| 371 | return; |
| 372 | |
| 373 | /* the reg dump pointer is copied to the host interest area */ |
| 374 | address = ath6kl_get_hi_item_addr(ar, HI_ITEM(hi_failure_state)); |
Kevin Fang | 31024d9 | 2011-07-11 17:14:13 +0800 | [diff] [blame] | 375 | address = TARG_VTOP(ar->target_type, address); |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 376 | |
| 377 | /* read RAM location through diagnostic window */ |
| 378 | status = ath6kl_read_reg_diag(ar, &address, ®dump_loc); |
| 379 | |
| 380 | if (status || !regdump_loc) { |
| 381 | ath6kl_err("failed to get ptr to register dump area\n"); |
| 382 | return; |
| 383 | } |
| 384 | |
| 385 | ath6kl_dbg(ATH6KL_DBG_TRC, "location of register dump data: 0x%X\n", |
| 386 | regdump_loc); |
Kevin Fang | 31024d9 | 2011-07-11 17:14:13 +0800 | [diff] [blame] | 387 | regdump_loc = TARG_VTOP(ar->target_type, regdump_loc); |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 388 | |
| 389 | /* fetch register dump data */ |
| 390 | status = ath6kl_access_datadiag(ar, |
| 391 | regdump_loc, |
| 392 | (u8 *)®dump_val[0], |
| 393 | REG_DUMP_COUNT_AR6003 * (sizeof(u32)), |
| 394 | true); |
| 395 | |
| 396 | if (status) { |
| 397 | ath6kl_err("failed to get register dump\n"); |
| 398 | return; |
| 399 | } |
| 400 | ath6kl_dbg(ATH6KL_DBG_TRC, "Register Dump:\n"); |
| 401 | |
| 402 | for (i = 0; i < REG_DUMP_COUNT_AR6003; i++) |
| 403 | ath6kl_dbg(ATH6KL_DBG_TRC, " %d : 0x%8.8X\n", |
| 404 | i, regdump_val[i]); |
| 405 | |
| 406 | } |
| 407 | |
| 408 | void ath6kl_target_failure(struct ath6kl *ar) |
| 409 | { |
| 410 | ath6kl_err("target asserted\n"); |
| 411 | |
| 412 | /* try dumping target assertion information (if any) */ |
| 413 | ath6kl_dump_target_assert_info(ar); |
| 414 | |
| 415 | } |
| 416 | |
| 417 | static int ath6kl_target_config_wlan_params(struct ath6kl *ar) |
| 418 | { |
| 419 | int status = 0; |
Jouni Malinen | 4dea08e | 2011-08-30 21:57:57 +0300 | [diff] [blame] | 420 | int ret; |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 421 | |
| 422 | /* |
| 423 | * Configure the device for rx dot11 header rules. "0,0" are the |
| 424 | * default values. Required if checksum offload is needed. Set |
| 425 | * RxMetaVersion to 2. |
| 426 | */ |
| 427 | if (ath6kl_wmi_set_rx_frame_format_cmd(ar->wmi, |
| 428 | ar->rx_meta_ver, 0, 0)) { |
| 429 | ath6kl_err("unable to set the rx frame format\n"); |
| 430 | status = -EIO; |
| 431 | } |
| 432 | |
| 433 | if (ar->conf_flags & ATH6KL_CONF_IGNORE_PS_FAIL_EVT_IN_SCAN) |
| 434 | if ((ath6kl_wmi_pmparams_cmd(ar->wmi, 0, 1, 0, 0, 1, |
| 435 | IGNORE_POWER_SAVE_FAIL_EVENT_DURING_SCAN)) != 0) { |
| 436 | ath6kl_err("unable to set power save fail event policy\n"); |
| 437 | status = -EIO; |
| 438 | } |
| 439 | |
| 440 | if (!(ar->conf_flags & ATH6KL_CONF_IGNORE_ERP_BARKER)) |
| 441 | if ((ath6kl_wmi_set_lpreamble_cmd(ar->wmi, 0, |
| 442 | WMI_DONOT_IGNORE_BARKER_IN_ERP)) != 0) { |
| 443 | ath6kl_err("unable to set barker preamble policy\n"); |
| 444 | status = -EIO; |
| 445 | } |
| 446 | |
| 447 | if (ath6kl_wmi_set_keepalive_cmd(ar->wmi, |
| 448 | WLAN_CONFIG_KEEP_ALIVE_INTERVAL)) { |
| 449 | ath6kl_err("unable to set keep alive interval\n"); |
| 450 | status = -EIO; |
| 451 | } |
| 452 | |
| 453 | if (ath6kl_wmi_disctimeout_cmd(ar->wmi, |
| 454 | WLAN_CONFIG_DISCONNECT_TIMEOUT)) { |
| 455 | ath6kl_err("unable to set disconnect timeout\n"); |
| 456 | status = -EIO; |
| 457 | } |
| 458 | |
| 459 | if (!(ar->conf_flags & ATH6KL_CONF_ENABLE_TX_BURST)) |
| 460 | if (ath6kl_wmi_set_wmm_txop(ar->wmi, WMI_TXOP_DISABLED)) { |
| 461 | ath6kl_err("unable to set txop bursting\n"); |
| 462 | status = -EIO; |
| 463 | } |
| 464 | |
Jouni Malinen | 4dea08e | 2011-08-30 21:57:57 +0300 | [diff] [blame] | 465 | ret = ath6kl_wmi_info_req_cmd(ar->wmi, P2P_FLAG_CAPABILITIES_REQ | |
| 466 | P2P_FLAG_MACADDR_REQ | |
| 467 | P2P_FLAG_HMODEL_REQ); |
| 468 | if (ret) { |
| 469 | ath6kl_dbg(ATH6KL_DBG_TRC, "failed to request P2P " |
| 470 | "capabilities (%d) - assuming P2P not supported\n", |
| 471 | ret); |
| 472 | } |
| 473 | |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 474 | return status; |
| 475 | } |
| 476 | |
| 477 | int ath6kl_configure_target(struct ath6kl *ar) |
| 478 | { |
| 479 | u32 param, ram_reserved_size; |
| 480 | u8 fw_iftype; |
| 481 | |
| 482 | fw_iftype = ath6kl_get_fw_iftype(ar); |
| 483 | if (fw_iftype == 0xff) |
| 484 | return -EINVAL; |
| 485 | |
| 486 | /* Tell target which HTC version it is used*/ |
| 487 | param = HTC_PROTOCOL_VERSION; |
| 488 | if (ath6kl_bmi_write(ar, |
| 489 | ath6kl_get_hi_item_addr(ar, |
| 490 | HI_ITEM(hi_app_host_interest)), |
| 491 | (u8 *)¶m, 4) != 0) { |
| 492 | ath6kl_err("bmi_write_memory for htc version failed\n"); |
| 493 | return -EIO; |
| 494 | } |
| 495 | |
| 496 | /* set the firmware mode to STA/IBSS/AP */ |
| 497 | param = 0; |
| 498 | |
| 499 | if (ath6kl_bmi_read(ar, |
| 500 | ath6kl_get_hi_item_addr(ar, |
| 501 | HI_ITEM(hi_option_flag)), |
| 502 | (u8 *)¶m, 4) != 0) { |
| 503 | ath6kl_err("bmi_read_memory for setting fwmode failed\n"); |
| 504 | return -EIO; |
| 505 | } |
| 506 | |
| 507 | param |= (1 << HI_OPTION_NUM_DEV_SHIFT); |
| 508 | param |= (fw_iftype << HI_OPTION_FW_MODE_SHIFT); |
| 509 | param |= (0 << HI_OPTION_MAC_ADDR_METHOD_SHIFT); |
| 510 | param |= (0 << HI_OPTION_FW_BRIDGE_SHIFT); |
| 511 | |
| 512 | if (ath6kl_bmi_write(ar, |
| 513 | ath6kl_get_hi_item_addr(ar, |
| 514 | HI_ITEM(hi_option_flag)), |
| 515 | (u8 *)¶m, |
| 516 | 4) != 0) { |
| 517 | ath6kl_err("bmi_write_memory for setting fwmode failed\n"); |
| 518 | return -EIO; |
| 519 | } |
| 520 | |
| 521 | ath6kl_dbg(ATH6KL_DBG_TRC, "firmware mode set\n"); |
| 522 | |
| 523 | /* |
| 524 | * Hardcode the address use for the extended board data |
| 525 | * Ideally this should be pre-allocate by the OS at boot time |
| 526 | * But since it is a new feature and board data is loaded |
| 527 | * at init time, we have to workaround this from host. |
| 528 | * It is difficult to patch the firmware boot code, |
| 529 | * but possible in theory. |
| 530 | */ |
| 531 | |
Kevin Fang | 31024d9 | 2011-07-11 17:14:13 +0800 | [diff] [blame] | 532 | if (ar->target_type == TARGET_TYPE_AR6003 || |
| 533 | ar->target_type == TARGET_TYPE_AR6004) { |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 534 | if (ar->version.target_ver == AR6003_REV2_VERSION) { |
| 535 | param = AR6003_REV2_BOARD_EXT_DATA_ADDRESS; |
| 536 | ram_reserved_size = AR6003_REV2_RAM_RESERVE_SIZE; |
Kevin Fang | 31024d9 | 2011-07-11 17:14:13 +0800 | [diff] [blame] | 537 | } else if (ar->version.target_ver == AR6004_REV1_VERSION) { |
| 538 | param = AR6004_REV1_BOARD_EXT_DATA_ADDRESS; |
| 539 | ram_reserved_size = AR6004_REV1_RAM_RESERVE_SIZE; |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 540 | } else { |
| 541 | param = AR6003_REV3_BOARD_EXT_DATA_ADDRESS; |
| 542 | ram_reserved_size = AR6003_REV3_RAM_RESERVE_SIZE; |
| 543 | } |
| 544 | |
| 545 | if (ath6kl_bmi_write(ar, |
| 546 | ath6kl_get_hi_item_addr(ar, |
| 547 | HI_ITEM(hi_board_ext_data)), |
| 548 | (u8 *)¶m, 4) != 0) { |
| 549 | ath6kl_err("bmi_write_memory for hi_board_ext_data failed\n"); |
| 550 | return -EIO; |
| 551 | } |
| 552 | if (ath6kl_bmi_write(ar, |
| 553 | ath6kl_get_hi_item_addr(ar, |
| 554 | HI_ITEM(hi_end_ram_reserve_sz)), |
| 555 | (u8 *)&ram_reserved_size, 4) != 0) { |
| 556 | ath6kl_err("bmi_write_memory for hi_end_ram_reserve_sz failed\n"); |
| 557 | return -EIO; |
| 558 | } |
| 559 | } |
| 560 | |
| 561 | /* set the block size for the target */ |
| 562 | if (ath6kl_set_htc_params(ar, MBOX_YIELD_LIMIT, 0)) |
| 563 | /* use default number of control buffers */ |
| 564 | return -EIO; |
| 565 | |
| 566 | return 0; |
| 567 | } |
| 568 | |
| 569 | struct ath6kl *ath6kl_core_alloc(struct device *sdev) |
| 570 | { |
| 571 | struct net_device *dev; |
| 572 | struct ath6kl *ar; |
| 573 | struct wireless_dev *wdev; |
| 574 | |
| 575 | wdev = ath6kl_cfg80211_init(sdev); |
| 576 | if (!wdev) { |
| 577 | ath6kl_err("ath6kl_cfg80211_init failed\n"); |
| 578 | return NULL; |
| 579 | } |
| 580 | |
| 581 | ar = wdev_priv(wdev); |
| 582 | ar->dev = sdev; |
| 583 | ar->wdev = wdev; |
| 584 | wdev->iftype = NL80211_IFTYPE_STATION; |
| 585 | |
Vasanthakumar Thiagarajan | d999ba3 | 2011-08-26 13:06:31 +0530 | [diff] [blame] | 586 | if (ath6kl_debug_init(ar)) { |
| 587 | ath6kl_err("Failed to initialize debugfs\n"); |
| 588 | ath6kl_cfg80211_deinit(ar); |
| 589 | return NULL; |
| 590 | } |
| 591 | |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 592 | dev = alloc_netdev(0, "wlan%d", ether_setup); |
| 593 | if (!dev) { |
| 594 | ath6kl_err("no memory for network device instance\n"); |
| 595 | ath6kl_cfg80211_deinit(ar); |
| 596 | return NULL; |
| 597 | } |
| 598 | |
| 599 | dev->ieee80211_ptr = wdev; |
| 600 | SET_NETDEV_DEV(dev, wiphy_dev(wdev->wiphy)); |
| 601 | wdev->netdev = dev; |
| 602 | ar->sme_state = SME_DISCONNECTED; |
| 603 | ar->auto_auth_stage = AUTH_IDLE; |
| 604 | |
| 605 | init_netdev(dev); |
| 606 | |
| 607 | ar->net_dev = dev; |
Raja Mani | 575b5f3 | 2011-07-19 19:27:33 +0530 | [diff] [blame] | 608 | set_bit(WLAN_ENABLED, &ar->flag); |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 609 | |
| 610 | ar->wlan_pwr_state = WLAN_POWER_STATE_ON; |
| 611 | |
| 612 | spin_lock_init(&ar->lock); |
| 613 | |
| 614 | ath6kl_init_control_info(ar); |
| 615 | init_waitqueue_head(&ar->event_wq); |
| 616 | sema_init(&ar->sem, 1); |
| 617 | clear_bit(DESTROY_IN_PROGRESS, &ar->flag); |
| 618 | |
| 619 | INIT_LIST_HEAD(&ar->amsdu_rx_buffer_queue); |
| 620 | |
| 621 | setup_timer(&ar->disconnect_timer, disconnect_timer_handler, |
| 622 | (unsigned long) dev); |
| 623 | |
| 624 | return ar; |
| 625 | } |
| 626 | |
| 627 | int ath6kl_unavail_ev(struct ath6kl *ar) |
| 628 | { |
| 629 | ath6kl_destroy(ar->net_dev, 1); |
| 630 | |
| 631 | return 0; |
| 632 | } |
| 633 | |
| 634 | /* firmware upload */ |
| 635 | static u32 ath6kl_get_load_address(u32 target_ver, enum addr_type type) |
| 636 | { |
| 637 | WARN_ON(target_ver != AR6003_REV2_VERSION && |
Kevin Fang | 31024d9 | 2011-07-11 17:14:13 +0800 | [diff] [blame] | 638 | target_ver != AR6003_REV3_VERSION && |
| 639 | target_ver != AR6004_REV1_VERSION); |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 640 | |
| 641 | switch (type) { |
| 642 | case DATASET_PATCH_ADDR: |
| 643 | return (target_ver == AR6003_REV2_VERSION) ? |
| 644 | AR6003_REV2_DATASET_PATCH_ADDRESS : |
| 645 | AR6003_REV3_DATASET_PATCH_ADDRESS; |
| 646 | case APP_LOAD_ADDR: |
| 647 | return (target_ver == AR6003_REV2_VERSION) ? |
| 648 | AR6003_REV2_APP_LOAD_ADDRESS : |
| 649 | 0x1234; |
| 650 | case APP_START_OVERRIDE_ADDR: |
| 651 | return (target_ver == AR6003_REV2_VERSION) ? |
| 652 | AR6003_REV2_APP_START_OVERRIDE : |
| 653 | AR6003_REV3_APP_START_OVERRIDE; |
| 654 | default: |
| 655 | return 0; |
| 656 | } |
| 657 | } |
| 658 | |
| 659 | static int ath6kl_get_fw(struct ath6kl *ar, const char *filename, |
| 660 | u8 **fw, size_t *fw_len) |
| 661 | { |
| 662 | const struct firmware *fw_entry; |
| 663 | int ret; |
| 664 | |
| 665 | ret = request_firmware(&fw_entry, filename, ar->dev); |
| 666 | if (ret) |
| 667 | return ret; |
| 668 | |
| 669 | *fw_len = fw_entry->size; |
| 670 | *fw = kmemdup(fw_entry->data, fw_entry->size, GFP_KERNEL); |
| 671 | |
| 672 | if (*fw == NULL) |
| 673 | ret = -ENOMEM; |
| 674 | |
| 675 | release_firmware(fw_entry); |
| 676 | |
| 677 | return ret; |
| 678 | } |
| 679 | |
| 680 | static int ath6kl_fetch_board_file(struct ath6kl *ar) |
| 681 | { |
| 682 | const char *filename; |
| 683 | int ret; |
| 684 | |
| 685 | switch (ar->version.target_ver) { |
| 686 | case AR6003_REV2_VERSION: |
| 687 | filename = AR6003_REV2_BOARD_DATA_FILE; |
| 688 | break; |
Kevin Fang | 31024d9 | 2011-07-11 17:14:13 +0800 | [diff] [blame] | 689 | case AR6004_REV1_VERSION: |
| 690 | filename = AR6004_REV1_BOARD_DATA_FILE; |
| 691 | break; |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 692 | default: |
| 693 | filename = AR6003_REV3_BOARD_DATA_FILE; |
| 694 | break; |
| 695 | } |
| 696 | |
| 697 | ret = ath6kl_get_fw(ar, filename, &ar->fw_board, |
| 698 | &ar->fw_board_len); |
| 699 | if (ret == 0) { |
| 700 | /* managed to get proper board file */ |
| 701 | return 0; |
| 702 | } |
| 703 | |
| 704 | /* there was no proper board file, try to use default instead */ |
| 705 | ath6kl_warn("Failed to get board file %s (%d), trying to find default board file.\n", |
| 706 | filename, ret); |
| 707 | |
| 708 | switch (ar->version.target_ver) { |
| 709 | case AR6003_REV2_VERSION: |
| 710 | filename = AR6003_REV2_DEFAULT_BOARD_DATA_FILE; |
| 711 | break; |
Kevin Fang | 31024d9 | 2011-07-11 17:14:13 +0800 | [diff] [blame] | 712 | case AR6004_REV1_VERSION: |
| 713 | filename = AR6004_REV1_DEFAULT_BOARD_DATA_FILE; |
| 714 | break; |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 715 | default: |
| 716 | filename = AR6003_REV3_DEFAULT_BOARD_DATA_FILE; |
| 717 | break; |
| 718 | } |
| 719 | |
| 720 | ret = ath6kl_get_fw(ar, filename, &ar->fw_board, |
| 721 | &ar->fw_board_len); |
| 722 | if (ret) { |
| 723 | ath6kl_err("Failed to get default board file %s: %d\n", |
| 724 | filename, ret); |
| 725 | return ret; |
| 726 | } |
| 727 | |
| 728 | ath6kl_warn("WARNING! No proper board file was not found, instead using a default board file.\n"); |
| 729 | ath6kl_warn("Most likely your hardware won't work as specified. Install correct board file!\n"); |
| 730 | |
| 731 | return 0; |
| 732 | } |
| 733 | |
| 734 | |
| 735 | static int ath6kl_upload_board_file(struct ath6kl *ar) |
| 736 | { |
| 737 | u32 board_address, board_ext_address, param; |
Kevin Fang | 31024d9 | 2011-07-11 17:14:13 +0800 | [diff] [blame] | 738 | u32 board_data_size, board_ext_data_size; |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 739 | int ret; |
| 740 | |
| 741 | if (ar->fw_board == NULL) { |
| 742 | ret = ath6kl_fetch_board_file(ar); |
| 743 | if (ret) |
| 744 | return ret; |
| 745 | } |
| 746 | |
Kevin Fang | 31024d9 | 2011-07-11 17:14:13 +0800 | [diff] [blame] | 747 | /* |
| 748 | * Determine where in Target RAM to write Board Data. |
| 749 | * For AR6004, host determine Target RAM address for |
| 750 | * writing board data. |
| 751 | */ |
| 752 | if (ar->target_type == TARGET_TYPE_AR6004) { |
| 753 | board_address = AR6004_REV1_BOARD_DATA_ADDRESS; |
| 754 | ath6kl_bmi_write(ar, |
| 755 | ath6kl_get_hi_item_addr(ar, |
| 756 | HI_ITEM(hi_board_data)), |
| 757 | (u8 *) &board_address, 4); |
| 758 | } else { |
| 759 | ath6kl_bmi_read(ar, |
| 760 | ath6kl_get_hi_item_addr(ar, |
| 761 | HI_ITEM(hi_board_data)), |
| 762 | (u8 *) &board_address, 4); |
| 763 | } |
| 764 | |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 765 | ath6kl_dbg(ATH6KL_DBG_TRC, "board data download addr: 0x%x\n", |
| 766 | board_address); |
| 767 | |
| 768 | /* determine where in target ram to write extended board data */ |
| 769 | ath6kl_bmi_read(ar, |
| 770 | ath6kl_get_hi_item_addr(ar, |
| 771 | HI_ITEM(hi_board_ext_data)), |
| 772 | (u8 *) &board_ext_address, 4); |
| 773 | |
| 774 | ath6kl_dbg(ATH6KL_DBG_TRC, "board file download addr: 0x%x\n", |
| 775 | board_ext_address); |
| 776 | |
| 777 | if (board_ext_address == 0) { |
| 778 | ath6kl_err("Failed to get board file target address.\n"); |
| 779 | return -EINVAL; |
| 780 | } |
| 781 | |
Kevin Fang | 31024d9 | 2011-07-11 17:14:13 +0800 | [diff] [blame] | 782 | switch (ar->target_type) { |
| 783 | case TARGET_TYPE_AR6003: |
| 784 | board_data_size = AR6003_BOARD_DATA_SZ; |
| 785 | board_ext_data_size = AR6003_BOARD_EXT_DATA_SZ; |
| 786 | break; |
| 787 | case TARGET_TYPE_AR6004: |
| 788 | board_data_size = AR6004_BOARD_DATA_SZ; |
| 789 | board_ext_data_size = AR6004_BOARD_EXT_DATA_SZ; |
| 790 | break; |
| 791 | default: |
| 792 | WARN_ON(1); |
| 793 | return -EINVAL; |
| 794 | break; |
| 795 | } |
| 796 | |
| 797 | if (ar->fw_board_len == (board_data_size + |
| 798 | board_ext_data_size)) { |
| 799 | |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 800 | /* write extended board data */ |
| 801 | ret = ath6kl_bmi_write(ar, board_ext_address, |
Kevin Fang | 31024d9 | 2011-07-11 17:14:13 +0800 | [diff] [blame] | 802 | ar->fw_board + board_data_size, |
| 803 | board_ext_data_size); |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 804 | if (ret) { |
| 805 | ath6kl_err("Failed to write extended board data: %d\n", |
| 806 | ret); |
| 807 | return ret; |
| 808 | } |
| 809 | |
| 810 | /* record that extended board data is initialized */ |
Kevin Fang | 31024d9 | 2011-07-11 17:14:13 +0800 | [diff] [blame] | 811 | param = (board_ext_data_size << 16) | 1; |
| 812 | |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 813 | ath6kl_bmi_write(ar, |
| 814 | ath6kl_get_hi_item_addr(ar, |
| 815 | HI_ITEM(hi_board_ext_data_config)), |
| 816 | (unsigned char *) ¶m, 4); |
| 817 | } |
| 818 | |
Kevin Fang | 31024d9 | 2011-07-11 17:14:13 +0800 | [diff] [blame] | 819 | if (ar->fw_board_len < board_data_size) { |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 820 | ath6kl_err("Too small board file: %zu\n", ar->fw_board_len); |
| 821 | ret = -EINVAL; |
| 822 | return ret; |
| 823 | } |
| 824 | |
| 825 | ret = ath6kl_bmi_write(ar, board_address, ar->fw_board, |
Kevin Fang | 31024d9 | 2011-07-11 17:14:13 +0800 | [diff] [blame] | 826 | board_data_size); |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 827 | |
| 828 | if (ret) { |
| 829 | ath6kl_err("Board file bmi write failed: %d\n", ret); |
| 830 | return ret; |
| 831 | } |
| 832 | |
| 833 | /* record the fact that Board Data IS initialized */ |
| 834 | param = 1; |
| 835 | ath6kl_bmi_write(ar, |
| 836 | ath6kl_get_hi_item_addr(ar, |
| 837 | HI_ITEM(hi_board_data_initialized)), |
| 838 | (u8 *)¶m, 4); |
| 839 | |
| 840 | return ret; |
| 841 | } |
| 842 | |
| 843 | static int ath6kl_upload_otp(struct ath6kl *ar) |
| 844 | { |
| 845 | const char *filename; |
| 846 | u32 address, param; |
| 847 | int ret; |
| 848 | |
| 849 | switch (ar->version.target_ver) { |
| 850 | case AR6003_REV2_VERSION: |
| 851 | filename = AR6003_REV2_OTP_FILE; |
| 852 | break; |
Kevin Fang | 31024d9 | 2011-07-11 17:14:13 +0800 | [diff] [blame] | 853 | case AR6004_REV1_VERSION: |
| 854 | ath6kl_dbg(ATH6KL_DBG_TRC, "AR6004 doesn't need OTP file\n"); |
| 855 | return 0; |
| 856 | break; |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 857 | default: |
| 858 | filename = AR6003_REV3_OTP_FILE; |
| 859 | break; |
| 860 | } |
| 861 | |
| 862 | if (ar->fw_otp == NULL) { |
| 863 | ret = ath6kl_get_fw(ar, filename, &ar->fw_otp, |
| 864 | &ar->fw_otp_len); |
| 865 | if (ret) { |
| 866 | ath6kl_err("Failed to get OTP file %s: %d\n", |
| 867 | filename, ret); |
| 868 | return ret; |
| 869 | } |
| 870 | } |
| 871 | |
| 872 | address = ath6kl_get_load_address(ar->version.target_ver, |
| 873 | APP_LOAD_ADDR); |
| 874 | |
| 875 | ret = ath6kl_bmi_fast_download(ar, address, ar->fw_otp, |
| 876 | ar->fw_otp_len); |
| 877 | if (ret) { |
| 878 | ath6kl_err("Failed to upload OTP file: %d\n", ret); |
| 879 | return ret; |
| 880 | } |
| 881 | |
| 882 | /* execute the OTP code */ |
| 883 | param = 0; |
| 884 | address = ath6kl_get_load_address(ar->version.target_ver, |
| 885 | APP_START_OVERRIDE_ADDR); |
| 886 | ath6kl_bmi_execute(ar, address, ¶m); |
| 887 | |
| 888 | return ret; |
| 889 | } |
| 890 | |
| 891 | static int ath6kl_upload_firmware(struct ath6kl *ar) |
| 892 | { |
| 893 | const char *filename; |
| 894 | u32 address; |
| 895 | int ret; |
| 896 | |
| 897 | switch (ar->version.target_ver) { |
| 898 | case AR6003_REV2_VERSION: |
| 899 | filename = AR6003_REV2_FIRMWARE_FILE; |
| 900 | break; |
Kevin Fang | 31024d9 | 2011-07-11 17:14:13 +0800 | [diff] [blame] | 901 | case AR6004_REV1_VERSION: |
| 902 | filename = AR6004_REV1_FIRMWARE_FILE; |
| 903 | break; |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 904 | default: |
| 905 | filename = AR6003_REV3_FIRMWARE_FILE; |
| 906 | break; |
| 907 | } |
| 908 | |
| 909 | if (ar->fw == NULL) { |
| 910 | ret = ath6kl_get_fw(ar, filename, &ar->fw, &ar->fw_len); |
| 911 | if (ret) { |
| 912 | ath6kl_err("Failed to get firmware file %s: %d\n", |
| 913 | filename, ret); |
| 914 | return ret; |
| 915 | } |
| 916 | } |
| 917 | |
| 918 | address = ath6kl_get_load_address(ar->version.target_ver, |
| 919 | APP_LOAD_ADDR); |
| 920 | |
| 921 | ret = ath6kl_bmi_fast_download(ar, address, ar->fw, ar->fw_len); |
| 922 | |
| 923 | if (ret) { |
| 924 | ath6kl_err("Failed to write firmware: %d\n", ret); |
| 925 | return ret; |
| 926 | } |
| 927 | |
Kevin Fang | 31024d9 | 2011-07-11 17:14:13 +0800 | [diff] [blame] | 928 | /* |
| 929 | * Set starting address for firmware |
| 930 | * Don't need to setup app_start override addr on AR6004 |
| 931 | */ |
| 932 | if (ar->target_type != TARGET_TYPE_AR6004) { |
| 933 | address = ath6kl_get_load_address(ar->version.target_ver, |
| 934 | APP_START_OVERRIDE_ADDR); |
| 935 | ath6kl_bmi_set_app_start(ar, address); |
| 936 | } |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 937 | return ret; |
| 938 | } |
| 939 | |
| 940 | static int ath6kl_upload_patch(struct ath6kl *ar) |
| 941 | { |
| 942 | const char *filename; |
| 943 | u32 address, param; |
| 944 | int ret; |
| 945 | |
| 946 | switch (ar->version.target_ver) { |
| 947 | case AR6003_REV2_VERSION: |
| 948 | filename = AR6003_REV2_PATCH_FILE; |
| 949 | break; |
Kevin Fang | 31024d9 | 2011-07-11 17:14:13 +0800 | [diff] [blame] | 950 | case AR6004_REV1_VERSION: |
| 951 | /* FIXME: implement for AR6004 */ |
| 952 | return 0; |
| 953 | break; |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 954 | default: |
| 955 | filename = AR6003_REV3_PATCH_FILE; |
| 956 | break; |
| 957 | } |
| 958 | |
| 959 | if (ar->fw_patch == NULL) { |
| 960 | ret = ath6kl_get_fw(ar, filename, &ar->fw_patch, |
| 961 | &ar->fw_patch_len); |
| 962 | if (ret) { |
| 963 | ath6kl_err("Failed to get patch file %s: %d\n", |
| 964 | filename, ret); |
| 965 | return ret; |
| 966 | } |
| 967 | } |
| 968 | |
| 969 | address = ath6kl_get_load_address(ar->version.target_ver, |
| 970 | DATASET_PATCH_ADDR); |
| 971 | |
| 972 | ret = ath6kl_bmi_write(ar, address, ar->fw_patch, ar->fw_patch_len); |
| 973 | if (ret) { |
| 974 | ath6kl_err("Failed to write patch file: %d\n", ret); |
| 975 | return ret; |
| 976 | } |
| 977 | |
| 978 | param = address; |
| 979 | ath6kl_bmi_write(ar, |
| 980 | ath6kl_get_hi_item_addr(ar, |
| 981 | HI_ITEM(hi_dset_list_head)), |
| 982 | (unsigned char *) ¶m, 4); |
| 983 | |
| 984 | return 0; |
| 985 | } |
| 986 | |
| 987 | static int ath6kl_init_upload(struct ath6kl *ar) |
| 988 | { |
| 989 | u32 param, options, sleep, address; |
| 990 | int status = 0; |
| 991 | |
Kevin Fang | 31024d9 | 2011-07-11 17:14:13 +0800 | [diff] [blame] | 992 | if (ar->target_type != TARGET_TYPE_AR6003 && |
| 993 | ar->target_type != TARGET_TYPE_AR6004) |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 994 | return -EINVAL; |
| 995 | |
| 996 | /* temporarily disable system sleep */ |
| 997 | address = MBOX_BASE_ADDRESS + LOCAL_SCRATCH_ADDRESS; |
| 998 | status = ath6kl_bmi_reg_read(ar, address, ¶m); |
| 999 | if (status) |
| 1000 | return status; |
| 1001 | |
| 1002 | options = param; |
| 1003 | |
| 1004 | param |= ATH6KL_OPTION_SLEEP_DISABLE; |
| 1005 | status = ath6kl_bmi_reg_write(ar, address, param); |
| 1006 | if (status) |
| 1007 | return status; |
| 1008 | |
| 1009 | address = RTC_BASE_ADDRESS + SYSTEM_SLEEP_ADDRESS; |
| 1010 | status = ath6kl_bmi_reg_read(ar, address, ¶m); |
| 1011 | if (status) |
| 1012 | return status; |
| 1013 | |
| 1014 | sleep = param; |
| 1015 | |
| 1016 | param |= SM(SYSTEM_SLEEP_DISABLE, 1); |
| 1017 | status = ath6kl_bmi_reg_write(ar, address, param); |
| 1018 | if (status) |
| 1019 | return status; |
| 1020 | |
| 1021 | ath6kl_dbg(ATH6KL_DBG_TRC, "old options: %d, old sleep: %d\n", |
| 1022 | options, sleep); |
| 1023 | |
| 1024 | /* program analog PLL register */ |
Kevin Fang | 31024d9 | 2011-07-11 17:14:13 +0800 | [diff] [blame] | 1025 | /* no need to control 40/44MHz clock on AR6004 */ |
| 1026 | if (ar->target_type != TARGET_TYPE_AR6004) { |
| 1027 | status = ath6kl_bmi_reg_write(ar, ATH6KL_ANALOG_PLL_REGISTER, |
| 1028 | 0xF9104001); |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 1029 | |
Kevin Fang | 31024d9 | 2011-07-11 17:14:13 +0800 | [diff] [blame] | 1030 | if (status) |
| 1031 | return status; |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 1032 | |
Kevin Fang | 31024d9 | 2011-07-11 17:14:13 +0800 | [diff] [blame] | 1033 | /* Run at 80/88MHz by default */ |
| 1034 | param = SM(CPU_CLOCK_STANDARD, 1); |
| 1035 | |
| 1036 | address = RTC_BASE_ADDRESS + CPU_CLOCK_ADDRESS; |
| 1037 | status = ath6kl_bmi_reg_write(ar, address, param); |
| 1038 | if (status) |
| 1039 | return status; |
| 1040 | } |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 1041 | |
| 1042 | param = 0; |
| 1043 | address = RTC_BASE_ADDRESS + LPO_CAL_ADDRESS; |
| 1044 | param = SM(LPO_CAL_ENABLE, 1); |
| 1045 | status = ath6kl_bmi_reg_write(ar, address, param); |
| 1046 | if (status) |
| 1047 | return status; |
| 1048 | |
| 1049 | /* WAR to avoid SDIO CRC err */ |
| 1050 | if (ar->version.target_ver == AR6003_REV2_VERSION) { |
| 1051 | ath6kl_err("temporary war to avoid sdio crc error\n"); |
| 1052 | |
| 1053 | param = 0x20; |
| 1054 | |
| 1055 | address = GPIO_BASE_ADDRESS + GPIO_PIN10_ADDRESS; |
| 1056 | status = ath6kl_bmi_reg_write(ar, address, param); |
| 1057 | if (status) |
| 1058 | return status; |
| 1059 | |
| 1060 | address = GPIO_BASE_ADDRESS + GPIO_PIN11_ADDRESS; |
| 1061 | status = ath6kl_bmi_reg_write(ar, address, param); |
| 1062 | if (status) |
| 1063 | return status; |
| 1064 | |
| 1065 | address = GPIO_BASE_ADDRESS + GPIO_PIN12_ADDRESS; |
| 1066 | status = ath6kl_bmi_reg_write(ar, address, param); |
| 1067 | if (status) |
| 1068 | return status; |
| 1069 | |
| 1070 | address = GPIO_BASE_ADDRESS + GPIO_PIN13_ADDRESS; |
| 1071 | status = ath6kl_bmi_reg_write(ar, address, param); |
| 1072 | if (status) |
| 1073 | return status; |
| 1074 | } |
| 1075 | |
| 1076 | /* write EEPROM data to Target RAM */ |
| 1077 | status = ath6kl_upload_board_file(ar); |
| 1078 | if (status) |
| 1079 | return status; |
| 1080 | |
| 1081 | /* transfer One time Programmable data */ |
| 1082 | status = ath6kl_upload_otp(ar); |
| 1083 | if (status) |
| 1084 | return status; |
| 1085 | |
| 1086 | /* Download Target firmware */ |
| 1087 | status = ath6kl_upload_firmware(ar); |
| 1088 | if (status) |
| 1089 | return status; |
| 1090 | |
| 1091 | status = ath6kl_upload_patch(ar); |
| 1092 | if (status) |
| 1093 | return status; |
| 1094 | |
| 1095 | /* Restore system sleep */ |
| 1096 | address = RTC_BASE_ADDRESS + SYSTEM_SLEEP_ADDRESS; |
| 1097 | status = ath6kl_bmi_reg_write(ar, address, sleep); |
| 1098 | if (status) |
| 1099 | return status; |
| 1100 | |
| 1101 | address = MBOX_BASE_ADDRESS + LOCAL_SCRATCH_ADDRESS; |
| 1102 | param = options | 0x20; |
| 1103 | status = ath6kl_bmi_reg_write(ar, address, param); |
| 1104 | if (status) |
| 1105 | return status; |
| 1106 | |
| 1107 | /* Configure GPIO AR6003 UART */ |
| 1108 | param = CONFIG_AR600x_DEBUG_UART_TX_PIN; |
| 1109 | status = ath6kl_bmi_write(ar, |
| 1110 | ath6kl_get_hi_item_addr(ar, |
| 1111 | HI_ITEM(hi_dbg_uart_txpin)), |
| 1112 | (u8 *)¶m, 4); |
| 1113 | |
| 1114 | return status; |
| 1115 | } |
| 1116 | |
| 1117 | static int ath6kl_init(struct net_device *dev) |
| 1118 | { |
| 1119 | struct ath6kl *ar = ath6kl_priv(dev); |
| 1120 | int status = 0; |
| 1121 | s32 timeleft; |
| 1122 | |
| 1123 | if (!ar) |
| 1124 | return -EIO; |
| 1125 | |
| 1126 | /* Do we need to finish the BMI phase */ |
| 1127 | if (ath6kl_bmi_done(ar)) { |
| 1128 | status = -EIO; |
| 1129 | goto ath6kl_init_done; |
| 1130 | } |
| 1131 | |
| 1132 | /* Indicate that WMI is enabled (although not ready yet) */ |
| 1133 | set_bit(WMI_ENABLED, &ar->flag); |
Vasanthakumar Thiagarajan | 2865785 | 2011-07-21 12:00:49 +0530 | [diff] [blame] | 1134 | ar->wmi = ath6kl_wmi_init(ar); |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 1135 | if (!ar->wmi) { |
| 1136 | ath6kl_err("failed to initialize wmi\n"); |
| 1137 | status = -EIO; |
| 1138 | goto ath6kl_init_done; |
| 1139 | } |
| 1140 | |
| 1141 | ath6kl_dbg(ATH6KL_DBG_TRC, "%s: got wmi @ 0x%p.\n", __func__, ar->wmi); |
| 1142 | |
Vasanthakumar Thiagarajan | 852bd9d | 2011-07-21 14:24:54 +0530 | [diff] [blame] | 1143 | wlan_node_table_init(&ar->scan_table); |
| 1144 | |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 1145 | /* |
| 1146 | * The reason we have to wait for the target here is that the |
| 1147 | * driver layer has to init BMI in order to set the host block |
| 1148 | * size. |
| 1149 | */ |
Kalle Valo | ad226ec | 2011-08-10 09:49:12 +0300 | [diff] [blame] | 1150 | if (ath6kl_htc_wait_target(ar->htc_target)) { |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 1151 | status = -EIO; |
Vasanthakumar Thiagarajan | 852bd9d | 2011-07-21 14:24:54 +0530 | [diff] [blame] | 1152 | goto err_node_cleanup; |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 1153 | } |
| 1154 | |
| 1155 | if (ath6kl_init_service_ep(ar)) { |
| 1156 | status = -EIO; |
| 1157 | goto err_cleanup_scatter; |
| 1158 | } |
| 1159 | |
| 1160 | /* setup access class priority mappings */ |
| 1161 | ar->ac_stream_pri_map[WMM_AC_BK] = 0; /* lowest */ |
| 1162 | ar->ac_stream_pri_map[WMM_AC_BE] = 1; |
| 1163 | ar->ac_stream_pri_map[WMM_AC_VI] = 2; |
| 1164 | ar->ac_stream_pri_map[WMM_AC_VO] = 3; /* highest */ |
| 1165 | |
| 1166 | /* give our connected endpoints some buffers */ |
| 1167 | ath6kl_rx_refill(ar->htc_target, ar->ctrl_ep); |
| 1168 | ath6kl_rx_refill(ar->htc_target, ar->ac2ep_map[WMM_AC_BE]); |
| 1169 | |
| 1170 | /* allocate some buffers that handle larger AMSDU frames */ |
| 1171 | ath6kl_refill_amsdu_rxbufs(ar, ATH6KL_MAX_AMSDU_RX_BUFFERS); |
| 1172 | |
| 1173 | /* setup credit distribution */ |
| 1174 | ath6k_setup_credit_dist(ar->htc_target, &ar->credit_state_info); |
| 1175 | |
| 1176 | ath6kl_cookie_init(ar); |
| 1177 | |
| 1178 | /* start HTC */ |
Kalle Valo | ad226ec | 2011-08-10 09:49:12 +0300 | [diff] [blame] | 1179 | status = ath6kl_htc_start(ar->htc_target); |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 1180 | |
| 1181 | if (status) { |
| 1182 | ath6kl_cookie_cleanup(ar); |
| 1183 | goto err_rxbuf_cleanup; |
| 1184 | } |
| 1185 | |
| 1186 | /* Wait for Wmi event to be ready */ |
| 1187 | timeleft = wait_event_interruptible_timeout(ar->event_wq, |
| 1188 | test_bit(WMI_READY, |
| 1189 | &ar->flag), |
| 1190 | WMI_TIMEOUT); |
| 1191 | |
| 1192 | if (ar->version.abi_ver != ATH6KL_ABI_VERSION) { |
| 1193 | ath6kl_err("abi version mismatch: host(0x%x), target(0x%x)\n", |
| 1194 | ATH6KL_ABI_VERSION, ar->version.abi_ver); |
| 1195 | status = -EIO; |
| 1196 | goto err_htc_stop; |
| 1197 | } |
| 1198 | |
| 1199 | if (!timeleft || signal_pending(current)) { |
| 1200 | ath6kl_err("wmi is not ready or wait was interrupted\n"); |
| 1201 | status = -EIO; |
| 1202 | goto err_htc_stop; |
| 1203 | } |
| 1204 | |
| 1205 | ath6kl_dbg(ATH6KL_DBG_TRC, "%s: wmi is ready\n", __func__); |
| 1206 | |
| 1207 | /* communicate the wmi protocol verision to the target */ |
| 1208 | if ((ath6kl_set_host_app_area(ar)) != 0) |
| 1209 | ath6kl_err("unable to set the host app area\n"); |
| 1210 | |
| 1211 | ar->conf_flags = ATH6KL_CONF_IGNORE_ERP_BARKER | |
| 1212 | ATH6KL_CONF_ENABLE_11N | ATH6KL_CONF_ENABLE_TX_BURST; |
| 1213 | |
| 1214 | status = ath6kl_target_config_wlan_params(ar); |
| 1215 | if (!status) |
| 1216 | goto ath6kl_init_done; |
| 1217 | |
| 1218 | err_htc_stop: |
Kalle Valo | ad226ec | 2011-08-10 09:49:12 +0300 | [diff] [blame] | 1219 | ath6kl_htc_stop(ar->htc_target); |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 1220 | err_rxbuf_cleanup: |
Kalle Valo | ad226ec | 2011-08-10 09:49:12 +0300 | [diff] [blame] | 1221 | ath6kl_htc_flush_rx_buf(ar->htc_target); |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 1222 | ath6kl_cleanup_amsdu_rxbufs(ar); |
| 1223 | err_cleanup_scatter: |
| 1224 | ath6kl_hif_cleanup_scatter(ar); |
Vasanthakumar Thiagarajan | 852bd9d | 2011-07-21 14:24:54 +0530 | [diff] [blame] | 1225 | err_node_cleanup: |
| 1226 | wlan_node_table_cleanup(&ar->scan_table); |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 1227 | ath6kl_wmi_shutdown(ar->wmi); |
| 1228 | clear_bit(WMI_ENABLED, &ar->flag); |
| 1229 | ar->wmi = NULL; |
| 1230 | |
| 1231 | ath6kl_init_done: |
| 1232 | return status; |
| 1233 | } |
| 1234 | |
| 1235 | int ath6kl_core_init(struct ath6kl *ar) |
| 1236 | { |
| 1237 | int ret = 0; |
| 1238 | struct ath6kl_bmi_target_info targ_info; |
| 1239 | |
| 1240 | ar->ath6kl_wq = create_singlethread_workqueue("ath6kl"); |
| 1241 | if (!ar->ath6kl_wq) |
| 1242 | return -ENOMEM; |
| 1243 | |
| 1244 | ret = ath6kl_bmi_init(ar); |
| 1245 | if (ret) |
| 1246 | goto err_wq; |
| 1247 | |
| 1248 | ret = ath6kl_bmi_get_target_info(ar, &targ_info); |
| 1249 | if (ret) |
| 1250 | goto err_bmi_cleanup; |
| 1251 | |
| 1252 | ar->version.target_ver = le32_to_cpu(targ_info.version); |
| 1253 | ar->target_type = le32_to_cpu(targ_info.type); |
| 1254 | ar->wdev->wiphy->hw_version = le32_to_cpu(targ_info.version); |
| 1255 | |
| 1256 | ret = ath6kl_configure_target(ar); |
| 1257 | if (ret) |
| 1258 | goto err_bmi_cleanup; |
| 1259 | |
Kalle Valo | ad226ec | 2011-08-10 09:49:12 +0300 | [diff] [blame] | 1260 | ar->htc_target = ath6kl_htc_create(ar); |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 1261 | |
| 1262 | if (!ar->htc_target) { |
| 1263 | ret = -ENOMEM; |
| 1264 | goto err_bmi_cleanup; |
| 1265 | } |
| 1266 | |
| 1267 | ar->aggr_cntxt = aggr_init(ar->net_dev); |
| 1268 | if (!ar->aggr_cntxt) { |
| 1269 | ath6kl_err("failed to initialize aggr\n"); |
| 1270 | ret = -ENOMEM; |
| 1271 | goto err_htc_cleanup; |
| 1272 | } |
| 1273 | |
| 1274 | ret = ath6kl_init_upload(ar); |
| 1275 | if (ret) |
| 1276 | goto err_htc_cleanup; |
| 1277 | |
| 1278 | ret = ath6kl_init(ar->net_dev); |
| 1279 | if (ret) |
| 1280 | goto err_htc_cleanup; |
| 1281 | |
| 1282 | /* This runs the init function if registered */ |
| 1283 | ret = register_netdev(ar->net_dev); |
| 1284 | if (ret) { |
| 1285 | ath6kl_err("register_netdev failed\n"); |
| 1286 | ath6kl_destroy(ar->net_dev, 0); |
| 1287 | return ret; |
| 1288 | } |
| 1289 | |
| 1290 | set_bit(NETDEV_REGISTERED, &ar->flag); |
| 1291 | |
| 1292 | ath6kl_dbg(ATH6KL_DBG_TRC, "%s: name=%s dev=0x%p, ar=0x%p\n", |
| 1293 | __func__, ar->net_dev->name, ar->net_dev, ar); |
| 1294 | |
| 1295 | return ret; |
| 1296 | |
| 1297 | err_htc_cleanup: |
Kalle Valo | ad226ec | 2011-08-10 09:49:12 +0300 | [diff] [blame] | 1298 | ath6kl_htc_cleanup(ar->htc_target); |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 1299 | err_bmi_cleanup: |
| 1300 | ath6kl_bmi_cleanup(ar); |
| 1301 | err_wq: |
| 1302 | destroy_workqueue(ar->ath6kl_wq); |
| 1303 | return ret; |
| 1304 | } |
| 1305 | |
| 1306 | void ath6kl_stop_txrx(struct ath6kl *ar) |
| 1307 | { |
| 1308 | struct net_device *ndev = ar->net_dev; |
| 1309 | |
| 1310 | if (!ndev) |
| 1311 | return; |
| 1312 | |
| 1313 | set_bit(DESTROY_IN_PROGRESS, &ar->flag); |
| 1314 | |
| 1315 | if (down_interruptible(&ar->sem)) { |
| 1316 | ath6kl_err("down_interruptible failed\n"); |
| 1317 | return; |
| 1318 | } |
| 1319 | |
| 1320 | if (ar->wlan_pwr_state != WLAN_POWER_STATE_CUT_PWR) |
| 1321 | ath6kl_stop_endpoint(ndev, false, true); |
| 1322 | |
Raja Mani | 575b5f3 | 2011-07-19 19:27:33 +0530 | [diff] [blame] | 1323 | clear_bit(WLAN_ENABLED, &ar->flag); |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 1324 | } |
| 1325 | |
| 1326 | /* |
| 1327 | * We need to differentiate between the surprise and planned removal of the |
| 1328 | * device because of the following consideration: |
| 1329 | * |
| 1330 | * - In case of surprise removal, the hcd already frees up the pending |
| 1331 | * for the device and hence there is no need to unregister the function |
| 1332 | * driver inorder to get these requests. For planned removal, the function |
| 1333 | * driver has to explicitly unregister itself to have the hcd return all the |
| 1334 | * pending requests before the data structures for the devices are freed up. |
| 1335 | * Note that as per the current implementation, the function driver will |
| 1336 | * end up releasing all the devices since there is no API to selectively |
| 1337 | * release a particular device. |
| 1338 | * |
| 1339 | * - Certain commands issued to the target can be skipped for surprise |
| 1340 | * removal since they will anyway not go through. |
| 1341 | */ |
| 1342 | void ath6kl_destroy(struct net_device *dev, unsigned int unregister) |
| 1343 | { |
| 1344 | struct ath6kl *ar; |
| 1345 | |
| 1346 | if (!dev || !ath6kl_priv(dev)) { |
| 1347 | ath6kl_err("failed to get device structure\n"); |
| 1348 | return; |
| 1349 | } |
| 1350 | |
| 1351 | ar = ath6kl_priv(dev); |
| 1352 | |
| 1353 | destroy_workqueue(ar->ath6kl_wq); |
| 1354 | |
| 1355 | if (ar->htc_target) |
Kalle Valo | ad226ec | 2011-08-10 09:49:12 +0300 | [diff] [blame] | 1356 | ath6kl_htc_cleanup(ar->htc_target); |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 1357 | |
| 1358 | aggr_module_destroy(ar->aggr_cntxt); |
| 1359 | |
| 1360 | ath6kl_cookie_cleanup(ar); |
| 1361 | |
| 1362 | ath6kl_cleanup_amsdu_rxbufs(ar); |
| 1363 | |
| 1364 | ath6kl_bmi_cleanup(ar); |
| 1365 | |
| 1366 | if (unregister && test_bit(NETDEV_REGISTERED, &ar->flag)) { |
| 1367 | unregister_netdev(dev); |
| 1368 | clear_bit(NETDEV_REGISTERED, &ar->flag); |
| 1369 | } |
| 1370 | |
| 1371 | free_netdev(dev); |
| 1372 | |
Vasanthakumar Thiagarajan | 852bd9d | 2011-07-21 14:24:54 +0530 | [diff] [blame] | 1373 | wlan_node_table_cleanup(&ar->scan_table); |
| 1374 | |
Raja Mani | 1970357 | 2011-08-04 19:26:30 +0530 | [diff] [blame] | 1375 | kfree(ar->fw_board); |
| 1376 | kfree(ar->fw_otp); |
| 1377 | kfree(ar->fw); |
| 1378 | kfree(ar->fw_patch); |
| 1379 | |
Kalle Valo | bdcd817 | 2011-07-18 00:22:30 +0300 | [diff] [blame] | 1380 | ath6kl_cfg80211_deinit(ar); |
| 1381 | } |