wl1271: Added functions to enable/disable interrupt handling

Added/moved enable and disable interrupt handling functions.

Signed-off-by: Teemu Paasikivi <ext-teemu.3.paasikivi@nokia.com>
Reviewed-by: Juuso Oikarinen <juuso.oikarinen@nokia.com>
Signed-off-by: Juuso Oikarinen <juuso.oikarinen@nokia.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
Teemu Paasikivi 2010-02-22 08:38:22 +02:00 committed by John W. Linville
parent 2d5e82b8bc
commit 54f7e5037c
6 changed files with 27 additions and 6 deletions

View file

@ -299,7 +299,7 @@ static int wl1271_boot_upload_nvs(struct wl1271 *wl)
static void wl1271_boot_enable_interrupts(struct wl1271 *wl)
{
enable_irq(wl->irq);
wl1271_enable_interrupts(wl);
wl1271_write32(wl, ACX_REG_INTERRUPT_MASK,
WL1271_ACX_INTR_ALL & ~(WL1271_INTR_MASK));
wl1271_write32(wl, HI_CFG, HI_CFG_DEF_VAL);

View file

@ -31,6 +31,16 @@
#include "wl1271_spi.h"
#include "wl1271_io.h"
void wl1271_disable_interrupts(struct wl1271 *wl)
{
wl1271_spi_disable_interrupts(wl);
}
void wl1271_enable_interrupts(struct wl1271 *wl)
{
wl1271_spi_enable_interrupts(wl);
}
static int wl1271_translate_addr(struct wl1271 *wl, int addr)
{
/*

View file

@ -27,6 +27,9 @@
struct wl1271;
void wl1271_disable_interrupts(struct wl1271 *wl);
void wl1271_enable_interrupts(struct wl1271 *wl);
void wl1271_io_reset(struct wl1271 *wl);
void wl1271_io_init(struct wl1271 *wl);

View file

@ -360,11 +360,6 @@ static int wl1271_plt_init(struct wl1271 *wl)
return ret;
}
static void wl1271_disable_interrupts(struct wl1271 *wl)
{
disable_irq(wl->irq);
}
static void wl1271_power_off(struct wl1271 *wl)
{
wl->set_power(false);

View file

@ -34,6 +34,16 @@
#include "wl1271_io.h"
void wl1271_spi_disable_interrupts(struct wl1271 *wl)
{
disable_irq(wl->irq);
}
void wl1271_spi_enable_interrupts(struct wl1271 *wl)
{
enable_irq(wl->irq);
}
void wl1271_spi_reset(struct wl1271 *wl)
{
u8 *cmd;

View file

@ -84,6 +84,9 @@
#define OCP_STATUS_REQ_FAILED 0x20000
#define OCP_STATUS_RESP_ERROR 0x30000
void wl1271_spi_disable_interrupts(struct wl1271 *wl);
void wl1271_spi_enable_interrupts(struct wl1271 *wl);
/* Raw target IO, address is not translated */
void wl1271_spi_raw_write(struct wl1271 *wl, int addr, void *buf,
size_t len, bool fixed);