blob: daf24ee9d28a224f498495bdc2af03574c7cffa8 [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,
Bala Shanmugam06e360a2012-05-22 13:23:12 +053045 .flags = 0,
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,
Bala Shanmugam06e360a2012-05-22 13:23:12 +053071 .flags = 0,
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,
Bala Shanmugam06e360a2012-05-22 13:23:12 +053096 .flags = ATH6KL_HW_FLAG_64BIT_RATES,
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,
Bala Shanmugam06e360a2012-05-22 13:23:12 +0530116 .flags = ATH6KL_HW_FLAG_64BIT_RATES,
Kalle Valod1a94212011-11-14 19:31:23 +0200117
Kalle Valoc0038972011-12-16 20:53:31 +0200118 .fw = {
119 .dir = AR6004_HW_1_1_FW_DIR,
120 .fw = AR6004_HW_1_1_FIRMWARE_FILE,
Kalle Valoc0038972011-12-16 20:53:31 +0200121 },
122
Kalle Valod1a94212011-11-14 19:31:23 +0200123 .fw_board = AR6004_HW_1_1_BOARD_DATA_FILE,
124 .fw_default_board = AR6004_HW_1_1_DEFAULT_BOARD_DATA_FILE,
Kalle Valo856f4b312011-11-14 19:30:29 +0200125 },
Ray Chen6146ca62012-04-11 10:03:13 +0800126 {
127 .id = AR6004_HW_1_2_VERSION,
128 .name = "ar6004 hw 1.2",
129 .dataset_patch_addr = 0x436ecc,
130 .app_load_addr = 0x1234,
131 .board_ext_data_addr = 0x437000,
132 .reserved_ram_size = 9216,
133 .board_addr = 0x435c00,
134 .refclk_hz = 40000000,
135 .uarttx_pin = 11,
Bala Shanmugam06e360a2012-05-22 13:23:12 +0530136 .flags = ATH6KL_HW_FLAG_64BIT_RATES,
Ray Chen6146ca62012-04-11 10:03:13 +0800137
138 .fw = {
139 .dir = AR6004_HW_1_2_FW_DIR,
140 .fw = AR6004_HW_1_2_FIRMWARE_FILE,
141 },
142 .fw_board = AR6004_HW_1_2_BOARD_DATA_FILE,
143 .fw_default_board = AR6004_HW_1_2_DEFAULT_BOARD_DATA_FILE,
144 },
Kalle Valo856f4b312011-11-14 19:30:29 +0200145};
146
Kalle Valobdcd8172011-07-18 00:22:30 +0300147/*
148 * Include definitions here that can be used to tune the WLAN module
149 * behavior. Different customers can tune the behavior as per their needs,
150 * here.
151 */
152
153/*
154 * This configuration item enable/disable keepalive support.
155 * Keepalive support: In the absence of any data traffic to AP, null
156 * frames will be sent to the AP at periodic interval, to keep the association
157 * active. This configuration item defines the periodic interval.
158 * Use value of zero to disable keepalive support
159 * Default: 60 seconds
160 */
161#define WLAN_CONFIG_KEEP_ALIVE_INTERVAL 60
162
163/*
164 * This configuration item sets the value of disconnect timeout
165 * Firmware delays sending the disconnec event to the host for this
166 * timeout after is gets disconnected from the current AP.
167 * If the firmware successly roams within the disconnect timeout
168 * it sends a new connect event
169 */
170#define WLAN_CONFIG_DISCONNECT_TIMEOUT 10
171
Kalle Valobdcd8172011-07-18 00:22:30 +0300172
Kalle Valobdcd8172011-07-18 00:22:30 +0300173#define ATH6KL_DATA_OFFSET 64
174struct sk_buff *ath6kl_buf_alloc(int size)
175{
176 struct sk_buff *skb;
177 u16 reserved;
178
179 /* Add chacheline space at front and back of buffer */
180 reserved = (2 * L1_CACHE_BYTES) + ATH6KL_DATA_OFFSET +
Vasanthakumar Thiagarajan1df94a82011-08-17 18:45:10 +0530181 sizeof(struct htc_packet) + ATH6KL_HTC_ALIGN_BYTES;
Kalle Valobdcd8172011-07-18 00:22:30 +0300182 skb = dev_alloc_skb(size + reserved);
183
184 if (skb)
185 skb_reserve(skb, reserved - L1_CACHE_BYTES);
186 return skb;
187}
188
Vasanthakumar Thiagarajane29f25f2011-10-25 19:34:15 +0530189void ath6kl_init_profile_info(struct ath6kl_vif *vif)
Kalle Valobdcd8172011-07-18 00:22:30 +0300190{
Vasanthakumar Thiagarajan34503342011-10-25 19:34:02 +0530191 vif->ssid_len = 0;
192 memset(vif->ssid, 0, sizeof(vif->ssid));
193
194 vif->dot11_auth_mode = OPEN_AUTH;
195 vif->auth_mode = NONE_AUTH;
196 vif->prwise_crypto = NONE_CRYPT;
197 vif->prwise_crypto_len = 0;
198 vif->grp_crypto = NONE_CRYPT;
199 vif->grp_crypto_len = 0;
Vasanthakumar Thiagarajan6f2a73f2011-10-25 19:34:06 +0530200 memset(vif->wep_key_list, 0, sizeof(vif->wep_key_list));
Vasanthakumar Thiagarajan8c8b65e2011-10-25 19:34:04 +0530201 memset(vif->req_bssid, 0, sizeof(vif->req_bssid));
202 memset(vif->bssid, 0, sizeof(vif->bssid));
Vasanthakumar Thiagarajanf74bac52011-10-25 19:34:05 +0530203 vif->bss_ch = 0;
Kalle Valobdcd8172011-07-18 00:22:30 +0300204}
205
Kalle Valobdcd8172011-07-18 00:22:30 +0300206static int ath6kl_set_host_app_area(struct ath6kl *ar)
207{
208 u32 address, data;
209 struct host_app_area host_app_area;
210
211 /* Fetch the address of the host_app_area_s
212 * instance in the host interest area */
213 address = ath6kl_get_hi_item_addr(ar, HI_ITEM(hi_app_host_interest));
Kevin Fang31024d92011-07-11 17:14:13 +0800214 address = TARG_VTOP(ar->target_type, address);
Kalle Valobdcd8172011-07-18 00:22:30 +0300215
Kalle Valoaddb44b2011-09-02 10:32:05 +0300216 if (ath6kl_diag_read32(ar, address, &data))
Kalle Valobdcd8172011-07-18 00:22:30 +0300217 return -EIO;
218
Kevin Fang31024d92011-07-11 17:14:13 +0800219 address = TARG_VTOP(ar->target_type, data);
Kalle Valocbf49a62011-10-05 12:23:17 +0300220 host_app_area.wmi_protocol_ver = cpu_to_le32(WMI_PROTOCOL_VERSION);
Kalle Valoaddb44b2011-09-02 10:32:05 +0300221 if (ath6kl_diag_write(ar, address, (u8 *) &host_app_area,
222 sizeof(struct host_app_area)))
Kalle Valobdcd8172011-07-18 00:22:30 +0300223 return -EIO;
224
225 return 0;
226}
227
228static inline void set_ac2_ep_map(struct ath6kl *ar,
229 u8 ac,
230 enum htc_endpoint_id ep)
231{
232 ar->ac2ep_map[ac] = ep;
233 ar->ep2ac_map[ep] = ac;
234}
235
236/* connect to a service */
237static int ath6kl_connectservice(struct ath6kl *ar,
238 struct htc_service_connect_req *con_req,
239 char *desc)
240{
241 int status;
242 struct htc_service_connect_resp response;
243
244 memset(&response, 0, sizeof(response));
245
Kalle Vaload226ec2011-08-10 09:49:12 +0300246 status = ath6kl_htc_conn_service(ar->htc_target, con_req, &response);
Kalle Valobdcd8172011-07-18 00:22:30 +0300247 if (status) {
248 ath6kl_err("failed to connect to %s service status:%d\n",
249 desc, status);
250 return status;
251 }
252
253 switch (con_req->svc_id) {
254 case WMI_CONTROL_SVC:
255 if (test_bit(WMI_ENABLED, &ar->flag))
256 ath6kl_wmi_set_control_ep(ar->wmi, response.endpoint);
257 ar->ctrl_ep = response.endpoint;
258 break;
259 case WMI_DATA_BE_SVC:
260 set_ac2_ep_map(ar, WMM_AC_BE, response.endpoint);
261 break;
262 case WMI_DATA_BK_SVC:
263 set_ac2_ep_map(ar, WMM_AC_BK, response.endpoint);
264 break;
265 case WMI_DATA_VI_SVC:
266 set_ac2_ep_map(ar, WMM_AC_VI, response.endpoint);
267 break;
268 case WMI_DATA_VO_SVC:
269 set_ac2_ep_map(ar, WMM_AC_VO, response.endpoint);
270 break;
271 default:
272 ath6kl_err("service id is not mapped %d\n", con_req->svc_id);
273 return -EINVAL;
274 }
275
276 return 0;
277}
278
279static int ath6kl_init_service_ep(struct ath6kl *ar)
280{
281 struct htc_service_connect_req connect;
282
283 memset(&connect, 0, sizeof(connect));
284
285 /* these fields are the same for all service endpoints */
Kalle Valo900d6b32012-03-25 17:15:23 +0300286 connect.ep_cb.tx_comp_multi = ath6kl_tx_complete;
Kalle Valobdcd8172011-07-18 00:22:30 +0300287 connect.ep_cb.rx = ath6kl_rx;
288 connect.ep_cb.rx_refill = ath6kl_rx_refill;
289 connect.ep_cb.tx_full = ath6kl_tx_queue_full;
290
291 /*
292 * Set the max queue depth so that our ath6kl_tx_queue_full handler
293 * gets called.
294 */
295 connect.max_txq_depth = MAX_DEFAULT_SEND_QUEUE_DEPTH;
296 connect.ep_cb.rx_refill_thresh = ATH6KL_MAX_RX_BUFFERS / 4;
297 if (!connect.ep_cb.rx_refill_thresh)
298 connect.ep_cb.rx_refill_thresh++;
299
300 /* connect to control service */
301 connect.svc_id = WMI_CONTROL_SVC;
302 if (ath6kl_connectservice(ar, &connect, "WMI CONTROL"))
303 return -EIO;
304
305 connect.flags |= HTC_FLGS_TX_BNDL_PAD_EN;
306
307 /*
308 * Limit the HTC message size on the send path, although e can
309 * receive A-MSDU frames of 4K, we will only send ethernet-sized
310 * (802.3) frames on the send path.
311 */
312 connect.max_rxmsg_sz = WMI_MAX_TX_DATA_FRAME_LENGTH;
313
314 /*
315 * To reduce the amount of committed memory for larger A_MSDU
316 * frames, use the recv-alloc threshold mechanism for larger
317 * packets.
318 */
319 connect.ep_cb.rx_alloc_thresh = ATH6KL_BUFFER_SIZE;
320 connect.ep_cb.rx_allocthresh = ath6kl_alloc_amsdu_rxbuf;
321
322 /*
323 * For the remaining data services set the connection flag to
324 * reduce dribbling, if configured to do so.
325 */
326 connect.conn_flags |= HTC_CONN_FLGS_REDUCE_CRED_DRIB;
327 connect.conn_flags &= ~HTC_CONN_FLGS_THRESH_MASK;
328 connect.conn_flags |= HTC_CONN_FLGS_THRESH_LVL_HALF;
329
330 connect.svc_id = WMI_DATA_BE_SVC;
331
332 if (ath6kl_connectservice(ar, &connect, "WMI DATA BE"))
333 return -EIO;
334
335 /* connect to back-ground map this to WMI LOW_PRI */
336 connect.svc_id = WMI_DATA_BK_SVC;
337 if (ath6kl_connectservice(ar, &connect, "WMI DATA BK"))
338 return -EIO;
339
340 /* connect to Video service, map this to to HI PRI */
341 connect.svc_id = WMI_DATA_VI_SVC;
342 if (ath6kl_connectservice(ar, &connect, "WMI DATA VI"))
343 return -EIO;
344
345 /*
346 * Connect to VO service, this is currently not mapped to a WMI
347 * priority stream due to historical reasons. WMI originally
348 * defined 3 priorities over 3 mailboxes We can change this when
349 * WMI is reworked so that priorities are not dependent on
350 * mailboxes.
351 */
352 connect.svc_id = WMI_DATA_VO_SVC;
353 if (ath6kl_connectservice(ar, &connect, "WMI DATA VO"))
354 return -EIO;
355
356 return 0;
357}
358
Vasanthakumar Thiagarajane29f25f2011-10-25 19:34:15 +0530359void ath6kl_init_control_info(struct ath6kl_vif *vif)
Kalle Valobdcd8172011-07-18 00:22:30 +0300360{
Vasanthakumar Thiagarajane29f25f2011-10-25 19:34:15 +0530361 ath6kl_init_profile_info(vif);
Vasanthakumar Thiagarajan34503342011-10-25 19:34:02 +0530362 vif->def_txkey_index = 0;
Vasanthakumar Thiagarajan6f2a73f2011-10-25 19:34:06 +0530363 memset(vif->wep_key_list, 0, sizeof(vif->wep_key_list));
Vasanthakumar Thiagarajanf74bac52011-10-25 19:34:05 +0530364 vif->ch_hint = 0;
Kalle Valobdcd8172011-07-18 00:22:30 +0300365}
366
367/*
368 * Set HTC/Mbox operational parameters, this can only be called when the
369 * target is in the BMI phase.
370 */
371static int ath6kl_set_htc_params(struct ath6kl *ar, u32 mbox_isr_yield_val,
372 u8 htc_ctrl_buf)
373{
374 int status;
375 u32 blk_size;
376
377 blk_size = ar->mbox_info.block_size;
378
379 if (htc_ctrl_buf)
380 blk_size |= ((u32)htc_ctrl_buf) << 16;
381
382 /* set the host interest area for the block size */
Kalle Valo24fc32b2012-03-07 20:03:58 +0200383 status = ath6kl_bmi_write_hi32(ar, hi_mbox_io_block_sz, blk_size);
Kalle Valobdcd8172011-07-18 00:22:30 +0300384 if (status) {
385 ath6kl_err("bmi_write_memory for IO block size failed\n");
386 goto out;
387 }
388
389 ath6kl_dbg(ATH6KL_DBG_TRC, "block size set: %d (target addr:0x%X)\n",
390 blk_size,
391 ath6kl_get_hi_item_addr(ar, HI_ITEM(hi_mbox_io_block_sz)));
392
393 if (mbox_isr_yield_val) {
394 /* set the host interest area for the mbox ISR yield limit */
Kalle Valo24fc32b2012-03-07 20:03:58 +0200395 status = ath6kl_bmi_write_hi32(ar, hi_mbox_isr_yield_limit,
396 mbox_isr_yield_val);
Kalle Valobdcd8172011-07-18 00:22:30 +0300397 if (status) {
398 ath6kl_err("bmi_write_memory for yield limit failed\n");
399 goto out;
400 }
401 }
402
403out:
404 return status;
405}
406
Vasanthakumar Thiagarajan0ce59442011-10-25 19:34:25 +0530407static int ath6kl_target_config_wlan_params(struct ath6kl *ar, int idx)
Kalle Valobdcd8172011-07-18 00:22:30 +0300408{
Jouni Malinen4dea08e2011-08-30 21:57:57 +0300409 int ret;
Kalle Valobdcd8172011-07-18 00:22:30 +0300410
411 /*
412 * Configure the device for rx dot11 header rules. "0,0" are the
413 * default values. Required if checksum offload is needed. Set
414 * RxMetaVersion to 2.
415 */
Kalle Valo1ca4d0b2012-03-07 20:03:59 +0200416 ret = ath6kl_wmi_set_rx_frame_format_cmd(ar->wmi, idx,
417 ar->rx_meta_ver, 0, 0);
418 if (ret) {
419 ath6kl_err("unable to set the rx frame format: %d\n", ret);
420 return ret;
Kalle Valobdcd8172011-07-18 00:22:30 +0300421 }
422
Kalle Valo1ca4d0b2012-03-07 20:03:59 +0200423 if (ar->conf_flags & ATH6KL_CONF_IGNORE_PS_FAIL_EVT_IN_SCAN) {
424 ret = ath6kl_wmi_pmparams_cmd(ar->wmi, idx, 0, 1, 0, 0, 1,
Kalle Valo05aab172012-03-07 20:04:00 +0200425 IGNORE_PS_FAIL_DURING_SCAN);
Kalle Valo1ca4d0b2012-03-07 20:03:59 +0200426 if (ret) {
427 ath6kl_err("unable to set power save fail event policy: %d\n",
428 ret);
429 return ret;
Kalle Valobdcd8172011-07-18 00:22:30 +0300430 }
Kalle Valobdcd8172011-07-18 00:22:30 +0300431 }
432
Kalle Valo1ca4d0b2012-03-07 20:03:59 +0200433 if (!(ar->conf_flags & ATH6KL_CONF_IGNORE_ERP_BARKER)) {
434 ret = ath6kl_wmi_set_lpreamble_cmd(ar->wmi, idx, 0,
Kalle Valo05aab172012-03-07 20:04:00 +0200435 WMI_FOLLOW_BARKER_IN_ERP);
Kalle Valo1ca4d0b2012-03-07 20:03:59 +0200436 if (ret) {
437 ath6kl_err("unable to set barker preamble policy: %d\n",
438 ret);
439 return ret;
440 }
Kalle Valobdcd8172011-07-18 00:22:30 +0300441 }
442
Kalle Valo1ca4d0b2012-03-07 20:03:59 +0200443 ret = ath6kl_wmi_set_keepalive_cmd(ar->wmi, idx,
444 WLAN_CONFIG_KEEP_ALIVE_INTERVAL);
445 if (ret) {
446 ath6kl_err("unable to set keep alive interval: %d\n", ret);
447 return ret;
448 }
449
450 ret = ath6kl_wmi_disctimeout_cmd(ar->wmi, idx,
451 WLAN_CONFIG_DISCONNECT_TIMEOUT);
452 if (ret) {
453 ath6kl_err("unable to set disconnect timeout: %d\n", ret);
454 return ret;
455 }
456
457 if (!(ar->conf_flags & ATH6KL_CONF_ENABLE_TX_BURST)) {
458 ret = ath6kl_wmi_set_wmm_txop(ar->wmi, idx, WMI_TXOP_DISABLED);
459 if (ret) {
460 ath6kl_err("unable to set txop bursting: %d\n", ret);
461 return ret;
Kalle Valobdcd8172011-07-18 00:22:30 +0300462 }
Kalle Valo1ca4d0b2012-03-07 20:03:59 +0200463 }
Kalle Valobdcd8172011-07-18 00:22:30 +0300464
Vasanthakumar Thiagarajanb64de352011-11-18 10:05:28 +0530465 if (ar->p2p && (ar->vif_max == 1 || idx)) {
Vasanthakumar Thiagarajan0ce59442011-10-25 19:34:25 +0530466 ret = ath6kl_wmi_info_req_cmd(ar->wmi, idx,
Jouni Malinen6bbc7c32011-09-05 17:38:47 +0300467 P2P_FLAG_CAPABILITIES_REQ |
468 P2P_FLAG_MACADDR_REQ |
469 P2P_FLAG_HMODEL_REQ);
470 if (ret) {
Kalle Valocdeb8602012-04-12 11:02:18 +0300471 ath6kl_dbg(ATH6KL_DBG_TRC,
472 "failed to request P2P capabilities (%d) - assuming P2P not supported\n",
473 ret);
Rusty Russell3db1cd52011-12-19 13:56:45 +0000474 ar->p2p = false;
Jouni Malinen6bbc7c32011-09-05 17:38:47 +0300475 }
476 }
477
Vasanthakumar Thiagarajanb64de352011-11-18 10:05:28 +0530478 if (ar->p2p && (ar->vif_max == 1 || idx)) {
Jouni Malinen6bbc7c32011-09-05 17:38:47 +0300479 /* Enable Probe Request reporting for P2P */
Vasanthakumar Thiagarajan0ce59442011-10-25 19:34:25 +0530480 ret = ath6kl_wmi_probe_report_req_cmd(ar->wmi, idx, true);
Jouni Malinen6bbc7c32011-09-05 17:38:47 +0300481 if (ret) {
Kalle Valocdeb8602012-04-12 11:02:18 +0300482 ath6kl_dbg(ATH6KL_DBG_TRC,
483 "failed to enable Probe Request reporting (%d)\n",
484 ret);
Jouni Malinen6bbc7c32011-09-05 17:38:47 +0300485 }
Jouni Malinen4dea08e2011-08-30 21:57:57 +0300486 }
487
Kalle Valo1ca4d0b2012-03-07 20:03:59 +0200488 return ret;
Kalle Valobdcd8172011-07-18 00:22:30 +0300489}
490
491int ath6kl_configure_target(struct ath6kl *ar)
492{
493 u32 param, ram_reserved_size;
Vasanthakumar Thiagarajan3226f68a2011-10-25 19:34:24 +0530494 u8 fw_iftype, fw_mode = 0, fw_submode = 0;
Ryan Hsu39586bf2011-12-13 17:11:07 +0800495 int i, status;
Kalle Valobdcd8172011-07-18 00:22:30 +0300496
Kalle Valof29af972012-01-17 20:08:56 +0200497 param = !!(ar->conf_flags & ATH6KL_CONF_UART_DEBUG);
Kalle Valo24fc32b2012-03-07 20:03:58 +0200498 if (ath6kl_bmi_write_hi32(ar, hi_serial_enable, param)) {
Vasanthakumar Thiagarajana10e2f22011-12-29 16:05:38 +0530499 ath6kl_err("bmi_write_memory for uart debug failed\n");
500 return -EIO;
501 }
502
Vasanthakumar Thiagarajan7b858322011-10-25 19:34:22 +0530503 /*
504 * Note: Even though the firmware interface type is
505 * chosen as BSS_STA for all three interfaces, can
506 * be configured to IBSS/AP as long as the fw submode
507 * remains normal mode (0 - AP, STA and IBSS). But
508 * due to an target assert in firmware only one interface is
509 * configured for now.
510 */
Vasanthakumar Thiagarajandd3751f2011-10-25 19:33:59 +0530511 fw_iftype = HI_OPTION_FW_MODE_BSS_STA;
Kalle Valobdcd8172011-07-18 00:22:30 +0300512
Kalle Valo71f96ee2011-11-14 19:31:30 +0200513 for (i = 0; i < ar->vif_max; i++)
Vasanthakumar Thiagarajan7b858322011-10-25 19:34:22 +0530514 fw_mode |= fw_iftype << (i * HI_OPTION_FW_MODE_BITS);
515
516 /*
Vasanthakumar Thiagarajan1e8d13b2012-04-06 20:24:30 +0530517 * Submodes when fw does not support dynamic interface
518 * switching:
Vasanthakumar Thiagarajan3226f68a2011-10-25 19:34:24 +0530519 * vif[0] - AP/STA/IBSS
520 * vif[1] - "P2P dev"/"P2P GO"/"P2P Client"
521 * vif[2] - "P2P dev"/"P2P GO"/"P2P Client"
Vasanthakumar Thiagarajan1e8d13b2012-04-06 20:24:30 +0530522 * Otherwise, All the interface are initialized to p2p dev.
Vasanthakumar Thiagarajan7b858322011-10-25 19:34:22 +0530523 */
Vasanthakumar Thiagarajan3226f68a2011-10-25 19:34:24 +0530524
Vasanthakumar Thiagarajan1e8d13b2012-04-06 20:24:30 +0530525 if (test_bit(ATH6KL_FW_CAPABILITY_STA_P2PDEV_DUPLEX,
526 ar->fw_capabilities)) {
527 for (i = 0; i < ar->vif_max; i++)
528 fw_submode |= HI_OPTION_FW_SUBMODE_P2PDEV <<
529 (i * HI_OPTION_FW_SUBMODE_BITS);
530 } else {
531 for (i = 0; i < ar->max_norm_iface; i++)
532 fw_submode |= HI_OPTION_FW_SUBMODE_NONE <<
533 (i * HI_OPTION_FW_SUBMODE_BITS);
Vasanthakumar Thiagarajan3226f68a2011-10-25 19:34:24 +0530534
Vasanthakumar Thiagarajan1e8d13b2012-04-06 20:24:30 +0530535 for (i = ar->max_norm_iface; i < ar->vif_max; i++)
536 fw_submode |= HI_OPTION_FW_SUBMODE_P2PDEV <<
537 (i * HI_OPTION_FW_SUBMODE_BITS);
Vasanthakumar Thiagarajan7b858322011-10-25 19:34:22 +0530538
Vasanthakumar Thiagarajan1e8d13b2012-04-06 20:24:30 +0530539 if (ar->p2p && ar->vif_max == 1)
540 fw_submode = HI_OPTION_FW_SUBMODE_P2PDEV;
541 }
Vasanthakumar Thiagarajan7b858322011-10-25 19:34:22 +0530542
Kalle Valo24fc32b2012-03-07 20:03:58 +0200543 if (ath6kl_bmi_write_hi32(ar, hi_app_host_interest,
544 HTC_PROTOCOL_VERSION) != 0) {
Kalle Valobdcd8172011-07-18 00:22:30 +0300545 ath6kl_err("bmi_write_memory for htc version failed\n");
546 return -EIO;
547 }
548
549 /* set the firmware mode to STA/IBSS/AP */
550 param = 0;
551
Kalle Valo80fb2682012-03-07 20:03:59 +0200552 if (ath6kl_bmi_read_hi32(ar, hi_option_flag, &param) != 0) {
Kalle Valobdcd8172011-07-18 00:22:30 +0300553 ath6kl_err("bmi_read_memory for setting fwmode failed\n");
554 return -EIO;
555 }
556
Kalle Valo71f96ee2011-11-14 19:31:30 +0200557 param |= (ar->vif_max << HI_OPTION_NUM_DEV_SHIFT);
Vasanthakumar Thiagarajan7b858322011-10-25 19:34:22 +0530558 param |= fw_mode << HI_OPTION_FW_MODE_SHIFT;
559 param |= fw_submode << HI_OPTION_FW_SUBMODE_SHIFT;
560
Kalle Valobdcd8172011-07-18 00:22:30 +0300561 param |= (0 << HI_OPTION_MAC_ADDR_METHOD_SHIFT);
562 param |= (0 << HI_OPTION_FW_BRIDGE_SHIFT);
563
Kalle Valo24fc32b2012-03-07 20:03:58 +0200564 if (ath6kl_bmi_write_hi32(ar, hi_option_flag, param) != 0) {
Kalle Valobdcd8172011-07-18 00:22:30 +0300565 ath6kl_err("bmi_write_memory for setting fwmode failed\n");
566 return -EIO;
567 }
568
569 ath6kl_dbg(ATH6KL_DBG_TRC, "firmware mode set\n");
570
571 /*
572 * Hardcode the address use for the extended board data
573 * Ideally this should be pre-allocate by the OS at boot time
574 * But since it is a new feature and board data is loaded
575 * at init time, we have to workaround this from host.
576 * It is difficult to patch the firmware boot code,
577 * but possible in theory.
578 */
579
Kalle Valo6b42d302012-03-25 17:15:21 +0300580 if (ar->target_type == TARGET_TYPE_AR6003) {
581 param = ar->hw.board_ext_data_addr;
582 ram_reserved_size = ar->hw.reserved_ram_size;
Kalle Valobdcd8172011-07-18 00:22:30 +0300583
Kalle Valo6b42d302012-03-25 17:15:21 +0300584 if (ath6kl_bmi_write_hi32(ar, hi_board_ext_data, param) != 0) {
585 ath6kl_err("bmi_write_memory for hi_board_ext_data failed\n");
586 return -EIO;
587 }
Kalle Valo991b27e2011-09-07 10:55:17 +0300588
Kalle Valo6b42d302012-03-25 17:15:21 +0300589 if (ath6kl_bmi_write_hi32(ar, hi_end_ram_reserve_sz,
590 ram_reserved_size) != 0) {
591 ath6kl_err("bmi_write_memory for hi_end_ram_reserve_sz failed\n");
592 return -EIO;
593 }
Kalle Valobdcd8172011-07-18 00:22:30 +0300594 }
595
596 /* set the block size for the target */
597 if (ath6kl_set_htc_params(ar, MBOX_YIELD_LIMIT, 0))
598 /* use default number of control buffers */
599 return -EIO;
600
Ryan Hsu39586bf2011-12-13 17:11:07 +0800601 /* Configure GPIO AR600x UART */
Kalle Valo24fc32b2012-03-07 20:03:58 +0200602 status = ath6kl_bmi_write_hi32(ar, hi_dbg_uart_txpin,
603 ar->hw.uarttx_pin);
Ryan Hsu39586bf2011-12-13 17:11:07 +0800604 if (status)
605 return status;
606
607 /* Configure target refclk_hz */
Kalle Valo24fc32b2012-03-07 20:03:58 +0200608 status = ath6kl_bmi_write_hi32(ar, hi_refclk_hz, ar->hw.refclk_hz);
Ryan Hsu39586bf2011-12-13 17:11:07 +0800609 if (status)
610 return status;
611
Kalle Valobdcd8172011-07-18 00:22:30 +0300612 return 0;
613}
614
Kalle Valobdcd8172011-07-18 00:22:30 +0300615/* firmware upload */
Kalle Valobdcd8172011-07-18 00:22:30 +0300616static int ath6kl_get_fw(struct ath6kl *ar, const char *filename,
617 u8 **fw, size_t *fw_len)
618{
619 const struct firmware *fw_entry;
620 int ret;
621
622 ret = request_firmware(&fw_entry, filename, ar->dev);
623 if (ret)
624 return ret;
625
626 *fw_len = fw_entry->size;
627 *fw = kmemdup(fw_entry->data, fw_entry->size, GFP_KERNEL);
628
629 if (*fw == NULL)
630 ret = -ENOMEM;
631
632 release_firmware(fw_entry);
633
634 return ret;
635}
636
Sam Leffler92ecbff2011-09-07 10:55:16 +0300637#ifdef CONFIG_OF
Sam Leffler92ecbff2011-09-07 10:55:16 +0300638/*
639 * Check the device tree for a board-id and use it to construct
640 * the pathname to the firmware file. Used (for now) to find a
641 * fallback to the "bdata.bin" file--typically a symlink to the
642 * appropriate board-specific file.
643 */
644static bool check_device_tree(struct ath6kl *ar)
645{
646 static const char *board_id_prop = "atheros,board-id";
647 struct device_node *node;
648 char board_filename[64];
649 const char *board_id;
650 int ret;
651
652 for_each_compatible_node(node, NULL, "atheros,ath6kl") {
653 board_id = of_get_property(node, board_id_prop, NULL);
654 if (board_id == NULL) {
655 ath6kl_warn("No \"%s\" property on %s node.\n",
656 board_id_prop, node->name);
657 continue;
658 }
659 snprintf(board_filename, sizeof(board_filename),
Kalle Valoc0038972011-12-16 20:53:31 +0200660 "%s/bdata.%s.bin", ar->hw.fw.dir, board_id);
Sam Leffler92ecbff2011-09-07 10:55:16 +0300661
662 ret = ath6kl_get_fw(ar, board_filename, &ar->fw_board,
663 &ar->fw_board_len);
664 if (ret) {
665 ath6kl_err("Failed to get DT board file %s: %d\n",
666 board_filename, ret);
667 continue;
668 }
669 return true;
670 }
671 return false;
672}
673#else
674static bool check_device_tree(struct ath6kl *ar)
675{
676 return false;
677}
678#endif /* CONFIG_OF */
679
Kalle Valobdcd8172011-07-18 00:22:30 +0300680static int ath6kl_fetch_board_file(struct ath6kl *ar)
681{
682 const char *filename;
683 int ret;
684
Kalle Valo772c31e2011-09-07 10:55:16 +0300685 if (ar->fw_board != NULL)
686 return 0;
687
Kalle Valod1a94212011-11-14 19:31:23 +0200688 if (WARN_ON(ar->hw.fw_board == NULL))
689 return -EINVAL;
690
691 filename = ar->hw.fw_board;
Kalle Valobdcd8172011-07-18 00:22:30 +0300692
693 ret = ath6kl_get_fw(ar, filename, &ar->fw_board,
694 &ar->fw_board_len);
695 if (ret == 0) {
696 /* managed to get proper board file */
697 return 0;
698 }
699
Sam Leffler92ecbff2011-09-07 10:55:16 +0300700 if (check_device_tree(ar)) {
701 /* got board file from device tree */
702 return 0;
703 }
704
Kalle Valobdcd8172011-07-18 00:22:30 +0300705 /* there was no proper board file, try to use default instead */
706 ath6kl_warn("Failed to get board file %s (%d), trying to find default board file.\n",
707 filename, ret);
708
Kalle Valod1a94212011-11-14 19:31:23 +0200709 filename = ar->hw.fw_default_board;
Kalle Valobdcd8172011-07-18 00:22:30 +0300710
711 ret = ath6kl_get_fw(ar, filename, &ar->fw_board,
712 &ar->fw_board_len);
713 if (ret) {
714 ath6kl_err("Failed to get default board file %s: %d\n",
715 filename, ret);
716 return ret;
717 }
718
719 ath6kl_warn("WARNING! No proper board file was not found, instead using a default board file.\n");
720 ath6kl_warn("Most likely your hardware won't work as specified. Install correct board file!\n");
721
722 return 0;
723}
724
Kalle Valo772c31e2011-09-07 10:55:16 +0300725static int ath6kl_fetch_otp_file(struct ath6kl *ar)
726{
Kalle Valoc0038972011-12-16 20:53:31 +0200727 char filename[100];
Kalle Valo772c31e2011-09-07 10:55:16 +0300728 int ret;
729
730 if (ar->fw_otp != NULL)
731 return 0;
732
Kalle Valoc0038972011-12-16 20:53:31 +0200733 if (ar->hw.fw.otp == NULL) {
Kalle Valod1a94212011-11-14 19:31:23 +0200734 ath6kl_dbg(ATH6KL_DBG_BOOT,
735 "no OTP file configured for this hw\n");
Kalle Valo772c31e2011-09-07 10:55:16 +0300736 return 0;
Kalle Valo772c31e2011-09-07 10:55:16 +0300737 }
738
Kalle Valoc0038972011-12-16 20:53:31 +0200739 snprintf(filename, sizeof(filename), "%s/%s",
740 ar->hw.fw.dir, ar->hw.fw.otp);
Kalle Valod1a94212011-11-14 19:31:23 +0200741
Kalle Valo772c31e2011-09-07 10:55:16 +0300742 ret = ath6kl_get_fw(ar, filename, &ar->fw_otp,
743 &ar->fw_otp_len);
744 if (ret) {
745 ath6kl_err("Failed to get OTP file %s: %d\n",
746 filename, ret);
747 return ret;
748 }
749
750 return 0;
751}
752
Kalle Valo5f1127f2012-01-24 13:50:16 +0200753static int ath6kl_fetch_testmode_file(struct ath6kl *ar)
754{
755 char filename[100];
756 int ret;
757
758 if (ar->testmode == 0)
759 return 0;
760
761 ath6kl_dbg(ATH6KL_DBG_BOOT, "testmode %d\n", ar->testmode);
762
763 if (ar->testmode == 2) {
764 if (ar->hw.fw.utf == NULL) {
765 ath6kl_warn("testmode 2 not supported\n");
766 return -EOPNOTSUPP;
767 }
768
769 snprintf(filename, sizeof(filename), "%s/%s",
770 ar->hw.fw.dir, ar->hw.fw.utf);
771 } else {
772 if (ar->hw.fw.tcmd == NULL) {
773 ath6kl_warn("testmode 1 not supported\n");
774 return -EOPNOTSUPP;
775 }
776
777 snprintf(filename, sizeof(filename), "%s/%s",
778 ar->hw.fw.dir, ar->hw.fw.tcmd);
779 }
780
781 set_bit(TESTMODE, &ar->flag);
782
783 ret = ath6kl_get_fw(ar, filename, &ar->fw, &ar->fw_len);
784 if (ret) {
785 ath6kl_err("Failed to get testmode %d firmware file %s: %d\n",
786 ar->testmode, filename, ret);
787 return ret;
788 }
789
790 return 0;
791}
792
Kalle Valo772c31e2011-09-07 10:55:16 +0300793static int ath6kl_fetch_fw_file(struct ath6kl *ar)
794{
Kalle Valoc0038972011-12-16 20:53:31 +0200795 char filename[100];
Kalle Valo772c31e2011-09-07 10:55:16 +0300796 int ret;
797
798 if (ar->fw != NULL)
799 return 0;
800
Kalle Valoc0038972011-12-16 20:53:31 +0200801 /* FIXME: remove WARN_ON() as we won't support FW API 1 for long */
802 if (WARN_ON(ar->hw.fw.fw == NULL))
Kalle Valod1a94212011-11-14 19:31:23 +0200803 return -EINVAL;
804
Kalle Valoc0038972011-12-16 20:53:31 +0200805 snprintf(filename, sizeof(filename), "%s/%s",
806 ar->hw.fw.dir, ar->hw.fw.fw);
Kalle Valo772c31e2011-09-07 10:55:16 +0300807
Kalle Valo772c31e2011-09-07 10:55:16 +0300808 ret = ath6kl_get_fw(ar, filename, &ar->fw, &ar->fw_len);
809 if (ret) {
810 ath6kl_err("Failed to get firmware file %s: %d\n",
811 filename, ret);
812 return ret;
813 }
814
815 return 0;
816}
817
818static int ath6kl_fetch_patch_file(struct ath6kl *ar)
819{
Kalle Valoc0038972011-12-16 20:53:31 +0200820 char filename[100];
Kalle Valo772c31e2011-09-07 10:55:16 +0300821 int ret;
822
Kalle Valod1a94212011-11-14 19:31:23 +0200823 if (ar->fw_patch != NULL)
Kalle Valo772c31e2011-09-07 10:55:16 +0300824 return 0;
Kalle Valo772c31e2011-09-07 10:55:16 +0300825
Kalle Valoc0038972011-12-16 20:53:31 +0200826 if (ar->hw.fw.patch == NULL)
Kalle Valod1a94212011-11-14 19:31:23 +0200827 return 0;
828
Kalle Valoc0038972011-12-16 20:53:31 +0200829 snprintf(filename, sizeof(filename), "%s/%s",
830 ar->hw.fw.dir, ar->hw.fw.patch);
Kalle Valod1a94212011-11-14 19:31:23 +0200831
832 ret = ath6kl_get_fw(ar, filename, &ar->fw_patch,
833 &ar->fw_patch_len);
834 if (ret) {
835 ath6kl_err("Failed to get patch file %s: %d\n",
836 filename, ret);
837 return ret;
Kalle Valo772c31e2011-09-07 10:55:16 +0300838 }
839
840 return 0;
841}
842
Alex Yangcd23c1c2012-01-17 15:32:29 +0200843static int ath6kl_fetch_testscript_file(struct ath6kl *ar)
844{
845 char filename[100];
846 int ret;
847
Kalle Valo5f1127f2012-01-24 13:50:16 +0200848 if (ar->testmode != 2)
Alex Yangcd23c1c2012-01-17 15:32:29 +0200849 return 0;
850
851 if (ar->fw_testscript != NULL)
852 return 0;
853
854 if (ar->hw.fw.testscript == NULL)
855 return 0;
856
857 snprintf(filename, sizeof(filename), "%s/%s",
Kalle Valo96f1fad2012-03-07 20:03:57 +0200858 ar->hw.fw.dir, ar->hw.fw.testscript);
Alex Yangcd23c1c2012-01-17 15:32:29 +0200859
860 ret = ath6kl_get_fw(ar, filename, &ar->fw_testscript,
861 &ar->fw_testscript_len);
862 if (ret) {
863 ath6kl_err("Failed to get testscript file %s: %d\n",
Kalle Valo96f1fad2012-03-07 20:03:57 +0200864 filename, ret);
Alex Yangcd23c1c2012-01-17 15:32:29 +0200865 return ret;
866 }
867
868 return 0;
869}
870
Kalle Valo50d41232011-09-07 10:55:17 +0300871static int ath6kl_fetch_fw_api1(struct ath6kl *ar)
Kalle Valo772c31e2011-09-07 10:55:16 +0300872{
873 int ret;
874
Kalle Valo772c31e2011-09-07 10:55:16 +0300875 ret = ath6kl_fetch_otp_file(ar);
876 if (ret)
877 return ret;
878
879 ret = ath6kl_fetch_fw_file(ar);
880 if (ret)
881 return ret;
882
883 ret = ath6kl_fetch_patch_file(ar);
884 if (ret)
885 return ret;
886
Alex Yangcd23c1c2012-01-17 15:32:29 +0200887 ret = ath6kl_fetch_testscript_file(ar);
888 if (ret)
889 return ret;
890
Kalle Valo772c31e2011-09-07 10:55:16 +0300891 return 0;
892}
Kalle Valobdcd8172011-07-18 00:22:30 +0300893
Kalle Valo65a8b4c2011-12-16 20:53:41 +0200894static int ath6kl_fetch_fw_apin(struct ath6kl *ar, const char *name)
Kalle Valo50d41232011-09-07 10:55:17 +0300895{
896 size_t magic_len, len, ie_len;
897 const struct firmware *fw;
898 struct ath6kl_fw_ie *hdr;
Kalle Valoc0038972011-12-16 20:53:31 +0200899 char filename[100];
Kalle Valo50d41232011-09-07 10:55:17 +0300900 const u8 *data;
Kalle Valo97e04962011-09-12 13:47:34 +0300901 int ret, ie_id, i, index, bit;
Kalle Valo8a137482011-09-07 10:55:17 +0300902 __le32 *val;
Kalle Valo50d41232011-09-07 10:55:17 +0300903
Kalle Valo65a8b4c2011-12-16 20:53:41 +0200904 snprintf(filename, sizeof(filename), "%s/%s", ar->hw.fw.dir, name);
Kalle Valo50d41232011-09-07 10:55:17 +0300905
906 ret = request_firmware(&fw, filename, ar->dev);
907 if (ret)
908 return ret;
909
910 data = fw->data;
911 len = fw->size;
912
913 /* magic also includes the null byte, check that as well */
914 magic_len = strlen(ATH6KL_FIRMWARE_MAGIC) + 1;
915
916 if (len < magic_len) {
917 ret = -EINVAL;
918 goto out;
919 }
920
921 if (memcmp(data, ATH6KL_FIRMWARE_MAGIC, magic_len) != 0) {
922 ret = -EINVAL;
923 goto out;
924 }
925
926 len -= magic_len;
927 data += magic_len;
928
929 /* loop elements */
930 while (len > sizeof(struct ath6kl_fw_ie)) {
931 /* hdr is unaligned! */
932 hdr = (struct ath6kl_fw_ie *) data;
933
934 ie_id = le32_to_cpup(&hdr->id);
935 ie_len = le32_to_cpup(&hdr->len);
936
937 len -= sizeof(*hdr);
938 data += sizeof(*hdr);
939
940 if (len < ie_len) {
941 ret = -EINVAL;
942 goto out;
943 }
944
945 switch (ie_id) {
946 case ATH6KL_FW_IE_OTP_IMAGE:
Kalle Valoef548622011-10-01 09:43:09 +0300947 ath6kl_dbg(ATH6KL_DBG_BOOT, "found otp image ie (%zd B)\n",
Kalle Valo96f1fad2012-03-07 20:03:57 +0200948 ie_len);
Kalle Valo6bc36432011-09-27 14:31:11 +0300949
Kalle Valo50d41232011-09-07 10:55:17 +0300950 ar->fw_otp = kmemdup(data, ie_len, GFP_KERNEL);
951
952 if (ar->fw_otp == NULL) {
953 ret = -ENOMEM;
954 goto out;
955 }
956
957 ar->fw_otp_len = ie_len;
958 break;
959 case ATH6KL_FW_IE_FW_IMAGE:
Kalle Valoef548622011-10-01 09:43:09 +0300960 ath6kl_dbg(ATH6KL_DBG_BOOT, "found fw image ie (%zd B)\n",
Kalle Valo96f1fad2012-03-07 20:03:57 +0200961 ie_len);
Kalle Valo6bc36432011-09-27 14:31:11 +0300962
Kalle Valo5f1127f2012-01-24 13:50:16 +0200963 /* in testmode we already might have a fw file */
964 if (ar->fw != NULL)
965 break;
966
Vivek Natarajan84377542012-03-28 19:21:25 +0530967 ar->fw = vmalloc(ie_len);
Kalle Valo50d41232011-09-07 10:55:17 +0300968
969 if (ar->fw == NULL) {
970 ret = -ENOMEM;
971 goto out;
972 }
973
Vivek Natarajan84377542012-03-28 19:21:25 +0530974 memcpy(ar->fw, data, ie_len);
Kalle Valo50d41232011-09-07 10:55:17 +0300975 ar->fw_len = ie_len;
976 break;
977 case ATH6KL_FW_IE_PATCH_IMAGE:
Kalle Valoef548622011-10-01 09:43:09 +0300978 ath6kl_dbg(ATH6KL_DBG_BOOT, "found patch image ie (%zd B)\n",
Kalle Valo96f1fad2012-03-07 20:03:57 +0200979 ie_len);
Kalle Valo6bc36432011-09-27 14:31:11 +0300980
Kalle Valo50d41232011-09-07 10:55:17 +0300981 ar->fw_patch = kmemdup(data, ie_len, GFP_KERNEL);
982
983 if (ar->fw_patch == NULL) {
984 ret = -ENOMEM;
985 goto out;
986 }
987
988 ar->fw_patch_len = ie_len;
989 break;
Kalle Valo8a137482011-09-07 10:55:17 +0300990 case ATH6KL_FW_IE_RESERVED_RAM_SIZE:
991 val = (__le32 *) data;
992 ar->hw.reserved_ram_size = le32_to_cpup(val);
Kalle Valo6bc36432011-09-27 14:31:11 +0300993
994 ath6kl_dbg(ATH6KL_DBG_BOOT,
995 "found reserved ram size ie 0x%d\n",
996 ar->hw.reserved_ram_size);
Kalle Valo8a137482011-09-07 10:55:17 +0300997 break;
Kalle Valo97e04962011-09-12 13:47:34 +0300998 case ATH6KL_FW_IE_CAPABILITIES:
Kalle Valo277d90f2011-12-13 14:51:58 +0200999 if (ie_len < DIV_ROUND_UP(ATH6KL_FW_CAPABILITY_MAX, 8))
1000 break;
1001
Kalle Valo6bc36432011-09-27 14:31:11 +03001002 ath6kl_dbg(ATH6KL_DBG_BOOT,
Kalle Valoef548622011-10-01 09:43:09 +03001003 "found firmware capabilities ie (%zd B)\n",
Kalle Valo6bc36432011-09-27 14:31:11 +03001004 ie_len);
1005
Kalle Valo97e04962011-09-12 13:47:34 +03001006 for (i = 0; i < ATH6KL_FW_CAPABILITY_MAX; i++) {
Kalle Valo277d90f2011-12-13 14:51:58 +02001007 index = i / 8;
Kalle Valo97e04962011-09-12 13:47:34 +03001008 bit = i % 8;
1009
1010 if (data[index] & (1 << bit))
1011 __set_bit(i, ar->fw_capabilities);
1012 }
Kalle Valo6bc36432011-09-27 14:31:11 +03001013
1014 ath6kl_dbg_dump(ATH6KL_DBG_BOOT, "capabilities", "",
1015 ar->fw_capabilities,
1016 sizeof(ar->fw_capabilities));
Kalle Valo97e04962011-09-12 13:47:34 +03001017 break;
Kalle Valo1b4304d2011-09-27 11:05:26 +03001018 case ATH6KL_FW_IE_PATCH_ADDR:
1019 if (ie_len != sizeof(*val))
1020 break;
1021
1022 val = (__le32 *) data;
1023 ar->hw.dataset_patch_addr = le32_to_cpup(val);
Kalle Valo6bc36432011-09-27 14:31:11 +03001024
1025 ath6kl_dbg(ATH6KL_DBG_BOOT,
Kalle Valo03ef0252011-11-14 19:30:47 +02001026 "found patch address ie 0x%x\n",
Kalle Valo6bc36432011-09-27 14:31:11 +03001027 ar->hw.dataset_patch_addr);
Kalle Valo1b4304d2011-09-27 11:05:26 +03001028 break;
Kalle Valo03ef0252011-11-14 19:30:47 +02001029 case ATH6KL_FW_IE_BOARD_ADDR:
1030 if (ie_len != sizeof(*val))
1031 break;
1032
1033 val = (__le32 *) data;
1034 ar->hw.board_addr = le32_to_cpup(val);
1035
1036 ath6kl_dbg(ATH6KL_DBG_BOOT,
1037 "found board address ie 0x%x\n",
1038 ar->hw.board_addr);
1039 break;
Kalle Valo368b1b02011-11-14 19:31:38 +02001040 case ATH6KL_FW_IE_VIF_MAX:
1041 if (ie_len != sizeof(*val))
1042 break;
1043
1044 val = (__le32 *) data;
1045 ar->vif_max = min_t(unsigned int, le32_to_cpup(val),
1046 ATH6KL_VIF_MAX);
1047
Vasanthakumar Thiagarajanf1433792011-11-18 10:05:27 +05301048 if (ar->vif_max > 1 && !ar->p2p)
1049 ar->max_norm_iface = 2;
1050
Kalle Valo368b1b02011-11-14 19:31:38 +02001051 ath6kl_dbg(ATH6KL_DBG_BOOT,
1052 "found vif max ie %d\n", ar->vif_max);
1053 break;
Kalle Valo50d41232011-09-07 10:55:17 +03001054 default:
Kalle Valo6bc36432011-09-27 14:31:11 +03001055 ath6kl_dbg(ATH6KL_DBG_BOOT, "Unknown fw ie: %u\n",
Kalle Valo50d41232011-09-07 10:55:17 +03001056 le32_to_cpup(&hdr->id));
1057 break;
1058 }
1059
1060 len -= ie_len;
1061 data += ie_len;
1062 };
1063
1064 ret = 0;
1065out:
1066 release_firmware(fw);
1067
1068 return ret;
1069}
1070
Kalle Valo45eaa782012-01-17 20:09:05 +02001071int ath6kl_init_fetch_firmwares(struct ath6kl *ar)
Kalle Valo50d41232011-09-07 10:55:17 +03001072{
1073 int ret;
1074
1075 ret = ath6kl_fetch_board_file(ar);
1076 if (ret)
1077 return ret;
1078
Kalle Valo5f1127f2012-01-24 13:50:16 +02001079 ret = ath6kl_fetch_testmode_file(ar);
1080 if (ret)
1081 return ret;
1082
Kalle Valo65a8b4c2011-12-16 20:53:41 +02001083 ret = ath6kl_fetch_fw_apin(ar, ATH6KL_FW_API3_FILE);
Kalle Valo6bc36432011-09-27 14:31:11 +03001084 if (ret == 0) {
Kalle Valo65a8b4c2011-12-16 20:53:41 +02001085 ar->fw_api = 3;
1086 goto out;
1087 }
1088
1089 ret = ath6kl_fetch_fw_apin(ar, ATH6KL_FW_API2_FILE);
1090 if (ret == 0) {
1091 ar->fw_api = 2;
1092 goto out;
Kalle Valo6bc36432011-09-27 14:31:11 +03001093 }
Kalle Valo50d41232011-09-07 10:55:17 +03001094
1095 ret = ath6kl_fetch_fw_api1(ar);
1096 if (ret)
1097 return ret;
1098
Kalle Valo65a8b4c2011-12-16 20:53:41 +02001099 ar->fw_api = 1;
1100
1101out:
1102 ath6kl_dbg(ATH6KL_DBG_BOOT, "using fw api %d\n", ar->fw_api);
Kalle Valo6bc36432011-09-27 14:31:11 +03001103
Kalle Valo50d41232011-09-07 10:55:17 +03001104 return 0;
1105}
1106
Kalle Valobdcd8172011-07-18 00:22:30 +03001107static int ath6kl_upload_board_file(struct ath6kl *ar)
1108{
1109 u32 board_address, board_ext_address, param;
Kevin Fang31024d92011-07-11 17:14:13 +08001110 u32 board_data_size, board_ext_data_size;
Kalle Valobdcd8172011-07-18 00:22:30 +03001111 int ret;
1112
Kalle Valo772c31e2011-09-07 10:55:16 +03001113 if (WARN_ON(ar->fw_board == NULL))
1114 return -ENOENT;
Kalle Valobdcd8172011-07-18 00:22:30 +03001115
Kevin Fang31024d92011-07-11 17:14:13 +08001116 /*
1117 * Determine where in Target RAM to write Board Data.
1118 * For AR6004, host determine Target RAM address for
1119 * writing board data.
1120 */
Kalle Valo0d4d72b2011-11-14 19:30:39 +02001121 if (ar->hw.board_addr != 0) {
Kalle Valob0fc7c12012-03-12 13:22:54 +02001122 board_address = ar->hw.board_addr;
Kalle Valo24fc32b2012-03-07 20:03:58 +02001123 ath6kl_bmi_write_hi32(ar, hi_board_data,
Kalle Valob0fc7c12012-03-12 13:22:54 +02001124 board_address);
Kevin Fang31024d92011-07-11 17:14:13 +08001125 } else {
Kalle Valo80fb2682012-03-07 20:03:59 +02001126 ath6kl_bmi_read_hi32(ar, hi_board_data, &board_address);
Kevin Fang31024d92011-07-11 17:14:13 +08001127 }
1128
Kalle Valobdcd8172011-07-18 00:22:30 +03001129 /* determine where in target ram to write extended board data */
Kalle Valo80fb2682012-03-07 20:03:59 +02001130 ath6kl_bmi_read_hi32(ar, hi_board_ext_data, &board_ext_address);
Kalle Valobdcd8172011-07-18 00:22:30 +03001131
Kalle Valo50e27402011-11-11 12:18:06 +02001132 if (ar->target_type == TARGET_TYPE_AR6003 &&
1133 board_ext_address == 0) {
Kalle Valobdcd8172011-07-18 00:22:30 +03001134 ath6kl_err("Failed to get board file target address.\n");
1135 return -EINVAL;
1136 }
1137
Kevin Fang31024d92011-07-11 17:14:13 +08001138 switch (ar->target_type) {
1139 case TARGET_TYPE_AR6003:
1140 board_data_size = AR6003_BOARD_DATA_SZ;
1141 board_ext_data_size = AR6003_BOARD_EXT_DATA_SZ;
Prasanna Kumarfb1ac2e2012-02-07 14:58:54 -08001142 if (ar->fw_board_len > (board_data_size + board_ext_data_size))
1143 board_ext_data_size = AR6003_BOARD_EXT_DATA_SZ_V2;
Kevin Fang31024d92011-07-11 17:14:13 +08001144 break;
1145 case TARGET_TYPE_AR6004:
1146 board_data_size = AR6004_BOARD_DATA_SZ;
1147 board_ext_data_size = AR6004_BOARD_EXT_DATA_SZ;
1148 break;
1149 default:
1150 WARN_ON(1);
1151 return -EINVAL;
1152 break;
1153 }
1154
Kalle Valo50e27402011-11-11 12:18:06 +02001155 if (board_ext_address &&
1156 ar->fw_board_len == (board_data_size + board_ext_data_size)) {
Kevin Fang31024d92011-07-11 17:14:13 +08001157
Kalle Valobdcd8172011-07-18 00:22:30 +03001158 /* write extended board data */
Kalle Valo6bc36432011-09-27 14:31:11 +03001159 ath6kl_dbg(ATH6KL_DBG_BOOT,
1160 "writing extended board data to 0x%x (%d B)\n",
1161 board_ext_address, board_ext_data_size);
1162
Kalle Valobdcd8172011-07-18 00:22:30 +03001163 ret = ath6kl_bmi_write(ar, board_ext_address,
Kevin Fang31024d92011-07-11 17:14:13 +08001164 ar->fw_board + board_data_size,
1165 board_ext_data_size);
Kalle Valobdcd8172011-07-18 00:22:30 +03001166 if (ret) {
1167 ath6kl_err("Failed to write extended board data: %d\n",
1168 ret);
1169 return ret;
1170 }
1171
1172 /* record that extended board data is initialized */
Kevin Fang31024d92011-07-11 17:14:13 +08001173 param = (board_ext_data_size << 16) | 1;
1174
Kalle Valo24fc32b2012-03-07 20:03:58 +02001175 ath6kl_bmi_write_hi32(ar, hi_board_ext_data_config, param);
Kalle Valobdcd8172011-07-18 00:22:30 +03001176 }
1177
Kevin Fang31024d92011-07-11 17:14:13 +08001178 if (ar->fw_board_len < board_data_size) {
Kalle Valobdcd8172011-07-18 00:22:30 +03001179 ath6kl_err("Too small board file: %zu\n", ar->fw_board_len);
1180 ret = -EINVAL;
1181 return ret;
1182 }
1183
Kalle Valo6bc36432011-09-27 14:31:11 +03001184 ath6kl_dbg(ATH6KL_DBG_BOOT, "writing board file to 0x%x (%d B)\n",
1185 board_address, board_data_size);
1186
Kalle Valobdcd8172011-07-18 00:22:30 +03001187 ret = ath6kl_bmi_write(ar, board_address, ar->fw_board,
Kevin Fang31024d92011-07-11 17:14:13 +08001188 board_data_size);
Kalle Valobdcd8172011-07-18 00:22:30 +03001189
1190 if (ret) {
1191 ath6kl_err("Board file bmi write failed: %d\n", ret);
1192 return ret;
1193 }
1194
1195 /* record the fact that Board Data IS initialized */
Kalle Valo24fc32b2012-03-07 20:03:58 +02001196 ath6kl_bmi_write_hi32(ar, hi_board_data_initialized, 1);
Kalle Valobdcd8172011-07-18 00:22:30 +03001197
1198 return ret;
1199}
1200
1201static int ath6kl_upload_otp(struct ath6kl *ar)
1202{
Kalle Valobdcd8172011-07-18 00:22:30 +03001203 u32 address, param;
Kalle Valobef26a72011-10-12 09:58:28 +03001204 bool from_hw = false;
Kalle Valobdcd8172011-07-18 00:22:30 +03001205 int ret;
1206
Kalle Valo50e27402011-11-11 12:18:06 +02001207 if (ar->fw_otp == NULL)
1208 return 0;
Kalle Valobdcd8172011-07-18 00:22:30 +03001209
Kalle Valoa01ac412011-09-07 10:55:17 +03001210 address = ar->hw.app_load_addr;
Kalle Valobdcd8172011-07-18 00:22:30 +03001211
Kalle Valoef548622011-10-01 09:43:09 +03001212 ath6kl_dbg(ATH6KL_DBG_BOOT, "writing otp to 0x%x (%zd B)\n", address,
Kalle Valo6bc36432011-09-27 14:31:11 +03001213 ar->fw_otp_len);
1214
Kalle Valobdcd8172011-07-18 00:22:30 +03001215 ret = ath6kl_bmi_fast_download(ar, address, ar->fw_otp,
1216 ar->fw_otp_len);
1217 if (ret) {
1218 ath6kl_err("Failed to upload OTP file: %d\n", ret);
1219 return ret;
1220 }
1221
Kalle Valo639d0b82011-09-12 12:48:09 +03001222 /* read firmware start address */
Kalle Valo80fb2682012-03-07 20:03:59 +02001223 ret = ath6kl_bmi_read_hi32(ar, hi_app_start, &address);
Kalle Valo639d0b82011-09-12 12:48:09 +03001224
1225 if (ret) {
1226 ath6kl_err("Failed to read hi_app_start: %d\n", ret);
1227 return ret;
1228 }
1229
Kalle Valobef26a72011-10-12 09:58:28 +03001230 if (ar->hw.app_start_override_addr == 0) {
1231 ar->hw.app_start_override_addr = address;
1232 from_hw = true;
1233 }
Kalle Valo639d0b82011-09-12 12:48:09 +03001234
Kalle Valobef26a72011-10-12 09:58:28 +03001235 ath6kl_dbg(ATH6KL_DBG_BOOT, "app_start_override_addr%s 0x%x\n",
1236 from_hw ? " (from hw)" : "",
Kalle Valo6bc36432011-09-27 14:31:11 +03001237 ar->hw.app_start_override_addr);
1238
Kalle Valobdcd8172011-07-18 00:22:30 +03001239 /* execute the OTP code */
Kalle Valobef26a72011-10-12 09:58:28 +03001240 ath6kl_dbg(ATH6KL_DBG_BOOT, "executing OTP at 0x%x\n",
1241 ar->hw.app_start_override_addr);
Kalle Valobdcd8172011-07-18 00:22:30 +03001242 param = 0;
Kalle Valobef26a72011-10-12 09:58:28 +03001243 ath6kl_bmi_execute(ar, ar->hw.app_start_override_addr, &param);
Kalle Valobdcd8172011-07-18 00:22:30 +03001244
1245 return ret;
1246}
1247
1248static int ath6kl_upload_firmware(struct ath6kl *ar)
1249{
Kalle Valobdcd8172011-07-18 00:22:30 +03001250 u32 address;
1251 int ret;
1252
Kalle Valo772c31e2011-09-07 10:55:16 +03001253 if (WARN_ON(ar->fw == NULL))
Kalle Valo50e27402011-11-11 12:18:06 +02001254 return 0;
Kalle Valobdcd8172011-07-18 00:22:30 +03001255
Kalle Valoa01ac412011-09-07 10:55:17 +03001256 address = ar->hw.app_load_addr;
Kalle Valobdcd8172011-07-18 00:22:30 +03001257
Kalle Valoef548622011-10-01 09:43:09 +03001258 ath6kl_dbg(ATH6KL_DBG_BOOT, "writing firmware to 0x%x (%zd B)\n",
Kalle Valo6bc36432011-09-27 14:31:11 +03001259 address, ar->fw_len);
1260
Kalle Valobdcd8172011-07-18 00:22:30 +03001261 ret = ath6kl_bmi_fast_download(ar, address, ar->fw, ar->fw_len);
1262
1263 if (ret) {
1264 ath6kl_err("Failed to write firmware: %d\n", ret);
1265 return ret;
1266 }
1267
Kevin Fang31024d92011-07-11 17:14:13 +08001268 /*
1269 * Set starting address for firmware
1270 * Don't need to setup app_start override addr on AR6004
1271 */
1272 if (ar->target_type != TARGET_TYPE_AR6004) {
Kalle Valoa01ac412011-09-07 10:55:17 +03001273 address = ar->hw.app_start_override_addr;
Kevin Fang31024d92011-07-11 17:14:13 +08001274 ath6kl_bmi_set_app_start(ar, address);
1275 }
Kalle Valobdcd8172011-07-18 00:22:30 +03001276 return ret;
1277}
1278
1279static int ath6kl_upload_patch(struct ath6kl *ar)
1280{
Kalle Valo24fc32b2012-03-07 20:03:58 +02001281 u32 address;
Kalle Valobdcd8172011-07-18 00:22:30 +03001282 int ret;
1283
Kalle Valo50e27402011-11-11 12:18:06 +02001284 if (ar->fw_patch == NULL)
1285 return 0;
Kalle Valobdcd8172011-07-18 00:22:30 +03001286
Kalle Valoa01ac412011-09-07 10:55:17 +03001287 address = ar->hw.dataset_patch_addr;
Kalle Valobdcd8172011-07-18 00:22:30 +03001288
Kalle Valoef548622011-10-01 09:43:09 +03001289 ath6kl_dbg(ATH6KL_DBG_BOOT, "writing patch to 0x%x (%zd B)\n",
Kalle Valo6bc36432011-09-27 14:31:11 +03001290 address, ar->fw_patch_len);
1291
Kalle Valobdcd8172011-07-18 00:22:30 +03001292 ret = ath6kl_bmi_write(ar, address, ar->fw_patch, ar->fw_patch_len);
1293 if (ret) {
1294 ath6kl_err("Failed to write patch file: %d\n", ret);
1295 return ret;
1296 }
1297
Kalle Valo24fc32b2012-03-07 20:03:58 +02001298 ath6kl_bmi_write_hi32(ar, hi_dset_list_head, address);
Kalle Valobdcd8172011-07-18 00:22:30 +03001299
1300 return 0;
1301}
1302
Alex Yangcd23c1c2012-01-17 15:32:29 +02001303static int ath6kl_upload_testscript(struct ath6kl *ar)
1304{
Kalle Valo24fc32b2012-03-07 20:03:58 +02001305 u32 address;
Alex Yangcd23c1c2012-01-17 15:32:29 +02001306 int ret;
1307
Kalle Valo5f1127f2012-01-24 13:50:16 +02001308 if (ar->testmode != 2)
Alex Yangcd23c1c2012-01-17 15:32:29 +02001309 return 0;
1310
1311 if (ar->fw_testscript == NULL)
1312 return 0;
1313
1314 address = ar->hw.testscript_addr;
1315
1316 ath6kl_dbg(ATH6KL_DBG_BOOT, "writing testscript to 0x%x (%zd B)\n",
Kalle Valo96f1fad2012-03-07 20:03:57 +02001317 address, ar->fw_testscript_len);
Alex Yangcd23c1c2012-01-17 15:32:29 +02001318
1319 ret = ath6kl_bmi_write(ar, address, ar->fw_testscript,
1320 ar->fw_testscript_len);
1321 if (ret) {
1322 ath6kl_err("Failed to write testscript file: %d\n", ret);
1323 return ret;
1324 }
1325
Kalle Valo24fc32b2012-03-07 20:03:58 +02001326 ath6kl_bmi_write_hi32(ar, hi_ota_testscript, address);
1327 ath6kl_bmi_write_hi32(ar, hi_end_ram_reserve_sz, 4096);
1328 ath6kl_bmi_write_hi32(ar, hi_test_apps_related, 1);
Alex Yangcd23c1c2012-01-17 15:32:29 +02001329
1330 return 0;
1331}
1332
Kalle Valobdcd8172011-07-18 00:22:30 +03001333static int ath6kl_init_upload(struct ath6kl *ar)
1334{
1335 u32 param, options, sleep, address;
1336 int status = 0;
1337
Kevin Fang31024d92011-07-11 17:14:13 +08001338 if (ar->target_type != TARGET_TYPE_AR6003 &&
Kalle Valo96f1fad2012-03-07 20:03:57 +02001339 ar->target_type != TARGET_TYPE_AR6004)
Kalle Valobdcd8172011-07-18 00:22:30 +03001340 return -EINVAL;
1341
1342 /* temporarily disable system sleep */
1343 address = MBOX_BASE_ADDRESS + LOCAL_SCRATCH_ADDRESS;
1344 status = ath6kl_bmi_reg_read(ar, address, &param);
1345 if (status)
1346 return status;
1347
1348 options = param;
1349
1350 param |= ATH6KL_OPTION_SLEEP_DISABLE;
1351 status = ath6kl_bmi_reg_write(ar, address, param);
1352 if (status)
1353 return status;
1354
1355 address = RTC_BASE_ADDRESS + SYSTEM_SLEEP_ADDRESS;
1356 status = ath6kl_bmi_reg_read(ar, address, &param);
1357 if (status)
1358 return status;
1359
1360 sleep = param;
1361
1362 param |= SM(SYSTEM_SLEEP_DISABLE, 1);
1363 status = ath6kl_bmi_reg_write(ar, address, param);
1364 if (status)
1365 return status;
1366
1367 ath6kl_dbg(ATH6KL_DBG_TRC, "old options: %d, old sleep: %d\n",
1368 options, sleep);
1369
1370 /* program analog PLL register */
Kevin Fang31024d92011-07-11 17:14:13 +08001371 /* no need to control 40/44MHz clock on AR6004 */
1372 if (ar->target_type != TARGET_TYPE_AR6004) {
1373 status = ath6kl_bmi_reg_write(ar, ATH6KL_ANALOG_PLL_REGISTER,
1374 0xF9104001);
Kalle Valobdcd8172011-07-18 00:22:30 +03001375
Kevin Fang31024d92011-07-11 17:14:13 +08001376 if (status)
1377 return status;
Kalle Valobdcd8172011-07-18 00:22:30 +03001378
Kevin Fang31024d92011-07-11 17:14:13 +08001379 /* Run at 80/88MHz by default */
1380 param = SM(CPU_CLOCK_STANDARD, 1);
1381
1382 address = RTC_BASE_ADDRESS + CPU_CLOCK_ADDRESS;
1383 status = ath6kl_bmi_reg_write(ar, address, param);
1384 if (status)
1385 return status;
1386 }
Kalle Valobdcd8172011-07-18 00:22:30 +03001387
1388 param = 0;
1389 address = RTC_BASE_ADDRESS + LPO_CAL_ADDRESS;
1390 param = SM(LPO_CAL_ENABLE, 1);
1391 status = ath6kl_bmi_reg_write(ar, address, param);
1392 if (status)
1393 return status;
1394
1395 /* WAR to avoid SDIO CRC err */
Raja Mani4480bb52012-02-22 12:03:51 +05301396 if (ar->version.target_ver == AR6003_HW_2_0_VERSION ||
1397 ar->version.target_ver == AR6003_HW_2_1_1_VERSION) {
Kalle Valobdcd8172011-07-18 00:22:30 +03001398 ath6kl_err("temporary war to avoid sdio crc error\n");
1399
Vasanthakumar Thiagarajanfa338be2012-05-22 12:52:48 +05301400 param = 0x28;
1401 address = GPIO_BASE_ADDRESS + GPIO_PIN9_ADDRESS;
1402 status = ath6kl_bmi_reg_write(ar, address, param);
1403 if (status)
1404 return status;
1405
Kalle Valobdcd8172011-07-18 00:22:30 +03001406 param = 0x20;
1407
1408 address = GPIO_BASE_ADDRESS + GPIO_PIN10_ADDRESS;
1409 status = ath6kl_bmi_reg_write(ar, address, param);
1410 if (status)
1411 return status;
1412
1413 address = GPIO_BASE_ADDRESS + GPIO_PIN11_ADDRESS;
1414 status = ath6kl_bmi_reg_write(ar, address, param);
1415 if (status)
1416 return status;
1417
1418 address = GPIO_BASE_ADDRESS + GPIO_PIN12_ADDRESS;
1419 status = ath6kl_bmi_reg_write(ar, address, param);
1420 if (status)
1421 return status;
1422
1423 address = GPIO_BASE_ADDRESS + GPIO_PIN13_ADDRESS;
1424 status = ath6kl_bmi_reg_write(ar, address, param);
1425 if (status)
1426 return status;
1427 }
1428
1429 /* write EEPROM data to Target RAM */
1430 status = ath6kl_upload_board_file(ar);
1431 if (status)
1432 return status;
1433
1434 /* transfer One time Programmable data */
1435 status = ath6kl_upload_otp(ar);
1436 if (status)
1437 return status;
1438
1439 /* Download Target firmware */
1440 status = ath6kl_upload_firmware(ar);
1441 if (status)
1442 return status;
1443
1444 status = ath6kl_upload_patch(ar);
1445 if (status)
1446 return status;
1447
Alex Yangcd23c1c2012-01-17 15:32:29 +02001448 /* Download the test script */
1449 status = ath6kl_upload_testscript(ar);
1450 if (status)
1451 return status;
1452
Kalle Valobdcd8172011-07-18 00:22:30 +03001453 /* Restore system sleep */
1454 address = RTC_BASE_ADDRESS + SYSTEM_SLEEP_ADDRESS;
1455 status = ath6kl_bmi_reg_write(ar, address, sleep);
1456 if (status)
1457 return status;
1458
1459 address = MBOX_BASE_ADDRESS + LOCAL_SCRATCH_ADDRESS;
1460 param = options | 0x20;
1461 status = ath6kl_bmi_reg_write(ar, address, param);
1462 if (status)
1463 return status;
1464
Kalle Valobdcd8172011-07-18 00:22:30 +03001465 return status;
1466}
1467
Kalle Valo45eaa782012-01-17 20:09:05 +02001468int ath6kl_init_hw_params(struct ath6kl *ar)
Kalle Valoa01ac412011-09-07 10:55:17 +03001469{
Kalle Valo1b46dc042012-01-31 21:26:22 +02001470 const struct ath6kl_hw *uninitialized_var(hw);
Kalle Valo856f4b312011-11-14 19:30:29 +02001471 int i;
Kalle Valobef26a72011-10-12 09:58:28 +03001472
Kalle Valo856f4b312011-11-14 19:30:29 +02001473 for (i = 0; i < ARRAY_SIZE(hw_list); i++) {
1474 hw = &hw_list[i];
Kalle Valobef26a72011-10-12 09:58:28 +03001475
Kalle Valo856f4b312011-11-14 19:30:29 +02001476 if (hw->id == ar->version.target_ver)
1477 break;
1478 }
1479
1480 if (i == ARRAY_SIZE(hw_list)) {
Kalle Valoa01ac412011-09-07 10:55:17 +03001481 ath6kl_err("Unsupported hardware version: 0x%x\n",
1482 ar->version.target_ver);
1483 return -EINVAL;
1484 }
1485
Kalle Valo856f4b312011-11-14 19:30:29 +02001486 ar->hw = *hw;
1487
Kalle Valo6bc36432011-09-27 14:31:11 +03001488 ath6kl_dbg(ATH6KL_DBG_BOOT,
1489 "target_ver 0x%x target_type 0x%x dataset_patch 0x%x app_load_addr 0x%x\n",
1490 ar->version.target_ver, ar->target_type,
1491 ar->hw.dataset_patch_addr, ar->hw.app_load_addr);
1492 ath6kl_dbg(ATH6KL_DBG_BOOT,
1493 "app_start_override_addr 0x%x board_ext_data_addr 0x%x reserved_ram_size 0x%x",
1494 ar->hw.app_start_override_addr, ar->hw.board_ext_data_addr,
1495 ar->hw.reserved_ram_size);
Ryan Hsu39586bf2011-12-13 17:11:07 +08001496 ath6kl_dbg(ATH6KL_DBG_BOOT,
1497 "refclk_hz %d uarttx_pin %d",
1498 ar->hw.refclk_hz, ar->hw.uarttx_pin);
Kalle Valo6bc36432011-09-27 14:31:11 +03001499
Kalle Valoa01ac412011-09-07 10:55:17 +03001500 return 0;
1501}
1502
Kalle Valo293badf2011-11-14 19:30:54 +02001503static const char *ath6kl_init_get_hif_name(enum ath6kl_hif_type type)
1504{
1505 switch (type) {
1506 case ATH6KL_HIF_TYPE_SDIO:
1507 return "sdio";
1508 case ATH6KL_HIF_TYPE_USB:
1509 return "usb";
1510 }
1511
1512 return NULL;
1513}
1514
Kalle Valo5fe4dff2011-10-30 21:16:15 +02001515int ath6kl_init_hw_start(struct ath6kl *ar)
Kalle Valo20459ee2011-10-27 18:48:37 +03001516{
1517 long timeleft;
1518 int ret, i;
1519
Kalle Valo5fe4dff2011-10-30 21:16:15 +02001520 ath6kl_dbg(ATH6KL_DBG_BOOT, "hw start\n");
1521
Kalle Valo20459ee2011-10-27 18:48:37 +03001522 ret = ath6kl_hif_power_on(ar);
1523 if (ret)
1524 return ret;
1525
1526 ret = ath6kl_configure_target(ar);
1527 if (ret)
1528 goto err_power_off;
1529
1530 ret = ath6kl_init_upload(ar);
1531 if (ret)
1532 goto err_power_off;
1533
1534 /* Do we need to finish the BMI phase */
1535 /* FIXME: return error from ath6kl_bmi_done() */
1536 if (ath6kl_bmi_done(ar)) {
1537 ret = -EIO;
1538 goto err_power_off;
1539 }
1540
1541 /*
1542 * The reason we have to wait for the target here is that the
1543 * driver layer has to init BMI in order to set the host block
1544 * size.
1545 */
1546 if (ath6kl_htc_wait_target(ar->htc_target)) {
1547 ret = -EIO;
1548 goto err_power_off;
1549 }
1550
1551 if (ath6kl_init_service_ep(ar)) {
1552 ret = -EIO;
1553 goto err_cleanup_scatter;
1554 }
1555
1556 /* setup credit distribution */
Kalle Valoe76ac2bf2012-03-25 17:15:27 +03001557 ath6kl_htc_credit_setup(ar->htc_target, &ar->credit_state_info);
Kalle Valo20459ee2011-10-27 18:48:37 +03001558
1559 /* start HTC */
1560 ret = ath6kl_htc_start(ar->htc_target);
1561 if (ret) {
1562 /* FIXME: call this */
1563 ath6kl_cookie_cleanup(ar);
1564 goto err_cleanup_scatter;
1565 }
1566
1567 /* Wait for Wmi event to be ready */
1568 timeleft = wait_event_interruptible_timeout(ar->event_wq,
1569 test_bit(WMI_READY,
1570 &ar->flag),
1571 WMI_TIMEOUT);
1572
1573 ath6kl_dbg(ATH6KL_DBG_BOOT, "firmware booted\n");
1574
Kalle Valo293badf2011-11-14 19:30:54 +02001575
1576 if (test_and_clear_bit(FIRST_BOOT, &ar->flag)) {
Kalle Valo65a8b4c2011-12-16 20:53:41 +02001577 ath6kl_info("%s %s fw %s api %d%s\n",
Kalle Valo293badf2011-11-14 19:30:54 +02001578 ar->hw.name,
1579 ath6kl_init_get_hif_name(ar->hif_type),
1580 ar->wiphy->fw_version,
Kalle Valo65a8b4c2011-12-16 20:53:41 +02001581 ar->fw_api,
Kalle Valo293badf2011-11-14 19:30:54 +02001582 test_bit(TESTMODE, &ar->flag) ? " testmode" : "");
1583 }
1584
Kalle Valo20459ee2011-10-27 18:48:37 +03001585 if (ar->version.abi_ver != ATH6KL_ABI_VERSION) {
1586 ath6kl_err("abi version mismatch: host(0x%x), target(0x%x)\n",
1587 ATH6KL_ABI_VERSION, ar->version.abi_ver);
1588 ret = -EIO;
1589 goto err_htc_stop;
1590 }
1591
1592 if (!timeleft || signal_pending(current)) {
1593 ath6kl_err("wmi is not ready or wait was interrupted\n");
1594 ret = -EIO;
1595 goto err_htc_stop;
1596 }
1597
1598 ath6kl_dbg(ATH6KL_DBG_TRC, "%s: wmi is ready\n", __func__);
1599
1600 /* communicate the wmi protocol verision to the target */
1601 /* FIXME: return error */
1602 if ((ath6kl_set_host_app_area(ar)) != 0)
1603 ath6kl_err("unable to set the host app area\n");
1604
Kalle Valo71f96ee2011-11-14 19:31:30 +02001605 for (i = 0; i < ar->vif_max; i++) {
Kalle Valo20459ee2011-10-27 18:48:37 +03001606 ret = ath6kl_target_config_wlan_params(ar, i);
1607 if (ret)
1608 goto err_htc_stop;
1609 }
1610
Kalle Valo76a9fbe2011-11-01 08:44:28 +02001611 ar->state = ATH6KL_STATE_ON;
1612
Kalle Valo20459ee2011-10-27 18:48:37 +03001613 return 0;
1614
1615err_htc_stop:
1616 ath6kl_htc_stop(ar->htc_target);
1617err_cleanup_scatter:
1618 ath6kl_hif_cleanup_scatter(ar);
1619err_power_off:
1620 ath6kl_hif_power_off(ar);
1621
1622 return ret;
1623}
1624
Kalle Valo5fe4dff2011-10-30 21:16:15 +02001625int ath6kl_init_hw_stop(struct ath6kl *ar)
1626{
1627 int ret;
1628
1629 ath6kl_dbg(ATH6KL_DBG_BOOT, "hw stop\n");
1630
1631 ath6kl_htc_stop(ar->htc_target);
1632
1633 ath6kl_hif_stop(ar);
1634
1635 ath6kl_bmi_reset(ar);
1636
1637 ret = ath6kl_hif_power_off(ar);
1638 if (ret)
1639 ath6kl_warn("failed to power off hif: %d\n", ret);
1640
Kalle Valo76a9fbe2011-11-01 08:44:28 +02001641 ar->state = ATH6KL_STATE_OFF;
1642
Kalle Valo5fe4dff2011-10-30 21:16:15 +02001643 return 0;
1644}
1645
Kalle Valoc25889e2012-01-17 20:08:27 +02001646/* FIXME: move this to cfg80211.c and rename to ath6kl_cfg80211_vif_stop() */
Vasanthakumar Thiagarajan55055972011-10-25 19:34:23 +05301647void ath6kl_cleanup_vif(struct ath6kl_vif *vif, bool wmi_ready)
Vasanthakumar Thiagarajan6db8fa52011-10-25 19:34:16 +05301648{
1649 static u8 bcast_mac[] = {0xff, 0xff, 0xff, 0xff, 0xff, 0xff};
1650 bool discon_issued;
1651
1652 netif_stop_queue(vif->ndev);
1653
1654 clear_bit(WLAN_ENABLED, &vif->flags);
1655
1656 if (wmi_ready) {
1657 discon_issued = test_bit(CONNECTED, &vif->flags) ||
1658 test_bit(CONNECT_PEND, &vif->flags);
1659 ath6kl_disconnect(vif);
1660 del_timer(&vif->disconnect_timer);
1661
1662 if (discon_issued)
1663 ath6kl_disconnect_event(vif, DISCONNECT_CMD,
1664 (vif->nw_type & AP_NETWORK) ?
1665 bcast_mac : vif->bssid,
1666 0, NULL, 0);
1667 }
1668
1669 if (vif->scan_req) {
1670 cfg80211_scan_done(vif->scan_req, true);
1671 vif->scan_req = NULL;
1672 }
Thomas Pedersenc422d52d2012-05-15 00:09:23 -07001673
1674 /* need to clean up enhanced bmiss detection fw state */
1675 ath6kl_cfg80211_sta_bmiss_enhance(vif, false);
Vasanthakumar Thiagarajan6db8fa52011-10-25 19:34:16 +05301676}
1677
Kalle Valobdcd8172011-07-18 00:22:30 +03001678void ath6kl_stop_txrx(struct ath6kl *ar)
1679{
Vasanthakumar Thiagarajan990bd912011-10-25 19:34:20 +05301680 struct ath6kl_vif *vif, *tmp_vif;
Vasanthakumar Thiagarajan1d2a4452012-01-21 15:22:53 +05301681 int i;
Kalle Valobdcd8172011-07-18 00:22:30 +03001682
1683 set_bit(DESTROY_IN_PROGRESS, &ar->flag);
1684
1685 if (down_interruptible(&ar->sem)) {
1686 ath6kl_err("down_interruptible failed\n");
1687 return;
1688 }
1689
Vasanthakumar Thiagarajan1d2a4452012-01-21 15:22:53 +05301690 for (i = 0; i < AP_MAX_NUM_STA; i++)
1691 aggr_reset_state(ar->sta_list[i].aggr_conn);
1692
Vasanthakumar Thiagarajan11f6e402011-11-01 16:38:50 +05301693 spin_lock_bh(&ar->list_lock);
Vasanthakumar Thiagarajan990bd912011-10-25 19:34:20 +05301694 list_for_each_entry_safe(vif, tmp_vif, &ar->vif_list, list) {
1695 list_del(&vif->list);
Vasanthakumar Thiagarajan11f6e402011-11-01 16:38:50 +05301696 spin_unlock_bh(&ar->list_lock);
Vasanthakumar Thiagarajan990bd912011-10-25 19:34:20 +05301697 ath6kl_cleanup_vif(vif, test_bit(WMI_READY, &ar->flag));
Vasanthakumar Thiagarajan27929722011-10-25 19:34:21 +05301698 rtnl_lock();
Kalle Valoc25889e2012-01-17 20:08:27 +02001699 ath6kl_cfg80211_vif_cleanup(vif);
Vasanthakumar Thiagarajan27929722011-10-25 19:34:21 +05301700 rtnl_unlock();
Vasanthakumar Thiagarajan11f6e402011-11-01 16:38:50 +05301701 spin_lock_bh(&ar->list_lock);
Vasanthakumar Thiagarajan990bd912011-10-25 19:34:20 +05301702 }
Vasanthakumar Thiagarajan11f6e402011-11-01 16:38:50 +05301703 spin_unlock_bh(&ar->list_lock);
Kalle Valobdcd8172011-07-18 00:22:30 +03001704
Vasanthakumar Thiagarajan6db8fa52011-10-25 19:34:16 +05301705 clear_bit(WMI_READY, &ar->flag);
Kalle Valobdcd8172011-07-18 00:22:30 +03001706
Vasanthakumar Thiagarajan6db8fa52011-10-25 19:34:16 +05301707 /*
1708 * After wmi_shudown all WMI events will be dropped. We
1709 * need to cleanup the buffers allocated in AP mode and
1710 * give disconnect notification to stack, which usually
1711 * happens in the disconnect_event. Simulate the disconnect
1712 * event by calling the function directly. Sometimes
1713 * disconnect_event will be received when the debug logs
1714 * are collected.
1715 */
1716 ath6kl_wmi_shutdown(ar->wmi);
Kalle Valobdcd8172011-07-18 00:22:30 +03001717
Vasanthakumar Thiagarajan6db8fa52011-10-25 19:34:16 +05301718 clear_bit(WMI_ENABLED, &ar->flag);
1719 if (ar->htc_target) {
1720 ath6kl_dbg(ATH6KL_DBG_TRC, "%s: shut down htc\n", __func__);
1721 ath6kl_htc_stop(ar->htc_target);
Kalle Valobdcd8172011-07-18 00:22:30 +03001722 }
1723
Vasanthakumar Thiagarajan6db8fa52011-10-25 19:34:16 +05301724 /*
1725 * Try to reset the device if we can. The driver may have been
1726 * configure NOT to reset the target during a debug session.
1727 */
1728 ath6kl_dbg(ATH6KL_DBG_TRC,
Kalle Valo96f1fad2012-03-07 20:03:57 +02001729 "attempting to reset target on instance destroy\n");
Vasanthakumar Thiagarajan6db8fa52011-10-25 19:34:16 +05301730 ath6kl_reset_device(ar, ar->target_type, true, true);
Kalle Valobdcd8172011-07-18 00:22:30 +03001731
Vasanthakumar Thiagarajan6db8fa52011-10-25 19:34:16 +05301732 clear_bit(WLAN_ENABLED, &ar->flag);
Vasanthakumar Thiagarajane8ad9a02012-02-14 20:32:59 +05301733
1734 up(&ar->sem);
Kalle Valobdcd8172011-07-18 00:22:30 +03001735}
Kalle Valod6a434d2012-01-17 20:09:36 +02001736EXPORT_SYMBOL(ath6kl_stop_txrx);