blob: 0c4e3e33577349ce755ed135fa86e65a46295b8a [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,
Kalle Valo856f4b312011-11-14 19:30:29 +020045
46 /* hw2.0 needs override address hardcoded */
47 .app_start_override_addr = 0x944C00,
Kalle Valod1a94212011-11-14 19:31:23 +020048
Kalle Valoc0038972011-12-16 20:53:31 +020049 .fw = {
50 .dir = AR6003_HW_2_0_FW_DIR,
51 .otp = AR6003_HW_2_0_OTP_FILE,
52 .fw = AR6003_HW_2_0_FIRMWARE_FILE,
53 .tcmd = AR6003_HW_2_0_TCMD_FIRMWARE_FILE,
54 .patch = AR6003_HW_2_0_PATCH_FILE,
Kalle Valoc0038972011-12-16 20:53:31 +020055 },
56
Kalle Valod1a94212011-11-14 19:31:23 +020057 .fw_board = AR6003_HW_2_0_BOARD_DATA_FILE,
58 .fw_default_board = AR6003_HW_2_0_DEFAULT_BOARD_DATA_FILE,
Kalle Valo856f4b312011-11-14 19:30:29 +020059 },
60 {
Kalle Valo0d0192ba2011-11-14 19:31:07 +020061 .id = AR6003_HW_2_1_1_VERSION,
Kalle Valo293badf2011-11-14 19:30:54 +020062 .name = "ar6003 hw 2.1.1",
Kalle Valo856f4b312011-11-14 19:30:29 +020063 .dataset_patch_addr = 0x57ff74,
64 .app_load_addr = 0x1234,
65 .board_ext_data_addr = 0x542330,
66 .reserved_ram_size = 512,
Ryan Hsu39586bf2011-12-13 17:11:07 +080067 .refclk_hz = 26000000,
68 .uarttx_pin = 8,
Alex Yangcd23c1c2012-01-17 15:32:29 +020069 .testscript_addr = 0x57ef74,
Kalle Valod1a94212011-11-14 19:31:23 +020070
Kalle Valoc0038972011-12-16 20:53:31 +020071 .fw = {
72 .dir = AR6003_HW_2_1_1_FW_DIR,
73 .otp = AR6003_HW_2_1_1_OTP_FILE,
74 .fw = AR6003_HW_2_1_1_FIRMWARE_FILE,
75 .tcmd = AR6003_HW_2_1_1_TCMD_FIRMWARE_FILE,
76 .patch = AR6003_HW_2_1_1_PATCH_FILE,
Alex Yangcd23c1c2012-01-17 15:32:29 +020077 .utf = AR6003_HW_2_1_1_UTF_FIRMWARE_FILE,
78 .testscript = AR6003_HW_2_1_1_TESTSCRIPT_FILE,
Kalle Valoc0038972011-12-16 20:53:31 +020079 },
80
Kalle Valod1a94212011-11-14 19:31:23 +020081 .fw_board = AR6003_HW_2_1_1_BOARD_DATA_FILE,
Kalle Valo05aab172012-03-07 20:04:00 +020082 .fw_default_board = AR6003_HW_2_1_1_DEFAULT_BOARD_DATA_FILE,
Kalle Valo856f4b312011-11-14 19:30:29 +020083 },
84 {
Kalle Valo0d0192ba2011-11-14 19:31:07 +020085 .id = AR6004_HW_1_0_VERSION,
Kalle Valo293badf2011-11-14 19:30:54 +020086 .name = "ar6004 hw 1.0",
Kalle Valo856f4b312011-11-14 19:30:29 +020087 .dataset_patch_addr = 0x57e884,
88 .app_load_addr = 0x1234,
89 .board_ext_data_addr = 0x437000,
90 .reserved_ram_size = 19456,
Kalle Valo0d4d72b2011-11-14 19:30:39 +020091 .board_addr = 0x433900,
Ryan Hsu39586bf2011-12-13 17:11:07 +080092 .refclk_hz = 26000000,
93 .uarttx_pin = 11,
Kalle Valod1a94212011-11-14 19:31:23 +020094
Kalle Valoc0038972011-12-16 20:53:31 +020095 .fw = {
96 .dir = AR6004_HW_1_0_FW_DIR,
97 .fw = AR6004_HW_1_0_FIRMWARE_FILE,
Kalle Valoc0038972011-12-16 20:53:31 +020098 },
99
Kalle Valod1a94212011-11-14 19:31:23 +0200100 .fw_board = AR6004_HW_1_0_BOARD_DATA_FILE,
101 .fw_default_board = AR6004_HW_1_0_DEFAULT_BOARD_DATA_FILE,
Kalle Valo856f4b312011-11-14 19:30:29 +0200102 },
103 {
Kalle Valo0d0192ba2011-11-14 19:31:07 +0200104 .id = AR6004_HW_1_1_VERSION,
Kalle Valo293badf2011-11-14 19:30:54 +0200105 .name = "ar6004 hw 1.1",
Kalle Valo856f4b312011-11-14 19:30:29 +0200106 .dataset_patch_addr = 0x57e884,
107 .app_load_addr = 0x1234,
108 .board_ext_data_addr = 0x437000,
109 .reserved_ram_size = 11264,
Kalle Valo0d4d72b2011-11-14 19:30:39 +0200110 .board_addr = 0x43d400,
Ryan Hsu39586bf2011-12-13 17:11:07 +0800111 .refclk_hz = 40000000,
112 .uarttx_pin = 11,
Kalle Valod1a94212011-11-14 19:31:23 +0200113
Kalle Valoc0038972011-12-16 20:53:31 +0200114 .fw = {
115 .dir = AR6004_HW_1_1_FW_DIR,
116 .fw = AR6004_HW_1_1_FIRMWARE_FILE,
Kalle Valoc0038972011-12-16 20:53:31 +0200117 },
118
Kalle Valod1a94212011-11-14 19:31:23 +0200119 .fw_board = AR6004_HW_1_1_BOARD_DATA_FILE,
120 .fw_default_board = AR6004_HW_1_1_DEFAULT_BOARD_DATA_FILE,
Kalle Valo856f4b312011-11-14 19:30:29 +0200121 },
Ray Chen6146ca62012-04-11 10:03:13 +0800122 {
123 .id = AR6004_HW_1_2_VERSION,
124 .name = "ar6004 hw 1.2",
125 .dataset_patch_addr = 0x436ecc,
126 .app_load_addr = 0x1234,
127 .board_ext_data_addr = 0x437000,
128 .reserved_ram_size = 9216,
129 .board_addr = 0x435c00,
130 .refclk_hz = 40000000,
131 .uarttx_pin = 11,
132
133 .fw = {
134 .dir = AR6004_HW_1_2_FW_DIR,
135 .fw = AR6004_HW_1_2_FIRMWARE_FILE,
136 },
137 .fw_board = AR6004_HW_1_2_BOARD_DATA_FILE,
138 .fw_default_board = AR6004_HW_1_2_DEFAULT_BOARD_DATA_FILE,
139 },
Kalle Valo856f4b312011-11-14 19:30:29 +0200140};
141
Kalle Valobdcd8172011-07-18 00:22:30 +0300142/*
143 * Include definitions here that can be used to tune the WLAN module
144 * behavior. Different customers can tune the behavior as per their needs,
145 * here.
146 */
147
148/*
149 * This configuration item enable/disable keepalive support.
150 * Keepalive support: In the absence of any data traffic to AP, null
151 * frames will be sent to the AP at periodic interval, to keep the association
152 * active. This configuration item defines the periodic interval.
153 * Use value of zero to disable keepalive support
154 * Default: 60 seconds
155 */
156#define WLAN_CONFIG_KEEP_ALIVE_INTERVAL 60
157
158/*
159 * This configuration item sets the value of disconnect timeout
160 * Firmware delays sending the disconnec event to the host for this
161 * timeout after is gets disconnected from the current AP.
162 * If the firmware successly roams within the disconnect timeout
163 * it sends a new connect event
164 */
165#define WLAN_CONFIG_DISCONNECT_TIMEOUT 10
166
Kalle Valobdcd8172011-07-18 00:22:30 +0300167
Kalle Valobdcd8172011-07-18 00:22:30 +0300168#define ATH6KL_DATA_OFFSET 64
169struct sk_buff *ath6kl_buf_alloc(int size)
170{
171 struct sk_buff *skb;
172 u16 reserved;
173
174 /* Add chacheline space at front and back of buffer */
175 reserved = (2 * L1_CACHE_BYTES) + ATH6KL_DATA_OFFSET +
Vasanthakumar Thiagarajan1df94a82011-08-17 18:45:10 +0530176 sizeof(struct htc_packet) + ATH6KL_HTC_ALIGN_BYTES;
Kalle Valobdcd8172011-07-18 00:22:30 +0300177 skb = dev_alloc_skb(size + reserved);
178
179 if (skb)
180 skb_reserve(skb, reserved - L1_CACHE_BYTES);
181 return skb;
182}
183
Vasanthakumar Thiagarajane29f25f2011-10-25 19:34:15 +0530184void ath6kl_init_profile_info(struct ath6kl_vif *vif)
Kalle Valobdcd8172011-07-18 00:22:30 +0300185{
Vasanthakumar Thiagarajan34503342011-10-25 19:34:02 +0530186 vif->ssid_len = 0;
187 memset(vif->ssid, 0, sizeof(vif->ssid));
188
189 vif->dot11_auth_mode = OPEN_AUTH;
190 vif->auth_mode = NONE_AUTH;
191 vif->prwise_crypto = NONE_CRYPT;
192 vif->prwise_crypto_len = 0;
193 vif->grp_crypto = NONE_CRYPT;
194 vif->grp_crypto_len = 0;
Vasanthakumar Thiagarajan6f2a73f2011-10-25 19:34:06 +0530195 memset(vif->wep_key_list, 0, sizeof(vif->wep_key_list));
Vasanthakumar Thiagarajan8c8b65e2011-10-25 19:34:04 +0530196 memset(vif->req_bssid, 0, sizeof(vif->req_bssid));
197 memset(vif->bssid, 0, sizeof(vif->bssid));
Vasanthakumar Thiagarajanf74bac52011-10-25 19:34:05 +0530198 vif->bss_ch = 0;
Kalle Valobdcd8172011-07-18 00:22:30 +0300199}
200
Kalle Valobdcd8172011-07-18 00:22:30 +0300201static int ath6kl_set_host_app_area(struct ath6kl *ar)
202{
203 u32 address, data;
204 struct host_app_area host_app_area;
205
206 /* Fetch the address of the host_app_area_s
207 * instance in the host interest area */
208 address = ath6kl_get_hi_item_addr(ar, HI_ITEM(hi_app_host_interest));
Kevin Fang31024d92011-07-11 17:14:13 +0800209 address = TARG_VTOP(ar->target_type, address);
Kalle Valobdcd8172011-07-18 00:22:30 +0300210
Kalle Valoaddb44b2011-09-02 10:32:05 +0300211 if (ath6kl_diag_read32(ar, address, &data))
Kalle Valobdcd8172011-07-18 00:22:30 +0300212 return -EIO;
213
Kevin Fang31024d92011-07-11 17:14:13 +0800214 address = TARG_VTOP(ar->target_type, data);
Kalle Valocbf49a62011-10-05 12:23:17 +0300215 host_app_area.wmi_protocol_ver = cpu_to_le32(WMI_PROTOCOL_VERSION);
Kalle Valoaddb44b2011-09-02 10:32:05 +0300216 if (ath6kl_diag_write(ar, address, (u8 *) &host_app_area,
217 sizeof(struct host_app_area)))
Kalle Valobdcd8172011-07-18 00:22:30 +0300218 return -EIO;
219
220 return 0;
221}
222
223static inline void set_ac2_ep_map(struct ath6kl *ar,
224 u8 ac,
225 enum htc_endpoint_id ep)
226{
227 ar->ac2ep_map[ac] = ep;
228 ar->ep2ac_map[ep] = ac;
229}
230
231/* connect to a service */
232static int ath6kl_connectservice(struct ath6kl *ar,
233 struct htc_service_connect_req *con_req,
234 char *desc)
235{
236 int status;
237 struct htc_service_connect_resp response;
238
239 memset(&response, 0, sizeof(response));
240
Kalle Vaload226ec2011-08-10 09:49:12 +0300241 status = ath6kl_htc_conn_service(ar->htc_target, con_req, &response);
Kalle Valobdcd8172011-07-18 00:22:30 +0300242 if (status) {
243 ath6kl_err("failed to connect to %s service status:%d\n",
244 desc, status);
245 return status;
246 }
247
248 switch (con_req->svc_id) {
249 case WMI_CONTROL_SVC:
250 if (test_bit(WMI_ENABLED, &ar->flag))
251 ath6kl_wmi_set_control_ep(ar->wmi, response.endpoint);
252 ar->ctrl_ep = response.endpoint;
253 break;
254 case WMI_DATA_BE_SVC:
255 set_ac2_ep_map(ar, WMM_AC_BE, response.endpoint);
256 break;
257 case WMI_DATA_BK_SVC:
258 set_ac2_ep_map(ar, WMM_AC_BK, response.endpoint);
259 break;
260 case WMI_DATA_VI_SVC:
261 set_ac2_ep_map(ar, WMM_AC_VI, response.endpoint);
262 break;
263 case WMI_DATA_VO_SVC:
264 set_ac2_ep_map(ar, WMM_AC_VO, response.endpoint);
265 break;
266 default:
267 ath6kl_err("service id is not mapped %d\n", con_req->svc_id);
268 return -EINVAL;
269 }
270
271 return 0;
272}
273
274static int ath6kl_init_service_ep(struct ath6kl *ar)
275{
276 struct htc_service_connect_req connect;
277
278 memset(&connect, 0, sizeof(connect));
279
280 /* these fields are the same for all service endpoints */
Kalle Valo900d6b32012-03-25 17:15:23 +0300281 connect.ep_cb.tx_comp_multi = ath6kl_tx_complete;
Kalle Valobdcd8172011-07-18 00:22:30 +0300282 connect.ep_cb.rx = ath6kl_rx;
283 connect.ep_cb.rx_refill = ath6kl_rx_refill;
284 connect.ep_cb.tx_full = ath6kl_tx_queue_full;
285
286 /*
287 * Set the max queue depth so that our ath6kl_tx_queue_full handler
288 * gets called.
289 */
290 connect.max_txq_depth = MAX_DEFAULT_SEND_QUEUE_DEPTH;
291 connect.ep_cb.rx_refill_thresh = ATH6KL_MAX_RX_BUFFERS / 4;
292 if (!connect.ep_cb.rx_refill_thresh)
293 connect.ep_cb.rx_refill_thresh++;
294
295 /* connect to control service */
296 connect.svc_id = WMI_CONTROL_SVC;
297 if (ath6kl_connectservice(ar, &connect, "WMI CONTROL"))
298 return -EIO;
299
300 connect.flags |= HTC_FLGS_TX_BNDL_PAD_EN;
301
302 /*
303 * Limit the HTC message size on the send path, although e can
304 * receive A-MSDU frames of 4K, we will only send ethernet-sized
305 * (802.3) frames on the send path.
306 */
307 connect.max_rxmsg_sz = WMI_MAX_TX_DATA_FRAME_LENGTH;
308
309 /*
310 * To reduce the amount of committed memory for larger A_MSDU
311 * frames, use the recv-alloc threshold mechanism for larger
312 * packets.
313 */
314 connect.ep_cb.rx_alloc_thresh = ATH6KL_BUFFER_SIZE;
315 connect.ep_cb.rx_allocthresh = ath6kl_alloc_amsdu_rxbuf;
316
317 /*
318 * For the remaining data services set the connection flag to
319 * reduce dribbling, if configured to do so.
320 */
321 connect.conn_flags |= HTC_CONN_FLGS_REDUCE_CRED_DRIB;
322 connect.conn_flags &= ~HTC_CONN_FLGS_THRESH_MASK;
323 connect.conn_flags |= HTC_CONN_FLGS_THRESH_LVL_HALF;
324
325 connect.svc_id = WMI_DATA_BE_SVC;
326
327 if (ath6kl_connectservice(ar, &connect, "WMI DATA BE"))
328 return -EIO;
329
330 /* connect to back-ground map this to WMI LOW_PRI */
331 connect.svc_id = WMI_DATA_BK_SVC;
332 if (ath6kl_connectservice(ar, &connect, "WMI DATA BK"))
333 return -EIO;
334
335 /* connect to Video service, map this to to HI PRI */
336 connect.svc_id = WMI_DATA_VI_SVC;
337 if (ath6kl_connectservice(ar, &connect, "WMI DATA VI"))
338 return -EIO;
339
340 /*
341 * Connect to VO service, this is currently not mapped to a WMI
342 * priority stream due to historical reasons. WMI originally
343 * defined 3 priorities over 3 mailboxes We can change this when
344 * WMI is reworked so that priorities are not dependent on
345 * mailboxes.
346 */
347 connect.svc_id = WMI_DATA_VO_SVC;
348 if (ath6kl_connectservice(ar, &connect, "WMI DATA VO"))
349 return -EIO;
350
351 return 0;
352}
353
Vasanthakumar Thiagarajane29f25f2011-10-25 19:34:15 +0530354void ath6kl_init_control_info(struct ath6kl_vif *vif)
Kalle Valobdcd8172011-07-18 00:22:30 +0300355{
Vasanthakumar Thiagarajane29f25f2011-10-25 19:34:15 +0530356 ath6kl_init_profile_info(vif);
Vasanthakumar Thiagarajan34503342011-10-25 19:34:02 +0530357 vif->def_txkey_index = 0;
Vasanthakumar Thiagarajan6f2a73f2011-10-25 19:34:06 +0530358 memset(vif->wep_key_list, 0, sizeof(vif->wep_key_list));
Vasanthakumar Thiagarajanf74bac52011-10-25 19:34:05 +0530359 vif->ch_hint = 0;
Kalle Valobdcd8172011-07-18 00:22:30 +0300360}
361
362/*
363 * Set HTC/Mbox operational parameters, this can only be called when the
364 * target is in the BMI phase.
365 */
366static int ath6kl_set_htc_params(struct ath6kl *ar, u32 mbox_isr_yield_val,
367 u8 htc_ctrl_buf)
368{
369 int status;
370 u32 blk_size;
371
372 blk_size = ar->mbox_info.block_size;
373
374 if (htc_ctrl_buf)
375 blk_size |= ((u32)htc_ctrl_buf) << 16;
376
377 /* set the host interest area for the block size */
Kalle Valo24fc32b2012-03-07 20:03:58 +0200378 status = ath6kl_bmi_write_hi32(ar, hi_mbox_io_block_sz, blk_size);
Kalle Valobdcd8172011-07-18 00:22:30 +0300379 if (status) {
380 ath6kl_err("bmi_write_memory for IO block size failed\n");
381 goto out;
382 }
383
384 ath6kl_dbg(ATH6KL_DBG_TRC, "block size set: %d (target addr:0x%X)\n",
385 blk_size,
386 ath6kl_get_hi_item_addr(ar, HI_ITEM(hi_mbox_io_block_sz)));
387
388 if (mbox_isr_yield_val) {
389 /* set the host interest area for the mbox ISR yield limit */
Kalle Valo24fc32b2012-03-07 20:03:58 +0200390 status = ath6kl_bmi_write_hi32(ar, hi_mbox_isr_yield_limit,
391 mbox_isr_yield_val);
Kalle Valobdcd8172011-07-18 00:22:30 +0300392 if (status) {
393 ath6kl_err("bmi_write_memory for yield limit failed\n");
394 goto out;
395 }
396 }
397
398out:
399 return status;
400}
401
Vasanthakumar Thiagarajan0ce59442011-10-25 19:34:25 +0530402static int ath6kl_target_config_wlan_params(struct ath6kl *ar, int idx)
Kalle Valobdcd8172011-07-18 00:22:30 +0300403{
Jouni Malinen4dea08e2011-08-30 21:57:57 +0300404 int ret;
Kalle Valobdcd8172011-07-18 00:22:30 +0300405
406 /*
407 * Configure the device for rx dot11 header rules. "0,0" are the
408 * default values. Required if checksum offload is needed. Set
409 * RxMetaVersion to 2.
410 */
Kalle Valo1ca4d0b2012-03-07 20:03:59 +0200411 ret = ath6kl_wmi_set_rx_frame_format_cmd(ar->wmi, idx,
412 ar->rx_meta_ver, 0, 0);
413 if (ret) {
414 ath6kl_err("unable to set the rx frame format: %d\n", ret);
415 return ret;
Kalle Valobdcd8172011-07-18 00:22:30 +0300416 }
417
Kalle Valo1ca4d0b2012-03-07 20:03:59 +0200418 if (ar->conf_flags & ATH6KL_CONF_IGNORE_PS_FAIL_EVT_IN_SCAN) {
419 ret = ath6kl_wmi_pmparams_cmd(ar->wmi, idx, 0, 1, 0, 0, 1,
Kalle Valo05aab172012-03-07 20:04:00 +0200420 IGNORE_PS_FAIL_DURING_SCAN);
Kalle Valo1ca4d0b2012-03-07 20:03:59 +0200421 if (ret) {
422 ath6kl_err("unable to set power save fail event policy: %d\n",
423 ret);
424 return ret;
Kalle Valobdcd8172011-07-18 00:22:30 +0300425 }
Kalle Valobdcd8172011-07-18 00:22:30 +0300426 }
427
Kalle Valo1ca4d0b2012-03-07 20:03:59 +0200428 if (!(ar->conf_flags & ATH6KL_CONF_IGNORE_ERP_BARKER)) {
429 ret = ath6kl_wmi_set_lpreamble_cmd(ar->wmi, idx, 0,
Kalle Valo05aab172012-03-07 20:04:00 +0200430 WMI_FOLLOW_BARKER_IN_ERP);
Kalle Valo1ca4d0b2012-03-07 20:03:59 +0200431 if (ret) {
432 ath6kl_err("unable to set barker preamble policy: %d\n",
433 ret);
434 return ret;
435 }
Kalle Valobdcd8172011-07-18 00:22:30 +0300436 }
437
Kalle Valo1ca4d0b2012-03-07 20:03:59 +0200438 ret = ath6kl_wmi_set_keepalive_cmd(ar->wmi, idx,
439 WLAN_CONFIG_KEEP_ALIVE_INTERVAL);
440 if (ret) {
441 ath6kl_err("unable to set keep alive interval: %d\n", ret);
442 return ret;
443 }
444
445 ret = ath6kl_wmi_disctimeout_cmd(ar->wmi, idx,
446 WLAN_CONFIG_DISCONNECT_TIMEOUT);
447 if (ret) {
448 ath6kl_err("unable to set disconnect timeout: %d\n", ret);
449 return ret;
450 }
451
452 if (!(ar->conf_flags & ATH6KL_CONF_ENABLE_TX_BURST)) {
453 ret = ath6kl_wmi_set_wmm_txop(ar->wmi, idx, WMI_TXOP_DISABLED);
454 if (ret) {
455 ath6kl_err("unable to set txop bursting: %d\n", ret);
456 return ret;
Kalle Valobdcd8172011-07-18 00:22:30 +0300457 }
Kalle Valo1ca4d0b2012-03-07 20:03:59 +0200458 }
Kalle Valobdcd8172011-07-18 00:22:30 +0300459
Vasanthakumar Thiagarajanb64de352011-11-18 10:05:28 +0530460 if (ar->p2p && (ar->vif_max == 1 || idx)) {
Vasanthakumar Thiagarajan0ce59442011-10-25 19:34:25 +0530461 ret = ath6kl_wmi_info_req_cmd(ar->wmi, idx,
Jouni Malinen6bbc7c32011-09-05 17:38:47 +0300462 P2P_FLAG_CAPABILITIES_REQ |
463 P2P_FLAG_MACADDR_REQ |
464 P2P_FLAG_HMODEL_REQ);
465 if (ret) {
466 ath6kl_dbg(ATH6KL_DBG_TRC, "failed to request P2P "
467 "capabilities (%d) - assuming P2P not "
468 "supported\n", ret);
Rusty Russell3db1cd52011-12-19 13:56:45 +0000469 ar->p2p = false;
Jouni Malinen6bbc7c32011-09-05 17:38:47 +0300470 }
471 }
472
Vasanthakumar Thiagarajanb64de352011-11-18 10:05:28 +0530473 if (ar->p2p && (ar->vif_max == 1 || idx)) {
Jouni Malinen6bbc7c32011-09-05 17:38:47 +0300474 /* Enable Probe Request reporting for P2P */
Vasanthakumar Thiagarajan0ce59442011-10-25 19:34:25 +0530475 ret = ath6kl_wmi_probe_report_req_cmd(ar->wmi, idx, true);
Jouni Malinen6bbc7c32011-09-05 17:38:47 +0300476 if (ret) {
477 ath6kl_dbg(ATH6KL_DBG_TRC, "failed to enable Probe "
478 "Request reporting (%d)\n", ret);
479 }
Jouni Malinen4dea08e2011-08-30 21:57:57 +0300480 }
481
Kalle Valo1ca4d0b2012-03-07 20:03:59 +0200482 return ret;
Kalle Valobdcd8172011-07-18 00:22:30 +0300483}
484
485int ath6kl_configure_target(struct ath6kl *ar)
486{
487 u32 param, ram_reserved_size;
Vasanthakumar Thiagarajan3226f68a2011-10-25 19:34:24 +0530488 u8 fw_iftype, fw_mode = 0, fw_submode = 0;
Ryan Hsu39586bf2011-12-13 17:11:07 +0800489 int i, status;
Kalle Valobdcd8172011-07-18 00:22:30 +0300490
Kalle Valof29af972012-01-17 20:08:56 +0200491 param = !!(ar->conf_flags & ATH6KL_CONF_UART_DEBUG);
Kalle Valo24fc32b2012-03-07 20:03:58 +0200492 if (ath6kl_bmi_write_hi32(ar, hi_serial_enable, param)) {
Vasanthakumar Thiagarajana10e2f22011-12-29 16:05:38 +0530493 ath6kl_err("bmi_write_memory for uart debug failed\n");
494 return -EIO;
495 }
496
Vasanthakumar Thiagarajan7b858322011-10-25 19:34:22 +0530497 /*
498 * Note: Even though the firmware interface type is
499 * chosen as BSS_STA for all three interfaces, can
500 * be configured to IBSS/AP as long as the fw submode
501 * remains normal mode (0 - AP, STA and IBSS). But
502 * due to an target assert in firmware only one interface is
503 * configured for now.
504 */
Vasanthakumar Thiagarajandd3751f2011-10-25 19:33:59 +0530505 fw_iftype = HI_OPTION_FW_MODE_BSS_STA;
Kalle Valobdcd8172011-07-18 00:22:30 +0300506
Kalle Valo71f96ee2011-11-14 19:31:30 +0200507 for (i = 0; i < ar->vif_max; i++)
Vasanthakumar Thiagarajan7b858322011-10-25 19:34:22 +0530508 fw_mode |= fw_iftype << (i * HI_OPTION_FW_MODE_BITS);
509
510 /*
Vasanthakumar Thiagarajan1e8d13b2012-04-06 20:24:30 +0530511 * Submodes when fw does not support dynamic interface
512 * switching:
Vasanthakumar Thiagarajan3226f68a2011-10-25 19:34:24 +0530513 * vif[0] - AP/STA/IBSS
514 * vif[1] - "P2P dev"/"P2P GO"/"P2P Client"
515 * vif[2] - "P2P dev"/"P2P GO"/"P2P Client"
Vasanthakumar Thiagarajan1e8d13b2012-04-06 20:24:30 +0530516 * Otherwise, All the interface are initialized to p2p dev.
Vasanthakumar Thiagarajan7b858322011-10-25 19:34:22 +0530517 */
Vasanthakumar Thiagarajan3226f68a2011-10-25 19:34:24 +0530518
Vasanthakumar Thiagarajan1e8d13b2012-04-06 20:24:30 +0530519 if (test_bit(ATH6KL_FW_CAPABILITY_STA_P2PDEV_DUPLEX,
520 ar->fw_capabilities)) {
521 for (i = 0; i < ar->vif_max; i++)
522 fw_submode |= HI_OPTION_FW_SUBMODE_P2PDEV <<
523 (i * HI_OPTION_FW_SUBMODE_BITS);
524 } else {
525 for (i = 0; i < ar->max_norm_iface; i++)
526 fw_submode |= HI_OPTION_FW_SUBMODE_NONE <<
527 (i * HI_OPTION_FW_SUBMODE_BITS);
Vasanthakumar Thiagarajan3226f68a2011-10-25 19:34:24 +0530528
Vasanthakumar Thiagarajan1e8d13b2012-04-06 20:24:30 +0530529 for (i = ar->max_norm_iface; i < ar->vif_max; i++)
530 fw_submode |= HI_OPTION_FW_SUBMODE_P2PDEV <<
531 (i * HI_OPTION_FW_SUBMODE_BITS);
Vasanthakumar Thiagarajan7b858322011-10-25 19:34:22 +0530532
Vasanthakumar Thiagarajan1e8d13b2012-04-06 20:24:30 +0530533 if (ar->p2p && ar->vif_max == 1)
534 fw_submode = HI_OPTION_FW_SUBMODE_P2PDEV;
535 }
Vasanthakumar Thiagarajan7b858322011-10-25 19:34:22 +0530536
Kalle Valo24fc32b2012-03-07 20:03:58 +0200537 if (ath6kl_bmi_write_hi32(ar, hi_app_host_interest,
538 HTC_PROTOCOL_VERSION) != 0) {
Kalle Valobdcd8172011-07-18 00:22:30 +0300539 ath6kl_err("bmi_write_memory for htc version failed\n");
540 return -EIO;
541 }
542
543 /* set the firmware mode to STA/IBSS/AP */
544 param = 0;
545
Kalle Valo80fb26862012-03-07 20:03:59 +0200546 if (ath6kl_bmi_read_hi32(ar, hi_option_flag, &param) != 0) {
Kalle Valobdcd8172011-07-18 00:22:30 +0300547 ath6kl_err("bmi_read_memory for setting fwmode failed\n");
548 return -EIO;
549 }
550
Kalle Valo71f96ee2011-11-14 19:31:30 +0200551 param |= (ar->vif_max << HI_OPTION_NUM_DEV_SHIFT);
Vasanthakumar Thiagarajan7b858322011-10-25 19:34:22 +0530552 param |= fw_mode << HI_OPTION_FW_MODE_SHIFT;
553 param |= fw_submode << HI_OPTION_FW_SUBMODE_SHIFT;
554
Kalle Valobdcd8172011-07-18 00:22:30 +0300555 param |= (0 << HI_OPTION_MAC_ADDR_METHOD_SHIFT);
556 param |= (0 << HI_OPTION_FW_BRIDGE_SHIFT);
557
Kalle Valo24fc32b2012-03-07 20:03:58 +0200558 if (ath6kl_bmi_write_hi32(ar, hi_option_flag, param) != 0) {
Kalle Valobdcd8172011-07-18 00:22:30 +0300559 ath6kl_err("bmi_write_memory for setting fwmode failed\n");
560 return -EIO;
561 }
562
563 ath6kl_dbg(ATH6KL_DBG_TRC, "firmware mode set\n");
564
565 /*
566 * Hardcode the address use for the extended board data
567 * Ideally this should be pre-allocate by the OS at boot time
568 * But since it is a new feature and board data is loaded
569 * at init time, we have to workaround this from host.
570 * It is difficult to patch the firmware boot code,
571 * but possible in theory.
572 */
573
Kalle Valo6b42d302012-03-25 17:15:21 +0300574 if (ar->target_type == TARGET_TYPE_AR6003) {
575 param = ar->hw.board_ext_data_addr;
576 ram_reserved_size = ar->hw.reserved_ram_size;
Kalle Valobdcd8172011-07-18 00:22:30 +0300577
Kalle Valo6b42d302012-03-25 17:15:21 +0300578 if (ath6kl_bmi_write_hi32(ar, hi_board_ext_data, param) != 0) {
579 ath6kl_err("bmi_write_memory for hi_board_ext_data failed\n");
580 return -EIO;
581 }
Kalle Valo991b27e2011-09-07 10:55:17 +0300582
Kalle Valo6b42d302012-03-25 17:15:21 +0300583 if (ath6kl_bmi_write_hi32(ar, hi_end_ram_reserve_sz,
584 ram_reserved_size) != 0) {
585 ath6kl_err("bmi_write_memory for hi_end_ram_reserve_sz failed\n");
586 return -EIO;
587 }
Kalle Valobdcd8172011-07-18 00:22:30 +0300588 }
589
590 /* set the block size for the target */
591 if (ath6kl_set_htc_params(ar, MBOX_YIELD_LIMIT, 0))
592 /* use default number of control buffers */
593 return -EIO;
594
Ryan Hsu39586bf2011-12-13 17:11:07 +0800595 /* Configure GPIO AR600x UART */
Kalle Valo24fc32b2012-03-07 20:03:58 +0200596 status = ath6kl_bmi_write_hi32(ar, hi_dbg_uart_txpin,
597 ar->hw.uarttx_pin);
Ryan Hsu39586bf2011-12-13 17:11:07 +0800598 if (status)
599 return status;
600
601 /* Configure target refclk_hz */
Kalle Valo24fc32b2012-03-07 20:03:58 +0200602 status = ath6kl_bmi_write_hi32(ar, hi_refclk_hz, ar->hw.refclk_hz);
Ryan Hsu39586bf2011-12-13 17:11:07 +0800603 if (status)
604 return status;
605
Kalle Valobdcd8172011-07-18 00:22:30 +0300606 return 0;
607}
608
Kalle Valobdcd8172011-07-18 00:22:30 +0300609/* firmware upload */
Kalle Valobdcd8172011-07-18 00:22:30 +0300610static int ath6kl_get_fw(struct ath6kl *ar, const char *filename,
611 u8 **fw, size_t *fw_len)
612{
613 const struct firmware *fw_entry;
614 int ret;
615
616 ret = request_firmware(&fw_entry, filename, ar->dev);
617 if (ret)
618 return ret;
619
620 *fw_len = fw_entry->size;
621 *fw = kmemdup(fw_entry->data, fw_entry->size, GFP_KERNEL);
622
623 if (*fw == NULL)
624 ret = -ENOMEM;
625
626 release_firmware(fw_entry);
627
628 return ret;
629}
630
Sam Leffler92ecbff2011-09-07 10:55:16 +0300631#ifdef CONFIG_OF
Sam Leffler92ecbff2011-09-07 10:55:16 +0300632/*
633 * Check the device tree for a board-id and use it to construct
634 * the pathname to the firmware file. Used (for now) to find a
635 * fallback to the "bdata.bin" file--typically a symlink to the
636 * appropriate board-specific file.
637 */
638static bool check_device_tree(struct ath6kl *ar)
639{
640 static const char *board_id_prop = "atheros,board-id";
641 struct device_node *node;
642 char board_filename[64];
643 const char *board_id;
644 int ret;
645
646 for_each_compatible_node(node, NULL, "atheros,ath6kl") {
647 board_id = of_get_property(node, board_id_prop, NULL);
648 if (board_id == NULL) {
649 ath6kl_warn("No \"%s\" property on %s node.\n",
650 board_id_prop, node->name);
651 continue;
652 }
653 snprintf(board_filename, sizeof(board_filename),
Kalle Valoc0038972011-12-16 20:53:31 +0200654 "%s/bdata.%s.bin", ar->hw.fw.dir, board_id);
Sam Leffler92ecbff2011-09-07 10:55:16 +0300655
656 ret = ath6kl_get_fw(ar, board_filename, &ar->fw_board,
657 &ar->fw_board_len);
658 if (ret) {
659 ath6kl_err("Failed to get DT board file %s: %d\n",
660 board_filename, ret);
661 continue;
662 }
663 return true;
664 }
665 return false;
666}
667#else
668static bool check_device_tree(struct ath6kl *ar)
669{
670 return false;
671}
672#endif /* CONFIG_OF */
673
Kalle Valobdcd8172011-07-18 00:22:30 +0300674static int ath6kl_fetch_board_file(struct ath6kl *ar)
675{
676 const char *filename;
677 int ret;
678
Kalle Valo772c31e2011-09-07 10:55:16 +0300679 if (ar->fw_board != NULL)
680 return 0;
681
Kalle Valod1a94212011-11-14 19:31:23 +0200682 if (WARN_ON(ar->hw.fw_board == NULL))
683 return -EINVAL;
684
685 filename = ar->hw.fw_board;
Kalle Valobdcd8172011-07-18 00:22:30 +0300686
687 ret = ath6kl_get_fw(ar, filename, &ar->fw_board,
688 &ar->fw_board_len);
689 if (ret == 0) {
690 /* managed to get proper board file */
691 return 0;
692 }
693
Sam Leffler92ecbff2011-09-07 10:55:16 +0300694 if (check_device_tree(ar)) {
695 /* got board file from device tree */
696 return 0;
697 }
698
Kalle Valobdcd8172011-07-18 00:22:30 +0300699 /* there was no proper board file, try to use default instead */
700 ath6kl_warn("Failed to get board file %s (%d), trying to find default board file.\n",
701 filename, ret);
702
Kalle Valod1a94212011-11-14 19:31:23 +0200703 filename = ar->hw.fw_default_board;
Kalle Valobdcd8172011-07-18 00:22:30 +0300704
705 ret = ath6kl_get_fw(ar, filename, &ar->fw_board,
706 &ar->fw_board_len);
707 if (ret) {
708 ath6kl_err("Failed to get default board file %s: %d\n",
709 filename, ret);
710 return ret;
711 }
712
713 ath6kl_warn("WARNING! No proper board file was not found, instead using a default board file.\n");
714 ath6kl_warn("Most likely your hardware won't work as specified. Install correct board file!\n");
715
716 return 0;
717}
718
Kalle Valo772c31e2011-09-07 10:55:16 +0300719static int ath6kl_fetch_otp_file(struct ath6kl *ar)
720{
Kalle Valoc0038972011-12-16 20:53:31 +0200721 char filename[100];
Kalle Valo772c31e2011-09-07 10:55:16 +0300722 int ret;
723
724 if (ar->fw_otp != NULL)
725 return 0;
726
Kalle Valoc0038972011-12-16 20:53:31 +0200727 if (ar->hw.fw.otp == NULL) {
Kalle Valod1a94212011-11-14 19:31:23 +0200728 ath6kl_dbg(ATH6KL_DBG_BOOT,
729 "no OTP file configured for this hw\n");
Kalle Valo772c31e2011-09-07 10:55:16 +0300730 return 0;
Kalle Valo772c31e2011-09-07 10:55:16 +0300731 }
732
Kalle Valoc0038972011-12-16 20:53:31 +0200733 snprintf(filename, sizeof(filename), "%s/%s",
734 ar->hw.fw.dir, ar->hw.fw.otp);
Kalle Valod1a94212011-11-14 19:31:23 +0200735
Kalle Valo772c31e2011-09-07 10:55:16 +0300736 ret = ath6kl_get_fw(ar, filename, &ar->fw_otp,
737 &ar->fw_otp_len);
738 if (ret) {
739 ath6kl_err("Failed to get OTP file %s: %d\n",
740 filename, ret);
741 return ret;
742 }
743
744 return 0;
745}
746
Kalle Valo5f1127f2012-01-24 13:50:16 +0200747static int ath6kl_fetch_testmode_file(struct ath6kl *ar)
748{
749 char filename[100];
750 int ret;
751
752 if (ar->testmode == 0)
753 return 0;
754
755 ath6kl_dbg(ATH6KL_DBG_BOOT, "testmode %d\n", ar->testmode);
756
757 if (ar->testmode == 2) {
758 if (ar->hw.fw.utf == NULL) {
759 ath6kl_warn("testmode 2 not supported\n");
760 return -EOPNOTSUPP;
761 }
762
763 snprintf(filename, sizeof(filename), "%s/%s",
764 ar->hw.fw.dir, ar->hw.fw.utf);
765 } else {
766 if (ar->hw.fw.tcmd == NULL) {
767 ath6kl_warn("testmode 1 not supported\n");
768 return -EOPNOTSUPP;
769 }
770
771 snprintf(filename, sizeof(filename), "%s/%s",
772 ar->hw.fw.dir, ar->hw.fw.tcmd);
773 }
774
775 set_bit(TESTMODE, &ar->flag);
776
777 ret = ath6kl_get_fw(ar, filename, &ar->fw, &ar->fw_len);
778 if (ret) {
779 ath6kl_err("Failed to get testmode %d firmware file %s: %d\n",
780 ar->testmode, filename, ret);
781 return ret;
782 }
783
784 return 0;
785}
786
Kalle Valo772c31e2011-09-07 10:55:16 +0300787static int ath6kl_fetch_fw_file(struct ath6kl *ar)
788{
Kalle Valoc0038972011-12-16 20:53:31 +0200789 char filename[100];
Kalle Valo772c31e2011-09-07 10:55:16 +0300790 int ret;
791
792 if (ar->fw != NULL)
793 return 0;
794
Kalle Valoc0038972011-12-16 20:53:31 +0200795 /* FIXME: remove WARN_ON() as we won't support FW API 1 for long */
796 if (WARN_ON(ar->hw.fw.fw == NULL))
Kalle Valod1a94212011-11-14 19:31:23 +0200797 return -EINVAL;
798
Kalle Valoc0038972011-12-16 20:53:31 +0200799 snprintf(filename, sizeof(filename), "%s/%s",
800 ar->hw.fw.dir, ar->hw.fw.fw);
Kalle Valo772c31e2011-09-07 10:55:16 +0300801
Kalle Valo772c31e2011-09-07 10:55:16 +0300802 ret = ath6kl_get_fw(ar, filename, &ar->fw, &ar->fw_len);
803 if (ret) {
804 ath6kl_err("Failed to get firmware file %s: %d\n",
805 filename, ret);
806 return ret;
807 }
808
809 return 0;
810}
811
812static int ath6kl_fetch_patch_file(struct ath6kl *ar)
813{
Kalle Valoc0038972011-12-16 20:53:31 +0200814 char filename[100];
Kalle Valo772c31e2011-09-07 10:55:16 +0300815 int ret;
816
Kalle Valod1a94212011-11-14 19:31:23 +0200817 if (ar->fw_patch != NULL)
Kalle Valo772c31e2011-09-07 10:55:16 +0300818 return 0;
Kalle Valo772c31e2011-09-07 10:55:16 +0300819
Kalle Valoc0038972011-12-16 20:53:31 +0200820 if (ar->hw.fw.patch == NULL)
Kalle Valod1a94212011-11-14 19:31:23 +0200821 return 0;
822
Kalle Valoc0038972011-12-16 20:53:31 +0200823 snprintf(filename, sizeof(filename), "%s/%s",
824 ar->hw.fw.dir, ar->hw.fw.patch);
Kalle Valod1a94212011-11-14 19:31:23 +0200825
826 ret = ath6kl_get_fw(ar, filename, &ar->fw_patch,
827 &ar->fw_patch_len);
828 if (ret) {
829 ath6kl_err("Failed to get patch file %s: %d\n",
830 filename, ret);
831 return ret;
Kalle Valo772c31e2011-09-07 10:55:16 +0300832 }
833
834 return 0;
835}
836
Alex Yangcd23c1c2012-01-17 15:32:29 +0200837static int ath6kl_fetch_testscript_file(struct ath6kl *ar)
838{
839 char filename[100];
840 int ret;
841
Kalle Valo5f1127f2012-01-24 13:50:16 +0200842 if (ar->testmode != 2)
Alex Yangcd23c1c2012-01-17 15:32:29 +0200843 return 0;
844
845 if (ar->fw_testscript != NULL)
846 return 0;
847
848 if (ar->hw.fw.testscript == NULL)
849 return 0;
850
851 snprintf(filename, sizeof(filename), "%s/%s",
Kalle Valo96f1fad2012-03-07 20:03:57 +0200852 ar->hw.fw.dir, ar->hw.fw.testscript);
Alex Yangcd23c1c2012-01-17 15:32:29 +0200853
854 ret = ath6kl_get_fw(ar, filename, &ar->fw_testscript,
855 &ar->fw_testscript_len);
856 if (ret) {
857 ath6kl_err("Failed to get testscript file %s: %d\n",
Kalle Valo96f1fad2012-03-07 20:03:57 +0200858 filename, ret);
Alex Yangcd23c1c2012-01-17 15:32:29 +0200859 return ret;
860 }
861
862 return 0;
863}
864
Kalle Valo50d41232011-09-07 10:55:17 +0300865static int ath6kl_fetch_fw_api1(struct ath6kl *ar)
Kalle Valo772c31e2011-09-07 10:55:16 +0300866{
867 int ret;
868
Kalle Valo772c31e2011-09-07 10:55:16 +0300869 ret = ath6kl_fetch_otp_file(ar);
870 if (ret)
871 return ret;
872
873 ret = ath6kl_fetch_fw_file(ar);
874 if (ret)
875 return ret;
876
877 ret = ath6kl_fetch_patch_file(ar);
878 if (ret)
879 return ret;
880
Alex Yangcd23c1c2012-01-17 15:32:29 +0200881 ret = ath6kl_fetch_testscript_file(ar);
882 if (ret)
883 return ret;
884
Kalle Valo772c31e2011-09-07 10:55:16 +0300885 return 0;
886}
Kalle Valobdcd8172011-07-18 00:22:30 +0300887
Kalle Valo65a8b4c2011-12-16 20:53:41 +0200888static int ath6kl_fetch_fw_apin(struct ath6kl *ar, const char *name)
Kalle Valo50d41232011-09-07 10:55:17 +0300889{
890 size_t magic_len, len, ie_len;
891 const struct firmware *fw;
892 struct ath6kl_fw_ie *hdr;
Kalle Valoc0038972011-12-16 20:53:31 +0200893 char filename[100];
Kalle Valo50d41232011-09-07 10:55:17 +0300894 const u8 *data;
Kalle Valo97e04962011-09-12 13:47:34 +0300895 int ret, ie_id, i, index, bit;
Kalle Valo8a137482011-09-07 10:55:17 +0300896 __le32 *val;
Kalle Valo50d41232011-09-07 10:55:17 +0300897
Kalle Valo65a8b4c2011-12-16 20:53:41 +0200898 snprintf(filename, sizeof(filename), "%s/%s", ar->hw.fw.dir, name);
Kalle Valo50d41232011-09-07 10:55:17 +0300899
900 ret = request_firmware(&fw, filename, ar->dev);
901 if (ret)
902 return ret;
903
904 data = fw->data;
905 len = fw->size;
906
907 /* magic also includes the null byte, check that as well */
908 magic_len = strlen(ATH6KL_FIRMWARE_MAGIC) + 1;
909
910 if (len < magic_len) {
911 ret = -EINVAL;
912 goto out;
913 }
914
915 if (memcmp(data, ATH6KL_FIRMWARE_MAGIC, magic_len) != 0) {
916 ret = -EINVAL;
917 goto out;
918 }
919
920 len -= magic_len;
921 data += magic_len;
922
923 /* loop elements */
924 while (len > sizeof(struct ath6kl_fw_ie)) {
925 /* hdr is unaligned! */
926 hdr = (struct ath6kl_fw_ie *) data;
927
928 ie_id = le32_to_cpup(&hdr->id);
929 ie_len = le32_to_cpup(&hdr->len);
930
931 len -= sizeof(*hdr);
932 data += sizeof(*hdr);
933
934 if (len < ie_len) {
935 ret = -EINVAL;
936 goto out;
937 }
938
939 switch (ie_id) {
940 case ATH6KL_FW_IE_OTP_IMAGE:
Kalle Valoef548622011-10-01 09:43:09 +0300941 ath6kl_dbg(ATH6KL_DBG_BOOT, "found otp image ie (%zd B)\n",
Kalle Valo96f1fad2012-03-07 20:03:57 +0200942 ie_len);
Kalle Valo6bc36432011-09-27 14:31:11 +0300943
Kalle Valo50d41232011-09-07 10:55:17 +0300944 ar->fw_otp = kmemdup(data, ie_len, GFP_KERNEL);
945
946 if (ar->fw_otp == NULL) {
947 ret = -ENOMEM;
948 goto out;
949 }
950
951 ar->fw_otp_len = ie_len;
952 break;
953 case ATH6KL_FW_IE_FW_IMAGE:
Kalle Valoef548622011-10-01 09:43:09 +0300954 ath6kl_dbg(ATH6KL_DBG_BOOT, "found fw image ie (%zd B)\n",
Kalle Valo96f1fad2012-03-07 20:03:57 +0200955 ie_len);
Kalle Valo6bc36432011-09-27 14:31:11 +0300956
Kalle Valo5f1127f2012-01-24 13:50:16 +0200957 /* in testmode we already might have a fw file */
958 if (ar->fw != NULL)
959 break;
960
Vivek Natarajan84377542012-03-28 19:21:25 +0530961 ar->fw = vmalloc(ie_len);
Kalle Valo50d41232011-09-07 10:55:17 +0300962
963 if (ar->fw == NULL) {
964 ret = -ENOMEM;
965 goto out;
966 }
967
Vivek Natarajan84377542012-03-28 19:21:25 +0530968 memcpy(ar->fw, data, ie_len);
Kalle Valo50d41232011-09-07 10:55:17 +0300969 ar->fw_len = ie_len;
970 break;
971 case ATH6KL_FW_IE_PATCH_IMAGE:
Kalle Valoef548622011-10-01 09:43:09 +0300972 ath6kl_dbg(ATH6KL_DBG_BOOT, "found patch image ie (%zd B)\n",
Kalle Valo96f1fad2012-03-07 20:03:57 +0200973 ie_len);
Kalle Valo6bc36432011-09-27 14:31:11 +0300974
Kalle Valo50d41232011-09-07 10:55:17 +0300975 ar->fw_patch = kmemdup(data, ie_len, GFP_KERNEL);
976
977 if (ar->fw_patch == NULL) {
978 ret = -ENOMEM;
979 goto out;
980 }
981
982 ar->fw_patch_len = ie_len;
983 break;
Kalle Valo8a137482011-09-07 10:55:17 +0300984 case ATH6KL_FW_IE_RESERVED_RAM_SIZE:
985 val = (__le32 *) data;
986 ar->hw.reserved_ram_size = le32_to_cpup(val);
Kalle Valo6bc36432011-09-27 14:31:11 +0300987
988 ath6kl_dbg(ATH6KL_DBG_BOOT,
989 "found reserved ram size ie 0x%d\n",
990 ar->hw.reserved_ram_size);
Kalle Valo8a137482011-09-07 10:55:17 +0300991 break;
Kalle Valo97e04962011-09-12 13:47:34 +0300992 case ATH6KL_FW_IE_CAPABILITIES:
Kalle Valo277d90f2011-12-13 14:51:58 +0200993 if (ie_len < DIV_ROUND_UP(ATH6KL_FW_CAPABILITY_MAX, 8))
994 break;
995
Kalle Valo6bc36432011-09-27 14:31:11 +0300996 ath6kl_dbg(ATH6KL_DBG_BOOT,
Kalle Valoef548622011-10-01 09:43:09 +0300997 "found firmware capabilities ie (%zd B)\n",
Kalle Valo6bc36432011-09-27 14:31:11 +0300998 ie_len);
999
Kalle Valo97e04962011-09-12 13:47:34 +03001000 for (i = 0; i < ATH6KL_FW_CAPABILITY_MAX; i++) {
Kalle Valo277d90f2011-12-13 14:51:58 +02001001 index = i / 8;
Kalle Valo97e04962011-09-12 13:47:34 +03001002 bit = i % 8;
1003
1004 if (data[index] & (1 << bit))
1005 __set_bit(i, ar->fw_capabilities);
1006 }
Kalle Valo6bc36432011-09-27 14:31:11 +03001007
1008 ath6kl_dbg_dump(ATH6KL_DBG_BOOT, "capabilities", "",
1009 ar->fw_capabilities,
1010 sizeof(ar->fw_capabilities));
Kalle Valo97e04962011-09-12 13:47:34 +03001011 break;
Kalle Valo1b4304d2011-09-27 11:05:26 +03001012 case ATH6KL_FW_IE_PATCH_ADDR:
1013 if (ie_len != sizeof(*val))
1014 break;
1015
1016 val = (__le32 *) data;
1017 ar->hw.dataset_patch_addr = le32_to_cpup(val);
Kalle Valo6bc36432011-09-27 14:31:11 +03001018
1019 ath6kl_dbg(ATH6KL_DBG_BOOT,
Kalle Valo03ef0252011-11-14 19:30:47 +02001020 "found patch address ie 0x%x\n",
Kalle Valo6bc36432011-09-27 14:31:11 +03001021 ar->hw.dataset_patch_addr);
Kalle Valo1b4304d2011-09-27 11:05:26 +03001022 break;
Kalle Valo03ef0252011-11-14 19:30:47 +02001023 case ATH6KL_FW_IE_BOARD_ADDR:
1024 if (ie_len != sizeof(*val))
1025 break;
1026
1027 val = (__le32 *) data;
1028 ar->hw.board_addr = le32_to_cpup(val);
1029
1030 ath6kl_dbg(ATH6KL_DBG_BOOT,
1031 "found board address ie 0x%x\n",
1032 ar->hw.board_addr);
1033 break;
Kalle Valo368b1b02011-11-14 19:31:38 +02001034 case ATH6KL_FW_IE_VIF_MAX:
1035 if (ie_len != sizeof(*val))
1036 break;
1037
1038 val = (__le32 *) data;
1039 ar->vif_max = min_t(unsigned int, le32_to_cpup(val),
1040 ATH6KL_VIF_MAX);
1041
Vasanthakumar Thiagarajanf1433792011-11-18 10:05:27 +05301042 if (ar->vif_max > 1 && !ar->p2p)
1043 ar->max_norm_iface = 2;
1044
Kalle Valo368b1b02011-11-14 19:31:38 +02001045 ath6kl_dbg(ATH6KL_DBG_BOOT,
1046 "found vif max ie %d\n", ar->vif_max);
1047 break;
Kalle Valo50d41232011-09-07 10:55:17 +03001048 default:
Kalle Valo6bc36432011-09-27 14:31:11 +03001049 ath6kl_dbg(ATH6KL_DBG_BOOT, "Unknown fw ie: %u\n",
Kalle Valo50d41232011-09-07 10:55:17 +03001050 le32_to_cpup(&hdr->id));
1051 break;
1052 }
1053
1054 len -= ie_len;
1055 data += ie_len;
1056 };
1057
1058 ret = 0;
1059out:
1060 release_firmware(fw);
1061
1062 return ret;
1063}
1064
Kalle Valo45eaa782012-01-17 20:09:05 +02001065int ath6kl_init_fetch_firmwares(struct ath6kl *ar)
Kalle Valo50d41232011-09-07 10:55:17 +03001066{
1067 int ret;
1068
1069 ret = ath6kl_fetch_board_file(ar);
1070 if (ret)
1071 return ret;
1072
Kalle Valo5f1127f2012-01-24 13:50:16 +02001073 ret = ath6kl_fetch_testmode_file(ar);
1074 if (ret)
1075 return ret;
1076
Kalle Valo65a8b4c2011-12-16 20:53:41 +02001077 ret = ath6kl_fetch_fw_apin(ar, ATH6KL_FW_API3_FILE);
Kalle Valo6bc36432011-09-27 14:31:11 +03001078 if (ret == 0) {
Kalle Valo65a8b4c2011-12-16 20:53:41 +02001079 ar->fw_api = 3;
1080 goto out;
1081 }
1082
1083 ret = ath6kl_fetch_fw_apin(ar, ATH6KL_FW_API2_FILE);
1084 if (ret == 0) {
1085 ar->fw_api = 2;
1086 goto out;
Kalle Valo6bc36432011-09-27 14:31:11 +03001087 }
Kalle Valo50d41232011-09-07 10:55:17 +03001088
1089 ret = ath6kl_fetch_fw_api1(ar);
1090 if (ret)
1091 return ret;
1092
Kalle Valo65a8b4c2011-12-16 20:53:41 +02001093 ar->fw_api = 1;
1094
1095out:
1096 ath6kl_dbg(ATH6KL_DBG_BOOT, "using fw api %d\n", ar->fw_api);
Kalle Valo6bc36432011-09-27 14:31:11 +03001097
Kalle Valo50d41232011-09-07 10:55:17 +03001098 return 0;
1099}
1100
Kalle Valobdcd8172011-07-18 00:22:30 +03001101static int ath6kl_upload_board_file(struct ath6kl *ar)
1102{
1103 u32 board_address, board_ext_address, param;
Kevin Fang31024d92011-07-11 17:14:13 +08001104 u32 board_data_size, board_ext_data_size;
Kalle Valobdcd8172011-07-18 00:22:30 +03001105 int ret;
1106
Kalle Valo772c31e2011-09-07 10:55:16 +03001107 if (WARN_ON(ar->fw_board == NULL))
1108 return -ENOENT;
Kalle Valobdcd8172011-07-18 00:22:30 +03001109
Kevin Fang31024d92011-07-11 17:14:13 +08001110 /*
1111 * Determine where in Target RAM to write Board Data.
1112 * For AR6004, host determine Target RAM address for
1113 * writing board data.
1114 */
Kalle Valo0d4d72b2011-11-14 19:30:39 +02001115 if (ar->hw.board_addr != 0) {
Kalle Valob0fc7c12012-03-12 13:22:54 +02001116 board_address = ar->hw.board_addr;
Kalle Valo24fc32b2012-03-07 20:03:58 +02001117 ath6kl_bmi_write_hi32(ar, hi_board_data,
Kalle Valob0fc7c12012-03-12 13:22:54 +02001118 board_address);
Kevin Fang31024d92011-07-11 17:14:13 +08001119 } else {
Kalle Valo80fb26862012-03-07 20:03:59 +02001120 ath6kl_bmi_read_hi32(ar, hi_board_data, &board_address);
Kevin Fang31024d92011-07-11 17:14:13 +08001121 }
1122
Kalle Valobdcd8172011-07-18 00:22:30 +03001123 /* determine where in target ram to write extended board data */
Kalle Valo80fb26862012-03-07 20:03:59 +02001124 ath6kl_bmi_read_hi32(ar, hi_board_ext_data, &board_ext_address);
Kalle Valobdcd8172011-07-18 00:22:30 +03001125
Kalle Valo50e27402011-11-11 12:18:06 +02001126 if (ar->target_type == TARGET_TYPE_AR6003 &&
1127 board_ext_address == 0) {
Kalle Valobdcd8172011-07-18 00:22:30 +03001128 ath6kl_err("Failed to get board file target address.\n");
1129 return -EINVAL;
1130 }
1131
Kevin Fang31024d92011-07-11 17:14:13 +08001132 switch (ar->target_type) {
1133 case TARGET_TYPE_AR6003:
1134 board_data_size = AR6003_BOARD_DATA_SZ;
1135 board_ext_data_size = AR6003_BOARD_EXT_DATA_SZ;
Prasanna Kumarfb1ac2e2012-02-07 14:58:54 -08001136 if (ar->fw_board_len > (board_data_size + board_ext_data_size))
1137 board_ext_data_size = AR6003_BOARD_EXT_DATA_SZ_V2;
Kevin Fang31024d92011-07-11 17:14:13 +08001138 break;
1139 case TARGET_TYPE_AR6004:
1140 board_data_size = AR6004_BOARD_DATA_SZ;
1141 board_ext_data_size = AR6004_BOARD_EXT_DATA_SZ;
1142 break;
1143 default:
1144 WARN_ON(1);
1145 return -EINVAL;
1146 break;
1147 }
1148
Kalle Valo50e27402011-11-11 12:18:06 +02001149 if (board_ext_address &&
1150 ar->fw_board_len == (board_data_size + board_ext_data_size)) {
Kevin Fang31024d92011-07-11 17:14:13 +08001151
Kalle Valobdcd8172011-07-18 00:22:30 +03001152 /* write extended board data */
Kalle Valo6bc36432011-09-27 14:31:11 +03001153 ath6kl_dbg(ATH6KL_DBG_BOOT,
1154 "writing extended board data to 0x%x (%d B)\n",
1155 board_ext_address, board_ext_data_size);
1156
Kalle Valobdcd8172011-07-18 00:22:30 +03001157 ret = ath6kl_bmi_write(ar, board_ext_address,
Kevin Fang31024d92011-07-11 17:14:13 +08001158 ar->fw_board + board_data_size,
1159 board_ext_data_size);
Kalle Valobdcd8172011-07-18 00:22:30 +03001160 if (ret) {
1161 ath6kl_err("Failed to write extended board data: %d\n",
1162 ret);
1163 return ret;
1164 }
1165
1166 /* record that extended board data is initialized */
Kevin Fang31024d92011-07-11 17:14:13 +08001167 param = (board_ext_data_size << 16) | 1;
1168
Kalle Valo24fc32b2012-03-07 20:03:58 +02001169 ath6kl_bmi_write_hi32(ar, hi_board_ext_data_config, param);
Kalle Valobdcd8172011-07-18 00:22:30 +03001170 }
1171
Kevin Fang31024d92011-07-11 17:14:13 +08001172 if (ar->fw_board_len < board_data_size) {
Kalle Valobdcd8172011-07-18 00:22:30 +03001173 ath6kl_err("Too small board file: %zu\n", ar->fw_board_len);
1174 ret = -EINVAL;
1175 return ret;
1176 }
1177
Kalle Valo6bc36432011-09-27 14:31:11 +03001178 ath6kl_dbg(ATH6KL_DBG_BOOT, "writing board file to 0x%x (%d B)\n",
1179 board_address, board_data_size);
1180
Kalle Valobdcd8172011-07-18 00:22:30 +03001181 ret = ath6kl_bmi_write(ar, board_address, ar->fw_board,
Kevin Fang31024d92011-07-11 17:14:13 +08001182 board_data_size);
Kalle Valobdcd8172011-07-18 00:22:30 +03001183
1184 if (ret) {
1185 ath6kl_err("Board file bmi write failed: %d\n", ret);
1186 return ret;
1187 }
1188
1189 /* record the fact that Board Data IS initialized */
Kalle Valo24fc32b2012-03-07 20:03:58 +02001190 ath6kl_bmi_write_hi32(ar, hi_board_data_initialized, 1);
Kalle Valobdcd8172011-07-18 00:22:30 +03001191
1192 return ret;
1193}
1194
1195static int ath6kl_upload_otp(struct ath6kl *ar)
1196{
Kalle Valobdcd8172011-07-18 00:22:30 +03001197 u32 address, param;
Kalle Valobef26a72011-10-12 09:58:28 +03001198 bool from_hw = false;
Kalle Valobdcd8172011-07-18 00:22:30 +03001199 int ret;
1200
Kalle Valo50e27402011-11-11 12:18:06 +02001201 if (ar->fw_otp == NULL)
1202 return 0;
Kalle Valobdcd8172011-07-18 00:22:30 +03001203
Kalle Valoa01ac412011-09-07 10:55:17 +03001204 address = ar->hw.app_load_addr;
Kalle Valobdcd8172011-07-18 00:22:30 +03001205
Kalle Valoef548622011-10-01 09:43:09 +03001206 ath6kl_dbg(ATH6KL_DBG_BOOT, "writing otp to 0x%x (%zd B)\n", address,
Kalle Valo6bc36432011-09-27 14:31:11 +03001207 ar->fw_otp_len);
1208
Kalle Valobdcd8172011-07-18 00:22:30 +03001209 ret = ath6kl_bmi_fast_download(ar, address, ar->fw_otp,
1210 ar->fw_otp_len);
1211 if (ret) {
1212 ath6kl_err("Failed to upload OTP file: %d\n", ret);
1213 return ret;
1214 }
1215
Kalle Valo639d0b82011-09-12 12:48:09 +03001216 /* read firmware start address */
Kalle Valo80fb26862012-03-07 20:03:59 +02001217 ret = ath6kl_bmi_read_hi32(ar, hi_app_start, &address);
Kalle Valo639d0b82011-09-12 12:48:09 +03001218
1219 if (ret) {
1220 ath6kl_err("Failed to read hi_app_start: %d\n", ret);
1221 return ret;
1222 }
1223
Kalle Valobef26a72011-10-12 09:58:28 +03001224 if (ar->hw.app_start_override_addr == 0) {
1225 ar->hw.app_start_override_addr = address;
1226 from_hw = true;
1227 }
Kalle Valo639d0b82011-09-12 12:48:09 +03001228
Kalle Valobef26a72011-10-12 09:58:28 +03001229 ath6kl_dbg(ATH6KL_DBG_BOOT, "app_start_override_addr%s 0x%x\n",
1230 from_hw ? " (from hw)" : "",
Kalle Valo6bc36432011-09-27 14:31:11 +03001231 ar->hw.app_start_override_addr);
1232
Kalle Valobdcd8172011-07-18 00:22:30 +03001233 /* execute the OTP code */
Kalle Valobef26a72011-10-12 09:58:28 +03001234 ath6kl_dbg(ATH6KL_DBG_BOOT, "executing OTP at 0x%x\n",
1235 ar->hw.app_start_override_addr);
Kalle Valobdcd8172011-07-18 00:22:30 +03001236 param = 0;
Kalle Valobef26a72011-10-12 09:58:28 +03001237 ath6kl_bmi_execute(ar, ar->hw.app_start_override_addr, &param);
Kalle Valobdcd8172011-07-18 00:22:30 +03001238
1239 return ret;
1240}
1241
1242static int ath6kl_upload_firmware(struct ath6kl *ar)
1243{
Kalle Valobdcd8172011-07-18 00:22:30 +03001244 u32 address;
1245 int ret;
1246
Kalle Valo772c31e2011-09-07 10:55:16 +03001247 if (WARN_ON(ar->fw == NULL))
Kalle Valo50e27402011-11-11 12:18:06 +02001248 return 0;
Kalle Valobdcd8172011-07-18 00:22:30 +03001249
Kalle Valoa01ac412011-09-07 10:55:17 +03001250 address = ar->hw.app_load_addr;
Kalle Valobdcd8172011-07-18 00:22:30 +03001251
Kalle Valoef548622011-10-01 09:43:09 +03001252 ath6kl_dbg(ATH6KL_DBG_BOOT, "writing firmware to 0x%x (%zd B)\n",
Kalle Valo6bc36432011-09-27 14:31:11 +03001253 address, ar->fw_len);
1254
Kalle Valobdcd8172011-07-18 00:22:30 +03001255 ret = ath6kl_bmi_fast_download(ar, address, ar->fw, ar->fw_len);
1256
1257 if (ret) {
1258 ath6kl_err("Failed to write firmware: %d\n", ret);
1259 return ret;
1260 }
1261
Kevin Fang31024d92011-07-11 17:14:13 +08001262 /*
1263 * Set starting address for firmware
1264 * Don't need to setup app_start override addr on AR6004
1265 */
1266 if (ar->target_type != TARGET_TYPE_AR6004) {
Kalle Valoa01ac412011-09-07 10:55:17 +03001267 address = ar->hw.app_start_override_addr;
Kevin Fang31024d92011-07-11 17:14:13 +08001268 ath6kl_bmi_set_app_start(ar, address);
1269 }
Kalle Valobdcd8172011-07-18 00:22:30 +03001270 return ret;
1271}
1272
1273static int ath6kl_upload_patch(struct ath6kl *ar)
1274{
Kalle Valo24fc32b2012-03-07 20:03:58 +02001275 u32 address;
Kalle Valobdcd8172011-07-18 00:22:30 +03001276 int ret;
1277
Kalle Valo50e27402011-11-11 12:18:06 +02001278 if (ar->fw_patch == NULL)
1279 return 0;
Kalle Valobdcd8172011-07-18 00:22:30 +03001280
Kalle Valoa01ac412011-09-07 10:55:17 +03001281 address = ar->hw.dataset_patch_addr;
Kalle Valobdcd8172011-07-18 00:22:30 +03001282
Kalle Valoef548622011-10-01 09:43:09 +03001283 ath6kl_dbg(ATH6KL_DBG_BOOT, "writing patch to 0x%x (%zd B)\n",
Kalle Valo6bc36432011-09-27 14:31:11 +03001284 address, ar->fw_patch_len);
1285
Kalle Valobdcd8172011-07-18 00:22:30 +03001286 ret = ath6kl_bmi_write(ar, address, ar->fw_patch, ar->fw_patch_len);
1287 if (ret) {
1288 ath6kl_err("Failed to write patch file: %d\n", ret);
1289 return ret;
1290 }
1291
Kalle Valo24fc32b2012-03-07 20:03:58 +02001292 ath6kl_bmi_write_hi32(ar, hi_dset_list_head, address);
Kalle Valobdcd8172011-07-18 00:22:30 +03001293
1294 return 0;
1295}
1296
Alex Yangcd23c1c2012-01-17 15:32:29 +02001297static int ath6kl_upload_testscript(struct ath6kl *ar)
1298{
Kalle Valo24fc32b2012-03-07 20:03:58 +02001299 u32 address;
Alex Yangcd23c1c2012-01-17 15:32:29 +02001300 int ret;
1301
Kalle Valo5f1127f2012-01-24 13:50:16 +02001302 if (ar->testmode != 2)
Alex Yangcd23c1c2012-01-17 15:32:29 +02001303 return 0;
1304
1305 if (ar->fw_testscript == NULL)
1306 return 0;
1307
1308 address = ar->hw.testscript_addr;
1309
1310 ath6kl_dbg(ATH6KL_DBG_BOOT, "writing testscript to 0x%x (%zd B)\n",
Kalle Valo96f1fad2012-03-07 20:03:57 +02001311 address, ar->fw_testscript_len);
Alex Yangcd23c1c2012-01-17 15:32:29 +02001312
1313 ret = ath6kl_bmi_write(ar, address, ar->fw_testscript,
1314 ar->fw_testscript_len);
1315 if (ret) {
1316 ath6kl_err("Failed to write testscript file: %d\n", ret);
1317 return ret;
1318 }
1319
Kalle Valo24fc32b2012-03-07 20:03:58 +02001320 ath6kl_bmi_write_hi32(ar, hi_ota_testscript, address);
1321 ath6kl_bmi_write_hi32(ar, hi_end_ram_reserve_sz, 4096);
1322 ath6kl_bmi_write_hi32(ar, hi_test_apps_related, 1);
Alex Yangcd23c1c2012-01-17 15:32:29 +02001323
1324 return 0;
1325}
1326
Kalle Valobdcd8172011-07-18 00:22:30 +03001327static int ath6kl_init_upload(struct ath6kl *ar)
1328{
1329 u32 param, options, sleep, address;
1330 int status = 0;
1331
Kevin Fang31024d92011-07-11 17:14:13 +08001332 if (ar->target_type != TARGET_TYPE_AR6003 &&
Kalle Valo96f1fad2012-03-07 20:03:57 +02001333 ar->target_type != TARGET_TYPE_AR6004)
Kalle Valobdcd8172011-07-18 00:22:30 +03001334 return -EINVAL;
1335
1336 /* temporarily disable system sleep */
1337 address = MBOX_BASE_ADDRESS + LOCAL_SCRATCH_ADDRESS;
1338 status = ath6kl_bmi_reg_read(ar, address, &param);
1339 if (status)
1340 return status;
1341
1342 options = param;
1343
1344 param |= ATH6KL_OPTION_SLEEP_DISABLE;
1345 status = ath6kl_bmi_reg_write(ar, address, param);
1346 if (status)
1347 return status;
1348
1349 address = RTC_BASE_ADDRESS + SYSTEM_SLEEP_ADDRESS;
1350 status = ath6kl_bmi_reg_read(ar, address, &param);
1351 if (status)
1352 return status;
1353
1354 sleep = param;
1355
1356 param |= SM(SYSTEM_SLEEP_DISABLE, 1);
1357 status = ath6kl_bmi_reg_write(ar, address, param);
1358 if (status)
1359 return status;
1360
1361 ath6kl_dbg(ATH6KL_DBG_TRC, "old options: %d, old sleep: %d\n",
1362 options, sleep);
1363
1364 /* program analog PLL register */
Kevin Fang31024d92011-07-11 17:14:13 +08001365 /* no need to control 40/44MHz clock on AR6004 */
1366 if (ar->target_type != TARGET_TYPE_AR6004) {
1367 status = ath6kl_bmi_reg_write(ar, ATH6KL_ANALOG_PLL_REGISTER,
1368 0xF9104001);
Kalle Valobdcd8172011-07-18 00:22:30 +03001369
Kevin Fang31024d92011-07-11 17:14:13 +08001370 if (status)
1371 return status;
Kalle Valobdcd8172011-07-18 00:22:30 +03001372
Kevin Fang31024d92011-07-11 17:14:13 +08001373 /* Run at 80/88MHz by default */
1374 param = SM(CPU_CLOCK_STANDARD, 1);
1375
1376 address = RTC_BASE_ADDRESS + CPU_CLOCK_ADDRESS;
1377 status = ath6kl_bmi_reg_write(ar, address, param);
1378 if (status)
1379 return status;
1380 }
Kalle Valobdcd8172011-07-18 00:22:30 +03001381
1382 param = 0;
1383 address = RTC_BASE_ADDRESS + LPO_CAL_ADDRESS;
1384 param = SM(LPO_CAL_ENABLE, 1);
1385 status = ath6kl_bmi_reg_write(ar, address, param);
1386 if (status)
1387 return status;
1388
1389 /* WAR to avoid SDIO CRC err */
Raja Mani4480bb52012-02-22 12:03:51 +05301390 if (ar->version.target_ver == AR6003_HW_2_0_VERSION ||
1391 ar->version.target_ver == AR6003_HW_2_1_1_VERSION) {
Kalle Valobdcd8172011-07-18 00:22:30 +03001392 ath6kl_err("temporary war to avoid sdio crc error\n");
1393
1394 param = 0x20;
1395
1396 address = GPIO_BASE_ADDRESS + GPIO_PIN10_ADDRESS;
1397 status = ath6kl_bmi_reg_write(ar, address, param);
1398 if (status)
1399 return status;
1400
1401 address = GPIO_BASE_ADDRESS + GPIO_PIN11_ADDRESS;
1402 status = ath6kl_bmi_reg_write(ar, address, param);
1403 if (status)
1404 return status;
1405
1406 address = GPIO_BASE_ADDRESS + GPIO_PIN12_ADDRESS;
1407 status = ath6kl_bmi_reg_write(ar, address, param);
1408 if (status)
1409 return status;
1410
1411 address = GPIO_BASE_ADDRESS + GPIO_PIN13_ADDRESS;
1412 status = ath6kl_bmi_reg_write(ar, address, param);
1413 if (status)
1414 return status;
1415 }
1416
1417 /* write EEPROM data to Target RAM */
1418 status = ath6kl_upload_board_file(ar);
1419 if (status)
1420 return status;
1421
1422 /* transfer One time Programmable data */
1423 status = ath6kl_upload_otp(ar);
1424 if (status)
1425 return status;
1426
1427 /* Download Target firmware */
1428 status = ath6kl_upload_firmware(ar);
1429 if (status)
1430 return status;
1431
1432 status = ath6kl_upload_patch(ar);
1433 if (status)
1434 return status;
1435
Alex Yangcd23c1c2012-01-17 15:32:29 +02001436 /* Download the test script */
1437 status = ath6kl_upload_testscript(ar);
1438 if (status)
1439 return status;
1440
Kalle Valobdcd8172011-07-18 00:22:30 +03001441 /* Restore system sleep */
1442 address = RTC_BASE_ADDRESS + SYSTEM_SLEEP_ADDRESS;
1443 status = ath6kl_bmi_reg_write(ar, address, sleep);
1444 if (status)
1445 return status;
1446
1447 address = MBOX_BASE_ADDRESS + LOCAL_SCRATCH_ADDRESS;
1448 param = options | 0x20;
1449 status = ath6kl_bmi_reg_write(ar, address, param);
1450 if (status)
1451 return status;
1452
Kalle Valobdcd8172011-07-18 00:22:30 +03001453 return status;
1454}
1455
Kalle Valo45eaa782012-01-17 20:09:05 +02001456int ath6kl_init_hw_params(struct ath6kl *ar)
Kalle Valoa01ac412011-09-07 10:55:17 +03001457{
Kalle Valo1b46dc042012-01-31 21:26:22 +02001458 const struct ath6kl_hw *uninitialized_var(hw);
Kalle Valo856f4b312011-11-14 19:30:29 +02001459 int i;
Kalle Valobef26a72011-10-12 09:58:28 +03001460
Kalle Valo856f4b312011-11-14 19:30:29 +02001461 for (i = 0; i < ARRAY_SIZE(hw_list); i++) {
1462 hw = &hw_list[i];
Kalle Valobef26a72011-10-12 09:58:28 +03001463
Kalle Valo856f4b312011-11-14 19:30:29 +02001464 if (hw->id == ar->version.target_ver)
1465 break;
1466 }
1467
1468 if (i == ARRAY_SIZE(hw_list)) {
Kalle Valoa01ac412011-09-07 10:55:17 +03001469 ath6kl_err("Unsupported hardware version: 0x%x\n",
1470 ar->version.target_ver);
1471 return -EINVAL;
1472 }
1473
Kalle Valo856f4b312011-11-14 19:30:29 +02001474 ar->hw = *hw;
1475
Kalle Valo6bc36432011-09-27 14:31:11 +03001476 ath6kl_dbg(ATH6KL_DBG_BOOT,
1477 "target_ver 0x%x target_type 0x%x dataset_patch 0x%x app_load_addr 0x%x\n",
1478 ar->version.target_ver, ar->target_type,
1479 ar->hw.dataset_patch_addr, ar->hw.app_load_addr);
1480 ath6kl_dbg(ATH6KL_DBG_BOOT,
1481 "app_start_override_addr 0x%x board_ext_data_addr 0x%x reserved_ram_size 0x%x",
1482 ar->hw.app_start_override_addr, ar->hw.board_ext_data_addr,
1483 ar->hw.reserved_ram_size);
Ryan Hsu39586bf2011-12-13 17:11:07 +08001484 ath6kl_dbg(ATH6KL_DBG_BOOT,
1485 "refclk_hz %d uarttx_pin %d",
1486 ar->hw.refclk_hz, ar->hw.uarttx_pin);
Kalle Valo6bc36432011-09-27 14:31:11 +03001487
Kalle Valoa01ac412011-09-07 10:55:17 +03001488 return 0;
1489}
1490
Kalle Valo293badf2011-11-14 19:30:54 +02001491static const char *ath6kl_init_get_hif_name(enum ath6kl_hif_type type)
1492{
1493 switch (type) {
1494 case ATH6KL_HIF_TYPE_SDIO:
1495 return "sdio";
1496 case ATH6KL_HIF_TYPE_USB:
1497 return "usb";
1498 }
1499
1500 return NULL;
1501}
1502
Kalle Valo5fe4dff2011-10-30 21:16:15 +02001503int ath6kl_init_hw_start(struct ath6kl *ar)
Kalle Valo20459ee2011-10-27 18:48:37 +03001504{
1505 long timeleft;
1506 int ret, i;
1507
Kalle Valo5fe4dff2011-10-30 21:16:15 +02001508 ath6kl_dbg(ATH6KL_DBG_BOOT, "hw start\n");
1509
Kalle Valo20459ee2011-10-27 18:48:37 +03001510 ret = ath6kl_hif_power_on(ar);
1511 if (ret)
1512 return ret;
1513
1514 ret = ath6kl_configure_target(ar);
1515 if (ret)
1516 goto err_power_off;
1517
1518 ret = ath6kl_init_upload(ar);
1519 if (ret)
1520 goto err_power_off;
1521
1522 /* Do we need to finish the BMI phase */
1523 /* FIXME: return error from ath6kl_bmi_done() */
1524 if (ath6kl_bmi_done(ar)) {
1525 ret = -EIO;
1526 goto err_power_off;
1527 }
1528
1529 /*
1530 * The reason we have to wait for the target here is that the
1531 * driver layer has to init BMI in order to set the host block
1532 * size.
1533 */
1534 if (ath6kl_htc_wait_target(ar->htc_target)) {
1535 ret = -EIO;
1536 goto err_power_off;
1537 }
1538
1539 if (ath6kl_init_service_ep(ar)) {
1540 ret = -EIO;
1541 goto err_cleanup_scatter;
1542 }
1543
1544 /* setup credit distribution */
Kalle Valoe76ac2bf2012-03-25 17:15:27 +03001545 ath6kl_htc_credit_setup(ar->htc_target, &ar->credit_state_info);
Kalle Valo20459ee2011-10-27 18:48:37 +03001546
1547 /* start HTC */
1548 ret = ath6kl_htc_start(ar->htc_target);
1549 if (ret) {
1550 /* FIXME: call this */
1551 ath6kl_cookie_cleanup(ar);
1552 goto err_cleanup_scatter;
1553 }
1554
1555 /* Wait for Wmi event to be ready */
1556 timeleft = wait_event_interruptible_timeout(ar->event_wq,
1557 test_bit(WMI_READY,
1558 &ar->flag),
1559 WMI_TIMEOUT);
1560
1561 ath6kl_dbg(ATH6KL_DBG_BOOT, "firmware booted\n");
1562
Kalle Valo293badf2011-11-14 19:30:54 +02001563
1564 if (test_and_clear_bit(FIRST_BOOT, &ar->flag)) {
Kalle Valo65a8b4c2011-12-16 20:53:41 +02001565 ath6kl_info("%s %s fw %s api %d%s\n",
Kalle Valo293badf2011-11-14 19:30:54 +02001566 ar->hw.name,
1567 ath6kl_init_get_hif_name(ar->hif_type),
1568 ar->wiphy->fw_version,
Kalle Valo65a8b4c2011-12-16 20:53:41 +02001569 ar->fw_api,
Kalle Valo293badf2011-11-14 19:30:54 +02001570 test_bit(TESTMODE, &ar->flag) ? " testmode" : "");
1571 }
1572
Kalle Valo20459ee2011-10-27 18:48:37 +03001573 if (ar->version.abi_ver != ATH6KL_ABI_VERSION) {
1574 ath6kl_err("abi version mismatch: host(0x%x), target(0x%x)\n",
1575 ATH6KL_ABI_VERSION, ar->version.abi_ver);
1576 ret = -EIO;
1577 goto err_htc_stop;
1578 }
1579
1580 if (!timeleft || signal_pending(current)) {
1581 ath6kl_err("wmi is not ready or wait was interrupted\n");
1582 ret = -EIO;
1583 goto err_htc_stop;
1584 }
1585
1586 ath6kl_dbg(ATH6KL_DBG_TRC, "%s: wmi is ready\n", __func__);
1587
1588 /* communicate the wmi protocol verision to the target */
1589 /* FIXME: return error */
1590 if ((ath6kl_set_host_app_area(ar)) != 0)
1591 ath6kl_err("unable to set the host app area\n");
1592
Kalle Valo71f96ee2011-11-14 19:31:30 +02001593 for (i = 0; i < ar->vif_max; i++) {
Kalle Valo20459ee2011-10-27 18:48:37 +03001594 ret = ath6kl_target_config_wlan_params(ar, i);
1595 if (ret)
1596 goto err_htc_stop;
1597 }
1598
Kalle Valo76a9fbe2011-11-01 08:44:28 +02001599 ar->state = ATH6KL_STATE_ON;
1600
Kalle Valo20459ee2011-10-27 18:48:37 +03001601 return 0;
1602
1603err_htc_stop:
1604 ath6kl_htc_stop(ar->htc_target);
1605err_cleanup_scatter:
1606 ath6kl_hif_cleanup_scatter(ar);
1607err_power_off:
1608 ath6kl_hif_power_off(ar);
1609
1610 return ret;
1611}
1612
Kalle Valo5fe4dff2011-10-30 21:16:15 +02001613int ath6kl_init_hw_stop(struct ath6kl *ar)
1614{
1615 int ret;
1616
1617 ath6kl_dbg(ATH6KL_DBG_BOOT, "hw stop\n");
1618
1619 ath6kl_htc_stop(ar->htc_target);
1620
1621 ath6kl_hif_stop(ar);
1622
1623 ath6kl_bmi_reset(ar);
1624
1625 ret = ath6kl_hif_power_off(ar);
1626 if (ret)
1627 ath6kl_warn("failed to power off hif: %d\n", ret);
1628
Kalle Valo76a9fbe2011-11-01 08:44:28 +02001629 ar->state = ATH6KL_STATE_OFF;
1630
Kalle Valo5fe4dff2011-10-30 21:16:15 +02001631 return 0;
1632}
1633
Kalle Valoc25889e2012-01-17 20:08:27 +02001634/* FIXME: move this to cfg80211.c and rename to ath6kl_cfg80211_vif_stop() */
Vasanthakumar Thiagarajan55055972011-10-25 19:34:23 +05301635void ath6kl_cleanup_vif(struct ath6kl_vif *vif, bool wmi_ready)
Vasanthakumar Thiagarajan6db8fa52011-10-25 19:34:16 +05301636{
1637 static u8 bcast_mac[] = {0xff, 0xff, 0xff, 0xff, 0xff, 0xff};
1638 bool discon_issued;
1639
1640 netif_stop_queue(vif->ndev);
1641
1642 clear_bit(WLAN_ENABLED, &vif->flags);
1643
1644 if (wmi_ready) {
1645 discon_issued = test_bit(CONNECTED, &vif->flags) ||
1646 test_bit(CONNECT_PEND, &vif->flags);
1647 ath6kl_disconnect(vif);
1648 del_timer(&vif->disconnect_timer);
1649
1650 if (discon_issued)
1651 ath6kl_disconnect_event(vif, DISCONNECT_CMD,
1652 (vif->nw_type & AP_NETWORK) ?
1653 bcast_mac : vif->bssid,
1654 0, NULL, 0);
1655 }
1656
1657 if (vif->scan_req) {
1658 cfg80211_scan_done(vif->scan_req, true);
1659 vif->scan_req = NULL;
1660 }
Vasanthakumar Thiagarajan6db8fa52011-10-25 19:34:16 +05301661}
1662
Kalle Valobdcd8172011-07-18 00:22:30 +03001663void ath6kl_stop_txrx(struct ath6kl *ar)
1664{
Vasanthakumar Thiagarajan990bd912011-10-25 19:34:20 +05301665 struct ath6kl_vif *vif, *tmp_vif;
Vasanthakumar Thiagarajan1d2a4452012-01-21 15:22:53 +05301666 int i;
Kalle Valobdcd8172011-07-18 00:22:30 +03001667
1668 set_bit(DESTROY_IN_PROGRESS, &ar->flag);
1669
1670 if (down_interruptible(&ar->sem)) {
1671 ath6kl_err("down_interruptible failed\n");
1672 return;
1673 }
1674
Vasanthakumar Thiagarajan1d2a4452012-01-21 15:22:53 +05301675 for (i = 0; i < AP_MAX_NUM_STA; i++)
1676 aggr_reset_state(ar->sta_list[i].aggr_conn);
1677
Vasanthakumar Thiagarajan11f6e402011-11-01 16:38:50 +05301678 spin_lock_bh(&ar->list_lock);
Vasanthakumar Thiagarajan990bd912011-10-25 19:34:20 +05301679 list_for_each_entry_safe(vif, tmp_vif, &ar->vif_list, list) {
1680 list_del(&vif->list);
Vasanthakumar Thiagarajan11f6e402011-11-01 16:38:50 +05301681 spin_unlock_bh(&ar->list_lock);
Vasanthakumar Thiagarajan990bd912011-10-25 19:34:20 +05301682 ath6kl_cleanup_vif(vif, test_bit(WMI_READY, &ar->flag));
Vasanthakumar Thiagarajan27929722011-10-25 19:34:21 +05301683 rtnl_lock();
Kalle Valoc25889e2012-01-17 20:08:27 +02001684 ath6kl_cfg80211_vif_cleanup(vif);
Vasanthakumar Thiagarajan27929722011-10-25 19:34:21 +05301685 rtnl_unlock();
Vasanthakumar Thiagarajan11f6e402011-11-01 16:38:50 +05301686 spin_lock_bh(&ar->list_lock);
Vasanthakumar Thiagarajan990bd912011-10-25 19:34:20 +05301687 }
Vasanthakumar Thiagarajan11f6e402011-11-01 16:38:50 +05301688 spin_unlock_bh(&ar->list_lock);
Kalle Valobdcd8172011-07-18 00:22:30 +03001689
Vasanthakumar Thiagarajan6db8fa52011-10-25 19:34:16 +05301690 clear_bit(WMI_READY, &ar->flag);
Kalle Valobdcd8172011-07-18 00:22:30 +03001691
Vasanthakumar Thiagarajan6db8fa52011-10-25 19:34:16 +05301692 /*
1693 * After wmi_shudown all WMI events will be dropped. We
1694 * need to cleanup the buffers allocated in AP mode and
1695 * give disconnect notification to stack, which usually
1696 * happens in the disconnect_event. Simulate the disconnect
1697 * event by calling the function directly. Sometimes
1698 * disconnect_event will be received when the debug logs
1699 * are collected.
1700 */
1701 ath6kl_wmi_shutdown(ar->wmi);
Kalle Valobdcd8172011-07-18 00:22:30 +03001702
Vasanthakumar Thiagarajan6db8fa52011-10-25 19:34:16 +05301703 clear_bit(WMI_ENABLED, &ar->flag);
1704 if (ar->htc_target) {
1705 ath6kl_dbg(ATH6KL_DBG_TRC, "%s: shut down htc\n", __func__);
1706 ath6kl_htc_stop(ar->htc_target);
Kalle Valobdcd8172011-07-18 00:22:30 +03001707 }
1708
Vasanthakumar Thiagarajan6db8fa52011-10-25 19:34:16 +05301709 /*
1710 * Try to reset the device if we can. The driver may have been
1711 * configure NOT to reset the target during a debug session.
1712 */
1713 ath6kl_dbg(ATH6KL_DBG_TRC,
Kalle Valo96f1fad2012-03-07 20:03:57 +02001714 "attempting to reset target on instance destroy\n");
Vasanthakumar Thiagarajan6db8fa52011-10-25 19:34:16 +05301715 ath6kl_reset_device(ar, ar->target_type, true, true);
Kalle Valobdcd8172011-07-18 00:22:30 +03001716
Vasanthakumar Thiagarajan6db8fa52011-10-25 19:34:16 +05301717 clear_bit(WLAN_ENABLED, &ar->flag);
Vasanthakumar Thiagarajane8ad9a02012-02-14 20:32:59 +05301718
1719 up(&ar->sem);
Kalle Valobdcd8172011-07-18 00:22:30 +03001720}
Kalle Valod6a434d2012-01-17 20:09:36 +02001721EXPORT_SYMBOL(ath6kl_stop_txrx);