2 * This file is part of wl1271
4 * Copyright (C) 2009-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/irq.h>
25 #include <linux/module.h>
26 #include <linux/crc7.h>
27 #include <linux/vmalloc.h>
28 #include <linux/mmc/sdio_func.h>
29 #include <linux/mmc/sdio_ids.h>
30 #include <linux/mmc/card.h>
31 #include <linux/mmc/host.h>
32 #include <linux/gpio.h>
33 #include <linux/wl12xx.h>
34 #include <linux/pm_runtime.h>
37 #include "wl12xx_80211.h"
40 #ifndef SDIO_VENDOR_ID_TI
41 #define SDIO_VENDOR_ID_TI 0x0097
44 #ifndef SDIO_DEVICE_ID_TI_WL1271
45 #define SDIO_DEVICE_ID_TI_WL1271 0x4076
48 static const struct sdio_device_id wl1271_devices
[] = {
49 { SDIO_DEVICE(SDIO_VENDOR_ID_TI
, SDIO_DEVICE_ID_TI_WL1271
) },
52 MODULE_DEVICE_TABLE(sdio
, wl1271_devices
);
54 static inline struct sdio_func
*wl_to_func(struct wl1271
*wl
)
59 static struct device
*wl1271_sdio_wl_to_dev(struct wl1271
*wl
)
61 return &(wl_to_func(wl
)->dev
);
64 static irqreturn_t
wl1271_hardirq(int irq
, void *cookie
)
66 struct wl1271
*wl
= cookie
;
69 wl1271_debug(DEBUG_IRQ
, "IRQ");
71 /* complete the ELP completion */
72 spin_lock_irqsave(&wl
->wl_lock
, flags
);
73 set_bit(WL1271_FLAG_IRQ_RUNNING
, &wl
->flags
);
75 complete(wl
->elp_compl
);
78 spin_unlock_irqrestore(&wl
->wl_lock
, flags
);
80 return IRQ_WAKE_THREAD
;
83 static void wl1271_sdio_disable_interrupts(struct wl1271
*wl
)
88 static void wl1271_sdio_enable_interrupts(struct wl1271
*wl
)
93 static void wl1271_sdio_reset(struct wl1271
*wl
)
97 static void wl1271_sdio_init(struct wl1271
*wl
)
101 static void wl1271_sdio_raw_read(struct wl1271
*wl
, int addr
, void *buf
,
102 size_t len
, bool fixed
)
105 struct sdio_func
*func
= wl_to_func(wl
);
107 if (unlikely(addr
== HW_ACCESS_ELP_CTRL_REG_ADDR
)) {
108 ((u8
*)buf
)[0] = sdio_f0_readb(func
, addr
, &ret
);
109 wl1271_debug(DEBUG_SDIO
, "sdio read 52 addr 0x%x, byte 0x%02x",
110 addr
, ((u8
*)buf
)[0]);
113 ret
= sdio_readsb(func
, buf
, addr
, len
);
115 ret
= sdio_memcpy_fromio(func
, buf
, addr
, len
);
117 wl1271_debug(DEBUG_SDIO
, "sdio read 53 addr 0x%x, %zu bytes",
119 wl1271_dump_ascii(DEBUG_SDIO
, "data: ", buf
, len
);
123 wl1271_error("sdio read failed (%d)", ret
);
126 static void wl1271_sdio_raw_write(struct wl1271
*wl
, int addr
, void *buf
,
127 size_t len
, bool fixed
)
130 struct sdio_func
*func
= wl_to_func(wl
);
132 if (unlikely(addr
== HW_ACCESS_ELP_CTRL_REG_ADDR
)) {
133 sdio_f0_writeb(func
, ((u8
*)buf
)[0], addr
, &ret
);
134 wl1271_debug(DEBUG_SDIO
, "sdio write 52 addr 0x%x, byte 0x%02x",
135 addr
, ((u8
*)buf
)[0]);
137 wl1271_debug(DEBUG_SDIO
, "sdio write 53 addr 0x%x, %zu bytes",
139 wl1271_dump_ascii(DEBUG_SDIO
, "data: ", buf
, len
);
142 ret
= sdio_writesb(func
, addr
, buf
, len
);
144 ret
= sdio_memcpy_toio(func
, addr
, buf
, len
);
148 wl1271_error("sdio write failed (%d)", ret
);
151 static int wl1271_sdio_power_on(struct wl1271
*wl
)
153 struct sdio_func
*func
= wl_to_func(wl
);
156 /* Make sure the card will not be powered off by runtime PM */
157 ret
= pm_runtime_get_sync(&func
->dev
);
161 /* Runtime PM might be disabled, so power up the card manually */
162 ret
= mmc_power_restore_host(func
->card
->host
);
166 sdio_claim_host(func
);
167 sdio_enable_func(func
);
173 static int wl1271_sdio_power_off(struct wl1271
*wl
)
175 struct sdio_func
*func
= wl_to_func(wl
);
178 sdio_disable_func(func
);
179 sdio_release_host(func
);
181 /* Runtime PM might be disabled, so power off the card manually */
182 ret
= mmc_power_save_host(func
->card
->host
);
186 /* Let runtime PM know the card is powered off */
187 return pm_runtime_put_sync(&func
->dev
);
190 static int wl1271_sdio_set_power(struct wl1271
*wl
, bool enable
)
193 return wl1271_sdio_power_on(wl
);
195 return wl1271_sdio_power_off(wl
);
198 static struct wl1271_if_operations sdio_ops
= {
199 .read
= wl1271_sdio_raw_read
,
200 .write
= wl1271_sdio_raw_write
,
201 .reset
= wl1271_sdio_reset
,
202 .init
= wl1271_sdio_init
,
203 .power
= wl1271_sdio_set_power
,
204 .dev
= wl1271_sdio_wl_to_dev
,
205 .enable_irq
= wl1271_sdio_enable_interrupts
,
206 .disable_irq
= wl1271_sdio_disable_interrupts
209 static int __devinit
wl1271_probe(struct sdio_func
*func
,
210 const struct sdio_device_id
*id
)
212 struct ieee80211_hw
*hw
;
213 const struct wl12xx_platform_data
*wlan_data
;
217 /* We are only able to handle the wlan function */
218 if (func
->num
!= 0x02)
221 hw
= wl1271_alloc_hw();
228 wl
->if_ops
= &sdio_ops
;
230 /* Grab access to FN0 for ELP reg. */
231 func
->card
->quirks
|= MMC_QUIRK_LENIENT_FN0
;
233 wlan_data
= wl12xx_get_platform_data();
234 if (IS_ERR(wlan_data
)) {
235 ret
= PTR_ERR(wlan_data
);
236 wl1271_error("missing wlan platform data: %d", ret
);
240 wl
->irq
= wlan_data
->irq
;
241 wl
->ref_clock
= wlan_data
->board_ref_clock
;
243 ret
= request_threaded_irq(wl
->irq
, wl1271_hardirq
, wl1271_irq
,
244 IRQF_TRIGGER_HIGH
| IRQF_ONESHOT
,
247 wl1271_error("request_irq() failed: %d", ret
);
251 disable_irq(wl
->irq
);
253 ret
= wl1271_init_ieee80211(wl
);
257 ret
= wl1271_register_hw(wl
);
261 sdio_set_drvdata(func
, wl
);
263 /* Tell PM core that we don't need the card to be powered now */
264 pm_runtime_put_noidle(&func
->dev
);
266 wl1271_notice("initialized");
271 free_irq(wl
->irq
, wl
);
279 static void __devexit
wl1271_remove(struct sdio_func
*func
)
281 struct wl1271
*wl
= sdio_get_drvdata(func
);
283 /* Undo decrement done above in wl1271_probe */
284 pm_runtime_get_noresume(&func
->dev
);
286 wl1271_unregister_hw(wl
);
287 free_irq(wl
->irq
, wl
);
291 static int wl1271_suspend(struct device
*dev
)
293 /* Tell MMC/SDIO core it's OK to power down the card
294 * (if it isn't already), but not to remove it completely */
298 static int wl1271_resume(struct device
*dev
)
303 static const struct dev_pm_ops wl1271_sdio_pm_ops
= {
304 .suspend
= wl1271_suspend
,
305 .resume
= wl1271_resume
,
308 static struct sdio_driver wl1271_sdio_driver
= {
309 .name
= "wl1271_sdio",
310 .id_table
= wl1271_devices
,
311 .probe
= wl1271_probe
,
312 .remove
= __devexit_p(wl1271_remove
),
314 .pm
= &wl1271_sdio_pm_ops
,
318 static int __init
wl1271_init(void)
322 ret
= sdio_register_driver(&wl1271_sdio_driver
);
324 wl1271_error("failed to register sdio driver: %d", ret
);
332 static void __exit
wl1271_exit(void)
334 sdio_unregister_driver(&wl1271_sdio_driver
);
336 wl1271_notice("unloaded");
339 module_init(wl1271_init
);
340 module_exit(wl1271_exit
);
342 MODULE_LICENSE("GPL");
343 MODULE_AUTHOR("Luciano Coelho <luciano.coelho@nokia.com>");
344 MODULE_AUTHOR("Juuso Oikarinen <juuso.oikarinen@nokia.com>");
345 MODULE_FIRMWARE(WL1271_FW_NAME
);
346 MODULE_FIRMWARE(WL1271_AP_FW_NAME
);