f27e91502631c14825138912418b65ca33ddc72d
[pandora-kernel.git] / drivers / net / wireless / wl12xx / sdio.c
1 /*
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>
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>
35
36 #include "wl12xx.h"
37 #include "wl12xx_80211.h"
38 #include "io.h"
39
40 #ifndef SDIO_VENDOR_ID_TI
41 #define SDIO_VENDOR_ID_TI               0x0097
42 #endif
43
44 #ifndef SDIO_DEVICE_ID_TI_WL1271
45 #define SDIO_DEVICE_ID_TI_WL1271        0x4076
46 #endif
47
48 static const struct sdio_device_id wl1271_devices[] = {
49         { SDIO_DEVICE(SDIO_VENDOR_ID_TI, SDIO_DEVICE_ID_TI_WL1271) },
50         {}
51 };
52 MODULE_DEVICE_TABLE(sdio, wl1271_devices);
53
54 static inline struct sdio_func *wl_to_func(struct wl1271 *wl)
55 {
56         return wl->if_priv;
57 }
58
59 static struct device *wl1271_sdio_wl_to_dev(struct wl1271 *wl)
60 {
61         return &(wl_to_func(wl)->dev);
62 }
63
64 static irqreturn_t wl1271_irq(int irq, void *cookie)
65 {
66         struct wl1271 *wl = cookie;
67         unsigned long flags;
68
69         wl1271_debug(DEBUG_IRQ, "IRQ");
70
71         /* complete the ELP completion */
72         spin_lock_irqsave(&wl->wl_lock, flags);
73         if (wl->elp_compl) {
74                 complete(wl->elp_compl);
75                 wl->elp_compl = NULL;
76         }
77
78         if (!test_and_set_bit(WL1271_FLAG_IRQ_RUNNING, &wl->flags))
79                 ieee80211_queue_work(wl->hw, &wl->irq_work);
80         set_bit(WL1271_FLAG_IRQ_PENDING, &wl->flags);
81         spin_unlock_irqrestore(&wl->wl_lock, flags);
82
83         return IRQ_HANDLED;
84 }
85
86 static void wl1271_sdio_disable_interrupts(struct wl1271 *wl)
87 {
88         disable_irq(wl->irq);
89 }
90
91 static void wl1271_sdio_enable_interrupts(struct wl1271 *wl)
92 {
93         enable_irq(wl->irq);
94 }
95
96 static void wl1271_sdio_reset(struct wl1271 *wl)
97 {
98 }
99
100 static void wl1271_sdio_init(struct wl1271 *wl)
101 {
102 }
103
104 static void wl1271_sdio_raw_read(struct wl1271 *wl, int addr, void *buf,
105                                  size_t len, bool fixed)
106 {
107         int ret;
108         struct sdio_func *func = wl_to_func(wl);
109
110         sdio_claim_host(func);
111
112         if (unlikely(addr == HW_ACCESS_ELP_CTRL_REG_ADDR)) {
113                 ((u8 *)buf)[0] = sdio_f0_readb(func, addr, &ret);
114                 wl1271_debug(DEBUG_SDIO, "sdio read 52 addr 0x%x, byte 0x%02x",
115                              addr, ((u8 *)buf)[0]);
116         } else {
117                 if (fixed)
118                         ret = sdio_readsb(func, buf, addr, len);
119                 else
120                         ret = sdio_memcpy_fromio(func, buf, addr, len);
121
122                 wl1271_debug(DEBUG_SDIO, "sdio read 53 addr 0x%x, %zu bytes",
123                              addr, len);
124                 wl1271_dump_ascii(DEBUG_SDIO, "data: ", buf, len);
125         }
126
127         sdio_release_host(func);
128
129         if (ret)
130                 wl1271_error("sdio read failed (%d)", ret);
131 }
132
133 static void wl1271_sdio_raw_write(struct wl1271 *wl, int addr, void *buf,
134                                   size_t len, bool fixed)
135 {
136         int ret;
137         struct sdio_func *func = wl_to_func(wl);
138
139         sdio_claim_host(func);
140
141         if (unlikely(addr == HW_ACCESS_ELP_CTRL_REG_ADDR)) {
142                 sdio_f0_writeb(func, ((u8 *)buf)[0], addr, &ret);
143                 wl1271_debug(DEBUG_SDIO, "sdio write 52 addr 0x%x, byte 0x%02x",
144                              addr, ((u8 *)buf)[0]);
145         } else {
146                 wl1271_debug(DEBUG_SDIO, "sdio write 53 addr 0x%x, %zu bytes",
147                              addr, len);
148                 wl1271_dump_ascii(DEBUG_SDIO, "data: ", buf, len);
149
150                 if (fixed)
151                         ret = sdio_writesb(func, addr, buf, len);
152                 else
153                         ret = sdio_memcpy_toio(func, addr, buf, len);
154         }
155
156         sdio_release_host(func);
157
158         if (ret)
159                 wl1271_error("sdio write failed (%d)", ret);
160 }
161
162 static int wl1271_sdio_power_on(struct wl1271 *wl)
163 {
164         struct sdio_func *func = wl_to_func(wl);
165         int ret;
166
167         /* Make sure the card will not be powered off by runtime PM */
168         ret = pm_runtime_get_sync(&func->dev);
169         if (ret < 0)
170                 goto out;
171
172         /* Runtime PM might be disabled, so power up the card manually */
173         ret = mmc_power_restore_host(func->card->host);
174         if (ret < 0)
175                 goto out;
176
177         sdio_claim_host(func);
178         sdio_enable_func(func);
179         sdio_release_host(func);
180
181 out:
182         return ret;
183 }
184
185 static int wl1271_sdio_power_off(struct wl1271 *wl)
186 {
187         struct sdio_func *func = wl_to_func(wl);
188         int ret;
189
190         sdio_claim_host(func);
191         sdio_disable_func(func);
192         sdio_release_host(func);
193
194         /* Runtime PM might be disabled, so power off the card manually */
195         ret = mmc_power_save_host(func->card->host);
196         if (ret < 0)
197                 return ret;
198
199         /* Let runtime PM know the card is powered off */
200         return pm_runtime_put_sync(&func->dev);
201 }
202
203 static int wl1271_sdio_set_power(struct wl1271 *wl, bool enable)
204 {
205         if (enable)
206                 return wl1271_sdio_power_on(wl);
207         else
208                 return wl1271_sdio_power_off(wl);
209 }
210
211 static struct wl1271_if_operations sdio_ops = {
212         .read           = wl1271_sdio_raw_read,
213         .write          = wl1271_sdio_raw_write,
214         .reset          = wl1271_sdio_reset,
215         .init           = wl1271_sdio_init,
216         .power          = wl1271_sdio_set_power,
217         .dev            = wl1271_sdio_wl_to_dev,
218         .enable_irq     = wl1271_sdio_enable_interrupts,
219         .disable_irq    = wl1271_sdio_disable_interrupts
220 };
221
222 static int __devinit wl1271_probe(struct sdio_func *func,
223                                   const struct sdio_device_id *id)
224 {
225         struct ieee80211_hw *hw;
226         const struct wl12xx_platform_data *wlan_data;
227         struct wl1271 *wl;
228         int ret;
229
230         /* We are only able to handle the wlan function */
231         if (func->num != 0x02)
232                 return -ENODEV;
233
234         hw = wl1271_alloc_hw();
235         if (IS_ERR(hw))
236                 return PTR_ERR(hw);
237
238         wl = hw->priv;
239
240         wl->if_priv = func;
241         wl->if_ops = &sdio_ops;
242
243         /* Grab access to FN0 for ELP reg. */
244         func->card->quirks |= MMC_QUIRK_LENIENT_FN0;
245
246         wlan_data = wl12xx_get_platform_data();
247         if (IS_ERR(wlan_data)) {
248                 ret = PTR_ERR(wlan_data);
249                 wl1271_error("missing wlan platform data: %d", ret);
250                 goto out_free;
251         }
252
253         wl->irq = wlan_data->irq;
254         wl->ref_clock = wlan_data->board_ref_clock;
255
256         ret = request_irq(wl->irq, wl1271_irq, 0, DRIVER_NAME, wl);
257         if (ret < 0) {
258                 wl1271_error("request_irq() failed: %d", ret);
259                 goto out_free;
260         }
261
262         set_irq_type(wl->irq, IRQ_TYPE_EDGE_RISING);
263
264         disable_irq(wl->irq);
265
266         ret = wl1271_init_ieee80211(wl);
267         if (ret)
268                 goto out_irq;
269
270         ret = wl1271_register_hw(wl);
271         if (ret)
272                 goto out_irq;
273
274         sdio_set_drvdata(func, wl);
275
276         /* Tell PM core that we don't need the card to be powered now */
277         pm_runtime_put_noidle(&func->dev);
278
279         wl1271_notice("initialized");
280
281         return 0;
282
283  out_irq:
284         free_irq(wl->irq, wl);
285
286
287  out_free:
288         wl1271_free_hw(wl);
289
290         return ret;
291 }
292
293 static void __devexit wl1271_remove(struct sdio_func *func)
294 {
295         struct wl1271 *wl = sdio_get_drvdata(func);
296
297         /* Undo decrement done above in wl1271_probe */
298         pm_runtime_get_noresume(&func->dev);
299
300         wl1271_unregister_hw(wl);
301         free_irq(wl->irq, wl);
302         wl1271_free_hw(wl);
303 }
304
305 static int wl1271_suspend(struct device *dev)
306 {
307         /* Tell MMC/SDIO core it's OK to power down the card
308          * (if it isn't already), but not to remove it completely */
309         return 0;
310 }
311
312 static int wl1271_resume(struct device *dev)
313 {
314         return 0;
315 }
316
317 static const struct dev_pm_ops wl1271_sdio_pm_ops = {
318         .suspend        = wl1271_suspend,
319         .resume         = wl1271_resume,
320 };
321
322 static struct sdio_driver wl1271_sdio_driver = {
323         .name           = "wl1271_sdio",
324         .id_table       = wl1271_devices,
325         .probe          = wl1271_probe,
326         .remove         = __devexit_p(wl1271_remove),
327         .drv = {
328                 .pm = &wl1271_sdio_pm_ops,
329         },
330 };
331
332 static int __init wl1271_init(void)
333 {
334         int ret;
335
336         ret = sdio_register_driver(&wl1271_sdio_driver);
337         if (ret < 0) {
338                 wl1271_error("failed to register sdio driver: %d", ret);
339                 goto out;
340         }
341
342 out:
343         return ret;
344 }
345
346 static void __exit wl1271_exit(void)
347 {
348         sdio_unregister_driver(&wl1271_sdio_driver);
349
350         wl1271_notice("unloaded");
351 }
352
353 module_init(wl1271_init);
354 module_exit(wl1271_exit);
355
356 MODULE_LICENSE("GPL");
357 MODULE_AUTHOR("Luciano Coelho <luciano.coelho@nokia.com>");
358 MODULE_AUTHOR("Juuso Oikarinen <juuso.oikarinen@nokia.com>");
359 MODULE_FIRMWARE(WL1271_FW_NAME);
360 MODULE_FIRMWARE(WL1271_AP_FW_NAME);