blob: 231675d4bf709dd5a4aeaaf7b1bea1810166e11f [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
Stephen Rothwellc6efe572011-09-28 18:32:34 +100019#include <linux/moduleparam.h>
Sangwook Leef7830202011-10-26 16:28:38 +010020#include <linux/errno.h>
Kalle Valod6a434d2012-01-17 20:09:36 +020021#include <linux/export.h>
Sam Leffler92ecbff2011-09-07 10:55:16 +030022#include <linux/of.h>
Kalle Valobdcd8172011-07-18 00:22:30 +030023#include <linux/mmc/sdio_func.h>
Kalle Valod6a434d2012-01-17 20:09:36 +020024
Kalle Valobdcd8172011-07-18 00:22:30 +030025#include "core.h"
26#include "cfg80211.h"
27#include "target.h"
28#include "debug.h"
29#include "hif-ops.h"
30
Kalle Valo856f4b32011-11-14 19:30:29 +020031static const struct ath6kl_hw hw_list[] = {
32 {
Kalle Valo0d0192b2011-11-14 19:31:07 +020033 .id = AR6003_HW_2_0_VERSION,
Kalle Valo293badf2011-11-14 19:30:54 +020034 .name = "ar6003 hw 2.0",
Kalle Valo856f4b32011-11-14 19:30:29 +020035 .dataset_patch_addr = 0x57e884,
36 .app_load_addr = 0x543180,
37 .board_ext_data_addr = 0x57e500,
38 .reserved_ram_size = 6912,
Ryan Hsu39586bf2011-12-13 17:11:07 +080039 .refclk_hz = 26000000,
40 .uarttx_pin = 8,
Kalle Valo856f4b32011-11-14 19:30:29 +020041
42 /* hw2.0 needs override address hardcoded */
43 .app_start_override_addr = 0x944C00,
Kalle Valod1a94212011-11-14 19:31:23 +020044
Kalle Valoc0038972011-12-16 20:53:31 +020045 .fw = {
46 .dir = AR6003_HW_2_0_FW_DIR,
47 .otp = AR6003_HW_2_0_OTP_FILE,
48 .fw = AR6003_HW_2_0_FIRMWARE_FILE,
49 .tcmd = AR6003_HW_2_0_TCMD_FIRMWARE_FILE,
50 .patch = AR6003_HW_2_0_PATCH_FILE,
Kalle Valoc0038972011-12-16 20:53:31 +020051 },
52
Kalle Valod1a94212011-11-14 19:31:23 +020053 .fw_board = AR6003_HW_2_0_BOARD_DATA_FILE,
54 .fw_default_board = AR6003_HW_2_0_DEFAULT_BOARD_DATA_FILE,
Kalle Valo856f4b32011-11-14 19:30:29 +020055 },
56 {
Kalle Valo0d0192b2011-11-14 19:31:07 +020057 .id = AR6003_HW_2_1_1_VERSION,
Kalle Valo293badf2011-11-14 19:30:54 +020058 .name = "ar6003 hw 2.1.1",
Kalle Valo856f4b32011-11-14 19:30:29 +020059 .dataset_patch_addr = 0x57ff74,
60 .app_load_addr = 0x1234,
61 .board_ext_data_addr = 0x542330,
62 .reserved_ram_size = 512,
Ryan Hsu39586bf2011-12-13 17:11:07 +080063 .refclk_hz = 26000000,
64 .uarttx_pin = 8,
Alex Yangcd23c1c2012-01-17 15:32:29 +020065 .testscript_addr = 0x57ef74,
Kalle Valod1a94212011-11-14 19:31:23 +020066
Kalle Valoc0038972011-12-16 20:53:31 +020067 .fw = {
68 .dir = AR6003_HW_2_1_1_FW_DIR,
69 .otp = AR6003_HW_2_1_1_OTP_FILE,
70 .fw = AR6003_HW_2_1_1_FIRMWARE_FILE,
71 .tcmd = AR6003_HW_2_1_1_TCMD_FIRMWARE_FILE,
72 .patch = AR6003_HW_2_1_1_PATCH_FILE,
Alex Yangcd23c1c2012-01-17 15:32:29 +020073 .utf = AR6003_HW_2_1_1_UTF_FIRMWARE_FILE,
74 .testscript = AR6003_HW_2_1_1_TESTSCRIPT_FILE,
Kalle Valoc0038972011-12-16 20:53:31 +020075 },
76
Kalle Valod1a94212011-11-14 19:31:23 +020077 .fw_board = AR6003_HW_2_1_1_BOARD_DATA_FILE,
Kalle Valo05aab172012-03-07 20:04:00 +020078 .fw_default_board = AR6003_HW_2_1_1_DEFAULT_BOARD_DATA_FILE,
Kalle Valo856f4b32011-11-14 19:30:29 +020079 },
80 {
Kalle Valo0d0192b2011-11-14 19:31:07 +020081 .id = AR6004_HW_1_0_VERSION,
Kalle Valo293badf2011-11-14 19:30:54 +020082 .name = "ar6004 hw 1.0",
Kalle Valo856f4b32011-11-14 19:30:29 +020083 .dataset_patch_addr = 0x57e884,
84 .app_load_addr = 0x1234,
85 .board_ext_data_addr = 0x437000,
86 .reserved_ram_size = 19456,
Kalle Valo0d4d72b2011-11-14 19:30:39 +020087 .board_addr = 0x433900,
Ryan Hsu39586bf2011-12-13 17:11:07 +080088 .refclk_hz = 26000000,
89 .uarttx_pin = 11,
Kalle Valod1a94212011-11-14 19:31:23 +020090
Kalle Valoc0038972011-12-16 20:53:31 +020091 .fw = {
92 .dir = AR6004_HW_1_0_FW_DIR,
93 .fw = AR6004_HW_1_0_FIRMWARE_FILE,
Kalle Valoc0038972011-12-16 20:53:31 +020094 },
95
Kalle Valod1a94212011-11-14 19:31:23 +020096 .fw_board = AR6004_HW_1_0_BOARD_DATA_FILE,
97 .fw_default_board = AR6004_HW_1_0_DEFAULT_BOARD_DATA_FILE,
Kalle Valo856f4b32011-11-14 19:30:29 +020098 },
99 {
Kalle Valo0d0192b2011-11-14 19:31:07 +0200100 .id = AR6004_HW_1_1_VERSION,
Kalle Valo293badf2011-11-14 19:30:54 +0200101 .name = "ar6004 hw 1.1",
Kalle Valo856f4b32011-11-14 19:30:29 +0200102 .dataset_patch_addr = 0x57e884,
103 .app_load_addr = 0x1234,
104 .board_ext_data_addr = 0x437000,
105 .reserved_ram_size = 11264,
Kalle Valo0d4d72b2011-11-14 19:30:39 +0200106 .board_addr = 0x43d400,
Ryan Hsu39586bf2011-12-13 17:11:07 +0800107 .refclk_hz = 40000000,
108 .uarttx_pin = 11,
Kalle Valod1a94212011-11-14 19:31:23 +0200109
Kalle Valoc0038972011-12-16 20:53:31 +0200110 .fw = {
111 .dir = AR6004_HW_1_1_FW_DIR,
112 .fw = AR6004_HW_1_1_FIRMWARE_FILE,
Kalle Valoc0038972011-12-16 20:53:31 +0200113 },
114
Kalle Valod1a94212011-11-14 19:31:23 +0200115 .fw_board = AR6004_HW_1_1_BOARD_DATA_FILE,
116 .fw_default_board = AR6004_HW_1_1_DEFAULT_BOARD_DATA_FILE,
Kalle Valo856f4b32011-11-14 19:30:29 +0200117 },
118};
119
Kalle Valobdcd8172011-07-18 00:22:30 +0300120/*
121 * Include definitions here that can be used to tune the WLAN module
122 * behavior. Different customers can tune the behavior as per their needs,
123 * here.
124 */
125
126/*
127 * This configuration item enable/disable keepalive support.
128 * Keepalive support: In the absence of any data traffic to AP, null
129 * frames will be sent to the AP at periodic interval, to keep the association
130 * active. This configuration item defines the periodic interval.
131 * Use value of zero to disable keepalive support
132 * Default: 60 seconds
133 */
134#define WLAN_CONFIG_KEEP_ALIVE_INTERVAL 60
135
136/*
137 * This configuration item sets the value of disconnect timeout
138 * Firmware delays sending the disconnec event to the host for this
139 * timeout after is gets disconnected from the current AP.
140 * If the firmware successly roams within the disconnect timeout
141 * it sends a new connect event
142 */
143#define WLAN_CONFIG_DISCONNECT_TIMEOUT 10
144
Kalle Valobdcd8172011-07-18 00:22:30 +0300145
Kalle Valobdcd8172011-07-18 00:22:30 +0300146#define ATH6KL_DATA_OFFSET 64
147struct sk_buff *ath6kl_buf_alloc(int size)
148{
149 struct sk_buff *skb;
150 u16 reserved;
151
152 /* Add chacheline space at front and back of buffer */
153 reserved = (2 * L1_CACHE_BYTES) + ATH6KL_DATA_OFFSET +
Vasanthakumar Thiagarajan1df94a82011-08-17 18:45:10 +0530154 sizeof(struct htc_packet) + ATH6KL_HTC_ALIGN_BYTES;
Kalle Valobdcd8172011-07-18 00:22:30 +0300155 skb = dev_alloc_skb(size + reserved);
156
157 if (skb)
158 skb_reserve(skb, reserved - L1_CACHE_BYTES);
159 return skb;
160}
161
Vasanthakumar Thiagarajane29f25f2011-10-25 19:34:15 +0530162void ath6kl_init_profile_info(struct ath6kl_vif *vif)
Kalle Valobdcd8172011-07-18 00:22:30 +0300163{
Vasanthakumar Thiagarajan34503342011-10-25 19:34:02 +0530164 vif->ssid_len = 0;
165 memset(vif->ssid, 0, sizeof(vif->ssid));
166
167 vif->dot11_auth_mode = OPEN_AUTH;
168 vif->auth_mode = NONE_AUTH;
169 vif->prwise_crypto = NONE_CRYPT;
170 vif->prwise_crypto_len = 0;
171 vif->grp_crypto = NONE_CRYPT;
172 vif->grp_crypto_len = 0;
Vasanthakumar Thiagarajan6f2a73f2011-10-25 19:34:06 +0530173 memset(vif->wep_key_list, 0, sizeof(vif->wep_key_list));
Vasanthakumar Thiagarajan8c8b65e2011-10-25 19:34:04 +0530174 memset(vif->req_bssid, 0, sizeof(vif->req_bssid));
175 memset(vif->bssid, 0, sizeof(vif->bssid));
Vasanthakumar Thiagarajanf74bac52011-10-25 19:34:05 +0530176 vif->bss_ch = 0;
Kalle Valobdcd8172011-07-18 00:22:30 +0300177}
178
Kalle Valobdcd8172011-07-18 00:22:30 +0300179static int ath6kl_set_host_app_area(struct ath6kl *ar)
180{
181 u32 address, data;
182 struct host_app_area host_app_area;
183
184 /* Fetch the address of the host_app_area_s
185 * instance in the host interest area */
186 address = ath6kl_get_hi_item_addr(ar, HI_ITEM(hi_app_host_interest));
Kevin Fang31024d92011-07-11 17:14:13 +0800187 address = TARG_VTOP(ar->target_type, address);
Kalle Valobdcd8172011-07-18 00:22:30 +0300188
Kalle Valoaddb44b2011-09-02 10:32:05 +0300189 if (ath6kl_diag_read32(ar, address, &data))
Kalle Valobdcd8172011-07-18 00:22:30 +0300190 return -EIO;
191
Kevin Fang31024d92011-07-11 17:14:13 +0800192 address = TARG_VTOP(ar->target_type, data);
Kalle Valocbf49a62011-10-05 12:23:17 +0300193 host_app_area.wmi_protocol_ver = cpu_to_le32(WMI_PROTOCOL_VERSION);
Kalle Valoaddb44b2011-09-02 10:32:05 +0300194 if (ath6kl_diag_write(ar, address, (u8 *) &host_app_area,
195 sizeof(struct host_app_area)))
Kalle Valobdcd8172011-07-18 00:22:30 +0300196 return -EIO;
197
198 return 0;
199}
200
201static inline void set_ac2_ep_map(struct ath6kl *ar,
202 u8 ac,
203 enum htc_endpoint_id ep)
204{
205 ar->ac2ep_map[ac] = ep;
206 ar->ep2ac_map[ep] = ac;
207}
208
209/* connect to a service */
210static int ath6kl_connectservice(struct ath6kl *ar,
211 struct htc_service_connect_req *con_req,
212 char *desc)
213{
214 int status;
215 struct htc_service_connect_resp response;
216
217 memset(&response, 0, sizeof(response));
218
Kalle Vaload226ec2011-08-10 09:49:12 +0300219 status = ath6kl_htc_conn_service(ar->htc_target, con_req, &response);
Kalle Valobdcd8172011-07-18 00:22:30 +0300220 if (status) {
221 ath6kl_err("failed to connect to %s service status:%d\n",
222 desc, status);
223 return status;
224 }
225
226 switch (con_req->svc_id) {
227 case WMI_CONTROL_SVC:
228 if (test_bit(WMI_ENABLED, &ar->flag))
229 ath6kl_wmi_set_control_ep(ar->wmi, response.endpoint);
230 ar->ctrl_ep = response.endpoint;
231 break;
232 case WMI_DATA_BE_SVC:
233 set_ac2_ep_map(ar, WMM_AC_BE, response.endpoint);
234 break;
235 case WMI_DATA_BK_SVC:
236 set_ac2_ep_map(ar, WMM_AC_BK, response.endpoint);
237 break;
238 case WMI_DATA_VI_SVC:
239 set_ac2_ep_map(ar, WMM_AC_VI, response.endpoint);
240 break;
241 case WMI_DATA_VO_SVC:
242 set_ac2_ep_map(ar, WMM_AC_VO, response.endpoint);
243 break;
244 default:
245 ath6kl_err("service id is not mapped %d\n", con_req->svc_id);
246 return -EINVAL;
247 }
248
249 return 0;
250}
251
252static int ath6kl_init_service_ep(struct ath6kl *ar)
253{
254 struct htc_service_connect_req connect;
255
256 memset(&connect, 0, sizeof(connect));
257
258 /* these fields are the same for all service endpoints */
259 connect.ep_cb.rx = ath6kl_rx;
260 connect.ep_cb.rx_refill = ath6kl_rx_refill;
261 connect.ep_cb.tx_full = ath6kl_tx_queue_full;
262
263 /*
264 * Set the max queue depth so that our ath6kl_tx_queue_full handler
265 * gets called.
266 */
267 connect.max_txq_depth = MAX_DEFAULT_SEND_QUEUE_DEPTH;
268 connect.ep_cb.rx_refill_thresh = ATH6KL_MAX_RX_BUFFERS / 4;
269 if (!connect.ep_cb.rx_refill_thresh)
270 connect.ep_cb.rx_refill_thresh++;
271
272 /* connect to control service */
273 connect.svc_id = WMI_CONTROL_SVC;
274 if (ath6kl_connectservice(ar, &connect, "WMI CONTROL"))
275 return -EIO;
276
277 connect.flags |= HTC_FLGS_TX_BNDL_PAD_EN;
278
279 /*
280 * Limit the HTC message size on the send path, although e can
281 * receive A-MSDU frames of 4K, we will only send ethernet-sized
282 * (802.3) frames on the send path.
283 */
284 connect.max_rxmsg_sz = WMI_MAX_TX_DATA_FRAME_LENGTH;
285
286 /*
287 * To reduce the amount of committed memory for larger A_MSDU
288 * frames, use the recv-alloc threshold mechanism for larger
289 * packets.
290 */
291 connect.ep_cb.rx_alloc_thresh = ATH6KL_BUFFER_SIZE;
292 connect.ep_cb.rx_allocthresh = ath6kl_alloc_amsdu_rxbuf;
293
294 /*
295 * For the remaining data services set the connection flag to
296 * reduce dribbling, if configured to do so.
297 */
298 connect.conn_flags |= HTC_CONN_FLGS_REDUCE_CRED_DRIB;
299 connect.conn_flags &= ~HTC_CONN_FLGS_THRESH_MASK;
300 connect.conn_flags |= HTC_CONN_FLGS_THRESH_LVL_HALF;
301
302 connect.svc_id = WMI_DATA_BE_SVC;
303
304 if (ath6kl_connectservice(ar, &connect, "WMI DATA BE"))
305 return -EIO;
306
307 /* connect to back-ground map this to WMI LOW_PRI */
308 connect.svc_id = WMI_DATA_BK_SVC;
309 if (ath6kl_connectservice(ar, &connect, "WMI DATA BK"))
310 return -EIO;
311
312 /* connect to Video service, map this to to HI PRI */
313 connect.svc_id = WMI_DATA_VI_SVC;
314 if (ath6kl_connectservice(ar, &connect, "WMI DATA VI"))
315 return -EIO;
316
317 /*
318 * Connect to VO service, this is currently not mapped to a WMI
319 * priority stream due to historical reasons. WMI originally
320 * defined 3 priorities over 3 mailboxes We can change this when
321 * WMI is reworked so that priorities are not dependent on
322 * mailboxes.
323 */
324 connect.svc_id = WMI_DATA_VO_SVC;
325 if (ath6kl_connectservice(ar, &connect, "WMI DATA VO"))
326 return -EIO;
327
328 return 0;
329}
330
Vasanthakumar Thiagarajane29f25f2011-10-25 19:34:15 +0530331void ath6kl_init_control_info(struct ath6kl_vif *vif)
Kalle Valobdcd8172011-07-18 00:22:30 +0300332{
Vasanthakumar Thiagarajane29f25f2011-10-25 19:34:15 +0530333 ath6kl_init_profile_info(vif);
Vasanthakumar Thiagarajan34503342011-10-25 19:34:02 +0530334 vif->def_txkey_index = 0;
Vasanthakumar Thiagarajan6f2a73f2011-10-25 19:34:06 +0530335 memset(vif->wep_key_list, 0, sizeof(vif->wep_key_list));
Vasanthakumar Thiagarajanf74bac52011-10-25 19:34:05 +0530336 vif->ch_hint = 0;
Kalle Valobdcd8172011-07-18 00:22:30 +0300337}
338
339/*
340 * Set HTC/Mbox operational parameters, this can only be called when the
341 * target is in the BMI phase.
342 */
343static int ath6kl_set_htc_params(struct ath6kl *ar, u32 mbox_isr_yield_val,
344 u8 htc_ctrl_buf)
345{
346 int status;
347 u32 blk_size;
348
349 blk_size = ar->mbox_info.block_size;
350
351 if (htc_ctrl_buf)
352 blk_size |= ((u32)htc_ctrl_buf) << 16;
353
354 /* set the host interest area for the block size */
Kalle Valo24fc32b2012-03-07 20:03:58 +0200355 status = ath6kl_bmi_write_hi32(ar, hi_mbox_io_block_sz, blk_size);
Kalle Valobdcd8172011-07-18 00:22:30 +0300356 if (status) {
357 ath6kl_err("bmi_write_memory for IO block size failed\n");
358 goto out;
359 }
360
361 ath6kl_dbg(ATH6KL_DBG_TRC, "block size set: %d (target addr:0x%X)\n",
362 blk_size,
363 ath6kl_get_hi_item_addr(ar, HI_ITEM(hi_mbox_io_block_sz)));
364
365 if (mbox_isr_yield_val) {
366 /* set the host interest area for the mbox ISR yield limit */
Kalle Valo24fc32b2012-03-07 20:03:58 +0200367 status = ath6kl_bmi_write_hi32(ar, hi_mbox_isr_yield_limit,
368 mbox_isr_yield_val);
Kalle Valobdcd8172011-07-18 00:22:30 +0300369 if (status) {
370 ath6kl_err("bmi_write_memory for yield limit failed\n");
371 goto out;
372 }
373 }
374
375out:
376 return status;
377}
378
Vasanthakumar Thiagarajan0ce59442011-10-25 19:34:25 +0530379static int ath6kl_target_config_wlan_params(struct ath6kl *ar, int idx)
Kalle Valobdcd8172011-07-18 00:22:30 +0300380{
Jouni Malinen4dea08e2011-08-30 21:57:57 +0300381 int ret;
Kalle Valobdcd8172011-07-18 00:22:30 +0300382
383 /*
384 * Configure the device for rx dot11 header rules. "0,0" are the
385 * default values. Required if checksum offload is needed. Set
386 * RxMetaVersion to 2.
387 */
Kalle Valo1ca4d0b2012-03-07 20:03:59 +0200388 ret = ath6kl_wmi_set_rx_frame_format_cmd(ar->wmi, idx,
389 ar->rx_meta_ver, 0, 0);
390 if (ret) {
391 ath6kl_err("unable to set the rx frame format: %d\n", ret);
392 return ret;
Kalle Valobdcd8172011-07-18 00:22:30 +0300393 }
394
Kalle Valo1ca4d0b2012-03-07 20:03:59 +0200395 if (ar->conf_flags & ATH6KL_CONF_IGNORE_PS_FAIL_EVT_IN_SCAN) {
396 ret = ath6kl_wmi_pmparams_cmd(ar->wmi, idx, 0, 1, 0, 0, 1,
Kalle Valo05aab172012-03-07 20:04:00 +0200397 IGNORE_PS_FAIL_DURING_SCAN);
Kalle Valo1ca4d0b2012-03-07 20:03:59 +0200398 if (ret) {
399 ath6kl_err("unable to set power save fail event policy: %d\n",
400 ret);
401 return ret;
Kalle Valobdcd8172011-07-18 00:22:30 +0300402 }
Kalle Valobdcd8172011-07-18 00:22:30 +0300403 }
404
Kalle Valo1ca4d0b2012-03-07 20:03:59 +0200405 if (!(ar->conf_flags & ATH6KL_CONF_IGNORE_ERP_BARKER)) {
406 ret = ath6kl_wmi_set_lpreamble_cmd(ar->wmi, idx, 0,
Kalle Valo05aab172012-03-07 20:04:00 +0200407 WMI_FOLLOW_BARKER_IN_ERP);
Kalle Valo1ca4d0b2012-03-07 20:03:59 +0200408 if (ret) {
409 ath6kl_err("unable to set barker preamble policy: %d\n",
410 ret);
411 return ret;
412 }
Kalle Valobdcd8172011-07-18 00:22:30 +0300413 }
414
Kalle Valo1ca4d0b2012-03-07 20:03:59 +0200415 ret = ath6kl_wmi_set_keepalive_cmd(ar->wmi, idx,
416 WLAN_CONFIG_KEEP_ALIVE_INTERVAL);
417 if (ret) {
418 ath6kl_err("unable to set keep alive interval: %d\n", ret);
419 return ret;
420 }
421
422 ret = ath6kl_wmi_disctimeout_cmd(ar->wmi, idx,
423 WLAN_CONFIG_DISCONNECT_TIMEOUT);
424 if (ret) {
425 ath6kl_err("unable to set disconnect timeout: %d\n", ret);
426 return ret;
427 }
428
429 if (!(ar->conf_flags & ATH6KL_CONF_ENABLE_TX_BURST)) {
430 ret = ath6kl_wmi_set_wmm_txop(ar->wmi, idx, WMI_TXOP_DISABLED);
431 if (ret) {
432 ath6kl_err("unable to set txop bursting: %d\n", ret);
433 return ret;
Kalle Valobdcd8172011-07-18 00:22:30 +0300434 }
Kalle Valo1ca4d0b2012-03-07 20:03:59 +0200435 }
Kalle Valobdcd8172011-07-18 00:22:30 +0300436
Vasanthakumar Thiagarajanb64de352011-11-18 10:05:28 +0530437 if (ar->p2p && (ar->vif_max == 1 || idx)) {
Vasanthakumar Thiagarajan0ce59442011-10-25 19:34:25 +0530438 ret = ath6kl_wmi_info_req_cmd(ar->wmi, idx,
Jouni Malinen6bbc7c32011-09-05 17:38:47 +0300439 P2P_FLAG_CAPABILITIES_REQ |
440 P2P_FLAG_MACADDR_REQ |
441 P2P_FLAG_HMODEL_REQ);
442 if (ret) {
443 ath6kl_dbg(ATH6KL_DBG_TRC, "failed to request P2P "
444 "capabilities (%d) - assuming P2P not "
445 "supported\n", ret);
Rusty Russell3db1cd52011-12-19 13:56:45 +0000446 ar->p2p = false;
Jouni Malinen6bbc7c32011-09-05 17:38:47 +0300447 }
448 }
449
Vasanthakumar Thiagarajanb64de352011-11-18 10:05:28 +0530450 if (ar->p2p && (ar->vif_max == 1 || idx)) {
Jouni Malinen6bbc7c32011-09-05 17:38:47 +0300451 /* Enable Probe Request reporting for P2P */
Vasanthakumar Thiagarajan0ce59442011-10-25 19:34:25 +0530452 ret = ath6kl_wmi_probe_report_req_cmd(ar->wmi, idx, true);
Jouni Malinen6bbc7c32011-09-05 17:38:47 +0300453 if (ret) {
454 ath6kl_dbg(ATH6KL_DBG_TRC, "failed to enable Probe "
455 "Request reporting (%d)\n", ret);
456 }
Jouni Malinen4dea08e2011-08-30 21:57:57 +0300457 }
458
Kalle Valo1ca4d0b2012-03-07 20:03:59 +0200459 return ret;
Kalle Valobdcd8172011-07-18 00:22:30 +0300460}
461
462int ath6kl_configure_target(struct ath6kl *ar)
463{
464 u32 param, ram_reserved_size;
Vasanthakumar Thiagarajan3226f68a2011-10-25 19:34:24 +0530465 u8 fw_iftype, fw_mode = 0, fw_submode = 0;
Ryan Hsu39586bf2011-12-13 17:11:07 +0800466 int i, status;
Kalle Valobdcd8172011-07-18 00:22:30 +0300467
Kalle Valof29af972012-01-17 20:08:56 +0200468 param = !!(ar->conf_flags & ATH6KL_CONF_UART_DEBUG);
Kalle Valo24fc32b2012-03-07 20:03:58 +0200469 if (ath6kl_bmi_write_hi32(ar, hi_serial_enable, param)) {
Vasanthakumar Thiagarajana10e2f22011-12-29 16:05:38 +0530470 ath6kl_err("bmi_write_memory for uart debug failed\n");
471 return -EIO;
472 }
473
Vasanthakumar Thiagarajan7b858322011-10-25 19:34:22 +0530474 /*
475 * Note: Even though the firmware interface type is
476 * chosen as BSS_STA for all three interfaces, can
477 * be configured to IBSS/AP as long as the fw submode
478 * remains normal mode (0 - AP, STA and IBSS). But
479 * due to an target assert in firmware only one interface is
480 * configured for now.
481 */
Vasanthakumar Thiagarajandd3751f2011-10-25 19:33:59 +0530482 fw_iftype = HI_OPTION_FW_MODE_BSS_STA;
Kalle Valobdcd8172011-07-18 00:22:30 +0300483
Kalle Valo71f96ee2011-11-14 19:31:30 +0200484 for (i = 0; i < ar->vif_max; i++)
Vasanthakumar Thiagarajan7b858322011-10-25 19:34:22 +0530485 fw_mode |= fw_iftype << (i * HI_OPTION_FW_MODE_BITS);
486
487 /*
Vasanthakumar Thiagarajan3226f68a2011-10-25 19:34:24 +0530488 * By default, submodes :
489 * vif[0] - AP/STA/IBSS
490 * vif[1] - "P2P dev"/"P2P GO"/"P2P Client"
491 * vif[2] - "P2P dev"/"P2P GO"/"P2P Client"
Vasanthakumar Thiagarajan7b858322011-10-25 19:34:22 +0530492 */
Vasanthakumar Thiagarajan3226f68a2011-10-25 19:34:24 +0530493
494 for (i = 0; i < ar->max_norm_iface; i++)
495 fw_submode |= HI_OPTION_FW_SUBMODE_NONE <<
496 (i * HI_OPTION_FW_SUBMODE_BITS);
497
Kalle Valo71f96ee2011-11-14 19:31:30 +0200498 for (i = ar->max_norm_iface; i < ar->vif_max; i++)
Vasanthakumar Thiagarajan3226f68a2011-10-25 19:34:24 +0530499 fw_submode |= HI_OPTION_FW_SUBMODE_P2PDEV <<
500 (i * HI_OPTION_FW_SUBMODE_BITS);
Vasanthakumar Thiagarajan7b858322011-10-25 19:34:22 +0530501
Vasanthakumar Thiagarajanb64de352011-11-18 10:05:28 +0530502 if (ar->p2p && ar->vif_max == 1)
Vasanthakumar Thiagarajan7b858322011-10-25 19:34:22 +0530503 fw_submode = HI_OPTION_FW_SUBMODE_P2PDEV;
Vasanthakumar Thiagarajan7b858322011-10-25 19:34:22 +0530504
Kalle Valo24fc32b2012-03-07 20:03:58 +0200505 if (ath6kl_bmi_write_hi32(ar, hi_app_host_interest,
506 HTC_PROTOCOL_VERSION) != 0) {
Kalle Valobdcd8172011-07-18 00:22:30 +0300507 ath6kl_err("bmi_write_memory for htc version failed\n");
508 return -EIO;
509 }
510
511 /* set the firmware mode to STA/IBSS/AP */
512 param = 0;
513
Kalle Valo80fb2682012-03-07 20:03:59 +0200514 if (ath6kl_bmi_read_hi32(ar, hi_option_flag, &param) != 0) {
Kalle Valobdcd8172011-07-18 00:22:30 +0300515 ath6kl_err("bmi_read_memory for setting fwmode failed\n");
516 return -EIO;
517 }
518
Kalle Valo71f96ee2011-11-14 19:31:30 +0200519 param |= (ar->vif_max << HI_OPTION_NUM_DEV_SHIFT);
Vasanthakumar Thiagarajan7b858322011-10-25 19:34:22 +0530520 param |= fw_mode << HI_OPTION_FW_MODE_SHIFT;
521 param |= fw_submode << HI_OPTION_FW_SUBMODE_SHIFT;
522
Kalle Valobdcd8172011-07-18 00:22:30 +0300523 param |= (0 << HI_OPTION_MAC_ADDR_METHOD_SHIFT);
524 param |= (0 << HI_OPTION_FW_BRIDGE_SHIFT);
525
Kalle Valo24fc32b2012-03-07 20:03:58 +0200526 if (ath6kl_bmi_write_hi32(ar, hi_option_flag, param) != 0) {
Kalle Valobdcd8172011-07-18 00:22:30 +0300527 ath6kl_err("bmi_write_memory for setting fwmode failed\n");
528 return -EIO;
529 }
530
531 ath6kl_dbg(ATH6KL_DBG_TRC, "firmware mode set\n");
532
533 /*
534 * Hardcode the address use for the extended board data
535 * Ideally this should be pre-allocate by the OS at boot time
536 * But since it is a new feature and board data is loaded
537 * at init time, we have to workaround this from host.
538 * It is difficult to patch the firmware boot code,
539 * but possible in theory.
540 */
541
Kalle Valo991b27e2011-09-07 10:55:17 +0300542 param = ar->hw.board_ext_data_addr;
543 ram_reserved_size = ar->hw.reserved_ram_size;
Kalle Valobdcd8172011-07-18 00:22:30 +0300544
Kalle Valo24fc32b2012-03-07 20:03:58 +0200545 if (ath6kl_bmi_write_hi32(ar, hi_board_ext_data, param) != 0) {
Kalle Valo991b27e2011-09-07 10:55:17 +0300546 ath6kl_err("bmi_write_memory for hi_board_ext_data failed\n");
547 return -EIO;
548 }
549
Kalle Valo24fc32b2012-03-07 20:03:58 +0200550 if (ath6kl_bmi_write_hi32(ar, hi_end_ram_reserve_sz,
551 ram_reserved_size) != 0) {
Kalle Valo991b27e2011-09-07 10:55:17 +0300552 ath6kl_err("bmi_write_memory for hi_end_ram_reserve_sz failed\n");
553 return -EIO;
Kalle Valobdcd8172011-07-18 00:22:30 +0300554 }
555
556 /* set the block size for the target */
557 if (ath6kl_set_htc_params(ar, MBOX_YIELD_LIMIT, 0))
558 /* use default number of control buffers */
559 return -EIO;
560
Ryan Hsu39586bf2011-12-13 17:11:07 +0800561 /* Configure GPIO AR600x UART */
Kalle Valo24fc32b2012-03-07 20:03:58 +0200562 status = ath6kl_bmi_write_hi32(ar, hi_dbg_uart_txpin,
563 ar->hw.uarttx_pin);
Ryan Hsu39586bf2011-12-13 17:11:07 +0800564 if (status)
565 return status;
566
567 /* Configure target refclk_hz */
Kalle Valo24fc32b2012-03-07 20:03:58 +0200568 status = ath6kl_bmi_write_hi32(ar, hi_refclk_hz, ar->hw.refclk_hz);
Ryan Hsu39586bf2011-12-13 17:11:07 +0800569 if (status)
570 return status;
571
Kalle Valobdcd8172011-07-18 00:22:30 +0300572 return 0;
573}
574
Kalle Valobdcd8172011-07-18 00:22:30 +0300575/* firmware upload */
Kalle Valobdcd8172011-07-18 00:22:30 +0300576static int ath6kl_get_fw(struct ath6kl *ar, const char *filename,
577 u8 **fw, size_t *fw_len)
578{
579 const struct firmware *fw_entry;
580 int ret;
581
582 ret = request_firmware(&fw_entry, filename, ar->dev);
583 if (ret)
584 return ret;
585
586 *fw_len = fw_entry->size;
587 *fw = kmemdup(fw_entry->data, fw_entry->size, GFP_KERNEL);
588
589 if (*fw == NULL)
590 ret = -ENOMEM;
591
592 release_firmware(fw_entry);
593
594 return ret;
595}
596
Sam Leffler92ecbff2011-09-07 10:55:16 +0300597#ifdef CONFIG_OF
Sam Leffler92ecbff2011-09-07 10:55:16 +0300598/*
599 * Check the device tree for a board-id and use it to construct
600 * the pathname to the firmware file. Used (for now) to find a
601 * fallback to the "bdata.bin" file--typically a symlink to the
602 * appropriate board-specific file.
603 */
604static bool check_device_tree(struct ath6kl *ar)
605{
606 static const char *board_id_prop = "atheros,board-id";
607 struct device_node *node;
608 char board_filename[64];
609 const char *board_id;
610 int ret;
611
612 for_each_compatible_node(node, NULL, "atheros,ath6kl") {
613 board_id = of_get_property(node, board_id_prop, NULL);
614 if (board_id == NULL) {
615 ath6kl_warn("No \"%s\" property on %s node.\n",
616 board_id_prop, node->name);
617 continue;
618 }
619 snprintf(board_filename, sizeof(board_filename),
Kalle Valoc0038972011-12-16 20:53:31 +0200620 "%s/bdata.%s.bin", ar->hw.fw.dir, board_id);
Sam Leffler92ecbff2011-09-07 10:55:16 +0300621
622 ret = ath6kl_get_fw(ar, board_filename, &ar->fw_board,
623 &ar->fw_board_len);
624 if (ret) {
625 ath6kl_err("Failed to get DT board file %s: %d\n",
626 board_filename, ret);
627 continue;
628 }
629 return true;
630 }
631 return false;
632}
633#else
634static bool check_device_tree(struct ath6kl *ar)
635{
636 return false;
637}
638#endif /* CONFIG_OF */
639
Kalle Valobdcd8172011-07-18 00:22:30 +0300640static int ath6kl_fetch_board_file(struct ath6kl *ar)
641{
642 const char *filename;
643 int ret;
644
Kalle Valo772c31e2011-09-07 10:55:16 +0300645 if (ar->fw_board != NULL)
646 return 0;
647
Kalle Valod1a94212011-11-14 19:31:23 +0200648 if (WARN_ON(ar->hw.fw_board == NULL))
649 return -EINVAL;
650
651 filename = ar->hw.fw_board;
Kalle Valobdcd8172011-07-18 00:22:30 +0300652
653 ret = ath6kl_get_fw(ar, filename, &ar->fw_board,
654 &ar->fw_board_len);
655 if (ret == 0) {
656 /* managed to get proper board file */
657 return 0;
658 }
659
Sam Leffler92ecbff2011-09-07 10:55:16 +0300660 if (check_device_tree(ar)) {
661 /* got board file from device tree */
662 return 0;
663 }
664
Kalle Valobdcd8172011-07-18 00:22:30 +0300665 /* there was no proper board file, try to use default instead */
666 ath6kl_warn("Failed to get board file %s (%d), trying to find default board file.\n",
667 filename, ret);
668
Kalle Valod1a94212011-11-14 19:31:23 +0200669 filename = ar->hw.fw_default_board;
Kalle Valobdcd8172011-07-18 00:22:30 +0300670
671 ret = ath6kl_get_fw(ar, filename, &ar->fw_board,
672 &ar->fw_board_len);
673 if (ret) {
674 ath6kl_err("Failed to get default board file %s: %d\n",
675 filename, ret);
676 return ret;
677 }
678
679 ath6kl_warn("WARNING! No proper board file was not found, instead using a default board file.\n");
680 ath6kl_warn("Most likely your hardware won't work as specified. Install correct board file!\n");
681
682 return 0;
683}
684
Kalle Valo772c31e2011-09-07 10:55:16 +0300685static int ath6kl_fetch_otp_file(struct ath6kl *ar)
686{
Kalle Valoc0038972011-12-16 20:53:31 +0200687 char filename[100];
Kalle Valo772c31e2011-09-07 10:55:16 +0300688 int ret;
689
690 if (ar->fw_otp != NULL)
691 return 0;
692
Kalle Valoc0038972011-12-16 20:53:31 +0200693 if (ar->hw.fw.otp == NULL) {
Kalle Valod1a94212011-11-14 19:31:23 +0200694 ath6kl_dbg(ATH6KL_DBG_BOOT,
695 "no OTP file configured for this hw\n");
Kalle Valo772c31e2011-09-07 10:55:16 +0300696 return 0;
Kalle Valo772c31e2011-09-07 10:55:16 +0300697 }
698
Kalle Valoc0038972011-12-16 20:53:31 +0200699 snprintf(filename, sizeof(filename), "%s/%s",
700 ar->hw.fw.dir, ar->hw.fw.otp);
Kalle Valod1a94212011-11-14 19:31:23 +0200701
Kalle Valo772c31e2011-09-07 10:55:16 +0300702 ret = ath6kl_get_fw(ar, filename, &ar->fw_otp,
703 &ar->fw_otp_len);
704 if (ret) {
705 ath6kl_err("Failed to get OTP file %s: %d\n",
706 filename, ret);
707 return ret;
708 }
709
710 return 0;
711}
712
Kalle Valo5f1127f2012-01-24 13:50:16 +0200713static int ath6kl_fetch_testmode_file(struct ath6kl *ar)
714{
715 char filename[100];
716 int ret;
717
718 if (ar->testmode == 0)
719 return 0;
720
721 ath6kl_dbg(ATH6KL_DBG_BOOT, "testmode %d\n", ar->testmode);
722
723 if (ar->testmode == 2) {
724 if (ar->hw.fw.utf == NULL) {
725 ath6kl_warn("testmode 2 not supported\n");
726 return -EOPNOTSUPP;
727 }
728
729 snprintf(filename, sizeof(filename), "%s/%s",
730 ar->hw.fw.dir, ar->hw.fw.utf);
731 } else {
732 if (ar->hw.fw.tcmd == NULL) {
733 ath6kl_warn("testmode 1 not supported\n");
734 return -EOPNOTSUPP;
735 }
736
737 snprintf(filename, sizeof(filename), "%s/%s",
738 ar->hw.fw.dir, ar->hw.fw.tcmd);
739 }
740
741 set_bit(TESTMODE, &ar->flag);
742
743 ret = ath6kl_get_fw(ar, filename, &ar->fw, &ar->fw_len);
744 if (ret) {
745 ath6kl_err("Failed to get testmode %d firmware file %s: %d\n",
746 ar->testmode, filename, ret);
747 return ret;
748 }
749
750 return 0;
751}
752
Kalle Valo772c31e2011-09-07 10:55:16 +0300753static int ath6kl_fetch_fw_file(struct ath6kl *ar)
754{
Kalle Valoc0038972011-12-16 20:53:31 +0200755 char filename[100];
Kalle Valo772c31e2011-09-07 10:55:16 +0300756 int ret;
757
758 if (ar->fw != NULL)
759 return 0;
760
Kalle Valoc0038972011-12-16 20:53:31 +0200761 /* FIXME: remove WARN_ON() as we won't support FW API 1 for long */
762 if (WARN_ON(ar->hw.fw.fw == NULL))
Kalle Valod1a94212011-11-14 19:31:23 +0200763 return -EINVAL;
764
Kalle Valoc0038972011-12-16 20:53:31 +0200765 snprintf(filename, sizeof(filename), "%s/%s",
766 ar->hw.fw.dir, ar->hw.fw.fw);
Kalle Valo772c31e2011-09-07 10:55:16 +0300767
Kalle Valo772c31e2011-09-07 10:55:16 +0300768 ret = ath6kl_get_fw(ar, filename, &ar->fw, &ar->fw_len);
769 if (ret) {
770 ath6kl_err("Failed to get firmware file %s: %d\n",
771 filename, ret);
772 return ret;
773 }
774
775 return 0;
776}
777
778static int ath6kl_fetch_patch_file(struct ath6kl *ar)
779{
Kalle Valoc0038972011-12-16 20:53:31 +0200780 char filename[100];
Kalle Valo772c31e2011-09-07 10:55:16 +0300781 int ret;
782
Kalle Valod1a94212011-11-14 19:31:23 +0200783 if (ar->fw_patch != NULL)
Kalle Valo772c31e2011-09-07 10:55:16 +0300784 return 0;
Kalle Valo772c31e2011-09-07 10:55:16 +0300785
Kalle Valoc0038972011-12-16 20:53:31 +0200786 if (ar->hw.fw.patch == NULL)
Kalle Valod1a94212011-11-14 19:31:23 +0200787 return 0;
788
Kalle Valoc0038972011-12-16 20:53:31 +0200789 snprintf(filename, sizeof(filename), "%s/%s",
790 ar->hw.fw.dir, ar->hw.fw.patch);
Kalle Valod1a94212011-11-14 19:31:23 +0200791
792 ret = ath6kl_get_fw(ar, filename, &ar->fw_patch,
793 &ar->fw_patch_len);
794 if (ret) {
795 ath6kl_err("Failed to get patch file %s: %d\n",
796 filename, ret);
797 return ret;
Kalle Valo772c31e2011-09-07 10:55:16 +0300798 }
799
800 return 0;
801}
802
Alex Yangcd23c1c2012-01-17 15:32:29 +0200803static int ath6kl_fetch_testscript_file(struct ath6kl *ar)
804{
805 char filename[100];
806 int ret;
807
Kalle Valo5f1127f2012-01-24 13:50:16 +0200808 if (ar->testmode != 2)
Alex Yangcd23c1c2012-01-17 15:32:29 +0200809 return 0;
810
811 if (ar->fw_testscript != NULL)
812 return 0;
813
814 if (ar->hw.fw.testscript == NULL)
815 return 0;
816
817 snprintf(filename, sizeof(filename), "%s/%s",
Kalle Valo96f1fad2012-03-07 20:03:57 +0200818 ar->hw.fw.dir, ar->hw.fw.testscript);
Alex Yangcd23c1c2012-01-17 15:32:29 +0200819
820 ret = ath6kl_get_fw(ar, filename, &ar->fw_testscript,
821 &ar->fw_testscript_len);
822 if (ret) {
823 ath6kl_err("Failed to get testscript file %s: %d\n",
Kalle Valo96f1fad2012-03-07 20:03:57 +0200824 filename, ret);
Alex Yangcd23c1c2012-01-17 15:32:29 +0200825 return ret;
826 }
827
828 return 0;
829}
830
Kalle Valo50d41232011-09-07 10:55:17 +0300831static int ath6kl_fetch_fw_api1(struct ath6kl *ar)
Kalle Valo772c31e2011-09-07 10:55:16 +0300832{
833 int ret;
834
Kalle Valo772c31e2011-09-07 10:55:16 +0300835 ret = ath6kl_fetch_otp_file(ar);
836 if (ret)
837 return ret;
838
839 ret = ath6kl_fetch_fw_file(ar);
840 if (ret)
841 return ret;
842
843 ret = ath6kl_fetch_patch_file(ar);
844 if (ret)
845 return ret;
846
Alex Yangcd23c1c2012-01-17 15:32:29 +0200847 ret = ath6kl_fetch_testscript_file(ar);
848 if (ret)
849 return ret;
850
Kalle Valo772c31e2011-09-07 10:55:16 +0300851 return 0;
852}
Kalle Valobdcd8172011-07-18 00:22:30 +0300853
Kalle Valo65a8b4c2011-12-16 20:53:41 +0200854static int ath6kl_fetch_fw_apin(struct ath6kl *ar, const char *name)
Kalle Valo50d41232011-09-07 10:55:17 +0300855{
856 size_t magic_len, len, ie_len;
857 const struct firmware *fw;
858 struct ath6kl_fw_ie *hdr;
Kalle Valoc0038972011-12-16 20:53:31 +0200859 char filename[100];
Kalle Valo50d41232011-09-07 10:55:17 +0300860 const u8 *data;
Kalle Valo97e04962011-09-12 13:47:34 +0300861 int ret, ie_id, i, index, bit;
Kalle Valo8a137482011-09-07 10:55:17 +0300862 __le32 *val;
Kalle Valo50d41232011-09-07 10:55:17 +0300863
Kalle Valo65a8b4c2011-12-16 20:53:41 +0200864 snprintf(filename, sizeof(filename), "%s/%s", ar->hw.fw.dir, name);
Kalle Valo50d41232011-09-07 10:55:17 +0300865
866 ret = request_firmware(&fw, filename, ar->dev);
867 if (ret)
868 return ret;
869
870 data = fw->data;
871 len = fw->size;
872
873 /* magic also includes the null byte, check that as well */
874 magic_len = strlen(ATH6KL_FIRMWARE_MAGIC) + 1;
875
876 if (len < magic_len) {
877 ret = -EINVAL;
878 goto out;
879 }
880
881 if (memcmp(data, ATH6KL_FIRMWARE_MAGIC, magic_len) != 0) {
882 ret = -EINVAL;
883 goto out;
884 }
885
886 len -= magic_len;
887 data += magic_len;
888
889 /* loop elements */
890 while (len > sizeof(struct ath6kl_fw_ie)) {
891 /* hdr is unaligned! */
892 hdr = (struct ath6kl_fw_ie *) data;
893
894 ie_id = le32_to_cpup(&hdr->id);
895 ie_len = le32_to_cpup(&hdr->len);
896
897 len -= sizeof(*hdr);
898 data += sizeof(*hdr);
899
900 if (len < ie_len) {
901 ret = -EINVAL;
902 goto out;
903 }
904
905 switch (ie_id) {
906 case ATH6KL_FW_IE_OTP_IMAGE:
Kalle Valoef548622011-10-01 09:43:09 +0300907 ath6kl_dbg(ATH6KL_DBG_BOOT, "found otp image ie (%zd B)\n",
Kalle Valo96f1fad2012-03-07 20:03:57 +0200908 ie_len);
Kalle Valo6bc36432011-09-27 14:31:11 +0300909
Kalle Valo50d41232011-09-07 10:55:17 +0300910 ar->fw_otp = kmemdup(data, ie_len, GFP_KERNEL);
911
912 if (ar->fw_otp == NULL) {
913 ret = -ENOMEM;
914 goto out;
915 }
916
917 ar->fw_otp_len = ie_len;
918 break;
919 case ATH6KL_FW_IE_FW_IMAGE:
Kalle Valoef548622011-10-01 09:43:09 +0300920 ath6kl_dbg(ATH6KL_DBG_BOOT, "found fw image ie (%zd B)\n",
Kalle Valo96f1fad2012-03-07 20:03:57 +0200921 ie_len);
Kalle Valo6bc36432011-09-27 14:31:11 +0300922
Kalle Valo5f1127f2012-01-24 13:50:16 +0200923 /* in testmode we already might have a fw file */
924 if (ar->fw != NULL)
925 break;
926
Kalle Valo50d41232011-09-07 10:55:17 +0300927 ar->fw = kmemdup(data, ie_len, GFP_KERNEL);
928
929 if (ar->fw == NULL) {
930 ret = -ENOMEM;
931 goto out;
932 }
933
934 ar->fw_len = ie_len;
935 break;
936 case ATH6KL_FW_IE_PATCH_IMAGE:
Kalle Valoef548622011-10-01 09:43:09 +0300937 ath6kl_dbg(ATH6KL_DBG_BOOT, "found patch image ie (%zd B)\n",
Kalle Valo96f1fad2012-03-07 20:03:57 +0200938 ie_len);
Kalle Valo6bc36432011-09-27 14:31:11 +0300939
Kalle Valo50d41232011-09-07 10:55:17 +0300940 ar->fw_patch = kmemdup(data, ie_len, GFP_KERNEL);
941
942 if (ar->fw_patch == NULL) {
943 ret = -ENOMEM;
944 goto out;
945 }
946
947 ar->fw_patch_len = ie_len;
948 break;
Kalle Valo8a137482011-09-07 10:55:17 +0300949 case ATH6KL_FW_IE_RESERVED_RAM_SIZE:
950 val = (__le32 *) data;
951 ar->hw.reserved_ram_size = le32_to_cpup(val);
Kalle Valo6bc36432011-09-27 14:31:11 +0300952
953 ath6kl_dbg(ATH6KL_DBG_BOOT,
954 "found reserved ram size ie 0x%d\n",
955 ar->hw.reserved_ram_size);
Kalle Valo8a137482011-09-07 10:55:17 +0300956 break;
Kalle Valo97e04962011-09-12 13:47:34 +0300957 case ATH6KL_FW_IE_CAPABILITIES:
Kalle Valo277d90f2011-12-13 14:51:58 +0200958 if (ie_len < DIV_ROUND_UP(ATH6KL_FW_CAPABILITY_MAX, 8))
959 break;
960
Kalle Valo6bc36432011-09-27 14:31:11 +0300961 ath6kl_dbg(ATH6KL_DBG_BOOT,
Kalle Valoef548622011-10-01 09:43:09 +0300962 "found firmware capabilities ie (%zd B)\n",
Kalle Valo6bc36432011-09-27 14:31:11 +0300963 ie_len);
964
Kalle Valo97e04962011-09-12 13:47:34 +0300965 for (i = 0; i < ATH6KL_FW_CAPABILITY_MAX; i++) {
Kalle Valo277d90f2011-12-13 14:51:58 +0200966 index = i / 8;
Kalle Valo97e04962011-09-12 13:47:34 +0300967 bit = i % 8;
968
969 if (data[index] & (1 << bit))
970 __set_bit(i, ar->fw_capabilities);
971 }
Kalle Valo6bc36432011-09-27 14:31:11 +0300972
973 ath6kl_dbg_dump(ATH6KL_DBG_BOOT, "capabilities", "",
974 ar->fw_capabilities,
975 sizeof(ar->fw_capabilities));
Kalle Valo97e04962011-09-12 13:47:34 +0300976 break;
Kalle Valo1b4304d2011-09-27 11:05:26 +0300977 case ATH6KL_FW_IE_PATCH_ADDR:
978 if (ie_len != sizeof(*val))
979 break;
980
981 val = (__le32 *) data;
982 ar->hw.dataset_patch_addr = le32_to_cpup(val);
Kalle Valo6bc36432011-09-27 14:31:11 +0300983
984 ath6kl_dbg(ATH6KL_DBG_BOOT,
Kalle Valo03ef0252011-11-14 19:30:47 +0200985 "found patch address ie 0x%x\n",
Kalle Valo6bc36432011-09-27 14:31:11 +0300986 ar->hw.dataset_patch_addr);
Kalle Valo1b4304d2011-09-27 11:05:26 +0300987 break;
Kalle Valo03ef0252011-11-14 19:30:47 +0200988 case ATH6KL_FW_IE_BOARD_ADDR:
989 if (ie_len != sizeof(*val))
990 break;
991
992 val = (__le32 *) data;
993 ar->hw.board_addr = le32_to_cpup(val);
994
995 ath6kl_dbg(ATH6KL_DBG_BOOT,
996 "found board address ie 0x%x\n",
997 ar->hw.board_addr);
998 break;
Kalle Valo368b1b02011-11-14 19:31:38 +0200999 case ATH6KL_FW_IE_VIF_MAX:
1000 if (ie_len != sizeof(*val))
1001 break;
1002
1003 val = (__le32 *) data;
1004 ar->vif_max = min_t(unsigned int, le32_to_cpup(val),
1005 ATH6KL_VIF_MAX);
1006
Vasanthakumar Thiagarajanf1433792011-11-18 10:05:27 +05301007 if (ar->vif_max > 1 && !ar->p2p)
1008 ar->max_norm_iface = 2;
1009
Kalle Valo368b1b02011-11-14 19:31:38 +02001010 ath6kl_dbg(ATH6KL_DBG_BOOT,
1011 "found vif max ie %d\n", ar->vif_max);
1012 break;
Kalle Valo50d41232011-09-07 10:55:17 +03001013 default:
Kalle Valo6bc36432011-09-27 14:31:11 +03001014 ath6kl_dbg(ATH6KL_DBG_BOOT, "Unknown fw ie: %u\n",
Kalle Valo50d41232011-09-07 10:55:17 +03001015 le32_to_cpup(&hdr->id));
1016 break;
1017 }
1018
1019 len -= ie_len;
1020 data += ie_len;
1021 };
1022
1023 ret = 0;
1024out:
1025 release_firmware(fw);
1026
1027 return ret;
1028}
1029
Kalle Valo45eaa782012-01-17 20:09:05 +02001030int ath6kl_init_fetch_firmwares(struct ath6kl *ar)
Kalle Valo50d41232011-09-07 10:55:17 +03001031{
1032 int ret;
1033
1034 ret = ath6kl_fetch_board_file(ar);
1035 if (ret)
1036 return ret;
1037
Kalle Valo5f1127f2012-01-24 13:50:16 +02001038 ret = ath6kl_fetch_testmode_file(ar);
1039 if (ret)
1040 return ret;
1041
Kalle Valo65a8b4c2011-12-16 20:53:41 +02001042 ret = ath6kl_fetch_fw_apin(ar, ATH6KL_FW_API3_FILE);
Kalle Valo6bc36432011-09-27 14:31:11 +03001043 if (ret == 0) {
Kalle Valo65a8b4c2011-12-16 20:53:41 +02001044 ar->fw_api = 3;
1045 goto out;
1046 }
1047
1048 ret = ath6kl_fetch_fw_apin(ar, ATH6KL_FW_API2_FILE);
1049 if (ret == 0) {
1050 ar->fw_api = 2;
1051 goto out;
Kalle Valo6bc36432011-09-27 14:31:11 +03001052 }
Kalle Valo50d41232011-09-07 10:55:17 +03001053
1054 ret = ath6kl_fetch_fw_api1(ar);
1055 if (ret)
1056 return ret;
1057
Kalle Valo65a8b4c2011-12-16 20:53:41 +02001058 ar->fw_api = 1;
1059
1060out:
1061 ath6kl_dbg(ATH6KL_DBG_BOOT, "using fw api %d\n", ar->fw_api);
Kalle Valo6bc36432011-09-27 14:31:11 +03001062
Kalle Valo50d41232011-09-07 10:55:17 +03001063 return 0;
1064}
1065
Kalle Valobdcd8172011-07-18 00:22:30 +03001066static int ath6kl_upload_board_file(struct ath6kl *ar)
1067{
1068 u32 board_address, board_ext_address, param;
Kevin Fang31024d92011-07-11 17:14:13 +08001069 u32 board_data_size, board_ext_data_size;
Kalle Valobdcd8172011-07-18 00:22:30 +03001070 int ret;
1071
Kalle Valo772c31e2011-09-07 10:55:16 +03001072 if (WARN_ON(ar->fw_board == NULL))
1073 return -ENOENT;
Kalle Valobdcd8172011-07-18 00:22:30 +03001074
Kevin Fang31024d92011-07-11 17:14:13 +08001075 /*
1076 * Determine where in Target RAM to write Board Data.
1077 * For AR6004, host determine Target RAM address for
1078 * writing board data.
1079 */
Kalle Valo0d4d72b2011-11-14 19:30:39 +02001080 if (ar->hw.board_addr != 0) {
Kalle Valo24fc32b2012-03-07 20:03:58 +02001081 ath6kl_bmi_write_hi32(ar, hi_board_data,
1082 ar->hw.board_addr);
Kevin Fang31024d92011-07-11 17:14:13 +08001083 } else {
Kalle Valo80fb2682012-03-07 20:03:59 +02001084 ath6kl_bmi_read_hi32(ar, hi_board_data, &board_address);
Kevin Fang31024d92011-07-11 17:14:13 +08001085 }
1086
Kalle Valobdcd8172011-07-18 00:22:30 +03001087 /* determine where in target ram to write extended board data */
Kalle Valo80fb2682012-03-07 20:03:59 +02001088 ath6kl_bmi_read_hi32(ar, hi_board_ext_data, &board_ext_address);
Kalle Valobdcd8172011-07-18 00:22:30 +03001089
Kalle Valo50e27402011-11-11 12:18:06 +02001090 if (ar->target_type == TARGET_TYPE_AR6003 &&
1091 board_ext_address == 0) {
Kalle Valobdcd8172011-07-18 00:22:30 +03001092 ath6kl_err("Failed to get board file target address.\n");
1093 return -EINVAL;
1094 }
1095
Kevin Fang31024d92011-07-11 17:14:13 +08001096 switch (ar->target_type) {
1097 case TARGET_TYPE_AR6003:
1098 board_data_size = AR6003_BOARD_DATA_SZ;
1099 board_ext_data_size = AR6003_BOARD_EXT_DATA_SZ;
Prasanna Kumarfb1ac2e2012-02-07 14:58:54 -08001100 if (ar->fw_board_len > (board_data_size + board_ext_data_size))
1101 board_ext_data_size = AR6003_BOARD_EXT_DATA_SZ_V2;
Kevin Fang31024d92011-07-11 17:14:13 +08001102 break;
1103 case TARGET_TYPE_AR6004:
1104 board_data_size = AR6004_BOARD_DATA_SZ;
1105 board_ext_data_size = AR6004_BOARD_EXT_DATA_SZ;
1106 break;
1107 default:
1108 WARN_ON(1);
1109 return -EINVAL;
1110 break;
1111 }
1112
Kalle Valo50e27402011-11-11 12:18:06 +02001113 if (board_ext_address &&
1114 ar->fw_board_len == (board_data_size + board_ext_data_size)) {
Kevin Fang31024d92011-07-11 17:14:13 +08001115
Kalle Valobdcd8172011-07-18 00:22:30 +03001116 /* write extended board data */
Kalle Valo6bc36432011-09-27 14:31:11 +03001117 ath6kl_dbg(ATH6KL_DBG_BOOT,
1118 "writing extended board data to 0x%x (%d B)\n",
1119 board_ext_address, board_ext_data_size);
1120
Kalle Valobdcd8172011-07-18 00:22:30 +03001121 ret = ath6kl_bmi_write(ar, board_ext_address,
Kevin Fang31024d92011-07-11 17:14:13 +08001122 ar->fw_board + board_data_size,
1123 board_ext_data_size);
Kalle Valobdcd8172011-07-18 00:22:30 +03001124 if (ret) {
1125 ath6kl_err("Failed to write extended board data: %d\n",
1126 ret);
1127 return ret;
1128 }
1129
1130 /* record that extended board data is initialized */
Kevin Fang31024d92011-07-11 17:14:13 +08001131 param = (board_ext_data_size << 16) | 1;
1132
Kalle Valo24fc32b2012-03-07 20:03:58 +02001133 ath6kl_bmi_write_hi32(ar, hi_board_ext_data_config, param);
Kalle Valobdcd8172011-07-18 00:22:30 +03001134 }
1135
Kevin Fang31024d92011-07-11 17:14:13 +08001136 if (ar->fw_board_len < board_data_size) {
Kalle Valobdcd8172011-07-18 00:22:30 +03001137 ath6kl_err("Too small board file: %zu\n", ar->fw_board_len);
1138 ret = -EINVAL;
1139 return ret;
1140 }
1141
Kalle Valo6bc36432011-09-27 14:31:11 +03001142 ath6kl_dbg(ATH6KL_DBG_BOOT, "writing board file to 0x%x (%d B)\n",
1143 board_address, board_data_size);
1144
Kalle Valobdcd8172011-07-18 00:22:30 +03001145 ret = ath6kl_bmi_write(ar, board_address, ar->fw_board,
Kevin Fang31024d92011-07-11 17:14:13 +08001146 board_data_size);
Kalle Valobdcd8172011-07-18 00:22:30 +03001147
1148 if (ret) {
1149 ath6kl_err("Board file bmi write failed: %d\n", ret);
1150 return ret;
1151 }
1152
1153 /* record the fact that Board Data IS initialized */
Kalle Valo24fc32b2012-03-07 20:03:58 +02001154 ath6kl_bmi_write_hi32(ar, hi_board_data_initialized, 1);
Kalle Valobdcd8172011-07-18 00:22:30 +03001155
1156 return ret;
1157}
1158
1159static int ath6kl_upload_otp(struct ath6kl *ar)
1160{
Kalle Valobdcd8172011-07-18 00:22:30 +03001161 u32 address, param;
Kalle Valobef26a72011-10-12 09:58:28 +03001162 bool from_hw = false;
Kalle Valobdcd8172011-07-18 00:22:30 +03001163 int ret;
1164
Kalle Valo50e27402011-11-11 12:18:06 +02001165 if (ar->fw_otp == NULL)
1166 return 0;
Kalle Valobdcd8172011-07-18 00:22:30 +03001167
Kalle Valoa01ac412011-09-07 10:55:17 +03001168 address = ar->hw.app_load_addr;
Kalle Valobdcd8172011-07-18 00:22:30 +03001169
Kalle Valoef548622011-10-01 09:43:09 +03001170 ath6kl_dbg(ATH6KL_DBG_BOOT, "writing otp to 0x%x (%zd B)\n", address,
Kalle Valo6bc36432011-09-27 14:31:11 +03001171 ar->fw_otp_len);
1172
Kalle Valobdcd8172011-07-18 00:22:30 +03001173 ret = ath6kl_bmi_fast_download(ar, address, ar->fw_otp,
1174 ar->fw_otp_len);
1175 if (ret) {
1176 ath6kl_err("Failed to upload OTP file: %d\n", ret);
1177 return ret;
1178 }
1179
Kalle Valo639d0b82011-09-12 12:48:09 +03001180 /* read firmware start address */
Kalle Valo80fb2682012-03-07 20:03:59 +02001181 ret = ath6kl_bmi_read_hi32(ar, hi_app_start, &address);
Kalle Valo639d0b82011-09-12 12:48:09 +03001182
1183 if (ret) {
1184 ath6kl_err("Failed to read hi_app_start: %d\n", ret);
1185 return ret;
1186 }
1187
Kalle Valobef26a72011-10-12 09:58:28 +03001188 if (ar->hw.app_start_override_addr == 0) {
1189 ar->hw.app_start_override_addr = address;
1190 from_hw = true;
1191 }
Kalle Valo639d0b82011-09-12 12:48:09 +03001192
Kalle Valobef26a72011-10-12 09:58:28 +03001193 ath6kl_dbg(ATH6KL_DBG_BOOT, "app_start_override_addr%s 0x%x\n",
1194 from_hw ? " (from hw)" : "",
Kalle Valo6bc36432011-09-27 14:31:11 +03001195 ar->hw.app_start_override_addr);
1196
Kalle Valobdcd8172011-07-18 00:22:30 +03001197 /* execute the OTP code */
Kalle Valobef26a72011-10-12 09:58:28 +03001198 ath6kl_dbg(ATH6KL_DBG_BOOT, "executing OTP at 0x%x\n",
1199 ar->hw.app_start_override_addr);
Kalle Valobdcd8172011-07-18 00:22:30 +03001200 param = 0;
Kalle Valobef26a72011-10-12 09:58:28 +03001201 ath6kl_bmi_execute(ar, ar->hw.app_start_override_addr, &param);
Kalle Valobdcd8172011-07-18 00:22:30 +03001202
1203 return ret;
1204}
1205
1206static int ath6kl_upload_firmware(struct ath6kl *ar)
1207{
Kalle Valobdcd8172011-07-18 00:22:30 +03001208 u32 address;
1209 int ret;
1210
Kalle Valo772c31e2011-09-07 10:55:16 +03001211 if (WARN_ON(ar->fw == NULL))
Kalle Valo50e27402011-11-11 12:18:06 +02001212 return 0;
Kalle Valobdcd8172011-07-18 00:22:30 +03001213
Kalle Valoa01ac412011-09-07 10:55:17 +03001214 address = ar->hw.app_load_addr;
Kalle Valobdcd8172011-07-18 00:22:30 +03001215
Kalle Valoef548622011-10-01 09:43:09 +03001216 ath6kl_dbg(ATH6KL_DBG_BOOT, "writing firmware to 0x%x (%zd B)\n",
Kalle Valo6bc36432011-09-27 14:31:11 +03001217 address, ar->fw_len);
1218
Kalle Valobdcd8172011-07-18 00:22:30 +03001219 ret = ath6kl_bmi_fast_download(ar, address, ar->fw, ar->fw_len);
1220
1221 if (ret) {
1222 ath6kl_err("Failed to write firmware: %d\n", ret);
1223 return ret;
1224 }
1225
Kevin Fang31024d92011-07-11 17:14:13 +08001226 /*
1227 * Set starting address for firmware
1228 * Don't need to setup app_start override addr on AR6004
1229 */
1230 if (ar->target_type != TARGET_TYPE_AR6004) {
Kalle Valoa01ac412011-09-07 10:55:17 +03001231 address = ar->hw.app_start_override_addr;
Kevin Fang31024d92011-07-11 17:14:13 +08001232 ath6kl_bmi_set_app_start(ar, address);
1233 }
Kalle Valobdcd8172011-07-18 00:22:30 +03001234 return ret;
1235}
1236
1237static int ath6kl_upload_patch(struct ath6kl *ar)
1238{
Kalle Valo24fc32b2012-03-07 20:03:58 +02001239 u32 address;
Kalle Valobdcd8172011-07-18 00:22:30 +03001240 int ret;
1241
Kalle Valo50e27402011-11-11 12:18:06 +02001242 if (ar->fw_patch == NULL)
1243 return 0;
Kalle Valobdcd8172011-07-18 00:22:30 +03001244
Kalle Valoa01ac412011-09-07 10:55:17 +03001245 address = ar->hw.dataset_patch_addr;
Kalle Valobdcd8172011-07-18 00:22:30 +03001246
Kalle Valoef548622011-10-01 09:43:09 +03001247 ath6kl_dbg(ATH6KL_DBG_BOOT, "writing patch to 0x%x (%zd B)\n",
Kalle Valo6bc36432011-09-27 14:31:11 +03001248 address, ar->fw_patch_len);
1249
Kalle Valobdcd8172011-07-18 00:22:30 +03001250 ret = ath6kl_bmi_write(ar, address, ar->fw_patch, ar->fw_patch_len);
1251 if (ret) {
1252 ath6kl_err("Failed to write patch file: %d\n", ret);
1253 return ret;
1254 }
1255
Kalle Valo24fc32b2012-03-07 20:03:58 +02001256 ath6kl_bmi_write_hi32(ar, hi_dset_list_head, address);
Kalle Valobdcd8172011-07-18 00:22:30 +03001257
1258 return 0;
1259}
1260
Alex Yangcd23c1c2012-01-17 15:32:29 +02001261static int ath6kl_upload_testscript(struct ath6kl *ar)
1262{
Kalle Valo24fc32b2012-03-07 20:03:58 +02001263 u32 address;
Alex Yangcd23c1c2012-01-17 15:32:29 +02001264 int ret;
1265
Kalle Valo5f1127f2012-01-24 13:50:16 +02001266 if (ar->testmode != 2)
Alex Yangcd23c1c2012-01-17 15:32:29 +02001267 return 0;
1268
1269 if (ar->fw_testscript == NULL)
1270 return 0;
1271
1272 address = ar->hw.testscript_addr;
1273
1274 ath6kl_dbg(ATH6KL_DBG_BOOT, "writing testscript to 0x%x (%zd B)\n",
Kalle Valo96f1fad2012-03-07 20:03:57 +02001275 address, ar->fw_testscript_len);
Alex Yangcd23c1c2012-01-17 15:32:29 +02001276
1277 ret = ath6kl_bmi_write(ar, address, ar->fw_testscript,
1278 ar->fw_testscript_len);
1279 if (ret) {
1280 ath6kl_err("Failed to write testscript file: %d\n", ret);
1281 return ret;
1282 }
1283
Kalle Valo24fc32b2012-03-07 20:03:58 +02001284 ath6kl_bmi_write_hi32(ar, hi_ota_testscript, address);
1285 ath6kl_bmi_write_hi32(ar, hi_end_ram_reserve_sz, 4096);
1286 ath6kl_bmi_write_hi32(ar, hi_test_apps_related, 1);
Alex Yangcd23c1c2012-01-17 15:32:29 +02001287
1288 return 0;
1289}
1290
Kalle Valobdcd8172011-07-18 00:22:30 +03001291static int ath6kl_init_upload(struct ath6kl *ar)
1292{
1293 u32 param, options, sleep, address;
1294 int status = 0;
1295
Kevin Fang31024d92011-07-11 17:14:13 +08001296 if (ar->target_type != TARGET_TYPE_AR6003 &&
Kalle Valo96f1fad2012-03-07 20:03:57 +02001297 ar->target_type != TARGET_TYPE_AR6004)
Kalle Valobdcd8172011-07-18 00:22:30 +03001298 return -EINVAL;
1299
1300 /* temporarily disable system sleep */
1301 address = MBOX_BASE_ADDRESS + LOCAL_SCRATCH_ADDRESS;
1302 status = ath6kl_bmi_reg_read(ar, address, &param);
1303 if (status)
1304 return status;
1305
1306 options = param;
1307
1308 param |= ATH6KL_OPTION_SLEEP_DISABLE;
1309 status = ath6kl_bmi_reg_write(ar, address, param);
1310 if (status)
1311 return status;
1312
1313 address = RTC_BASE_ADDRESS + SYSTEM_SLEEP_ADDRESS;
1314 status = ath6kl_bmi_reg_read(ar, address, &param);
1315 if (status)
1316 return status;
1317
1318 sleep = param;
1319
1320 param |= SM(SYSTEM_SLEEP_DISABLE, 1);
1321 status = ath6kl_bmi_reg_write(ar, address, param);
1322 if (status)
1323 return status;
1324
1325 ath6kl_dbg(ATH6KL_DBG_TRC, "old options: %d, old sleep: %d\n",
1326 options, sleep);
1327
1328 /* program analog PLL register */
Kevin Fang31024d92011-07-11 17:14:13 +08001329 /* no need to control 40/44MHz clock on AR6004 */
1330 if (ar->target_type != TARGET_TYPE_AR6004) {
1331 status = ath6kl_bmi_reg_write(ar, ATH6KL_ANALOG_PLL_REGISTER,
1332 0xF9104001);
Kalle Valobdcd8172011-07-18 00:22:30 +03001333
Kevin Fang31024d92011-07-11 17:14:13 +08001334 if (status)
1335 return status;
Kalle Valobdcd8172011-07-18 00:22:30 +03001336
Kevin Fang31024d92011-07-11 17:14:13 +08001337 /* Run at 80/88MHz by default */
1338 param = SM(CPU_CLOCK_STANDARD, 1);
1339
1340 address = RTC_BASE_ADDRESS + CPU_CLOCK_ADDRESS;
1341 status = ath6kl_bmi_reg_write(ar, address, param);
1342 if (status)
1343 return status;
1344 }
Kalle Valobdcd8172011-07-18 00:22:30 +03001345
1346 param = 0;
1347 address = RTC_BASE_ADDRESS + LPO_CAL_ADDRESS;
1348 param = SM(LPO_CAL_ENABLE, 1);
1349 status = ath6kl_bmi_reg_write(ar, address, param);
1350 if (status)
1351 return status;
1352
1353 /* WAR to avoid SDIO CRC err */
Raja Mani4480bb52012-02-22 12:03:51 +05301354 if (ar->version.target_ver == AR6003_HW_2_0_VERSION ||
1355 ar->version.target_ver == AR6003_HW_2_1_1_VERSION) {
Kalle Valobdcd8172011-07-18 00:22:30 +03001356 ath6kl_err("temporary war to avoid sdio crc error\n");
1357
1358 param = 0x20;
1359
1360 address = GPIO_BASE_ADDRESS + GPIO_PIN10_ADDRESS;
1361 status = ath6kl_bmi_reg_write(ar, address, param);
1362 if (status)
1363 return status;
1364
1365 address = GPIO_BASE_ADDRESS + GPIO_PIN11_ADDRESS;
1366 status = ath6kl_bmi_reg_write(ar, address, param);
1367 if (status)
1368 return status;
1369
1370 address = GPIO_BASE_ADDRESS + GPIO_PIN12_ADDRESS;
1371 status = ath6kl_bmi_reg_write(ar, address, param);
1372 if (status)
1373 return status;
1374
1375 address = GPIO_BASE_ADDRESS + GPIO_PIN13_ADDRESS;
1376 status = ath6kl_bmi_reg_write(ar, address, param);
1377 if (status)
1378 return status;
1379 }
1380
1381 /* write EEPROM data to Target RAM */
1382 status = ath6kl_upload_board_file(ar);
1383 if (status)
1384 return status;
1385
1386 /* transfer One time Programmable data */
1387 status = ath6kl_upload_otp(ar);
1388 if (status)
1389 return status;
1390
1391 /* Download Target firmware */
1392 status = ath6kl_upload_firmware(ar);
1393 if (status)
1394 return status;
1395
1396 status = ath6kl_upload_patch(ar);
1397 if (status)
1398 return status;
1399
Alex Yangcd23c1c2012-01-17 15:32:29 +02001400 /* Download the test script */
1401 status = ath6kl_upload_testscript(ar);
1402 if (status)
1403 return status;
1404
Kalle Valobdcd8172011-07-18 00:22:30 +03001405 /* Restore system sleep */
1406 address = RTC_BASE_ADDRESS + SYSTEM_SLEEP_ADDRESS;
1407 status = ath6kl_bmi_reg_write(ar, address, sleep);
1408 if (status)
1409 return status;
1410
1411 address = MBOX_BASE_ADDRESS + LOCAL_SCRATCH_ADDRESS;
1412 param = options | 0x20;
1413 status = ath6kl_bmi_reg_write(ar, address, param);
1414 if (status)
1415 return status;
1416
Kalle Valobdcd8172011-07-18 00:22:30 +03001417 return status;
1418}
1419
Kalle Valo45eaa782012-01-17 20:09:05 +02001420int ath6kl_init_hw_params(struct ath6kl *ar)
Kalle Valoa01ac412011-09-07 10:55:17 +03001421{
Kalle Valo1b46dc042012-01-31 21:26:22 +02001422 const struct ath6kl_hw *uninitialized_var(hw);
Kalle Valo856f4b32011-11-14 19:30:29 +02001423 int i;
Kalle Valobef26a72011-10-12 09:58:28 +03001424
Kalle Valo856f4b32011-11-14 19:30:29 +02001425 for (i = 0; i < ARRAY_SIZE(hw_list); i++) {
1426 hw = &hw_list[i];
Kalle Valobef26a72011-10-12 09:58:28 +03001427
Kalle Valo856f4b32011-11-14 19:30:29 +02001428 if (hw->id == ar->version.target_ver)
1429 break;
1430 }
1431
1432 if (i == ARRAY_SIZE(hw_list)) {
Kalle Valoa01ac412011-09-07 10:55:17 +03001433 ath6kl_err("Unsupported hardware version: 0x%x\n",
1434 ar->version.target_ver);
1435 return -EINVAL;
1436 }
1437
Kalle Valo856f4b32011-11-14 19:30:29 +02001438 ar->hw = *hw;
1439
Kalle Valo6bc36432011-09-27 14:31:11 +03001440 ath6kl_dbg(ATH6KL_DBG_BOOT,
1441 "target_ver 0x%x target_type 0x%x dataset_patch 0x%x app_load_addr 0x%x\n",
1442 ar->version.target_ver, ar->target_type,
1443 ar->hw.dataset_patch_addr, ar->hw.app_load_addr);
1444 ath6kl_dbg(ATH6KL_DBG_BOOT,
1445 "app_start_override_addr 0x%x board_ext_data_addr 0x%x reserved_ram_size 0x%x",
1446 ar->hw.app_start_override_addr, ar->hw.board_ext_data_addr,
1447 ar->hw.reserved_ram_size);
Ryan Hsu39586bf2011-12-13 17:11:07 +08001448 ath6kl_dbg(ATH6KL_DBG_BOOT,
1449 "refclk_hz %d uarttx_pin %d",
1450 ar->hw.refclk_hz, ar->hw.uarttx_pin);
Kalle Valo6bc36432011-09-27 14:31:11 +03001451
Kalle Valoa01ac412011-09-07 10:55:17 +03001452 return 0;
1453}
1454
Kalle Valo293badf2011-11-14 19:30:54 +02001455static const char *ath6kl_init_get_hif_name(enum ath6kl_hif_type type)
1456{
1457 switch (type) {
1458 case ATH6KL_HIF_TYPE_SDIO:
1459 return "sdio";
1460 case ATH6KL_HIF_TYPE_USB:
1461 return "usb";
1462 }
1463
1464 return NULL;
1465}
1466
Kalle Valo5fe4dff2011-10-30 21:16:15 +02001467int ath6kl_init_hw_start(struct ath6kl *ar)
Kalle Valo20459ee2011-10-27 18:48:37 +03001468{
1469 long timeleft;
1470 int ret, i;
1471
Kalle Valo5fe4dff2011-10-30 21:16:15 +02001472 ath6kl_dbg(ATH6KL_DBG_BOOT, "hw start\n");
1473
Kalle Valo20459ee2011-10-27 18:48:37 +03001474 ret = ath6kl_hif_power_on(ar);
1475 if (ret)
1476 return ret;
1477
1478 ret = ath6kl_configure_target(ar);
1479 if (ret)
1480 goto err_power_off;
1481
1482 ret = ath6kl_init_upload(ar);
1483 if (ret)
1484 goto err_power_off;
1485
1486 /* Do we need to finish the BMI phase */
1487 /* FIXME: return error from ath6kl_bmi_done() */
1488 if (ath6kl_bmi_done(ar)) {
1489 ret = -EIO;
1490 goto err_power_off;
1491 }
1492
1493 /*
1494 * The reason we have to wait for the target here is that the
1495 * driver layer has to init BMI in order to set the host block
1496 * size.
1497 */
1498 if (ath6kl_htc_wait_target(ar->htc_target)) {
1499 ret = -EIO;
1500 goto err_power_off;
1501 }
1502
1503 if (ath6kl_init_service_ep(ar)) {
1504 ret = -EIO;
1505 goto err_cleanup_scatter;
1506 }
1507
1508 /* setup credit distribution */
1509 ath6kl_credit_setup(ar->htc_target, &ar->credit_state_info);
1510
1511 /* start HTC */
1512 ret = ath6kl_htc_start(ar->htc_target);
1513 if (ret) {
1514 /* FIXME: call this */
1515 ath6kl_cookie_cleanup(ar);
1516 goto err_cleanup_scatter;
1517 }
1518
1519 /* Wait for Wmi event to be ready */
1520 timeleft = wait_event_interruptible_timeout(ar->event_wq,
1521 test_bit(WMI_READY,
1522 &ar->flag),
1523 WMI_TIMEOUT);
1524
1525 ath6kl_dbg(ATH6KL_DBG_BOOT, "firmware booted\n");
1526
Kalle Valo293badf2011-11-14 19:30:54 +02001527
1528 if (test_and_clear_bit(FIRST_BOOT, &ar->flag)) {
Kalle Valo65a8b4c2011-12-16 20:53:41 +02001529 ath6kl_info("%s %s fw %s api %d%s\n",
Kalle Valo293badf2011-11-14 19:30:54 +02001530 ar->hw.name,
1531 ath6kl_init_get_hif_name(ar->hif_type),
1532 ar->wiphy->fw_version,
Kalle Valo65a8b4c2011-12-16 20:53:41 +02001533 ar->fw_api,
Kalle Valo293badf2011-11-14 19:30:54 +02001534 test_bit(TESTMODE, &ar->flag) ? " testmode" : "");
1535 }
1536
Kalle Valo20459ee2011-10-27 18:48:37 +03001537 if (ar->version.abi_ver != ATH6KL_ABI_VERSION) {
1538 ath6kl_err("abi version mismatch: host(0x%x), target(0x%x)\n",
1539 ATH6KL_ABI_VERSION, ar->version.abi_ver);
1540 ret = -EIO;
1541 goto err_htc_stop;
1542 }
1543
1544 if (!timeleft || signal_pending(current)) {
1545 ath6kl_err("wmi is not ready or wait was interrupted\n");
1546 ret = -EIO;
1547 goto err_htc_stop;
1548 }
1549
1550 ath6kl_dbg(ATH6KL_DBG_TRC, "%s: wmi is ready\n", __func__);
1551
1552 /* communicate the wmi protocol verision to the target */
1553 /* FIXME: return error */
1554 if ((ath6kl_set_host_app_area(ar)) != 0)
1555 ath6kl_err("unable to set the host app area\n");
1556
Kalle Valo71f96ee2011-11-14 19:31:30 +02001557 for (i = 0; i < ar->vif_max; i++) {
Kalle Valo20459ee2011-10-27 18:48:37 +03001558 ret = ath6kl_target_config_wlan_params(ar, i);
1559 if (ret)
1560 goto err_htc_stop;
1561 }
1562
Kalle Valo76a9fbe2011-11-01 08:44:28 +02001563 ar->state = ATH6KL_STATE_ON;
1564
Kalle Valo20459ee2011-10-27 18:48:37 +03001565 return 0;
1566
1567err_htc_stop:
1568 ath6kl_htc_stop(ar->htc_target);
1569err_cleanup_scatter:
1570 ath6kl_hif_cleanup_scatter(ar);
1571err_power_off:
1572 ath6kl_hif_power_off(ar);
1573
1574 return ret;
1575}
1576
Kalle Valo5fe4dff2011-10-30 21:16:15 +02001577int ath6kl_init_hw_stop(struct ath6kl *ar)
1578{
1579 int ret;
1580
1581 ath6kl_dbg(ATH6KL_DBG_BOOT, "hw stop\n");
1582
1583 ath6kl_htc_stop(ar->htc_target);
1584
1585 ath6kl_hif_stop(ar);
1586
1587 ath6kl_bmi_reset(ar);
1588
1589 ret = ath6kl_hif_power_off(ar);
1590 if (ret)
1591 ath6kl_warn("failed to power off hif: %d\n", ret);
1592
Kalle Valo76a9fbe2011-11-01 08:44:28 +02001593 ar->state = ATH6KL_STATE_OFF;
1594
Kalle Valo5fe4dff2011-10-30 21:16:15 +02001595 return 0;
1596}
1597
Kalle Valoc25889e2012-01-17 20:08:27 +02001598/* FIXME: move this to cfg80211.c and rename to ath6kl_cfg80211_vif_stop() */
Vasanthakumar Thiagarajan55055972011-10-25 19:34:23 +05301599void ath6kl_cleanup_vif(struct ath6kl_vif *vif, bool wmi_ready)
Vasanthakumar Thiagarajan6db8fa52011-10-25 19:34:16 +05301600{
1601 static u8 bcast_mac[] = {0xff, 0xff, 0xff, 0xff, 0xff, 0xff};
1602 bool discon_issued;
1603
1604 netif_stop_queue(vif->ndev);
1605
1606 clear_bit(WLAN_ENABLED, &vif->flags);
1607
1608 if (wmi_ready) {
1609 discon_issued = test_bit(CONNECTED, &vif->flags) ||
1610 test_bit(CONNECT_PEND, &vif->flags);
1611 ath6kl_disconnect(vif);
1612 del_timer(&vif->disconnect_timer);
1613
1614 if (discon_issued)
1615 ath6kl_disconnect_event(vif, DISCONNECT_CMD,
1616 (vif->nw_type & AP_NETWORK) ?
1617 bcast_mac : vif->bssid,
1618 0, NULL, 0);
1619 }
1620
1621 if (vif->scan_req) {
1622 cfg80211_scan_done(vif->scan_req, true);
1623 vif->scan_req = NULL;
1624 }
Vasanthakumar Thiagarajan6db8fa52011-10-25 19:34:16 +05301625}
1626
Kalle Valobdcd8172011-07-18 00:22:30 +03001627void ath6kl_stop_txrx(struct ath6kl *ar)
1628{
Vasanthakumar Thiagarajan990bd912011-10-25 19:34:20 +05301629 struct ath6kl_vif *vif, *tmp_vif;
Vasanthakumar Thiagarajan1d2a4452012-01-21 15:22:53 +05301630 int i;
Kalle Valobdcd8172011-07-18 00:22:30 +03001631
1632 set_bit(DESTROY_IN_PROGRESS, &ar->flag);
1633
1634 if (down_interruptible(&ar->sem)) {
1635 ath6kl_err("down_interruptible failed\n");
1636 return;
1637 }
1638
Vasanthakumar Thiagarajan1d2a4452012-01-21 15:22:53 +05301639 for (i = 0; i < AP_MAX_NUM_STA; i++)
1640 aggr_reset_state(ar->sta_list[i].aggr_conn);
1641
Vasanthakumar Thiagarajan11f6e402011-11-01 16:38:50 +05301642 spin_lock_bh(&ar->list_lock);
Vasanthakumar Thiagarajan990bd912011-10-25 19:34:20 +05301643 list_for_each_entry_safe(vif, tmp_vif, &ar->vif_list, list) {
1644 list_del(&vif->list);
Vasanthakumar Thiagarajan11f6e402011-11-01 16:38:50 +05301645 spin_unlock_bh(&ar->list_lock);
Vasanthakumar Thiagarajan990bd912011-10-25 19:34:20 +05301646 ath6kl_cleanup_vif(vif, test_bit(WMI_READY, &ar->flag));
Vasanthakumar Thiagarajan27929722011-10-25 19:34:21 +05301647 rtnl_lock();
Kalle Valoc25889e2012-01-17 20:08:27 +02001648 ath6kl_cfg80211_vif_cleanup(vif);
Vasanthakumar Thiagarajan27929722011-10-25 19:34:21 +05301649 rtnl_unlock();
Vasanthakumar Thiagarajan11f6e402011-11-01 16:38:50 +05301650 spin_lock_bh(&ar->list_lock);
Vasanthakumar Thiagarajan990bd912011-10-25 19:34:20 +05301651 }
Vasanthakumar Thiagarajan11f6e402011-11-01 16:38:50 +05301652 spin_unlock_bh(&ar->list_lock);
Kalle Valobdcd8172011-07-18 00:22:30 +03001653
Vasanthakumar Thiagarajan6db8fa52011-10-25 19:34:16 +05301654 clear_bit(WMI_READY, &ar->flag);
Kalle Valobdcd8172011-07-18 00:22:30 +03001655
Vasanthakumar Thiagarajan6db8fa52011-10-25 19:34:16 +05301656 /*
1657 * After wmi_shudown all WMI events will be dropped. We
1658 * need to cleanup the buffers allocated in AP mode and
1659 * give disconnect notification to stack, which usually
1660 * happens in the disconnect_event. Simulate the disconnect
1661 * event by calling the function directly. Sometimes
1662 * disconnect_event will be received when the debug logs
1663 * are collected.
1664 */
1665 ath6kl_wmi_shutdown(ar->wmi);
Kalle Valobdcd8172011-07-18 00:22:30 +03001666
Vasanthakumar Thiagarajan6db8fa52011-10-25 19:34:16 +05301667 clear_bit(WMI_ENABLED, &ar->flag);
1668 if (ar->htc_target) {
1669 ath6kl_dbg(ATH6KL_DBG_TRC, "%s: shut down htc\n", __func__);
1670 ath6kl_htc_stop(ar->htc_target);
Kalle Valobdcd8172011-07-18 00:22:30 +03001671 }
1672
Vasanthakumar Thiagarajan6db8fa52011-10-25 19:34:16 +05301673 /*
1674 * Try to reset the device if we can. The driver may have been
1675 * configure NOT to reset the target during a debug session.
1676 */
1677 ath6kl_dbg(ATH6KL_DBG_TRC,
Kalle Valo96f1fad2012-03-07 20:03:57 +02001678 "attempting to reset target on instance destroy\n");
Vasanthakumar Thiagarajan6db8fa52011-10-25 19:34:16 +05301679 ath6kl_reset_device(ar, ar->target_type, true, true);
Kalle Valobdcd8172011-07-18 00:22:30 +03001680
Vasanthakumar Thiagarajan6db8fa52011-10-25 19:34:16 +05301681 clear_bit(WLAN_ENABLED, &ar->flag);
Vasanthakumar Thiagarajane8ad9a02012-02-14 20:32:59 +05301682
1683 up(&ar->sem);
Kalle Valobdcd8172011-07-18 00:22:30 +03001684}
Kalle Valod6a434d2012-01-17 20:09:36 +02001685EXPORT_SYMBOL(ath6kl_stop_txrx);