summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorShahar Levi2011-03-06 15:32:06 +0100
committerLuciano Coelho2011-04-19 15:19:45 +0200
commitb9b0fdead0e8d964a534e5b09f40d8bd4bf7dfe8 (patch)
tree37da441b5edb8940f34bd732fd357625a65f8ca2
parentwl12xx: add new board_tcxo_clock element to the platform data (diff)
downloadkernel-qcow2-linux-b9b0fdead0e8d964a534e5b09f40d8bd4bf7dfe8.tar.gz
kernel-qcow2-linux-b9b0fdead0e8d964a534e5b09f40d8bd4bf7dfe8.tar.xz
kernel-qcow2-linux-b9b0fdead0e8d964a534e5b09f40d8bd4bf7dfe8.zip
wl12xx: 1281/1283 support - move IRQ polarity
In order to prevent overran of IRQ polarity via FW the polarity setting move after FW download and before IRQ enable. Signed-off-by: Shahar Levi <shahar_levi@ti.com> Reviewed-by: Luciano Coelho <coelho@ti.com> Signed-off-by: Luciano Coelho <coelho@ti.com>
-rw-r--r--drivers/net/wireless/wl12xx/boot.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/drivers/net/wireless/wl12xx/boot.c b/drivers/net/wireless/wl12xx/boot.c
index 6934dffd5174..69fe8703be42 100644
--- a/drivers/net/wireless/wl12xx/boot.c
+++ b/drivers/net/wireless/wl12xx/boot.c
@@ -585,13 +585,6 @@ int wl1271_load_firmware(struct wl1271 *wl)
/* 6. read the EEPROM parameters */
tmp = wl1271_read32(wl, SCR_PAD2);
- ret = wl1271_boot_write_irq_polarity(wl);
- if (ret < 0)
- goto out;
-
- wl1271_write32(wl, ACX_REG_INTERRUPT_MASK,
- WL1271_ACX_ALL_EVENTS_VECTOR);
-
/* WL1271: The reference driver skips steps 7 to 10 (jumps directly
* to upload_fw) */
@@ -618,6 +611,13 @@ int wl1271_boot(struct wl1271 *wl)
if (ret < 0)
goto out;
+ ret = wl1271_boot_write_irq_polarity(wl);
+ if (ret < 0)
+ goto out;
+
+ wl1271_write32(wl, ACX_REG_INTERRUPT_MASK,
+ WL1271_ACX_ALL_EVENTS_VECTOR);
+
/* Enable firmware interrupts now */
wl1271_boot_enable_interrupts(wl);