|
@@ -41,6 +41,7 @@ struct hwbus_priv {
|
|
|
const struct cw1200_platform_data_spi *pdata;
|
|
|
spinlock_t lock; /* Serialize all bus operations */
|
|
|
int claimed;
|
|
|
+ int irq_disabled;
|
|
|
};
|
|
|
|
|
|
#define SDIO_TO_SPI_ADDR(addr) ((addr & 0x1f)>>2)
|
|
@@ -230,6 +231,8 @@ static irqreturn_t cw1200_spi_irq_handler(int irq, void *dev_id)
|
|
|
struct hwbus_priv *self = dev_id;
|
|
|
|
|
|
if (self->core) {
|
|
|
+ disable_irq_nosync(self->func->irq);
|
|
|
+ self->irq_disabled = 1;
|
|
|
cw1200_irq_handler(self->core);
|
|
|
return IRQ_HANDLED;
|
|
|
} else {
|
|
@@ -263,13 +266,22 @@ exit:
|
|
|
|
|
|
static int cw1200_spi_irq_unsubscribe(struct hwbus_priv *self)
|
|
|
{
|
|
|
- int ret = 0;
|
|
|
-
|
|
|
pr_debug("SW IRQ unsubscribe\n");
|
|
|
disable_irq_wake(self->func->irq);
|
|
|
free_irq(self->func->irq, self);
|
|
|
|
|
|
- return ret;
|
|
|
+ return 0;
|
|
|
+}
|
|
|
+
|
|
|
+static int cw1200_spi_irq_enable(struct hwbus_priv *self, int enable)
|
|
|
+{
|
|
|
+ /* Disables are handled by the interrupt handler */
|
|
|
+ if (enable && self->irq_disabled) {
|
|
|
+ enable_irq(self->func->irq);
|
|
|
+ self->irq_disabled = 0;
|
|
|
+ }
|
|
|
+
|
|
|
+ return 0;
|
|
|
}
|
|
|
|
|
|
static int cw1200_spi_off(const struct cw1200_platform_data_spi *pdata)
|
|
@@ -349,6 +361,7 @@ static struct hwbus_ops cw1200_spi_hwbus_ops = {
|
|
|
.unlock = cw1200_spi_unlock,
|
|
|
.align_size = cw1200_spi_align_size,
|
|
|
.power_mgmt = cw1200_spi_pm,
|
|
|
+ .irq_enable = cw1200_spi_irq_enable,
|
|
|
};
|
|
|
|
|
|
/* Probe Function to be called by SPI stack when device is discovered */
|