0228e97abf82a4b1aba3884afcc1bc4e90a13de7
[pandora-wifi.git] / drivers / net / wireless / wl12xx / wl1251_sdio.c
1 /*
2  * wl12xx SDIO routines
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License version 2 as
6  * published by the Free Software Foundation.
7  *
8  * This program is distributed in the hope that it will be useful, but
9  * WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11  * General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public License
14  * along with this program; if not, write to the Free Software
15  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
16  * 02110-1301 USA
17  *
18  * Copyright (C) 2005 Texas Instruments Incorporated
19  * Copyright (C) 2008 Google Inc
20  * Copyright (C) 2009 Bob Copeland (me@bobcopeland.com)
21  */
22 #include <linux/module.h>
23 #include <linux/mod_devicetable.h>
24 #include <linux/mmc/sdio_func.h>
25 #include <linux/mmc/sdio_ids.h>
26 #include <linux/platform_device.h>
27 #include <linux/spi/wl12xx.h>
28 #include <linux/irq.h>
29
30 #include "wl1251.h"
31
32 #ifndef SDIO_VENDOR_ID_TI
33 #define SDIO_VENDOR_ID_TI               0x104c
34 #endif
35
36 #ifndef SDIO_DEVICE_ID_TI_WL1251
37 #define SDIO_DEVICE_ID_TI_WL1251        0x9066
38 #endif
39
40 struct wl1251_sdio {
41         struct sdio_func *func;
42         u32 elp_val;
43 };
44
45 static struct wl12xx_platform_data *wl12xx_board_data;
46
47 static struct sdio_func *wl_to_func(struct wl1251 *wl)
48 {
49         struct wl1251_sdio *wl_sdio = wl->if_priv;
50         return wl_sdio->func;
51 }
52
53 static void wl1251_sdio_interrupt(struct sdio_func *func)
54 {
55         struct wl1251 *wl = sdio_get_drvdata(func);
56
57         wl1251_debug(DEBUG_IRQ, "IRQ");
58
59         /* FIXME should be synchronous for sdio */
60         ieee80211_queue_work(wl->hw, &wl->irq_work);
61 }
62
63 static const struct sdio_device_id wl1251_devices[] = {
64         { SDIO_DEVICE(SDIO_VENDOR_ID_TI, SDIO_DEVICE_ID_TI_WL1251) },
65         {}
66 };
67 MODULE_DEVICE_TABLE(sdio, wl1251_devices);
68
69
70 static void wl1251_sdio_read(struct wl1251 *wl, int addr,
71                              void *buf, size_t len)
72 {
73         int ret;
74         struct sdio_func *func = wl_to_func(wl);
75
76         sdio_claim_host(func);
77         ret = sdio_memcpy_fromio(func, buf, addr, len);
78         if (ret)
79                 wl1251_error("sdio read failed (%d)", ret);
80         sdio_release_host(func);
81 }
82
83 static void wl1251_sdio_write(struct wl1251 *wl, int addr,
84                               void *buf, size_t len)
85 {
86         int ret;
87         struct sdio_func *func = wl_to_func(wl);
88
89         sdio_claim_host(func);
90         ret = sdio_memcpy_toio(func, addr, buf, len);
91         if (ret)
92                 wl1251_error("sdio write failed (%d)", ret);
93         sdio_release_host(func);
94 }
95
96 static void wl1251_sdio_read_elp(struct wl1251 *wl, int addr, u32 *val)
97 {
98         int ret = 0;
99         struct wl1251_sdio *wl_sdio = wl->if_priv;
100         struct sdio_func *func = wl_sdio->func;
101
102         /*
103          * The hardware only supports RAW (read after write) access for
104          * reading, regular sdio_readb won't work here (it interprets
105          * the unused bits of CMD52 as write data even if we send read
106          * request).
107          */
108         sdio_claim_host(func);
109         *val = sdio_readb_ext(func, addr, &ret, wl_sdio->elp_val);
110         sdio_release_host(func);
111
112         if (ret)
113                 wl1251_error("sdio_readb failed (%d)", ret);
114 }
115
116 static void wl1251_sdio_write_elp(struct wl1251 *wl, int addr, u32 val)
117 {
118         int ret = 0;
119         struct wl1251_sdio *wl_sdio = wl->if_priv;
120         struct sdio_func *func = wl_sdio->func;
121
122         sdio_claim_host(func);
123         sdio_writeb(func, val, addr, &ret);
124         sdio_release_host(func);
125
126         if (ret)
127                 wl1251_error("sdio_writeb failed (%d)", ret);
128         else
129                 wl_sdio->elp_val = val;
130 }
131
132 static void wl1251_sdio_reset(struct wl1251 *wl)
133 {
134         extern int sdio_reset_comm(struct mmc_card *card);
135         struct sdio_func *func = wl_to_func(wl);
136         int ret;
137
138         sdio_claim_host(func);
139         sdio_reset_comm(func->card);
140         ret = sdio_enable_func(func);
141         if (ret)
142                 goto release;
143
144         sdio_set_block_size(func, 512);
145
146 release:
147         sdio_release_host(func);
148 }
149
150 static void wl1251_sdio_enable_irq(struct wl1251 *wl)
151 {
152         struct sdio_func *func = wl_to_func(wl);
153
154         sdio_claim_host(func);
155         sdio_claim_irq(func, wl1251_sdio_interrupt);
156         sdio_release_host(func);
157 }
158
159 static void wl1251_sdio_disable_irq(struct wl1251 *wl)
160 {
161         struct sdio_func *func = wl_to_func(wl);
162
163         sdio_claim_host(func);
164         sdio_release_irq(func);
165         sdio_release_host(func);
166 }
167
168 /* Interrupts when using dedicated WLAN_IRQ pin */
169 static irqreturn_t wl1251_line_irq(int irq, void *cookie)
170 {
171         struct wl1251 *wl = cookie;
172
173         ieee80211_queue_work(wl->hw, &wl->irq_work);
174
175         return IRQ_HANDLED;
176 }
177
178 static void wl1251_enable_line_irq(struct wl1251 *wl)
179 {
180         return enable_irq(wl->irq);
181 }
182
183 static void wl1251_disable_line_irq(struct wl1251 *wl)
184 {
185         return disable_irq(wl->irq);
186 }
187
188 static void wl1251_sdio_set_power(bool enable)
189 {
190 }
191
192 static struct wl1251_if_operations wl1251_sdio_ops = {
193         .read = wl1251_sdio_read,
194         .write = wl1251_sdio_write,
195         .write_elp = wl1251_sdio_write_elp,
196         .read_elp = wl1251_sdio_read_elp,
197         .reset = wl1251_sdio_reset,
198 };
199
200 static int wl1251_platform_probe(struct platform_device *pdev)
201 {
202         if (pdev->id != -1) {
203                 wl1251_error("can only handle single device");
204                 return -ENODEV;
205         }
206
207         wl12xx_board_data = pdev->dev.platform_data;
208         return 0;
209 }
210
211 /*
212  * Dummy platform_driver for passing platform_data to this driver,
213  * until we have a way to pass this through SDIO subsystem or
214  * some other way.
215  */
216 static struct platform_driver wl1251_platform_driver = {
217         .driver = {
218                 .name   = "wl1251_data",
219                 .owner  = THIS_MODULE,
220         },
221         .probe  = wl1251_platform_probe,
222 };
223
224 static int wl1251_sdio_probe(struct sdio_func *func,
225                              const struct sdio_device_id *id)
226 {
227         int ret;
228         struct wl1251 *wl;
229         struct ieee80211_hw *hw;
230         struct wl1251_sdio *wl_sdio;
231
232         hw = wl1251_alloc_hw();
233         if (IS_ERR(hw))
234                 return PTR_ERR(hw);
235
236         wl = hw->priv;
237
238         wl_sdio = kzalloc(sizeof(*wl_sdio), GFP_KERNEL);
239         if (wl_sdio == NULL) {
240                 ret = -ENOMEM;
241                 goto out_free_hw;
242         }
243
244         sdio_claim_host(func);
245         ret = sdio_enable_func(func);
246         if (ret)
247                 goto release;
248
249         sdio_set_block_size(func, 512);
250         sdio_release_host(func);
251
252         SET_IEEE80211_DEV(hw, &func->dev);
253         wl_sdio->func = func;
254         wl->if_priv = wl_sdio;
255         wl->if_ops = &wl1251_sdio_ops;
256         wl->set_power = wl1251_sdio_set_power;
257
258         if (wl12xx_board_data != NULL) {
259                 wl->set_power = wl12xx_board_data->set_power;
260                 wl->irq = wl12xx_board_data->irq;
261                 wl->use_eeprom = wl12xx_board_data->use_eeprom;
262         }
263
264         if (wl->irq) {
265                 ret = request_irq(wl->irq, wl1251_line_irq, 0, "wl1251", wl);
266                 if (ret < 0) {
267                         wl1251_error("request_irq() failed: %d", ret);
268                         goto disable;
269                 }
270
271                 set_irq_type(wl->irq, IRQ_TYPE_EDGE_RISING);
272                 disable_irq(wl->irq);
273
274                 wl1251_sdio_ops.enable_irq = wl1251_enable_line_irq;
275                 wl1251_sdio_ops.disable_irq = wl1251_disable_line_irq;
276
277                 wl1251_info("using dedicated interrupt line");
278         } else {
279                 wl1251_sdio_ops.enable_irq = wl1251_sdio_enable_irq;
280                 wl1251_sdio_ops.disable_irq = wl1251_sdio_disable_irq;
281
282                 wl1251_info("using SDIO interrupt");
283         }
284
285         ret = wl1251_init_ieee80211(wl);
286         if (ret)
287                 goto out_free_irq;
288
289         /* we can power it down now until it's started */
290         wl->set_power(0);
291
292         sdio_set_drvdata(func, wl);
293         return ret;
294
295 out_free_irq:
296         if (wl->irq)
297                 free_irq(wl->irq, wl);
298 disable:
299         sdio_claim_host(func);
300         sdio_disable_func(func);
301 release:
302         sdio_release_host(func);
303         kfree(wl_sdio);
304 out_free_hw:
305         wl1251_free_hw(wl);
306         return ret;
307 }
308
309 static void __devexit wl1251_sdio_remove(struct sdio_func *func)
310 {
311         struct wl1251 *wl = sdio_get_drvdata(func);
312         struct wl1251_sdio *wl_sdio = wl->if_priv;
313
314         if (wl->irq)
315                 free_irq(wl->irq, wl);
316         kfree(wl_sdio);
317         wl1251_free_hw(wl);
318
319         sdio_claim_host(func);
320         sdio_release_irq(func);
321         sdio_disable_func(func);
322         sdio_release_host(func);
323 }
324
325 static struct sdio_driver wl1251_sdio_driver = {
326         .name           = "wl1251_sdio",
327         .id_table       = wl1251_devices,
328         .probe          = wl1251_sdio_probe,
329         .remove         = __devexit_p(wl1251_sdio_remove),
330 };
331
332 static int __init wl1251_sdio_init(void)
333 {
334         int err;
335
336         err = platform_driver_register(&wl1251_platform_driver);
337         if (err) {
338                 wl1251_error("failed to register platform driver: %d", err);
339                 return err;
340         }
341
342         err = sdio_register_driver(&wl1251_sdio_driver);
343         if (err)
344                 wl1251_error("failed to register sdio driver: %d", err);
345         return err;
346 }
347
348 static void __exit wl1251_sdio_exit(void)
349 {
350         sdio_unregister_driver(&wl1251_sdio_driver);
351         platform_driver_unregister(&wl1251_platform_driver);
352         wl1251_notice("unloaded");
353 }
354
355 module_init(wl1251_sdio_init);
356 module_exit(wl1251_sdio_exit);
357
358 MODULE_LICENSE("GPL");
359 MODULE_AUTHOR("Kalle Valo <kalle.valo@nokia.com>");