b5ed9c1b6f
In SDIO, the host driver requests the IRQ and invokes a callback to the card driver. This differs from SPI, so the relevant code needs to be interface-specific. This patch pushes the irq code down into _spi.c and _sdio.c, and adds enable/disable callbacks. This fixes the following warning: [ 566.343887] ------------[ cut here ]------------ [ 566.349105] WARNING: at kernel/irq/manage.c:222 __enable_irq+0x3c/0x6c() [ 566.356735] Unbalanced enable for IRQ 0 [ 566.361099] Modules linked in: msm_wifi wl12xx_sdio wl12xx mac80211 cfg80211 rfkill_backport lib80211_crypt_ccmp lib80211_crypt_wep lib80211_crypt_tkip lib80211 [ 566.381240] [<c025acec>] (dump_stack+0x0/0x14) from [<c004b610>] (warn_slowpath+0x70/0x8c) [ 566.391860] [<c004b5a0>] (warn_slowpath+0x0/0x8c) from [<c0077c10>] (__enable_irq+0x3c/0x6c) [ 566.402572] r3:00000000 r2:c02cad13 [ 566.407516] r7:00001002 r6:00000000 r5:c0310be4 r4:c0310be4 [ 566.415786] [<c0077bd4>] (__enable_irq+0x0/0x6c) from [<c0077fd0>] (enable_irq+0x38/0x64) [ 566.425826] r5:c0310be4 r4:a0000013 [ 566.430709] [<c0077f98>] (enable_irq+0x0/0x64) from [<bf0dfa78>] (wl12xx_boot_run_firmware+0xfc/0x170 [wl12xx]) [ 566.442947] r7:00001002 r6:c440a9fc r5:00000072 r4:c440a9e0 [ 566.450851] [<bf0df97c>] (wl12xx_boot_run_firmware+0x0/0x170 [wl12xx]) from [<bf0e05f0>] (wl1251_boot+0xd4/0x108 [wl12xx]) [ 566.464492] r5:00000000 r4:c440a9e0 [ 566.469466] [<bf0e051c>] (wl1251_boot+0x0/0x108 [wl12xx]) from [<bf0dd27c>] (wl12xx_op_start+0x54/0xb8 [wl12xx]) [ 566.482162] r5:00000000 r4:c440a9e0 [ 566.487472] [<bf0dd228>] (wl12xx_op_start+0x0/0xb8 [wl12xx]) from [<bf0b96dc>] (ieee80211_open+0x2dc/0x720 [mac80211]) [ 566.500594] r7:00001002 r6:c4950800 r5:c440a220 r4:00000000 [ 566.508865] [<bf0b9400>] (ieee80211_open+0x0/0x720 [mac80211]) from [<c01f1edc>] (dev_open+0x9c/0xfc) [ 566.520705] [<c01f1e40>] (dev_open+0x0/0xfc) from [<c01f17dc>] (dev_change_flags+0x98/0x170) [ 566.531417] r5:00000041 r4:c4950800 [ 566.536330] [<c01f1744>] (dev_change_flags+0x0/0x170) from [<c023041c>] (devinet_ioctl+0x3a8/0x784) [ 566.547683] r7:c128e380 r6:00000001 r5:00008914 r4:00000000 [ 566.555587] [<c0230074>] (devinet_ioctl+0x0/0x784) from [<c02318cc>] (inet_ioctl+0xdc/0x114) [ 566.566299] [<c02317f0>] (inet_ioctl+0x0/0x114) from [<c01e1a60>] (sock_ioctl+0x1f0/0x248) [ 566.576827] r5:00008914 r4:c572c1a0 [ 566.581771] [<c01e1870>] (sock_ioctl+0x0/0x248) from [<c00b23a0>] (vfs_ioctl+0x34/0x94) [ 566.592086] r7:c572c1a0 r6:bee497e8 r5:00008914 r4:c572c1a0 [ 566.599990] [<c00b236c>] (vfs_ioctl+0x0/0x94) from [<c00b2a28>] (do_vfs_ioctl+0x52c/0x584) [ 566.610549] r7:c572c1a0 r6:00008914 r5:c572c1a0 r4:c3201228 [ 566.618453] [<c00b24fc>] (do_vfs_ioctl+0x0/0x584) from [<c00b2ac0>] (sys_ioctl+0x40/0x64) [ 566.628890] [<c00b2a80>] (sys_ioctl+0x0/0x64) from [<c0021da0>] (ret_fast_syscall+0x0/0x2c) [ 566.639541] r7:00000036 r6:00000000 r5:00000004 r4:001a11f3 [ 566.647445] ---[ end trace 15c26ef7dd5e7b03 ]--- Signed-off-by: Bob Copeland <me@bobcopeland.com> Signed-off-by: Kalle Valo <kalle.valo@nokia.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
293 lines
7.9 KiB
C
293 lines
7.9 KiB
C
/*
|
|
* This file is part of wl1251
|
|
*
|
|
* Copyright (C) 2008 Nokia Corporation
|
|
*
|
|
* Contact: Kalle Valo <kalle.valo@nokia.com>
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License
|
|
* version 2 as published by the Free Software Foundation.
|
|
*
|
|
* This program is distributed in the hope that it will be useful, but
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
|
|
* 02110-1301 USA
|
|
*
|
|
*/
|
|
|
|
#include <linux/gpio.h>
|
|
|
|
#include "reg.h"
|
|
#include "wl1251_boot.h"
|
|
#include "wl1251_io.h"
|
|
#include "wl1251_spi.h"
|
|
#include "wl1251_event.h"
|
|
|
|
void wl1251_boot_target_enable_interrupts(struct wl1251 *wl)
|
|
{
|
|
wl1251_reg_write32(wl, ACX_REG_INTERRUPT_MASK, ~(wl->intr_mask));
|
|
wl1251_reg_write32(wl, HI_CFG, HI_CFG_DEF_VAL);
|
|
}
|
|
|
|
int wl1251_boot_soft_reset(struct wl1251 *wl)
|
|
{
|
|
unsigned long timeout;
|
|
u32 boot_data;
|
|
|
|
/* perform soft reset */
|
|
wl1251_reg_write32(wl, ACX_REG_SLV_SOFT_RESET, ACX_SLV_SOFT_RESET_BIT);
|
|
|
|
/* SOFT_RESET is self clearing */
|
|
timeout = jiffies + usecs_to_jiffies(SOFT_RESET_MAX_TIME);
|
|
while (1) {
|
|
boot_data = wl1251_reg_read32(wl, ACX_REG_SLV_SOFT_RESET);
|
|
wl1251_debug(DEBUG_BOOT, "soft reset bootdata 0x%x", boot_data);
|
|
if ((boot_data & ACX_SLV_SOFT_RESET_BIT) == 0)
|
|
break;
|
|
|
|
if (time_after(jiffies, timeout)) {
|
|
/* 1.2 check pWhalBus->uSelfClearTime if the
|
|
* timeout was reached */
|
|
wl1251_error("soft reset timeout");
|
|
return -1;
|
|
}
|
|
|
|
udelay(SOFT_RESET_STALL_TIME);
|
|
}
|
|
|
|
/* disable Rx/Tx */
|
|
wl1251_reg_write32(wl, ENABLE, 0x0);
|
|
|
|
/* disable auto calibration on start*/
|
|
wl1251_reg_write32(wl, SPARE_A2, 0xffff);
|
|
|
|
return 0;
|
|
}
|
|
|
|
int wl1251_boot_init_seq(struct wl1251 *wl)
|
|
{
|
|
u32 scr_pad6, init_data, tmp, elp_cmd, ref_freq;
|
|
|
|
/*
|
|
* col #1: INTEGER_DIVIDER
|
|
* col #2: FRACTIONAL_DIVIDER
|
|
* col #3: ATTN_BB
|
|
* col #4: ALPHA_BB
|
|
* col #5: STOP_TIME_BB
|
|
* col #6: BB_PLL_LOOP_FILTER
|
|
*/
|
|
static const u32 LUT[REF_FREQ_NUM][LUT_PARAM_NUM] = {
|
|
|
|
{ 83, 87381, 0xB, 5, 0xF00, 3}, /* REF_FREQ_19_2*/
|
|
{ 61, 141154, 0xB, 5, 0x1450, 2}, /* REF_FREQ_26_0*/
|
|
{ 41, 174763, 0xC, 6, 0x2D00, 1}, /* REF_FREQ_38_4*/
|
|
{ 40, 0, 0xC, 6, 0x2EE0, 1}, /* REF_FREQ_40_0*/
|
|
{ 47, 162280, 0xC, 6, 0x2760, 1} /* REF_FREQ_33_6 */
|
|
};
|
|
|
|
/* read NVS params */
|
|
scr_pad6 = wl1251_reg_read32(wl, SCR_PAD6);
|
|
wl1251_debug(DEBUG_BOOT, "scr_pad6 0x%x", scr_pad6);
|
|
|
|
/* read ELP_CMD */
|
|
elp_cmd = wl1251_reg_read32(wl, ELP_CMD);
|
|
wl1251_debug(DEBUG_BOOT, "elp_cmd 0x%x", elp_cmd);
|
|
|
|
/* set the BB calibration time to be 300 usec (PLL_CAL_TIME) */
|
|
ref_freq = scr_pad6 & 0x000000FF;
|
|
wl1251_debug(DEBUG_BOOT, "ref_freq 0x%x", ref_freq);
|
|
|
|
wl1251_reg_write32(wl, PLL_CAL_TIME, 0x9);
|
|
|
|
/*
|
|
* PG 1.2: set the clock buffer time to be 210 usec (CLK_BUF_TIME)
|
|
*/
|
|
wl1251_reg_write32(wl, CLK_BUF_TIME, 0x6);
|
|
|
|
/*
|
|
* set the clock detect feature to work in the restart wu procedure
|
|
* (ELP_CFG_MODE[14]) and Select the clock source type
|
|
* (ELP_CFG_MODE[13:12])
|
|
*/
|
|
tmp = ((scr_pad6 & 0x0000FF00) << 4) | 0x00004000;
|
|
wl1251_reg_write32(wl, ELP_CFG_MODE, tmp);
|
|
|
|
/* PG 1.2: enable the BB PLL fix. Enable the PLL_LIMP_CLK_EN_CMD */
|
|
elp_cmd |= 0x00000040;
|
|
wl1251_reg_write32(wl, ELP_CMD, elp_cmd);
|
|
|
|
/* PG 1.2: Set the BB PLL stable time to be 1000usec
|
|
* (PLL_STABLE_TIME) */
|
|
wl1251_reg_write32(wl, CFG_PLL_SYNC_CNT, 0x20);
|
|
|
|
/* PG 1.2: read clock request time */
|
|
init_data = wl1251_reg_read32(wl, CLK_REQ_TIME);
|
|
|
|
/*
|
|
* PG 1.2: set the clock request time to be ref_clk_settling_time -
|
|
* 1ms = 4ms
|
|
*/
|
|
if (init_data > 0x21)
|
|
tmp = init_data - 0x21;
|
|
else
|
|
tmp = 0;
|
|
wl1251_reg_write32(wl, CLK_REQ_TIME, tmp);
|
|
|
|
/* set BB PLL configurations in RF AFE */
|
|
wl1251_reg_write32(wl, 0x003058cc, 0x4B5);
|
|
|
|
/* set RF_AFE_REG_5 */
|
|
wl1251_reg_write32(wl, 0x003058d4, 0x50);
|
|
|
|
/* set RF_AFE_CTRL_REG_2 */
|
|
wl1251_reg_write32(wl, 0x00305948, 0x11c001);
|
|
|
|
/*
|
|
* change RF PLL and BB PLL divider for VCO clock and adjust VCO
|
|
* bais current(RF_AFE_REG_13)
|
|
*/
|
|
wl1251_reg_write32(wl, 0x003058f4, 0x1e);
|
|
|
|
/* set BB PLL configurations */
|
|
tmp = LUT[ref_freq][LUT_PARAM_INTEGER_DIVIDER] | 0x00017000;
|
|
wl1251_reg_write32(wl, 0x00305840, tmp);
|
|
|
|
/* set fractional divider according to Appendix C-BB PLL
|
|
* Calculations
|
|
*/
|
|
tmp = LUT[ref_freq][LUT_PARAM_FRACTIONAL_DIVIDER];
|
|
wl1251_reg_write32(wl, 0x00305844, tmp);
|
|
|
|
/* set the initial data for the sigma delta */
|
|
wl1251_reg_write32(wl, 0x00305848, 0x3039);
|
|
|
|
/*
|
|
* set the accumulator attenuation value, calibration loop1
|
|
* (alpha), calibration loop2 (beta), calibration loop3 (gamma) and
|
|
* the VCO gain
|
|
*/
|
|
tmp = (LUT[ref_freq][LUT_PARAM_ATTN_BB] << 16) |
|
|
(LUT[ref_freq][LUT_PARAM_ALPHA_BB] << 12) | 0x1;
|
|
wl1251_reg_write32(wl, 0x00305854, tmp);
|
|
|
|
/*
|
|
* set the calibration stop time after holdoff time expires and set
|
|
* settling time HOLD_OFF_TIME_BB
|
|
*/
|
|
tmp = LUT[ref_freq][LUT_PARAM_STOP_TIME_BB] | 0x000A0000;
|
|
wl1251_reg_write32(wl, 0x00305858, tmp);
|
|
|
|
/*
|
|
* set BB PLL Loop filter capacitor3- BB_C3[2:0] and set BB PLL
|
|
* constant leakage current to linearize PFD to 0uA -
|
|
* BB_ILOOPF[7:3]
|
|
*/
|
|
tmp = LUT[ref_freq][LUT_PARAM_BB_PLL_LOOP_FILTER] | 0x00000030;
|
|
wl1251_reg_write32(wl, 0x003058f8, tmp);
|
|
|
|
/*
|
|
* set regulator output voltage for n divider to
|
|
* 1.35-BB_REFDIV[1:0], set charge pump current- BB_CPGAIN[4:2],
|
|
* set BB PLL Loop filter capacitor2- BB_C2[7:5], set gain of BB
|
|
* PLL auto-call to normal mode- BB_CALGAIN_3DB[8]
|
|
*/
|
|
wl1251_reg_write32(wl, 0x003058f0, 0x29);
|
|
|
|
/* enable restart wakeup sequence (ELP_CMD[0]) */
|
|
wl1251_reg_write32(wl, ELP_CMD, elp_cmd | 0x1);
|
|
|
|
/* restart sequence completed */
|
|
udelay(2000);
|
|
|
|
return 0;
|
|
}
|
|
|
|
int wl1251_boot_run_firmware(struct wl1251 *wl)
|
|
{
|
|
int loop, ret;
|
|
u32 chip_id, interrupt;
|
|
|
|
wl->chip.op_set_ecpu_ctrl(wl, ECPU_CONTROL_HALT);
|
|
|
|
chip_id = wl1251_reg_read32(wl, CHIP_ID_B);
|
|
|
|
wl1251_debug(DEBUG_BOOT, "chip id after firmware boot: 0x%x", chip_id);
|
|
|
|
if (chip_id != wl->chip.id) {
|
|
wl1251_error("chip id doesn't match after firmware boot");
|
|
return -EIO;
|
|
}
|
|
|
|
/* wait for init to complete */
|
|
loop = 0;
|
|
while (loop++ < INIT_LOOP) {
|
|
udelay(INIT_LOOP_DELAY);
|
|
interrupt = wl1251_reg_read32(wl, ACX_REG_INTERRUPT_NO_CLEAR);
|
|
|
|
if (interrupt == 0xffffffff) {
|
|
wl1251_error("error reading hardware complete "
|
|
"init indication");
|
|
return -EIO;
|
|
}
|
|
/* check that ACX_INTR_INIT_COMPLETE is enabled */
|
|
else if (interrupt & wl->chip.intr_init_complete) {
|
|
wl1251_reg_write32(wl, ACX_REG_INTERRUPT_ACK,
|
|
wl->chip.intr_init_complete);
|
|
break;
|
|
}
|
|
}
|
|
|
|
if (loop >= INIT_LOOP) {
|
|
wl1251_error("timeout waiting for the hardware to "
|
|
"complete initialization");
|
|
return -EIO;
|
|
}
|
|
|
|
/* get hardware config command mail box */
|
|
wl->cmd_box_addr = wl1251_reg_read32(wl, REG_COMMAND_MAILBOX_PTR);
|
|
|
|
/* get hardware config event mail box */
|
|
wl->event_box_addr = wl1251_reg_read32(wl, REG_EVENT_MAILBOX_PTR);
|
|
|
|
/* set the working partition to its "running" mode offset */
|
|
wl1251_set_partition(wl,
|
|
wl->chip.p_table[PART_WORK].mem.start,
|
|
wl->chip.p_table[PART_WORK].mem.size,
|
|
wl->chip.p_table[PART_WORK].reg.start,
|
|
wl->chip.p_table[PART_WORK].reg.size);
|
|
|
|
wl1251_debug(DEBUG_MAILBOX, "cmd_box_addr 0x%x event_box_addr 0x%x",
|
|
wl->cmd_box_addr, wl->event_box_addr);
|
|
|
|
wl->chip.op_fw_version(wl);
|
|
|
|
/*
|
|
* in case of full asynchronous mode the firmware event must be
|
|
* ready to receive event from the command mailbox
|
|
*/
|
|
|
|
/* enable gpio interrupts */
|
|
wl1251_enable_interrupts(wl);
|
|
|
|
wl->chip.op_target_enable_interrupts(wl);
|
|
|
|
/* unmask all mbox events */
|
|
wl->event_mask = 0xffffffff;
|
|
|
|
ret = wl1251_event_unmask(wl);
|
|
if (ret < 0) {
|
|
wl1251_error("EVENT mask setting failed");
|
|
return ret;
|
|
}
|
|
|
|
wl1251_event_mbox_config(wl);
|
|
|
|
/* firmware startup completed */
|
|
return 0;
|
|
}
|