blob: ad01cd2a59ecdfc17489c72967b8931d49a54f08 [file] [log] [blame]
Solomon Peachya910e4a2013-05-24 20:04:38 -04001/*
2 * Firmware I/O code for mac80211 ST-Ericsson CW1200 drivers
3 *
4 * Copyright (c) 2010, ST-Ericsson
5 * Author: Dmitry Tarnyagin <dmitry.tarnyagin@lockless.no>
6 *
7 * Based on:
8 * ST-Ericsson UMAC CW1200 driver which is
9 * Copyright (c) 2010, ST-Ericsson
10 * Author: Ajitpal Singh <ajitpal.singh@stericsson.com>
11 *
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License version 2 as
14 * published by the Free Software Foundation.
15 */
16
17#include <linux/init.h>
18#include <linux/vmalloc.h>
19#include <linux/sched.h>
20#include <linux/firmware.h>
21
22#include "cw1200.h"
23#include "fwio.h"
24#include "hwio.h"
25#include "sbus.h"
26#include "bh.h"
27
28static int cw1200_get_hw_type(u32 config_reg_val, int *major_revision)
29{
30 int hw_type = -1;
31 u32 silicon_type = (config_reg_val >> 24) & 0x7;
32 u32 silicon_vers = (config_reg_val >> 31) & 0x1;
33
34 switch (silicon_type) {
35 case 0x00:
36 *major_revision = 1;
37 hw_type = HIF_9000_SILICON_VERSATILE;
38 break;
39 case 0x01:
40 case 0x02: /* CW1x00 */
41 case 0x04: /* CW1x60 */
42 *major_revision = silicon_type;
43 if (silicon_vers)
44 hw_type = HIF_8601_VERSATILE;
45 else
46 hw_type = HIF_8601_SILICON;
47 break;
48 default:
49 break;
50 }
51
52 return hw_type;
53}
54
55static int cw1200_load_firmware_cw1200(struct cw1200_common *priv)
56{
57 int ret, block, num_blocks;
58 unsigned i;
59 u32 val32;
60 u32 put = 0, get = 0;
61 u8 *buf = NULL;
62 const char *fw_path;
63 const struct firmware *firmware = NULL;
64
65 /* Macroses are local. */
66#define APB_WRITE(reg, val) \
67 do { \
68 ret = cw1200_apb_write_32(priv, CW1200_APB(reg), (val)); \
69 if (ret < 0) \
70 goto error; \
71 } while (0)
72#define APB_READ(reg, val) \
73 do { \
74 ret = cw1200_apb_read_32(priv, CW1200_APB(reg), &(val)); \
75 if (ret < 0) \
76 goto error; \
77 } while (0)
78#define REG_WRITE(reg, val) \
79 do { \
80 ret = cw1200_reg_write_32(priv, (reg), (val)); \
81 if (ret < 0) \
82 goto error; \
83 } while (0)
84#define REG_READ(reg, val) \
85 do { \
86 ret = cw1200_reg_read_32(priv, (reg), &(val)); \
87 if (ret < 0) \
88 goto error; \
89 } while (0)
90
91 switch (priv->hw_revision) {
92 case CW1200_HW_REV_CUT10:
93 fw_path = FIRMWARE_CUT10;
94 if (!priv->sdd_path)
95 priv->sdd_path = SDD_FILE_10;
96 break;
97 case CW1200_HW_REV_CUT11:
98 fw_path = FIRMWARE_CUT11;
99 if (!priv->sdd_path)
100 priv->sdd_path = SDD_FILE_11;
101 break;
102 case CW1200_HW_REV_CUT20:
103 fw_path = FIRMWARE_CUT20;
104 if (!priv->sdd_path)
105 priv->sdd_path = SDD_FILE_20;
106 break;
107 case CW1200_HW_REV_CUT22:
108 fw_path = FIRMWARE_CUT22;
109 if (!priv->sdd_path)
110 priv->sdd_path = SDD_FILE_22;
111 break;
112 case CW1X60_HW_REV:
113 fw_path = FIRMWARE_CW1X60;
114 if (!priv->sdd_path)
115 priv->sdd_path = SDD_FILE_CW1X60;
116 break;
117 default:
118 pr_err("Invalid silicon revision %d.\n", priv->hw_revision);
119 return -EINVAL;
120 }
121
122 /* Initialize common registers */
123 APB_WRITE(DOWNLOAD_IMAGE_SIZE_REG, DOWNLOAD_ARE_YOU_HERE);
124 APB_WRITE(DOWNLOAD_PUT_REG, 0);
125 APB_WRITE(DOWNLOAD_GET_REG, 0);
126 APB_WRITE(DOWNLOAD_STATUS_REG, DOWNLOAD_PENDING);
127 APB_WRITE(DOWNLOAD_FLAGS_REG, 0);
128
129 /* Write the NOP Instruction */
130 REG_WRITE(ST90TDS_SRAM_BASE_ADDR_REG_ID, 0xFFF20000);
131 REG_WRITE(ST90TDS_AHB_DPORT_REG_ID, 0xEAFFFFFE);
132
133 /* Release CPU from RESET */
134 REG_READ(ST90TDS_CONFIG_REG_ID, val32);
135 val32 &= ~ST90TDS_CONFIG_CPU_RESET_BIT;
136 REG_WRITE(ST90TDS_CONFIG_REG_ID, val32);
137
138 /* Enable Clock */
139 val32 &= ~ST90TDS_CONFIG_CPU_CLK_DIS_BIT;
140 REG_WRITE(ST90TDS_CONFIG_REG_ID, val32);
141
142#ifdef CONFIG_CW1200_ETF
143 if (etf_mode)
144 fw_path = etf_firmware;
145#endif
146
147 /* Load a firmware file */
148 ret = request_firmware(&firmware, fw_path, priv->pdev);
149 if (ret) {
150 pr_err("Can't load firmware file %s.\n", fw_path);
151 goto error;
152 }
153
154 buf = kmalloc(DOWNLOAD_BLOCK_SIZE, GFP_KERNEL | GFP_DMA);
155 if (!buf) {
156 pr_err("Can't allocate firmware load buffer.\n");
157 ret = -ENOMEM;
158 goto error;
159 }
160
161 /* Check if the bootloader is ready */
162 for (i = 0; i < 100; i += 1 + i / 2) {
163 APB_READ(DOWNLOAD_IMAGE_SIZE_REG, val32);
164 if (val32 == DOWNLOAD_I_AM_HERE)
165 break;
166 mdelay(i);
167 } /* End of for loop */
168
169 if (val32 != DOWNLOAD_I_AM_HERE) {
170 pr_err("Bootloader is not ready.\n");
171 ret = -ETIMEDOUT;
172 goto error;
173 }
174
175 /* Calculcate number of download blocks */
176 num_blocks = (firmware->size - 1) / DOWNLOAD_BLOCK_SIZE + 1;
177
178 /* Updating the length in Download Ctrl Area */
179 val32 = firmware->size; /* Explicit cast from size_t to u32 */
180 APB_WRITE(DOWNLOAD_IMAGE_SIZE_REG, val32);
181
182 /* Firmware downloading loop */
183 for (block = 0; block < num_blocks; block++) {
184 size_t tx_size;
185 size_t block_size;
186
187 /* check the download status */
188 APB_READ(DOWNLOAD_STATUS_REG, val32);
189 if (val32 != DOWNLOAD_PENDING) {
190 pr_err("Bootloader reported error %d.\n", val32);
191 ret = -EIO;
192 goto error;
193 }
194
195 /* loop until put - get <= 24K */
196 for (i = 0; i < 100; i++) {
197 APB_READ(DOWNLOAD_GET_REG, get);
198 if ((put - get) <=
199 (DOWNLOAD_FIFO_SIZE - DOWNLOAD_BLOCK_SIZE))
200 break;
201 mdelay(i);
202 }
203
204 if ((put - get) > (DOWNLOAD_FIFO_SIZE - DOWNLOAD_BLOCK_SIZE)) {
205 pr_err("Timeout waiting for FIFO.\n");
206 ret = -ETIMEDOUT;
207 goto error;
208 }
209
210 /* calculate the block size */
211 tx_size = block_size = min((size_t)(firmware->size - put),
212 (size_t)DOWNLOAD_BLOCK_SIZE);
213
214 memcpy(buf, &firmware->data[put], block_size);
215 if (block_size < DOWNLOAD_BLOCK_SIZE) {
216 memset(&buf[block_size], 0,
217 DOWNLOAD_BLOCK_SIZE - block_size);
218 tx_size = DOWNLOAD_BLOCK_SIZE;
219 }
220
221 /* send the block to sram */
222 ret = cw1200_apb_write(priv,
223 CW1200_APB(DOWNLOAD_FIFO_OFFSET +
224 (put & (DOWNLOAD_FIFO_SIZE - 1))),
225 buf, tx_size);
226 if (ret < 0) {
227 pr_err("Can't write firmware block @ %d!\n",
228 put & (DOWNLOAD_FIFO_SIZE - 1));
229 goto error;
230 }
231
232 /* update the put register */
233 put += block_size;
234 APB_WRITE(DOWNLOAD_PUT_REG, put);
235 } /* End of firmware download loop */
236
237 /* Wait for the download completion */
238 for (i = 0; i < 300; i += 1 + i / 2) {
239 APB_READ(DOWNLOAD_STATUS_REG, val32);
240 if (val32 != DOWNLOAD_PENDING)
241 break;
242 mdelay(i);
243 }
244 if (val32 != DOWNLOAD_SUCCESS) {
245 pr_err("Wait for download completion failed: 0x%.8X\n", val32);
246 ret = -ETIMEDOUT;
247 goto error;
248 } else {
249 pr_info("Firmware download completed.\n");
250 ret = 0;
251 }
252
253error:
254 kfree(buf);
255 if (firmware)
256 release_firmware(firmware);
257 return ret;
258
259#undef APB_WRITE
260#undef APB_READ
261#undef REG_WRITE
262#undef REG_READ
263}
264
265
266static int config_reg_read(struct cw1200_common *priv, u32 *val)
267{
268 switch (priv->hw_type) {
269 case HIF_9000_SILICON_VERSATILE: {
270 u16 val16;
271 int ret = cw1200_reg_read_16(priv,
272 ST90TDS_CONFIG_REG_ID,
273 &val16);
274 if (ret < 0)
275 return ret;
276 *val = val16;
277 return 0;
278 }
279 case HIF_8601_VERSATILE:
280 case HIF_8601_SILICON:
281 default:
282 cw1200_reg_read_32(priv, ST90TDS_CONFIG_REG_ID, val);
283 break;
284 }
285 return 0;
286}
287
288static int config_reg_write(struct cw1200_common *priv, u32 val)
289{
290 switch (priv->hw_type) {
291 case HIF_9000_SILICON_VERSATILE:
292 return cw1200_reg_write_16(priv,
293 ST90TDS_CONFIG_REG_ID,
294 (u16)val);
295 case HIF_8601_VERSATILE:
296 case HIF_8601_SILICON:
297 default:
298 return cw1200_reg_write_32(priv, ST90TDS_CONFIG_REG_ID, val);
299 break;
300 }
301 return 0;
302}
303
304int cw1200_load_firmware(struct cw1200_common *priv)
305{
306 int ret;
307 int i;
308 u32 val32;
309 u16 val16;
310 int major_revision = -1;
311
312 /* Read CONFIG Register */
313 ret = cw1200_reg_read_32(priv, ST90TDS_CONFIG_REG_ID, &val32);
314 if (ret < 0) {
315 pr_err("Can't read config register.\n");
316 goto out;
317 }
318
319 if (val32 == 0 || val32 == 0xffffffff) {
320 pr_err("Bad config register value (0x%08x)\n", val32);
321 ret = -EIO;
322 goto out;
323 }
324
325 priv->hw_type = cw1200_get_hw_type(val32, &major_revision);
326 if (priv->hw_type < 0) {
327 pr_err("Can't deduce hardware type.\n");
328 ret = -ENOTSUPP;
329 goto out;
330 }
331
332 /* Set DPLL Reg value, and read back to confirm writes work */
333 ret = cw1200_reg_write_32(priv, ST90TDS_TSET_GEN_R_W_REG_ID,
334 cw1200_dpll_from_clk(priv->hw_refclk));
335 if (ret < 0) {
336 pr_err("Can't write DPLL register.\n");
337 goto out;
338 }
339
340 msleep(20);
341
342 ret = cw1200_reg_read_32(priv,
343 ST90TDS_TSET_GEN_R_W_REG_ID, &val32);
344 if (ret < 0) {
345 pr_err("Can't read DPLL register.\n");
346 goto out;
347 }
348
349 if (val32 != cw1200_dpll_from_clk(priv->hw_refclk)) {
350 pr_err("Unable to initialise DPLL register. Wrote 0x%.8X, Read 0x%.8X.\n",
351 cw1200_dpll_from_clk(priv->hw_refclk), val32);
352 ret = -EIO;
353 goto out;
354 }
355
356 /* Set wakeup bit in device */
357 ret = cw1200_reg_read_16(priv, ST90TDS_CONTROL_REG_ID, &val16);
358 if (ret < 0) {
359 pr_err("set_wakeup: can't read control register.\n");
360 goto out;
361 }
362
363 ret = cw1200_reg_write_16(priv, ST90TDS_CONTROL_REG_ID,
364 val16 | ST90TDS_CONT_WUP_BIT);
365 if (ret < 0) {
366 pr_err("set_wakeup: can't write control register.\n");
367 goto out;
368 }
369
370 /* Wait for wakeup */
371 for (i = 0; i < 300; i += (1 + i / 2)) {
372 ret = cw1200_reg_read_16(priv,
373 ST90TDS_CONTROL_REG_ID, &val16);
374 if (ret < 0) {
375 pr_err("wait_for_wakeup: can't read control register.\n");
376 goto out;
377 }
378
379 if (val16 & ST90TDS_CONT_RDY_BIT)
380 break;
381
382 msleep(i);
383 }
384
385 if ((val16 & ST90TDS_CONT_RDY_BIT) == 0) {
386 pr_err("wait_for_wakeup: device is not responding.\n");
387 ret = -ETIMEDOUT;
388 goto out;
389 }
390
391 switch (major_revision) {
392 case 1:
393 /* CW1200 Hardware detection logic : Check for CUT1.1 */
394 ret = cw1200_ahb_read_32(priv, CW1200_CUT_ID_ADDR, &val32);
395 if (ret) {
396 pr_err("HW detection: can't read CUT ID.\n");
397 goto out;
398 }
399
400 switch (val32) {
401 case CW1200_CUT_11_ID_STR:
402 pr_info("CW1x00 Cut 1.1 silicon detected.\n");
403 priv->hw_revision = CW1200_HW_REV_CUT11;
404 break;
405 default:
406 pr_info("CW1x00 Cut 1.0 silicon detected.\n");
407 priv->hw_revision = CW1200_HW_REV_CUT10;
408 break;
409 }
410
411 /* According to ST-E, CUT<2.0 has busted BA TID0-3.
412 Just disable it entirely...
413 */
414 priv->ba_rx_tid_mask = 0;
415 priv->ba_tx_tid_mask = 0;
416 break;
417 case 2: {
418 u32 ar1, ar2, ar3;
419 ret = cw1200_ahb_read_32(priv, CW1200_CUT2_ID_ADDR, &ar1);
420 if (ret) {
421 pr_err("(1) HW detection: can't read CUT ID\n");
422 goto out;
423 }
424 ret = cw1200_ahb_read_32(priv, CW1200_CUT2_ID_ADDR + 4, &ar2);
425 if (ret) {
426 pr_err("(2) HW detection: can't read CUT ID.\n");
427 goto out;
428 }
429
430 ret = cw1200_ahb_read_32(priv, CW1200_CUT2_ID_ADDR + 8, &ar3);
431 if (ret) {
432 pr_err("(3) HW detection: can't read CUT ID.\n");
433 goto out;
434 }
435
436 if (ar1 == CW1200_CUT_22_ID_STR1 &&
437 ar2 == CW1200_CUT_22_ID_STR2 &&
438 ar3 == CW1200_CUT_22_ID_STR3) {
439 pr_info("CW1x00 Cut 2.2 silicon detected.\n");
440 priv->hw_revision = CW1200_HW_REV_CUT22;
441 } else {
442 pr_info("CW1x00 Cut 2.0 silicon detected.\n");
443 priv->hw_revision = CW1200_HW_REV_CUT20;
444 }
445 break;
446 }
447 case 4:
448 pr_info("CW1x60 silicon detected.\n");
449 priv->hw_revision = CW1X60_HW_REV;
450 break;
451 default:
452 pr_err("Unsupported silicon major revision %d.\n",
453 major_revision);
454 ret = -ENOTSUPP;
455 goto out;
456 }
457
458 /* Checking for access mode */
459 ret = config_reg_read(priv, &val32);
460 if (ret < 0) {
461 pr_err("Can't read config register.\n");
462 goto out;
463 }
464
465 if (!(val32 & ST90TDS_CONFIG_ACCESS_MODE_BIT)) {
466 pr_err("Device is already in QUEUE mode!\n");
467 ret = -EINVAL;
468 goto out;
469 }
470
471 switch (priv->hw_type) {
472 case HIF_8601_SILICON:
473 if (priv->hw_revision == CW1X60_HW_REV) {
474 pr_err("Can't handle CW1160/1260 firmware load yet.\n");
475 ret = -ENOTSUPP;
476 goto out;
477 }
478 ret = cw1200_load_firmware_cw1200(priv);
479 break;
480 default:
481 pr_err("Can't perform firmware load for hw type %d.\n",
482 priv->hw_type);
483 ret = -ENOTSUPP;
484 goto out;
485 }
486 if (ret < 0) {
487 pr_err("Firmware load error.\n");
488 goto out;
489 }
490
491 /* Enable interrupt signalling */
492 priv->sbus_ops->lock(priv->sbus_priv);
493 ret = __cw1200_irq_enable(priv, 1);
494 priv->sbus_ops->unlock(priv->sbus_priv);
495 if (ret < 0)
496 goto unsubscribe;
497
498 /* Configure device for MESSSAGE MODE */
499 ret = config_reg_read(priv, &val32);
500 if (ret < 0) {
501 pr_err("Can't read config register.\n");
502 goto unsubscribe;
503 }
504 ret = config_reg_write(priv, val32 & ~ST90TDS_CONFIG_ACCESS_MODE_BIT);
505 if (ret < 0) {
506 pr_err("Can't write config register.\n");
507 goto unsubscribe;
508 }
509
510 /* Unless we read the CONFIG Register we are
511 * not able to get an interrupt
512 */
513 mdelay(10);
514 config_reg_read(priv, &val32);
515
516out:
517 return ret;
518
519unsubscribe:
520 /* Disable interrupt signalling */
521 priv->sbus_ops->lock(priv->sbus_priv);
522 ret = __cw1200_irq_enable(priv, 0);
523 priv->sbus_ops->unlock(priv->sbus_priv);
524 return ret;
525}