2 * This file is part of wl1271
4 * Copyright (C) 2008-2010 Nokia Corporation
6 * Contact: Luciano Coelho <luciano.coelho@nokia.com>
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.
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.
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
24 #include <linux/slab.h>
25 #include <linux/wl12xx.h>
26 #include <linux/export.h>
36 static struct wl1271_partition_set part_table
[PART_TABLE_LEN
] = {
43 .start
= REGISTERS_BASE
,
62 .start
= REGISTERS_BASE
,
95 static void wl1271_boot_set_ecpu_ctrl(struct wl1271
*wl
, u32 flag
)
99 /* 10.5.0 run the firmware (I) */
100 cpu_ctrl
= wl1271_read32(wl
, ACX_REG_ECPU_CONTROL
);
102 /* 10.5.1 run the firmware (II) */
104 wl1271_write32(wl
, ACX_REG_ECPU_CONTROL
, cpu_ctrl
);
107 static unsigned int wl12xx_get_fw_ver_quirks(struct wl1271
*wl
)
109 unsigned int quirks
= 0;
110 unsigned int *fw_ver
= wl
->chip
.fw_ver
;
112 /* Only new station firmwares support routing fw logs to the host */
113 if ((fw_ver
[FW_VER_IF_TYPE
] == FW_VER_IF_TYPE_STA
) &&
114 (fw_ver
[FW_VER_MINOR
] < FW_VER_MINOR_FWLOG_STA_MIN
))
115 quirks
|= WL12XX_QUIRK_FWLOG_NOT_IMPLEMENTED
;
117 /* This feature is not yet supported for AP mode */
118 if (fw_ver
[FW_VER_IF_TYPE
] == FW_VER_IF_TYPE_AP
)
119 quirks
|= WL12XX_QUIRK_FWLOG_NOT_IMPLEMENTED
;
124 static void wl1271_parse_fw_ver(struct wl1271
*wl
)
128 ret
= sscanf(wl
->chip
.fw_ver_str
+ 4, "%u.%u.%u.%u.%u",
129 &wl
->chip
.fw_ver
[0], &wl
->chip
.fw_ver
[1],
130 &wl
->chip
.fw_ver
[2], &wl
->chip
.fw_ver
[3],
131 &wl
->chip
.fw_ver
[4]);
134 wl1271_warning("fw version incorrect value");
135 memset(wl
->chip
.fw_ver
, 0, sizeof(wl
->chip
.fw_ver
));
139 /* Check if any quirks are needed with older fw versions */
140 wl
->quirks
|= wl12xx_get_fw_ver_quirks(wl
);
143 static void wl1271_boot_fw_version(struct wl1271
*wl
)
145 struct wl1271_static_data static_data
;
147 wl1271_read(wl
, wl
->cmd_box_addr
, &static_data
, sizeof(static_data
),
150 strncpy(wl
->chip
.fw_ver_str
, static_data
.fw_version
,
151 sizeof(wl
->chip
.fw_ver_str
));
153 /* make sure the string is NULL-terminated */
154 wl
->chip
.fw_ver_str
[sizeof(wl
->chip
.fw_ver_str
) - 1] = '\0';
156 wl1271_parse_fw_ver(wl
);
159 static int wl1271_boot_upload_firmware_chunk(struct wl1271
*wl
, void *buf
,
160 size_t fw_data_len
, u32 dest
)
162 struct wl1271_partition_set partition
;
163 int addr
, chunk_num
, partition_limit
;
166 /* whal_FwCtrl_LoadFwImageSm() */
168 wl1271_debug(DEBUG_BOOT
, "starting firmware upload");
170 wl1271_debug(DEBUG_BOOT
, "fw_data_len %zd chunk_size %d",
171 fw_data_len
, CHUNK_SIZE
);
173 if ((fw_data_len
% 4) != 0) {
174 wl1271_error("firmware length not multiple of four");
178 chunk
= kmalloc(CHUNK_SIZE
, GFP_KERNEL
);
180 wl1271_error("allocation for firmware upload chunk failed");
184 memcpy(&partition
, &part_table
[PART_DOWN
], sizeof(partition
));
185 partition
.mem
.start
= dest
;
186 wl1271_set_partition(wl
, &partition
);
188 /* 10.1 set partition limit and chunk num */
190 partition_limit
= part_table
[PART_DOWN
].mem
.size
;
192 while (chunk_num
< fw_data_len
/ CHUNK_SIZE
) {
193 /* 10.2 update partition, if needed */
194 addr
= dest
+ (chunk_num
+ 2) * CHUNK_SIZE
;
195 if (addr
> partition_limit
) {
196 addr
= dest
+ chunk_num
* CHUNK_SIZE
;
197 partition_limit
= chunk_num
* CHUNK_SIZE
+
198 part_table
[PART_DOWN
].mem
.size
;
199 partition
.mem
.start
= addr
;
200 wl1271_set_partition(wl
, &partition
);
203 /* 10.3 upload the chunk */
204 addr
= dest
+ chunk_num
* CHUNK_SIZE
;
205 p
= buf
+ chunk_num
* CHUNK_SIZE
;
206 memcpy(chunk
, p
, CHUNK_SIZE
);
207 wl1271_debug(DEBUG_BOOT
, "uploading fw chunk 0x%p to 0x%x",
209 wl1271_write(wl
, addr
, chunk
, CHUNK_SIZE
, false);
214 /* 10.4 upload the last chunk */
215 addr
= dest
+ chunk_num
* CHUNK_SIZE
;
216 p
= buf
+ chunk_num
* CHUNK_SIZE
;
217 memcpy(chunk
, p
, fw_data_len
% CHUNK_SIZE
);
218 wl1271_debug(DEBUG_BOOT
, "uploading fw last chunk (%zd B) 0x%p to 0x%x",
219 fw_data_len
% CHUNK_SIZE
, p
, addr
);
220 wl1271_write(wl
, addr
, chunk
, fw_data_len
% CHUNK_SIZE
, false);
226 static int wl1271_boot_upload_firmware(struct wl1271
*wl
)
228 u32 chunks
, addr
, len
;
233 chunks
= be32_to_cpup((__be32
*) fw
);
236 wl1271_debug(DEBUG_BOOT
, "firmware chunks to be uploaded: %u", chunks
);
239 addr
= be32_to_cpup((__be32
*) fw
);
241 len
= be32_to_cpup((__be32
*) fw
);
245 wl1271_info("firmware chunk too long: %u", len
);
248 wl1271_debug(DEBUG_BOOT
, "chunk %d addr 0x%x len %u",
250 ret
= wl1271_boot_upload_firmware_chunk(wl
, fw
, len
, addr
);
259 static int wl1271_boot_upload_nvs(struct wl1271
*wl
)
261 size_t nvs_len
, burst_len
;
264 u8
*nvs_ptr
, *nvs_aligned
;
269 if (wl
->chip
.id
== CHIP_ID_1283_PG20
) {
270 struct wl128x_nvs_file
*nvs
= (struct wl128x_nvs_file
*)wl
->nvs
;
272 if (wl
->nvs_len
== sizeof(struct wl128x_nvs_file
)) {
273 if (nvs
->general_params
.dual_mode_select
)
274 wl
->enable_11a
= true;
276 wl1271_error("nvs size is not as expected: %zu != %zu",
278 sizeof(struct wl128x_nvs_file
));
285 /* only the first part of the NVS needs to be uploaded */
286 nvs_len
= sizeof(nvs
->nvs
);
287 nvs_ptr
= (u8
*)nvs
->nvs
;
290 struct wl1271_nvs_file
*nvs
=
291 (struct wl1271_nvs_file
*)wl
->nvs
;
293 * FIXME: the LEGACY NVS image support (NVS's missing the 5GHz
294 * band configurations) can be removed when those NVS files stop
297 if (wl
->nvs_len
== sizeof(struct wl1271_nvs_file
) ||
298 wl
->nvs_len
== WL1271_INI_LEGACY_NVS_FILE_SIZE
) {
299 if (nvs
->general_params
.dual_mode_select
)
300 wl
->enable_11a
= true;
303 if (wl
->nvs_len
!= sizeof(struct wl1271_nvs_file
) &&
304 (wl
->nvs_len
!= WL1271_INI_LEGACY_NVS_FILE_SIZE
||
306 wl1271_error("nvs size is not as expected: %zu != %zu",
307 wl
->nvs_len
, sizeof(struct wl1271_nvs_file
));
314 /* only the first part of the NVS needs to be uploaded */
315 nvs_len
= sizeof(nvs
->nvs
);
316 nvs_ptr
= (u8
*) nvs
->nvs
;
319 /* update current MAC address to NVS */
320 nvs_ptr
[11] = wl
->mac_addr
[0];
321 nvs_ptr
[10] = wl
->mac_addr
[1];
322 nvs_ptr
[6] = wl
->mac_addr
[2];
323 nvs_ptr
[5] = wl
->mac_addr
[3];
324 nvs_ptr
[4] = wl
->mac_addr
[4];
325 nvs_ptr
[3] = wl
->mac_addr
[5];
328 * Layout before the actual NVS tables:
329 * 1 byte : burst length.
330 * 2 bytes: destination address.
331 * n bytes: data to burst copy.
333 * This is ended by a 0 length, then the NVS tables.
336 /* FIXME: Do we need to check here whether the LSB is 1? */
338 burst_len
= nvs_ptr
[0];
339 dest_addr
= (nvs_ptr
[1] & 0xfe) | ((u32
)(nvs_ptr
[2] << 8));
342 * Due to our new wl1271_translate_reg_addr function,
343 * we need to add the REGISTER_BASE to the destination
345 dest_addr
+= REGISTERS_BASE
;
347 /* We move our pointer to the data */
350 for (i
= 0; i
< burst_len
; i
++) {
351 if (nvs_ptr
+ 3 >= (u8
*) wl
->nvs
+ nvs_len
)
354 val
= (nvs_ptr
[0] | (nvs_ptr
[1] << 8)
355 | (nvs_ptr
[2] << 16) | (nvs_ptr
[3] << 24));
357 wl1271_debug(DEBUG_BOOT
,
358 "nvs burst write 0x%x: 0x%x",
360 wl1271_write32(wl
, dest_addr
, val
);
366 if (nvs_ptr
>= (u8
*) wl
->nvs
+ nvs_len
)
371 * We've reached the first zero length, the first NVS table
372 * is located at an aligned offset which is at least 7 bytes further.
373 * NOTE: The wl->nvs->nvs element must be first, in order to
374 * simplify the casting, we assume it is at the beginning of
375 * the wl->nvs structure.
377 nvs_ptr
= (u8
*)wl
->nvs
+
378 ALIGN(nvs_ptr
- (u8
*)wl
->nvs
+ 7, 4);
380 if (nvs_ptr
>= (u8
*) wl
->nvs
+ nvs_len
)
383 nvs_len
-= nvs_ptr
- (u8
*)wl
->nvs
;
385 /* Now we must set the partition correctly */
386 wl1271_set_partition(wl
, &part_table
[PART_WORK
]);
388 /* Copy the NVS tables to a new block to ensure alignment */
389 nvs_aligned
= kmemdup(nvs_ptr
, nvs_len
, GFP_KERNEL
);
393 /* And finally we upload the NVS tables */
394 wl1271_write(wl
, CMD_MBOX_ADDRESS
, nvs_aligned
, nvs_len
, false);
400 wl1271_error("nvs data is malformed");
404 static void wl1271_boot_enable_interrupts(struct wl1271
*wl
)
406 wl1271_enable_interrupts(wl
);
407 wl1271_write32(wl
, ACX_REG_INTERRUPT_MASK
,
408 WL1271_ACX_INTR_ALL
& ~(WL1271_INTR_MASK
));
409 wl1271_write32(wl
, HI_CFG
, HI_CFG_DEF_VAL
);
412 static int wl1271_boot_soft_reset(struct wl1271
*wl
)
414 unsigned long timeout
;
417 /* perform soft reset */
418 wl1271_write32(wl
, ACX_REG_SLV_SOFT_RESET
, ACX_SLV_SOFT_RESET_BIT
);
420 /* SOFT_RESET is self clearing */
421 timeout
= jiffies
+ usecs_to_jiffies(SOFT_RESET_MAX_TIME
);
423 boot_data
= wl1271_read32(wl
, ACX_REG_SLV_SOFT_RESET
);
424 wl1271_debug(DEBUG_BOOT
, "soft reset bootdata 0x%x", boot_data
);
425 if ((boot_data
& ACX_SLV_SOFT_RESET_BIT
) == 0)
428 if (time_after(jiffies
, timeout
)) {
429 /* 1.2 check pWhalBus->uSelfClearTime if the
430 * timeout was reached */
431 wl1271_error("soft reset timeout");
435 udelay(SOFT_RESET_STALL_TIME
);
439 wl1271_write32(wl
, ENABLE
, 0x0);
441 /* disable auto calibration on start*/
442 wl1271_write32(wl
, SPARE_A2
, 0xffff);
447 static int wl1271_boot_run_firmware(struct wl1271
*wl
)
452 wl1271_boot_set_ecpu_ctrl(wl
, ECPU_CONTROL_HALT
);
454 chip_id
= wl1271_read32(wl
, CHIP_ID_B
);
456 wl1271_debug(DEBUG_BOOT
, "chip id after firmware boot: 0x%x", chip_id
);
458 if (chip_id
!= wl
->chip
.id
) {
459 wl1271_error("chip id doesn't match after firmware boot");
463 /* wait for init to complete */
465 while (loop
++ < INIT_LOOP
) {
466 udelay(INIT_LOOP_DELAY
);
467 intr
= wl1271_read32(wl
, ACX_REG_INTERRUPT_NO_CLEAR
);
469 if (intr
== 0xffffffff) {
470 wl1271_error("error reading hardware complete "
474 /* check that ACX_INTR_INIT_COMPLETE is enabled */
475 else if (intr
& WL1271_ACX_INTR_INIT_COMPLETE
) {
476 wl1271_write32(wl
, ACX_REG_INTERRUPT_ACK
,
477 WL1271_ACX_INTR_INIT_COMPLETE
);
482 if (loop
> INIT_LOOP
) {
483 wl1271_error("timeout waiting for the hardware to "
484 "complete initialization");
488 /* get hardware config command mail box */
489 wl
->cmd_box_addr
= wl1271_read32(wl
, REG_COMMAND_MAILBOX_PTR
);
491 /* get hardware config event mail box */
492 wl
->event_box_addr
= wl1271_read32(wl
, REG_EVENT_MAILBOX_PTR
);
494 /* set the working partition to its "running" mode offset */
495 wl1271_set_partition(wl
, &part_table
[PART_WORK
]);
497 wl1271_debug(DEBUG_MAILBOX
, "cmd_box_addr 0x%x event_box_addr 0x%x",
498 wl
->cmd_box_addr
, wl
->event_box_addr
);
500 wl1271_boot_fw_version(wl
);
503 * in case of full asynchronous mode the firmware event must be
504 * ready to receive event from the command mailbox
507 /* unmask required mbox events */
508 wl
->event_mask
= BSS_LOSE_EVENT_ID
|
509 SCAN_COMPLETE_EVENT_ID
|
511 DISCONNECT_EVENT_COMPLETE_ID
|
512 RSSI_SNR_TRIGGER_0_EVENT_ID
|
513 PSPOLL_DELIVERY_FAILURE_EVENT_ID
|
514 SOFT_GEMINI_SENSE_EVENT_ID
|
515 PERIODIC_SCAN_REPORT_EVENT_ID
|
516 PERIODIC_SCAN_COMPLETE_EVENT_ID
|
517 DUMMY_PACKET_EVENT_ID
|
518 PEER_REMOVE_COMPLETE_EVENT_ID
|
519 BA_SESSION_RX_CONSTRAINT_EVENT_ID
|
520 REMAIN_ON_CHANNEL_COMPLETE_EVENT_ID
|
521 INACTIVE_STA_EVENT_ID
|
522 MAX_TX_RETRY_EVENT_ID
|
523 CHANNEL_SWITCH_COMPLETE_EVENT_ID
;
525 ret
= wl1271_event_unmask(wl
);
527 wl1271_error("EVENT mask setting failed");
531 wl1271_event_mbox_config(wl
);
533 /* firmware startup completed */
537 static int wl1271_boot_write_irq_polarity(struct wl1271
*wl
)
541 polarity
= wl1271_top_reg_read(wl
, OCP_REG_POLARITY
);
543 /* We use HIGH polarity, so unset the LOW bit */
544 polarity
&= ~POLARITY_LOW
;
545 wl1271_top_reg_write(wl
, OCP_REG_POLARITY
, polarity
);
550 static void wl1271_boot_hw_version(struct wl1271
*wl
)
554 if (wl
->chip
.id
== CHIP_ID_1283_PG20
)
555 fuse
= wl1271_top_reg_read(wl
, WL128X_REG_FUSE_DATA_2_1
);
557 fuse
= wl1271_top_reg_read(wl
, WL127X_REG_FUSE_DATA_2_1
);
558 fuse
= (fuse
& PG_VER_MASK
) >> PG_VER_OFFSET
;
560 wl
->hw_pg_ver
= (s8
)fuse
;
563 static int wl128x_switch_tcxo_to_fref(struct wl1271
*wl
)
567 /* Mask bits [2] & [8:4] in the sys_clk_cfg register */
568 spare_reg
= wl1271_top_reg_read(wl
, WL_SPARE_REG
);
569 if (spare_reg
== 0xFFFF)
571 spare_reg
|= (BIT(3) | BIT(5) | BIT(6));
572 wl1271_top_reg_write(wl
, WL_SPARE_REG
, spare_reg
);
574 /* Enable FREF_CLK_REQ & mux MCS and coex PLLs to FREF */
575 wl1271_top_reg_write(wl
, SYS_CLK_CFG_REG
,
576 WL_CLK_REQ_TYPE_PG2
| MCS_PLL_CLK_SEL_FREF
);
578 /* Delay execution for 15msec, to let the HW settle */
584 static bool wl128x_is_tcxo_valid(struct wl1271
*wl
)
588 tcxo_detection
= wl1271_top_reg_read(wl
, TCXO_CLK_DETECT_REG
);
589 if (tcxo_detection
& TCXO_DET_FAILED
)
595 static bool wl128x_is_fref_valid(struct wl1271
*wl
)
599 fref_detection
= wl1271_top_reg_read(wl
, FREF_CLK_DETECT_REG
);
600 if (fref_detection
& FREF_CLK_DETECT_FAIL
)
606 static int wl128x_manually_configure_mcs_pll(struct wl1271
*wl
)
608 wl1271_top_reg_write(wl
, MCS_PLL_M_REG
, MCS_PLL_M_REG_VAL
);
609 wl1271_top_reg_write(wl
, MCS_PLL_N_REG
, MCS_PLL_N_REG_VAL
);
610 wl1271_top_reg_write(wl
, MCS_PLL_CONFIG_REG
, MCS_PLL_CONFIG_REG_VAL
);
615 static int wl128x_configure_mcs_pll(struct wl1271
*wl
, int clk
)
621 /* Mask bits [3:1] in the sys_clk_cfg register */
622 spare_reg
= wl1271_top_reg_read(wl
, WL_SPARE_REG
);
623 if (spare_reg
== 0xFFFF)
626 wl1271_top_reg_write(wl
, WL_SPARE_REG
, spare_reg
);
628 /* Handle special cases of the TCXO clock */
629 if (wl
->tcxo_clock
== WL12XX_TCXOCLOCK_16_8
||
630 wl
->tcxo_clock
== WL12XX_TCXOCLOCK_33_6
)
631 return wl128x_manually_configure_mcs_pll(wl
);
633 /* Set the input frequency according to the selected clock source */
634 input_freq
= (clk
& 1) + 1;
636 pll_config
= wl1271_top_reg_read(wl
, MCS_PLL_CONFIG_REG
);
637 if (pll_config
== 0xFFFF)
639 pll_config
|= (input_freq
<< MCS_SEL_IN_FREQ_SHIFT
);
640 pll_config
|= MCS_PLL_ENABLE_HP
;
641 wl1271_top_reg_write(wl
, MCS_PLL_CONFIG_REG
, pll_config
);
647 * WL128x has two clocks input - TCXO and FREF.
648 * TCXO is the main clock of the device, while FREF is used to sync
649 * between the GPS and the cellular modem.
650 * In cases where TCXO is 32.736MHz or 16.368MHz, the FREF will be used
651 * as the WLAN/BT main clock.
653 static int wl128x_boot_clk(struct wl1271
*wl
, int *selected_clock
)
657 /* For XTAL-only modes, FREF will be used after switching from TCXO */
658 if (wl
->ref_clock
== WL12XX_REFCLOCK_26_XTAL
||
659 wl
->ref_clock
== WL12XX_REFCLOCK_38_XTAL
) {
660 if (!wl128x_switch_tcxo_to_fref(wl
))
665 /* Query the HW, to determine which clock source we should use */
666 sys_clk_cfg
= wl1271_top_reg_read(wl
, SYS_CLK_CFG_REG
);
667 if (sys_clk_cfg
== 0xFFFF)
669 if (sys_clk_cfg
& PRCM_CM_EN_MUX_WLAN_FREF
)
672 /* If TCXO is either 32.736MHz or 16.368MHz, switch to FREF */
673 if (wl
->tcxo_clock
== WL12XX_TCXOCLOCK_16_368
||
674 wl
->tcxo_clock
== WL12XX_TCXOCLOCK_32_736
) {
675 if (!wl128x_switch_tcxo_to_fref(wl
))
680 /* TCXO clock is selected */
681 if (!wl128x_is_tcxo_valid(wl
))
683 *selected_clock
= wl
->tcxo_clock
;
687 /* FREF clock is selected */
688 if (!wl128x_is_fref_valid(wl
))
690 *selected_clock
= wl
->ref_clock
;
693 return wl128x_configure_mcs_pll(wl
, *selected_clock
);
696 static int wl127x_boot_clk(struct wl1271
*wl
)
701 if (((wl
->hw_pg_ver
& PG_MAJOR_VER_MASK
) >> PG_MAJOR_VER_OFFSET
) < 3)
702 wl
->quirks
|= WL12XX_QUIRK_END_OF_TRANSACTION
;
704 if (wl
->ref_clock
== CONF_REF_CLK_19_2_E
||
705 wl
->ref_clock
== CONF_REF_CLK_38_4_E
||
706 wl
->ref_clock
== CONF_REF_CLK_38_4_M_XTAL
)
707 /* ref clk: 19.2/38.4/38.4-XTAL */
709 else if (wl
->ref_clock
== CONF_REF_CLK_26_E
||
710 wl
->ref_clock
== CONF_REF_CLK_52_E
)
716 if (wl
->ref_clock
!= CONF_REF_CLK_19_2_E
) {
718 /* Set clock type (open drain) */
719 val
= wl1271_top_reg_read(wl
, OCP_REG_CLK_TYPE
);
720 val
&= FREF_CLK_TYPE_BITS
;
721 wl1271_top_reg_write(wl
, OCP_REG_CLK_TYPE
, val
);
723 /* Set clock pull mode (no pull) */
724 val
= wl1271_top_reg_read(wl
, OCP_REG_CLK_PULL
);
726 wl1271_top_reg_write(wl
, OCP_REG_CLK_PULL
, val
);
729 /* Set clock polarity */
730 val
= wl1271_top_reg_read(wl
, OCP_REG_CLK_POLARITY
);
731 val
&= FREF_CLK_POLARITY_BITS
;
732 val
|= CLK_REQ_OUTN_SEL
;
733 wl1271_top_reg_write(wl
, OCP_REG_CLK_POLARITY
, val
);
736 wl1271_write32(wl
, PLL_PARAMETERS
, clk
);
738 pause
= wl1271_read32(wl
, PLL_PARAMETERS
);
740 wl1271_debug(DEBUG_BOOT
, "pause1 0x%x", pause
);
742 pause
&= ~(WU_COUNTER_PAUSE_VAL
);
743 pause
|= WU_COUNTER_PAUSE_VAL
;
744 wl1271_write32(wl
, WU_COUNTER_PAUSE
, pause
);
749 /* uploads NVS and firmware */
750 int wl1271_load_firmware(struct wl1271
*wl
)
754 int selected_clock
= -1;
756 wl1271_boot_hw_version(wl
);
758 if (wl
->chip
.id
== CHIP_ID_1283_PG20
) {
759 ret
= wl128x_boot_clk(wl
, &selected_clock
);
763 ret
= wl127x_boot_clk(wl
);
768 /* Continue the ELP wake up sequence */
769 wl1271_write32(wl
, WELP_ARM_COMMAND
, WELP_ARM_COMMAND_VAL
);
772 wl1271_set_partition(wl
, &part_table
[PART_DRPW
]);
774 /* Read-modify-write DRPW_SCRATCH_START register (see next state)
775 to be used by DRPw FW. The RTRIM value will be added by the FW
776 before taking DRPw out of reset */
778 wl1271_debug(DEBUG_BOOT
, "DRPW_SCRATCH_START %08x", DRPW_SCRATCH_START
);
779 clk
= wl1271_read32(wl
, DRPW_SCRATCH_START
);
781 wl1271_debug(DEBUG_BOOT
, "clk2 0x%x", clk
);
783 if (wl
->chip
.id
== CHIP_ID_1283_PG20
) {
784 clk
|= ((selected_clock
& 0x3) << 1) << 4;
786 clk
|= (wl
->ref_clock
<< 1) << 4;
789 wl1271_write32(wl
, DRPW_SCRATCH_START
, clk
);
791 wl1271_set_partition(wl
, &part_table
[PART_WORK
]);
793 /* Disable interrupts */
794 wl1271_write32(wl
, ACX_REG_INTERRUPT_MASK
, WL1271_ACX_INTR_ALL
);
796 ret
= wl1271_boot_soft_reset(wl
);
800 /* 2. start processing NVS file */
801 ret
= wl1271_boot_upload_nvs(wl
);
805 /* write firmware's last address (ie. it's length) to
806 * ACX_EEPROMLESS_IND_REG */
807 wl1271_debug(DEBUG_BOOT
, "ACX_EEPROMLESS_IND_REG");
809 wl1271_write32(wl
, ACX_EEPROMLESS_IND_REG
, ACX_EEPROMLESS_IND_REG
);
811 tmp
= wl1271_read32(wl
, CHIP_ID_B
);
813 wl1271_debug(DEBUG_BOOT
, "chip id 0x%x", tmp
);
815 /* 6. read the EEPROM parameters */
816 tmp
= wl1271_read32(wl
, SCR_PAD2
);
818 /* WL1271: The reference driver skips steps 7 to 10 (jumps directly
821 if (wl
->chip
.id
== CHIP_ID_1283_PG20
)
822 wl1271_top_reg_write(wl
, SDIO_IO_DS
, wl
->conf
.hci_io_ds
);
824 ret
= wl1271_boot_upload_firmware(wl
);
831 EXPORT_SYMBOL_GPL(wl1271_load_firmware
);
833 int wl1271_boot(struct wl1271
*wl
)
837 /* upload NVS and firmware */
838 ret
= wl1271_load_firmware(wl
);
842 /* 10.5 start firmware */
843 ret
= wl1271_boot_run_firmware(wl
);
847 ret
= wl1271_boot_write_irq_polarity(wl
);
851 wl1271_write32(wl
, ACX_REG_INTERRUPT_MASK
,
852 WL1271_ACX_ALL_EVENTS_VECTOR
);
854 /* Enable firmware interrupts now */
855 wl1271_boot_enable_interrupts(wl
);
857 wl1271_event_mbox_config(wl
);