blob: 6e473fa4b13cae0df30a33fd9162729afaf76f6b [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,
Kalle Valoeba95bc2014-06-17 12:40:52 +030096 .flags = 0,
Kalle Valod1a94212011-11-14 19:31:23 +020097
Kalle Valoc0038972011-12-16 20:53:31 +020098 .fw = {
99 .dir = AR6004_HW_1_0_FW_DIR,
100 .fw = AR6004_HW_1_0_FIRMWARE_FILE,
Kalle Valoc0038972011-12-16 20:53:31 +0200101 },
102
Kalle Valod1a94212011-11-14 19:31:23 +0200103 .fw_board = AR6004_HW_1_0_BOARD_DATA_FILE,
104 .fw_default_board = AR6004_HW_1_0_DEFAULT_BOARD_DATA_FILE,
Kalle Valo856f4b312011-11-14 19:30:29 +0200105 },
106 {
Kalle Valo0d0192ba2011-11-14 19:31:07 +0200107 .id = AR6004_HW_1_1_VERSION,
Kalle Valo293badf2011-11-14 19:30:54 +0200108 .name = "ar6004 hw 1.1",
Kalle Valo856f4b312011-11-14 19:30:29 +0200109 .dataset_patch_addr = 0x57e884,
110 .app_load_addr = 0x1234,
111 .board_ext_data_addr = 0x437000,
112 .reserved_ram_size = 11264,
Kalle Valo0d4d72b2011-11-14 19:30:39 +0200113 .board_addr = 0x43d400,
Ryan Hsu39586bf2011-12-13 17:11:07 +0800114 .refclk_hz = 40000000,
115 .uarttx_pin = 11,
Kalle Valoeba95bc2014-06-17 12:40:52 +0300116 .flags = 0,
Kalle Valoc0038972011-12-16 20:53:31 +0200117 .fw = {
118 .dir = AR6004_HW_1_1_FW_DIR,
119 .fw = AR6004_HW_1_1_FIRMWARE_FILE,
Kalle Valoc0038972011-12-16 20:53:31 +0200120 },
121
Kalle Valod1a94212011-11-14 19:31:23 +0200122 .fw_board = AR6004_HW_1_1_BOARD_DATA_FILE,
123 .fw_default_board = AR6004_HW_1_1_DEFAULT_BOARD_DATA_FILE,
Kalle Valo856f4b312011-11-14 19:30:29 +0200124 },
Ray Chen6146ca62012-04-11 10:03:13 +0800125 {
126 .id = AR6004_HW_1_2_VERSION,
127 .name = "ar6004 hw 1.2",
128 .dataset_patch_addr = 0x436ecc,
129 .app_load_addr = 0x1234,
130 .board_ext_data_addr = 0x437000,
131 .reserved_ram_size = 9216,
132 .board_addr = 0x435c00,
133 .refclk_hz = 40000000,
134 .uarttx_pin = 11,
Kalle Valoeba95bc2014-06-17 12:40:52 +0300135 .flags = 0,
Ray Chen6146ca62012-04-11 10:03:13 +0800136
137 .fw = {
138 .dir = AR6004_HW_1_2_FW_DIR,
139 .fw = AR6004_HW_1_2_FIRMWARE_FILE,
140 },
141 .fw_board = AR6004_HW_1_2_BOARD_DATA_FILE,
142 .fw_default_board = AR6004_HW_1_2_DEFAULT_BOARD_DATA_FILE,
143 },
Bala Shanmugambf744f12012-07-17 12:01:55 +0530144 {
145 .id = AR6004_HW_1_3_VERSION,
146 .name = "ar6004 hw 1.3",
147 .dataset_patch_addr = 0x437860,
148 .app_load_addr = 0x1234,
149 .board_ext_data_addr = 0x437000,
150 .reserved_ram_size = 7168,
151 .board_addr = 0x436400,
Jessica Wu78803772014-06-17 12:41:16 +0300152 .refclk_hz = 0,
Bala Shanmugambf744f12012-07-17 12:01:55 +0530153 .uarttx_pin = 11,
Kalle Valoeba95bc2014-06-17 12:40:52 +0300154 .flags = 0,
Bala Shanmugambf744f12012-07-17 12:01:55 +0530155
156 .fw = {
157 .dir = AR6004_HW_1_3_FW_DIR,
158 .fw = AR6004_HW_1_3_FIRMWARE_FILE,
Jessica Wu78803772014-06-17 12:41:16 +0300159 .tcmd = AR6004_HW_1_3_TCMD_FIRMWARE_FILE,
160 .utf = AR6004_HW_1_3_UTF_FIRMWARE_FILE,
161 .testscript = AR6004_HW_1_3_TESTSCRIPT_FILE,
Bala Shanmugambf744f12012-07-17 12:01:55 +0530162 },
163
164 .fw_board = AR6004_HW_1_3_BOARD_DATA_FILE,
165 .fw_default_board = AR6004_HW_1_3_DEFAULT_BOARD_DATA_FILE,
166 },
Jessica Wu78803772014-06-17 12:41:16 +0300167 {
168 .id = AR6004_HW_3_0_VERSION,
169 .name = "ar6004 hw 3.0",
170 .dataset_patch_addr = 0,
171 .app_load_addr = 0x1234,
172 .board_ext_data_addr = 0,
173 .reserved_ram_size = 7168,
174 .board_addr = 0x436400,
175 .testscript_addr = 0,
176 .flags = 0,
177
178 .fw = {
179 .dir = AR6004_HW_3_0_FW_DIR,
180 .fw = AR6004_HW_3_0_FIRMWARE_FILE,
181 .tcmd = AR6004_HW_3_0_TCMD_FIRMWARE_FILE,
182 .utf = AR6004_HW_3_0_UTF_FIRMWARE_FILE,
183 .testscript = AR6004_HW_3_0_TESTSCRIPT_FILE,
184 },
185
186 .fw_board = AR6004_HW_3_0_BOARD_DATA_FILE,
187 .fw_default_board = AR6004_HW_3_0_DEFAULT_BOARD_DATA_FILE,
188 },
Kalle Valo856f4b312011-11-14 19:30:29 +0200189};
190
Kalle Valobdcd8172011-07-18 00:22:30 +0300191/*
192 * Include definitions here that can be used to tune the WLAN module
193 * behavior. Different customers can tune the behavior as per their needs,
194 * here.
195 */
196
197/*
198 * This configuration item enable/disable keepalive support.
199 * Keepalive support: In the absence of any data traffic to AP, null
200 * frames will be sent to the AP at periodic interval, to keep the association
201 * active. This configuration item defines the periodic interval.
202 * Use value of zero to disable keepalive support
203 * Default: 60 seconds
204 */
205#define WLAN_CONFIG_KEEP_ALIVE_INTERVAL 60
206
207/*
208 * This configuration item sets the value of disconnect timeout
209 * Firmware delays sending the disconnec event to the host for this
210 * timeout after is gets disconnected from the current AP.
211 * If the firmware successly roams within the disconnect timeout
212 * it sends a new connect event
213 */
214#define WLAN_CONFIG_DISCONNECT_TIMEOUT 10
215
Kalle Valobdcd8172011-07-18 00:22:30 +0300216
Kalle Valobdcd8172011-07-18 00:22:30 +0300217#define ATH6KL_DATA_OFFSET 64
218struct sk_buff *ath6kl_buf_alloc(int size)
219{
220 struct sk_buff *skb;
221 u16 reserved;
222
223 /* Add chacheline space at front and back of buffer */
Myoungje Kim6a3e4e02013-03-10 08:16:05 +0200224 reserved = roundup((2 * L1_CACHE_BYTES) + ATH6KL_DATA_OFFSET +
225 sizeof(struct htc_packet) + ATH6KL_HTC_ALIGN_BYTES, 4);
Kalle Valobdcd8172011-07-18 00:22:30 +0300226 skb = dev_alloc_skb(size + reserved);
227
228 if (skb)
229 skb_reserve(skb, reserved - L1_CACHE_BYTES);
230 return skb;
231}
232
Vasanthakumar Thiagarajane29f25f2011-10-25 19:34:15 +0530233void ath6kl_init_profile_info(struct ath6kl_vif *vif)
Kalle Valobdcd8172011-07-18 00:22:30 +0300234{
Vasanthakumar Thiagarajan34503342011-10-25 19:34:02 +0530235 vif->ssid_len = 0;
236 memset(vif->ssid, 0, sizeof(vif->ssid));
237
238 vif->dot11_auth_mode = OPEN_AUTH;
239 vif->auth_mode = NONE_AUTH;
240 vif->prwise_crypto = NONE_CRYPT;
241 vif->prwise_crypto_len = 0;
242 vif->grp_crypto = NONE_CRYPT;
243 vif->grp_crypto_len = 0;
Vasanthakumar Thiagarajan6f2a73f2011-10-25 19:34:06 +0530244 memset(vif->wep_key_list, 0, sizeof(vif->wep_key_list));
Vasanthakumar Thiagarajan8c8b65e2011-10-25 19:34:04 +0530245 memset(vif->req_bssid, 0, sizeof(vif->req_bssid));
246 memset(vif->bssid, 0, sizeof(vif->bssid));
Vasanthakumar Thiagarajanf74bac52011-10-25 19:34:05 +0530247 vif->bss_ch = 0;
Kalle Valobdcd8172011-07-18 00:22:30 +0300248}
249
Kalle Valobdcd8172011-07-18 00:22:30 +0300250static int ath6kl_set_host_app_area(struct ath6kl *ar)
251{
252 u32 address, data;
253 struct host_app_area host_app_area;
254
255 /* Fetch the address of the host_app_area_s
256 * instance in the host interest area */
257 address = ath6kl_get_hi_item_addr(ar, HI_ITEM(hi_app_host_interest));
Kevin Fang31024d92011-07-11 17:14:13 +0800258 address = TARG_VTOP(ar->target_type, address);
Kalle Valobdcd8172011-07-18 00:22:30 +0300259
Kalle Valoaddb44b2011-09-02 10:32:05 +0300260 if (ath6kl_diag_read32(ar, address, &data))
Kalle Valobdcd8172011-07-18 00:22:30 +0300261 return -EIO;
262
Kevin Fang31024d92011-07-11 17:14:13 +0800263 address = TARG_VTOP(ar->target_type, data);
Kalle Valocbf49a62011-10-05 12:23:17 +0300264 host_app_area.wmi_protocol_ver = cpu_to_le32(WMI_PROTOCOL_VERSION);
Kalle Valoaddb44b2011-09-02 10:32:05 +0300265 if (ath6kl_diag_write(ar, address, (u8 *) &host_app_area,
266 sizeof(struct host_app_area)))
Kalle Valobdcd8172011-07-18 00:22:30 +0300267 return -EIO;
268
269 return 0;
270}
271
272static inline void set_ac2_ep_map(struct ath6kl *ar,
273 u8 ac,
274 enum htc_endpoint_id ep)
275{
276 ar->ac2ep_map[ac] = ep;
277 ar->ep2ac_map[ep] = ac;
278}
279
280/* connect to a service */
281static int ath6kl_connectservice(struct ath6kl *ar,
282 struct htc_service_connect_req *con_req,
283 char *desc)
284{
285 int status;
286 struct htc_service_connect_resp response;
287
288 memset(&response, 0, sizeof(response));
289
Kalle Vaload226ec2011-08-10 09:49:12 +0300290 status = ath6kl_htc_conn_service(ar->htc_target, con_req, &response);
Kalle Valobdcd8172011-07-18 00:22:30 +0300291 if (status) {
292 ath6kl_err("failed to connect to %s service status:%d\n",
293 desc, status);
294 return status;
295 }
296
297 switch (con_req->svc_id) {
298 case WMI_CONTROL_SVC:
299 if (test_bit(WMI_ENABLED, &ar->flag))
300 ath6kl_wmi_set_control_ep(ar->wmi, response.endpoint);
301 ar->ctrl_ep = response.endpoint;
302 break;
303 case WMI_DATA_BE_SVC:
304 set_ac2_ep_map(ar, WMM_AC_BE, response.endpoint);
305 break;
306 case WMI_DATA_BK_SVC:
307 set_ac2_ep_map(ar, WMM_AC_BK, response.endpoint);
308 break;
309 case WMI_DATA_VI_SVC:
310 set_ac2_ep_map(ar, WMM_AC_VI, response.endpoint);
311 break;
312 case WMI_DATA_VO_SVC:
313 set_ac2_ep_map(ar, WMM_AC_VO, response.endpoint);
314 break;
315 default:
316 ath6kl_err("service id is not mapped %d\n", con_req->svc_id);
317 return -EINVAL;
318 }
319
320 return 0;
321}
322
323static int ath6kl_init_service_ep(struct ath6kl *ar)
324{
325 struct htc_service_connect_req connect;
326
327 memset(&connect, 0, sizeof(connect));
328
329 /* these fields are the same for all service endpoints */
Kalle Valo900d6b32012-03-25 17:15:23 +0300330 connect.ep_cb.tx_comp_multi = ath6kl_tx_complete;
Kalle Valobdcd8172011-07-18 00:22:30 +0300331 connect.ep_cb.rx = ath6kl_rx;
332 connect.ep_cb.rx_refill = ath6kl_rx_refill;
333 connect.ep_cb.tx_full = ath6kl_tx_queue_full;
334
335 /*
336 * Set the max queue depth so that our ath6kl_tx_queue_full handler
337 * gets called.
338 */
339 connect.max_txq_depth = MAX_DEFAULT_SEND_QUEUE_DEPTH;
340 connect.ep_cb.rx_refill_thresh = ATH6KL_MAX_RX_BUFFERS / 4;
341 if (!connect.ep_cb.rx_refill_thresh)
342 connect.ep_cb.rx_refill_thresh++;
343
344 /* connect to control service */
345 connect.svc_id = WMI_CONTROL_SVC;
346 if (ath6kl_connectservice(ar, &connect, "WMI CONTROL"))
347 return -EIO;
348
349 connect.flags |= HTC_FLGS_TX_BNDL_PAD_EN;
350
351 /*
352 * Limit the HTC message size on the send path, although e can
353 * receive A-MSDU frames of 4K, we will only send ethernet-sized
354 * (802.3) frames on the send path.
355 */
356 connect.max_rxmsg_sz = WMI_MAX_TX_DATA_FRAME_LENGTH;
357
358 /*
359 * To reduce the amount of committed memory for larger A_MSDU
360 * frames, use the recv-alloc threshold mechanism for larger
361 * packets.
362 */
363 connect.ep_cb.rx_alloc_thresh = ATH6KL_BUFFER_SIZE;
364 connect.ep_cb.rx_allocthresh = ath6kl_alloc_amsdu_rxbuf;
365
366 /*
367 * For the remaining data services set the connection flag to
368 * reduce dribbling, if configured to do so.
369 */
370 connect.conn_flags |= HTC_CONN_FLGS_REDUCE_CRED_DRIB;
371 connect.conn_flags &= ~HTC_CONN_FLGS_THRESH_MASK;
372 connect.conn_flags |= HTC_CONN_FLGS_THRESH_LVL_HALF;
373
374 connect.svc_id = WMI_DATA_BE_SVC;
375
376 if (ath6kl_connectservice(ar, &connect, "WMI DATA BE"))
377 return -EIO;
378
379 /* connect to back-ground map this to WMI LOW_PRI */
380 connect.svc_id = WMI_DATA_BK_SVC;
381 if (ath6kl_connectservice(ar, &connect, "WMI DATA BK"))
382 return -EIO;
383
Mohammed Shafi Shajakhan171fe762012-09-27 18:19:52 +0530384 /* connect to Video service, map this to HI PRI */
Kalle Valobdcd8172011-07-18 00:22:30 +0300385 connect.svc_id = WMI_DATA_VI_SVC;
386 if (ath6kl_connectservice(ar, &connect, "WMI DATA VI"))
387 return -EIO;
388
389 /*
390 * Connect to VO service, this is currently not mapped to a WMI
391 * priority stream due to historical reasons. WMI originally
392 * defined 3 priorities over 3 mailboxes We can change this when
393 * WMI is reworked so that priorities are not dependent on
394 * mailboxes.
395 */
396 connect.svc_id = WMI_DATA_VO_SVC;
397 if (ath6kl_connectservice(ar, &connect, "WMI DATA VO"))
398 return -EIO;
399
400 return 0;
401}
402
Vasanthakumar Thiagarajane29f25f2011-10-25 19:34:15 +0530403void ath6kl_init_control_info(struct ath6kl_vif *vif)
Kalle Valobdcd8172011-07-18 00:22:30 +0300404{
Vasanthakumar Thiagarajane29f25f2011-10-25 19:34:15 +0530405 ath6kl_init_profile_info(vif);
Vasanthakumar Thiagarajan34503342011-10-25 19:34:02 +0530406 vif->def_txkey_index = 0;
Vasanthakumar Thiagarajan6f2a73f2011-10-25 19:34:06 +0530407 memset(vif->wep_key_list, 0, sizeof(vif->wep_key_list));
Vasanthakumar Thiagarajanf74bac52011-10-25 19:34:05 +0530408 vif->ch_hint = 0;
Kalle Valobdcd8172011-07-18 00:22:30 +0300409}
410
411/*
412 * Set HTC/Mbox operational parameters, this can only be called when the
413 * target is in the BMI phase.
414 */
415static int ath6kl_set_htc_params(struct ath6kl *ar, u32 mbox_isr_yield_val,
416 u8 htc_ctrl_buf)
417{
418 int status;
419 u32 blk_size;
420
421 blk_size = ar->mbox_info.block_size;
422
423 if (htc_ctrl_buf)
424 blk_size |= ((u32)htc_ctrl_buf) << 16;
425
426 /* set the host interest area for the block size */
Kalle Valo24fc32b2012-03-07 20:03:58 +0200427 status = ath6kl_bmi_write_hi32(ar, hi_mbox_io_block_sz, blk_size);
Kalle Valobdcd8172011-07-18 00:22:30 +0300428 if (status) {
429 ath6kl_err("bmi_write_memory for IO block size failed\n");
430 goto out;
431 }
432
433 ath6kl_dbg(ATH6KL_DBG_TRC, "block size set: %d (target addr:0x%X)\n",
434 blk_size,
435 ath6kl_get_hi_item_addr(ar, HI_ITEM(hi_mbox_io_block_sz)));
436
437 if (mbox_isr_yield_val) {
438 /* set the host interest area for the mbox ISR yield limit */
Kalle Valo24fc32b2012-03-07 20:03:58 +0200439 status = ath6kl_bmi_write_hi32(ar, hi_mbox_isr_yield_limit,
440 mbox_isr_yield_val);
Kalle Valobdcd8172011-07-18 00:22:30 +0300441 if (status) {
442 ath6kl_err("bmi_write_memory for yield limit failed\n");
443 goto out;
444 }
445 }
446
447out:
448 return status;
449}
450
Vasanthakumar Thiagarajan0ce59442011-10-25 19:34:25 +0530451static int ath6kl_target_config_wlan_params(struct ath6kl *ar, int idx)
Kalle Valobdcd8172011-07-18 00:22:30 +0300452{
Jouni Malinen4dea08e2011-08-30 21:57:57 +0300453 int ret;
Kalle Valobdcd8172011-07-18 00:22:30 +0300454
455 /*
456 * Configure the device for rx dot11 header rules. "0,0" are the
457 * default values. Required if checksum offload is needed. Set
458 * RxMetaVersion to 2.
459 */
Kalle Valo1ca4d0b2012-03-07 20:03:59 +0200460 ret = ath6kl_wmi_set_rx_frame_format_cmd(ar->wmi, idx,
461 ar->rx_meta_ver, 0, 0);
462 if (ret) {
463 ath6kl_err("unable to set the rx frame format: %d\n", ret);
464 return ret;
Kalle Valobdcd8172011-07-18 00:22:30 +0300465 }
466
Kalle Valo1ca4d0b2012-03-07 20:03:59 +0200467 if (ar->conf_flags & ATH6KL_CONF_IGNORE_PS_FAIL_EVT_IN_SCAN) {
468 ret = ath6kl_wmi_pmparams_cmd(ar->wmi, idx, 0, 1, 0, 0, 1,
Kalle Valo05aab172012-03-07 20:04:00 +0200469 IGNORE_PS_FAIL_DURING_SCAN);
Kalle Valo1ca4d0b2012-03-07 20:03:59 +0200470 if (ret) {
471 ath6kl_err("unable to set power save fail event policy: %d\n",
472 ret);
473 return ret;
Kalle Valobdcd8172011-07-18 00:22:30 +0300474 }
Kalle Valobdcd8172011-07-18 00:22:30 +0300475 }
476
Kalle Valo1ca4d0b2012-03-07 20:03:59 +0200477 if (!(ar->conf_flags & ATH6KL_CONF_IGNORE_ERP_BARKER)) {
478 ret = ath6kl_wmi_set_lpreamble_cmd(ar->wmi, idx, 0,
Kalle Valo05aab172012-03-07 20:04:00 +0200479 WMI_FOLLOW_BARKER_IN_ERP);
Kalle Valo1ca4d0b2012-03-07 20:03:59 +0200480 if (ret) {
481 ath6kl_err("unable to set barker preamble policy: %d\n",
482 ret);
483 return ret;
484 }
Kalle Valobdcd8172011-07-18 00:22:30 +0300485 }
486
Kalle Valo1ca4d0b2012-03-07 20:03:59 +0200487 ret = ath6kl_wmi_set_keepalive_cmd(ar->wmi, idx,
488 WLAN_CONFIG_KEEP_ALIVE_INTERVAL);
489 if (ret) {
490 ath6kl_err("unable to set keep alive interval: %d\n", ret);
491 return ret;
492 }
493
494 ret = ath6kl_wmi_disctimeout_cmd(ar->wmi, idx,
495 WLAN_CONFIG_DISCONNECT_TIMEOUT);
496 if (ret) {
497 ath6kl_err("unable to set disconnect timeout: %d\n", ret);
498 return ret;
499 }
500
501 if (!(ar->conf_flags & ATH6KL_CONF_ENABLE_TX_BURST)) {
502 ret = ath6kl_wmi_set_wmm_txop(ar->wmi, idx, WMI_TXOP_DISABLED);
503 if (ret) {
504 ath6kl_err("unable to set txop bursting: %d\n", ret);
505 return ret;
Kalle Valobdcd8172011-07-18 00:22:30 +0300506 }
Kalle Valo1ca4d0b2012-03-07 20:03:59 +0200507 }
Kalle Valobdcd8172011-07-18 00:22:30 +0300508
Vasanthakumar Thiagarajanb64de352011-11-18 10:05:28 +0530509 if (ar->p2p && (ar->vif_max == 1 || idx)) {
Vasanthakumar Thiagarajan0ce59442011-10-25 19:34:25 +0530510 ret = ath6kl_wmi_info_req_cmd(ar->wmi, idx,
Jouni Malinen6bbc7c32011-09-05 17:38:47 +0300511 P2P_FLAG_CAPABILITIES_REQ |
512 P2P_FLAG_MACADDR_REQ |
513 P2P_FLAG_HMODEL_REQ);
514 if (ret) {
Kalle Valocdeb8602012-04-12 11:02:18 +0300515 ath6kl_dbg(ATH6KL_DBG_TRC,
516 "failed to request P2P capabilities (%d) - assuming P2P not supported\n",
517 ret);
Rusty Russell3db1cd52011-12-19 13:56:45 +0000518 ar->p2p = false;
Jouni Malinen6bbc7c32011-09-05 17:38:47 +0300519 }
520 }
521
Vasanthakumar Thiagarajanb64de352011-11-18 10:05:28 +0530522 if (ar->p2p && (ar->vif_max == 1 || idx)) {
Jouni Malinen6bbc7c32011-09-05 17:38:47 +0300523 /* Enable Probe Request reporting for P2P */
Vasanthakumar Thiagarajan0ce59442011-10-25 19:34:25 +0530524 ret = ath6kl_wmi_probe_report_req_cmd(ar->wmi, idx, true);
Jouni Malinen6bbc7c32011-09-05 17:38:47 +0300525 if (ret) {
Kalle Valocdeb8602012-04-12 11:02:18 +0300526 ath6kl_dbg(ATH6KL_DBG_TRC,
527 "failed to enable Probe Request reporting (%d)\n",
528 ret);
Jouni Malinen6bbc7c32011-09-05 17:38:47 +0300529 }
Jouni Malinen4dea08e2011-08-30 21:57:57 +0300530 }
531
Kalle Valo1ca4d0b2012-03-07 20:03:59 +0200532 return ret;
Kalle Valobdcd8172011-07-18 00:22:30 +0300533}
534
535int ath6kl_configure_target(struct ath6kl *ar)
536{
537 u32 param, ram_reserved_size;
Vasanthakumar Thiagarajan3226f68a2011-10-25 19:34:24 +0530538 u8 fw_iftype, fw_mode = 0, fw_submode = 0;
Ryan Hsu39586bf2011-12-13 17:11:07 +0800539 int i, status;
Kalle Valobdcd8172011-07-18 00:22:30 +0300540
Kalle Valof29af972012-01-17 20:08:56 +0200541 param = !!(ar->conf_flags & ATH6KL_CONF_UART_DEBUG);
Kalle Valo24fc32b2012-03-07 20:03:58 +0200542 if (ath6kl_bmi_write_hi32(ar, hi_serial_enable, param)) {
Vasanthakumar Thiagarajana10e2f22011-12-29 16:05:38 +0530543 ath6kl_err("bmi_write_memory for uart debug failed\n");
544 return -EIO;
545 }
546
Vasanthakumar Thiagarajan7b858322011-10-25 19:34:22 +0530547 /*
548 * Note: Even though the firmware interface type is
549 * chosen as BSS_STA for all three interfaces, can
550 * be configured to IBSS/AP as long as the fw submode
551 * remains normal mode (0 - AP, STA and IBSS). But
552 * due to an target assert in firmware only one interface is
553 * configured for now.
554 */
Vasanthakumar Thiagarajandd3751f2011-10-25 19:33:59 +0530555 fw_iftype = HI_OPTION_FW_MODE_BSS_STA;
Kalle Valobdcd8172011-07-18 00:22:30 +0300556
Kalle Valo71f96ee2011-11-14 19:31:30 +0200557 for (i = 0; i < ar->vif_max; i++)
Vasanthakumar Thiagarajan7b858322011-10-25 19:34:22 +0530558 fw_mode |= fw_iftype << (i * HI_OPTION_FW_MODE_BITS);
559
560 /*
Vasanthakumar Thiagarajan1e8d13b2012-04-06 20:24:30 +0530561 * Submodes when fw does not support dynamic interface
562 * switching:
Vasanthakumar Thiagarajan3226f68a2011-10-25 19:34:24 +0530563 * vif[0] - AP/STA/IBSS
564 * vif[1] - "P2P dev"/"P2P GO"/"P2P Client"
565 * vif[2] - "P2P dev"/"P2P GO"/"P2P Client"
Vasanthakumar Thiagarajan1e8d13b2012-04-06 20:24:30 +0530566 * Otherwise, All the interface are initialized to p2p dev.
Vasanthakumar Thiagarajan7b858322011-10-25 19:34:22 +0530567 */
Vasanthakumar Thiagarajan3226f68a2011-10-25 19:34:24 +0530568
Vasanthakumar Thiagarajan1e8d13b2012-04-06 20:24:30 +0530569 if (test_bit(ATH6KL_FW_CAPABILITY_STA_P2PDEV_DUPLEX,
570 ar->fw_capabilities)) {
571 for (i = 0; i < ar->vif_max; i++)
572 fw_submode |= HI_OPTION_FW_SUBMODE_P2PDEV <<
573 (i * HI_OPTION_FW_SUBMODE_BITS);
574 } else {
575 for (i = 0; i < ar->max_norm_iface; i++)
576 fw_submode |= HI_OPTION_FW_SUBMODE_NONE <<
577 (i * HI_OPTION_FW_SUBMODE_BITS);
Vasanthakumar Thiagarajan3226f68a2011-10-25 19:34:24 +0530578
Vasanthakumar Thiagarajan1e8d13b2012-04-06 20:24:30 +0530579 for (i = ar->max_norm_iface; i < ar->vif_max; i++)
580 fw_submode |= HI_OPTION_FW_SUBMODE_P2PDEV <<
581 (i * HI_OPTION_FW_SUBMODE_BITS);
Vasanthakumar Thiagarajan7b858322011-10-25 19:34:22 +0530582
Vasanthakumar Thiagarajan1e8d13b2012-04-06 20:24:30 +0530583 if (ar->p2p && ar->vif_max == 1)
584 fw_submode = HI_OPTION_FW_SUBMODE_P2PDEV;
585 }
Vasanthakumar Thiagarajan7b858322011-10-25 19:34:22 +0530586
Kalle Valo24fc32b2012-03-07 20:03:58 +0200587 if (ath6kl_bmi_write_hi32(ar, hi_app_host_interest,
588 HTC_PROTOCOL_VERSION) != 0) {
Kalle Valobdcd8172011-07-18 00:22:30 +0300589 ath6kl_err("bmi_write_memory for htc version failed\n");
590 return -EIO;
591 }
592
593 /* set the firmware mode to STA/IBSS/AP */
594 param = 0;
595
Kalle Valo80fb2682012-03-07 20:03:59 +0200596 if (ath6kl_bmi_read_hi32(ar, hi_option_flag, &param) != 0) {
Kalle Valobdcd8172011-07-18 00:22:30 +0300597 ath6kl_err("bmi_read_memory for setting fwmode failed\n");
598 return -EIO;
599 }
600
Kalle Valo71f96ee2011-11-14 19:31:30 +0200601 param |= (ar->vif_max << HI_OPTION_NUM_DEV_SHIFT);
Vasanthakumar Thiagarajan7b858322011-10-25 19:34:22 +0530602 param |= fw_mode << HI_OPTION_FW_MODE_SHIFT;
603 param |= fw_submode << HI_OPTION_FW_SUBMODE_SHIFT;
604
Kalle Valobdcd8172011-07-18 00:22:30 +0300605 param |= (0 << HI_OPTION_MAC_ADDR_METHOD_SHIFT);
606 param |= (0 << HI_OPTION_FW_BRIDGE_SHIFT);
607
Kalle Valo24fc32b2012-03-07 20:03:58 +0200608 if (ath6kl_bmi_write_hi32(ar, hi_option_flag, param) != 0) {
Kalle Valobdcd8172011-07-18 00:22:30 +0300609 ath6kl_err("bmi_write_memory for setting fwmode failed\n");
610 return -EIO;
611 }
612
613 ath6kl_dbg(ATH6KL_DBG_TRC, "firmware mode set\n");
614
615 /*
616 * Hardcode the address use for the extended board data
617 * Ideally this should be pre-allocate by the OS at boot time
618 * But since it is a new feature and board data is loaded
619 * at init time, we have to workaround this from host.
620 * It is difficult to patch the firmware boot code,
621 * but possible in theory.
622 */
623
Jessica Wu78803772014-06-17 12:41:16 +0300624 if ((ar->target_type == TARGET_TYPE_AR6003) ||
625 (ar->version.target_ver == AR6004_HW_1_3_VERSION) ||
626 (ar->version.target_ver == AR6004_HW_3_0_VERSION)) {
Kalle Valo6b42d302012-03-25 17:15:21 +0300627 param = ar->hw.board_ext_data_addr;
628 ram_reserved_size = ar->hw.reserved_ram_size;
Kalle Valobdcd8172011-07-18 00:22:30 +0300629
Kalle Valo6b42d302012-03-25 17:15:21 +0300630 if (ath6kl_bmi_write_hi32(ar, hi_board_ext_data, param) != 0) {
631 ath6kl_err("bmi_write_memory for hi_board_ext_data failed\n");
632 return -EIO;
633 }
Kalle Valo991b27e2011-09-07 10:55:17 +0300634
Kalle Valo6b42d302012-03-25 17:15:21 +0300635 if (ath6kl_bmi_write_hi32(ar, hi_end_ram_reserve_sz,
636 ram_reserved_size) != 0) {
637 ath6kl_err("bmi_write_memory for hi_end_ram_reserve_sz failed\n");
638 return -EIO;
639 }
Kalle Valobdcd8172011-07-18 00:22:30 +0300640 }
641
642 /* set the block size for the target */
643 if (ath6kl_set_htc_params(ar, MBOX_YIELD_LIMIT, 0))
644 /* use default number of control buffers */
645 return -EIO;
646
Ryan Hsu39586bf2011-12-13 17:11:07 +0800647 /* Configure GPIO AR600x UART */
Kalle Valo24fc32b2012-03-07 20:03:58 +0200648 status = ath6kl_bmi_write_hi32(ar, hi_dbg_uart_txpin,
649 ar->hw.uarttx_pin);
Ryan Hsu39586bf2011-12-13 17:11:07 +0800650 if (status)
651 return status;
652
653 /* Configure target refclk_hz */
Kalle Valo958e1be2014-06-17 12:41:04 +0300654 if (ar->hw.refclk_hz != 0) {
655 status = ath6kl_bmi_write_hi32(ar, hi_refclk_hz,
656 ar->hw.refclk_hz);
657 if (status)
658 return status;
659 }
Ryan Hsu39586bf2011-12-13 17:11:07 +0800660
Kalle Valobdcd8172011-07-18 00:22:30 +0300661 return 0;
662}
663
Kalle Valobdcd8172011-07-18 00:22:30 +0300664/* firmware upload */
Kalle Valobdcd8172011-07-18 00:22:30 +0300665static int ath6kl_get_fw(struct ath6kl *ar, const char *filename,
666 u8 **fw, size_t *fw_len)
667{
668 const struct firmware *fw_entry;
669 int ret;
670
671 ret = request_firmware(&fw_entry, filename, ar->dev);
672 if (ret)
673 return ret;
674
675 *fw_len = fw_entry->size;
676 *fw = kmemdup(fw_entry->data, fw_entry->size, GFP_KERNEL);
677
678 if (*fw == NULL)
679 ret = -ENOMEM;
680
681 release_firmware(fw_entry);
682
683 return ret;
684}
685
Sam Leffler92ecbff2011-09-07 10:55:16 +0300686#ifdef CONFIG_OF
Sam Leffler92ecbff2011-09-07 10:55:16 +0300687/*
688 * Check the device tree for a board-id and use it to construct
689 * the pathname to the firmware file. Used (for now) to find a
690 * fallback to the "bdata.bin" file--typically a symlink to the
691 * appropriate board-specific file.
692 */
693static bool check_device_tree(struct ath6kl *ar)
694{
695 static const char *board_id_prop = "atheros,board-id";
696 struct device_node *node;
697 char board_filename[64];
698 const char *board_id;
699 int ret;
700
701 for_each_compatible_node(node, NULL, "atheros,ath6kl") {
702 board_id = of_get_property(node, board_id_prop, NULL);
703 if (board_id == NULL) {
704 ath6kl_warn("No \"%s\" property on %s node.\n",
705 board_id_prop, node->name);
706 continue;
707 }
708 snprintf(board_filename, sizeof(board_filename),
Kalle Valoc0038972011-12-16 20:53:31 +0200709 "%s/bdata.%s.bin", ar->hw.fw.dir, board_id);
Sam Leffler92ecbff2011-09-07 10:55:16 +0300710
711 ret = ath6kl_get_fw(ar, board_filename, &ar->fw_board,
712 &ar->fw_board_len);
713 if (ret) {
714 ath6kl_err("Failed to get DT board file %s: %d\n",
715 board_filename, ret);
716 continue;
717 }
718 return true;
719 }
720 return false;
721}
722#else
723static bool check_device_tree(struct ath6kl *ar)
724{
725 return false;
726}
727#endif /* CONFIG_OF */
728
Kalle Valobdcd8172011-07-18 00:22:30 +0300729static int ath6kl_fetch_board_file(struct ath6kl *ar)
730{
731 const char *filename;
732 int ret;
733
Kalle Valo772c31e2011-09-07 10:55:16 +0300734 if (ar->fw_board != NULL)
735 return 0;
736
Kalle Valod1a94212011-11-14 19:31:23 +0200737 if (WARN_ON(ar->hw.fw_board == NULL))
738 return -EINVAL;
739
740 filename = ar->hw.fw_board;
Kalle Valobdcd8172011-07-18 00:22:30 +0300741
742 ret = ath6kl_get_fw(ar, filename, &ar->fw_board,
743 &ar->fw_board_len);
744 if (ret == 0) {
745 /* managed to get proper board file */
746 return 0;
747 }
748
Sam Leffler92ecbff2011-09-07 10:55:16 +0300749 if (check_device_tree(ar)) {
750 /* got board file from device tree */
751 return 0;
752 }
753
Kalle Valobdcd8172011-07-18 00:22:30 +0300754 /* there was no proper board file, try to use default instead */
755 ath6kl_warn("Failed to get board file %s (%d), trying to find default board file.\n",
756 filename, ret);
757
Kalle Valod1a94212011-11-14 19:31:23 +0200758 filename = ar->hw.fw_default_board;
Kalle Valobdcd8172011-07-18 00:22:30 +0300759
760 ret = ath6kl_get_fw(ar, filename, &ar->fw_board,
761 &ar->fw_board_len);
762 if (ret) {
763 ath6kl_err("Failed to get default board file %s: %d\n",
764 filename, ret);
765 return ret;
766 }
767
768 ath6kl_warn("WARNING! No proper board file was not found, instead using a default board file.\n");
769 ath6kl_warn("Most likely your hardware won't work as specified. Install correct board file!\n");
770
771 return 0;
772}
773
Kalle Valo772c31e2011-09-07 10:55:16 +0300774static int ath6kl_fetch_otp_file(struct ath6kl *ar)
775{
Kalle Valoc0038972011-12-16 20:53:31 +0200776 char filename[100];
Kalle Valo772c31e2011-09-07 10:55:16 +0300777 int ret;
778
779 if (ar->fw_otp != NULL)
780 return 0;
781
Kalle Valoc0038972011-12-16 20:53:31 +0200782 if (ar->hw.fw.otp == NULL) {
Kalle Valod1a94212011-11-14 19:31:23 +0200783 ath6kl_dbg(ATH6KL_DBG_BOOT,
784 "no OTP file configured for this hw\n");
Kalle Valo772c31e2011-09-07 10:55:16 +0300785 return 0;
Kalle Valo772c31e2011-09-07 10:55:16 +0300786 }
787
Kalle Valoc0038972011-12-16 20:53:31 +0200788 snprintf(filename, sizeof(filename), "%s/%s",
789 ar->hw.fw.dir, ar->hw.fw.otp);
Kalle Valod1a94212011-11-14 19:31:23 +0200790
Kalle Valo772c31e2011-09-07 10:55:16 +0300791 ret = ath6kl_get_fw(ar, filename, &ar->fw_otp,
792 &ar->fw_otp_len);
793 if (ret) {
794 ath6kl_err("Failed to get OTP file %s: %d\n",
795 filename, ret);
796 return ret;
797 }
798
799 return 0;
800}
801
Kalle Valo5f1127f2012-01-24 13:50:16 +0200802static int ath6kl_fetch_testmode_file(struct ath6kl *ar)
803{
804 char filename[100];
805 int ret;
806
807 if (ar->testmode == 0)
808 return 0;
809
810 ath6kl_dbg(ATH6KL_DBG_BOOT, "testmode %d\n", ar->testmode);
811
812 if (ar->testmode == 2) {
813 if (ar->hw.fw.utf == NULL) {
814 ath6kl_warn("testmode 2 not supported\n");
815 return -EOPNOTSUPP;
816 }
817
818 snprintf(filename, sizeof(filename), "%s/%s",
819 ar->hw.fw.dir, ar->hw.fw.utf);
820 } else {
821 if (ar->hw.fw.tcmd == NULL) {
822 ath6kl_warn("testmode 1 not supported\n");
823 return -EOPNOTSUPP;
824 }
825
826 snprintf(filename, sizeof(filename), "%s/%s",
827 ar->hw.fw.dir, ar->hw.fw.tcmd);
828 }
829
830 set_bit(TESTMODE, &ar->flag);
831
832 ret = ath6kl_get_fw(ar, filename, &ar->fw, &ar->fw_len);
833 if (ret) {
834 ath6kl_err("Failed to get testmode %d firmware file %s: %d\n",
835 ar->testmode, filename, ret);
836 return ret;
837 }
838
839 return 0;
840}
841
Kalle Valo772c31e2011-09-07 10:55:16 +0300842static int ath6kl_fetch_fw_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
847 if (ar->fw != NULL)
848 return 0;
849
Kalle Valoc0038972011-12-16 20:53:31 +0200850 /* FIXME: remove WARN_ON() as we won't support FW API 1 for long */
851 if (WARN_ON(ar->hw.fw.fw == NULL))
Kalle Valod1a94212011-11-14 19:31:23 +0200852 return -EINVAL;
853
Kalle Valoc0038972011-12-16 20:53:31 +0200854 snprintf(filename, sizeof(filename), "%s/%s",
855 ar->hw.fw.dir, ar->hw.fw.fw);
Kalle Valo772c31e2011-09-07 10:55:16 +0300856
Kalle Valo772c31e2011-09-07 10:55:16 +0300857 ret = ath6kl_get_fw(ar, filename, &ar->fw, &ar->fw_len);
858 if (ret) {
859 ath6kl_err("Failed to get firmware file %s: %d\n",
860 filename, ret);
861 return ret;
862 }
863
864 return 0;
865}
866
867static int ath6kl_fetch_patch_file(struct ath6kl *ar)
868{
Kalle Valoc0038972011-12-16 20:53:31 +0200869 char filename[100];
Kalle Valo772c31e2011-09-07 10:55:16 +0300870 int ret;
871
Kalle Valod1a94212011-11-14 19:31:23 +0200872 if (ar->fw_patch != NULL)
Kalle Valo772c31e2011-09-07 10:55:16 +0300873 return 0;
Kalle Valo772c31e2011-09-07 10:55:16 +0300874
Kalle Valoc0038972011-12-16 20:53:31 +0200875 if (ar->hw.fw.patch == NULL)
Kalle Valod1a94212011-11-14 19:31:23 +0200876 return 0;
877
Kalle Valoc0038972011-12-16 20:53:31 +0200878 snprintf(filename, sizeof(filename), "%s/%s",
879 ar->hw.fw.dir, ar->hw.fw.patch);
Kalle Valod1a94212011-11-14 19:31:23 +0200880
881 ret = ath6kl_get_fw(ar, filename, &ar->fw_patch,
882 &ar->fw_patch_len);
883 if (ret) {
884 ath6kl_err("Failed to get patch file %s: %d\n",
885 filename, ret);
886 return ret;
Kalle Valo772c31e2011-09-07 10:55:16 +0300887 }
888
889 return 0;
890}
891
Alex Yangcd23c1c2012-01-17 15:32:29 +0200892static int ath6kl_fetch_testscript_file(struct ath6kl *ar)
893{
894 char filename[100];
895 int ret;
896
Kalle Valo5f1127f2012-01-24 13:50:16 +0200897 if (ar->testmode != 2)
Alex Yangcd23c1c2012-01-17 15:32:29 +0200898 return 0;
899
900 if (ar->fw_testscript != NULL)
901 return 0;
902
903 if (ar->hw.fw.testscript == NULL)
904 return 0;
905
906 snprintf(filename, sizeof(filename), "%s/%s",
Kalle Valo96f1fad2012-03-07 20:03:57 +0200907 ar->hw.fw.dir, ar->hw.fw.testscript);
Alex Yangcd23c1c2012-01-17 15:32:29 +0200908
909 ret = ath6kl_get_fw(ar, filename, &ar->fw_testscript,
910 &ar->fw_testscript_len);
911 if (ret) {
912 ath6kl_err("Failed to get testscript file %s: %d\n",
Kalle Valo96f1fad2012-03-07 20:03:57 +0200913 filename, ret);
Alex Yangcd23c1c2012-01-17 15:32:29 +0200914 return ret;
915 }
916
917 return 0;
918}
919
Kalle Valo50d41232011-09-07 10:55:17 +0300920static int ath6kl_fetch_fw_api1(struct ath6kl *ar)
Kalle Valo772c31e2011-09-07 10:55:16 +0300921{
922 int ret;
923
Kalle Valo772c31e2011-09-07 10:55:16 +0300924 ret = ath6kl_fetch_otp_file(ar);
925 if (ret)
926 return ret;
927
928 ret = ath6kl_fetch_fw_file(ar);
929 if (ret)
930 return ret;
931
932 ret = ath6kl_fetch_patch_file(ar);
933 if (ret)
934 return ret;
935
Alex Yangcd23c1c2012-01-17 15:32:29 +0200936 ret = ath6kl_fetch_testscript_file(ar);
937 if (ret)
938 return ret;
939
Kalle Valo772c31e2011-09-07 10:55:16 +0300940 return 0;
941}
Kalle Valobdcd8172011-07-18 00:22:30 +0300942
Kalle Valo65a8b4c2011-12-16 20:53:41 +0200943static int ath6kl_fetch_fw_apin(struct ath6kl *ar, const char *name)
Kalle Valo50d41232011-09-07 10:55:17 +0300944{
945 size_t magic_len, len, ie_len;
946 const struct firmware *fw;
947 struct ath6kl_fw_ie *hdr;
Kalle Valoc0038972011-12-16 20:53:31 +0200948 char filename[100];
Kalle Valo50d41232011-09-07 10:55:17 +0300949 const u8 *data;
Kalle Valo97e04962011-09-12 13:47:34 +0300950 int ret, ie_id, i, index, bit;
Kalle Valo8a137482011-09-07 10:55:17 +0300951 __le32 *val;
Kalle Valo50d41232011-09-07 10:55:17 +0300952
Kalle Valo65a8b4c2011-12-16 20:53:41 +0200953 snprintf(filename, sizeof(filename), "%s/%s", ar->hw.fw.dir, name);
Kalle Valo50d41232011-09-07 10:55:17 +0300954
955 ret = request_firmware(&fw, filename, ar->dev);
956 if (ret)
957 return ret;
958
959 data = fw->data;
960 len = fw->size;
961
962 /* magic also includes the null byte, check that as well */
963 magic_len = strlen(ATH6KL_FIRMWARE_MAGIC) + 1;
964
965 if (len < magic_len) {
966 ret = -EINVAL;
967 goto out;
968 }
969
970 if (memcmp(data, ATH6KL_FIRMWARE_MAGIC, magic_len) != 0) {
971 ret = -EINVAL;
972 goto out;
973 }
974
975 len -= magic_len;
976 data += magic_len;
977
978 /* loop elements */
979 while (len > sizeof(struct ath6kl_fw_ie)) {
980 /* hdr is unaligned! */
981 hdr = (struct ath6kl_fw_ie *) data;
982
983 ie_id = le32_to_cpup(&hdr->id);
984 ie_len = le32_to_cpup(&hdr->len);
985
986 len -= sizeof(*hdr);
987 data += sizeof(*hdr);
988
989 if (len < ie_len) {
990 ret = -EINVAL;
991 goto out;
992 }
993
994 switch (ie_id) {
Naveen Singhb5b6f6a2012-06-07 00:44:02 -0700995 case ATH6KL_FW_IE_FW_VERSION:
996 strlcpy(ar->wiphy->fw_version, data,
997 sizeof(ar->wiphy->fw_version));
998
999 ath6kl_dbg(ATH6KL_DBG_BOOT,
1000 "found fw version %s\n",
1001 ar->wiphy->fw_version);
1002 break;
Kalle Valo50d41232011-09-07 10:55:17 +03001003 case ATH6KL_FW_IE_OTP_IMAGE:
Kalle Valoef548622011-10-01 09:43:09 +03001004 ath6kl_dbg(ATH6KL_DBG_BOOT, "found otp image ie (%zd B)\n",
Kalle Valo96f1fad2012-03-07 20:03:57 +02001005 ie_len);
Kalle Valo6bc36432011-09-27 14:31:11 +03001006
Kalle Valo50d41232011-09-07 10:55:17 +03001007 ar->fw_otp = kmemdup(data, ie_len, GFP_KERNEL);
1008
1009 if (ar->fw_otp == NULL) {
1010 ret = -ENOMEM;
1011 goto out;
1012 }
1013
1014 ar->fw_otp_len = ie_len;
1015 break;
1016 case ATH6KL_FW_IE_FW_IMAGE:
Kalle Valoef548622011-10-01 09:43:09 +03001017 ath6kl_dbg(ATH6KL_DBG_BOOT, "found fw image ie (%zd B)\n",
Kalle Valo96f1fad2012-03-07 20:03:57 +02001018 ie_len);
Kalle Valo6bc36432011-09-27 14:31:11 +03001019
Kalle Valo5f1127f2012-01-24 13:50:16 +02001020 /* in testmode we already might have a fw file */
1021 if (ar->fw != NULL)
1022 break;
1023
Vivek Natarajan84377542012-03-28 19:21:25 +05301024 ar->fw = vmalloc(ie_len);
Kalle Valo50d41232011-09-07 10:55:17 +03001025
1026 if (ar->fw == NULL) {
1027 ret = -ENOMEM;
1028 goto out;
1029 }
1030
Vivek Natarajan84377542012-03-28 19:21:25 +05301031 memcpy(ar->fw, data, ie_len);
Kalle Valo50d41232011-09-07 10:55:17 +03001032 ar->fw_len = ie_len;
1033 break;
1034 case ATH6KL_FW_IE_PATCH_IMAGE:
Kalle Valoef548622011-10-01 09:43:09 +03001035 ath6kl_dbg(ATH6KL_DBG_BOOT, "found patch image ie (%zd B)\n",
Kalle Valo96f1fad2012-03-07 20:03:57 +02001036 ie_len);
Kalle Valo6bc36432011-09-27 14:31:11 +03001037
Kalle Valo50d41232011-09-07 10:55:17 +03001038 ar->fw_patch = kmemdup(data, ie_len, GFP_KERNEL);
1039
1040 if (ar->fw_patch == NULL) {
1041 ret = -ENOMEM;
1042 goto out;
1043 }
1044
1045 ar->fw_patch_len = ie_len;
1046 break;
Kalle Valo8a137482011-09-07 10:55:17 +03001047 case ATH6KL_FW_IE_RESERVED_RAM_SIZE:
1048 val = (__le32 *) data;
1049 ar->hw.reserved_ram_size = le32_to_cpup(val);
Kalle Valo6bc36432011-09-27 14:31:11 +03001050
1051 ath6kl_dbg(ATH6KL_DBG_BOOT,
Hans Wennborg10d49872014-08-17 14:57:11 -07001052 "found reserved ram size ie %d\n",
Kalle Valo6bc36432011-09-27 14:31:11 +03001053 ar->hw.reserved_ram_size);
Kalle Valo8a137482011-09-07 10:55:17 +03001054 break;
Kalle Valo97e04962011-09-12 13:47:34 +03001055 case ATH6KL_FW_IE_CAPABILITIES:
Kalle Valo6bc36432011-09-27 14:31:11 +03001056 ath6kl_dbg(ATH6KL_DBG_BOOT,
Kalle Valoef548622011-10-01 09:43:09 +03001057 "found firmware capabilities ie (%zd B)\n",
Kalle Valo6bc36432011-09-27 14:31:11 +03001058 ie_len);
1059
Kalle Valo97e04962011-09-12 13:47:34 +03001060 for (i = 0; i < ATH6KL_FW_CAPABILITY_MAX; i++) {
Kalle Valo277d90f2011-12-13 14:51:58 +02001061 index = i / 8;
Kalle Valo97e04962011-09-12 13:47:34 +03001062 bit = i % 8;
1063
Thomas Pedersenc85251f2012-06-11 13:36:12 -07001064 if (index == ie_len)
1065 break;
1066
Kalle Valo97e04962011-09-12 13:47:34 +03001067 if (data[index] & (1 << bit))
1068 __set_bit(i, ar->fw_capabilities);
1069 }
Kalle Valo6bc36432011-09-27 14:31:11 +03001070
1071 ath6kl_dbg_dump(ATH6KL_DBG_BOOT, "capabilities", "",
1072 ar->fw_capabilities,
1073 sizeof(ar->fw_capabilities));
Kalle Valo97e04962011-09-12 13:47:34 +03001074 break;
Kalle Valo1b4304d2011-09-27 11:05:26 +03001075 case ATH6KL_FW_IE_PATCH_ADDR:
1076 if (ie_len != sizeof(*val))
1077 break;
1078
1079 val = (__le32 *) data;
1080 ar->hw.dataset_patch_addr = le32_to_cpup(val);
Kalle Valo6bc36432011-09-27 14:31:11 +03001081
1082 ath6kl_dbg(ATH6KL_DBG_BOOT,
Kalle Valo03ef0252011-11-14 19:30:47 +02001083 "found patch address ie 0x%x\n",
Kalle Valo6bc36432011-09-27 14:31:11 +03001084 ar->hw.dataset_patch_addr);
Kalle Valo1b4304d2011-09-27 11:05:26 +03001085 break;
Kalle Valo03ef0252011-11-14 19:30:47 +02001086 case ATH6KL_FW_IE_BOARD_ADDR:
1087 if (ie_len != sizeof(*val))
1088 break;
1089
1090 val = (__le32 *) data;
1091 ar->hw.board_addr = le32_to_cpup(val);
1092
1093 ath6kl_dbg(ATH6KL_DBG_BOOT,
1094 "found board address ie 0x%x\n",
1095 ar->hw.board_addr);
1096 break;
Kalle Valo368b1b02011-11-14 19:31:38 +02001097 case ATH6KL_FW_IE_VIF_MAX:
1098 if (ie_len != sizeof(*val))
1099 break;
1100
1101 val = (__le32 *) data;
1102 ar->vif_max = min_t(unsigned int, le32_to_cpup(val),
1103 ATH6KL_VIF_MAX);
1104
Vasanthakumar Thiagarajanf1433792011-11-18 10:05:27 +05301105 if (ar->vif_max > 1 && !ar->p2p)
1106 ar->max_norm_iface = 2;
1107
Kalle Valo368b1b02011-11-14 19:31:38 +02001108 ath6kl_dbg(ATH6KL_DBG_BOOT,
1109 "found vif max ie %d\n", ar->vif_max);
1110 break;
Kalle Valo50d41232011-09-07 10:55:17 +03001111 default:
Kalle Valo6bc36432011-09-27 14:31:11 +03001112 ath6kl_dbg(ATH6KL_DBG_BOOT, "Unknown fw ie: %u\n",
Kalle Valo50d41232011-09-07 10:55:17 +03001113 le32_to_cpup(&hdr->id));
1114 break;
1115 }
1116
1117 len -= ie_len;
1118 data += ie_len;
1119 };
1120
1121 ret = 0;
1122out:
1123 release_firmware(fw);
1124
1125 return ret;
1126}
1127
Kalle Valo45eaa782012-01-17 20:09:05 +02001128int ath6kl_init_fetch_firmwares(struct ath6kl *ar)
Kalle Valo50d41232011-09-07 10:55:17 +03001129{
1130 int ret;
1131
1132 ret = ath6kl_fetch_board_file(ar);
1133 if (ret)
1134 return ret;
1135
Kalle Valo5f1127f2012-01-24 13:50:16 +02001136 ret = ath6kl_fetch_testmode_file(ar);
1137 if (ret)
1138 return ret;
1139
Jessica Wu78803772014-06-17 12:41:16 +03001140 ret = ath6kl_fetch_fw_apin(ar, ATH6KL_FW_API5_FILE);
1141 if (ret == 0) {
1142 ar->fw_api = 5;
1143 goto out;
1144 }
1145
Thomas Pedersenb1f47e32012-08-15 16:51:24 -07001146 ret = ath6kl_fetch_fw_apin(ar, ATH6KL_FW_API4_FILE);
1147 if (ret == 0) {
1148 ar->fw_api = 4;
1149 goto out;
1150 }
1151
Kalle Valo65a8b4c2011-12-16 20:53:41 +02001152 ret = ath6kl_fetch_fw_apin(ar, ATH6KL_FW_API3_FILE);
Kalle Valo6bc36432011-09-27 14:31:11 +03001153 if (ret == 0) {
Kalle Valo65a8b4c2011-12-16 20:53:41 +02001154 ar->fw_api = 3;
1155 goto out;
1156 }
1157
1158 ret = ath6kl_fetch_fw_apin(ar, ATH6KL_FW_API2_FILE);
1159 if (ret == 0) {
1160 ar->fw_api = 2;
1161 goto out;
Kalle Valo6bc36432011-09-27 14:31:11 +03001162 }
Kalle Valo50d41232011-09-07 10:55:17 +03001163
1164 ret = ath6kl_fetch_fw_api1(ar);
1165 if (ret)
1166 return ret;
1167
Kalle Valo65a8b4c2011-12-16 20:53:41 +02001168 ar->fw_api = 1;
1169
1170out:
1171 ath6kl_dbg(ATH6KL_DBG_BOOT, "using fw api %d\n", ar->fw_api);
Kalle Valo6bc36432011-09-27 14:31:11 +03001172
Kalle Valo50d41232011-09-07 10:55:17 +03001173 return 0;
1174}
1175
Kalle Valobdcd8172011-07-18 00:22:30 +03001176static int ath6kl_upload_board_file(struct ath6kl *ar)
1177{
1178 u32 board_address, board_ext_address, param;
Kevin Fang31024d92011-07-11 17:14:13 +08001179 u32 board_data_size, board_ext_data_size;
Kalle Valobdcd8172011-07-18 00:22:30 +03001180 int ret;
1181
Kalle Valo772c31e2011-09-07 10:55:16 +03001182 if (WARN_ON(ar->fw_board == NULL))
1183 return -ENOENT;
Kalle Valobdcd8172011-07-18 00:22:30 +03001184
Kevin Fang31024d92011-07-11 17:14:13 +08001185 /*
1186 * Determine where in Target RAM to write Board Data.
1187 * For AR6004, host determine Target RAM address for
1188 * writing board data.
1189 */
Kalle Valo0d4d72b2011-11-14 19:30:39 +02001190 if (ar->hw.board_addr != 0) {
Kalle Valob0fc7c12012-03-12 13:22:54 +02001191 board_address = ar->hw.board_addr;
Kalle Valo24fc32b2012-03-07 20:03:58 +02001192 ath6kl_bmi_write_hi32(ar, hi_board_data,
Kalle Valob0fc7c12012-03-12 13:22:54 +02001193 board_address);
Kevin Fang31024d92011-07-11 17:14:13 +08001194 } else {
Frederic Danis1c3d95e2014-06-02 21:19:46 +03001195 ret = ath6kl_bmi_read_hi32(ar, hi_board_data, &board_address);
1196 if (ret) {
1197 ath6kl_err("Failed to get board file target address.\n");
1198 return ret;
1199 }
Kevin Fang31024d92011-07-11 17:14:13 +08001200 }
1201
Kalle Valobdcd8172011-07-18 00:22:30 +03001202 /* determine where in target ram to write extended board data */
Frederic Danis1c3d95e2014-06-02 21:19:46 +03001203 ret = ath6kl_bmi_read_hi32(ar, hi_board_ext_data, &board_ext_address);
1204 if (ret) {
1205 ath6kl_err("Failed to get extended board file target address.\n");
1206 return ret;
1207 }
Kalle Valobdcd8172011-07-18 00:22:30 +03001208
Kalle Valo50e27402011-11-11 12:18:06 +02001209 if (ar->target_type == TARGET_TYPE_AR6003 &&
1210 board_ext_address == 0) {
Kalle Valobdcd8172011-07-18 00:22:30 +03001211 ath6kl_err("Failed to get board file target address.\n");
1212 return -EINVAL;
1213 }
1214
Kevin Fang31024d92011-07-11 17:14:13 +08001215 switch (ar->target_type) {
1216 case TARGET_TYPE_AR6003:
1217 board_data_size = AR6003_BOARD_DATA_SZ;
1218 board_ext_data_size = AR6003_BOARD_EXT_DATA_SZ;
Prasanna Kumarfb1ac2e2012-02-07 14:58:54 -08001219 if (ar->fw_board_len > (board_data_size + board_ext_data_size))
1220 board_ext_data_size = AR6003_BOARD_EXT_DATA_SZ_V2;
Kevin Fang31024d92011-07-11 17:14:13 +08001221 break;
1222 case TARGET_TYPE_AR6004:
1223 board_data_size = AR6004_BOARD_DATA_SZ;
1224 board_ext_data_size = AR6004_BOARD_EXT_DATA_SZ;
1225 break;
1226 default:
1227 WARN_ON(1);
1228 return -EINVAL;
Kevin Fang31024d92011-07-11 17:14:13 +08001229 }
1230
Kalle Valo50e27402011-11-11 12:18:06 +02001231 if (board_ext_address &&
1232 ar->fw_board_len == (board_data_size + board_ext_data_size)) {
Kalle Valobdcd8172011-07-18 00:22:30 +03001233 /* write extended board data */
Kalle Valo6bc36432011-09-27 14:31:11 +03001234 ath6kl_dbg(ATH6KL_DBG_BOOT,
1235 "writing extended board data to 0x%x (%d B)\n",
1236 board_ext_address, board_ext_data_size);
1237
Kalle Valobdcd8172011-07-18 00:22:30 +03001238 ret = ath6kl_bmi_write(ar, board_ext_address,
Kevin Fang31024d92011-07-11 17:14:13 +08001239 ar->fw_board + board_data_size,
1240 board_ext_data_size);
Kalle Valobdcd8172011-07-18 00:22:30 +03001241 if (ret) {
1242 ath6kl_err("Failed to write extended board data: %d\n",
1243 ret);
1244 return ret;
1245 }
1246
1247 /* record that extended board data is initialized */
Kevin Fang31024d92011-07-11 17:14:13 +08001248 param = (board_ext_data_size << 16) | 1;
1249
Kalle Valo24fc32b2012-03-07 20:03:58 +02001250 ath6kl_bmi_write_hi32(ar, hi_board_ext_data_config, param);
Kalle Valobdcd8172011-07-18 00:22:30 +03001251 }
1252
Kevin Fang31024d92011-07-11 17:14:13 +08001253 if (ar->fw_board_len < board_data_size) {
Kalle Valobdcd8172011-07-18 00:22:30 +03001254 ath6kl_err("Too small board file: %zu\n", ar->fw_board_len);
1255 ret = -EINVAL;
1256 return ret;
1257 }
1258
Kalle Valo6bc36432011-09-27 14:31:11 +03001259 ath6kl_dbg(ATH6KL_DBG_BOOT, "writing board file to 0x%x (%d B)\n",
1260 board_address, board_data_size);
1261
Kalle Valobdcd8172011-07-18 00:22:30 +03001262 ret = ath6kl_bmi_write(ar, board_address, ar->fw_board,
Kevin Fang31024d92011-07-11 17:14:13 +08001263 board_data_size);
Kalle Valobdcd8172011-07-18 00:22:30 +03001264
1265 if (ret) {
1266 ath6kl_err("Board file bmi write failed: %d\n", ret);
1267 return ret;
1268 }
1269
1270 /* record the fact that Board Data IS initialized */
Jessica Wu78803772014-06-17 12:41:16 +03001271 if ((ar->version.target_ver == AR6004_HW_1_3_VERSION) ||
1272 (ar->version.target_ver == AR6004_HW_3_0_VERSION))
1273 param = board_data_size;
1274 else
1275 param = 1;
1276
1277 ath6kl_bmi_write_hi32(ar, hi_board_data_initialized, param);
Kalle Valobdcd8172011-07-18 00:22:30 +03001278
1279 return ret;
1280}
1281
1282static int ath6kl_upload_otp(struct ath6kl *ar)
1283{
Kalle Valobdcd8172011-07-18 00:22:30 +03001284 u32 address, param;
Kalle Valobef26a72011-10-12 09:58:28 +03001285 bool from_hw = false;
Kalle Valobdcd8172011-07-18 00:22:30 +03001286 int ret;
1287
Kalle Valo50e27402011-11-11 12:18:06 +02001288 if (ar->fw_otp == NULL)
1289 return 0;
Kalle Valobdcd8172011-07-18 00:22:30 +03001290
Kalle Valoa01ac412011-09-07 10:55:17 +03001291 address = ar->hw.app_load_addr;
Kalle Valobdcd8172011-07-18 00:22:30 +03001292
Kalle Valoef548622011-10-01 09:43:09 +03001293 ath6kl_dbg(ATH6KL_DBG_BOOT, "writing otp to 0x%x (%zd B)\n", address,
Kalle Valo6bc36432011-09-27 14:31:11 +03001294 ar->fw_otp_len);
1295
Kalle Valobdcd8172011-07-18 00:22:30 +03001296 ret = ath6kl_bmi_fast_download(ar, address, ar->fw_otp,
1297 ar->fw_otp_len);
1298 if (ret) {
1299 ath6kl_err("Failed to upload OTP file: %d\n", ret);
1300 return ret;
1301 }
1302
Kalle Valo639d0b82011-09-12 12:48:09 +03001303 /* read firmware start address */
Kalle Valo80fb2682012-03-07 20:03:59 +02001304 ret = ath6kl_bmi_read_hi32(ar, hi_app_start, &address);
Kalle Valo639d0b82011-09-12 12:48:09 +03001305
1306 if (ret) {
1307 ath6kl_err("Failed to read hi_app_start: %d\n", ret);
1308 return ret;
1309 }
1310
Kalle Valobef26a72011-10-12 09:58:28 +03001311 if (ar->hw.app_start_override_addr == 0) {
1312 ar->hw.app_start_override_addr = address;
1313 from_hw = true;
1314 }
Kalle Valo639d0b82011-09-12 12:48:09 +03001315
Kalle Valobef26a72011-10-12 09:58:28 +03001316 ath6kl_dbg(ATH6KL_DBG_BOOT, "app_start_override_addr%s 0x%x\n",
1317 from_hw ? " (from hw)" : "",
Kalle Valo6bc36432011-09-27 14:31:11 +03001318 ar->hw.app_start_override_addr);
1319
Kalle Valobdcd8172011-07-18 00:22:30 +03001320 /* execute the OTP code */
Kalle Valobef26a72011-10-12 09:58:28 +03001321 ath6kl_dbg(ATH6KL_DBG_BOOT, "executing OTP at 0x%x\n",
1322 ar->hw.app_start_override_addr);
Kalle Valobdcd8172011-07-18 00:22:30 +03001323 param = 0;
Kalle Valobef26a72011-10-12 09:58:28 +03001324 ath6kl_bmi_execute(ar, ar->hw.app_start_override_addr, &param);
Kalle Valobdcd8172011-07-18 00:22:30 +03001325
1326 return ret;
1327}
1328
1329static int ath6kl_upload_firmware(struct ath6kl *ar)
1330{
Kalle Valobdcd8172011-07-18 00:22:30 +03001331 u32 address;
1332 int ret;
1333
Kalle Valo772c31e2011-09-07 10:55:16 +03001334 if (WARN_ON(ar->fw == NULL))
Kalle Valo50e27402011-11-11 12:18:06 +02001335 return 0;
Kalle Valobdcd8172011-07-18 00:22:30 +03001336
Kalle Valoa01ac412011-09-07 10:55:17 +03001337 address = ar->hw.app_load_addr;
Kalle Valobdcd8172011-07-18 00:22:30 +03001338
Kalle Valoef548622011-10-01 09:43:09 +03001339 ath6kl_dbg(ATH6KL_DBG_BOOT, "writing firmware to 0x%x (%zd B)\n",
Kalle Valo6bc36432011-09-27 14:31:11 +03001340 address, ar->fw_len);
1341
Kalle Valobdcd8172011-07-18 00:22:30 +03001342 ret = ath6kl_bmi_fast_download(ar, address, ar->fw, ar->fw_len);
1343
1344 if (ret) {
1345 ath6kl_err("Failed to write firmware: %d\n", ret);
1346 return ret;
1347 }
1348
Kevin Fang31024d92011-07-11 17:14:13 +08001349 /*
1350 * Set starting address for firmware
1351 * Don't need to setup app_start override addr on AR6004
1352 */
1353 if (ar->target_type != TARGET_TYPE_AR6004) {
Kalle Valoa01ac412011-09-07 10:55:17 +03001354 address = ar->hw.app_start_override_addr;
Kevin Fang31024d92011-07-11 17:14:13 +08001355 ath6kl_bmi_set_app_start(ar, address);
1356 }
Kalle Valobdcd8172011-07-18 00:22:30 +03001357 return ret;
1358}
1359
1360static int ath6kl_upload_patch(struct ath6kl *ar)
1361{
Kalle Valo24fc32b2012-03-07 20:03:58 +02001362 u32 address;
Kalle Valobdcd8172011-07-18 00:22:30 +03001363 int ret;
1364
Kalle Valo50e27402011-11-11 12:18:06 +02001365 if (ar->fw_patch == NULL)
1366 return 0;
Kalle Valobdcd8172011-07-18 00:22:30 +03001367
Kalle Valoa01ac412011-09-07 10:55:17 +03001368 address = ar->hw.dataset_patch_addr;
Kalle Valobdcd8172011-07-18 00:22:30 +03001369
Kalle Valoef548622011-10-01 09:43:09 +03001370 ath6kl_dbg(ATH6KL_DBG_BOOT, "writing patch to 0x%x (%zd B)\n",
Kalle Valo6bc36432011-09-27 14:31:11 +03001371 address, ar->fw_patch_len);
1372
Kalle Valobdcd8172011-07-18 00:22:30 +03001373 ret = ath6kl_bmi_write(ar, address, ar->fw_patch, ar->fw_patch_len);
1374 if (ret) {
1375 ath6kl_err("Failed to write patch file: %d\n", ret);
1376 return ret;
1377 }
1378
Kalle Valo24fc32b2012-03-07 20:03:58 +02001379 ath6kl_bmi_write_hi32(ar, hi_dset_list_head, address);
Kalle Valobdcd8172011-07-18 00:22:30 +03001380
1381 return 0;
1382}
1383
Alex Yangcd23c1c2012-01-17 15:32:29 +02001384static int ath6kl_upload_testscript(struct ath6kl *ar)
1385{
Kalle Valo24fc32b2012-03-07 20:03:58 +02001386 u32 address;
Alex Yangcd23c1c2012-01-17 15:32:29 +02001387 int ret;
1388
Kalle Valo5f1127f2012-01-24 13:50:16 +02001389 if (ar->testmode != 2)
Alex Yangcd23c1c2012-01-17 15:32:29 +02001390 return 0;
1391
1392 if (ar->fw_testscript == NULL)
1393 return 0;
1394
1395 address = ar->hw.testscript_addr;
1396
1397 ath6kl_dbg(ATH6KL_DBG_BOOT, "writing testscript to 0x%x (%zd B)\n",
Kalle Valo96f1fad2012-03-07 20:03:57 +02001398 address, ar->fw_testscript_len);
Alex Yangcd23c1c2012-01-17 15:32:29 +02001399
1400 ret = ath6kl_bmi_write(ar, address, ar->fw_testscript,
1401 ar->fw_testscript_len);
1402 if (ret) {
1403 ath6kl_err("Failed to write testscript file: %d\n", ret);
1404 return ret;
1405 }
1406
Kalle Valo24fc32b2012-03-07 20:03:58 +02001407 ath6kl_bmi_write_hi32(ar, hi_ota_testscript, address);
Jessica Wu78803772014-06-17 12:41:16 +03001408
1409 if ((ar->version.target_ver != AR6004_HW_1_3_VERSION) &&
1410 (ar->version.target_ver != AR6004_HW_3_0_VERSION))
1411 ath6kl_bmi_write_hi32(ar, hi_end_ram_reserve_sz, 4096);
1412
Kalle Valo24fc32b2012-03-07 20:03:58 +02001413 ath6kl_bmi_write_hi32(ar, hi_test_apps_related, 1);
Alex Yangcd23c1c2012-01-17 15:32:29 +02001414
1415 return 0;
1416}
1417
Kalle Valobdcd8172011-07-18 00:22:30 +03001418static int ath6kl_init_upload(struct ath6kl *ar)
1419{
1420 u32 param, options, sleep, address;
1421 int status = 0;
1422
Kevin Fang31024d92011-07-11 17:14:13 +08001423 if (ar->target_type != TARGET_TYPE_AR6003 &&
Kalle Valo96f1fad2012-03-07 20:03:57 +02001424 ar->target_type != TARGET_TYPE_AR6004)
Kalle Valobdcd8172011-07-18 00:22:30 +03001425 return -EINVAL;
1426
1427 /* temporarily disable system sleep */
1428 address = MBOX_BASE_ADDRESS + LOCAL_SCRATCH_ADDRESS;
1429 status = ath6kl_bmi_reg_read(ar, address, &param);
1430 if (status)
1431 return status;
1432
1433 options = param;
1434
1435 param |= ATH6KL_OPTION_SLEEP_DISABLE;
1436 status = ath6kl_bmi_reg_write(ar, address, param);
1437 if (status)
1438 return status;
1439
1440 address = RTC_BASE_ADDRESS + SYSTEM_SLEEP_ADDRESS;
1441 status = ath6kl_bmi_reg_read(ar, address, &param);
1442 if (status)
1443 return status;
1444
1445 sleep = param;
1446
1447 param |= SM(SYSTEM_SLEEP_DISABLE, 1);
1448 status = ath6kl_bmi_reg_write(ar, address, param);
1449 if (status)
1450 return status;
1451
1452 ath6kl_dbg(ATH6KL_DBG_TRC, "old options: %d, old sleep: %d\n",
1453 options, sleep);
1454
1455 /* program analog PLL register */
Kevin Fang31024d92011-07-11 17:14:13 +08001456 /* no need to control 40/44MHz clock on AR6004 */
1457 if (ar->target_type != TARGET_TYPE_AR6004) {
1458 status = ath6kl_bmi_reg_write(ar, ATH6KL_ANALOG_PLL_REGISTER,
1459 0xF9104001);
Kalle Valobdcd8172011-07-18 00:22:30 +03001460
Kevin Fang31024d92011-07-11 17:14:13 +08001461 if (status)
1462 return status;
Kalle Valobdcd8172011-07-18 00:22:30 +03001463
Kevin Fang31024d92011-07-11 17:14:13 +08001464 /* Run at 80/88MHz by default */
1465 param = SM(CPU_CLOCK_STANDARD, 1);
1466
1467 address = RTC_BASE_ADDRESS + CPU_CLOCK_ADDRESS;
1468 status = ath6kl_bmi_reg_write(ar, address, param);
1469 if (status)
1470 return status;
1471 }
Kalle Valobdcd8172011-07-18 00:22:30 +03001472
1473 param = 0;
1474 address = RTC_BASE_ADDRESS + LPO_CAL_ADDRESS;
1475 param = SM(LPO_CAL_ENABLE, 1);
1476 status = ath6kl_bmi_reg_write(ar, address, param);
1477 if (status)
1478 return status;
1479
1480 /* WAR to avoid SDIO CRC err */
Mohammed Shafi Shajakhana2e1be32012-09-27 18:19:53 +05301481 if (ar->hw.flags & ATH6KL_HW_SDIO_CRC_ERROR_WAR) {
Kalle Valobdcd8172011-07-18 00:22:30 +03001482 ath6kl_err("temporary war to avoid sdio crc error\n");
1483
Vasanthakumar Thiagarajanfa338be2012-05-22 12:52:48 +05301484 param = 0x28;
1485 address = GPIO_BASE_ADDRESS + GPIO_PIN9_ADDRESS;
1486 status = ath6kl_bmi_reg_write(ar, address, param);
1487 if (status)
1488 return status;
1489
Kalle Valobdcd8172011-07-18 00:22:30 +03001490 param = 0x20;
1491
1492 address = GPIO_BASE_ADDRESS + GPIO_PIN10_ADDRESS;
1493 status = ath6kl_bmi_reg_write(ar, address, param);
1494 if (status)
1495 return status;
1496
1497 address = GPIO_BASE_ADDRESS + GPIO_PIN11_ADDRESS;
1498 status = ath6kl_bmi_reg_write(ar, address, param);
1499 if (status)
1500 return status;
1501
1502 address = GPIO_BASE_ADDRESS + GPIO_PIN12_ADDRESS;
1503 status = ath6kl_bmi_reg_write(ar, address, param);
1504 if (status)
1505 return status;
1506
1507 address = GPIO_BASE_ADDRESS + GPIO_PIN13_ADDRESS;
1508 status = ath6kl_bmi_reg_write(ar, address, param);
1509 if (status)
1510 return status;
1511 }
1512
1513 /* write EEPROM data to Target RAM */
1514 status = ath6kl_upload_board_file(ar);
1515 if (status)
1516 return status;
1517
1518 /* transfer One time Programmable data */
1519 status = ath6kl_upload_otp(ar);
1520 if (status)
1521 return status;
1522
1523 /* Download Target firmware */
1524 status = ath6kl_upload_firmware(ar);
1525 if (status)
1526 return status;
1527
1528 status = ath6kl_upload_patch(ar);
1529 if (status)
1530 return status;
1531
Alex Yangcd23c1c2012-01-17 15:32:29 +02001532 /* Download the test script */
1533 status = ath6kl_upload_testscript(ar);
1534 if (status)
1535 return status;
1536
Kalle Valobdcd8172011-07-18 00:22:30 +03001537 /* Restore system sleep */
1538 address = RTC_BASE_ADDRESS + SYSTEM_SLEEP_ADDRESS;
1539 status = ath6kl_bmi_reg_write(ar, address, sleep);
1540 if (status)
1541 return status;
1542
1543 address = MBOX_BASE_ADDRESS + LOCAL_SCRATCH_ADDRESS;
1544 param = options | 0x20;
1545 status = ath6kl_bmi_reg_write(ar, address, param);
1546 if (status)
1547 return status;
1548
Kalle Valobdcd8172011-07-18 00:22:30 +03001549 return status;
1550}
1551
Kalle Valo45eaa782012-01-17 20:09:05 +02001552int ath6kl_init_hw_params(struct ath6kl *ar)
Kalle Valoa01ac412011-09-07 10:55:17 +03001553{
Kalle Valo1b46dc042012-01-31 21:26:22 +02001554 const struct ath6kl_hw *uninitialized_var(hw);
Kalle Valo856f4b312011-11-14 19:30:29 +02001555 int i;
Kalle Valobef26a72011-10-12 09:58:28 +03001556
Kalle Valo856f4b312011-11-14 19:30:29 +02001557 for (i = 0; i < ARRAY_SIZE(hw_list); i++) {
1558 hw = &hw_list[i];
Kalle Valobef26a72011-10-12 09:58:28 +03001559
Kalle Valo856f4b312011-11-14 19:30:29 +02001560 if (hw->id == ar->version.target_ver)
1561 break;
1562 }
1563
1564 if (i == ARRAY_SIZE(hw_list)) {
Kalle Valoa01ac412011-09-07 10:55:17 +03001565 ath6kl_err("Unsupported hardware version: 0x%x\n",
1566 ar->version.target_ver);
1567 return -EINVAL;
1568 }
1569
Kalle Valo856f4b312011-11-14 19:30:29 +02001570 ar->hw = *hw;
1571
Kalle Valo6bc36432011-09-27 14:31:11 +03001572 ath6kl_dbg(ATH6KL_DBG_BOOT,
1573 "target_ver 0x%x target_type 0x%x dataset_patch 0x%x app_load_addr 0x%x\n",
1574 ar->version.target_ver, ar->target_type,
1575 ar->hw.dataset_patch_addr, ar->hw.app_load_addr);
1576 ath6kl_dbg(ATH6KL_DBG_BOOT,
1577 "app_start_override_addr 0x%x board_ext_data_addr 0x%x reserved_ram_size 0x%x",
1578 ar->hw.app_start_override_addr, ar->hw.board_ext_data_addr,
1579 ar->hw.reserved_ram_size);
Ryan Hsu39586bf2011-12-13 17:11:07 +08001580 ath6kl_dbg(ATH6KL_DBG_BOOT,
1581 "refclk_hz %d uarttx_pin %d",
1582 ar->hw.refclk_hz, ar->hw.uarttx_pin);
Kalle Valo6bc36432011-09-27 14:31:11 +03001583
Kalle Valoa01ac412011-09-07 10:55:17 +03001584 return 0;
1585}
1586
Kalle Valo293badf2011-11-14 19:30:54 +02001587static const char *ath6kl_init_get_hif_name(enum ath6kl_hif_type type)
1588{
1589 switch (type) {
1590 case ATH6KL_HIF_TYPE_SDIO:
1591 return "sdio";
1592 case ATH6KL_HIF_TYPE_USB:
1593 return "usb";
1594 }
1595
1596 return NULL;
1597}
1598
Kalle Valoe72c2742013-03-06 08:56:06 +02001599
1600static const struct fw_capa_str_map {
1601 int id;
1602 const char *name;
1603} fw_capa_map[] = {
1604 { ATH6KL_FW_CAPABILITY_HOST_P2P, "host-p2p" },
1605 { ATH6KL_FW_CAPABILITY_SCHED_SCAN, "sched-scan" },
1606 { ATH6KL_FW_CAPABILITY_STA_P2PDEV_DUPLEX, "sta-p2pdev-duplex" },
1607 { ATH6KL_FW_CAPABILITY_INACTIVITY_TIMEOUT, "inactivity-timeout" },
1608 { ATH6KL_FW_CAPABILITY_RSN_CAP_OVERRIDE, "rsn-cap-override" },
1609 { ATH6KL_FW_CAPABILITY_WOW_MULTICAST_FILTER, "wow-mc-filter" },
1610 { ATH6KL_FW_CAPABILITY_BMISS_ENHANCE, "bmiss-enhance" },
1611 { ATH6KL_FW_CAPABILITY_SCHED_SCAN_MATCH_LIST, "sscan-match-list" },
1612 { ATH6KL_FW_CAPABILITY_RSSI_SCAN_THOLD, "rssi-scan-thold" },
1613 { ATH6KL_FW_CAPABILITY_CUSTOM_MAC_ADDR, "custom-mac-addr" },
1614 { ATH6KL_FW_CAPABILITY_TX_ERR_NOTIFY, "tx-err-notify" },
1615 { ATH6KL_FW_CAPABILITY_REGDOMAIN, "regdomain" },
1616 { ATH6KL_FW_CAPABILITY_SCHED_SCAN_V2, "sched-scan-v2" },
1617 { ATH6KL_FW_CAPABILITY_HEART_BEAT_POLL, "hb-poll" },
Kalle Valoeba95bc2014-06-17 12:40:52 +03001618 { ATH6KL_FW_CAPABILITY_64BIT_RATES, "64bit-rates" },
1619 { ATH6KL_FW_CAPABILITY_AP_INACTIVITY_MINS, "ap-inactivity-mins" },
1620 { ATH6KL_FW_CAPABILITY_MAP_LP_ENDPOINT, "map-lp-endpoint" },
Jessica Wuc1d32d32014-06-17 12:41:10 +03001621 { ATH6KL_FW_CAPABILITY_RATETABLE_MCS15, "ratetable-mcs15" },
Jessica Wu78803772014-06-17 12:41:16 +03001622 { ATH6KL_FW_CAPABILITY_NO_IP_CHECKSUM, "no-ip-checksum" },
Kalle Valoe72c2742013-03-06 08:56:06 +02001623};
1624
1625static const char *ath6kl_init_get_fw_capa_name(unsigned int id)
1626{
1627 int i;
1628
1629 for (i = 0; i < ARRAY_SIZE(fw_capa_map); i++) {
1630 if (fw_capa_map[i].id == id)
1631 return fw_capa_map[i].name;
1632 }
1633
1634 return "<unknown>";
1635}
1636
1637static void ath6kl_init_get_fwcaps(struct ath6kl *ar, char *buf, size_t buf_len)
1638{
1639 u8 *data = (u8 *) ar->fw_capabilities;
1640 size_t trunc_len, len = 0;
1641 int i, index, bit;
1642 char *trunc = "...";
1643
1644 for (i = 0; i < ATH6KL_FW_CAPABILITY_MAX; i++) {
1645 index = i / 8;
1646 bit = i % 8;
1647
1648 if (index >= sizeof(ar->fw_capabilities) * 4)
1649 break;
1650
1651 if (buf_len - len < 4) {
1652 ath6kl_warn("firmware capability buffer too small!\n");
1653
1654 /* add "..." to the end of string */
1655 trunc_len = strlen(trunc) + 1;
1656 strncpy(buf + buf_len - trunc_len, trunc, trunc_len);
1657
1658 return;
1659 }
1660
1661 if (data[index] & (1 << bit)) {
1662 len += scnprintf(buf + len, buf_len - len, "%s,",
1663 ath6kl_init_get_fw_capa_name(i));
1664 }
1665 }
1666
1667 /* overwrite the last comma */
1668 if (len > 0)
1669 len--;
1670
1671 buf[len] = '\0';
1672}
1673
Kalle Valoec1461d2013-03-09 12:01:35 +02001674static int ath6kl_init_hw_reset(struct ath6kl *ar)
1675{
1676 ath6kl_dbg(ATH6KL_DBG_BOOT, "cold resetting the device");
1677
1678 return ath6kl_diag_write32(ar, RESET_CONTROL_ADDRESS,
1679 cpu_to_le32(RESET_CONTROL_COLD_RST));
1680}
1681
Vasanthakumar Thiagarajanede615d2012-08-29 19:40:25 +05301682static int __ath6kl_init_hw_start(struct ath6kl *ar)
Kalle Valo20459ee2011-10-27 18:48:37 +03001683{
1684 long timeleft;
1685 int ret, i;
Kalle Valoe72c2742013-03-06 08:56:06 +02001686 char buf[200];
Kalle Valo20459ee2011-10-27 18:48:37 +03001687
Kalle Valo5fe4dff2011-10-30 21:16:15 +02001688 ath6kl_dbg(ATH6KL_DBG_BOOT, "hw start\n");
1689
Kalle Valo20459ee2011-10-27 18:48:37 +03001690 ret = ath6kl_hif_power_on(ar);
1691 if (ret)
1692 return ret;
1693
1694 ret = ath6kl_configure_target(ar);
1695 if (ret)
1696 goto err_power_off;
1697
1698 ret = ath6kl_init_upload(ar);
1699 if (ret)
1700 goto err_power_off;
1701
1702 /* Do we need to finish the BMI phase */
Mohammed Shafi Shajakhanbf978142013-02-22 20:20:21 +05301703 ret = ath6kl_bmi_done(ar);
1704 if (ret)
Kalle Valo20459ee2011-10-27 18:48:37 +03001705 goto err_power_off;
Kalle Valo20459ee2011-10-27 18:48:37 +03001706
1707 /*
1708 * The reason we have to wait for the target here is that the
1709 * driver layer has to init BMI in order to set the host block
1710 * size.
1711 */
Kalle Valo4e1609c2013-03-09 12:01:43 +02001712 ret = ath6kl_htc_wait_target(ar->htc_target);
Kalle Valo44af3442013-03-09 12:01:50 +02001713
1714 if (ret == -ETIMEDOUT) {
1715 /*
1716 * Most likely USB target is in odd state after reboot and
1717 * needs a reset. A cold reset makes the whole device
1718 * disappear from USB bus and initialisation starts from
1719 * beginning.
1720 */
1721 ath6kl_warn("htc wait target timed out, resetting device\n");
1722 ath6kl_init_hw_reset(ar);
1723 goto err_power_off;
1724 } else if (ret) {
Kalle Valo4e1609c2013-03-09 12:01:43 +02001725 ath6kl_err("htc wait target failed: %d\n", ret);
Kalle Valo20459ee2011-10-27 18:48:37 +03001726 goto err_power_off;
1727 }
1728
Kalle Valo4e1609c2013-03-09 12:01:43 +02001729 ret = ath6kl_init_service_ep(ar);
1730 if (ret) {
1731 ath6kl_err("Endpoint service initilisation failed: %d\n", ret);
Kalle Valo20459ee2011-10-27 18:48:37 +03001732 goto err_cleanup_scatter;
1733 }
1734
1735 /* setup credit distribution */
Kalle Valoe76ac2bf2012-03-25 17:15:27 +03001736 ath6kl_htc_credit_setup(ar->htc_target, &ar->credit_state_info);
Kalle Valo20459ee2011-10-27 18:48:37 +03001737
1738 /* start HTC */
1739 ret = ath6kl_htc_start(ar->htc_target);
1740 if (ret) {
1741 /* FIXME: call this */
1742 ath6kl_cookie_cleanup(ar);
1743 goto err_cleanup_scatter;
1744 }
1745
1746 /* Wait for Wmi event to be ready */
1747 timeleft = wait_event_interruptible_timeout(ar->event_wq,
1748 test_bit(WMI_READY,
1749 &ar->flag),
1750 WMI_TIMEOUT);
Raja Maniab1ef142013-03-19 09:48:35 +05301751 if (timeleft <= 0) {
1752 clear_bit(WMI_READY, &ar->flag);
1753 ath6kl_err("wmi is not ready or wait was interrupted: %ld\n",
1754 timeleft);
1755 ret = -EIO;
1756 goto err_htc_stop;
1757 }
Kalle Valo20459ee2011-10-27 18:48:37 +03001758
1759 ath6kl_dbg(ATH6KL_DBG_BOOT, "firmware booted\n");
1760
Kalle Valo293badf2011-11-14 19:30:54 +02001761 if (test_and_clear_bit(FIRST_BOOT, &ar->flag)) {
Kalle Valo65a8b4c2011-12-16 20:53:41 +02001762 ath6kl_info("%s %s fw %s api %d%s\n",
Kalle Valo293badf2011-11-14 19:30:54 +02001763 ar->hw.name,
1764 ath6kl_init_get_hif_name(ar->hif_type),
1765 ar->wiphy->fw_version,
Kalle Valo65a8b4c2011-12-16 20:53:41 +02001766 ar->fw_api,
Kalle Valo293badf2011-11-14 19:30:54 +02001767 test_bit(TESTMODE, &ar->flag) ? " testmode" : "");
Kalle Valoe72c2742013-03-06 08:56:06 +02001768 ath6kl_init_get_fwcaps(ar, buf, sizeof(buf));
1769 ath6kl_info("firmware supports: %s\n", buf);
Kalle Valo293badf2011-11-14 19:30:54 +02001770 }
1771
Kalle Valo20459ee2011-10-27 18:48:37 +03001772 if (ar->version.abi_ver != ATH6KL_ABI_VERSION) {
1773 ath6kl_err("abi version mismatch: host(0x%x), target(0x%x)\n",
1774 ATH6KL_ABI_VERSION, ar->version.abi_ver);
1775 ret = -EIO;
1776 goto err_htc_stop;
1777 }
1778
Kalle Valo20459ee2011-10-27 18:48:37 +03001779 ath6kl_dbg(ATH6KL_DBG_TRC, "%s: wmi is ready\n", __func__);
1780
1781 /* communicate the wmi protocol verision to the target */
1782 /* FIXME: return error */
1783 if ((ath6kl_set_host_app_area(ar)) != 0)
1784 ath6kl_err("unable to set the host app area\n");
1785
Kalle Valo71f96ee2011-11-14 19:31:30 +02001786 for (i = 0; i < ar->vif_max; i++) {
Kalle Valo20459ee2011-10-27 18:48:37 +03001787 ret = ath6kl_target_config_wlan_params(ar, i);
1788 if (ret)
1789 goto err_htc_stop;
1790 }
1791
1792 return 0;
1793
1794err_htc_stop:
1795 ath6kl_htc_stop(ar->htc_target);
1796err_cleanup_scatter:
1797 ath6kl_hif_cleanup_scatter(ar);
1798err_power_off:
1799 ath6kl_hif_power_off(ar);
1800
1801 return ret;
1802}
1803
Vasanthakumar Thiagarajanede615d2012-08-29 19:40:25 +05301804int ath6kl_init_hw_start(struct ath6kl *ar)
1805{
1806 int err;
1807
1808 err = __ath6kl_init_hw_start(ar);
1809 if (err)
1810 return err;
1811 ar->state = ATH6KL_STATE_ON;
1812 return 0;
1813}
1814
1815static int __ath6kl_init_hw_stop(struct ath6kl *ar)
Kalle Valo5fe4dff2011-10-30 21:16:15 +02001816{
1817 int ret;
1818
1819 ath6kl_dbg(ATH6KL_DBG_BOOT, "hw stop\n");
1820
1821 ath6kl_htc_stop(ar->htc_target);
1822
1823 ath6kl_hif_stop(ar);
1824
1825 ath6kl_bmi_reset(ar);
1826
1827 ret = ath6kl_hif_power_off(ar);
1828 if (ret)
1829 ath6kl_warn("failed to power off hif: %d\n", ret);
1830
Vasanthakumar Thiagarajanede615d2012-08-29 19:40:25 +05301831 return 0;
1832}
Kalle Valo76a9fbe2011-11-01 08:44:28 +02001833
Vasanthakumar Thiagarajanede615d2012-08-29 19:40:25 +05301834int ath6kl_init_hw_stop(struct ath6kl *ar)
1835{
1836 int err;
1837
1838 err = __ath6kl_init_hw_stop(ar);
1839 if (err)
1840 return err;
1841 ar->state = ATH6KL_STATE_OFF;
Kalle Valo5fe4dff2011-10-30 21:16:15 +02001842 return 0;
1843}
1844
Vasanthakumar Thiagarajan84caf802012-08-29 19:40:26 +05301845void ath6kl_init_hw_restart(struct ath6kl *ar)
1846{
Vasanthakumar Thiagarajan58109df2012-09-11 12:07:00 +05301847 clear_bit(WMI_READY, &ar->flag);
1848
Vasanthakumar Thiagarajan84caf802012-08-29 19:40:26 +05301849 ath6kl_cfg80211_stop_all(ar);
1850
Vasanthakumar Thiagarajan58109df2012-09-11 12:07:00 +05301851 if (__ath6kl_init_hw_stop(ar)) {
1852 ath6kl_dbg(ATH6KL_DBG_RECOVERY, "Failed to stop during fw error recovery\n");
Vasanthakumar Thiagarajan84caf802012-08-29 19:40:26 +05301853 return;
Vasanthakumar Thiagarajan58109df2012-09-11 12:07:00 +05301854 }
Vasanthakumar Thiagarajan84caf802012-08-29 19:40:26 +05301855
1856 if (__ath6kl_init_hw_start(ar)) {
1857 ath6kl_dbg(ATH6KL_DBG_RECOVERY, "Failed to restart during fw error recovery\n");
1858 return;
1859 }
Vasanthakumar Thiagarajan84caf802012-08-29 19:40:26 +05301860}
1861
Kalle Valobdcd8172011-07-18 00:22:30 +03001862void ath6kl_stop_txrx(struct ath6kl *ar)
1863{
Vasanthakumar Thiagarajan990bd912011-10-25 19:34:20 +05301864 struct ath6kl_vif *vif, *tmp_vif;
Vasanthakumar Thiagarajan1d2a4452012-01-21 15:22:53 +05301865 int i;
Kalle Valobdcd8172011-07-18 00:22:30 +03001866
1867 set_bit(DESTROY_IN_PROGRESS, &ar->flag);
1868
1869 if (down_interruptible(&ar->sem)) {
1870 ath6kl_err("down_interruptible failed\n");
1871 return;
1872 }
1873
Vasanthakumar Thiagarajan1d2a4452012-01-21 15:22:53 +05301874 for (i = 0; i < AP_MAX_NUM_STA; i++)
1875 aggr_reset_state(ar->sta_list[i].aggr_conn);
1876
Vasanthakumar Thiagarajan11f6e402011-11-01 16:38:50 +05301877 spin_lock_bh(&ar->list_lock);
Vasanthakumar Thiagarajan990bd912011-10-25 19:34:20 +05301878 list_for_each_entry_safe(vif, tmp_vif, &ar->vif_list, list) {
1879 list_del(&vif->list);
Vasanthakumar Thiagarajan11f6e402011-11-01 16:38:50 +05301880 spin_unlock_bh(&ar->list_lock);
Mohammed Shafi Shajakhan355b3a92012-11-16 18:23:36 +05301881 ath6kl_cfg80211_vif_stop(vif, test_bit(WMI_READY, &ar->flag));
Vasanthakumar Thiagarajan27929722011-10-25 19:34:21 +05301882 rtnl_lock();
Kalle Valoc25889e2012-01-17 20:08:27 +02001883 ath6kl_cfg80211_vif_cleanup(vif);
Vasanthakumar Thiagarajan27929722011-10-25 19:34:21 +05301884 rtnl_unlock();
Vasanthakumar Thiagarajan11f6e402011-11-01 16:38:50 +05301885 spin_lock_bh(&ar->list_lock);
Vasanthakumar Thiagarajan990bd912011-10-25 19:34:20 +05301886 }
Vasanthakumar Thiagarajan11f6e402011-11-01 16:38:50 +05301887 spin_unlock_bh(&ar->list_lock);
Kalle Valobdcd8172011-07-18 00:22:30 +03001888
Vasanthakumar Thiagarajan6db8fa52011-10-25 19:34:16 +05301889 clear_bit(WMI_READY, &ar->flag);
Kalle Valobdcd8172011-07-18 00:22:30 +03001890
Vasanthakumar Thiagarajanf32036e2013-06-20 12:47:20 +05301891 if (ar->fw_recovery.enable)
1892 del_timer_sync(&ar->fw_recovery.hb_timer);
1893
Vasanthakumar Thiagarajan6db8fa52011-10-25 19:34:16 +05301894 /*
1895 * After wmi_shudown all WMI events will be dropped. We
1896 * need to cleanup the buffers allocated in AP mode and
1897 * give disconnect notification to stack, which usually
1898 * happens in the disconnect_event. Simulate the disconnect
1899 * event by calling the function directly. Sometimes
1900 * disconnect_event will be received when the debug logs
1901 * are collected.
1902 */
1903 ath6kl_wmi_shutdown(ar->wmi);
Kalle Valobdcd8172011-07-18 00:22:30 +03001904
Vasanthakumar Thiagarajan6db8fa52011-10-25 19:34:16 +05301905 clear_bit(WMI_ENABLED, &ar->flag);
1906 if (ar->htc_target) {
1907 ath6kl_dbg(ATH6KL_DBG_TRC, "%s: shut down htc\n", __func__);
1908 ath6kl_htc_stop(ar->htc_target);
Kalle Valobdcd8172011-07-18 00:22:30 +03001909 }
1910
Vasanthakumar Thiagarajan6db8fa52011-10-25 19:34:16 +05301911 /*
1912 * Try to reset the device if we can. The driver may have been
1913 * configure NOT to reset the target during a debug session.
1914 */
Kalle Valoec1461d2013-03-09 12:01:35 +02001915 ath6kl_init_hw_reset(ar);
Kalle Valobdcd8172011-07-18 00:22:30 +03001916
Vasanthakumar Thiagarajane8ad9a02012-02-14 20:32:59 +05301917 up(&ar->sem);
Kalle Valobdcd8172011-07-18 00:22:30 +03001918}
Kalle Valod6a434d2012-01-17 20:09:36 +02001919EXPORT_SYMBOL(ath6kl_stop_txrx);