blob: 5a4268012da46b603989fc5aab601200ba6b2ecd [file] [log] [blame]
Teemu Paasikivi5129dff2010-02-22 08:38:27 +02001/*
2 * This file is part of wl1271
3 *
4 * Copyright (C) 2009-2010 Nokia Corporation
5 *
6 * Contact: Luciano Coelho <luciano.coelho@nokia.com>
7 *
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.
11 *
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.
16 *
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
20 * 02110-1301 USA
21 *
22 */
23
24#include <linux/irq.h>
25#include <linux/module.h>
Teemu Paasikivi5129dff2010-02-22 08:38:27 +020026#include <linux/vmalloc.h>
27#include <linux/mmc/sdio_func.h>
28#include <linux/mmc/sdio_ids.h>
29#include <linux/mmc/card.h>
Ido Yariv11251e72011-02-28 00:13:58 +020030#include <linux/mmc/host.h>
Ohad Ben-Cohen19b87172010-05-13 12:43:24 +030031#include <linux/gpio.h>
Ohad Ben-Cohen09cecc32010-09-16 01:31:35 +020032#include <linux/wl12xx.h>
Ohad Ben-Cohen00cbb3c2010-10-08 16:16:16 +030033#include <linux/pm_runtime.h>
Teemu Paasikivi5129dff2010-02-22 08:38:27 +020034
Shahar Levi00d20102010-11-08 11:20:10 +000035#include "wl12xx.h"
Teemu Paasikivi5129dff2010-02-22 08:38:27 +020036#include "wl12xx_80211.h"
Shahar Levi00d20102010-11-08 11:20:10 +000037#include "io.h"
Teemu Paasikivi5129dff2010-02-22 08:38:27 +020038
Teemu Paasikivi5129dff2010-02-22 08:38:27 +020039#ifndef SDIO_VENDOR_ID_TI
40#define SDIO_VENDOR_ID_TI 0x0097
41#endif
42
43#ifndef SDIO_DEVICE_ID_TI_WL1271
44#define SDIO_DEVICE_ID_TI_WL1271 0x4076
45#endif
46
Felipe Balbifbe936b2011-10-04 23:10:28 +030047struct wl12xx_sdio_glue {
48 struct device *dev;
49 struct wl1271 *wl;
50};
51
Felipe Balbi33dd74c2011-05-14 00:26:18 +030052static const struct sdio_device_id wl1271_devices[] __devinitconst = {
Teemu Paasikivi5129dff2010-02-22 08:38:27 +020053 { SDIO_DEVICE(SDIO_VENDOR_ID_TI, SDIO_DEVICE_ID_TI_WL1271) },
54 {}
55};
56MODULE_DEVICE_TABLE(sdio, wl1271_devices);
57
Ido Yariv0da13da2011-03-31 10:06:58 +020058static void wl1271_sdio_set_block_size(struct wl1271 *wl, unsigned int blksz)
Luciano Coelhoa81159e2011-03-14 14:05:13 +020059{
Luciano Coelhoa81159e2011-03-14 14:05:13 +020060 sdio_claim_host(wl->if_priv);
Ido Yariv0da13da2011-03-31 10:06:58 +020061 sdio_set_block_size(wl->if_priv, blksz);
Luciano Coelhoa81159e2011-03-14 14:05:13 +020062 sdio_release_host(wl->if_priv);
63}
64
Felipe Balbifbe936b2011-10-04 23:10:28 +030065static inline struct wl12xx_sdio_glue *wl_to_glue(struct wl1271 *wl)
Teemu Paasikivi5129dff2010-02-22 08:38:27 +020066{
67 return wl->if_priv;
68}
69
70static struct device *wl1271_sdio_wl_to_dev(struct wl1271 *wl)
71{
Felipe Balbifbe936b2011-10-04 23:10:28 +030072 return wl_to_glue(wl)->dev;
Teemu Paasikivi5129dff2010-02-22 08:38:27 +020073}
74
Ido Yariva6208652011-03-01 15:14:41 +020075static irqreturn_t wl1271_hardirq(int irq, void *cookie)
Teemu Paasikivi5129dff2010-02-22 08:38:27 +020076{
77 struct wl1271 *wl = cookie;
78 unsigned long flags;
79
80 wl1271_debug(DEBUG_IRQ, "IRQ");
81
82 /* complete the ELP completion */
83 spin_lock_irqsave(&wl->wl_lock, flags);
Ido Yariva6208652011-03-01 15:14:41 +020084 set_bit(WL1271_FLAG_IRQ_RUNNING, &wl->flags);
Teemu Paasikivi5129dff2010-02-22 08:38:27 +020085 if (wl->elp_compl) {
86 complete(wl->elp_compl);
87 wl->elp_compl = NULL;
88 }
Eliad Pellerf44e5862011-05-13 11:57:11 +030089
90 if (test_bit(WL1271_FLAG_SUSPENDED, &wl->flags)) {
91 /* don't enqueue a work right now. mark it as pending */
92 set_bit(WL1271_FLAG_PENDING_WORK, &wl->flags);
93 wl1271_debug(DEBUG_IRQ, "should not enqueue work");
94 disable_irq_nosync(wl->irq);
95 pm_wakeup_event(wl1271_sdio_wl_to_dev(wl), 0);
96 spin_unlock_irqrestore(&wl->wl_lock, flags);
97 return IRQ_HANDLED;
98 }
Teemu Paasikivi5129dff2010-02-22 08:38:27 +020099 spin_unlock_irqrestore(&wl->wl_lock, flags);
100
Ido Yariva6208652011-03-01 15:14:41 +0200101 return IRQ_WAKE_THREAD;
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200102}
103
104static void wl1271_sdio_disable_interrupts(struct wl1271 *wl)
105{
106 disable_irq(wl->irq);
107}
108
109static void wl1271_sdio_enable_interrupts(struct wl1271 *wl)
110{
111 enable_irq(wl->irq);
112}
113
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200114static void wl1271_sdio_raw_read(struct wl1271 *wl, int addr, void *buf,
Teemu Paasikivia3b8ea72010-03-18 12:26:41 +0200115 size_t len, bool fixed)
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200116{
117 int ret;
Felipe Balbifbe936b2011-10-04 23:10:28 +0300118 struct wl12xx_sdio_glue *glue = wl_to_glue(wl);
119 struct sdio_func *func = dev_to_sdio_func(glue->dev);
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200120
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200121 if (unlikely(addr == HW_ACCESS_ELP_CTRL_REG_ADDR)) {
122 ((u8 *)buf)[0] = sdio_f0_readb(func, addr, &ret);
Teemu Paasikivia3b8ea72010-03-18 12:26:41 +0200123 wl1271_debug(DEBUG_SDIO, "sdio read 52 addr 0x%x, byte 0x%02x",
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200124 addr, ((u8 *)buf)[0]);
125 } else {
126 if (fixed)
127 ret = sdio_readsb(func, buf, addr, len);
128 else
129 ret = sdio_memcpy_fromio(func, buf, addr, len);
130
Teemu Paasikivi99e50312010-03-26 12:53:16 +0200131 wl1271_debug(DEBUG_SDIO, "sdio read 53 addr 0x%x, %zu bytes",
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200132 addr, len);
Teemu Paasikivia3b8ea72010-03-18 12:26:41 +0200133 wl1271_dump_ascii(DEBUG_SDIO, "data: ", buf, len);
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200134 }
135
136 if (ret)
137 wl1271_error("sdio read failed (%d)", ret);
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200138}
139
140static void wl1271_sdio_raw_write(struct wl1271 *wl, int addr, void *buf,
Teemu Paasikivia3b8ea72010-03-18 12:26:41 +0200141 size_t len, bool fixed)
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200142{
143 int ret;
Felipe Balbifbe936b2011-10-04 23:10:28 +0300144 struct wl12xx_sdio_glue *glue = wl_to_glue(wl);
145 struct sdio_func *func = dev_to_sdio_func(glue->dev);
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200146
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200147 if (unlikely(addr == HW_ACCESS_ELP_CTRL_REG_ADDR)) {
148 sdio_f0_writeb(func, ((u8 *)buf)[0], addr, &ret);
Teemu Paasikivia3b8ea72010-03-18 12:26:41 +0200149 wl1271_debug(DEBUG_SDIO, "sdio write 52 addr 0x%x, byte 0x%02x",
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200150 addr, ((u8 *)buf)[0]);
151 } else {
Teemu Paasikivi99e50312010-03-26 12:53:16 +0200152 wl1271_debug(DEBUG_SDIO, "sdio write 53 addr 0x%x, %zu bytes",
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200153 addr, len);
Teemu Paasikivia3b8ea72010-03-18 12:26:41 +0200154 wl1271_dump_ascii(DEBUG_SDIO, "data: ", buf, len);
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200155
156 if (fixed)
157 ret = sdio_writesb(func, addr, buf, len);
158 else
159 ret = sdio_memcpy_toio(func, addr, buf, len);
160 }
Ohad Ben-Cohen49063a02010-09-07 04:24:21 +0300161
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200162 if (ret)
163 wl1271_error("sdio write failed (%d)", ret);
Ohad Ben-Cohen49063a02010-09-07 04:24:21 +0300164}
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200165
Ohad Ben-Cohen2cc78ff2010-09-16 01:22:04 +0200166static int wl1271_sdio_power_on(struct wl1271 *wl)
Ohad Ben-Cohen49063a02010-09-07 04:24:21 +0300167{
Ohad Ben-Cohen00cbb3c2010-10-08 16:16:16 +0300168 int ret;
Felipe Balbifbe936b2011-10-04 23:10:28 +0300169 struct wl12xx_sdio_glue *glue = wl_to_glue(wl);
170 struct sdio_func *func = dev_to_sdio_func(glue->dev);
Ohad Ben-Cohen00cbb3c2010-10-08 16:16:16 +0300171
Ohad Ben-Cohen86046da2011-05-29 16:36:03 +0300172 /* If enabled, tell runtime PM not to power off the card */
173 if (pm_runtime_enabled(&func->dev)) {
174 ret = pm_runtime_get_sync(&func->dev);
Ido Yariva15f1c42011-08-22 23:19:49 +0300175 if (ret < 0)
Ohad Ben-Cohen86046da2011-05-29 16:36:03 +0300176 goto out;
Ohad Ben-Cohenb5d6e5f2011-06-26 18:00:11 +0300177 } else {
178 /* Runtime PM is disabled: power up the card manually */
179 ret = mmc_power_restore_host(func->card->host);
180 if (ret < 0)
181 goto out;
Ohad Ben-Cohen86046da2011-05-29 16:36:03 +0300182 }
Ohad Ben-Cohen49063a02010-09-07 04:24:21 +0300183
184 sdio_claim_host(func);
185 sdio_enable_func(func);
Ohad Ben-Cohen2cc78ff2010-09-16 01:22:04 +0200186
Ohad Ben-Cohen00cbb3c2010-10-08 16:16:16 +0300187out:
188 return ret;
Ohad Ben-Cohen49063a02010-09-07 04:24:21 +0300189}
190
Ohad Ben-Cohen2cc78ff2010-09-16 01:22:04 +0200191static int wl1271_sdio_power_off(struct wl1271 *wl)
Ohad Ben-Cohen49063a02010-09-07 04:24:21 +0300192{
Ido Yariv11251e72011-02-28 00:13:58 +0200193 int ret;
Felipe Balbifbe936b2011-10-04 23:10:28 +0300194 struct wl12xx_sdio_glue *glue = wl_to_glue(wl);
195 struct sdio_func *func = dev_to_sdio_func(glue->dev);
Ohad Ben-Cohen49063a02010-09-07 04:24:21 +0300196
Ohad Ben-Cohen49063a02010-09-07 04:24:21 +0300197 sdio_disable_func(func);
198 sdio_release_host(func);
Ohad Ben-Cohen2cc78ff2010-09-16 01:22:04 +0200199
Ohad Ben-Cohenb5d6e5f2011-06-26 18:00:11 +0300200 /* Power off the card manually, even if runtime PM is enabled. */
Ido Yariv11251e72011-02-28 00:13:58 +0200201 ret = mmc_power_save_host(func->card->host);
202 if (ret < 0)
203 return ret;
204
Ohad Ben-Cohen86046da2011-05-29 16:36:03 +0300205 /* If enabled, let runtime PM know the card is powered off */
206 if (pm_runtime_enabled(&func->dev))
207 ret = pm_runtime_put_sync(&func->dev);
208
209 return ret;
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200210}
211
Ohad Ben-Cohen2cc78ff2010-09-16 01:22:04 +0200212static int wl1271_sdio_set_power(struct wl1271 *wl, bool enable)
Teemu Paasikivibecd5512010-03-18 12:26:27 +0200213{
Ohad Ben-Cohen49063a02010-09-07 04:24:21 +0300214 if (enable)
Ohad Ben-Cohen2cc78ff2010-09-16 01:22:04 +0200215 return wl1271_sdio_power_on(wl);
Ohad Ben-Cohen49063a02010-09-07 04:24:21 +0300216 else
Ohad Ben-Cohen2cc78ff2010-09-16 01:22:04 +0200217 return wl1271_sdio_power_off(wl);
Teemu Paasikivibecd5512010-03-18 12:26:27 +0200218}
219
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200220static struct wl1271_if_operations sdio_ops = {
221 .read = wl1271_sdio_raw_read,
222 .write = wl1271_sdio_raw_write,
Teemu Paasikivibecd5512010-03-18 12:26:27 +0200223 .power = wl1271_sdio_set_power,
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200224 .dev = wl1271_sdio_wl_to_dev,
225 .enable_irq = wl1271_sdio_enable_interrupts,
Luciano Coelhoa81159e2011-03-14 14:05:13 +0200226 .disable_irq = wl1271_sdio_disable_interrupts,
227 .set_block_size = wl1271_sdio_set_block_size,
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200228};
229
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200230static int __devinit wl1271_probe(struct sdio_func *func,
231 const struct sdio_device_id *id)
232{
233 struct ieee80211_hw *hw;
Ohad Ben-Cohen09cecc32010-09-16 01:31:35 +0200234 const struct wl12xx_platform_data *wlan_data;
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200235 struct wl1271 *wl;
Felipe Balbifbe936b2011-10-04 23:10:28 +0300236 struct wl12xx_sdio_glue *glue;
Ido Yariv341b7cd2011-03-31 10:07:01 +0200237 unsigned long irqflags;
Eliad Pellerf795ea82011-05-13 11:57:12 +0300238 mmc_pm_flag_t mmcflags;
Felipe Balbifbe936b2011-10-04 23:10:28 +0300239 int ret = -ENOMEM;
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200240
241 /* We are only able to handle the wlan function */
242 if (func->num != 0x02)
243 return -ENODEV;
244
Felipe Balbifbe936b2011-10-04 23:10:28 +0300245 glue = kzalloc(sizeof(*glue), GFP_KERNEL);
246 if (!glue) {
247 wl1271_error("can't allocate glue");
248 goto out;
249 }
250
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200251 hw = wl1271_alloc_hw();
Felipe Balbifbe936b2011-10-04 23:10:28 +0300252 if (IS_ERR(hw)) {
253 wl1271_error("can't allocate hw");
254 ret = PTR_ERR(hw);
255 goto out_free_glue;
256 }
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200257
258 wl = hw->priv;
259
Felipe Balbifbe936b2011-10-04 23:10:28 +0300260 glue->dev = &func->dev;
261 glue->wl = wl;
262
263 wl->if_priv = glue;
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200264 wl->if_ops = &sdio_ops;
265
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200266 /* Grab access to FN0 for ELP reg. */
267 func->card->quirks |= MMC_QUIRK_LENIENT_FN0;
268
Arik Nemtsov1d732e82011-03-18 14:49:57 +0200269 /* Use block mode for transferring over one block size of data */
270 func->card->quirks |= MMC_QUIRK_BLKSZ_FOR_BYTE_MODE;
271
Ohad Ben-Cohen09cecc32010-09-16 01:31:35 +0200272 wlan_data = wl12xx_get_platform_data();
273 if (IS_ERR(wlan_data)) {
274 ret = PTR_ERR(wlan_data);
275 wl1271_error("missing wlan platform data: %d", ret);
Felipe Balbifbe936b2011-10-04 23:10:28 +0300276 goto out_free_hw;
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200277 }
278
Ohad Ben-Cohen09cecc32010-09-16 01:31:35 +0200279 wl->irq = wlan_data->irq;
Ohad Ben-Cohen15cea992010-09-16 01:31:51 +0200280 wl->ref_clock = wlan_data->board_ref_clock;
Shahar Levi5ea417a2011-03-06 16:32:11 +0200281 wl->tcxo_clock = wlan_data->board_tcxo_clock;
Ido Yariv341b7cd2011-03-31 10:07:01 +0200282 wl->platform_quirks = wlan_data->platform_quirks;
283
284 if (wl->platform_quirks & WL12XX_PLATFORM_QUIRK_EDGE_IRQ)
285 irqflags = IRQF_TRIGGER_RISING;
286 else
287 irqflags = IRQF_TRIGGER_HIGH | IRQF_ONESHOT;
Ohad Ben-Cohen09cecc32010-09-16 01:31:35 +0200288
Ido Yariva6208652011-03-01 15:14:41 +0200289 ret = request_threaded_irq(wl->irq, wl1271_hardirq, wl1271_irq,
Ido Yariv341b7cd2011-03-31 10:07:01 +0200290 irqflags,
Ido Yariva6208652011-03-01 15:14:41 +0200291 DRIVER_NAME, wl);
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200292 if (ret < 0) {
293 wl1271_error("request_irq() failed: %d", ret);
Felipe Balbifbe936b2011-10-04 23:10:28 +0300294 goto out_free_hw;
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200295 }
296
Eliad Peller6bb04332011-06-06 12:21:55 +0300297 ret = enable_irq_wake(wl->irq);
298 if (!ret) {
299 wl->irq_wake_enabled = true;
300 device_init_wakeup(wl1271_sdio_wl_to_dev(wl), 1);
Eliad Peller2c0f2462011-05-13 11:57:08 +0300301
Eliad Peller6bb04332011-06-06 12:21:55 +0300302 /* if sdio can keep power while host is suspended, enable wow */
303 mmcflags = sdio_get_host_pm_caps(func);
304 wl1271_debug(DEBUG_SDIO, "sdio PM caps = 0x%x", mmcflags);
305
306 if (mmcflags & MMC_PM_KEEP_POWER)
307 hw->wiphy->wowlan.flags = WIPHY_WOWLAN_ANY;
308 }
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200309 disable_irq(wl->irq);
310
311 ret = wl1271_init_ieee80211(wl);
312 if (ret)
313 goto out_irq;
314
315 ret = wl1271_register_hw(wl);
316 if (ret)
317 goto out_irq;
318
Felipe Balbifbe936b2011-10-04 23:10:28 +0300319 sdio_set_drvdata(func, glue);
Teemu Paasikivi49d7f6d2010-02-22 08:38:29 +0200320
Ohad Ben-Cohen00cbb3c2010-10-08 16:16:16 +0300321 /* Tell PM core that we don't need the card to be powered now */
322 pm_runtime_put_noidle(&func->dev);
323
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200324 return 0;
325
Felipe Balbifbe936b2011-10-04 23:10:28 +0300326out_irq:
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200327 free_irq(wl->irq, wl);
328
Felipe Balbifbe936b2011-10-04 23:10:28 +0300329out_free_hw:
Teemu Paasikivi3b56dd62010-03-18 12:26:46 +0200330 wl1271_free_hw(wl);
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200331
Felipe Balbifbe936b2011-10-04 23:10:28 +0300332out_free_glue:
333 kfree(glue);
334out:
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200335 return ret;
336}
337
338static void __devexit wl1271_remove(struct sdio_func *func)
339{
Felipe Balbifbe936b2011-10-04 23:10:28 +0300340 struct wl12xx_sdio_glue *glue = sdio_get_drvdata(func);
341 struct wl1271 *wl = glue->wl;
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200342
Ohad Ben-Cohen00cbb3c2010-10-08 16:16:16 +0300343 /* Undo decrement done above in wl1271_probe */
344 pm_runtime_get_noresume(&func->dev);
345
Teemu Paasikivi3b56dd62010-03-18 12:26:46 +0200346 wl1271_unregister_hw(wl);
Eliad Peller6bb04332011-06-06 12:21:55 +0300347 if (wl->irq_wake_enabled) {
348 device_init_wakeup(wl1271_sdio_wl_to_dev(wl), 0);
349 disable_irq_wake(wl->irq);
350 }
Juuso Oikarinen4e23b112010-08-13 04:46:48 +0200351 free_irq(wl->irq, wl);
Teemu Paasikivi801a6732010-03-18 12:26:42 +0200352 wl1271_free_hw(wl);
Felipe Balbifbe936b2011-10-04 23:10:28 +0300353 kfree(glue);
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200354}
355
Luciano Coelhof634a4e2011-05-18 16:51:26 -0400356#ifdef CONFIG_PM
Ohad Ben-Cohen674f3052010-10-08 16:16:27 +0300357static int wl1271_suspend(struct device *dev)
358{
359 /* Tell MMC/SDIO core it's OK to power down the card
360 * (if it isn't already), but not to remove it completely */
Eliad Peller039bdb12011-05-13 11:57:10 +0300361 struct sdio_func *func = dev_to_sdio_func(dev);
362 struct wl1271 *wl = sdio_get_drvdata(func);
363 mmc_pm_flag_t sdio_flags;
364 int ret = 0;
365
366 wl1271_debug(DEBUG_MAC80211, "wl1271 suspend. wow_enabled: %d",
367 wl->wow_enabled);
368
369 /* check whether sdio should keep power */
370 if (wl->wow_enabled) {
371 sdio_flags = sdio_get_host_pm_caps(func);
372
373 if (!(sdio_flags & MMC_PM_KEEP_POWER)) {
374 wl1271_error("can't keep power while host "
375 "is suspended");
376 ret = -EINVAL;
377 goto out;
378 }
379
380 /* keep power while host suspended */
381 ret = sdio_set_host_pm_flags(func, MMC_PM_KEEP_POWER);
382 if (ret) {
383 wl1271_error("error while trying to keep power");
384 goto out;
385 }
Eliad Pellerf44e5862011-05-13 11:57:11 +0300386
387 /* release host */
388 sdio_release_host(func);
Eliad Peller039bdb12011-05-13 11:57:10 +0300389 }
390out:
391 return ret;
Ohad Ben-Cohen674f3052010-10-08 16:16:27 +0300392}
393
394static int wl1271_resume(struct device *dev)
395{
Eliad Pellerf44e5862011-05-13 11:57:11 +0300396 struct sdio_func *func = dev_to_sdio_func(dev);
397 struct wl1271 *wl = sdio_get_drvdata(func);
398
399 wl1271_debug(DEBUG_MAC80211, "wl1271 resume");
400 if (wl->wow_enabled) {
401 /* claim back host */
402 sdio_claim_host(func);
403 }
404
Ohad Ben-Cohen674f3052010-10-08 16:16:27 +0300405 return 0;
406}
407
408static const struct dev_pm_ops wl1271_sdio_pm_ops = {
409 .suspend = wl1271_suspend,
410 .resume = wl1271_resume,
411};
Luciano Coelhof634a4e2011-05-18 16:51:26 -0400412#endif
Ohad Ben-Cohen674f3052010-10-08 16:16:27 +0300413
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200414static struct sdio_driver wl1271_sdio_driver = {
Luciano Coelhof4b5d8d2010-04-01 11:38:17 +0300415 .name = "wl1271_sdio",
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200416 .id_table = wl1271_devices,
417 .probe = wl1271_probe,
418 .remove = __devexit_p(wl1271_remove),
Luciano Coelhof634a4e2011-05-18 16:51:26 -0400419#ifdef CONFIG_PM
Ohad Ben-Cohen674f3052010-10-08 16:16:27 +0300420 .drv = {
421 .pm = &wl1271_sdio_pm_ops,
422 },
Luciano Coelhof634a4e2011-05-18 16:51:26 -0400423#endif
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200424};
425
426static int __init wl1271_init(void)
427{
Felipe Balbi6bdaf792011-05-14 00:26:20 +0300428 return sdio_register_driver(&wl1271_sdio_driver);
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200429}
430
431static void __exit wl1271_exit(void)
432{
433 sdio_unregister_driver(&wl1271_sdio_driver);
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200434}
435
436module_init(wl1271_init);
437module_exit(wl1271_exit);
438
439MODULE_LICENSE("GPL");
Luciano Coelho5245e3a2011-03-30 21:31:39 +0300440MODULE_AUTHOR("Luciano Coelho <coelho@ti.com>");
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200441MODULE_AUTHOR("Juuso Oikarinen <juuso.oikarinen@nokia.com>");
Arik Nemtsovc302b2c2011-08-17 10:45:48 +0300442MODULE_FIRMWARE(WL127X_FW_NAME);
Shahar Levi5aa42342011-03-06 16:32:07 +0200443MODULE_FIRMWARE(WL128X_FW_NAME);