blob: da5900d30caa9a97b192768908f58637193f6af6 [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 Rothwellc6efe5782011-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 Valo856f4b312011-11-14 19:30:29 +020031static const struct ath6kl_hw hw_list[] = {
32 {
Kalle Valo0d0192ba2011-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 Valo856f4b312011-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 Valo856f4b312011-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 Valo856f4b312011-11-14 19:30:29 +020055 },
56 {
Kalle Valo0d0192ba2011-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 Valo856f4b312011-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,
78 .fw_default_board = AR6003_HW_2_1_1_DEFAULT_BOARD_DATA_FILE,
Kalle Valo856f4b312011-11-14 19:30:29 +020079 },
80 {
Kalle Valo0d0192ba2011-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 Valo856f4b312011-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 Valo856f4b312011-11-14 19:30:29 +020098 },
99 {
Kalle Valo0d0192ba2011-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 Valo856f4b312011-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 Valo856f4b312011-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{
381 int status = 0;
Jouni Malinen4dea08e2011-08-30 21:57:57 +0300382 int ret;
Kalle Valobdcd8172011-07-18 00:22:30 +0300383
384 /*
385 * Configure the device for rx dot11 header rules. "0,0" are the
386 * default values. Required if checksum offload is needed. Set
387 * RxMetaVersion to 2.
388 */
Vasanthakumar Thiagarajan0ce59442011-10-25 19:34:25 +0530389 if (ath6kl_wmi_set_rx_frame_format_cmd(ar->wmi, idx,
Kalle Valobdcd8172011-07-18 00:22:30 +0300390 ar->rx_meta_ver, 0, 0)) {
391 ath6kl_err("unable to set the rx frame format\n");
392 status = -EIO;
393 }
394
395 if (ar->conf_flags & ATH6KL_CONF_IGNORE_PS_FAIL_EVT_IN_SCAN)
Vasanthakumar Thiagarajan0ce59442011-10-25 19:34:25 +0530396 if ((ath6kl_wmi_pmparams_cmd(ar->wmi, idx, 0, 1, 0, 0, 1,
Kalle Valobdcd8172011-07-18 00:22:30 +0300397 IGNORE_POWER_SAVE_FAIL_EVENT_DURING_SCAN)) != 0) {
398 ath6kl_err("unable to set power save fail event policy\n");
399 status = -EIO;
400 }
401
402 if (!(ar->conf_flags & ATH6KL_CONF_IGNORE_ERP_BARKER))
Vasanthakumar Thiagarajan0ce59442011-10-25 19:34:25 +0530403 if ((ath6kl_wmi_set_lpreamble_cmd(ar->wmi, idx, 0,
Kalle Valobdcd8172011-07-18 00:22:30 +0300404 WMI_DONOT_IGNORE_BARKER_IN_ERP)) != 0) {
405 ath6kl_err("unable to set barker preamble policy\n");
406 status = -EIO;
407 }
408
Vasanthakumar Thiagarajan0ce59442011-10-25 19:34:25 +0530409 if (ath6kl_wmi_set_keepalive_cmd(ar->wmi, idx,
Kalle Valo96f1fad2012-03-07 20:03:57 +0200410 WLAN_CONFIG_KEEP_ALIVE_INTERVAL)) {
Kalle Valobdcd8172011-07-18 00:22:30 +0300411 ath6kl_err("unable to set keep alive interval\n");
412 status = -EIO;
413 }
414
Vasanthakumar Thiagarajan0ce59442011-10-25 19:34:25 +0530415 if (ath6kl_wmi_disctimeout_cmd(ar->wmi, idx,
Kalle Valo96f1fad2012-03-07 20:03:57 +0200416 WLAN_CONFIG_DISCONNECT_TIMEOUT)) {
Kalle Valobdcd8172011-07-18 00:22:30 +0300417 ath6kl_err("unable to set disconnect timeout\n");
418 status = -EIO;
419 }
420
421 if (!(ar->conf_flags & ATH6KL_CONF_ENABLE_TX_BURST))
Vasanthakumar Thiagarajan0ce59442011-10-25 19:34:25 +0530422 if (ath6kl_wmi_set_wmm_txop(ar->wmi, idx, WMI_TXOP_DISABLED)) {
Kalle Valobdcd8172011-07-18 00:22:30 +0300423 ath6kl_err("unable to set txop bursting\n");
424 status = -EIO;
425 }
426
Vasanthakumar Thiagarajanb64de352011-11-18 10:05:28 +0530427 if (ar->p2p && (ar->vif_max == 1 || idx)) {
Vasanthakumar Thiagarajan0ce59442011-10-25 19:34:25 +0530428 ret = ath6kl_wmi_info_req_cmd(ar->wmi, idx,
Jouni Malinen6bbc7c32011-09-05 17:38:47 +0300429 P2P_FLAG_CAPABILITIES_REQ |
430 P2P_FLAG_MACADDR_REQ |
431 P2P_FLAG_HMODEL_REQ);
432 if (ret) {
433 ath6kl_dbg(ATH6KL_DBG_TRC, "failed to request P2P "
434 "capabilities (%d) - assuming P2P not "
435 "supported\n", ret);
Rusty Russell3db1cd52011-12-19 13:56:45 +0000436 ar->p2p = false;
Jouni Malinen6bbc7c32011-09-05 17:38:47 +0300437 }
438 }
439
Vasanthakumar Thiagarajanb64de352011-11-18 10:05:28 +0530440 if (ar->p2p && (ar->vif_max == 1 || idx)) {
Jouni Malinen6bbc7c32011-09-05 17:38:47 +0300441 /* Enable Probe Request reporting for P2P */
Vasanthakumar Thiagarajan0ce59442011-10-25 19:34:25 +0530442 ret = ath6kl_wmi_probe_report_req_cmd(ar->wmi, idx, true);
Jouni Malinen6bbc7c32011-09-05 17:38:47 +0300443 if (ret) {
444 ath6kl_dbg(ATH6KL_DBG_TRC, "failed to enable Probe "
445 "Request reporting (%d)\n", ret);
446 }
Jouni Malinen4dea08e2011-08-30 21:57:57 +0300447 }
448
Kalle Valobdcd8172011-07-18 00:22:30 +0300449 return status;
450}
451
452int ath6kl_configure_target(struct ath6kl *ar)
453{
454 u32 param, ram_reserved_size;
Vasanthakumar Thiagarajan3226f68a2011-10-25 19:34:24 +0530455 u8 fw_iftype, fw_mode = 0, fw_submode = 0;
Ryan Hsu39586bf2011-12-13 17:11:07 +0800456 int i, status;
Kalle Valobdcd8172011-07-18 00:22:30 +0300457
Kalle Valof29af972012-01-17 20:08:56 +0200458 param = !!(ar->conf_flags & ATH6KL_CONF_UART_DEBUG);
Kalle Valo24fc32b2012-03-07 20:03:58 +0200459 if (ath6kl_bmi_write_hi32(ar, hi_serial_enable, param)) {
Vasanthakumar Thiagarajana10e2f22011-12-29 16:05:38 +0530460 ath6kl_err("bmi_write_memory for uart debug failed\n");
461 return -EIO;
462 }
463
Vasanthakumar Thiagarajan7b858322011-10-25 19:34:22 +0530464 /*
465 * Note: Even though the firmware interface type is
466 * chosen as BSS_STA for all three interfaces, can
467 * be configured to IBSS/AP as long as the fw submode
468 * remains normal mode (0 - AP, STA and IBSS). But
469 * due to an target assert in firmware only one interface is
470 * configured for now.
471 */
Vasanthakumar Thiagarajandd3751f2011-10-25 19:33:59 +0530472 fw_iftype = HI_OPTION_FW_MODE_BSS_STA;
Kalle Valobdcd8172011-07-18 00:22:30 +0300473
Kalle Valo71f96ee2011-11-14 19:31:30 +0200474 for (i = 0; i < ar->vif_max; i++)
Vasanthakumar Thiagarajan7b858322011-10-25 19:34:22 +0530475 fw_mode |= fw_iftype << (i * HI_OPTION_FW_MODE_BITS);
476
477 /*
Vasanthakumar Thiagarajan3226f68a2011-10-25 19:34:24 +0530478 * By default, submodes :
479 * vif[0] - AP/STA/IBSS
480 * vif[1] - "P2P dev"/"P2P GO"/"P2P Client"
481 * vif[2] - "P2P dev"/"P2P GO"/"P2P Client"
Vasanthakumar Thiagarajan7b858322011-10-25 19:34:22 +0530482 */
Vasanthakumar Thiagarajan3226f68a2011-10-25 19:34:24 +0530483
484 for (i = 0; i < ar->max_norm_iface; i++)
485 fw_submode |= HI_OPTION_FW_SUBMODE_NONE <<
486 (i * HI_OPTION_FW_SUBMODE_BITS);
487
Kalle Valo71f96ee2011-11-14 19:31:30 +0200488 for (i = ar->max_norm_iface; i < ar->vif_max; i++)
Vasanthakumar Thiagarajan3226f68a2011-10-25 19:34:24 +0530489 fw_submode |= HI_OPTION_FW_SUBMODE_P2PDEV <<
490 (i * HI_OPTION_FW_SUBMODE_BITS);
Vasanthakumar Thiagarajan7b858322011-10-25 19:34:22 +0530491
Vasanthakumar Thiagarajanb64de352011-11-18 10:05:28 +0530492 if (ar->p2p && ar->vif_max == 1)
Vasanthakumar Thiagarajan7b858322011-10-25 19:34:22 +0530493 fw_submode = HI_OPTION_FW_SUBMODE_P2PDEV;
Vasanthakumar Thiagarajan7b858322011-10-25 19:34:22 +0530494
Kalle Valo24fc32b2012-03-07 20:03:58 +0200495 if (ath6kl_bmi_write_hi32(ar, hi_app_host_interest,
496 HTC_PROTOCOL_VERSION) != 0) {
Kalle Valobdcd8172011-07-18 00:22:30 +0300497 ath6kl_err("bmi_write_memory for htc version failed\n");
498 return -EIO;
499 }
500
501 /* set the firmware mode to STA/IBSS/AP */
502 param = 0;
503
504 if (ath6kl_bmi_read(ar,
505 ath6kl_get_hi_item_addr(ar,
506 HI_ITEM(hi_option_flag)),
507 (u8 *)&param, 4) != 0) {
508 ath6kl_err("bmi_read_memory for setting fwmode failed\n");
509 return -EIO;
510 }
511
Kalle Valo71f96ee2011-11-14 19:31:30 +0200512 param |= (ar->vif_max << HI_OPTION_NUM_DEV_SHIFT);
Vasanthakumar Thiagarajan7b858322011-10-25 19:34:22 +0530513 param |= fw_mode << HI_OPTION_FW_MODE_SHIFT;
514 param |= fw_submode << HI_OPTION_FW_SUBMODE_SHIFT;
515
Kalle Valobdcd8172011-07-18 00:22:30 +0300516 param |= (0 << HI_OPTION_MAC_ADDR_METHOD_SHIFT);
517 param |= (0 << HI_OPTION_FW_BRIDGE_SHIFT);
518
Kalle Valo24fc32b2012-03-07 20:03:58 +0200519 if (ath6kl_bmi_write_hi32(ar, hi_option_flag, param) != 0) {
Kalle Valobdcd8172011-07-18 00:22:30 +0300520 ath6kl_err("bmi_write_memory for setting fwmode failed\n");
521 return -EIO;
522 }
523
524 ath6kl_dbg(ATH6KL_DBG_TRC, "firmware mode set\n");
525
526 /*
527 * Hardcode the address use for the extended board data
528 * Ideally this should be pre-allocate by the OS at boot time
529 * But since it is a new feature and board data is loaded
530 * at init time, we have to workaround this from host.
531 * It is difficult to patch the firmware boot code,
532 * but possible in theory.
533 */
534
Kalle Valo991b27e2011-09-07 10:55:17 +0300535 param = ar->hw.board_ext_data_addr;
536 ram_reserved_size = ar->hw.reserved_ram_size;
Kalle Valobdcd8172011-07-18 00:22:30 +0300537
Kalle Valo24fc32b2012-03-07 20:03:58 +0200538 if (ath6kl_bmi_write_hi32(ar, hi_board_ext_data, param) != 0) {
Kalle Valo991b27e2011-09-07 10:55:17 +0300539 ath6kl_err("bmi_write_memory for hi_board_ext_data failed\n");
540 return -EIO;
541 }
542
Kalle Valo24fc32b2012-03-07 20:03:58 +0200543 if (ath6kl_bmi_write_hi32(ar, hi_end_ram_reserve_sz,
544 ram_reserved_size) != 0) {
Kalle Valo991b27e2011-09-07 10:55:17 +0300545 ath6kl_err("bmi_write_memory for hi_end_ram_reserve_sz failed\n");
546 return -EIO;
Kalle Valobdcd8172011-07-18 00:22:30 +0300547 }
548
549 /* set the block size for the target */
550 if (ath6kl_set_htc_params(ar, MBOX_YIELD_LIMIT, 0))
551 /* use default number of control buffers */
552 return -EIO;
553
Ryan Hsu39586bf2011-12-13 17:11:07 +0800554 /* Configure GPIO AR600x UART */
Kalle Valo24fc32b2012-03-07 20:03:58 +0200555 status = ath6kl_bmi_write_hi32(ar, hi_dbg_uart_txpin,
556 ar->hw.uarttx_pin);
Ryan Hsu39586bf2011-12-13 17:11:07 +0800557 if (status)
558 return status;
559
560 /* Configure target refclk_hz */
Kalle Valo24fc32b2012-03-07 20:03:58 +0200561 status = ath6kl_bmi_write_hi32(ar, hi_refclk_hz, ar->hw.refclk_hz);
Ryan Hsu39586bf2011-12-13 17:11:07 +0800562 if (status)
563 return status;
564
Kalle Valobdcd8172011-07-18 00:22:30 +0300565 return 0;
566}
567
Kalle Valobdcd8172011-07-18 00:22:30 +0300568/* firmware upload */
Kalle Valobdcd8172011-07-18 00:22:30 +0300569static int ath6kl_get_fw(struct ath6kl *ar, const char *filename,
570 u8 **fw, size_t *fw_len)
571{
572 const struct firmware *fw_entry;
573 int ret;
574
575 ret = request_firmware(&fw_entry, filename, ar->dev);
576 if (ret)
577 return ret;
578
579 *fw_len = fw_entry->size;
580 *fw = kmemdup(fw_entry->data, fw_entry->size, GFP_KERNEL);
581
582 if (*fw == NULL)
583 ret = -ENOMEM;
584
585 release_firmware(fw_entry);
586
587 return ret;
588}
589
Sam Leffler92ecbff2011-09-07 10:55:16 +0300590#ifdef CONFIG_OF
Sam Leffler92ecbff2011-09-07 10:55:16 +0300591/*
592 * Check the device tree for a board-id and use it to construct
593 * the pathname to the firmware file. Used (for now) to find a
594 * fallback to the "bdata.bin" file--typically a symlink to the
595 * appropriate board-specific file.
596 */
597static bool check_device_tree(struct ath6kl *ar)
598{
599 static const char *board_id_prop = "atheros,board-id";
600 struct device_node *node;
601 char board_filename[64];
602 const char *board_id;
603 int ret;
604
605 for_each_compatible_node(node, NULL, "atheros,ath6kl") {
606 board_id = of_get_property(node, board_id_prop, NULL);
607 if (board_id == NULL) {
608 ath6kl_warn("No \"%s\" property on %s node.\n",
609 board_id_prop, node->name);
610 continue;
611 }
612 snprintf(board_filename, sizeof(board_filename),
Kalle Valoc0038972011-12-16 20:53:31 +0200613 "%s/bdata.%s.bin", ar->hw.fw.dir, board_id);
Sam Leffler92ecbff2011-09-07 10:55:16 +0300614
615 ret = ath6kl_get_fw(ar, board_filename, &ar->fw_board,
616 &ar->fw_board_len);
617 if (ret) {
618 ath6kl_err("Failed to get DT board file %s: %d\n",
619 board_filename, ret);
620 continue;
621 }
622 return true;
623 }
624 return false;
625}
626#else
627static bool check_device_tree(struct ath6kl *ar)
628{
629 return false;
630}
631#endif /* CONFIG_OF */
632
Kalle Valobdcd8172011-07-18 00:22:30 +0300633static int ath6kl_fetch_board_file(struct ath6kl *ar)
634{
635 const char *filename;
636 int ret;
637
Kalle Valo772c31e2011-09-07 10:55:16 +0300638 if (ar->fw_board != NULL)
639 return 0;
640
Kalle Valod1a94212011-11-14 19:31:23 +0200641 if (WARN_ON(ar->hw.fw_board == NULL))
642 return -EINVAL;
643
644 filename = ar->hw.fw_board;
Kalle Valobdcd8172011-07-18 00:22:30 +0300645
646 ret = ath6kl_get_fw(ar, filename, &ar->fw_board,
647 &ar->fw_board_len);
648 if (ret == 0) {
649 /* managed to get proper board file */
650 return 0;
651 }
652
Sam Leffler92ecbff2011-09-07 10:55:16 +0300653 if (check_device_tree(ar)) {
654 /* got board file from device tree */
655 return 0;
656 }
657
Kalle Valobdcd8172011-07-18 00:22:30 +0300658 /* there was no proper board file, try to use default instead */
659 ath6kl_warn("Failed to get board file %s (%d), trying to find default board file.\n",
660 filename, ret);
661
Kalle Valod1a94212011-11-14 19:31:23 +0200662 filename = ar->hw.fw_default_board;
Kalle Valobdcd8172011-07-18 00:22:30 +0300663
664 ret = ath6kl_get_fw(ar, filename, &ar->fw_board,
665 &ar->fw_board_len);
666 if (ret) {
667 ath6kl_err("Failed to get default board file %s: %d\n",
668 filename, ret);
669 return ret;
670 }
671
672 ath6kl_warn("WARNING! No proper board file was not found, instead using a default board file.\n");
673 ath6kl_warn("Most likely your hardware won't work as specified. Install correct board file!\n");
674
675 return 0;
676}
677
Kalle Valo772c31e2011-09-07 10:55:16 +0300678static int ath6kl_fetch_otp_file(struct ath6kl *ar)
679{
Kalle Valoc0038972011-12-16 20:53:31 +0200680 char filename[100];
Kalle Valo772c31e2011-09-07 10:55:16 +0300681 int ret;
682
683 if (ar->fw_otp != NULL)
684 return 0;
685
Kalle Valoc0038972011-12-16 20:53:31 +0200686 if (ar->hw.fw.otp == NULL) {
Kalle Valod1a94212011-11-14 19:31:23 +0200687 ath6kl_dbg(ATH6KL_DBG_BOOT,
688 "no OTP file configured for this hw\n");
Kalle Valo772c31e2011-09-07 10:55:16 +0300689 return 0;
Kalle Valo772c31e2011-09-07 10:55:16 +0300690 }
691
Kalle Valoc0038972011-12-16 20:53:31 +0200692 snprintf(filename, sizeof(filename), "%s/%s",
693 ar->hw.fw.dir, ar->hw.fw.otp);
Kalle Valod1a94212011-11-14 19:31:23 +0200694
Kalle Valo772c31e2011-09-07 10:55:16 +0300695 ret = ath6kl_get_fw(ar, filename, &ar->fw_otp,
696 &ar->fw_otp_len);
697 if (ret) {
698 ath6kl_err("Failed to get OTP file %s: %d\n",
699 filename, ret);
700 return ret;
701 }
702
703 return 0;
704}
705
Kalle Valo5f1127f2012-01-24 13:50:16 +0200706static int ath6kl_fetch_testmode_file(struct ath6kl *ar)
707{
708 char filename[100];
709 int ret;
710
711 if (ar->testmode == 0)
712 return 0;
713
714 ath6kl_dbg(ATH6KL_DBG_BOOT, "testmode %d\n", ar->testmode);
715
716 if (ar->testmode == 2) {
717 if (ar->hw.fw.utf == NULL) {
718 ath6kl_warn("testmode 2 not supported\n");
719 return -EOPNOTSUPP;
720 }
721
722 snprintf(filename, sizeof(filename), "%s/%s",
723 ar->hw.fw.dir, ar->hw.fw.utf);
724 } else {
725 if (ar->hw.fw.tcmd == NULL) {
726 ath6kl_warn("testmode 1 not supported\n");
727 return -EOPNOTSUPP;
728 }
729
730 snprintf(filename, sizeof(filename), "%s/%s",
731 ar->hw.fw.dir, ar->hw.fw.tcmd);
732 }
733
734 set_bit(TESTMODE, &ar->flag);
735
736 ret = ath6kl_get_fw(ar, filename, &ar->fw, &ar->fw_len);
737 if (ret) {
738 ath6kl_err("Failed to get testmode %d firmware file %s: %d\n",
739 ar->testmode, filename, ret);
740 return ret;
741 }
742
743 return 0;
744}
745
Kalle Valo772c31e2011-09-07 10:55:16 +0300746static int ath6kl_fetch_fw_file(struct ath6kl *ar)
747{
Kalle Valoc0038972011-12-16 20:53:31 +0200748 char filename[100];
Kalle Valo772c31e2011-09-07 10:55:16 +0300749 int ret;
750
751 if (ar->fw != NULL)
752 return 0;
753
Kalle Valoc0038972011-12-16 20:53:31 +0200754 /* FIXME: remove WARN_ON() as we won't support FW API 1 for long */
755 if (WARN_ON(ar->hw.fw.fw == NULL))
Kalle Valod1a94212011-11-14 19:31:23 +0200756 return -EINVAL;
757
Kalle Valoc0038972011-12-16 20:53:31 +0200758 snprintf(filename, sizeof(filename), "%s/%s",
759 ar->hw.fw.dir, ar->hw.fw.fw);
Kalle Valo772c31e2011-09-07 10:55:16 +0300760
Kalle Valo772c31e2011-09-07 10:55:16 +0300761 ret = ath6kl_get_fw(ar, filename, &ar->fw, &ar->fw_len);
762 if (ret) {
763 ath6kl_err("Failed to get firmware file %s: %d\n",
764 filename, ret);
765 return ret;
766 }
767
768 return 0;
769}
770
771static int ath6kl_fetch_patch_file(struct ath6kl *ar)
772{
Kalle Valoc0038972011-12-16 20:53:31 +0200773 char filename[100];
Kalle Valo772c31e2011-09-07 10:55:16 +0300774 int ret;
775
Kalle Valod1a94212011-11-14 19:31:23 +0200776 if (ar->fw_patch != NULL)
Kalle Valo772c31e2011-09-07 10:55:16 +0300777 return 0;
Kalle Valo772c31e2011-09-07 10:55:16 +0300778
Kalle Valoc0038972011-12-16 20:53:31 +0200779 if (ar->hw.fw.patch == NULL)
Kalle Valod1a94212011-11-14 19:31:23 +0200780 return 0;
781
Kalle Valoc0038972011-12-16 20:53:31 +0200782 snprintf(filename, sizeof(filename), "%s/%s",
783 ar->hw.fw.dir, ar->hw.fw.patch);
Kalle Valod1a94212011-11-14 19:31:23 +0200784
785 ret = ath6kl_get_fw(ar, filename, &ar->fw_patch,
786 &ar->fw_patch_len);
787 if (ret) {
788 ath6kl_err("Failed to get patch file %s: %d\n",
789 filename, ret);
790 return ret;
Kalle Valo772c31e2011-09-07 10:55:16 +0300791 }
792
793 return 0;
794}
795
Alex Yangcd23c1c2012-01-17 15:32:29 +0200796static int ath6kl_fetch_testscript_file(struct ath6kl *ar)
797{
798 char filename[100];
799 int ret;
800
Kalle Valo5f1127f2012-01-24 13:50:16 +0200801 if (ar->testmode != 2)
Alex Yangcd23c1c2012-01-17 15:32:29 +0200802 return 0;
803
804 if (ar->fw_testscript != NULL)
805 return 0;
806
807 if (ar->hw.fw.testscript == NULL)
808 return 0;
809
810 snprintf(filename, sizeof(filename), "%s/%s",
Kalle Valo96f1fad2012-03-07 20:03:57 +0200811 ar->hw.fw.dir, ar->hw.fw.testscript);
Alex Yangcd23c1c2012-01-17 15:32:29 +0200812
813 ret = ath6kl_get_fw(ar, filename, &ar->fw_testscript,
814 &ar->fw_testscript_len);
815 if (ret) {
816 ath6kl_err("Failed to get testscript file %s: %d\n",
Kalle Valo96f1fad2012-03-07 20:03:57 +0200817 filename, ret);
Alex Yangcd23c1c2012-01-17 15:32:29 +0200818 return ret;
819 }
820
821 return 0;
822}
823
Kalle Valo50d41232011-09-07 10:55:17 +0300824static int ath6kl_fetch_fw_api1(struct ath6kl *ar)
Kalle Valo772c31e2011-09-07 10:55:16 +0300825{
826 int ret;
827
Kalle Valo772c31e2011-09-07 10:55:16 +0300828 ret = ath6kl_fetch_otp_file(ar);
829 if (ret)
830 return ret;
831
832 ret = ath6kl_fetch_fw_file(ar);
833 if (ret)
834 return ret;
835
836 ret = ath6kl_fetch_patch_file(ar);
837 if (ret)
838 return ret;
839
Alex Yangcd23c1c2012-01-17 15:32:29 +0200840 ret = ath6kl_fetch_testscript_file(ar);
841 if (ret)
842 return ret;
843
Kalle Valo772c31e2011-09-07 10:55:16 +0300844 return 0;
845}
Kalle Valobdcd8172011-07-18 00:22:30 +0300846
Kalle Valo65a8b4c2011-12-16 20:53:41 +0200847static int ath6kl_fetch_fw_apin(struct ath6kl *ar, const char *name)
Kalle Valo50d41232011-09-07 10:55:17 +0300848{
849 size_t magic_len, len, ie_len;
850 const struct firmware *fw;
851 struct ath6kl_fw_ie *hdr;
Kalle Valoc0038972011-12-16 20:53:31 +0200852 char filename[100];
Kalle Valo50d41232011-09-07 10:55:17 +0300853 const u8 *data;
Kalle Valo97e04962011-09-12 13:47:34 +0300854 int ret, ie_id, i, index, bit;
Kalle Valo8a137482011-09-07 10:55:17 +0300855 __le32 *val;
Kalle Valo50d41232011-09-07 10:55:17 +0300856
Kalle Valo65a8b4c2011-12-16 20:53:41 +0200857 snprintf(filename, sizeof(filename), "%s/%s", ar->hw.fw.dir, name);
Kalle Valo50d41232011-09-07 10:55:17 +0300858
859 ret = request_firmware(&fw, filename, ar->dev);
860 if (ret)
861 return ret;
862
863 data = fw->data;
864 len = fw->size;
865
866 /* magic also includes the null byte, check that as well */
867 magic_len = strlen(ATH6KL_FIRMWARE_MAGIC) + 1;
868
869 if (len < magic_len) {
870 ret = -EINVAL;
871 goto out;
872 }
873
874 if (memcmp(data, ATH6KL_FIRMWARE_MAGIC, magic_len) != 0) {
875 ret = -EINVAL;
876 goto out;
877 }
878
879 len -= magic_len;
880 data += magic_len;
881
882 /* loop elements */
883 while (len > sizeof(struct ath6kl_fw_ie)) {
884 /* hdr is unaligned! */
885 hdr = (struct ath6kl_fw_ie *) data;
886
887 ie_id = le32_to_cpup(&hdr->id);
888 ie_len = le32_to_cpup(&hdr->len);
889
890 len -= sizeof(*hdr);
891 data += sizeof(*hdr);
892
893 if (len < ie_len) {
894 ret = -EINVAL;
895 goto out;
896 }
897
898 switch (ie_id) {
899 case ATH6KL_FW_IE_OTP_IMAGE:
Kalle Valoef548622011-10-01 09:43:09 +0300900 ath6kl_dbg(ATH6KL_DBG_BOOT, "found otp image ie (%zd B)\n",
Kalle Valo96f1fad2012-03-07 20:03:57 +0200901 ie_len);
Kalle Valo6bc36432011-09-27 14:31:11 +0300902
Kalle Valo50d41232011-09-07 10:55:17 +0300903 ar->fw_otp = kmemdup(data, ie_len, GFP_KERNEL);
904
905 if (ar->fw_otp == NULL) {
906 ret = -ENOMEM;
907 goto out;
908 }
909
910 ar->fw_otp_len = ie_len;
911 break;
912 case ATH6KL_FW_IE_FW_IMAGE:
Kalle Valoef548622011-10-01 09:43:09 +0300913 ath6kl_dbg(ATH6KL_DBG_BOOT, "found fw image ie (%zd B)\n",
Kalle Valo96f1fad2012-03-07 20:03:57 +0200914 ie_len);
Kalle Valo6bc36432011-09-27 14:31:11 +0300915
Kalle Valo5f1127f2012-01-24 13:50:16 +0200916 /* in testmode we already might have a fw file */
917 if (ar->fw != NULL)
918 break;
919
Kalle Valo50d41232011-09-07 10:55:17 +0300920 ar->fw = kmemdup(data, ie_len, GFP_KERNEL);
921
922 if (ar->fw == NULL) {
923 ret = -ENOMEM;
924 goto out;
925 }
926
927 ar->fw_len = ie_len;
928 break;
929 case ATH6KL_FW_IE_PATCH_IMAGE:
Kalle Valoef548622011-10-01 09:43:09 +0300930 ath6kl_dbg(ATH6KL_DBG_BOOT, "found patch image ie (%zd B)\n",
Kalle Valo96f1fad2012-03-07 20:03:57 +0200931 ie_len);
Kalle Valo6bc36432011-09-27 14:31:11 +0300932
Kalle Valo50d41232011-09-07 10:55:17 +0300933 ar->fw_patch = kmemdup(data, ie_len, GFP_KERNEL);
934
935 if (ar->fw_patch == NULL) {
936 ret = -ENOMEM;
937 goto out;
938 }
939
940 ar->fw_patch_len = ie_len;
941 break;
Kalle Valo8a137482011-09-07 10:55:17 +0300942 case ATH6KL_FW_IE_RESERVED_RAM_SIZE:
943 val = (__le32 *) data;
944 ar->hw.reserved_ram_size = le32_to_cpup(val);
Kalle Valo6bc36432011-09-27 14:31:11 +0300945
946 ath6kl_dbg(ATH6KL_DBG_BOOT,
947 "found reserved ram size ie 0x%d\n",
948 ar->hw.reserved_ram_size);
Kalle Valo8a137482011-09-07 10:55:17 +0300949 break;
Kalle Valo97e04962011-09-12 13:47:34 +0300950 case ATH6KL_FW_IE_CAPABILITIES:
Kalle Valo277d90f2011-12-13 14:51:58 +0200951 if (ie_len < DIV_ROUND_UP(ATH6KL_FW_CAPABILITY_MAX, 8))
952 break;
953
Kalle Valo6bc36432011-09-27 14:31:11 +0300954 ath6kl_dbg(ATH6KL_DBG_BOOT,
Kalle Valoef548622011-10-01 09:43:09 +0300955 "found firmware capabilities ie (%zd B)\n",
Kalle Valo6bc36432011-09-27 14:31:11 +0300956 ie_len);
957
Kalle Valo97e04962011-09-12 13:47:34 +0300958 for (i = 0; i < ATH6KL_FW_CAPABILITY_MAX; i++) {
Kalle Valo277d90f2011-12-13 14:51:58 +0200959 index = i / 8;
Kalle Valo97e04962011-09-12 13:47:34 +0300960 bit = i % 8;
961
962 if (data[index] & (1 << bit))
963 __set_bit(i, ar->fw_capabilities);
964 }
Kalle Valo6bc36432011-09-27 14:31:11 +0300965
966 ath6kl_dbg_dump(ATH6KL_DBG_BOOT, "capabilities", "",
967 ar->fw_capabilities,
968 sizeof(ar->fw_capabilities));
Kalle Valo97e04962011-09-12 13:47:34 +0300969 break;
Kalle Valo1b4304d2011-09-27 11:05:26 +0300970 case ATH6KL_FW_IE_PATCH_ADDR:
971 if (ie_len != sizeof(*val))
972 break;
973
974 val = (__le32 *) data;
975 ar->hw.dataset_patch_addr = le32_to_cpup(val);
Kalle Valo6bc36432011-09-27 14:31:11 +0300976
977 ath6kl_dbg(ATH6KL_DBG_BOOT,
Kalle Valo03ef0252011-11-14 19:30:47 +0200978 "found patch address ie 0x%x\n",
Kalle Valo6bc36432011-09-27 14:31:11 +0300979 ar->hw.dataset_patch_addr);
Kalle Valo1b4304d2011-09-27 11:05:26 +0300980 break;
Kalle Valo03ef0252011-11-14 19:30:47 +0200981 case ATH6KL_FW_IE_BOARD_ADDR:
982 if (ie_len != sizeof(*val))
983 break;
984
985 val = (__le32 *) data;
986 ar->hw.board_addr = le32_to_cpup(val);
987
988 ath6kl_dbg(ATH6KL_DBG_BOOT,
989 "found board address ie 0x%x\n",
990 ar->hw.board_addr);
991 break;
Kalle Valo368b1b02011-11-14 19:31:38 +0200992 case ATH6KL_FW_IE_VIF_MAX:
993 if (ie_len != sizeof(*val))
994 break;
995
996 val = (__le32 *) data;
997 ar->vif_max = min_t(unsigned int, le32_to_cpup(val),
998 ATH6KL_VIF_MAX);
999
Vasanthakumar Thiagarajanf1433792011-11-18 10:05:27 +05301000 if (ar->vif_max > 1 && !ar->p2p)
1001 ar->max_norm_iface = 2;
1002
Kalle Valo368b1b02011-11-14 19:31:38 +02001003 ath6kl_dbg(ATH6KL_DBG_BOOT,
1004 "found vif max ie %d\n", ar->vif_max);
1005 break;
Kalle Valo50d41232011-09-07 10:55:17 +03001006 default:
Kalle Valo6bc36432011-09-27 14:31:11 +03001007 ath6kl_dbg(ATH6KL_DBG_BOOT, "Unknown fw ie: %u\n",
Kalle Valo50d41232011-09-07 10:55:17 +03001008 le32_to_cpup(&hdr->id));
1009 break;
1010 }
1011
1012 len -= ie_len;
1013 data += ie_len;
1014 };
1015
1016 ret = 0;
1017out:
1018 release_firmware(fw);
1019
1020 return ret;
1021}
1022
Kalle Valo45eaa782012-01-17 20:09:05 +02001023int ath6kl_init_fetch_firmwares(struct ath6kl *ar)
Kalle Valo50d41232011-09-07 10:55:17 +03001024{
1025 int ret;
1026
1027 ret = ath6kl_fetch_board_file(ar);
1028 if (ret)
1029 return ret;
1030
Kalle Valo5f1127f2012-01-24 13:50:16 +02001031 ret = ath6kl_fetch_testmode_file(ar);
1032 if (ret)
1033 return ret;
1034
Kalle Valo65a8b4c2011-12-16 20:53:41 +02001035 ret = ath6kl_fetch_fw_apin(ar, ATH6KL_FW_API3_FILE);
Kalle Valo6bc36432011-09-27 14:31:11 +03001036 if (ret == 0) {
Kalle Valo65a8b4c2011-12-16 20:53:41 +02001037 ar->fw_api = 3;
1038 goto out;
1039 }
1040
1041 ret = ath6kl_fetch_fw_apin(ar, ATH6KL_FW_API2_FILE);
1042 if (ret == 0) {
1043 ar->fw_api = 2;
1044 goto out;
Kalle Valo6bc36432011-09-27 14:31:11 +03001045 }
Kalle Valo50d41232011-09-07 10:55:17 +03001046
1047 ret = ath6kl_fetch_fw_api1(ar);
1048 if (ret)
1049 return ret;
1050
Kalle Valo65a8b4c2011-12-16 20:53:41 +02001051 ar->fw_api = 1;
1052
1053out:
1054 ath6kl_dbg(ATH6KL_DBG_BOOT, "using fw api %d\n", ar->fw_api);
Kalle Valo6bc36432011-09-27 14:31:11 +03001055
Kalle Valo50d41232011-09-07 10:55:17 +03001056 return 0;
1057}
1058
Kalle Valobdcd8172011-07-18 00:22:30 +03001059static int ath6kl_upload_board_file(struct ath6kl *ar)
1060{
1061 u32 board_address, board_ext_address, param;
Kevin Fang31024d92011-07-11 17:14:13 +08001062 u32 board_data_size, board_ext_data_size;
Kalle Valobdcd8172011-07-18 00:22:30 +03001063 int ret;
1064
Kalle Valo772c31e2011-09-07 10:55:16 +03001065 if (WARN_ON(ar->fw_board == NULL))
1066 return -ENOENT;
Kalle Valobdcd8172011-07-18 00:22:30 +03001067
Kevin Fang31024d92011-07-11 17:14:13 +08001068 /*
1069 * Determine where in Target RAM to write Board Data.
1070 * For AR6004, host determine Target RAM address for
1071 * writing board data.
1072 */
Kalle Valo0d4d72b2011-11-14 19:30:39 +02001073 if (ar->hw.board_addr != 0) {
Kalle Valo24fc32b2012-03-07 20:03:58 +02001074 ath6kl_bmi_write_hi32(ar, hi_board_data,
1075 ar->hw.board_addr);
Kevin Fang31024d92011-07-11 17:14:13 +08001076 } else {
1077 ath6kl_bmi_read(ar,
1078 ath6kl_get_hi_item_addr(ar,
1079 HI_ITEM(hi_board_data)),
1080 (u8 *) &board_address, 4);
1081 }
1082
Kalle Valobdcd8172011-07-18 00:22:30 +03001083 /* determine where in target ram to write extended board data */
1084 ath6kl_bmi_read(ar,
1085 ath6kl_get_hi_item_addr(ar,
1086 HI_ITEM(hi_board_ext_data)),
1087 (u8 *) &board_ext_address, 4);
1088
Kalle Valo50e27402011-11-11 12:18:06 +02001089 if (ar->target_type == TARGET_TYPE_AR6003 &&
1090 board_ext_address == 0) {
Kalle Valobdcd8172011-07-18 00:22:30 +03001091 ath6kl_err("Failed to get board file target address.\n");
1092 return -EINVAL;
1093 }
1094
Kevin Fang31024d92011-07-11 17:14:13 +08001095 switch (ar->target_type) {
1096 case TARGET_TYPE_AR6003:
1097 board_data_size = AR6003_BOARD_DATA_SZ;
1098 board_ext_data_size = AR6003_BOARD_EXT_DATA_SZ;
Prasanna Kumarfb1ac2e2012-02-07 14:58:54 -08001099 if (ar->fw_board_len > (board_data_size + board_ext_data_size))
1100 board_ext_data_size = AR6003_BOARD_EXT_DATA_SZ_V2;
Kevin Fang31024d92011-07-11 17:14:13 +08001101 break;
1102 case TARGET_TYPE_AR6004:
1103 board_data_size = AR6004_BOARD_DATA_SZ;
1104 board_ext_data_size = AR6004_BOARD_EXT_DATA_SZ;
1105 break;
1106 default:
1107 WARN_ON(1);
1108 return -EINVAL;
1109 break;
1110 }
1111
Kalle Valo50e27402011-11-11 12:18:06 +02001112 if (board_ext_address &&
1113 ar->fw_board_len == (board_data_size + board_ext_data_size)) {
Kevin Fang31024d92011-07-11 17:14:13 +08001114
Kalle Valobdcd8172011-07-18 00:22:30 +03001115 /* write extended board data */
Kalle Valo6bc36432011-09-27 14:31:11 +03001116 ath6kl_dbg(ATH6KL_DBG_BOOT,
1117 "writing extended board data to 0x%x (%d B)\n",
1118 board_ext_address, board_ext_data_size);
1119
Kalle Valobdcd8172011-07-18 00:22:30 +03001120 ret = ath6kl_bmi_write(ar, board_ext_address,
Kevin Fang31024d92011-07-11 17:14:13 +08001121 ar->fw_board + board_data_size,
1122 board_ext_data_size);
Kalle Valobdcd8172011-07-18 00:22:30 +03001123 if (ret) {
1124 ath6kl_err("Failed to write extended board data: %d\n",
1125 ret);
1126 return ret;
1127 }
1128
1129 /* record that extended board data is initialized */
Kevin Fang31024d92011-07-11 17:14:13 +08001130 param = (board_ext_data_size << 16) | 1;
1131
Kalle Valo24fc32b2012-03-07 20:03:58 +02001132 ath6kl_bmi_write_hi32(ar, hi_board_ext_data_config, param);
Kalle Valobdcd8172011-07-18 00:22:30 +03001133 }
1134
Kevin Fang31024d92011-07-11 17:14:13 +08001135 if (ar->fw_board_len < board_data_size) {
Kalle Valobdcd8172011-07-18 00:22:30 +03001136 ath6kl_err("Too small board file: %zu\n", ar->fw_board_len);
1137 ret = -EINVAL;
1138 return ret;
1139 }
1140
Kalle Valo6bc36432011-09-27 14:31:11 +03001141 ath6kl_dbg(ATH6KL_DBG_BOOT, "writing board file to 0x%x (%d B)\n",
1142 board_address, board_data_size);
1143
Kalle Valobdcd8172011-07-18 00:22:30 +03001144 ret = ath6kl_bmi_write(ar, board_address, ar->fw_board,
Kevin Fang31024d92011-07-11 17:14:13 +08001145 board_data_size);
Kalle Valobdcd8172011-07-18 00:22:30 +03001146
1147 if (ret) {
1148 ath6kl_err("Board file bmi write failed: %d\n", ret);
1149 return ret;
1150 }
1151
1152 /* record the fact that Board Data IS initialized */
Kalle Valo24fc32b2012-03-07 20:03:58 +02001153 ath6kl_bmi_write_hi32(ar, hi_board_data_initialized, 1);
Kalle Valobdcd8172011-07-18 00:22:30 +03001154
1155 return ret;
1156}
1157
1158static int ath6kl_upload_otp(struct ath6kl *ar)
1159{
Kalle Valobdcd8172011-07-18 00:22:30 +03001160 u32 address, param;
Kalle Valobef26a72011-10-12 09:58:28 +03001161 bool from_hw = false;
Kalle Valobdcd8172011-07-18 00:22:30 +03001162 int ret;
1163
Kalle Valo50e27402011-11-11 12:18:06 +02001164 if (ar->fw_otp == NULL)
1165 return 0;
Kalle Valobdcd8172011-07-18 00:22:30 +03001166
Kalle Valoa01ac412011-09-07 10:55:17 +03001167 address = ar->hw.app_load_addr;
Kalle Valobdcd8172011-07-18 00:22:30 +03001168
Kalle Valoef548622011-10-01 09:43:09 +03001169 ath6kl_dbg(ATH6KL_DBG_BOOT, "writing otp to 0x%x (%zd B)\n", address,
Kalle Valo6bc36432011-09-27 14:31:11 +03001170 ar->fw_otp_len);
1171
Kalle Valobdcd8172011-07-18 00:22:30 +03001172 ret = ath6kl_bmi_fast_download(ar, address, ar->fw_otp,
1173 ar->fw_otp_len);
1174 if (ret) {
1175 ath6kl_err("Failed to upload OTP file: %d\n", ret);
1176 return ret;
1177 }
1178
Kalle Valo639d0b82011-09-12 12:48:09 +03001179 /* read firmware start address */
1180 ret = ath6kl_bmi_read(ar,
1181 ath6kl_get_hi_item_addr(ar,
1182 HI_ITEM(hi_app_start)),
1183 (u8 *) &address, sizeof(address));
1184
1185 if (ret) {
1186 ath6kl_err("Failed to read hi_app_start: %d\n", ret);
1187 return ret;
1188 }
1189
Kalle Valobef26a72011-10-12 09:58:28 +03001190 if (ar->hw.app_start_override_addr == 0) {
1191 ar->hw.app_start_override_addr = address;
1192 from_hw = true;
1193 }
Kalle Valo639d0b82011-09-12 12:48:09 +03001194
Kalle Valobef26a72011-10-12 09:58:28 +03001195 ath6kl_dbg(ATH6KL_DBG_BOOT, "app_start_override_addr%s 0x%x\n",
1196 from_hw ? " (from hw)" : "",
Kalle Valo6bc36432011-09-27 14:31:11 +03001197 ar->hw.app_start_override_addr);
1198
Kalle Valobdcd8172011-07-18 00:22:30 +03001199 /* execute the OTP code */
Kalle Valobef26a72011-10-12 09:58:28 +03001200 ath6kl_dbg(ATH6KL_DBG_BOOT, "executing OTP at 0x%x\n",
1201 ar->hw.app_start_override_addr);
Kalle Valobdcd8172011-07-18 00:22:30 +03001202 param = 0;
Kalle Valobef26a72011-10-12 09:58:28 +03001203 ath6kl_bmi_execute(ar, ar->hw.app_start_override_addr, &param);
Kalle Valobdcd8172011-07-18 00:22:30 +03001204
1205 return ret;
1206}
1207
1208static int ath6kl_upload_firmware(struct ath6kl *ar)
1209{
Kalle Valobdcd8172011-07-18 00:22:30 +03001210 u32 address;
1211 int ret;
1212
Kalle Valo772c31e2011-09-07 10:55:16 +03001213 if (WARN_ON(ar->fw == NULL))
Kalle Valo50e27402011-11-11 12:18:06 +02001214 return 0;
Kalle Valobdcd8172011-07-18 00:22:30 +03001215
Kalle Valoa01ac412011-09-07 10:55:17 +03001216 address = ar->hw.app_load_addr;
Kalle Valobdcd8172011-07-18 00:22:30 +03001217
Kalle Valoef548622011-10-01 09:43:09 +03001218 ath6kl_dbg(ATH6KL_DBG_BOOT, "writing firmware to 0x%x (%zd B)\n",
Kalle Valo6bc36432011-09-27 14:31:11 +03001219 address, ar->fw_len);
1220
Kalle Valobdcd8172011-07-18 00:22:30 +03001221 ret = ath6kl_bmi_fast_download(ar, address, ar->fw, ar->fw_len);
1222
1223 if (ret) {
1224 ath6kl_err("Failed to write firmware: %d\n", ret);
1225 return ret;
1226 }
1227
Kevin Fang31024d92011-07-11 17:14:13 +08001228 /*
1229 * Set starting address for firmware
1230 * Don't need to setup app_start override addr on AR6004
1231 */
1232 if (ar->target_type != TARGET_TYPE_AR6004) {
Kalle Valoa01ac412011-09-07 10:55:17 +03001233 address = ar->hw.app_start_override_addr;
Kevin Fang31024d92011-07-11 17:14:13 +08001234 ath6kl_bmi_set_app_start(ar, address);
1235 }
Kalle Valobdcd8172011-07-18 00:22:30 +03001236 return ret;
1237}
1238
1239static int ath6kl_upload_patch(struct ath6kl *ar)
1240{
Kalle Valo24fc32b2012-03-07 20:03:58 +02001241 u32 address;
Kalle Valobdcd8172011-07-18 00:22:30 +03001242 int ret;
1243
Kalle Valo50e27402011-11-11 12:18:06 +02001244 if (ar->fw_patch == NULL)
1245 return 0;
Kalle Valobdcd8172011-07-18 00:22:30 +03001246
Kalle Valoa01ac412011-09-07 10:55:17 +03001247 address = ar->hw.dataset_patch_addr;
Kalle Valobdcd8172011-07-18 00:22:30 +03001248
Kalle Valoef548622011-10-01 09:43:09 +03001249 ath6kl_dbg(ATH6KL_DBG_BOOT, "writing patch to 0x%x (%zd B)\n",
Kalle Valo6bc36432011-09-27 14:31:11 +03001250 address, ar->fw_patch_len);
1251
Kalle Valobdcd8172011-07-18 00:22:30 +03001252 ret = ath6kl_bmi_write(ar, address, ar->fw_patch, ar->fw_patch_len);
1253 if (ret) {
1254 ath6kl_err("Failed to write patch file: %d\n", ret);
1255 return ret;
1256 }
1257
Kalle Valo24fc32b2012-03-07 20:03:58 +02001258 ath6kl_bmi_write_hi32(ar, hi_dset_list_head, address);
Kalle Valobdcd8172011-07-18 00:22:30 +03001259
1260 return 0;
1261}
1262
Alex Yangcd23c1c2012-01-17 15:32:29 +02001263static int ath6kl_upload_testscript(struct ath6kl *ar)
1264{
Kalle Valo24fc32b2012-03-07 20:03:58 +02001265 u32 address;
Alex Yangcd23c1c2012-01-17 15:32:29 +02001266 int ret;
1267
Kalle Valo5f1127f2012-01-24 13:50:16 +02001268 if (ar->testmode != 2)
Alex Yangcd23c1c2012-01-17 15:32:29 +02001269 return 0;
1270
1271 if (ar->fw_testscript == NULL)
1272 return 0;
1273
1274 address = ar->hw.testscript_addr;
1275
1276 ath6kl_dbg(ATH6KL_DBG_BOOT, "writing testscript to 0x%x (%zd B)\n",
Kalle Valo96f1fad2012-03-07 20:03:57 +02001277 address, ar->fw_testscript_len);
Alex Yangcd23c1c2012-01-17 15:32:29 +02001278
1279 ret = ath6kl_bmi_write(ar, address, ar->fw_testscript,
1280 ar->fw_testscript_len);
1281 if (ret) {
1282 ath6kl_err("Failed to write testscript file: %d\n", ret);
1283 return ret;
1284 }
1285
Kalle Valo24fc32b2012-03-07 20:03:58 +02001286 ath6kl_bmi_write_hi32(ar, hi_ota_testscript, address);
1287 ath6kl_bmi_write_hi32(ar, hi_end_ram_reserve_sz, 4096);
1288 ath6kl_bmi_write_hi32(ar, hi_test_apps_related, 1);
Alex Yangcd23c1c2012-01-17 15:32:29 +02001289
1290 return 0;
1291}
1292
Kalle Valobdcd8172011-07-18 00:22:30 +03001293static int ath6kl_init_upload(struct ath6kl *ar)
1294{
1295 u32 param, options, sleep, address;
1296 int status = 0;
1297
Kevin Fang31024d92011-07-11 17:14:13 +08001298 if (ar->target_type != TARGET_TYPE_AR6003 &&
Kalle Valo96f1fad2012-03-07 20:03:57 +02001299 ar->target_type != TARGET_TYPE_AR6004)
Kalle Valobdcd8172011-07-18 00:22:30 +03001300 return -EINVAL;
1301
1302 /* temporarily disable system sleep */
1303 address = MBOX_BASE_ADDRESS + LOCAL_SCRATCH_ADDRESS;
1304 status = ath6kl_bmi_reg_read(ar, address, &param);
1305 if (status)
1306 return status;
1307
1308 options = param;
1309
1310 param |= ATH6KL_OPTION_SLEEP_DISABLE;
1311 status = ath6kl_bmi_reg_write(ar, address, param);
1312 if (status)
1313 return status;
1314
1315 address = RTC_BASE_ADDRESS + SYSTEM_SLEEP_ADDRESS;
1316 status = ath6kl_bmi_reg_read(ar, address, &param);
1317 if (status)
1318 return status;
1319
1320 sleep = param;
1321
1322 param |= SM(SYSTEM_SLEEP_DISABLE, 1);
1323 status = ath6kl_bmi_reg_write(ar, address, param);
1324 if (status)
1325 return status;
1326
1327 ath6kl_dbg(ATH6KL_DBG_TRC, "old options: %d, old sleep: %d\n",
1328 options, sleep);
1329
1330 /* program analog PLL register */
Kevin Fang31024d92011-07-11 17:14:13 +08001331 /* no need to control 40/44MHz clock on AR6004 */
1332 if (ar->target_type != TARGET_TYPE_AR6004) {
1333 status = ath6kl_bmi_reg_write(ar, ATH6KL_ANALOG_PLL_REGISTER,
1334 0xF9104001);
Kalle Valobdcd8172011-07-18 00:22:30 +03001335
Kevin Fang31024d92011-07-11 17:14:13 +08001336 if (status)
1337 return status;
Kalle Valobdcd8172011-07-18 00:22:30 +03001338
Kevin Fang31024d92011-07-11 17:14:13 +08001339 /* Run at 80/88MHz by default */
1340 param = SM(CPU_CLOCK_STANDARD, 1);
1341
1342 address = RTC_BASE_ADDRESS + CPU_CLOCK_ADDRESS;
1343 status = ath6kl_bmi_reg_write(ar, address, param);
1344 if (status)
1345 return status;
1346 }
Kalle Valobdcd8172011-07-18 00:22:30 +03001347
1348 param = 0;
1349 address = RTC_BASE_ADDRESS + LPO_CAL_ADDRESS;
1350 param = SM(LPO_CAL_ENABLE, 1);
1351 status = ath6kl_bmi_reg_write(ar, address, param);
1352 if (status)
1353 return status;
1354
1355 /* WAR to avoid SDIO CRC err */
Raja Mani4480bb52012-02-22 12:03:51 +05301356 if (ar->version.target_ver == AR6003_HW_2_0_VERSION ||
1357 ar->version.target_ver == AR6003_HW_2_1_1_VERSION) {
Kalle Valobdcd8172011-07-18 00:22:30 +03001358 ath6kl_err("temporary war to avoid sdio crc error\n");
1359
1360 param = 0x20;
1361
1362 address = GPIO_BASE_ADDRESS + GPIO_PIN10_ADDRESS;
1363 status = ath6kl_bmi_reg_write(ar, address, param);
1364 if (status)
1365 return status;
1366
1367 address = GPIO_BASE_ADDRESS + GPIO_PIN11_ADDRESS;
1368 status = ath6kl_bmi_reg_write(ar, address, param);
1369 if (status)
1370 return status;
1371
1372 address = GPIO_BASE_ADDRESS + GPIO_PIN12_ADDRESS;
1373 status = ath6kl_bmi_reg_write(ar, address, param);
1374 if (status)
1375 return status;
1376
1377 address = GPIO_BASE_ADDRESS + GPIO_PIN13_ADDRESS;
1378 status = ath6kl_bmi_reg_write(ar, address, param);
1379 if (status)
1380 return status;
1381 }
1382
1383 /* write EEPROM data to Target RAM */
1384 status = ath6kl_upload_board_file(ar);
1385 if (status)
1386 return status;
1387
1388 /* transfer One time Programmable data */
1389 status = ath6kl_upload_otp(ar);
1390 if (status)
1391 return status;
1392
1393 /* Download Target firmware */
1394 status = ath6kl_upload_firmware(ar);
1395 if (status)
1396 return status;
1397
1398 status = ath6kl_upload_patch(ar);
1399 if (status)
1400 return status;
1401
Alex Yangcd23c1c2012-01-17 15:32:29 +02001402 /* Download the test script */
1403 status = ath6kl_upload_testscript(ar);
1404 if (status)
1405 return status;
1406
Kalle Valobdcd8172011-07-18 00:22:30 +03001407 /* Restore system sleep */
1408 address = RTC_BASE_ADDRESS + SYSTEM_SLEEP_ADDRESS;
1409 status = ath6kl_bmi_reg_write(ar, address, sleep);
1410 if (status)
1411 return status;
1412
1413 address = MBOX_BASE_ADDRESS + LOCAL_SCRATCH_ADDRESS;
1414 param = options | 0x20;
1415 status = ath6kl_bmi_reg_write(ar, address, param);
1416 if (status)
1417 return status;
1418
Kalle Valobdcd8172011-07-18 00:22:30 +03001419 return status;
1420}
1421
Kalle Valo45eaa782012-01-17 20:09:05 +02001422int ath6kl_init_hw_params(struct ath6kl *ar)
Kalle Valoa01ac412011-09-07 10:55:17 +03001423{
Kalle Valo1b46dc042012-01-31 21:26:22 +02001424 const struct ath6kl_hw *uninitialized_var(hw);
Kalle Valo856f4b312011-11-14 19:30:29 +02001425 int i;
Kalle Valobef26a72011-10-12 09:58:28 +03001426
Kalle Valo856f4b312011-11-14 19:30:29 +02001427 for (i = 0; i < ARRAY_SIZE(hw_list); i++) {
1428 hw = &hw_list[i];
Kalle Valobef26a72011-10-12 09:58:28 +03001429
Kalle Valo856f4b312011-11-14 19:30:29 +02001430 if (hw->id == ar->version.target_ver)
1431 break;
1432 }
1433
1434 if (i == ARRAY_SIZE(hw_list)) {
Kalle Valoa01ac412011-09-07 10:55:17 +03001435 ath6kl_err("Unsupported hardware version: 0x%x\n",
1436 ar->version.target_ver);
1437 return -EINVAL;
1438 }
1439
Kalle Valo856f4b312011-11-14 19:30:29 +02001440 ar->hw = *hw;
1441
Kalle Valo6bc36432011-09-27 14:31:11 +03001442 ath6kl_dbg(ATH6KL_DBG_BOOT,
1443 "target_ver 0x%x target_type 0x%x dataset_patch 0x%x app_load_addr 0x%x\n",
1444 ar->version.target_ver, ar->target_type,
1445 ar->hw.dataset_patch_addr, ar->hw.app_load_addr);
1446 ath6kl_dbg(ATH6KL_DBG_BOOT,
1447 "app_start_override_addr 0x%x board_ext_data_addr 0x%x reserved_ram_size 0x%x",
1448 ar->hw.app_start_override_addr, ar->hw.board_ext_data_addr,
1449 ar->hw.reserved_ram_size);
Ryan Hsu39586bf2011-12-13 17:11:07 +08001450 ath6kl_dbg(ATH6KL_DBG_BOOT,
1451 "refclk_hz %d uarttx_pin %d",
1452 ar->hw.refclk_hz, ar->hw.uarttx_pin);
Kalle Valo6bc36432011-09-27 14:31:11 +03001453
Kalle Valoa01ac412011-09-07 10:55:17 +03001454 return 0;
1455}
1456
Kalle Valo293badf2011-11-14 19:30:54 +02001457static const char *ath6kl_init_get_hif_name(enum ath6kl_hif_type type)
1458{
1459 switch (type) {
1460 case ATH6KL_HIF_TYPE_SDIO:
1461 return "sdio";
1462 case ATH6KL_HIF_TYPE_USB:
1463 return "usb";
1464 }
1465
1466 return NULL;
1467}
1468
Kalle Valo5fe4dff2011-10-30 21:16:15 +02001469int ath6kl_init_hw_start(struct ath6kl *ar)
Kalle Valo20459ee2011-10-27 18:48:37 +03001470{
1471 long timeleft;
1472 int ret, i;
1473
Kalle Valo5fe4dff2011-10-30 21:16:15 +02001474 ath6kl_dbg(ATH6KL_DBG_BOOT, "hw start\n");
1475
Kalle Valo20459ee2011-10-27 18:48:37 +03001476 ret = ath6kl_hif_power_on(ar);
1477 if (ret)
1478 return ret;
1479
1480 ret = ath6kl_configure_target(ar);
1481 if (ret)
1482 goto err_power_off;
1483
1484 ret = ath6kl_init_upload(ar);
1485 if (ret)
1486 goto err_power_off;
1487
1488 /* Do we need to finish the BMI phase */
1489 /* FIXME: return error from ath6kl_bmi_done() */
1490 if (ath6kl_bmi_done(ar)) {
1491 ret = -EIO;
1492 goto err_power_off;
1493 }
1494
1495 /*
1496 * The reason we have to wait for the target here is that the
1497 * driver layer has to init BMI in order to set the host block
1498 * size.
1499 */
1500 if (ath6kl_htc_wait_target(ar->htc_target)) {
1501 ret = -EIO;
1502 goto err_power_off;
1503 }
1504
1505 if (ath6kl_init_service_ep(ar)) {
1506 ret = -EIO;
1507 goto err_cleanup_scatter;
1508 }
1509
1510 /* setup credit distribution */
1511 ath6kl_credit_setup(ar->htc_target, &ar->credit_state_info);
1512
1513 /* start HTC */
1514 ret = ath6kl_htc_start(ar->htc_target);
1515 if (ret) {
1516 /* FIXME: call this */
1517 ath6kl_cookie_cleanup(ar);
1518 goto err_cleanup_scatter;
1519 }
1520
1521 /* Wait for Wmi event to be ready */
1522 timeleft = wait_event_interruptible_timeout(ar->event_wq,
1523 test_bit(WMI_READY,
1524 &ar->flag),
1525 WMI_TIMEOUT);
1526
1527 ath6kl_dbg(ATH6KL_DBG_BOOT, "firmware booted\n");
1528
Kalle Valo293badf2011-11-14 19:30:54 +02001529
1530 if (test_and_clear_bit(FIRST_BOOT, &ar->flag)) {
Kalle Valo65a8b4c2011-12-16 20:53:41 +02001531 ath6kl_info("%s %s fw %s api %d%s\n",
Kalle Valo293badf2011-11-14 19:30:54 +02001532 ar->hw.name,
1533 ath6kl_init_get_hif_name(ar->hif_type),
1534 ar->wiphy->fw_version,
Kalle Valo65a8b4c2011-12-16 20:53:41 +02001535 ar->fw_api,
Kalle Valo293badf2011-11-14 19:30:54 +02001536 test_bit(TESTMODE, &ar->flag) ? " testmode" : "");
1537 }
1538
Kalle Valo20459ee2011-10-27 18:48:37 +03001539 if (ar->version.abi_ver != ATH6KL_ABI_VERSION) {
1540 ath6kl_err("abi version mismatch: host(0x%x), target(0x%x)\n",
1541 ATH6KL_ABI_VERSION, ar->version.abi_ver);
1542 ret = -EIO;
1543 goto err_htc_stop;
1544 }
1545
1546 if (!timeleft || signal_pending(current)) {
1547 ath6kl_err("wmi is not ready or wait was interrupted\n");
1548 ret = -EIO;
1549 goto err_htc_stop;
1550 }
1551
1552 ath6kl_dbg(ATH6KL_DBG_TRC, "%s: wmi is ready\n", __func__);
1553
1554 /* communicate the wmi protocol verision to the target */
1555 /* FIXME: return error */
1556 if ((ath6kl_set_host_app_area(ar)) != 0)
1557 ath6kl_err("unable to set the host app area\n");
1558
Kalle Valo71f96ee2011-11-14 19:31:30 +02001559 for (i = 0; i < ar->vif_max; i++) {
Kalle Valo20459ee2011-10-27 18:48:37 +03001560 ret = ath6kl_target_config_wlan_params(ar, i);
1561 if (ret)
1562 goto err_htc_stop;
1563 }
1564
Kalle Valo76a9fbe2011-11-01 08:44:28 +02001565 ar->state = ATH6KL_STATE_ON;
1566
Kalle Valo20459ee2011-10-27 18:48:37 +03001567 return 0;
1568
1569err_htc_stop:
1570 ath6kl_htc_stop(ar->htc_target);
1571err_cleanup_scatter:
1572 ath6kl_hif_cleanup_scatter(ar);
1573err_power_off:
1574 ath6kl_hif_power_off(ar);
1575
1576 return ret;
1577}
1578
Kalle Valo5fe4dff2011-10-30 21:16:15 +02001579int ath6kl_init_hw_stop(struct ath6kl *ar)
1580{
1581 int ret;
1582
1583 ath6kl_dbg(ATH6KL_DBG_BOOT, "hw stop\n");
1584
1585 ath6kl_htc_stop(ar->htc_target);
1586
1587 ath6kl_hif_stop(ar);
1588
1589 ath6kl_bmi_reset(ar);
1590
1591 ret = ath6kl_hif_power_off(ar);
1592 if (ret)
1593 ath6kl_warn("failed to power off hif: %d\n", ret);
1594
Kalle Valo76a9fbe2011-11-01 08:44:28 +02001595 ar->state = ATH6KL_STATE_OFF;
1596
Kalle Valo5fe4dff2011-10-30 21:16:15 +02001597 return 0;
1598}
1599
Kalle Valoc25889e2012-01-17 20:08:27 +02001600/* FIXME: move this to cfg80211.c and rename to ath6kl_cfg80211_vif_stop() */
Vasanthakumar Thiagarajan55055972011-10-25 19:34:23 +05301601void ath6kl_cleanup_vif(struct ath6kl_vif *vif, bool wmi_ready)
Vasanthakumar Thiagarajan6db8fa52011-10-25 19:34:16 +05301602{
1603 static u8 bcast_mac[] = {0xff, 0xff, 0xff, 0xff, 0xff, 0xff};
1604 bool discon_issued;
1605
1606 netif_stop_queue(vif->ndev);
1607
1608 clear_bit(WLAN_ENABLED, &vif->flags);
1609
1610 if (wmi_ready) {
1611 discon_issued = test_bit(CONNECTED, &vif->flags) ||
1612 test_bit(CONNECT_PEND, &vif->flags);
1613 ath6kl_disconnect(vif);
1614 del_timer(&vif->disconnect_timer);
1615
1616 if (discon_issued)
1617 ath6kl_disconnect_event(vif, DISCONNECT_CMD,
1618 (vif->nw_type & AP_NETWORK) ?
1619 bcast_mac : vif->bssid,
1620 0, NULL, 0);
1621 }
1622
1623 if (vif->scan_req) {
1624 cfg80211_scan_done(vif->scan_req, true);
1625 vif->scan_req = NULL;
1626 }
Vasanthakumar Thiagarajan6db8fa52011-10-25 19:34:16 +05301627}
1628
Kalle Valobdcd8172011-07-18 00:22:30 +03001629void ath6kl_stop_txrx(struct ath6kl *ar)
1630{
Vasanthakumar Thiagarajan990bd912011-10-25 19:34:20 +05301631 struct ath6kl_vif *vif, *tmp_vif;
Vasanthakumar Thiagarajan1d2a4452012-01-21 15:22:53 +05301632 int i;
Kalle Valobdcd8172011-07-18 00:22:30 +03001633
1634 set_bit(DESTROY_IN_PROGRESS, &ar->flag);
1635
1636 if (down_interruptible(&ar->sem)) {
1637 ath6kl_err("down_interruptible failed\n");
1638 return;
1639 }
1640
Vasanthakumar Thiagarajan1d2a4452012-01-21 15:22:53 +05301641 for (i = 0; i < AP_MAX_NUM_STA; i++)
1642 aggr_reset_state(ar->sta_list[i].aggr_conn);
1643
Vasanthakumar Thiagarajan11f6e402011-11-01 16:38:50 +05301644 spin_lock_bh(&ar->list_lock);
Vasanthakumar Thiagarajan990bd912011-10-25 19:34:20 +05301645 list_for_each_entry_safe(vif, tmp_vif, &ar->vif_list, list) {
1646 list_del(&vif->list);
Vasanthakumar Thiagarajan11f6e402011-11-01 16:38:50 +05301647 spin_unlock_bh(&ar->list_lock);
Vasanthakumar Thiagarajan990bd912011-10-25 19:34:20 +05301648 ath6kl_cleanup_vif(vif, test_bit(WMI_READY, &ar->flag));
Vasanthakumar Thiagarajan27929722011-10-25 19:34:21 +05301649 rtnl_lock();
Kalle Valoc25889e2012-01-17 20:08:27 +02001650 ath6kl_cfg80211_vif_cleanup(vif);
Vasanthakumar Thiagarajan27929722011-10-25 19:34:21 +05301651 rtnl_unlock();
Vasanthakumar Thiagarajan11f6e402011-11-01 16:38:50 +05301652 spin_lock_bh(&ar->list_lock);
Vasanthakumar Thiagarajan990bd912011-10-25 19:34:20 +05301653 }
Vasanthakumar Thiagarajan11f6e402011-11-01 16:38:50 +05301654 spin_unlock_bh(&ar->list_lock);
Kalle Valobdcd8172011-07-18 00:22:30 +03001655
Vasanthakumar Thiagarajan6db8fa52011-10-25 19:34:16 +05301656 clear_bit(WMI_READY, &ar->flag);
Kalle Valobdcd8172011-07-18 00:22:30 +03001657
Vasanthakumar Thiagarajan6db8fa52011-10-25 19:34:16 +05301658 /*
1659 * After wmi_shudown all WMI events will be dropped. We
1660 * need to cleanup the buffers allocated in AP mode and
1661 * give disconnect notification to stack, which usually
1662 * happens in the disconnect_event. Simulate the disconnect
1663 * event by calling the function directly. Sometimes
1664 * disconnect_event will be received when the debug logs
1665 * are collected.
1666 */
1667 ath6kl_wmi_shutdown(ar->wmi);
Kalle Valobdcd8172011-07-18 00:22:30 +03001668
Vasanthakumar Thiagarajan6db8fa52011-10-25 19:34:16 +05301669 clear_bit(WMI_ENABLED, &ar->flag);
1670 if (ar->htc_target) {
1671 ath6kl_dbg(ATH6KL_DBG_TRC, "%s: shut down htc\n", __func__);
1672 ath6kl_htc_stop(ar->htc_target);
Kalle Valobdcd8172011-07-18 00:22:30 +03001673 }
1674
Vasanthakumar Thiagarajan6db8fa52011-10-25 19:34:16 +05301675 /*
1676 * Try to reset the device if we can. The driver may have been
1677 * configure NOT to reset the target during a debug session.
1678 */
1679 ath6kl_dbg(ATH6KL_DBG_TRC,
Kalle Valo96f1fad2012-03-07 20:03:57 +02001680 "attempting to reset target on instance destroy\n");
Vasanthakumar Thiagarajan6db8fa52011-10-25 19:34:16 +05301681 ath6kl_reset_device(ar, ar->target_type, true, true);
Kalle Valobdcd8172011-07-18 00:22:30 +03001682
Vasanthakumar Thiagarajan6db8fa52011-10-25 19:34:16 +05301683 clear_bit(WLAN_ENABLED, &ar->flag);
Vasanthakumar Thiagarajane8ad9a02012-02-14 20:32:59 +05301684
1685 up(&ar->sem);
Kalle Valobdcd8172011-07-18 00:22:30 +03001686}
Kalle Valod6a434d2012-01-17 20:09:36 +02001687EXPORT_SYMBOL(ath6kl_stop_txrx);