blob: 6e1e6995a63498b653321a3a91a1add30746e2bd [file] [log] [blame]
Kalle Valobdcd8172011-07-18 00:22:30 +03001
2/*
3 * Copyright (c) 2011 Atheros Communications Inc.
Vasanthakumar Thiagarajan1b2df402012-02-06 20:15:53 +05304 * Copyright (c) 2011-2012 Qualcomm Atheros, Inc.
Kalle Valobdcd8172011-07-18 00:22:30 +03005 *
6 * Permission to use, copy, modify, and/or distribute this software for any
7 * purpose with or without fee is hereby granted, provided that the above
8 * copyright notice and this permission notice appear in all copies.
9 *
10 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
11 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
12 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
13 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
14 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
15 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
16 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
17 */
18
Joe Perches516304b2012-03-18 17:30:52 -070019#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
20
Stephen Rothwellc6efe5782011-09-28 18:32:34 +100021#include <linux/moduleparam.h>
Sangwook Leef7830202011-10-26 16:28:38 +010022#include <linux/errno.h>
Kalle Valod6a434d2012-01-17 20:09:36 +020023#include <linux/export.h>
Sam Leffler92ecbff2011-09-07 10:55:16 +030024#include <linux/of.h>
Kalle Valobdcd8172011-07-18 00:22:30 +030025#include <linux/mmc/sdio_func.h>
Vivek Natarajan84377542012-03-28 19:21:25 +053026#include <linux/vmalloc.h>
Kalle Valod6a434d2012-01-17 20:09:36 +020027
Kalle Valobdcd8172011-07-18 00:22:30 +030028#include "core.h"
29#include "cfg80211.h"
30#include "target.h"
31#include "debug.h"
32#include "hif-ops.h"
Kalle Valoe76ac2bf2012-03-25 17:15:27 +030033#include "htc-ops.h"
Kalle Valobdcd8172011-07-18 00:22:30 +030034
Kalle Valo856f4b312011-11-14 19:30:29 +020035static const struct ath6kl_hw hw_list[] = {
36 {
Kalle Valo0d0192ba2011-11-14 19:31:07 +020037 .id = AR6003_HW_2_0_VERSION,
Kalle Valo293badf2011-11-14 19:30:54 +020038 .name = "ar6003 hw 2.0",
Kalle Valo856f4b312011-11-14 19:30:29 +020039 .dataset_patch_addr = 0x57e884,
40 .app_load_addr = 0x543180,
41 .board_ext_data_addr = 0x57e500,
42 .reserved_ram_size = 6912,
Ryan Hsu39586bf2011-12-13 17:11:07 +080043 .refclk_hz = 26000000,
44 .uarttx_pin = 8,
Mohammed Shafi Shajakhana2e1be32012-09-27 18:19:53 +053045 .flags = ATH6KL_HW_SDIO_CRC_ERROR_WAR,
Kalle Valo856f4b312011-11-14 19:30:29 +020046
47 /* hw2.0 needs override address hardcoded */
48 .app_start_override_addr = 0x944C00,
Kalle Valod1a94212011-11-14 19:31:23 +020049
Kalle Valoc0038972011-12-16 20:53:31 +020050 .fw = {
51 .dir = AR6003_HW_2_0_FW_DIR,
52 .otp = AR6003_HW_2_0_OTP_FILE,
53 .fw = AR6003_HW_2_0_FIRMWARE_FILE,
54 .tcmd = AR6003_HW_2_0_TCMD_FIRMWARE_FILE,
55 .patch = AR6003_HW_2_0_PATCH_FILE,
Kalle Valoc0038972011-12-16 20:53:31 +020056 },
57
Kalle Valod1a94212011-11-14 19:31:23 +020058 .fw_board = AR6003_HW_2_0_BOARD_DATA_FILE,
59 .fw_default_board = AR6003_HW_2_0_DEFAULT_BOARD_DATA_FILE,
Kalle Valo856f4b312011-11-14 19:30:29 +020060 },
61 {
Kalle Valo0d0192ba2011-11-14 19:31:07 +020062 .id = AR6003_HW_2_1_1_VERSION,
Kalle Valo293badf2011-11-14 19:30:54 +020063 .name = "ar6003 hw 2.1.1",
Kalle Valo856f4b312011-11-14 19:30:29 +020064 .dataset_patch_addr = 0x57ff74,
65 .app_load_addr = 0x1234,
66 .board_ext_data_addr = 0x542330,
67 .reserved_ram_size = 512,
Ryan Hsu39586bf2011-12-13 17:11:07 +080068 .refclk_hz = 26000000,
69 .uarttx_pin = 8,
Alex Yangcd23c1c2012-01-17 15:32:29 +020070 .testscript_addr = 0x57ef74,
Mohammed Shafi Shajakhana2e1be32012-09-27 18:19:53 +053071 .flags = ATH6KL_HW_SDIO_CRC_ERROR_WAR,
Kalle Valod1a94212011-11-14 19:31:23 +020072
Kalle Valoc0038972011-12-16 20:53:31 +020073 .fw = {
74 .dir = AR6003_HW_2_1_1_FW_DIR,
75 .otp = AR6003_HW_2_1_1_OTP_FILE,
76 .fw = AR6003_HW_2_1_1_FIRMWARE_FILE,
77 .tcmd = AR6003_HW_2_1_1_TCMD_FIRMWARE_FILE,
78 .patch = AR6003_HW_2_1_1_PATCH_FILE,
Alex Yangcd23c1c2012-01-17 15:32:29 +020079 .utf = AR6003_HW_2_1_1_UTF_FIRMWARE_FILE,
80 .testscript = AR6003_HW_2_1_1_TESTSCRIPT_FILE,
Kalle Valoc0038972011-12-16 20:53:31 +020081 },
82
Kalle Valod1a94212011-11-14 19:31:23 +020083 .fw_board = AR6003_HW_2_1_1_BOARD_DATA_FILE,
Kalle Valo05aab172012-03-07 20:04:00 +020084 .fw_default_board = AR6003_HW_2_1_1_DEFAULT_BOARD_DATA_FILE,
Kalle Valo856f4b312011-11-14 19:30:29 +020085 },
86 {
Kalle Valo0d0192ba2011-11-14 19:31:07 +020087 .id = AR6004_HW_1_0_VERSION,
Kalle Valo293badf2011-11-14 19:30:54 +020088 .name = "ar6004 hw 1.0",
Kalle Valo856f4b312011-11-14 19:30:29 +020089 .dataset_patch_addr = 0x57e884,
90 .app_load_addr = 0x1234,
91 .board_ext_data_addr = 0x437000,
92 .reserved_ram_size = 19456,
Kalle Valo0d4d72b2011-11-14 19:30:39 +020093 .board_addr = 0x433900,
Ryan Hsu39586bf2011-12-13 17:11:07 +080094 .refclk_hz = 26000000,
95 .uarttx_pin = 11,
Mohammed Shafi Shajakhan7ac25ea2012-09-27 18:19:51 +053096 .flags = ATH6KL_HW_64BIT_RATES |
97 ATH6KL_HW_AP_INACTIVITY_MINS,
Kalle Valod1a94212011-11-14 19:31:23 +020098
Kalle Valoc0038972011-12-16 20:53:31 +020099 .fw = {
100 .dir = AR6004_HW_1_0_FW_DIR,
101 .fw = AR6004_HW_1_0_FIRMWARE_FILE,
Kalle Valoc0038972011-12-16 20:53:31 +0200102 },
103
Kalle Valod1a94212011-11-14 19:31:23 +0200104 .fw_board = AR6004_HW_1_0_BOARD_DATA_FILE,
105 .fw_default_board = AR6004_HW_1_0_DEFAULT_BOARD_DATA_FILE,
Kalle Valo856f4b312011-11-14 19:30:29 +0200106 },
107 {
Kalle Valo0d0192ba2011-11-14 19:31:07 +0200108 .id = AR6004_HW_1_1_VERSION,
Kalle Valo293badf2011-11-14 19:30:54 +0200109 .name = "ar6004 hw 1.1",
Kalle Valo856f4b312011-11-14 19:30:29 +0200110 .dataset_patch_addr = 0x57e884,
111 .app_load_addr = 0x1234,
112 .board_ext_data_addr = 0x437000,
113 .reserved_ram_size = 11264,
Kalle Valo0d4d72b2011-11-14 19:30:39 +0200114 .board_addr = 0x43d400,
Ryan Hsu39586bf2011-12-13 17:11:07 +0800115 .refclk_hz = 40000000,
116 .uarttx_pin = 11,
Mohammed Shafi Shajakhan7ac25ea2012-09-27 18:19:51 +0530117 .flags = ATH6KL_HW_64BIT_RATES |
118 ATH6KL_HW_AP_INACTIVITY_MINS,
Kalle Valoc0038972011-12-16 20:53:31 +0200119 .fw = {
120 .dir = AR6004_HW_1_1_FW_DIR,
121 .fw = AR6004_HW_1_1_FIRMWARE_FILE,
Kalle Valoc0038972011-12-16 20:53:31 +0200122 },
123
Kalle Valod1a94212011-11-14 19:31:23 +0200124 .fw_board = AR6004_HW_1_1_BOARD_DATA_FILE,
125 .fw_default_board = AR6004_HW_1_1_DEFAULT_BOARD_DATA_FILE,
Kalle Valo856f4b312011-11-14 19:30:29 +0200126 },
Ray Chen6146ca62012-04-11 10:03:13 +0800127 {
128 .id = AR6004_HW_1_2_VERSION,
129 .name = "ar6004 hw 1.2",
130 .dataset_patch_addr = 0x436ecc,
131 .app_load_addr = 0x1234,
132 .board_ext_data_addr = 0x437000,
133 .reserved_ram_size = 9216,
134 .board_addr = 0x435c00,
135 .refclk_hz = 40000000,
136 .uarttx_pin = 11,
Mohammed Shafi Shajakhan7ac25ea2012-09-27 18:19:51 +0530137 .flags = ATH6KL_HW_64BIT_RATES |
138 ATH6KL_HW_AP_INACTIVITY_MINS,
Ray Chen6146ca62012-04-11 10:03:13 +0800139
140 .fw = {
141 .dir = AR6004_HW_1_2_FW_DIR,
142 .fw = AR6004_HW_1_2_FIRMWARE_FILE,
143 },
144 .fw_board = AR6004_HW_1_2_BOARD_DATA_FILE,
145 .fw_default_board = AR6004_HW_1_2_DEFAULT_BOARD_DATA_FILE,
146 },
Bala Shanmugambf744f12012-07-17 12:01:55 +0530147 {
148 .id = AR6004_HW_1_3_VERSION,
149 .name = "ar6004 hw 1.3",
150 .dataset_patch_addr = 0x437860,
151 .app_load_addr = 0x1234,
152 .board_ext_data_addr = 0x437000,
153 .reserved_ram_size = 7168,
154 .board_addr = 0x436400,
155 .refclk_hz = 40000000,
156 .uarttx_pin = 11,
Mohammed Shafi Shajakhan7ac25ea2012-09-27 18:19:51 +0530157 .flags = ATH6KL_HW_64BIT_RATES |
Mohammed Shafi Shajakhan171fe762012-09-27 18:19:52 +0530158 ATH6KL_HW_AP_INACTIVITY_MINS |
159 ATH6KL_HW_MAP_LP_ENDPOINT,
Bala Shanmugambf744f12012-07-17 12:01:55 +0530160
161 .fw = {
162 .dir = AR6004_HW_1_3_FW_DIR,
163 .fw = AR6004_HW_1_3_FIRMWARE_FILE,
164 },
165
166 .fw_board = AR6004_HW_1_3_BOARD_DATA_FILE,
167 .fw_default_board = AR6004_HW_1_3_DEFAULT_BOARD_DATA_FILE,
168 },
Kalle Valo856f4b312011-11-14 19:30:29 +0200169};
170
Kalle Valobdcd8172011-07-18 00:22:30 +0300171/*
172 * Include definitions here that can be used to tune the WLAN module
173 * behavior. Different customers can tune the behavior as per their needs,
174 * here.
175 */
176
177/*
178 * This configuration item enable/disable keepalive support.
179 * Keepalive support: In the absence of any data traffic to AP, null
180 * frames will be sent to the AP at periodic interval, to keep the association
181 * active. This configuration item defines the periodic interval.
182 * Use value of zero to disable keepalive support
183 * Default: 60 seconds
184 */
185#define WLAN_CONFIG_KEEP_ALIVE_INTERVAL 60
186
187/*
188 * This configuration item sets the value of disconnect timeout
189 * Firmware delays sending the disconnec event to the host for this
190 * timeout after is gets disconnected from the current AP.
191 * If the firmware successly roams within the disconnect timeout
192 * it sends a new connect event
193 */
194#define WLAN_CONFIG_DISCONNECT_TIMEOUT 10
195
Kalle Valobdcd8172011-07-18 00:22:30 +0300196
Kalle Valobdcd8172011-07-18 00:22:30 +0300197#define ATH6KL_DATA_OFFSET 64
198struct sk_buff *ath6kl_buf_alloc(int size)
199{
200 struct sk_buff *skb;
201 u16 reserved;
202
203 /* Add chacheline space at front and back of buffer */
Myoungje Kim6a3e4e02013-03-10 08:16:05 +0200204 reserved = roundup((2 * L1_CACHE_BYTES) + ATH6KL_DATA_OFFSET +
205 sizeof(struct htc_packet) + ATH6KL_HTC_ALIGN_BYTES, 4);
Kalle Valobdcd8172011-07-18 00:22:30 +0300206 skb = dev_alloc_skb(size + reserved);
207
208 if (skb)
209 skb_reserve(skb, reserved - L1_CACHE_BYTES);
210 return skb;
211}
212
Vasanthakumar Thiagarajane29f25f2011-10-25 19:34:15 +0530213void ath6kl_init_profile_info(struct ath6kl_vif *vif)
Kalle Valobdcd8172011-07-18 00:22:30 +0300214{
Vasanthakumar Thiagarajan34503342011-10-25 19:34:02 +0530215 vif->ssid_len = 0;
216 memset(vif->ssid, 0, sizeof(vif->ssid));
217
218 vif->dot11_auth_mode = OPEN_AUTH;
219 vif->auth_mode = NONE_AUTH;
220 vif->prwise_crypto = NONE_CRYPT;
221 vif->prwise_crypto_len = 0;
222 vif->grp_crypto = NONE_CRYPT;
223 vif->grp_crypto_len = 0;
Vasanthakumar Thiagarajan6f2a73f2011-10-25 19:34:06 +0530224 memset(vif->wep_key_list, 0, sizeof(vif->wep_key_list));
Vasanthakumar Thiagarajan8c8b65e2011-10-25 19:34:04 +0530225 memset(vif->req_bssid, 0, sizeof(vif->req_bssid));
226 memset(vif->bssid, 0, sizeof(vif->bssid));
Vasanthakumar Thiagarajanf74bac52011-10-25 19:34:05 +0530227 vif->bss_ch = 0;
Kalle Valobdcd8172011-07-18 00:22:30 +0300228}
229
Kalle Valobdcd8172011-07-18 00:22:30 +0300230static int ath6kl_set_host_app_area(struct ath6kl *ar)
231{
232 u32 address, data;
233 struct host_app_area host_app_area;
234
235 /* Fetch the address of the host_app_area_s
236 * instance in the host interest area */
237 address = ath6kl_get_hi_item_addr(ar, HI_ITEM(hi_app_host_interest));
Kevin Fang31024d92011-07-11 17:14:13 +0800238 address = TARG_VTOP(ar->target_type, address);
Kalle Valobdcd8172011-07-18 00:22:30 +0300239
Kalle Valoaddb44b2011-09-02 10:32:05 +0300240 if (ath6kl_diag_read32(ar, address, &data))
Kalle Valobdcd8172011-07-18 00:22:30 +0300241 return -EIO;
242
Kevin Fang31024d92011-07-11 17:14:13 +0800243 address = TARG_VTOP(ar->target_type, data);
Kalle Valocbf49a62011-10-05 12:23:17 +0300244 host_app_area.wmi_protocol_ver = cpu_to_le32(WMI_PROTOCOL_VERSION);
Kalle Valoaddb44b2011-09-02 10:32:05 +0300245 if (ath6kl_diag_write(ar, address, (u8 *) &host_app_area,
246 sizeof(struct host_app_area)))
Kalle Valobdcd8172011-07-18 00:22:30 +0300247 return -EIO;
248
249 return 0;
250}
251
252static inline void set_ac2_ep_map(struct ath6kl *ar,
253 u8 ac,
254 enum htc_endpoint_id ep)
255{
256 ar->ac2ep_map[ac] = ep;
257 ar->ep2ac_map[ep] = ac;
258}
259
260/* connect to a service */
261static int ath6kl_connectservice(struct ath6kl *ar,
262 struct htc_service_connect_req *con_req,
263 char *desc)
264{
265 int status;
266 struct htc_service_connect_resp response;
267
268 memset(&response, 0, sizeof(response));
269
Kalle Vaload226ec2011-08-10 09:49:12 +0300270 status = ath6kl_htc_conn_service(ar->htc_target, con_req, &response);
Kalle Valobdcd8172011-07-18 00:22:30 +0300271 if (status) {
272 ath6kl_err("failed to connect to %s service status:%d\n",
273 desc, status);
274 return status;
275 }
276
277 switch (con_req->svc_id) {
278 case WMI_CONTROL_SVC:
279 if (test_bit(WMI_ENABLED, &ar->flag))
280 ath6kl_wmi_set_control_ep(ar->wmi, response.endpoint);
281 ar->ctrl_ep = response.endpoint;
282 break;
283 case WMI_DATA_BE_SVC:
284 set_ac2_ep_map(ar, WMM_AC_BE, response.endpoint);
285 break;
286 case WMI_DATA_BK_SVC:
287 set_ac2_ep_map(ar, WMM_AC_BK, response.endpoint);
288 break;
289 case WMI_DATA_VI_SVC:
290 set_ac2_ep_map(ar, WMM_AC_VI, response.endpoint);
291 break;
292 case WMI_DATA_VO_SVC:
293 set_ac2_ep_map(ar, WMM_AC_VO, response.endpoint);
294 break;
295 default:
296 ath6kl_err("service id is not mapped %d\n", con_req->svc_id);
297 return -EINVAL;
298 }
299
300 return 0;
301}
302
303static int ath6kl_init_service_ep(struct ath6kl *ar)
304{
305 struct htc_service_connect_req connect;
306
307 memset(&connect, 0, sizeof(connect));
308
309 /* these fields are the same for all service endpoints */
Kalle Valo900d6b32012-03-25 17:15:23 +0300310 connect.ep_cb.tx_comp_multi = ath6kl_tx_complete;
Kalle Valobdcd8172011-07-18 00:22:30 +0300311 connect.ep_cb.rx = ath6kl_rx;
312 connect.ep_cb.rx_refill = ath6kl_rx_refill;
313 connect.ep_cb.tx_full = ath6kl_tx_queue_full;
314
315 /*
316 * Set the max queue depth so that our ath6kl_tx_queue_full handler
317 * gets called.
318 */
319 connect.max_txq_depth = MAX_DEFAULT_SEND_QUEUE_DEPTH;
320 connect.ep_cb.rx_refill_thresh = ATH6KL_MAX_RX_BUFFERS / 4;
321 if (!connect.ep_cb.rx_refill_thresh)
322 connect.ep_cb.rx_refill_thresh++;
323
324 /* connect to control service */
325 connect.svc_id = WMI_CONTROL_SVC;
326 if (ath6kl_connectservice(ar, &connect, "WMI CONTROL"))
327 return -EIO;
328
329 connect.flags |= HTC_FLGS_TX_BNDL_PAD_EN;
330
331 /*
332 * Limit the HTC message size on the send path, although e can
333 * receive A-MSDU frames of 4K, we will only send ethernet-sized
334 * (802.3) frames on the send path.
335 */
336 connect.max_rxmsg_sz = WMI_MAX_TX_DATA_FRAME_LENGTH;
337
338 /*
339 * To reduce the amount of committed memory for larger A_MSDU
340 * frames, use the recv-alloc threshold mechanism for larger
341 * packets.
342 */
343 connect.ep_cb.rx_alloc_thresh = ATH6KL_BUFFER_SIZE;
344 connect.ep_cb.rx_allocthresh = ath6kl_alloc_amsdu_rxbuf;
345
346 /*
347 * For the remaining data services set the connection flag to
348 * reduce dribbling, if configured to do so.
349 */
350 connect.conn_flags |= HTC_CONN_FLGS_REDUCE_CRED_DRIB;
351 connect.conn_flags &= ~HTC_CONN_FLGS_THRESH_MASK;
352 connect.conn_flags |= HTC_CONN_FLGS_THRESH_LVL_HALF;
353
354 connect.svc_id = WMI_DATA_BE_SVC;
355
356 if (ath6kl_connectservice(ar, &connect, "WMI DATA BE"))
357 return -EIO;
358
359 /* connect to back-ground map this to WMI LOW_PRI */
360 connect.svc_id = WMI_DATA_BK_SVC;
361 if (ath6kl_connectservice(ar, &connect, "WMI DATA BK"))
362 return -EIO;
363
Mohammed Shafi Shajakhan171fe762012-09-27 18:19:52 +0530364 /* connect to Video service, map this to HI PRI */
Kalle Valobdcd8172011-07-18 00:22:30 +0300365 connect.svc_id = WMI_DATA_VI_SVC;
366 if (ath6kl_connectservice(ar, &connect, "WMI DATA VI"))
367 return -EIO;
368
369 /*
370 * Connect to VO service, this is currently not mapped to a WMI
371 * priority stream due to historical reasons. WMI originally
372 * defined 3 priorities over 3 mailboxes We can change this when
373 * WMI is reworked so that priorities are not dependent on
374 * mailboxes.
375 */
376 connect.svc_id = WMI_DATA_VO_SVC;
377 if (ath6kl_connectservice(ar, &connect, "WMI DATA VO"))
378 return -EIO;
379
380 return 0;
381}
382
Vasanthakumar Thiagarajane29f25f2011-10-25 19:34:15 +0530383void ath6kl_init_control_info(struct ath6kl_vif *vif)
Kalle Valobdcd8172011-07-18 00:22:30 +0300384{
Vasanthakumar Thiagarajane29f25f2011-10-25 19:34:15 +0530385 ath6kl_init_profile_info(vif);
Vasanthakumar Thiagarajan34503342011-10-25 19:34:02 +0530386 vif->def_txkey_index = 0;
Vasanthakumar Thiagarajan6f2a73f2011-10-25 19:34:06 +0530387 memset(vif->wep_key_list, 0, sizeof(vif->wep_key_list));
Vasanthakumar Thiagarajanf74bac52011-10-25 19:34:05 +0530388 vif->ch_hint = 0;
Kalle Valobdcd8172011-07-18 00:22:30 +0300389}
390
391/*
392 * Set HTC/Mbox operational parameters, this can only be called when the
393 * target is in the BMI phase.
394 */
395static int ath6kl_set_htc_params(struct ath6kl *ar, u32 mbox_isr_yield_val,
396 u8 htc_ctrl_buf)
397{
398 int status;
399 u32 blk_size;
400
401 blk_size = ar->mbox_info.block_size;
402
403 if (htc_ctrl_buf)
404 blk_size |= ((u32)htc_ctrl_buf) << 16;
405
406 /* set the host interest area for the block size */
Kalle Valo24fc32b2012-03-07 20:03:58 +0200407 status = ath6kl_bmi_write_hi32(ar, hi_mbox_io_block_sz, blk_size);
Kalle Valobdcd8172011-07-18 00:22:30 +0300408 if (status) {
409 ath6kl_err("bmi_write_memory for IO block size failed\n");
410 goto out;
411 }
412
413 ath6kl_dbg(ATH6KL_DBG_TRC, "block size set: %d (target addr:0x%X)\n",
414 blk_size,
415 ath6kl_get_hi_item_addr(ar, HI_ITEM(hi_mbox_io_block_sz)));
416
417 if (mbox_isr_yield_val) {
418 /* set the host interest area for the mbox ISR yield limit */
Kalle Valo24fc32b2012-03-07 20:03:58 +0200419 status = ath6kl_bmi_write_hi32(ar, hi_mbox_isr_yield_limit,
420 mbox_isr_yield_val);
Kalle Valobdcd8172011-07-18 00:22:30 +0300421 if (status) {
422 ath6kl_err("bmi_write_memory for yield limit failed\n");
423 goto out;
424 }
425 }
426
427out:
428 return status;
429}
430
Vasanthakumar Thiagarajan0ce59442011-10-25 19:34:25 +0530431static int ath6kl_target_config_wlan_params(struct ath6kl *ar, int idx)
Kalle Valobdcd8172011-07-18 00:22:30 +0300432{
Jouni Malinen4dea08e2011-08-30 21:57:57 +0300433 int ret;
Kalle Valobdcd8172011-07-18 00:22:30 +0300434
435 /*
436 * Configure the device for rx dot11 header rules. "0,0" are the
437 * default values. Required if checksum offload is needed. Set
438 * RxMetaVersion to 2.
439 */
Kalle Valo1ca4d0b2012-03-07 20:03:59 +0200440 ret = ath6kl_wmi_set_rx_frame_format_cmd(ar->wmi, idx,
441 ar->rx_meta_ver, 0, 0);
442 if (ret) {
443 ath6kl_err("unable to set the rx frame format: %d\n", ret);
444 return ret;
Kalle Valobdcd8172011-07-18 00:22:30 +0300445 }
446
Kalle Valo1ca4d0b2012-03-07 20:03:59 +0200447 if (ar->conf_flags & ATH6KL_CONF_IGNORE_PS_FAIL_EVT_IN_SCAN) {
448 ret = ath6kl_wmi_pmparams_cmd(ar->wmi, idx, 0, 1, 0, 0, 1,
Kalle Valo05aab172012-03-07 20:04:00 +0200449 IGNORE_PS_FAIL_DURING_SCAN);
Kalle Valo1ca4d0b2012-03-07 20:03:59 +0200450 if (ret) {
451 ath6kl_err("unable to set power save fail event policy: %d\n",
452 ret);
453 return ret;
Kalle Valobdcd8172011-07-18 00:22:30 +0300454 }
Kalle Valobdcd8172011-07-18 00:22:30 +0300455 }
456
Kalle Valo1ca4d0b2012-03-07 20:03:59 +0200457 if (!(ar->conf_flags & ATH6KL_CONF_IGNORE_ERP_BARKER)) {
458 ret = ath6kl_wmi_set_lpreamble_cmd(ar->wmi, idx, 0,
Kalle Valo05aab172012-03-07 20:04:00 +0200459 WMI_FOLLOW_BARKER_IN_ERP);
Kalle Valo1ca4d0b2012-03-07 20:03:59 +0200460 if (ret) {
461 ath6kl_err("unable to set barker preamble policy: %d\n",
462 ret);
463 return ret;
464 }
Kalle Valobdcd8172011-07-18 00:22:30 +0300465 }
466
Kalle Valo1ca4d0b2012-03-07 20:03:59 +0200467 ret = ath6kl_wmi_set_keepalive_cmd(ar->wmi, idx,
468 WLAN_CONFIG_KEEP_ALIVE_INTERVAL);
469 if (ret) {
470 ath6kl_err("unable to set keep alive interval: %d\n", ret);
471 return ret;
472 }
473
474 ret = ath6kl_wmi_disctimeout_cmd(ar->wmi, idx,
475 WLAN_CONFIG_DISCONNECT_TIMEOUT);
476 if (ret) {
477 ath6kl_err("unable to set disconnect timeout: %d\n", ret);
478 return ret;
479 }
480
481 if (!(ar->conf_flags & ATH6KL_CONF_ENABLE_TX_BURST)) {
482 ret = ath6kl_wmi_set_wmm_txop(ar->wmi, idx, WMI_TXOP_DISABLED);
483 if (ret) {
484 ath6kl_err("unable to set txop bursting: %d\n", ret);
485 return ret;
Kalle Valobdcd8172011-07-18 00:22:30 +0300486 }
Kalle Valo1ca4d0b2012-03-07 20:03:59 +0200487 }
Kalle Valobdcd8172011-07-18 00:22:30 +0300488
Vasanthakumar Thiagarajanb64de352011-11-18 10:05:28 +0530489 if (ar->p2p && (ar->vif_max == 1 || idx)) {
Vasanthakumar Thiagarajan0ce59442011-10-25 19:34:25 +0530490 ret = ath6kl_wmi_info_req_cmd(ar->wmi, idx,
Jouni Malinen6bbc7c32011-09-05 17:38:47 +0300491 P2P_FLAG_CAPABILITIES_REQ |
492 P2P_FLAG_MACADDR_REQ |
493 P2P_FLAG_HMODEL_REQ);
494 if (ret) {
Kalle Valocdeb8602012-04-12 11:02:18 +0300495 ath6kl_dbg(ATH6KL_DBG_TRC,
496 "failed to request P2P capabilities (%d) - assuming P2P not supported\n",
497 ret);
Rusty Russell3db1cd52011-12-19 13:56:45 +0000498 ar->p2p = false;
Jouni Malinen6bbc7c32011-09-05 17:38:47 +0300499 }
500 }
501
Vasanthakumar Thiagarajanb64de352011-11-18 10:05:28 +0530502 if (ar->p2p && (ar->vif_max == 1 || idx)) {
Jouni Malinen6bbc7c32011-09-05 17:38:47 +0300503 /* Enable Probe Request reporting for P2P */
Vasanthakumar Thiagarajan0ce59442011-10-25 19:34:25 +0530504 ret = ath6kl_wmi_probe_report_req_cmd(ar->wmi, idx, true);
Jouni Malinen6bbc7c32011-09-05 17:38:47 +0300505 if (ret) {
Kalle Valocdeb8602012-04-12 11:02:18 +0300506 ath6kl_dbg(ATH6KL_DBG_TRC,
507 "failed to enable Probe Request reporting (%d)\n",
508 ret);
Jouni Malinen6bbc7c32011-09-05 17:38:47 +0300509 }
Jouni Malinen4dea08e2011-08-30 21:57:57 +0300510 }
511
Kalle Valo1ca4d0b2012-03-07 20:03:59 +0200512 return ret;
Kalle Valobdcd8172011-07-18 00:22:30 +0300513}
514
515int ath6kl_configure_target(struct ath6kl *ar)
516{
517 u32 param, ram_reserved_size;
Vasanthakumar Thiagarajan3226f68a2011-10-25 19:34:24 +0530518 u8 fw_iftype, fw_mode = 0, fw_submode = 0;
Ryan Hsu39586bf2011-12-13 17:11:07 +0800519 int i, status;
Kalle Valobdcd8172011-07-18 00:22:30 +0300520
Kalle Valof29af972012-01-17 20:08:56 +0200521 param = !!(ar->conf_flags & ATH6KL_CONF_UART_DEBUG);
Kalle Valo24fc32b2012-03-07 20:03:58 +0200522 if (ath6kl_bmi_write_hi32(ar, hi_serial_enable, param)) {
Vasanthakumar Thiagarajana10e2f22011-12-29 16:05:38 +0530523 ath6kl_err("bmi_write_memory for uart debug failed\n");
524 return -EIO;
525 }
526
Vasanthakumar Thiagarajan7b858322011-10-25 19:34:22 +0530527 /*
528 * Note: Even though the firmware interface type is
529 * chosen as BSS_STA for all three interfaces, can
530 * be configured to IBSS/AP as long as the fw submode
531 * remains normal mode (0 - AP, STA and IBSS). But
532 * due to an target assert in firmware only one interface is
533 * configured for now.
534 */
Vasanthakumar Thiagarajandd3751f2011-10-25 19:33:59 +0530535 fw_iftype = HI_OPTION_FW_MODE_BSS_STA;
Kalle Valobdcd8172011-07-18 00:22:30 +0300536
Kalle Valo71f96ee2011-11-14 19:31:30 +0200537 for (i = 0; i < ar->vif_max; i++)
Vasanthakumar Thiagarajan7b858322011-10-25 19:34:22 +0530538 fw_mode |= fw_iftype << (i * HI_OPTION_FW_MODE_BITS);
539
540 /*
Vasanthakumar Thiagarajan1e8d13b2012-04-06 20:24:30 +0530541 * Submodes when fw does not support dynamic interface
542 * switching:
Vasanthakumar Thiagarajan3226f68a2011-10-25 19:34:24 +0530543 * vif[0] - AP/STA/IBSS
544 * vif[1] - "P2P dev"/"P2P GO"/"P2P Client"
545 * vif[2] - "P2P dev"/"P2P GO"/"P2P Client"
Vasanthakumar Thiagarajan1e8d13b2012-04-06 20:24:30 +0530546 * Otherwise, All the interface are initialized to p2p dev.
Vasanthakumar Thiagarajan7b858322011-10-25 19:34:22 +0530547 */
Vasanthakumar Thiagarajan3226f68a2011-10-25 19:34:24 +0530548
Vasanthakumar Thiagarajan1e8d13b2012-04-06 20:24:30 +0530549 if (test_bit(ATH6KL_FW_CAPABILITY_STA_P2PDEV_DUPLEX,
550 ar->fw_capabilities)) {
551 for (i = 0; i < ar->vif_max; i++)
552 fw_submode |= HI_OPTION_FW_SUBMODE_P2PDEV <<
553 (i * HI_OPTION_FW_SUBMODE_BITS);
554 } else {
555 for (i = 0; i < ar->max_norm_iface; i++)
556 fw_submode |= HI_OPTION_FW_SUBMODE_NONE <<
557 (i * HI_OPTION_FW_SUBMODE_BITS);
Vasanthakumar Thiagarajan3226f68a2011-10-25 19:34:24 +0530558
Vasanthakumar Thiagarajan1e8d13b2012-04-06 20:24:30 +0530559 for (i = ar->max_norm_iface; i < ar->vif_max; i++)
560 fw_submode |= HI_OPTION_FW_SUBMODE_P2PDEV <<
561 (i * HI_OPTION_FW_SUBMODE_BITS);
Vasanthakumar Thiagarajan7b858322011-10-25 19:34:22 +0530562
Vasanthakumar Thiagarajan1e8d13b2012-04-06 20:24:30 +0530563 if (ar->p2p && ar->vif_max == 1)
564 fw_submode = HI_OPTION_FW_SUBMODE_P2PDEV;
565 }
Vasanthakumar Thiagarajan7b858322011-10-25 19:34:22 +0530566
Kalle Valo24fc32b2012-03-07 20:03:58 +0200567 if (ath6kl_bmi_write_hi32(ar, hi_app_host_interest,
568 HTC_PROTOCOL_VERSION) != 0) {
Kalle Valobdcd8172011-07-18 00:22:30 +0300569 ath6kl_err("bmi_write_memory for htc version failed\n");
570 return -EIO;
571 }
572
573 /* set the firmware mode to STA/IBSS/AP */
574 param = 0;
575
Kalle Valo80fb2682012-03-07 20:03:59 +0200576 if (ath6kl_bmi_read_hi32(ar, hi_option_flag, &param) != 0) {
Kalle Valobdcd8172011-07-18 00:22:30 +0300577 ath6kl_err("bmi_read_memory for setting fwmode failed\n");
578 return -EIO;
579 }
580
Kalle Valo71f96ee2011-11-14 19:31:30 +0200581 param |= (ar->vif_max << HI_OPTION_NUM_DEV_SHIFT);
Vasanthakumar Thiagarajan7b858322011-10-25 19:34:22 +0530582 param |= fw_mode << HI_OPTION_FW_MODE_SHIFT;
583 param |= fw_submode << HI_OPTION_FW_SUBMODE_SHIFT;
584
Kalle Valobdcd8172011-07-18 00:22:30 +0300585 param |= (0 << HI_OPTION_MAC_ADDR_METHOD_SHIFT);
586 param |= (0 << HI_OPTION_FW_BRIDGE_SHIFT);
587
Kalle Valo24fc32b2012-03-07 20:03:58 +0200588 if (ath6kl_bmi_write_hi32(ar, hi_option_flag, param) != 0) {
Kalle Valobdcd8172011-07-18 00:22:30 +0300589 ath6kl_err("bmi_write_memory for setting fwmode failed\n");
590 return -EIO;
591 }
592
593 ath6kl_dbg(ATH6KL_DBG_TRC, "firmware mode set\n");
594
595 /*
596 * Hardcode the address use for the extended board data
597 * Ideally this should be pre-allocate by the OS at boot time
598 * But since it is a new feature and board data is loaded
599 * at init time, we have to workaround this from host.
600 * It is difficult to patch the firmware boot code,
601 * but possible in theory.
602 */
603
Kalle Valo6b42d302012-03-25 17:15:21 +0300604 if (ar->target_type == TARGET_TYPE_AR6003) {
605 param = ar->hw.board_ext_data_addr;
606 ram_reserved_size = ar->hw.reserved_ram_size;
Kalle Valobdcd8172011-07-18 00:22:30 +0300607
Kalle Valo6b42d302012-03-25 17:15:21 +0300608 if (ath6kl_bmi_write_hi32(ar, hi_board_ext_data, param) != 0) {
609 ath6kl_err("bmi_write_memory for hi_board_ext_data failed\n");
610 return -EIO;
611 }
Kalle Valo991b27e2011-09-07 10:55:17 +0300612
Kalle Valo6b42d302012-03-25 17:15:21 +0300613 if (ath6kl_bmi_write_hi32(ar, hi_end_ram_reserve_sz,
614 ram_reserved_size) != 0) {
615 ath6kl_err("bmi_write_memory for hi_end_ram_reserve_sz failed\n");
616 return -EIO;
617 }
Kalle Valobdcd8172011-07-18 00:22:30 +0300618 }
619
620 /* set the block size for the target */
621 if (ath6kl_set_htc_params(ar, MBOX_YIELD_LIMIT, 0))
622 /* use default number of control buffers */
623 return -EIO;
624
Ryan Hsu39586bf2011-12-13 17:11:07 +0800625 /* Configure GPIO AR600x UART */
Kalle Valo24fc32b2012-03-07 20:03:58 +0200626 status = ath6kl_bmi_write_hi32(ar, hi_dbg_uart_txpin,
627 ar->hw.uarttx_pin);
Ryan Hsu39586bf2011-12-13 17:11:07 +0800628 if (status)
629 return status;
630
631 /* Configure target refclk_hz */
Kalle Valo24fc32b2012-03-07 20:03:58 +0200632 status = ath6kl_bmi_write_hi32(ar, hi_refclk_hz, ar->hw.refclk_hz);
Ryan Hsu39586bf2011-12-13 17:11:07 +0800633 if (status)
634 return status;
635
Kalle Valobdcd8172011-07-18 00:22:30 +0300636 return 0;
637}
638
Kalle Valobdcd8172011-07-18 00:22:30 +0300639/* firmware upload */
Kalle Valobdcd8172011-07-18 00:22:30 +0300640static int ath6kl_get_fw(struct ath6kl *ar, const char *filename,
641 u8 **fw, size_t *fw_len)
642{
643 const struct firmware *fw_entry;
644 int ret;
645
646 ret = request_firmware(&fw_entry, filename, ar->dev);
647 if (ret)
648 return ret;
649
650 *fw_len = fw_entry->size;
651 *fw = kmemdup(fw_entry->data, fw_entry->size, GFP_KERNEL);
652
653 if (*fw == NULL)
654 ret = -ENOMEM;
655
656 release_firmware(fw_entry);
657
658 return ret;
659}
660
Sam Leffler92ecbff2011-09-07 10:55:16 +0300661#ifdef CONFIG_OF
Sam Leffler92ecbff2011-09-07 10:55:16 +0300662/*
663 * Check the device tree for a board-id and use it to construct
664 * the pathname to the firmware file. Used (for now) to find a
665 * fallback to the "bdata.bin" file--typically a symlink to the
666 * appropriate board-specific file.
667 */
668static bool check_device_tree(struct ath6kl *ar)
669{
670 static const char *board_id_prop = "atheros,board-id";
671 struct device_node *node;
672 char board_filename[64];
673 const char *board_id;
674 int ret;
675
676 for_each_compatible_node(node, NULL, "atheros,ath6kl") {
677 board_id = of_get_property(node, board_id_prop, NULL);
678 if (board_id == NULL) {
679 ath6kl_warn("No \"%s\" property on %s node.\n",
680 board_id_prop, node->name);
681 continue;
682 }
683 snprintf(board_filename, sizeof(board_filename),
Kalle Valoc0038972011-12-16 20:53:31 +0200684 "%s/bdata.%s.bin", ar->hw.fw.dir, board_id);
Sam Leffler92ecbff2011-09-07 10:55:16 +0300685
686 ret = ath6kl_get_fw(ar, board_filename, &ar->fw_board,
687 &ar->fw_board_len);
688 if (ret) {
689 ath6kl_err("Failed to get DT board file %s: %d\n",
690 board_filename, ret);
691 continue;
692 }
693 return true;
694 }
695 return false;
696}
697#else
698static bool check_device_tree(struct ath6kl *ar)
699{
700 return false;
701}
702#endif /* CONFIG_OF */
703
Kalle Valobdcd8172011-07-18 00:22:30 +0300704static int ath6kl_fetch_board_file(struct ath6kl *ar)
705{
706 const char *filename;
707 int ret;
708
Kalle Valo772c31e2011-09-07 10:55:16 +0300709 if (ar->fw_board != NULL)
710 return 0;
711
Kalle Valod1a94212011-11-14 19:31:23 +0200712 if (WARN_ON(ar->hw.fw_board == NULL))
713 return -EINVAL;
714
715 filename = ar->hw.fw_board;
Kalle Valobdcd8172011-07-18 00:22:30 +0300716
717 ret = ath6kl_get_fw(ar, filename, &ar->fw_board,
718 &ar->fw_board_len);
719 if (ret == 0) {
720 /* managed to get proper board file */
721 return 0;
722 }
723
Sam Leffler92ecbff2011-09-07 10:55:16 +0300724 if (check_device_tree(ar)) {
725 /* got board file from device tree */
726 return 0;
727 }
728
Kalle Valobdcd8172011-07-18 00:22:30 +0300729 /* there was no proper board file, try to use default instead */
730 ath6kl_warn("Failed to get board file %s (%d), trying to find default board file.\n",
731 filename, ret);
732
Kalle Valod1a94212011-11-14 19:31:23 +0200733 filename = ar->hw.fw_default_board;
Kalle Valobdcd8172011-07-18 00:22:30 +0300734
735 ret = ath6kl_get_fw(ar, filename, &ar->fw_board,
736 &ar->fw_board_len);
737 if (ret) {
738 ath6kl_err("Failed to get default board file %s: %d\n",
739 filename, ret);
740 return ret;
741 }
742
743 ath6kl_warn("WARNING! No proper board file was not found, instead using a default board file.\n");
744 ath6kl_warn("Most likely your hardware won't work as specified. Install correct board file!\n");
745
746 return 0;
747}
748
Kalle Valo772c31e2011-09-07 10:55:16 +0300749static int ath6kl_fetch_otp_file(struct ath6kl *ar)
750{
Kalle Valoc0038972011-12-16 20:53:31 +0200751 char filename[100];
Kalle Valo772c31e2011-09-07 10:55:16 +0300752 int ret;
753
754 if (ar->fw_otp != NULL)
755 return 0;
756
Kalle Valoc0038972011-12-16 20:53:31 +0200757 if (ar->hw.fw.otp == NULL) {
Kalle Valod1a94212011-11-14 19:31:23 +0200758 ath6kl_dbg(ATH6KL_DBG_BOOT,
759 "no OTP file configured for this hw\n");
Kalle Valo772c31e2011-09-07 10:55:16 +0300760 return 0;
Kalle Valo772c31e2011-09-07 10:55:16 +0300761 }
762
Kalle Valoc0038972011-12-16 20:53:31 +0200763 snprintf(filename, sizeof(filename), "%s/%s",
764 ar->hw.fw.dir, ar->hw.fw.otp);
Kalle Valod1a94212011-11-14 19:31:23 +0200765
Kalle Valo772c31e2011-09-07 10:55:16 +0300766 ret = ath6kl_get_fw(ar, filename, &ar->fw_otp,
767 &ar->fw_otp_len);
768 if (ret) {
769 ath6kl_err("Failed to get OTP file %s: %d\n",
770 filename, ret);
771 return ret;
772 }
773
774 return 0;
775}
776
Kalle Valo5f1127f2012-01-24 13:50:16 +0200777static int ath6kl_fetch_testmode_file(struct ath6kl *ar)
778{
779 char filename[100];
780 int ret;
781
782 if (ar->testmode == 0)
783 return 0;
784
785 ath6kl_dbg(ATH6KL_DBG_BOOT, "testmode %d\n", ar->testmode);
786
787 if (ar->testmode == 2) {
788 if (ar->hw.fw.utf == NULL) {
789 ath6kl_warn("testmode 2 not supported\n");
790 return -EOPNOTSUPP;
791 }
792
793 snprintf(filename, sizeof(filename), "%s/%s",
794 ar->hw.fw.dir, ar->hw.fw.utf);
795 } else {
796 if (ar->hw.fw.tcmd == NULL) {
797 ath6kl_warn("testmode 1 not supported\n");
798 return -EOPNOTSUPP;
799 }
800
801 snprintf(filename, sizeof(filename), "%s/%s",
802 ar->hw.fw.dir, ar->hw.fw.tcmd);
803 }
804
805 set_bit(TESTMODE, &ar->flag);
806
807 ret = ath6kl_get_fw(ar, filename, &ar->fw, &ar->fw_len);
808 if (ret) {
809 ath6kl_err("Failed to get testmode %d firmware file %s: %d\n",
810 ar->testmode, filename, ret);
811 return ret;
812 }
813
814 return 0;
815}
816
Kalle Valo772c31e2011-09-07 10:55:16 +0300817static int ath6kl_fetch_fw_file(struct ath6kl *ar)
818{
Kalle Valoc0038972011-12-16 20:53:31 +0200819 char filename[100];
Kalle Valo772c31e2011-09-07 10:55:16 +0300820 int ret;
821
822 if (ar->fw != NULL)
823 return 0;
824
Kalle Valoc0038972011-12-16 20:53:31 +0200825 /* FIXME: remove WARN_ON() as we won't support FW API 1 for long */
826 if (WARN_ON(ar->hw.fw.fw == NULL))
Kalle Valod1a94212011-11-14 19:31:23 +0200827 return -EINVAL;
828
Kalle Valoc0038972011-12-16 20:53:31 +0200829 snprintf(filename, sizeof(filename), "%s/%s",
830 ar->hw.fw.dir, ar->hw.fw.fw);
Kalle Valo772c31e2011-09-07 10:55:16 +0300831
Kalle Valo772c31e2011-09-07 10:55:16 +0300832 ret = ath6kl_get_fw(ar, filename, &ar->fw, &ar->fw_len);
833 if (ret) {
834 ath6kl_err("Failed to get firmware file %s: %d\n",
835 filename, ret);
836 return ret;
837 }
838
839 return 0;
840}
841
842static int ath6kl_fetch_patch_file(struct ath6kl *ar)
843{
Kalle Valoc0038972011-12-16 20:53:31 +0200844 char filename[100];
Kalle Valo772c31e2011-09-07 10:55:16 +0300845 int ret;
846
Kalle Valod1a94212011-11-14 19:31:23 +0200847 if (ar->fw_patch != NULL)
Kalle Valo772c31e2011-09-07 10:55:16 +0300848 return 0;
Kalle Valo772c31e2011-09-07 10:55:16 +0300849
Kalle Valoc0038972011-12-16 20:53:31 +0200850 if (ar->hw.fw.patch == NULL)
Kalle Valod1a94212011-11-14 19:31:23 +0200851 return 0;
852
Kalle Valoc0038972011-12-16 20:53:31 +0200853 snprintf(filename, sizeof(filename), "%s/%s",
854 ar->hw.fw.dir, ar->hw.fw.patch);
Kalle Valod1a94212011-11-14 19:31:23 +0200855
856 ret = ath6kl_get_fw(ar, filename, &ar->fw_patch,
857 &ar->fw_patch_len);
858 if (ret) {
859 ath6kl_err("Failed to get patch file %s: %d\n",
860 filename, ret);
861 return ret;
Kalle Valo772c31e2011-09-07 10:55:16 +0300862 }
863
864 return 0;
865}
866
Alex Yangcd23c1c2012-01-17 15:32:29 +0200867static int ath6kl_fetch_testscript_file(struct ath6kl *ar)
868{
869 char filename[100];
870 int ret;
871
Kalle Valo5f1127f2012-01-24 13:50:16 +0200872 if (ar->testmode != 2)
Alex Yangcd23c1c2012-01-17 15:32:29 +0200873 return 0;
874
875 if (ar->fw_testscript != NULL)
876 return 0;
877
878 if (ar->hw.fw.testscript == NULL)
879 return 0;
880
881 snprintf(filename, sizeof(filename), "%s/%s",
Kalle Valo96f1fad2012-03-07 20:03:57 +0200882 ar->hw.fw.dir, ar->hw.fw.testscript);
Alex Yangcd23c1c2012-01-17 15:32:29 +0200883
884 ret = ath6kl_get_fw(ar, filename, &ar->fw_testscript,
885 &ar->fw_testscript_len);
886 if (ret) {
887 ath6kl_err("Failed to get testscript file %s: %d\n",
Kalle Valo96f1fad2012-03-07 20:03:57 +0200888 filename, ret);
Alex Yangcd23c1c2012-01-17 15:32:29 +0200889 return ret;
890 }
891
892 return 0;
893}
894
Kalle Valo50d41232011-09-07 10:55:17 +0300895static int ath6kl_fetch_fw_api1(struct ath6kl *ar)
Kalle Valo772c31e2011-09-07 10:55:16 +0300896{
897 int ret;
898
Kalle Valo772c31e2011-09-07 10:55:16 +0300899 ret = ath6kl_fetch_otp_file(ar);
900 if (ret)
901 return ret;
902
903 ret = ath6kl_fetch_fw_file(ar);
904 if (ret)
905 return ret;
906
907 ret = ath6kl_fetch_patch_file(ar);
908 if (ret)
909 return ret;
910
Alex Yangcd23c1c2012-01-17 15:32:29 +0200911 ret = ath6kl_fetch_testscript_file(ar);
912 if (ret)
913 return ret;
914
Kalle Valo772c31e2011-09-07 10:55:16 +0300915 return 0;
916}
Kalle Valobdcd8172011-07-18 00:22:30 +0300917
Kalle Valo65a8b4c2011-12-16 20:53:41 +0200918static int ath6kl_fetch_fw_apin(struct ath6kl *ar, const char *name)
Kalle Valo50d41232011-09-07 10:55:17 +0300919{
920 size_t magic_len, len, ie_len;
921 const struct firmware *fw;
922 struct ath6kl_fw_ie *hdr;
Kalle Valoc0038972011-12-16 20:53:31 +0200923 char filename[100];
Kalle Valo50d41232011-09-07 10:55:17 +0300924 const u8 *data;
Kalle Valo97e04962011-09-12 13:47:34 +0300925 int ret, ie_id, i, index, bit;
Kalle Valo8a137482011-09-07 10:55:17 +0300926 __le32 *val;
Kalle Valo50d41232011-09-07 10:55:17 +0300927
Kalle Valo65a8b4c2011-12-16 20:53:41 +0200928 snprintf(filename, sizeof(filename), "%s/%s", ar->hw.fw.dir, name);
Kalle Valo50d41232011-09-07 10:55:17 +0300929
930 ret = request_firmware(&fw, filename, ar->dev);
931 if (ret)
932 return ret;
933
934 data = fw->data;
935 len = fw->size;
936
937 /* magic also includes the null byte, check that as well */
938 magic_len = strlen(ATH6KL_FIRMWARE_MAGIC) + 1;
939
940 if (len < magic_len) {
941 ret = -EINVAL;
942 goto out;
943 }
944
945 if (memcmp(data, ATH6KL_FIRMWARE_MAGIC, magic_len) != 0) {
946 ret = -EINVAL;
947 goto out;
948 }
949
950 len -= magic_len;
951 data += magic_len;
952
953 /* loop elements */
954 while (len > sizeof(struct ath6kl_fw_ie)) {
955 /* hdr is unaligned! */
956 hdr = (struct ath6kl_fw_ie *) data;
957
958 ie_id = le32_to_cpup(&hdr->id);
959 ie_len = le32_to_cpup(&hdr->len);
960
961 len -= sizeof(*hdr);
962 data += sizeof(*hdr);
963
964 if (len < ie_len) {
965 ret = -EINVAL;
966 goto out;
967 }
968
969 switch (ie_id) {
Naveen Singhb5b6f6a2012-06-07 00:44:02 -0700970 case ATH6KL_FW_IE_FW_VERSION:
971 strlcpy(ar->wiphy->fw_version, data,
972 sizeof(ar->wiphy->fw_version));
973
974 ath6kl_dbg(ATH6KL_DBG_BOOT,
975 "found fw version %s\n",
976 ar->wiphy->fw_version);
977 break;
Kalle Valo50d41232011-09-07 10:55:17 +0300978 case ATH6KL_FW_IE_OTP_IMAGE:
Kalle Valoef548622011-10-01 09:43:09 +0300979 ath6kl_dbg(ATH6KL_DBG_BOOT, "found otp image ie (%zd B)\n",
Kalle Valo96f1fad2012-03-07 20:03:57 +0200980 ie_len);
Kalle Valo6bc36432011-09-27 14:31:11 +0300981
Kalle Valo50d41232011-09-07 10:55:17 +0300982 ar->fw_otp = kmemdup(data, ie_len, GFP_KERNEL);
983
984 if (ar->fw_otp == NULL) {
985 ret = -ENOMEM;
986 goto out;
987 }
988
989 ar->fw_otp_len = ie_len;
990 break;
991 case ATH6KL_FW_IE_FW_IMAGE:
Kalle Valoef548622011-10-01 09:43:09 +0300992 ath6kl_dbg(ATH6KL_DBG_BOOT, "found fw image ie (%zd B)\n",
Kalle Valo96f1fad2012-03-07 20:03:57 +0200993 ie_len);
Kalle Valo6bc36432011-09-27 14:31:11 +0300994
Kalle Valo5f1127f2012-01-24 13:50:16 +0200995 /* in testmode we already might have a fw file */
996 if (ar->fw != NULL)
997 break;
998
Vivek Natarajan84377542012-03-28 19:21:25 +0530999 ar->fw = vmalloc(ie_len);
Kalle Valo50d41232011-09-07 10:55:17 +03001000
1001 if (ar->fw == NULL) {
1002 ret = -ENOMEM;
1003 goto out;
1004 }
1005
Vivek Natarajan84377542012-03-28 19:21:25 +05301006 memcpy(ar->fw, data, ie_len);
Kalle Valo50d41232011-09-07 10:55:17 +03001007 ar->fw_len = ie_len;
1008 break;
1009 case ATH6KL_FW_IE_PATCH_IMAGE:
Kalle Valoef548622011-10-01 09:43:09 +03001010 ath6kl_dbg(ATH6KL_DBG_BOOT, "found patch image ie (%zd B)\n",
Kalle Valo96f1fad2012-03-07 20:03:57 +02001011 ie_len);
Kalle Valo6bc36432011-09-27 14:31:11 +03001012
Kalle Valo50d41232011-09-07 10:55:17 +03001013 ar->fw_patch = kmemdup(data, ie_len, GFP_KERNEL);
1014
1015 if (ar->fw_patch == NULL) {
1016 ret = -ENOMEM;
1017 goto out;
1018 }
1019
1020 ar->fw_patch_len = ie_len;
1021 break;
Kalle Valo8a137482011-09-07 10:55:17 +03001022 case ATH6KL_FW_IE_RESERVED_RAM_SIZE:
1023 val = (__le32 *) data;
1024 ar->hw.reserved_ram_size = le32_to_cpup(val);
Kalle Valo6bc36432011-09-27 14:31:11 +03001025
1026 ath6kl_dbg(ATH6KL_DBG_BOOT,
1027 "found reserved ram size ie 0x%d\n",
1028 ar->hw.reserved_ram_size);
Kalle Valo8a137482011-09-07 10:55:17 +03001029 break;
Kalle Valo97e04962011-09-12 13:47:34 +03001030 case ATH6KL_FW_IE_CAPABILITIES:
Kalle Valo6bc36432011-09-27 14:31:11 +03001031 ath6kl_dbg(ATH6KL_DBG_BOOT,
Kalle Valoef548622011-10-01 09:43:09 +03001032 "found firmware capabilities ie (%zd B)\n",
Kalle Valo6bc36432011-09-27 14:31:11 +03001033 ie_len);
1034
Kalle Valo97e04962011-09-12 13:47:34 +03001035 for (i = 0; i < ATH6KL_FW_CAPABILITY_MAX; i++) {
Kalle Valo277d90f2011-12-13 14:51:58 +02001036 index = i / 8;
Kalle Valo97e04962011-09-12 13:47:34 +03001037 bit = i % 8;
1038
Thomas Pedersenc85251f2012-06-11 13:36:12 -07001039 if (index == ie_len)
1040 break;
1041
Kalle Valo97e04962011-09-12 13:47:34 +03001042 if (data[index] & (1 << bit))
1043 __set_bit(i, ar->fw_capabilities);
1044 }
Kalle Valo6bc36432011-09-27 14:31:11 +03001045
1046 ath6kl_dbg_dump(ATH6KL_DBG_BOOT, "capabilities", "",
1047 ar->fw_capabilities,
1048 sizeof(ar->fw_capabilities));
Kalle Valo97e04962011-09-12 13:47:34 +03001049 break;
Kalle Valo1b4304d2011-09-27 11:05:26 +03001050 case ATH6KL_FW_IE_PATCH_ADDR:
1051 if (ie_len != sizeof(*val))
1052 break;
1053
1054 val = (__le32 *) data;
1055 ar->hw.dataset_patch_addr = le32_to_cpup(val);
Kalle Valo6bc36432011-09-27 14:31:11 +03001056
1057 ath6kl_dbg(ATH6KL_DBG_BOOT,
Kalle Valo03ef0252011-11-14 19:30:47 +02001058 "found patch address ie 0x%x\n",
Kalle Valo6bc36432011-09-27 14:31:11 +03001059 ar->hw.dataset_patch_addr);
Kalle Valo1b4304d2011-09-27 11:05:26 +03001060 break;
Kalle Valo03ef0252011-11-14 19:30:47 +02001061 case ATH6KL_FW_IE_BOARD_ADDR:
1062 if (ie_len != sizeof(*val))
1063 break;
1064
1065 val = (__le32 *) data;
1066 ar->hw.board_addr = le32_to_cpup(val);
1067
1068 ath6kl_dbg(ATH6KL_DBG_BOOT,
1069 "found board address ie 0x%x\n",
1070 ar->hw.board_addr);
1071 break;
Kalle Valo368b1b02011-11-14 19:31:38 +02001072 case ATH6KL_FW_IE_VIF_MAX:
1073 if (ie_len != sizeof(*val))
1074 break;
1075
1076 val = (__le32 *) data;
1077 ar->vif_max = min_t(unsigned int, le32_to_cpup(val),
1078 ATH6KL_VIF_MAX);
1079
Vasanthakumar Thiagarajanf1433792011-11-18 10:05:27 +05301080 if (ar->vif_max > 1 && !ar->p2p)
1081 ar->max_norm_iface = 2;
1082
Kalle Valo368b1b02011-11-14 19:31:38 +02001083 ath6kl_dbg(ATH6KL_DBG_BOOT,
1084 "found vif max ie %d\n", ar->vif_max);
1085 break;
Kalle Valo50d41232011-09-07 10:55:17 +03001086 default:
Kalle Valo6bc36432011-09-27 14:31:11 +03001087 ath6kl_dbg(ATH6KL_DBG_BOOT, "Unknown fw ie: %u\n",
Kalle Valo50d41232011-09-07 10:55:17 +03001088 le32_to_cpup(&hdr->id));
1089 break;
1090 }
1091
1092 len -= ie_len;
1093 data += ie_len;
1094 };
1095
1096 ret = 0;
1097out:
1098 release_firmware(fw);
1099
1100 return ret;
1101}
1102
Kalle Valo45eaa782012-01-17 20:09:05 +02001103int ath6kl_init_fetch_firmwares(struct ath6kl *ar)
Kalle Valo50d41232011-09-07 10:55:17 +03001104{
1105 int ret;
1106
1107 ret = ath6kl_fetch_board_file(ar);
1108 if (ret)
1109 return ret;
1110
Kalle Valo5f1127f2012-01-24 13:50:16 +02001111 ret = ath6kl_fetch_testmode_file(ar);
1112 if (ret)
1113 return ret;
1114
Thomas Pedersenb1f47e32012-08-15 16:51:24 -07001115 ret = ath6kl_fetch_fw_apin(ar, ATH6KL_FW_API4_FILE);
1116 if (ret == 0) {
1117 ar->fw_api = 4;
1118 goto out;
1119 }
1120
Kalle Valo65a8b4c2011-12-16 20:53:41 +02001121 ret = ath6kl_fetch_fw_apin(ar, ATH6KL_FW_API3_FILE);
Kalle Valo6bc36432011-09-27 14:31:11 +03001122 if (ret == 0) {
Kalle Valo65a8b4c2011-12-16 20:53:41 +02001123 ar->fw_api = 3;
1124 goto out;
1125 }
1126
1127 ret = ath6kl_fetch_fw_apin(ar, ATH6KL_FW_API2_FILE);
1128 if (ret == 0) {
1129 ar->fw_api = 2;
1130 goto out;
Kalle Valo6bc36432011-09-27 14:31:11 +03001131 }
Kalle Valo50d41232011-09-07 10:55:17 +03001132
1133 ret = ath6kl_fetch_fw_api1(ar);
1134 if (ret)
1135 return ret;
1136
Kalle Valo65a8b4c2011-12-16 20:53:41 +02001137 ar->fw_api = 1;
1138
1139out:
1140 ath6kl_dbg(ATH6KL_DBG_BOOT, "using fw api %d\n", ar->fw_api);
Kalle Valo6bc36432011-09-27 14:31:11 +03001141
Kalle Valo50d41232011-09-07 10:55:17 +03001142 return 0;
1143}
1144
Kalle Valobdcd8172011-07-18 00:22:30 +03001145static int ath6kl_upload_board_file(struct ath6kl *ar)
1146{
1147 u32 board_address, board_ext_address, param;
Kevin Fang31024d92011-07-11 17:14:13 +08001148 u32 board_data_size, board_ext_data_size;
Kalle Valobdcd8172011-07-18 00:22:30 +03001149 int ret;
1150
Kalle Valo772c31e2011-09-07 10:55:16 +03001151 if (WARN_ON(ar->fw_board == NULL))
1152 return -ENOENT;
Kalle Valobdcd8172011-07-18 00:22:30 +03001153
Kevin Fang31024d92011-07-11 17:14:13 +08001154 /*
1155 * Determine where in Target RAM to write Board Data.
1156 * For AR6004, host determine Target RAM address for
1157 * writing board data.
1158 */
Kalle Valo0d4d72b2011-11-14 19:30:39 +02001159 if (ar->hw.board_addr != 0) {
Kalle Valob0fc7c12012-03-12 13:22:54 +02001160 board_address = ar->hw.board_addr;
Kalle Valo24fc32b2012-03-07 20:03:58 +02001161 ath6kl_bmi_write_hi32(ar, hi_board_data,
Kalle Valob0fc7c12012-03-12 13:22:54 +02001162 board_address);
Kevin Fang31024d92011-07-11 17:14:13 +08001163 } else {
Frederic Danis1c3d95e2014-06-02 21:19:46 +03001164 ret = ath6kl_bmi_read_hi32(ar, hi_board_data, &board_address);
1165 if (ret) {
1166 ath6kl_err("Failed to get board file target address.\n");
1167 return ret;
1168 }
Kevin Fang31024d92011-07-11 17:14:13 +08001169 }
1170
Kalle Valobdcd8172011-07-18 00:22:30 +03001171 /* determine where in target ram to write extended board data */
Frederic Danis1c3d95e2014-06-02 21:19:46 +03001172 ret = ath6kl_bmi_read_hi32(ar, hi_board_ext_data, &board_ext_address);
1173 if (ret) {
1174 ath6kl_err("Failed to get extended board file target address.\n");
1175 return ret;
1176 }
Kalle Valobdcd8172011-07-18 00:22:30 +03001177
Kalle Valo50e27402011-11-11 12:18:06 +02001178 if (ar->target_type == TARGET_TYPE_AR6003 &&
1179 board_ext_address == 0) {
Kalle Valobdcd8172011-07-18 00:22:30 +03001180 ath6kl_err("Failed to get board file target address.\n");
1181 return -EINVAL;
1182 }
1183
Kevin Fang31024d92011-07-11 17:14:13 +08001184 switch (ar->target_type) {
1185 case TARGET_TYPE_AR6003:
1186 board_data_size = AR6003_BOARD_DATA_SZ;
1187 board_ext_data_size = AR6003_BOARD_EXT_DATA_SZ;
Prasanna Kumarfb1ac2e2012-02-07 14:58:54 -08001188 if (ar->fw_board_len > (board_data_size + board_ext_data_size))
1189 board_ext_data_size = AR6003_BOARD_EXT_DATA_SZ_V2;
Kevin Fang31024d92011-07-11 17:14:13 +08001190 break;
1191 case TARGET_TYPE_AR6004:
1192 board_data_size = AR6004_BOARD_DATA_SZ;
1193 board_ext_data_size = AR6004_BOARD_EXT_DATA_SZ;
1194 break;
1195 default:
1196 WARN_ON(1);
1197 return -EINVAL;
1198 break;
1199 }
1200
Kalle Valo50e27402011-11-11 12:18:06 +02001201 if (board_ext_address &&
1202 ar->fw_board_len == (board_data_size + board_ext_data_size)) {
Kalle Valobdcd8172011-07-18 00:22:30 +03001203 /* write extended board data */
Kalle Valo6bc36432011-09-27 14:31:11 +03001204 ath6kl_dbg(ATH6KL_DBG_BOOT,
1205 "writing extended board data to 0x%x (%d B)\n",
1206 board_ext_address, board_ext_data_size);
1207
Kalle Valobdcd8172011-07-18 00:22:30 +03001208 ret = ath6kl_bmi_write(ar, board_ext_address,
Kevin Fang31024d92011-07-11 17:14:13 +08001209 ar->fw_board + board_data_size,
1210 board_ext_data_size);
Kalle Valobdcd8172011-07-18 00:22:30 +03001211 if (ret) {
1212 ath6kl_err("Failed to write extended board data: %d\n",
1213 ret);
1214 return ret;
1215 }
1216
1217 /* record that extended board data is initialized */
Kevin Fang31024d92011-07-11 17:14:13 +08001218 param = (board_ext_data_size << 16) | 1;
1219
Kalle Valo24fc32b2012-03-07 20:03:58 +02001220 ath6kl_bmi_write_hi32(ar, hi_board_ext_data_config, param);
Kalle Valobdcd8172011-07-18 00:22:30 +03001221 }
1222
Kevin Fang31024d92011-07-11 17:14:13 +08001223 if (ar->fw_board_len < board_data_size) {
Kalle Valobdcd8172011-07-18 00:22:30 +03001224 ath6kl_err("Too small board file: %zu\n", ar->fw_board_len);
1225 ret = -EINVAL;
1226 return ret;
1227 }
1228
Kalle Valo6bc36432011-09-27 14:31:11 +03001229 ath6kl_dbg(ATH6KL_DBG_BOOT, "writing board file to 0x%x (%d B)\n",
1230 board_address, board_data_size);
1231
Kalle Valobdcd8172011-07-18 00:22:30 +03001232 ret = ath6kl_bmi_write(ar, board_address, ar->fw_board,
Kevin Fang31024d92011-07-11 17:14:13 +08001233 board_data_size);
Kalle Valobdcd8172011-07-18 00:22:30 +03001234
1235 if (ret) {
1236 ath6kl_err("Board file bmi write failed: %d\n", ret);
1237 return ret;
1238 }
1239
1240 /* record the fact that Board Data IS initialized */
Kalle Valo24fc32b2012-03-07 20:03:58 +02001241 ath6kl_bmi_write_hi32(ar, hi_board_data_initialized, 1);
Kalle Valobdcd8172011-07-18 00:22:30 +03001242
1243 return ret;
1244}
1245
1246static int ath6kl_upload_otp(struct ath6kl *ar)
1247{
Kalle Valobdcd8172011-07-18 00:22:30 +03001248 u32 address, param;
Kalle Valobef26a72011-10-12 09:58:28 +03001249 bool from_hw = false;
Kalle Valobdcd8172011-07-18 00:22:30 +03001250 int ret;
1251
Kalle Valo50e27402011-11-11 12:18:06 +02001252 if (ar->fw_otp == NULL)
1253 return 0;
Kalle Valobdcd8172011-07-18 00:22:30 +03001254
Kalle Valoa01ac412011-09-07 10:55:17 +03001255 address = ar->hw.app_load_addr;
Kalle Valobdcd8172011-07-18 00:22:30 +03001256
Kalle Valoef548622011-10-01 09:43:09 +03001257 ath6kl_dbg(ATH6KL_DBG_BOOT, "writing otp to 0x%x (%zd B)\n", address,
Kalle Valo6bc36432011-09-27 14:31:11 +03001258 ar->fw_otp_len);
1259
Kalle Valobdcd8172011-07-18 00:22:30 +03001260 ret = ath6kl_bmi_fast_download(ar, address, ar->fw_otp,
1261 ar->fw_otp_len);
1262 if (ret) {
1263 ath6kl_err("Failed to upload OTP file: %d\n", ret);
1264 return ret;
1265 }
1266
Kalle Valo639d0b82011-09-12 12:48:09 +03001267 /* read firmware start address */
Kalle Valo80fb2682012-03-07 20:03:59 +02001268 ret = ath6kl_bmi_read_hi32(ar, hi_app_start, &address);
Kalle Valo639d0b82011-09-12 12:48:09 +03001269
1270 if (ret) {
1271 ath6kl_err("Failed to read hi_app_start: %d\n", ret);
1272 return ret;
1273 }
1274
Kalle Valobef26a72011-10-12 09:58:28 +03001275 if (ar->hw.app_start_override_addr == 0) {
1276 ar->hw.app_start_override_addr = address;
1277 from_hw = true;
1278 }
Kalle Valo639d0b82011-09-12 12:48:09 +03001279
Kalle Valobef26a72011-10-12 09:58:28 +03001280 ath6kl_dbg(ATH6KL_DBG_BOOT, "app_start_override_addr%s 0x%x\n",
1281 from_hw ? " (from hw)" : "",
Kalle Valo6bc36432011-09-27 14:31:11 +03001282 ar->hw.app_start_override_addr);
1283
Kalle Valobdcd8172011-07-18 00:22:30 +03001284 /* execute the OTP code */
Kalle Valobef26a72011-10-12 09:58:28 +03001285 ath6kl_dbg(ATH6KL_DBG_BOOT, "executing OTP at 0x%x\n",
1286 ar->hw.app_start_override_addr);
Kalle Valobdcd8172011-07-18 00:22:30 +03001287 param = 0;
Kalle Valobef26a72011-10-12 09:58:28 +03001288 ath6kl_bmi_execute(ar, ar->hw.app_start_override_addr, &param);
Kalle Valobdcd8172011-07-18 00:22:30 +03001289
1290 return ret;
1291}
1292
1293static int ath6kl_upload_firmware(struct ath6kl *ar)
1294{
Kalle Valobdcd8172011-07-18 00:22:30 +03001295 u32 address;
1296 int ret;
1297
Kalle Valo772c31e2011-09-07 10:55:16 +03001298 if (WARN_ON(ar->fw == NULL))
Kalle Valo50e27402011-11-11 12:18:06 +02001299 return 0;
Kalle Valobdcd8172011-07-18 00:22:30 +03001300
Kalle Valoa01ac412011-09-07 10:55:17 +03001301 address = ar->hw.app_load_addr;
Kalle Valobdcd8172011-07-18 00:22:30 +03001302
Kalle Valoef548622011-10-01 09:43:09 +03001303 ath6kl_dbg(ATH6KL_DBG_BOOT, "writing firmware to 0x%x (%zd B)\n",
Kalle Valo6bc36432011-09-27 14:31:11 +03001304 address, ar->fw_len);
1305
Kalle Valobdcd8172011-07-18 00:22:30 +03001306 ret = ath6kl_bmi_fast_download(ar, address, ar->fw, ar->fw_len);
1307
1308 if (ret) {
1309 ath6kl_err("Failed to write firmware: %d\n", ret);
1310 return ret;
1311 }
1312
Kevin Fang31024d92011-07-11 17:14:13 +08001313 /*
1314 * Set starting address for firmware
1315 * Don't need to setup app_start override addr on AR6004
1316 */
1317 if (ar->target_type != TARGET_TYPE_AR6004) {
Kalle Valoa01ac412011-09-07 10:55:17 +03001318 address = ar->hw.app_start_override_addr;
Kevin Fang31024d92011-07-11 17:14:13 +08001319 ath6kl_bmi_set_app_start(ar, address);
1320 }
Kalle Valobdcd8172011-07-18 00:22:30 +03001321 return ret;
1322}
1323
1324static int ath6kl_upload_patch(struct ath6kl *ar)
1325{
Kalle Valo24fc32b2012-03-07 20:03:58 +02001326 u32 address;
Kalle Valobdcd8172011-07-18 00:22:30 +03001327 int ret;
1328
Kalle Valo50e27402011-11-11 12:18:06 +02001329 if (ar->fw_patch == NULL)
1330 return 0;
Kalle Valobdcd8172011-07-18 00:22:30 +03001331
Kalle Valoa01ac412011-09-07 10:55:17 +03001332 address = ar->hw.dataset_patch_addr;
Kalle Valobdcd8172011-07-18 00:22:30 +03001333
Kalle Valoef548622011-10-01 09:43:09 +03001334 ath6kl_dbg(ATH6KL_DBG_BOOT, "writing patch to 0x%x (%zd B)\n",
Kalle Valo6bc36432011-09-27 14:31:11 +03001335 address, ar->fw_patch_len);
1336
Kalle Valobdcd8172011-07-18 00:22:30 +03001337 ret = ath6kl_bmi_write(ar, address, ar->fw_patch, ar->fw_patch_len);
1338 if (ret) {
1339 ath6kl_err("Failed to write patch file: %d\n", ret);
1340 return ret;
1341 }
1342
Kalle Valo24fc32b2012-03-07 20:03:58 +02001343 ath6kl_bmi_write_hi32(ar, hi_dset_list_head, address);
Kalle Valobdcd8172011-07-18 00:22:30 +03001344
1345 return 0;
1346}
1347
Alex Yangcd23c1c2012-01-17 15:32:29 +02001348static int ath6kl_upload_testscript(struct ath6kl *ar)
1349{
Kalle Valo24fc32b2012-03-07 20:03:58 +02001350 u32 address;
Alex Yangcd23c1c2012-01-17 15:32:29 +02001351 int ret;
1352
Kalle Valo5f1127f2012-01-24 13:50:16 +02001353 if (ar->testmode != 2)
Alex Yangcd23c1c2012-01-17 15:32:29 +02001354 return 0;
1355
1356 if (ar->fw_testscript == NULL)
1357 return 0;
1358
1359 address = ar->hw.testscript_addr;
1360
1361 ath6kl_dbg(ATH6KL_DBG_BOOT, "writing testscript to 0x%x (%zd B)\n",
Kalle Valo96f1fad2012-03-07 20:03:57 +02001362 address, ar->fw_testscript_len);
Alex Yangcd23c1c2012-01-17 15:32:29 +02001363
1364 ret = ath6kl_bmi_write(ar, address, ar->fw_testscript,
1365 ar->fw_testscript_len);
1366 if (ret) {
1367 ath6kl_err("Failed to write testscript file: %d\n", ret);
1368 return ret;
1369 }
1370
Kalle Valo24fc32b2012-03-07 20:03:58 +02001371 ath6kl_bmi_write_hi32(ar, hi_ota_testscript, address);
1372 ath6kl_bmi_write_hi32(ar, hi_end_ram_reserve_sz, 4096);
1373 ath6kl_bmi_write_hi32(ar, hi_test_apps_related, 1);
Alex Yangcd23c1c2012-01-17 15:32:29 +02001374
1375 return 0;
1376}
1377
Kalle Valobdcd8172011-07-18 00:22:30 +03001378static int ath6kl_init_upload(struct ath6kl *ar)
1379{
1380 u32 param, options, sleep, address;
1381 int status = 0;
1382
Kevin Fang31024d92011-07-11 17:14:13 +08001383 if (ar->target_type != TARGET_TYPE_AR6003 &&
Kalle Valo96f1fad2012-03-07 20:03:57 +02001384 ar->target_type != TARGET_TYPE_AR6004)
Kalle Valobdcd8172011-07-18 00:22:30 +03001385 return -EINVAL;
1386
1387 /* temporarily disable system sleep */
1388 address = MBOX_BASE_ADDRESS + LOCAL_SCRATCH_ADDRESS;
1389 status = ath6kl_bmi_reg_read(ar, address, &param);
1390 if (status)
1391 return status;
1392
1393 options = param;
1394
1395 param |= ATH6KL_OPTION_SLEEP_DISABLE;
1396 status = ath6kl_bmi_reg_write(ar, address, param);
1397 if (status)
1398 return status;
1399
1400 address = RTC_BASE_ADDRESS + SYSTEM_SLEEP_ADDRESS;
1401 status = ath6kl_bmi_reg_read(ar, address, &param);
1402 if (status)
1403 return status;
1404
1405 sleep = param;
1406
1407 param |= SM(SYSTEM_SLEEP_DISABLE, 1);
1408 status = ath6kl_bmi_reg_write(ar, address, param);
1409 if (status)
1410 return status;
1411
1412 ath6kl_dbg(ATH6KL_DBG_TRC, "old options: %d, old sleep: %d\n",
1413 options, sleep);
1414
1415 /* program analog PLL register */
Kevin Fang31024d92011-07-11 17:14:13 +08001416 /* no need to control 40/44MHz clock on AR6004 */
1417 if (ar->target_type != TARGET_TYPE_AR6004) {
1418 status = ath6kl_bmi_reg_write(ar, ATH6KL_ANALOG_PLL_REGISTER,
1419 0xF9104001);
Kalle Valobdcd8172011-07-18 00:22:30 +03001420
Kevin Fang31024d92011-07-11 17:14:13 +08001421 if (status)
1422 return status;
Kalle Valobdcd8172011-07-18 00:22:30 +03001423
Kevin Fang31024d92011-07-11 17:14:13 +08001424 /* Run at 80/88MHz by default */
1425 param = SM(CPU_CLOCK_STANDARD, 1);
1426
1427 address = RTC_BASE_ADDRESS + CPU_CLOCK_ADDRESS;
1428 status = ath6kl_bmi_reg_write(ar, address, param);
1429 if (status)
1430 return status;
1431 }
Kalle Valobdcd8172011-07-18 00:22:30 +03001432
1433 param = 0;
1434 address = RTC_BASE_ADDRESS + LPO_CAL_ADDRESS;
1435 param = SM(LPO_CAL_ENABLE, 1);
1436 status = ath6kl_bmi_reg_write(ar, address, param);
1437 if (status)
1438 return status;
1439
1440 /* WAR to avoid SDIO CRC err */
Mohammed Shafi Shajakhana2e1be32012-09-27 18:19:53 +05301441 if (ar->hw.flags & ATH6KL_HW_SDIO_CRC_ERROR_WAR) {
Kalle Valobdcd8172011-07-18 00:22:30 +03001442 ath6kl_err("temporary war to avoid sdio crc error\n");
1443
Vasanthakumar Thiagarajanfa338be2012-05-22 12:52:48 +05301444 param = 0x28;
1445 address = GPIO_BASE_ADDRESS + GPIO_PIN9_ADDRESS;
1446 status = ath6kl_bmi_reg_write(ar, address, param);
1447 if (status)
1448 return status;
1449
Kalle Valobdcd8172011-07-18 00:22:30 +03001450 param = 0x20;
1451
1452 address = GPIO_BASE_ADDRESS + GPIO_PIN10_ADDRESS;
1453 status = ath6kl_bmi_reg_write(ar, address, param);
1454 if (status)
1455 return status;
1456
1457 address = GPIO_BASE_ADDRESS + GPIO_PIN11_ADDRESS;
1458 status = ath6kl_bmi_reg_write(ar, address, param);
1459 if (status)
1460 return status;
1461
1462 address = GPIO_BASE_ADDRESS + GPIO_PIN12_ADDRESS;
1463 status = ath6kl_bmi_reg_write(ar, address, param);
1464 if (status)
1465 return status;
1466
1467 address = GPIO_BASE_ADDRESS + GPIO_PIN13_ADDRESS;
1468 status = ath6kl_bmi_reg_write(ar, address, param);
1469 if (status)
1470 return status;
1471 }
1472
1473 /* write EEPROM data to Target RAM */
1474 status = ath6kl_upload_board_file(ar);
1475 if (status)
1476 return status;
1477
1478 /* transfer One time Programmable data */
1479 status = ath6kl_upload_otp(ar);
1480 if (status)
1481 return status;
1482
1483 /* Download Target firmware */
1484 status = ath6kl_upload_firmware(ar);
1485 if (status)
1486 return status;
1487
1488 status = ath6kl_upload_patch(ar);
1489 if (status)
1490 return status;
1491
Alex Yangcd23c1c2012-01-17 15:32:29 +02001492 /* Download the test script */
1493 status = ath6kl_upload_testscript(ar);
1494 if (status)
1495 return status;
1496
Kalle Valobdcd8172011-07-18 00:22:30 +03001497 /* Restore system sleep */
1498 address = RTC_BASE_ADDRESS + SYSTEM_SLEEP_ADDRESS;
1499 status = ath6kl_bmi_reg_write(ar, address, sleep);
1500 if (status)
1501 return status;
1502
1503 address = MBOX_BASE_ADDRESS + LOCAL_SCRATCH_ADDRESS;
1504 param = options | 0x20;
1505 status = ath6kl_bmi_reg_write(ar, address, param);
1506 if (status)
1507 return status;
1508
Kalle Valobdcd8172011-07-18 00:22:30 +03001509 return status;
1510}
1511
Kalle Valo45eaa782012-01-17 20:09:05 +02001512int ath6kl_init_hw_params(struct ath6kl *ar)
Kalle Valoa01ac412011-09-07 10:55:17 +03001513{
Kalle Valo1b46dc042012-01-31 21:26:22 +02001514 const struct ath6kl_hw *uninitialized_var(hw);
Kalle Valo856f4b312011-11-14 19:30:29 +02001515 int i;
Kalle Valobef26a72011-10-12 09:58:28 +03001516
Kalle Valo856f4b312011-11-14 19:30:29 +02001517 for (i = 0; i < ARRAY_SIZE(hw_list); i++) {
1518 hw = &hw_list[i];
Kalle Valobef26a72011-10-12 09:58:28 +03001519
Kalle Valo856f4b312011-11-14 19:30:29 +02001520 if (hw->id == ar->version.target_ver)
1521 break;
1522 }
1523
1524 if (i == ARRAY_SIZE(hw_list)) {
Kalle Valoa01ac412011-09-07 10:55:17 +03001525 ath6kl_err("Unsupported hardware version: 0x%x\n",
1526 ar->version.target_ver);
1527 return -EINVAL;
1528 }
1529
Kalle Valo856f4b312011-11-14 19:30:29 +02001530 ar->hw = *hw;
1531
Kalle Valo6bc36432011-09-27 14:31:11 +03001532 ath6kl_dbg(ATH6KL_DBG_BOOT,
1533 "target_ver 0x%x target_type 0x%x dataset_patch 0x%x app_load_addr 0x%x\n",
1534 ar->version.target_ver, ar->target_type,
1535 ar->hw.dataset_patch_addr, ar->hw.app_load_addr);
1536 ath6kl_dbg(ATH6KL_DBG_BOOT,
1537 "app_start_override_addr 0x%x board_ext_data_addr 0x%x reserved_ram_size 0x%x",
1538 ar->hw.app_start_override_addr, ar->hw.board_ext_data_addr,
1539 ar->hw.reserved_ram_size);
Ryan Hsu39586bf2011-12-13 17:11:07 +08001540 ath6kl_dbg(ATH6KL_DBG_BOOT,
1541 "refclk_hz %d uarttx_pin %d",
1542 ar->hw.refclk_hz, ar->hw.uarttx_pin);
Kalle Valo6bc36432011-09-27 14:31:11 +03001543
Kalle Valoa01ac412011-09-07 10:55:17 +03001544 return 0;
1545}
1546
Kalle Valo293badf2011-11-14 19:30:54 +02001547static const char *ath6kl_init_get_hif_name(enum ath6kl_hif_type type)
1548{
1549 switch (type) {
1550 case ATH6KL_HIF_TYPE_SDIO:
1551 return "sdio";
1552 case ATH6KL_HIF_TYPE_USB:
1553 return "usb";
1554 }
1555
1556 return NULL;
1557}
1558
Kalle Valoe72c2742013-03-06 08:56:06 +02001559
1560static const struct fw_capa_str_map {
1561 int id;
1562 const char *name;
1563} fw_capa_map[] = {
1564 { ATH6KL_FW_CAPABILITY_HOST_P2P, "host-p2p" },
1565 { ATH6KL_FW_CAPABILITY_SCHED_SCAN, "sched-scan" },
1566 { ATH6KL_FW_CAPABILITY_STA_P2PDEV_DUPLEX, "sta-p2pdev-duplex" },
1567 { ATH6KL_FW_CAPABILITY_INACTIVITY_TIMEOUT, "inactivity-timeout" },
1568 { ATH6KL_FW_CAPABILITY_RSN_CAP_OVERRIDE, "rsn-cap-override" },
1569 { ATH6KL_FW_CAPABILITY_WOW_MULTICAST_FILTER, "wow-mc-filter" },
1570 { ATH6KL_FW_CAPABILITY_BMISS_ENHANCE, "bmiss-enhance" },
1571 { ATH6KL_FW_CAPABILITY_SCHED_SCAN_MATCH_LIST, "sscan-match-list" },
1572 { ATH6KL_FW_CAPABILITY_RSSI_SCAN_THOLD, "rssi-scan-thold" },
1573 { ATH6KL_FW_CAPABILITY_CUSTOM_MAC_ADDR, "custom-mac-addr" },
1574 { ATH6KL_FW_CAPABILITY_TX_ERR_NOTIFY, "tx-err-notify" },
1575 { ATH6KL_FW_CAPABILITY_REGDOMAIN, "regdomain" },
1576 { ATH6KL_FW_CAPABILITY_SCHED_SCAN_V2, "sched-scan-v2" },
1577 { ATH6KL_FW_CAPABILITY_HEART_BEAT_POLL, "hb-poll" },
1578};
1579
1580static const char *ath6kl_init_get_fw_capa_name(unsigned int id)
1581{
1582 int i;
1583
1584 for (i = 0; i < ARRAY_SIZE(fw_capa_map); i++) {
1585 if (fw_capa_map[i].id == id)
1586 return fw_capa_map[i].name;
1587 }
1588
1589 return "<unknown>";
1590}
1591
1592static void ath6kl_init_get_fwcaps(struct ath6kl *ar, char *buf, size_t buf_len)
1593{
1594 u8 *data = (u8 *) ar->fw_capabilities;
1595 size_t trunc_len, len = 0;
1596 int i, index, bit;
1597 char *trunc = "...";
1598
1599 for (i = 0; i < ATH6KL_FW_CAPABILITY_MAX; i++) {
1600 index = i / 8;
1601 bit = i % 8;
1602
1603 if (index >= sizeof(ar->fw_capabilities) * 4)
1604 break;
1605
1606 if (buf_len - len < 4) {
1607 ath6kl_warn("firmware capability buffer too small!\n");
1608
1609 /* add "..." to the end of string */
1610 trunc_len = strlen(trunc) + 1;
1611 strncpy(buf + buf_len - trunc_len, trunc, trunc_len);
1612
1613 return;
1614 }
1615
1616 if (data[index] & (1 << bit)) {
1617 len += scnprintf(buf + len, buf_len - len, "%s,",
1618 ath6kl_init_get_fw_capa_name(i));
1619 }
1620 }
1621
1622 /* overwrite the last comma */
1623 if (len > 0)
1624 len--;
1625
1626 buf[len] = '\0';
1627}
1628
Kalle Valoec1461d2013-03-09 12:01:35 +02001629static int ath6kl_init_hw_reset(struct ath6kl *ar)
1630{
1631 ath6kl_dbg(ATH6KL_DBG_BOOT, "cold resetting the device");
1632
1633 return ath6kl_diag_write32(ar, RESET_CONTROL_ADDRESS,
1634 cpu_to_le32(RESET_CONTROL_COLD_RST));
1635}
1636
Vasanthakumar Thiagarajanede615d2012-08-29 19:40:25 +05301637static int __ath6kl_init_hw_start(struct ath6kl *ar)
Kalle Valo20459ee2011-10-27 18:48:37 +03001638{
1639 long timeleft;
1640 int ret, i;
Kalle Valoe72c2742013-03-06 08:56:06 +02001641 char buf[200];
Kalle Valo20459ee2011-10-27 18:48:37 +03001642
Kalle Valo5fe4dff2011-10-30 21:16:15 +02001643 ath6kl_dbg(ATH6KL_DBG_BOOT, "hw start\n");
1644
Kalle Valo20459ee2011-10-27 18:48:37 +03001645 ret = ath6kl_hif_power_on(ar);
1646 if (ret)
1647 return ret;
1648
1649 ret = ath6kl_configure_target(ar);
1650 if (ret)
1651 goto err_power_off;
1652
1653 ret = ath6kl_init_upload(ar);
1654 if (ret)
1655 goto err_power_off;
1656
1657 /* Do we need to finish the BMI phase */
Mohammed Shafi Shajakhanbf978142013-02-22 20:20:21 +05301658 ret = ath6kl_bmi_done(ar);
1659 if (ret)
Kalle Valo20459ee2011-10-27 18:48:37 +03001660 goto err_power_off;
Kalle Valo20459ee2011-10-27 18:48:37 +03001661
1662 /*
1663 * The reason we have to wait for the target here is that the
1664 * driver layer has to init BMI in order to set the host block
1665 * size.
1666 */
Kalle Valo4e1609c2013-03-09 12:01:43 +02001667 ret = ath6kl_htc_wait_target(ar->htc_target);
Kalle Valo44af3442013-03-09 12:01:50 +02001668
1669 if (ret == -ETIMEDOUT) {
1670 /*
1671 * Most likely USB target is in odd state after reboot and
1672 * needs a reset. A cold reset makes the whole device
1673 * disappear from USB bus and initialisation starts from
1674 * beginning.
1675 */
1676 ath6kl_warn("htc wait target timed out, resetting device\n");
1677 ath6kl_init_hw_reset(ar);
1678 goto err_power_off;
1679 } else if (ret) {
Kalle Valo4e1609c2013-03-09 12:01:43 +02001680 ath6kl_err("htc wait target failed: %d\n", ret);
Kalle Valo20459ee2011-10-27 18:48:37 +03001681 goto err_power_off;
1682 }
1683
Kalle Valo4e1609c2013-03-09 12:01:43 +02001684 ret = ath6kl_init_service_ep(ar);
1685 if (ret) {
1686 ath6kl_err("Endpoint service initilisation failed: %d\n", ret);
Kalle Valo20459ee2011-10-27 18:48:37 +03001687 goto err_cleanup_scatter;
1688 }
1689
1690 /* setup credit distribution */
Kalle Valoe76ac2bf2012-03-25 17:15:27 +03001691 ath6kl_htc_credit_setup(ar->htc_target, &ar->credit_state_info);
Kalle Valo20459ee2011-10-27 18:48:37 +03001692
1693 /* start HTC */
1694 ret = ath6kl_htc_start(ar->htc_target);
1695 if (ret) {
1696 /* FIXME: call this */
1697 ath6kl_cookie_cleanup(ar);
1698 goto err_cleanup_scatter;
1699 }
1700
1701 /* Wait for Wmi event to be ready */
1702 timeleft = wait_event_interruptible_timeout(ar->event_wq,
1703 test_bit(WMI_READY,
1704 &ar->flag),
1705 WMI_TIMEOUT);
Raja Maniab1ef142013-03-19 09:48:35 +05301706 if (timeleft <= 0) {
1707 clear_bit(WMI_READY, &ar->flag);
1708 ath6kl_err("wmi is not ready or wait was interrupted: %ld\n",
1709 timeleft);
1710 ret = -EIO;
1711 goto err_htc_stop;
1712 }
Kalle Valo20459ee2011-10-27 18:48:37 +03001713
1714 ath6kl_dbg(ATH6KL_DBG_BOOT, "firmware booted\n");
1715
Kalle Valo293badf2011-11-14 19:30:54 +02001716 if (test_and_clear_bit(FIRST_BOOT, &ar->flag)) {
Kalle Valo65a8b4c2011-12-16 20:53:41 +02001717 ath6kl_info("%s %s fw %s api %d%s\n",
Kalle Valo293badf2011-11-14 19:30:54 +02001718 ar->hw.name,
1719 ath6kl_init_get_hif_name(ar->hif_type),
1720 ar->wiphy->fw_version,
Kalle Valo65a8b4c2011-12-16 20:53:41 +02001721 ar->fw_api,
Kalle Valo293badf2011-11-14 19:30:54 +02001722 test_bit(TESTMODE, &ar->flag) ? " testmode" : "");
Kalle Valoe72c2742013-03-06 08:56:06 +02001723 ath6kl_init_get_fwcaps(ar, buf, sizeof(buf));
1724 ath6kl_info("firmware supports: %s\n", buf);
Kalle Valo293badf2011-11-14 19:30:54 +02001725 }
1726
Kalle Valo20459ee2011-10-27 18:48:37 +03001727 if (ar->version.abi_ver != ATH6KL_ABI_VERSION) {
1728 ath6kl_err("abi version mismatch: host(0x%x), target(0x%x)\n",
1729 ATH6KL_ABI_VERSION, ar->version.abi_ver);
1730 ret = -EIO;
1731 goto err_htc_stop;
1732 }
1733
Kalle Valo20459ee2011-10-27 18:48:37 +03001734 ath6kl_dbg(ATH6KL_DBG_TRC, "%s: wmi is ready\n", __func__);
1735
1736 /* communicate the wmi protocol verision to the target */
1737 /* FIXME: return error */
1738 if ((ath6kl_set_host_app_area(ar)) != 0)
1739 ath6kl_err("unable to set the host app area\n");
1740
Kalle Valo71f96ee2011-11-14 19:31:30 +02001741 for (i = 0; i < ar->vif_max; i++) {
Kalle Valo20459ee2011-10-27 18:48:37 +03001742 ret = ath6kl_target_config_wlan_params(ar, i);
1743 if (ret)
1744 goto err_htc_stop;
1745 }
1746
1747 return 0;
1748
1749err_htc_stop:
1750 ath6kl_htc_stop(ar->htc_target);
1751err_cleanup_scatter:
1752 ath6kl_hif_cleanup_scatter(ar);
1753err_power_off:
1754 ath6kl_hif_power_off(ar);
1755
1756 return ret;
1757}
1758
Vasanthakumar Thiagarajanede615d2012-08-29 19:40:25 +05301759int ath6kl_init_hw_start(struct ath6kl *ar)
1760{
1761 int err;
1762
1763 err = __ath6kl_init_hw_start(ar);
1764 if (err)
1765 return err;
1766 ar->state = ATH6KL_STATE_ON;
1767 return 0;
1768}
1769
1770static int __ath6kl_init_hw_stop(struct ath6kl *ar)
Kalle Valo5fe4dff2011-10-30 21:16:15 +02001771{
1772 int ret;
1773
1774 ath6kl_dbg(ATH6KL_DBG_BOOT, "hw stop\n");
1775
1776 ath6kl_htc_stop(ar->htc_target);
1777
1778 ath6kl_hif_stop(ar);
1779
1780 ath6kl_bmi_reset(ar);
1781
1782 ret = ath6kl_hif_power_off(ar);
1783 if (ret)
1784 ath6kl_warn("failed to power off hif: %d\n", ret);
1785
Vasanthakumar Thiagarajanede615d2012-08-29 19:40:25 +05301786 return 0;
1787}
Kalle Valo76a9fbe2011-11-01 08:44:28 +02001788
Vasanthakumar Thiagarajanede615d2012-08-29 19:40:25 +05301789int ath6kl_init_hw_stop(struct ath6kl *ar)
1790{
1791 int err;
1792
1793 err = __ath6kl_init_hw_stop(ar);
1794 if (err)
1795 return err;
1796 ar->state = ATH6KL_STATE_OFF;
Kalle Valo5fe4dff2011-10-30 21:16:15 +02001797 return 0;
1798}
1799
Vasanthakumar Thiagarajan84caf802012-08-29 19:40:26 +05301800void ath6kl_init_hw_restart(struct ath6kl *ar)
1801{
Vasanthakumar Thiagarajan58109df2012-09-11 12:07:00 +05301802 clear_bit(WMI_READY, &ar->flag);
1803
Vasanthakumar Thiagarajan84caf802012-08-29 19:40:26 +05301804 ath6kl_cfg80211_stop_all(ar);
1805
Vasanthakumar Thiagarajan58109df2012-09-11 12:07:00 +05301806 if (__ath6kl_init_hw_stop(ar)) {
1807 ath6kl_dbg(ATH6KL_DBG_RECOVERY, "Failed to stop during fw error recovery\n");
Vasanthakumar Thiagarajan84caf802012-08-29 19:40:26 +05301808 return;
Vasanthakumar Thiagarajan58109df2012-09-11 12:07:00 +05301809 }
Vasanthakumar Thiagarajan84caf802012-08-29 19:40:26 +05301810
1811 if (__ath6kl_init_hw_start(ar)) {
1812 ath6kl_dbg(ATH6KL_DBG_RECOVERY, "Failed to restart during fw error recovery\n");
1813 return;
1814 }
Vasanthakumar Thiagarajan84caf802012-08-29 19:40:26 +05301815}
1816
Kalle Valobdcd8172011-07-18 00:22:30 +03001817void ath6kl_stop_txrx(struct ath6kl *ar)
1818{
Vasanthakumar Thiagarajan990bd912011-10-25 19:34:20 +05301819 struct ath6kl_vif *vif, *tmp_vif;
Vasanthakumar Thiagarajan1d2a4452012-01-21 15:22:53 +05301820 int i;
Kalle Valobdcd8172011-07-18 00:22:30 +03001821
1822 set_bit(DESTROY_IN_PROGRESS, &ar->flag);
1823
1824 if (down_interruptible(&ar->sem)) {
1825 ath6kl_err("down_interruptible failed\n");
1826 return;
1827 }
1828
Vasanthakumar Thiagarajan1d2a4452012-01-21 15:22:53 +05301829 for (i = 0; i < AP_MAX_NUM_STA; i++)
1830 aggr_reset_state(ar->sta_list[i].aggr_conn);
1831
Vasanthakumar Thiagarajan11f6e402011-11-01 16:38:50 +05301832 spin_lock_bh(&ar->list_lock);
Vasanthakumar Thiagarajan990bd912011-10-25 19:34:20 +05301833 list_for_each_entry_safe(vif, tmp_vif, &ar->vif_list, list) {
1834 list_del(&vif->list);
Vasanthakumar Thiagarajan11f6e402011-11-01 16:38:50 +05301835 spin_unlock_bh(&ar->list_lock);
Mohammed Shafi Shajakhan355b3a92012-11-16 18:23:36 +05301836 ath6kl_cfg80211_vif_stop(vif, test_bit(WMI_READY, &ar->flag));
Vasanthakumar Thiagarajan27929722011-10-25 19:34:21 +05301837 rtnl_lock();
Kalle Valoc25889e2012-01-17 20:08:27 +02001838 ath6kl_cfg80211_vif_cleanup(vif);
Vasanthakumar Thiagarajan27929722011-10-25 19:34:21 +05301839 rtnl_unlock();
Vasanthakumar Thiagarajan11f6e402011-11-01 16:38:50 +05301840 spin_lock_bh(&ar->list_lock);
Vasanthakumar Thiagarajan990bd912011-10-25 19:34:20 +05301841 }
Vasanthakumar Thiagarajan11f6e402011-11-01 16:38:50 +05301842 spin_unlock_bh(&ar->list_lock);
Kalle Valobdcd8172011-07-18 00:22:30 +03001843
Vasanthakumar Thiagarajan6db8fa52011-10-25 19:34:16 +05301844 clear_bit(WMI_READY, &ar->flag);
Kalle Valobdcd8172011-07-18 00:22:30 +03001845
Vasanthakumar Thiagarajanf32036e2013-06-20 12:47:20 +05301846 if (ar->fw_recovery.enable)
1847 del_timer_sync(&ar->fw_recovery.hb_timer);
1848
Vasanthakumar Thiagarajan6db8fa52011-10-25 19:34:16 +05301849 /*
1850 * After wmi_shudown all WMI events will be dropped. We
1851 * need to cleanup the buffers allocated in AP mode and
1852 * give disconnect notification to stack, which usually
1853 * happens in the disconnect_event. Simulate the disconnect
1854 * event by calling the function directly. Sometimes
1855 * disconnect_event will be received when the debug logs
1856 * are collected.
1857 */
1858 ath6kl_wmi_shutdown(ar->wmi);
Kalle Valobdcd8172011-07-18 00:22:30 +03001859
Vasanthakumar Thiagarajan6db8fa52011-10-25 19:34:16 +05301860 clear_bit(WMI_ENABLED, &ar->flag);
1861 if (ar->htc_target) {
1862 ath6kl_dbg(ATH6KL_DBG_TRC, "%s: shut down htc\n", __func__);
1863 ath6kl_htc_stop(ar->htc_target);
Kalle Valobdcd8172011-07-18 00:22:30 +03001864 }
1865
Vasanthakumar Thiagarajan6db8fa52011-10-25 19:34:16 +05301866 /*
1867 * Try to reset the device if we can. The driver may have been
1868 * configure NOT to reset the target during a debug session.
1869 */
Kalle Valoec1461d2013-03-09 12:01:35 +02001870 ath6kl_init_hw_reset(ar);
Kalle Valobdcd8172011-07-18 00:22:30 +03001871
Vasanthakumar Thiagarajane8ad9a02012-02-14 20:32:59 +05301872 up(&ar->sem);
Kalle Valobdcd8172011-07-18 00:22:30 +03001873}
Kalle Valod6a434d2012-01-17 20:09:36 +02001874EXPORT_SYMBOL(ath6kl_stop_txrx);