Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 1 | /* |
| 2 | * This file is part of wl1271 |
| 3 | * |
Luciano Coelho | 2f826f5 | 2010-03-26 12:53:21 +0200 | [diff] [blame] | 4 | * Copyright (C) 2008-2010 Nokia Corporation |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 5 | * |
| 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 Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 24 | #include <linux/slab.h> |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 25 | |
Shahar Levi | 00d2010 | 2010-11-08 11:20:10 +0000 | [diff] [blame] | 26 | #include "acx.h" |
| 27 | #include "reg.h" |
| 28 | #include "boot.h" |
| 29 | #include "io.h" |
| 30 | #include "event.h" |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 31 | |
| 32 | static 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 Oikarinen | 451de97 | 2009-10-12 15:08:46 +0300 | [diff] [blame] | 42 | .mem2 = { |
| 43 | .start = 0x00000000, |
| 44 | .size = 0x00000000 |
| 45 | }, |
| 46 | .mem3 = { |
| 47 | .start = 0x00000000, |
| 48 | .size = 0x00000000 |
| 49 | }, |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 50 | }, |
| 51 | |
| 52 | [PART_WORK] = { |
| 53 | .mem = { |
| 54 | .start = 0x00040000, |
| 55 | .size = 0x00014fc0 |
| 56 | }, |
| 57 | .reg = { |
| 58 | .start = REGISTERS_BASE, |
Juuso Oikarinen | 451de97 | 2009-10-12 15:08:46 +0300 | [diff] [blame] | 59 | .size = 0x0000a000 |
| 60 | }, |
| 61 | .mem2 = { |
| 62 | .start = 0x003004f8, |
| 63 | .size = 0x00000004 |
| 64 | }, |
| 65 | .mem3 = { |
| 66 | .start = 0x00040404, |
| 67 | .size = 0x00000000 |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 68 | }, |
| 69 | }, |
| 70 | |
| 71 | [PART_DRPW] = { |
| 72 | .mem = { |
| 73 | .start = 0x00040000, |
| 74 | .size = 0x00014fc0 |
| 75 | }, |
| 76 | .reg = { |
| 77 | .start = DRPW_BASE, |
| 78 | .size = 0x00006000 |
Juuso Oikarinen | 451de97 | 2009-10-12 15:08:46 +0300 | [diff] [blame] | 79 | }, |
| 80 | .mem2 = { |
| 81 | .start = 0x00000000, |
| 82 | .size = 0x00000000 |
| 83 | }, |
| 84 | .mem3 = { |
| 85 | .start = 0x00000000, |
| 86 | .size = 0x00000000 |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 87 | } |
| 88 | } |
| 89 | }; |
| 90 | |
| 91 | static 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 Paasikivi | 7b048c5 | 2010-02-18 13:25:55 +0200 | [diff] [blame] | 96 | cpu_ctrl = wl1271_read32(wl, ACX_REG_ECPU_CONTROL); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 97 | |
| 98 | /* 10.5.1 run the firmware (II) */ |
| 99 | cpu_ctrl |= flag; |
Teemu Paasikivi | 7b048c5 | 2010-02-18 13:25:55 +0200 | [diff] [blame] | 100 | wl1271_write32(wl, ACX_REG_ECPU_CONTROL, cpu_ctrl); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 101 | } |
| 102 | |
| 103 | static void wl1271_boot_fw_version(struct wl1271 *wl) |
| 104 | { |
| 105 | struct wl1271_static_data static_data; |
| 106 | |
Teemu Paasikivi | 7b048c5 | 2010-02-18 13:25:55 +0200 | [diff] [blame] | 107 | wl1271_read(wl, wl->cmd_box_addr, &static_data, sizeof(static_data), |
| 108 | false); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 109 | |
| 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 | |
| 117 | static int wl1271_boot_upload_firmware_chunk(struct wl1271 *wl, void *buf, |
| 118 | size_t fw_data_len, u32 dest) |
| 119 | { |
Juuso Oikarinen | 451de97 | 2009-10-12 15:08:46 +0300 | [diff] [blame] | 120 | struct wl1271_partition_set partition; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 121 | int addr, chunk_num, partition_limit; |
Juuso Oikarinen | 1fba497 | 2009-10-08 21:56:32 +0300 | [diff] [blame] | 122 | u8 *p, *chunk; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 123 | |
| 124 | /* whal_FwCtrl_LoadFwImageSm() */ |
| 125 | |
| 126 | wl1271_debug(DEBUG_BOOT, "starting firmware upload"); |
| 127 | |
Luciano Coelho | 73d0a13 | 2009-08-11 11:58:27 +0300 | [diff] [blame] | 128 | wl1271_debug(DEBUG_BOOT, "fw_data_len %zd chunk_size %d", |
| 129 | fw_data_len, CHUNK_SIZE); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 130 | |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 131 | if ((fw_data_len % 4) != 0) { |
| 132 | wl1271_error("firmware length not multiple of four"); |
| 133 | return -EIO; |
| 134 | } |
| 135 | |
Juuso Oikarinen | 1fba497 | 2009-10-08 21:56:32 +0300 | [diff] [blame] | 136 | chunk = kmalloc(CHUNK_SIZE, GFP_KERNEL); |
Juuso Oikarinen | ed317788 | 2009-10-13 12:47:57 +0300 | [diff] [blame] | 137 | if (!chunk) { |
Juuso Oikarinen | 1fba497 | 2009-10-08 21:56:32 +0300 | [diff] [blame] | 138 | wl1271_error("allocation for firmware upload chunk failed"); |
| 139 | return -ENOMEM; |
| 140 | } |
| 141 | |
Juuso Oikarinen | 451de97 | 2009-10-12 15:08:46 +0300 | [diff] [blame] | 142 | memcpy(&partition, &part_table[PART_DOWN], sizeof(partition)); |
| 143 | partition.mem.start = dest; |
| 144 | wl1271_set_partition(wl, &partition); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 145 | |
| 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 Oikarinen | 451de97 | 2009-10-12 15:08:46 +0300 | [diff] [blame] | 157 | partition.mem.start = addr; |
| 158 | wl1271_set_partition(wl, &partition); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 159 | } |
| 160 | |
| 161 | /* 10.3 upload the chunk */ |
| 162 | addr = dest + chunk_num * CHUNK_SIZE; |
| 163 | p = buf + chunk_num * CHUNK_SIZE; |
Juuso Oikarinen | 1fba497 | 2009-10-08 21:56:32 +0300 | [diff] [blame] | 164 | memcpy(chunk, p, CHUNK_SIZE); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 165 | wl1271_debug(DEBUG_BOOT, "uploading fw chunk 0x%p to 0x%x", |
| 166 | p, addr); |
Teemu Paasikivi | 7b048c5 | 2010-02-18 13:25:55 +0200 | [diff] [blame] | 167 | wl1271_write(wl, addr, chunk, CHUNK_SIZE, false); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 168 | |
| 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 Oikarinen | 1fba497 | 2009-10-08 21:56:32 +0300 | [diff] [blame] | 175 | memcpy(chunk, p, fw_data_len % CHUNK_SIZE); |
Luciano Coelho | 73d0a13 | 2009-08-11 11:58:27 +0300 | [diff] [blame] | 176 | wl1271_debug(DEBUG_BOOT, "uploading fw last chunk (%zd B) 0x%p to 0x%x", |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 177 | fw_data_len % CHUNK_SIZE, p, addr); |
Teemu Paasikivi | 7b048c5 | 2010-02-18 13:25:55 +0200 | [diff] [blame] | 178 | wl1271_write(wl, addr, chunk, fw_data_len % CHUNK_SIZE, false); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 179 | |
Juuso Oikarinen | 1fba497 | 2009-10-08 21:56:32 +0300 | [diff] [blame] | 180 | kfree(chunk); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 181 | return 0; |
| 182 | } |
| 183 | |
| 184 | static int wl1271_boot_upload_firmware(struct wl1271 *wl) |
| 185 | { |
| 186 | u32 chunks, addr, len; |
Juuso Oikarinen | ed317788 | 2009-10-13 12:47:57 +0300 | [diff] [blame] | 187 | int ret = 0; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 188 | u8 *fw; |
| 189 | |
| 190 | fw = wl->fw; |
Luciano Coelho | d0f63b2 | 2009-10-15 10:33:29 +0300 | [diff] [blame] | 191 | chunks = be32_to_cpup((__be32 *) fw); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 192 | fw += sizeof(u32); |
| 193 | |
| 194 | wl1271_debug(DEBUG_BOOT, "firmware chunks to be uploaded: %u", chunks); |
| 195 | |
| 196 | while (chunks--) { |
Luciano Coelho | d0f63b2 | 2009-10-15 10:33:29 +0300 | [diff] [blame] | 197 | addr = be32_to_cpup((__be32 *) fw); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 198 | fw += sizeof(u32); |
Luciano Coelho | d0f63b2 | 2009-10-15 10:33:29 +0300 | [diff] [blame] | 199 | len = be32_to_cpup((__be32 *) fw); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 200 | 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 Oikarinen | ed317788 | 2009-10-13 12:47:57 +0300 | [diff] [blame] | 208 | ret = wl1271_boot_upload_firmware_chunk(wl, fw, len, addr); |
| 209 | if (ret != 0) |
| 210 | break; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 211 | fw += len; |
| 212 | } |
| 213 | |
Juuso Oikarinen | ed317788 | 2009-10-13 12:47:57 +0300 | [diff] [blame] | 214 | return ret; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 215 | } |
| 216 | |
| 217 | static 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 Oikarinen | 152ee6e | 2010-02-18 13:25:42 +0200 | [diff] [blame] | 222 | u8 *nvs_ptr, *nvs_aligned; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 223 | |
Juuso Oikarinen | 152ee6e | 2010-02-18 13:25:42 +0200 | [diff] [blame] | 224 | if (wl->nvs == NULL) |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 225 | return -ENODEV; |
| 226 | |
Juuso Oikarinen | 02fabb0 | 2010-08-19 04:41:15 +0200 | [diff] [blame] | 227 | /* |
| 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 Coelho | 8cf5e8e | 2009-12-11 15:40:53 +0200 | [diff] [blame] | 249 | /* only the first part of the NVS needs to be uploaded */ |
Juuso Oikarinen | 152ee6e | 2010-02-18 13:25:42 +0200 | [diff] [blame] | 250 | nvs_len = sizeof(wl->nvs->nvs); |
| 251 | nvs_ptr = (u8 *)wl->nvs->nvs; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 252 | |
Juuso Oikarinen | 1b72aec | 2010-03-18 12:26:39 +0200 | [diff] [blame] | 253 | /* 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 Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 261 | /* |
| 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 Oikarinen | 2f63b01 | 2010-08-10 06:38:35 +0200 | [diff] [blame] | 275 | /* |
| 276 | * Due to our new wl1271_translate_reg_addr function, |
| 277 | * we need to add the REGISTER_BASE to the destination |
| 278 | */ |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 279 | 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 Paasikivi | 7b048c5 | 2010-02-18 13:25:55 +0200 | [diff] [blame] | 291 | wl1271_write32(wl, dest_addr, val); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 292 | |
| 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 Yariv | 67e0208 | 2010-09-22 09:53:13 +0200 | [diff] [blame] | 300 | * is located at an aligned offset which is at least 7 bytes further. |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 301 | */ |
Ido Yariv | 67e0208 | 2010-09-22 09:53:13 +0200 | [diff] [blame] | 302 | nvs_ptr = (u8 *)wl->nvs->nvs + |
| 303 | ALIGN(nvs_ptr - (u8 *)wl->nvs->nvs + 7, 4); |
Juuso Oikarinen | 152ee6e | 2010-02-18 13:25:42 +0200 | [diff] [blame] | 304 | nvs_len -= nvs_ptr - (u8 *)wl->nvs->nvs; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 305 | |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 306 | /* Now we must set the partition correctly */ |
Juuso Oikarinen | 451de97 | 2009-10-12 15:08:46 +0300 | [diff] [blame] | 307 | wl1271_set_partition(wl, &part_table[PART_WORK]); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 308 | |
| 309 | /* Copy the NVS tables to a new block to ensure alignment */ |
Ido Yariv | 67e0208 | 2010-09-22 09:53:13 +0200 | [diff] [blame] | 310 | nvs_aligned = kmemdup(nvs_ptr, nvs_len, GFP_KERNEL); |
| 311 | if (!nvs_aligned) |
| 312 | return -ENOMEM; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 313 | |
| 314 | /* And finally we upload the NVS tables */ |
Teemu Paasikivi | 7b048c5 | 2010-02-18 13:25:55 +0200 | [diff] [blame] | 315 | wl1271_write(wl, CMD_MBOX_ADDRESS, nvs_aligned, nvs_len, false); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 316 | |
| 317 | kfree(nvs_aligned); |
| 318 | return 0; |
| 319 | } |
| 320 | |
| 321 | static void wl1271_boot_enable_interrupts(struct wl1271 *wl) |
| 322 | { |
Teemu Paasikivi | 54f7e50 | 2010-02-22 08:38:22 +0200 | [diff] [blame] | 323 | wl1271_enable_interrupts(wl); |
Teemu Paasikivi | 7b048c5 | 2010-02-18 13:25:55 +0200 | [diff] [blame] | 324 | 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 Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 327 | } |
| 328 | |
| 329 | static int wl1271_boot_soft_reset(struct wl1271 *wl) |
| 330 | { |
| 331 | unsigned long timeout; |
| 332 | u32 boot_data; |
| 333 | |
| 334 | /* perform soft reset */ |
Teemu Paasikivi | 7b048c5 | 2010-02-18 13:25:55 +0200 | [diff] [blame] | 335 | wl1271_write32(wl, ACX_REG_SLV_SOFT_RESET, ACX_SLV_SOFT_RESET_BIT); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 336 | |
| 337 | /* SOFT_RESET is self clearing */ |
| 338 | timeout = jiffies + usecs_to_jiffies(SOFT_RESET_MAX_TIME); |
| 339 | while (1) { |
Teemu Paasikivi | 7b048c5 | 2010-02-18 13:25:55 +0200 | [diff] [blame] | 340 | boot_data = wl1271_read32(wl, ACX_REG_SLV_SOFT_RESET); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 341 | 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 Paasikivi | 7b048c5 | 2010-02-18 13:25:55 +0200 | [diff] [blame] | 356 | wl1271_write32(wl, ENABLE, 0x0); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 357 | |
| 358 | /* disable auto calibration on start*/ |
Teemu Paasikivi | 7b048c5 | 2010-02-18 13:25:55 +0200 | [diff] [blame] | 359 | wl1271_write32(wl, SPARE_A2, 0xffff); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 360 | |
| 361 | return 0; |
| 362 | } |
| 363 | |
| 364 | static int wl1271_boot_run_firmware(struct wl1271 *wl) |
| 365 | { |
| 366 | int loop, ret; |
Luciano Coelho | 23a7a51 | 2010-04-28 09:50:02 +0300 | [diff] [blame] | 367 | u32 chip_id, intr; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 368 | |
| 369 | wl1271_boot_set_ecpu_ctrl(wl, ECPU_CONTROL_HALT); |
| 370 | |
Teemu Paasikivi | 7b048c5 | 2010-02-18 13:25:55 +0200 | [diff] [blame] | 371 | chip_id = wl1271_read32(wl, CHIP_ID_B); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 372 | |
| 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 Coelho | 23a7a51 | 2010-04-28 09:50:02 +0300 | [diff] [blame] | 384 | intr = wl1271_read32(wl, ACX_REG_INTERRUPT_NO_CLEAR); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 385 | |
Luciano Coelho | 23a7a51 | 2010-04-28 09:50:02 +0300 | [diff] [blame] | 386 | if (intr == 0xffffffff) { |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 387 | wl1271_error("error reading hardware complete " |
| 388 | "init indication"); |
| 389 | return -EIO; |
| 390 | } |
| 391 | /* check that ACX_INTR_INIT_COMPLETE is enabled */ |
Luciano Coelho | 23a7a51 | 2010-04-28 09:50:02 +0300 | [diff] [blame] | 392 | else if (intr & WL1271_ACX_INTR_INIT_COMPLETE) { |
Teemu Paasikivi | 7b048c5 | 2010-02-18 13:25:55 +0200 | [diff] [blame] | 393 | wl1271_write32(wl, ACX_REG_INTERRUPT_ACK, |
| 394 | WL1271_ACX_INTR_INIT_COMPLETE); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 395 | break; |
| 396 | } |
| 397 | } |
| 398 | |
Luciano Coelho | e7d17cf | 2009-10-29 13:20:04 +0200 | [diff] [blame] | 399 | if (loop > INIT_LOOP) { |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 400 | wl1271_error("timeout waiting for the hardware to " |
| 401 | "complete initialization"); |
| 402 | return -EIO; |
| 403 | } |
| 404 | |
| 405 | /* get hardware config command mail box */ |
Teemu Paasikivi | 7b048c5 | 2010-02-18 13:25:55 +0200 | [diff] [blame] | 406 | wl->cmd_box_addr = wl1271_read32(wl, REG_COMMAND_MAILBOX_PTR); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 407 | |
| 408 | /* get hardware config event mail box */ |
Teemu Paasikivi | 7b048c5 | 2010-02-18 13:25:55 +0200 | [diff] [blame] | 409 | wl->event_box_addr = wl1271_read32(wl, REG_EVENT_MAILBOX_PTR); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 410 | |
| 411 | /* set the working partition to its "running" mode offset */ |
Juuso Oikarinen | 451de97 | 2009-10-12 15:08:46 +0300 | [diff] [blame] | 412 | wl1271_set_partition(wl, &part_table[PART_WORK]); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 413 | |
| 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 Oikarinen | be823e5 | 2009-10-08 21:56:36 +0300 | [diff] [blame] | 424 | /* unmask required mbox events */ |
| 425 | wl->event_mask = BSS_LOSE_EVENT_ID | |
Juuso Oikarinen | 19ad071 | 2009-11-02 20:22:11 +0200 | [diff] [blame] | 426 | SCAN_COMPLETE_EVENT_ID | |
Luciano Coelho | 99d84c1 | 2010-03-26 12:53:20 +0200 | [diff] [blame] | 427 | PS_REPORT_EVENT_ID | |
Luciano Coelho | 2f826f5 | 2010-03-26 12:53:21 +0200 | [diff] [blame] | 428 | JOIN_EVENT_COMPLETE_ID | |
Juuso Oikarinen | 00236aed | 2010-04-09 11:07:30 +0300 | [diff] [blame] | 429 | DISCONNECT_EVENT_COMPLETE_ID | |
Juuso Oikarinen | 90494a9 | 2010-07-08 17:50:00 +0300 | [diff] [blame] | 430 | RSSI_SNR_TRIGGER_0_EVENT_ID | |
Juuso Oikarinen | 8d2ef7b | 2010-07-08 17:50:03 +0300 | [diff] [blame] | 431 | PSPOLL_DELIVERY_FAILURE_EVENT_ID | |
| 432 | SOFT_GEMINI_SENSE_EVENT_ID; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 433 | |
Arik Nemtsov | 203c903 | 2010-10-25 11:17:44 +0200 | [diff] [blame] | 434 | if (wl->bss_type == BSS_TYPE_AP_BSS) |
| 435 | wl->event_mask |= STA_REMOVE_COMPLETE_EVENT_ID; |
| 436 | |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 437 | 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 | |
| 449 | static int wl1271_boot_write_irq_polarity(struct wl1271 *wl) |
| 450 | { |
Juuso Oikarinen | e8768ee | 2009-10-12 15:08:48 +0300 | [diff] [blame] | 451 | u32 polarity; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 452 | |
Juuso Oikarinen | e8768ee | 2009-10-12 15:08:48 +0300 | [diff] [blame] | 453 | polarity = wl1271_top_reg_read(wl, OCP_REG_POLARITY); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 454 | |
| 455 | /* We use HIGH polarity, so unset the LOW bit */ |
| 456 | polarity &= ~POLARITY_LOW; |
Juuso Oikarinen | e8768ee | 2009-10-12 15:08:48 +0300 | [diff] [blame] | 457 | wl1271_top_reg_write(wl, OCP_REG_POLARITY, polarity); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 458 | |
| 459 | return 0; |
| 460 | } |
| 461 | |
Juuso Oikarinen | d717fd6 | 2010-05-07 11:38:58 +0300 | [diff] [blame] | 462 | static 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 Quadros | 870c367 | 2010-11-29 16:24:57 +0200 | [diff] [blame] | 472 | /* uploads NVS and firmware */ |
| 473 | int wl1271_load_firmware(struct wl1271 *wl) |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 474 | { |
| 475 | int ret = 0; |
| 476 | u32 tmp, clk, pause; |
| 477 | |
Juuso Oikarinen | d717fd6 | 2010-05-07 11:38:58 +0300 | [diff] [blame] | 478 | wl1271_boot_hw_version(wl); |
| 479 | |
Gery Kahn | c8aea56 | 2010-10-05 16:09:05 +0200 | [diff] [blame] | 480 | if (wl->ref_clock == 0 || wl->ref_clock == 2 || wl->ref_clock == 4) |
Juuso Oikarinen | 284134e | 2009-10-12 15:08:49 +0300 | [diff] [blame] | 481 | /* ref clk: 19.2/38.4/38.4-XTAL */ |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 482 | clk = 0x3; |
Gery Kahn | c8aea56 | 2010-10-05 16:09:05 +0200 | [diff] [blame] | 483 | else if (wl->ref_clock == 1 || wl->ref_clock == 3) |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 484 | /* ref clk: 26/52 */ |
| 485 | clk = 0x5; |
Ohad Ben-Cohen | 15cea99 | 2010-09-16 01:31:51 +0200 | [diff] [blame] | 486 | else |
| 487 | return -EINVAL; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 488 | |
Gery Kahn | c8aea56 | 2010-10-05 16:09:05 +0200 | [diff] [blame] | 489 | if (wl->ref_clock != 0) { |
Juuso Oikarinen | 284134e | 2009-10-12 15:08:49 +0300 | [diff] [blame] | 490 | u16 val; |
Juuso Oikarinen | 9d4e5bb | 2010-03-26 12:53:15 +0200 | [diff] [blame] | 491 | /* Set clock type (open drain) */ |
Juuso Oikarinen | 284134e | 2009-10-12 15:08:49 +0300 | [diff] [blame] | 492 | val = wl1271_top_reg_read(wl, OCP_REG_CLK_TYPE); |
| 493 | val &= FREF_CLK_TYPE_BITS; |
Juuso Oikarinen | 284134e | 2009-10-12 15:08:49 +0300 | [diff] [blame] | 494 | wl1271_top_reg_write(wl, OCP_REG_CLK_TYPE, val); |
Juuso Oikarinen | 9d4e5bb | 2010-03-26 12:53:15 +0200 | [diff] [blame] | 495 | |
| 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 Oikarinen | 284134e | 2009-10-12 15:08:49 +0300 | [diff] [blame] | 500 | } 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 Paasikivi | 7b048c5 | 2010-02-18 13:25:55 +0200 | [diff] [blame] | 509 | wl1271_write32(wl, PLL_PARAMETERS, clk); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 510 | |
Teemu Paasikivi | 7b048c5 | 2010-02-18 13:25:55 +0200 | [diff] [blame] | 511 | pause = wl1271_read32(wl, PLL_PARAMETERS); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 512 | |
| 513 | wl1271_debug(DEBUG_BOOT, "pause1 0x%x", pause); |
| 514 | |
Juuso Oikarinen | 2f63b01 | 2010-08-10 06:38:35 +0200 | [diff] [blame] | 515 | pause &= ~(WU_COUNTER_PAUSE_VAL); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 516 | pause |= WU_COUNTER_PAUSE_VAL; |
Teemu Paasikivi | 7b048c5 | 2010-02-18 13:25:55 +0200 | [diff] [blame] | 517 | wl1271_write32(wl, WU_COUNTER_PAUSE, pause); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 518 | |
| 519 | /* Continue the ELP wake up sequence */ |
Teemu Paasikivi | 7b048c5 | 2010-02-18 13:25:55 +0200 | [diff] [blame] | 520 | wl1271_write32(wl, WELP_ARM_COMMAND, WELP_ARM_COMMAND_VAL); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 521 | udelay(500); |
| 522 | |
Juuso Oikarinen | 451de97 | 2009-10-12 15:08:46 +0300 | [diff] [blame] | 523 | wl1271_set_partition(wl, &part_table[PART_DRPW]); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 524 | |
| 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 Paasikivi | 7b048c5 | 2010-02-18 13:25:55 +0200 | [diff] [blame] | 530 | clk = wl1271_read32(wl, DRPW_SCRATCH_START); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 531 | |
| 532 | wl1271_debug(DEBUG_BOOT, "clk2 0x%x", clk); |
| 533 | |
Gery Kahn | c8aea56 | 2010-10-05 16:09:05 +0200 | [diff] [blame] | 534 | clk |= (wl->ref_clock << 1) << 4; |
Teemu Paasikivi | 7b048c5 | 2010-02-18 13:25:55 +0200 | [diff] [blame] | 535 | wl1271_write32(wl, DRPW_SCRATCH_START, clk); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 536 | |
Juuso Oikarinen | 451de97 | 2009-10-12 15:08:46 +0300 | [diff] [blame] | 537 | wl1271_set_partition(wl, &part_table[PART_WORK]); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 538 | |
| 539 | /* Disable interrupts */ |
Teemu Paasikivi | 7b048c5 | 2010-02-18 13:25:55 +0200 | [diff] [blame] | 540 | wl1271_write32(wl, ACX_REG_INTERRUPT_MASK, WL1271_ACX_INTR_ALL); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 541 | |
| 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 Paasikivi | 7b048c5 | 2010-02-18 13:25:55 +0200 | [diff] [blame] | 555 | wl1271_write32(wl, ACX_EEPROMLESS_IND_REG, ACX_EEPROMLESS_IND_REG); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 556 | |
Teemu Paasikivi | 7b048c5 | 2010-02-18 13:25:55 +0200 | [diff] [blame] | 557 | tmp = wl1271_read32(wl, CHIP_ID_B); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 558 | |
| 559 | wl1271_debug(DEBUG_BOOT, "chip id 0x%x", tmp); |
| 560 | |
| 561 | /* 6. read the EEPROM parameters */ |
Teemu Paasikivi | 7b048c5 | 2010-02-18 13:25:55 +0200 | [diff] [blame] | 562 | tmp = wl1271_read32(wl, SCR_PAD2); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 563 | |
| 564 | ret = wl1271_boot_write_irq_polarity(wl); |
| 565 | if (ret < 0) |
| 566 | goto out; |
| 567 | |
Teemu Paasikivi | 7b048c5 | 2010-02-18 13:25:55 +0200 | [diff] [blame] | 568 | wl1271_write32(wl, ACX_REG_INTERRUPT_MASK, |
| 569 | WL1271_ACX_ALL_EVENTS_VECTOR); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 570 | |
| 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 Quadros | 870c367 | 2010-11-29 16:24:57 +0200 | [diff] [blame] | 578 | out: |
| 579 | return ret; |
| 580 | } |
| 581 | EXPORT_SYMBOL_GPL(wl1271_load_firmware); |
| 582 | |
| 583 | int 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 Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 592 | /* 10.5 start firmware */ |
| 593 | ret = wl1271_boot_run_firmware(wl); |
| 594 | if (ret < 0) |
| 595 | goto out; |
| 596 | |
Juuso Oikarinen | eb5b28d | 2009-10-13 12:47:45 +0300 | [diff] [blame] | 597 | /* Enable firmware interrupts now */ |
| 598 | wl1271_boot_enable_interrupts(wl); |
| 599 | |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 600 | /* 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 | |
| 606 | out: |
| 607 | return ret; |
| 608 | } |