blob: b504367f281f15384aa5684047ca8b7b190604d2 [file] [log] [blame]
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001/*
2 * This file is part of wl1271
3 *
Luciano Coelho2f826f52010-03-26 12:53:21 +02004 * Copyright (C) 2008-2010 Nokia Corporation
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03005 *
6 * Contact: Luciano Coelho <luciano.coelho@nokia.com>
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * version 2 as published by the Free Software Foundation.
11 *
12 * This program is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
20 * 02110-1301 USA
21 *
22 */
23
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090024#include <linux/slab.h>
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030025
Shahar Levi00d20102010-11-08 11:20:10 +000026#include "acx.h"
27#include "reg.h"
28#include "boot.h"
29#include "io.h"
30#include "event.h"
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030031
32static struct wl1271_partition_set part_table[PART_TABLE_LEN] = {
33 [PART_DOWN] = {
34 .mem = {
35 .start = 0x00000000,
36 .size = 0x000177c0
37 },
38 .reg = {
39 .start = REGISTERS_BASE,
40 .size = 0x00008800
41 },
Juuso Oikarinen451de972009-10-12 15:08:46 +030042 .mem2 = {
43 .start = 0x00000000,
44 .size = 0x00000000
45 },
46 .mem3 = {
47 .start = 0x00000000,
48 .size = 0x00000000
49 },
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030050 },
51
52 [PART_WORK] = {
53 .mem = {
54 .start = 0x00040000,
55 .size = 0x00014fc0
56 },
57 .reg = {
58 .start = REGISTERS_BASE,
Juuso Oikarinen451de972009-10-12 15:08:46 +030059 .size = 0x0000a000
60 },
61 .mem2 = {
62 .start = 0x003004f8,
63 .size = 0x00000004
64 },
65 .mem3 = {
66 .start = 0x00040404,
67 .size = 0x00000000
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030068 },
69 },
70
71 [PART_DRPW] = {
72 .mem = {
73 .start = 0x00040000,
74 .size = 0x00014fc0
75 },
76 .reg = {
77 .start = DRPW_BASE,
78 .size = 0x00006000
Juuso Oikarinen451de972009-10-12 15:08:46 +030079 },
80 .mem2 = {
81 .start = 0x00000000,
82 .size = 0x00000000
83 },
84 .mem3 = {
85 .start = 0x00000000,
86 .size = 0x00000000
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030087 }
88 }
89};
90
91static void wl1271_boot_set_ecpu_ctrl(struct wl1271 *wl, u32 flag)
92{
93 u32 cpu_ctrl;
94
95 /* 10.5.0 run the firmware (I) */
Teemu Paasikivi7b048c52010-02-18 13:25:55 +020096 cpu_ctrl = wl1271_read32(wl, ACX_REG_ECPU_CONTROL);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030097
98 /* 10.5.1 run the firmware (II) */
99 cpu_ctrl |= flag;
Teemu Paasikivi7b048c52010-02-18 13:25:55 +0200100 wl1271_write32(wl, ACX_REG_ECPU_CONTROL, cpu_ctrl);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300101}
102
103static void wl1271_boot_fw_version(struct wl1271 *wl)
104{
105 struct wl1271_static_data static_data;
106
Teemu Paasikivi7b048c52010-02-18 13:25:55 +0200107 wl1271_read(wl, wl->cmd_box_addr, &static_data, sizeof(static_data),
108 false);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300109
110 strncpy(wl->chip.fw_ver, static_data.fw_version,
111 sizeof(wl->chip.fw_ver));
112
113 /* make sure the string is NULL-terminated */
114 wl->chip.fw_ver[sizeof(wl->chip.fw_ver) - 1] = '\0';
115}
116
117static int wl1271_boot_upload_firmware_chunk(struct wl1271 *wl, void *buf,
118 size_t fw_data_len, u32 dest)
119{
Juuso Oikarinen451de972009-10-12 15:08:46 +0300120 struct wl1271_partition_set partition;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300121 int addr, chunk_num, partition_limit;
Juuso Oikarinen1fba4972009-10-08 21:56:32 +0300122 u8 *p, *chunk;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300123
124 /* whal_FwCtrl_LoadFwImageSm() */
125
126 wl1271_debug(DEBUG_BOOT, "starting firmware upload");
127
Luciano Coelho73d0a132009-08-11 11:58:27 +0300128 wl1271_debug(DEBUG_BOOT, "fw_data_len %zd chunk_size %d",
129 fw_data_len, CHUNK_SIZE);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300130
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300131 if ((fw_data_len % 4) != 0) {
132 wl1271_error("firmware length not multiple of four");
133 return -EIO;
134 }
135
Juuso Oikarinen1fba4972009-10-08 21:56:32 +0300136 chunk = kmalloc(CHUNK_SIZE, GFP_KERNEL);
Juuso Oikarinened3177882009-10-13 12:47:57 +0300137 if (!chunk) {
Juuso Oikarinen1fba4972009-10-08 21:56:32 +0300138 wl1271_error("allocation for firmware upload chunk failed");
139 return -ENOMEM;
140 }
141
Juuso Oikarinen451de972009-10-12 15:08:46 +0300142 memcpy(&partition, &part_table[PART_DOWN], sizeof(partition));
143 partition.mem.start = dest;
144 wl1271_set_partition(wl, &partition);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300145
146 /* 10.1 set partition limit and chunk num */
147 chunk_num = 0;
148 partition_limit = part_table[PART_DOWN].mem.size;
149
150 while (chunk_num < fw_data_len / CHUNK_SIZE) {
151 /* 10.2 update partition, if needed */
152 addr = dest + (chunk_num + 2) * CHUNK_SIZE;
153 if (addr > partition_limit) {
154 addr = dest + chunk_num * CHUNK_SIZE;
155 partition_limit = chunk_num * CHUNK_SIZE +
156 part_table[PART_DOWN].mem.size;
Juuso Oikarinen451de972009-10-12 15:08:46 +0300157 partition.mem.start = addr;
158 wl1271_set_partition(wl, &partition);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300159 }
160
161 /* 10.3 upload the chunk */
162 addr = dest + chunk_num * CHUNK_SIZE;
163 p = buf + chunk_num * CHUNK_SIZE;
Juuso Oikarinen1fba4972009-10-08 21:56:32 +0300164 memcpy(chunk, p, CHUNK_SIZE);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300165 wl1271_debug(DEBUG_BOOT, "uploading fw chunk 0x%p to 0x%x",
166 p, addr);
Teemu Paasikivi7b048c52010-02-18 13:25:55 +0200167 wl1271_write(wl, addr, chunk, CHUNK_SIZE, false);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300168
169 chunk_num++;
170 }
171
172 /* 10.4 upload the last chunk */
173 addr = dest + chunk_num * CHUNK_SIZE;
174 p = buf + chunk_num * CHUNK_SIZE;
Juuso Oikarinen1fba4972009-10-08 21:56:32 +0300175 memcpy(chunk, p, fw_data_len % CHUNK_SIZE);
Luciano Coelho73d0a132009-08-11 11:58:27 +0300176 wl1271_debug(DEBUG_BOOT, "uploading fw last chunk (%zd B) 0x%p to 0x%x",
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300177 fw_data_len % CHUNK_SIZE, p, addr);
Teemu Paasikivi7b048c52010-02-18 13:25:55 +0200178 wl1271_write(wl, addr, chunk, fw_data_len % CHUNK_SIZE, false);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300179
Juuso Oikarinen1fba4972009-10-08 21:56:32 +0300180 kfree(chunk);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300181 return 0;
182}
183
184static int wl1271_boot_upload_firmware(struct wl1271 *wl)
185{
186 u32 chunks, addr, len;
Juuso Oikarinened3177882009-10-13 12:47:57 +0300187 int ret = 0;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300188 u8 *fw;
189
190 fw = wl->fw;
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300191 chunks = be32_to_cpup((__be32 *) fw);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300192 fw += sizeof(u32);
193
194 wl1271_debug(DEBUG_BOOT, "firmware chunks to be uploaded: %u", chunks);
195
196 while (chunks--) {
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300197 addr = be32_to_cpup((__be32 *) fw);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300198 fw += sizeof(u32);
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300199 len = be32_to_cpup((__be32 *) fw);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300200 fw += sizeof(u32);
201
202 if (len > 300000) {
203 wl1271_info("firmware chunk too long: %u", len);
204 return -EINVAL;
205 }
206 wl1271_debug(DEBUG_BOOT, "chunk %d addr 0x%x len %u",
207 chunks, addr, len);
Juuso Oikarinened3177882009-10-13 12:47:57 +0300208 ret = wl1271_boot_upload_firmware_chunk(wl, fw, len, addr);
209 if (ret != 0)
210 break;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300211 fw += len;
212 }
213
Juuso Oikarinened3177882009-10-13 12:47:57 +0300214 return ret;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300215}
216
217static int wl1271_boot_upload_nvs(struct wl1271 *wl)
218{
219 size_t nvs_len, burst_len;
220 int i;
221 u32 dest_addr, val;
Juuso Oikarinen152ee6e2010-02-18 13:25:42 +0200222 u8 *nvs_ptr, *nvs_aligned;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300223
Juuso Oikarinen152ee6e2010-02-18 13:25:42 +0200224 if (wl->nvs == NULL)
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300225 return -ENODEV;
226
Juuso Oikarinen02fabb02010-08-19 04:41:15 +0200227 /*
228 * FIXME: the LEGACY NVS image support (NVS's missing the 5GHz band
229 * configurations) can be removed when those NVS files stop floating
230 * around.
231 */
232 if (wl->nvs_len == sizeof(struct wl1271_nvs_file) ||
233 wl->nvs_len == WL1271_INI_LEGACY_NVS_FILE_SIZE) {
234 if (wl->nvs->general_params.dual_mode_select)
235 wl->enable_11a = true;
236 }
237
238 if (wl->nvs_len != sizeof(struct wl1271_nvs_file) &&
239 (wl->nvs_len != WL1271_INI_LEGACY_NVS_FILE_SIZE ||
240 wl->enable_11a)) {
241 wl1271_error("nvs size is not as expected: %zu != %zu",
242 wl->nvs_len, sizeof(struct wl1271_nvs_file));
243 kfree(wl->nvs);
244 wl->nvs = NULL;
245 wl->nvs_len = 0;
246 return -EILSEQ;
247 }
248
Luciano Coelho8cf5e8e2009-12-11 15:40:53 +0200249 /* only the first part of the NVS needs to be uploaded */
Juuso Oikarinen152ee6e2010-02-18 13:25:42 +0200250 nvs_len = sizeof(wl->nvs->nvs);
251 nvs_ptr = (u8 *)wl->nvs->nvs;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300252
Juuso Oikarinen1b72aec2010-03-18 12:26:39 +0200253 /* update current MAC address to NVS */
254 nvs_ptr[11] = wl->mac_addr[0];
255 nvs_ptr[10] = wl->mac_addr[1];
256 nvs_ptr[6] = wl->mac_addr[2];
257 nvs_ptr[5] = wl->mac_addr[3];
258 nvs_ptr[4] = wl->mac_addr[4];
259 nvs_ptr[3] = wl->mac_addr[5];
260
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300261 /*
262 * Layout before the actual NVS tables:
263 * 1 byte : burst length.
264 * 2 bytes: destination address.
265 * n bytes: data to burst copy.
266 *
267 * This is ended by a 0 length, then the NVS tables.
268 */
269
270 /* FIXME: Do we need to check here whether the LSB is 1? */
271 while (nvs_ptr[0]) {
272 burst_len = nvs_ptr[0];
273 dest_addr = (nvs_ptr[1] & 0xfe) | ((u32)(nvs_ptr[2] << 8));
274
Juuso Oikarinen2f63b012010-08-10 06:38:35 +0200275 /*
276 * Due to our new wl1271_translate_reg_addr function,
277 * we need to add the REGISTER_BASE to the destination
278 */
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300279 dest_addr += REGISTERS_BASE;
280
281 /* We move our pointer to the data */
282 nvs_ptr += 3;
283
284 for (i = 0; i < burst_len; i++) {
285 val = (nvs_ptr[0] | (nvs_ptr[1] << 8)
286 | (nvs_ptr[2] << 16) | (nvs_ptr[3] << 24));
287
288 wl1271_debug(DEBUG_BOOT,
289 "nvs burst write 0x%x: 0x%x",
290 dest_addr, val);
Teemu Paasikivi7b048c52010-02-18 13:25:55 +0200291 wl1271_write32(wl, dest_addr, val);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300292
293 nvs_ptr += 4;
294 dest_addr += 4;
295 }
296 }
297
298 /*
299 * We've reached the first zero length, the first NVS table
Ido Yariv67e02082010-09-22 09:53:13 +0200300 * is located at an aligned offset which is at least 7 bytes further.
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300301 */
Ido Yariv67e02082010-09-22 09:53:13 +0200302 nvs_ptr = (u8 *)wl->nvs->nvs +
303 ALIGN(nvs_ptr - (u8 *)wl->nvs->nvs + 7, 4);
Juuso Oikarinen152ee6e2010-02-18 13:25:42 +0200304 nvs_len -= nvs_ptr - (u8 *)wl->nvs->nvs;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300305
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300306 /* Now we must set the partition correctly */
Juuso Oikarinen451de972009-10-12 15:08:46 +0300307 wl1271_set_partition(wl, &part_table[PART_WORK]);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300308
309 /* Copy the NVS tables to a new block to ensure alignment */
Ido Yariv67e02082010-09-22 09:53:13 +0200310 nvs_aligned = kmemdup(nvs_ptr, nvs_len, GFP_KERNEL);
311 if (!nvs_aligned)
312 return -ENOMEM;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300313
314 /* And finally we upload the NVS tables */
Teemu Paasikivi7b048c52010-02-18 13:25:55 +0200315 wl1271_write(wl, CMD_MBOX_ADDRESS, nvs_aligned, nvs_len, false);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300316
317 kfree(nvs_aligned);
318 return 0;
319}
320
321static void wl1271_boot_enable_interrupts(struct wl1271 *wl)
322{
Teemu Paasikivi54f7e502010-02-22 08:38:22 +0200323 wl1271_enable_interrupts(wl);
Teemu Paasikivi7b048c52010-02-18 13:25:55 +0200324 wl1271_write32(wl, ACX_REG_INTERRUPT_MASK,
325 WL1271_ACX_INTR_ALL & ~(WL1271_INTR_MASK));
326 wl1271_write32(wl, HI_CFG, HI_CFG_DEF_VAL);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300327}
328
329static int wl1271_boot_soft_reset(struct wl1271 *wl)
330{
331 unsigned long timeout;
332 u32 boot_data;
333
334 /* perform soft reset */
Teemu Paasikivi7b048c52010-02-18 13:25:55 +0200335 wl1271_write32(wl, ACX_REG_SLV_SOFT_RESET, ACX_SLV_SOFT_RESET_BIT);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300336
337 /* SOFT_RESET is self clearing */
338 timeout = jiffies + usecs_to_jiffies(SOFT_RESET_MAX_TIME);
339 while (1) {
Teemu Paasikivi7b048c52010-02-18 13:25:55 +0200340 boot_data = wl1271_read32(wl, ACX_REG_SLV_SOFT_RESET);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300341 wl1271_debug(DEBUG_BOOT, "soft reset bootdata 0x%x", boot_data);
342 if ((boot_data & ACX_SLV_SOFT_RESET_BIT) == 0)
343 break;
344
345 if (time_after(jiffies, timeout)) {
346 /* 1.2 check pWhalBus->uSelfClearTime if the
347 * timeout was reached */
348 wl1271_error("soft reset timeout");
349 return -1;
350 }
351
352 udelay(SOFT_RESET_STALL_TIME);
353 }
354
355 /* disable Rx/Tx */
Teemu Paasikivi7b048c52010-02-18 13:25:55 +0200356 wl1271_write32(wl, ENABLE, 0x0);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300357
358 /* disable auto calibration on start*/
Teemu Paasikivi7b048c52010-02-18 13:25:55 +0200359 wl1271_write32(wl, SPARE_A2, 0xffff);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300360
361 return 0;
362}
363
364static int wl1271_boot_run_firmware(struct wl1271 *wl)
365{
366 int loop, ret;
Luciano Coelho23a7a512010-04-28 09:50:02 +0300367 u32 chip_id, intr;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300368
369 wl1271_boot_set_ecpu_ctrl(wl, ECPU_CONTROL_HALT);
370
Teemu Paasikivi7b048c52010-02-18 13:25:55 +0200371 chip_id = wl1271_read32(wl, CHIP_ID_B);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300372
373 wl1271_debug(DEBUG_BOOT, "chip id after firmware boot: 0x%x", chip_id);
374
375 if (chip_id != wl->chip.id) {
376 wl1271_error("chip id doesn't match after firmware boot");
377 return -EIO;
378 }
379
380 /* wait for init to complete */
381 loop = 0;
382 while (loop++ < INIT_LOOP) {
383 udelay(INIT_LOOP_DELAY);
Luciano Coelho23a7a512010-04-28 09:50:02 +0300384 intr = wl1271_read32(wl, ACX_REG_INTERRUPT_NO_CLEAR);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300385
Luciano Coelho23a7a512010-04-28 09:50:02 +0300386 if (intr == 0xffffffff) {
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300387 wl1271_error("error reading hardware complete "
388 "init indication");
389 return -EIO;
390 }
391 /* check that ACX_INTR_INIT_COMPLETE is enabled */
Luciano Coelho23a7a512010-04-28 09:50:02 +0300392 else if (intr & WL1271_ACX_INTR_INIT_COMPLETE) {
Teemu Paasikivi7b048c52010-02-18 13:25:55 +0200393 wl1271_write32(wl, ACX_REG_INTERRUPT_ACK,
394 WL1271_ACX_INTR_INIT_COMPLETE);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300395 break;
396 }
397 }
398
Luciano Coelhoe7d17cf2009-10-29 13:20:04 +0200399 if (loop > INIT_LOOP) {
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300400 wl1271_error("timeout waiting for the hardware to "
401 "complete initialization");
402 return -EIO;
403 }
404
405 /* get hardware config command mail box */
Teemu Paasikivi7b048c52010-02-18 13:25:55 +0200406 wl->cmd_box_addr = wl1271_read32(wl, REG_COMMAND_MAILBOX_PTR);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300407
408 /* get hardware config event mail box */
Teemu Paasikivi7b048c52010-02-18 13:25:55 +0200409 wl->event_box_addr = wl1271_read32(wl, REG_EVENT_MAILBOX_PTR);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300410
411 /* set the working partition to its "running" mode offset */
Juuso Oikarinen451de972009-10-12 15:08:46 +0300412 wl1271_set_partition(wl, &part_table[PART_WORK]);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300413
414 wl1271_debug(DEBUG_MAILBOX, "cmd_box_addr 0x%x event_box_addr 0x%x",
415 wl->cmd_box_addr, wl->event_box_addr);
416
417 wl1271_boot_fw_version(wl);
418
419 /*
420 * in case of full asynchronous mode the firmware event must be
421 * ready to receive event from the command mailbox
422 */
423
Juuso Oikarinenbe823e52009-10-08 21:56:36 +0300424 /* unmask required mbox events */
425 wl->event_mask = BSS_LOSE_EVENT_ID |
Juuso Oikarinen19ad0712009-11-02 20:22:11 +0200426 SCAN_COMPLETE_EVENT_ID |
Luciano Coelho99d84c12010-03-26 12:53:20 +0200427 PS_REPORT_EVENT_ID |
Luciano Coelho2f826f52010-03-26 12:53:21 +0200428 JOIN_EVENT_COMPLETE_ID |
Juuso Oikarinen00236aed2010-04-09 11:07:30 +0300429 DISCONNECT_EVENT_COMPLETE_ID |
Juuso Oikarinen90494a92010-07-08 17:50:00 +0300430 RSSI_SNR_TRIGGER_0_EVENT_ID |
Juuso Oikarinen8d2ef7b2010-07-08 17:50:03 +0300431 PSPOLL_DELIVERY_FAILURE_EVENT_ID |
432 SOFT_GEMINI_SENSE_EVENT_ID;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300433
Arik Nemtsov203c9032010-10-25 11:17:44 +0200434 if (wl->bss_type == BSS_TYPE_AP_BSS)
435 wl->event_mask |= STA_REMOVE_COMPLETE_EVENT_ID;
436
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300437 ret = wl1271_event_unmask(wl);
438 if (ret < 0) {
439 wl1271_error("EVENT mask setting failed");
440 return ret;
441 }
442
443 wl1271_event_mbox_config(wl);
444
445 /* firmware startup completed */
446 return 0;
447}
448
449static int wl1271_boot_write_irq_polarity(struct wl1271 *wl)
450{
Juuso Oikarinene8768ee2009-10-12 15:08:48 +0300451 u32 polarity;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300452
Juuso Oikarinene8768ee2009-10-12 15:08:48 +0300453 polarity = wl1271_top_reg_read(wl, OCP_REG_POLARITY);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300454
455 /* We use HIGH polarity, so unset the LOW bit */
456 polarity &= ~POLARITY_LOW;
Juuso Oikarinene8768ee2009-10-12 15:08:48 +0300457 wl1271_top_reg_write(wl, OCP_REG_POLARITY, polarity);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300458
459 return 0;
460}
461
Juuso Oikarinend717fd62010-05-07 11:38:58 +0300462static void wl1271_boot_hw_version(struct wl1271 *wl)
463{
464 u32 fuse;
465
466 fuse = wl1271_top_reg_read(wl, REG_FUSE_DATA_2_1);
467 fuse = (fuse & PG_VER_MASK) >> PG_VER_OFFSET;
468
469 wl->hw_pg_ver = (s8)fuse;
470}
471
Roger Quadros870c3672010-11-29 16:24:57 +0200472/* uploads NVS and firmware */
473int wl1271_load_firmware(struct wl1271 *wl)
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300474{
475 int ret = 0;
476 u32 tmp, clk, pause;
477
Juuso Oikarinend717fd62010-05-07 11:38:58 +0300478 wl1271_boot_hw_version(wl);
479
Gery Kahnc8aea562010-10-05 16:09:05 +0200480 if (wl->ref_clock == 0 || wl->ref_clock == 2 || wl->ref_clock == 4)
Juuso Oikarinen284134e2009-10-12 15:08:49 +0300481 /* ref clk: 19.2/38.4/38.4-XTAL */
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300482 clk = 0x3;
Gery Kahnc8aea562010-10-05 16:09:05 +0200483 else if (wl->ref_clock == 1 || wl->ref_clock == 3)
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300484 /* ref clk: 26/52 */
485 clk = 0x5;
Ohad Ben-Cohen15cea992010-09-16 01:31:51 +0200486 else
487 return -EINVAL;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300488
Gery Kahnc8aea562010-10-05 16:09:05 +0200489 if (wl->ref_clock != 0) {
Juuso Oikarinen284134e2009-10-12 15:08:49 +0300490 u16 val;
Juuso Oikarinen9d4e5bb2010-03-26 12:53:15 +0200491 /* Set clock type (open drain) */
Juuso Oikarinen284134e2009-10-12 15:08:49 +0300492 val = wl1271_top_reg_read(wl, OCP_REG_CLK_TYPE);
493 val &= FREF_CLK_TYPE_BITS;
Juuso Oikarinen284134e2009-10-12 15:08:49 +0300494 wl1271_top_reg_write(wl, OCP_REG_CLK_TYPE, val);
Juuso Oikarinen9d4e5bb2010-03-26 12:53:15 +0200495
496 /* Set clock pull mode (no pull) */
497 val = wl1271_top_reg_read(wl, OCP_REG_CLK_PULL);
498 val |= NO_PULL;
499 wl1271_top_reg_write(wl, OCP_REG_CLK_PULL, val);
Juuso Oikarinen284134e2009-10-12 15:08:49 +0300500 } else {
501 u16 val;
502 /* Set clock polarity */
503 val = wl1271_top_reg_read(wl, OCP_REG_CLK_POLARITY);
504 val &= FREF_CLK_POLARITY_BITS;
505 val |= CLK_REQ_OUTN_SEL;
506 wl1271_top_reg_write(wl, OCP_REG_CLK_POLARITY, val);
507 }
508
Teemu Paasikivi7b048c52010-02-18 13:25:55 +0200509 wl1271_write32(wl, PLL_PARAMETERS, clk);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300510
Teemu Paasikivi7b048c52010-02-18 13:25:55 +0200511 pause = wl1271_read32(wl, PLL_PARAMETERS);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300512
513 wl1271_debug(DEBUG_BOOT, "pause1 0x%x", pause);
514
Juuso Oikarinen2f63b012010-08-10 06:38:35 +0200515 pause &= ~(WU_COUNTER_PAUSE_VAL);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300516 pause |= WU_COUNTER_PAUSE_VAL;
Teemu Paasikivi7b048c52010-02-18 13:25:55 +0200517 wl1271_write32(wl, WU_COUNTER_PAUSE, pause);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300518
519 /* Continue the ELP wake up sequence */
Teemu Paasikivi7b048c52010-02-18 13:25:55 +0200520 wl1271_write32(wl, WELP_ARM_COMMAND, WELP_ARM_COMMAND_VAL);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300521 udelay(500);
522
Juuso Oikarinen451de972009-10-12 15:08:46 +0300523 wl1271_set_partition(wl, &part_table[PART_DRPW]);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300524
525 /* Read-modify-write DRPW_SCRATCH_START register (see next state)
526 to be used by DRPw FW. The RTRIM value will be added by the FW
527 before taking DRPw out of reset */
528
529 wl1271_debug(DEBUG_BOOT, "DRPW_SCRATCH_START %08x", DRPW_SCRATCH_START);
Teemu Paasikivi7b048c52010-02-18 13:25:55 +0200530 clk = wl1271_read32(wl, DRPW_SCRATCH_START);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300531
532 wl1271_debug(DEBUG_BOOT, "clk2 0x%x", clk);
533
Gery Kahnc8aea562010-10-05 16:09:05 +0200534 clk |= (wl->ref_clock << 1) << 4;
Teemu Paasikivi7b048c52010-02-18 13:25:55 +0200535 wl1271_write32(wl, DRPW_SCRATCH_START, clk);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300536
Juuso Oikarinen451de972009-10-12 15:08:46 +0300537 wl1271_set_partition(wl, &part_table[PART_WORK]);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300538
539 /* Disable interrupts */
Teemu Paasikivi7b048c52010-02-18 13:25:55 +0200540 wl1271_write32(wl, ACX_REG_INTERRUPT_MASK, WL1271_ACX_INTR_ALL);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300541
542 ret = wl1271_boot_soft_reset(wl);
543 if (ret < 0)
544 goto out;
545
546 /* 2. start processing NVS file */
547 ret = wl1271_boot_upload_nvs(wl);
548 if (ret < 0)
549 goto out;
550
551 /* write firmware's last address (ie. it's length) to
552 * ACX_EEPROMLESS_IND_REG */
553 wl1271_debug(DEBUG_BOOT, "ACX_EEPROMLESS_IND_REG");
554
Teemu Paasikivi7b048c52010-02-18 13:25:55 +0200555 wl1271_write32(wl, ACX_EEPROMLESS_IND_REG, ACX_EEPROMLESS_IND_REG);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300556
Teemu Paasikivi7b048c52010-02-18 13:25:55 +0200557 tmp = wl1271_read32(wl, CHIP_ID_B);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300558
559 wl1271_debug(DEBUG_BOOT, "chip id 0x%x", tmp);
560
561 /* 6. read the EEPROM parameters */
Teemu Paasikivi7b048c52010-02-18 13:25:55 +0200562 tmp = wl1271_read32(wl, SCR_PAD2);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300563
564 ret = wl1271_boot_write_irq_polarity(wl);
565 if (ret < 0)
566 goto out;
567
Teemu Paasikivi7b048c52010-02-18 13:25:55 +0200568 wl1271_write32(wl, ACX_REG_INTERRUPT_MASK,
569 WL1271_ACX_ALL_EVENTS_VECTOR);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300570
571 /* WL1271: The reference driver skips steps 7 to 10 (jumps directly
572 * to upload_fw) */
573
574 ret = wl1271_boot_upload_firmware(wl);
575 if (ret < 0)
576 goto out;
577
Roger Quadros870c3672010-11-29 16:24:57 +0200578out:
579 return ret;
580}
581EXPORT_SYMBOL_GPL(wl1271_load_firmware);
582
583int wl1271_boot(struct wl1271 *wl)
584{
585 int ret;
586
587 /* upload NVS and firmware */
588 ret = wl1271_load_firmware(wl);
589 if (ret)
590 return ret;
591
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300592 /* 10.5 start firmware */
593 ret = wl1271_boot_run_firmware(wl);
594 if (ret < 0)
595 goto out;
596
Juuso Oikarineneb5b28d2009-10-13 12:47:45 +0300597 /* Enable firmware interrupts now */
598 wl1271_boot_enable_interrupts(wl);
599
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300600 /* set the wl1271 default filters */
601 wl->rx_config = WL1271_DEFAULT_RX_CONFIG;
602 wl->rx_filter = WL1271_DEFAULT_RX_FILTER;
603
604 wl1271_event_mbox_config(wl);
605
606out:
607 return ret;
608}