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 void wl1271_sdio_set_block_size(struct wl1271
*wl
, unsigned int blksz
)
56 sdio_claim_host(wl
->if_priv
);
57 sdio_set_block_size(wl
->if_priv
, blksz
);
58 sdio_release_host(wl
->if_priv
);
61 static inline struct sdio_func
*wl_to_func(struct wl1271
*wl
)
66 static struct device
*wl1271_sdio_wl_to_dev(struct wl1271
*wl
)
68 return &(wl_to_func(wl
)->dev
);
71 static irqreturn_t
wl1271_hardirq(int irq
, void *cookie
)
73 struct wl1271
*wl
= cookie
;
76 wl1271_debug(DEBUG_IRQ
, "IRQ");
78 /* complete the ELP completion */
79 spin_lock_irqsave(&wl
->wl_lock
, flags
);
80 set_bit(WL1271_FLAG_IRQ_RUNNING
, &wl
->flags
);
82 complete(wl
->elp_compl
);
86 if (test_bit(WL1271_FLAG_SUSPENDED
, &wl
->flags
)) {
87 /* don't enqueue a work right now. mark it as pending */
88 set_bit(WL1271_FLAG_PENDING_WORK
, &wl
->flags
);
89 wl1271_debug(DEBUG_IRQ
, "should not enqueue work");
90 disable_irq_nosync(wl
->irq
);
91 pm_wakeup_event(wl1271_sdio_wl_to_dev(wl
), 0);
92 spin_unlock_irqrestore(&wl
->wl_lock
, flags
);
95 spin_unlock_irqrestore(&wl
->wl_lock
, flags
);
97 return IRQ_WAKE_THREAD
;
100 static void wl1271_sdio_disable_interrupts(struct wl1271
*wl
)
102 disable_irq(wl
->irq
);
105 static void wl1271_sdio_enable_interrupts(struct wl1271
*wl
)
110 static void wl1271_sdio_reset(struct wl1271
*wl
)
114 static void wl1271_sdio_init(struct wl1271
*wl
)
118 static void wl1271_sdio_raw_read(struct wl1271
*wl
, int addr
, void *buf
,
119 size_t len
, bool fixed
)
122 struct sdio_func
*func
= wl_to_func(wl
);
124 if (unlikely(addr
== HW_ACCESS_ELP_CTRL_REG_ADDR
)) {
125 ((u8
*)buf
)[0] = sdio_f0_readb(func
, addr
, &ret
);
126 wl1271_debug(DEBUG_SDIO
, "sdio read 52 addr 0x%x, byte 0x%02x",
127 addr
, ((u8
*)buf
)[0]);
130 ret
= sdio_readsb(func
, buf
, addr
, len
);
132 ret
= sdio_memcpy_fromio(func
, buf
, addr
, len
);
134 wl1271_debug(DEBUG_SDIO
, "sdio read 53 addr 0x%x, %zu bytes",
136 wl1271_dump_ascii(DEBUG_SDIO
, "data: ", buf
, len
);
140 wl1271_error("sdio read failed (%d)", ret
);
143 static void wl1271_sdio_raw_write(struct wl1271
*wl
, int addr
, void *buf
,
144 size_t len
, bool fixed
)
147 struct sdio_func
*func
= wl_to_func(wl
);
149 if (unlikely(addr
== HW_ACCESS_ELP_CTRL_REG_ADDR
)) {
150 sdio_f0_writeb(func
, ((u8
*)buf
)[0], addr
, &ret
);
151 wl1271_debug(DEBUG_SDIO
, "sdio write 52 addr 0x%x, byte 0x%02x",
152 addr
, ((u8
*)buf
)[0]);
154 wl1271_debug(DEBUG_SDIO
, "sdio write 53 addr 0x%x, %zu bytes",
156 wl1271_dump_ascii(DEBUG_SDIO
, "data: ", buf
, len
);
159 ret
= sdio_writesb(func
, addr
, buf
, len
);
161 ret
= sdio_memcpy_toio(func
, addr
, buf
, len
);
165 wl1271_error("sdio write failed (%d)", ret
);
168 static int wl1271_sdio_power_on(struct wl1271
*wl
)
170 struct sdio_func
*func
= wl_to_func(wl
);
173 /* Make sure the card will not be powered off by runtime PM */
174 ret
= pm_runtime_get_sync(&func
->dev
);
178 /* Runtime PM might be disabled, so power up the card manually */
179 ret
= mmc_power_restore_host(func
->card
->host
);
183 sdio_claim_host(func
);
184 sdio_enable_func(func
);
190 static int wl1271_sdio_power_off(struct wl1271
*wl
)
192 struct sdio_func
*func
= wl_to_func(wl
);
195 sdio_disable_func(func
);
196 sdio_release_host(func
);
198 /* Runtime PM might be disabled, so power off the card manually */
199 ret
= mmc_power_save_host(func
->card
->host
);
203 /* Let runtime PM know the card is powered off */
204 return pm_runtime_put_sync(&func
->dev
);
207 static int wl1271_sdio_set_power(struct wl1271
*wl
, bool enable
)
210 return wl1271_sdio_power_on(wl
);
212 return wl1271_sdio_power_off(wl
);
215 static struct wl1271_if_operations sdio_ops
= {
216 .read
= wl1271_sdio_raw_read
,
217 .write
= wl1271_sdio_raw_write
,
218 .reset
= wl1271_sdio_reset
,
219 .init
= wl1271_sdio_init
,
220 .power
= wl1271_sdio_set_power
,
221 .dev
= wl1271_sdio_wl_to_dev
,
222 .enable_irq
= wl1271_sdio_enable_interrupts
,
223 .disable_irq
= wl1271_sdio_disable_interrupts
,
224 .set_block_size
= wl1271_sdio_set_block_size
,
227 static int __devinit
wl1271_probe(struct sdio_func
*func
,
228 const struct sdio_device_id
*id
)
230 struct ieee80211_hw
*hw
;
231 const struct wl12xx_platform_data
*wlan_data
;
233 unsigned long irqflags
;
234 mmc_pm_flag_t mmcflags
;
237 /* We are only able to handle the wlan function */
238 if (func
->num
!= 0x02)
241 hw
= wl1271_alloc_hw();
248 wl
->if_ops
= &sdio_ops
;
250 /* Grab access to FN0 for ELP reg. */
251 func
->card
->quirks
|= MMC_QUIRK_LENIENT_FN0
;
253 /* Use block mode for transferring over one block size of data */
254 func
->card
->quirks
|= MMC_QUIRK_BLKSZ_FOR_BYTE_MODE
;
256 wlan_data
= wl12xx_get_platform_data();
257 if (IS_ERR(wlan_data
)) {
258 ret
= PTR_ERR(wlan_data
);
259 wl1271_error("missing wlan platform data: %d", ret
);
263 wl
->irq
= wlan_data
->irq
;
264 wl
->ref_clock
= wlan_data
->board_ref_clock
;
265 wl
->tcxo_clock
= wlan_data
->board_tcxo_clock
;
266 wl
->platform_quirks
= wlan_data
->platform_quirks
;
268 if (wl
->platform_quirks
& WL12XX_PLATFORM_QUIRK_EDGE_IRQ
)
269 irqflags
= IRQF_TRIGGER_RISING
;
271 irqflags
= IRQF_TRIGGER_HIGH
| IRQF_ONESHOT
;
273 ret
= request_threaded_irq(wl
->irq
, wl1271_hardirq
, wl1271_irq
,
277 wl1271_error("request_irq() failed: %d", ret
);
281 enable_irq_wake(wl
->irq
);
282 device_init_wakeup(wl1271_sdio_wl_to_dev(wl
), 1);
284 disable_irq(wl
->irq
);
286 /* if sdio can keep power while host is suspended, enable wow */
287 mmcflags
= sdio_get_host_pm_caps(func
);
288 wl1271_debug(DEBUG_SDIO
, "sdio PM caps = 0x%x", mmcflags
);
290 if (mmcflags
& MMC_PM_KEEP_POWER
)
291 hw
->wiphy
->wowlan
.flags
= WIPHY_WOWLAN_ANY
;
293 ret
= wl1271_init_ieee80211(wl
);
297 ret
= wl1271_register_hw(wl
);
301 sdio_set_drvdata(func
, wl
);
303 /* Tell PM core that we don't need the card to be powered now */
304 pm_runtime_put_noidle(&func
->dev
);
306 wl1271_notice("initialized");
311 free_irq(wl
->irq
, wl
);
319 static void __devexit
wl1271_remove(struct sdio_func
*func
)
321 struct wl1271
*wl
= sdio_get_drvdata(func
);
323 /* Undo decrement done above in wl1271_probe */
324 pm_runtime_get_noresume(&func
->dev
);
326 wl1271_unregister_hw(wl
);
327 device_init_wakeup(wl1271_sdio_wl_to_dev(wl
), 0);
328 disable_irq_wake(wl
->irq
);
329 free_irq(wl
->irq
, wl
);
333 static int wl1271_suspend(struct device
*dev
)
335 /* Tell MMC/SDIO core it's OK to power down the card
336 * (if it isn't already), but not to remove it completely */
337 struct sdio_func
*func
= dev_to_sdio_func(dev
);
338 struct wl1271
*wl
= sdio_get_drvdata(func
);
339 mmc_pm_flag_t sdio_flags
;
342 wl1271_debug(DEBUG_MAC80211
, "wl1271 suspend. wow_enabled: %d",
345 /* check whether sdio should keep power */
346 if (wl
->wow_enabled
) {
347 sdio_flags
= sdio_get_host_pm_caps(func
);
349 if (!(sdio_flags
& MMC_PM_KEEP_POWER
)) {
350 wl1271_error("can't keep power while host "
356 /* keep power while host suspended */
357 ret
= sdio_set_host_pm_flags(func
, MMC_PM_KEEP_POWER
);
359 wl1271_error("error while trying to keep power");
364 sdio_release_host(func
);
370 static int wl1271_resume(struct device
*dev
)
372 struct sdio_func
*func
= dev_to_sdio_func(dev
);
373 struct wl1271
*wl
= sdio_get_drvdata(func
);
375 wl1271_debug(DEBUG_MAC80211
, "wl1271 resume");
376 if (wl
->wow_enabled
) {
377 /* claim back host */
378 sdio_claim_host(func
);
384 static const struct dev_pm_ops wl1271_sdio_pm_ops
= {
385 .suspend
= wl1271_suspend
,
386 .resume
= wl1271_resume
,
389 static struct sdio_driver wl1271_sdio_driver
= {
390 .name
= "wl1271_sdio",
391 .id_table
= wl1271_devices
,
392 .probe
= wl1271_probe
,
393 .remove
= __devexit_p(wl1271_remove
),
395 .pm
= &wl1271_sdio_pm_ops
,
399 static int __init
wl1271_init(void)
403 ret
= sdio_register_driver(&wl1271_sdio_driver
);
405 wl1271_error("failed to register sdio driver: %d", ret
);
413 static void __exit
wl1271_exit(void)
415 sdio_unregister_driver(&wl1271_sdio_driver
);
417 wl1271_notice("unloaded");
420 module_init(wl1271_init
);
421 module_exit(wl1271_exit
);
423 MODULE_LICENSE("GPL");
424 MODULE_AUTHOR("Luciano Coelho <coelho@ti.com>");
425 MODULE_AUTHOR("Juuso Oikarinen <juuso.oikarinen@nokia.com>");
426 MODULE_FIRMWARE(WL1271_FW_NAME
);
427 MODULE_FIRMWARE(WL128X_FW_NAME
);
428 MODULE_FIRMWARE(WL127X_AP_FW_NAME
);
429 MODULE_FIRMWARE(WL128X_AP_FW_NAME
);