bbdc358db80613c5a6b1629f80e0607ba77dfb63
[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 static struct wl12xx_platform_data *wl12xx_board_data;
41
42 static struct sdio_func *wl_to_func(struct wl1251 *wl)
43 {
44         return wl->if_priv;
45 }
46
47 static void wl1251_sdio_interrupt(struct sdio_func *func)
48 {
49         struct wl1251 *wl = sdio_get_drvdata(func);
50
51         wl1251_debug(DEBUG_IRQ, "IRQ");
52
53         /* FIXME should be synchronous for sdio */
54         ieee80211_queue_work(wl->hw, &wl->irq_work);
55 }
56
57 static const struct sdio_device_id wl1251_devices[] = {
58         { SDIO_DEVICE(SDIO_VENDOR_ID_TI, SDIO_DEVICE_ID_TI_WL1251) },
59         {}
60 };
61 MODULE_DEVICE_TABLE(sdio, wl1251_devices);
62
63
64 static void wl1251_sdio_read(struct wl1251 *wl, int addr,
65                              void *buf, size_t len)
66 {
67         int ret;
68         struct sdio_func *func = wl_to_func(wl);
69
70         sdio_claim_host(func);
71         ret = sdio_memcpy_fromio(func, buf, addr, len);
72         if (ret)
73                 wl1251_error("sdio read failed (%d)", ret);
74         sdio_release_host(func);
75 }
76
77 static void wl1251_sdio_write(struct wl1251 *wl, int addr,
78                               void *buf, size_t len)
79 {
80         int ret;
81         struct sdio_func *func = wl_to_func(wl);
82
83         sdio_claim_host(func);
84         ret = sdio_memcpy_toio(func, addr, buf, len);
85         if (ret)
86                 wl1251_error("sdio write failed (%d)", ret);
87         sdio_release_host(func);
88 }
89
90 static void wl1251_sdio_read_elp(struct wl1251 *wl, int addr, u32 *val)
91 {
92         int ret = 0;
93         struct sdio_func *func = wl_to_func(wl);
94
95         sdio_claim_host(func);
96         *val = sdio_readb_ext(func, addr, &ret, 1);
97         sdio_release_host(func);
98
99         if (ret)
100                 wl1251_error("sdio_readb failed (%d)", ret);
101 }
102
103 static void wl1251_sdio_write_elp(struct wl1251 *wl, int addr, u32 val)
104 {
105         int ret = 0;
106         struct sdio_func *func = wl_to_func(wl);
107
108         sdio_claim_host(func);
109         sdio_writeb(func, val, addr, &ret);
110         sdio_release_host(func);
111
112         if (ret)
113                 wl1251_error("sdio_writeb failed (%d)", ret);
114 }
115
116 static void wl1251_sdio_reset(struct wl1251 *wl)
117 {
118         extern int sdio_reset_comm(struct mmc_card *card);
119         struct sdio_func *func = wl_to_func(wl);
120         int ret;
121
122         sdio_claim_host(func);
123         sdio_reset_comm(func->card);
124         ret = sdio_enable_func(func);
125         if (ret)
126                 goto release;
127
128         sdio_set_block_size(func, 512);
129
130 release:
131         sdio_release_host(func);
132 }
133
134 static void wl1251_sdio_enable_irq(struct wl1251 *wl)
135 {
136         struct sdio_func *func = wl_to_func(wl);
137
138         sdio_claim_host(func);
139         sdio_claim_irq(func, wl1251_sdio_interrupt);
140         sdio_release_host(func);
141 }
142
143 static void wl1251_sdio_disable_irq(struct wl1251 *wl)
144 {
145         struct sdio_func *func = wl_to_func(wl);
146
147         sdio_claim_host(func);
148         sdio_release_irq(func);
149         sdio_release_host(func);
150 }
151
152 /* Interrupts when using dedicated WLAN_IRQ pin */
153 static irqreturn_t wl1251_line_irq(int irq, void *cookie)
154 {
155         struct wl1251 *wl = cookie;
156
157         ieee80211_queue_work(wl->hw, &wl->irq_work);
158
159         return IRQ_HANDLED;
160 }
161
162 static void wl1251_enable_line_irq(struct wl1251 *wl)
163 {
164         return enable_irq(wl->irq);
165 }
166
167 static void wl1251_disable_line_irq(struct wl1251 *wl)
168 {
169         return disable_irq(wl->irq);
170 }
171
172 static void wl1251_sdio_set_power(bool enable)
173 {
174 }
175
176 static struct wl1251_if_operations wl1251_sdio_ops = {
177         .read = wl1251_sdio_read,
178         .write = wl1251_sdio_write,
179         .write_elp = wl1251_sdio_write_elp,
180         .read_elp = wl1251_sdio_read_elp,
181         .reset = wl1251_sdio_reset,
182 };
183
184 static int wl1251_platform_probe(struct platform_device *pdev)
185 {
186         if (pdev->id != -1) {
187                 wl1251_error("can only handle single device");
188                 return -ENODEV;
189         }
190
191         wl12xx_board_data = pdev->dev.platform_data;
192         return 0;
193 }
194
195 /*
196  * Dummy platform_driver for passing platform_data to this driver,
197  * until we have a way to pass this through SDIO subsystem or
198  * some other way.
199  */
200 static struct platform_driver wl1251_platform_driver = {
201         .driver = {
202                 .name   = "wl1251_data",
203                 .owner  = THIS_MODULE,
204         },
205         .probe  = wl1251_platform_probe,
206 };
207
208 static int wl1251_sdio_probe(struct sdio_func *func,
209                              const struct sdio_device_id *id)
210 {
211         int ret;
212         struct wl1251 *wl;
213         struct ieee80211_hw *hw;
214
215         hw = wl1251_alloc_hw();
216         if (IS_ERR(hw))
217                 return PTR_ERR(hw);
218
219         wl = hw->priv;
220
221         sdio_claim_host(func);
222         ret = sdio_enable_func(func);
223         if (ret)
224                 goto release;
225
226         sdio_set_block_size(func, 512);
227         sdio_release_host(func);
228
229         SET_IEEE80211_DEV(hw, &func->dev);
230         wl->if_priv = func;
231         wl->if_ops = &wl1251_sdio_ops;
232         wl->set_power = wl1251_sdio_set_power;
233
234         if (wl12xx_board_data != NULL) {
235                 wl->set_power = wl12xx_board_data->set_power;
236                 wl->irq = wl12xx_board_data->irq;
237                 wl->use_eeprom = wl12xx_board_data->use_eeprom;
238         }
239
240         if (wl->irq) {
241                 ret = request_irq(wl->irq, wl1251_line_irq, 0, "wl1251", wl);
242                 if (ret < 0) {
243                         wl1251_error("request_irq() failed: %d", ret);
244                         goto disable;
245                 }
246
247                 set_irq_type(wl->irq, IRQ_TYPE_EDGE_RISING);
248                 disable_irq(wl->irq);
249
250                 wl1251_sdio_ops.enable_irq = wl1251_enable_line_irq;
251                 wl1251_sdio_ops.disable_irq = wl1251_disable_line_irq;
252
253                 wl1251_info("using dedicated interrupt line");
254         } else {
255                 wl1251_sdio_ops.enable_irq = wl1251_sdio_enable_irq;
256                 wl1251_sdio_ops.disable_irq = wl1251_sdio_disable_irq;
257
258                 wl1251_info("using SDIO interrupt");
259         }
260
261         ret = wl1251_init_ieee80211(wl);
262         if (ret)
263                 goto out_free_irq;
264
265         /* we can power it down now until it's started */
266         wl->set_power(0);
267
268         sdio_set_drvdata(func, wl);
269         return ret;
270
271 out_free_irq:
272         if (wl->irq)
273                 free_irq(wl->irq, wl);
274 disable:
275         sdio_claim_host(func);
276         sdio_disable_func(func);
277 release:
278         sdio_release_host(func);
279         wl1251_free_hw(wl);
280         return ret;
281 }
282
283 static void __devexit wl1251_sdio_remove(struct sdio_func *func)
284 {
285         struct wl1251 *wl = sdio_get_drvdata(func);
286
287         if (wl->irq)
288                 free_irq(wl->irq, wl);
289         wl1251_free_hw(wl);
290
291         sdio_claim_host(func);
292         sdio_release_irq(func);
293         sdio_disable_func(func);
294         sdio_release_host(func);
295 }
296
297 static struct sdio_driver wl1251_sdio_driver = {
298         .name           = "wl1251_sdio",
299         .id_table       = wl1251_devices,
300         .probe          = wl1251_sdio_probe,
301         .remove         = __devexit_p(wl1251_sdio_remove),
302 };
303
304 static int __init wl1251_sdio_init(void)
305 {
306         int err;
307
308         err = platform_driver_register(&wl1251_platform_driver);
309         if (err) {
310                 wl1251_error("failed to register platform driver: %d", err);
311                 return err;
312         }
313
314         err = sdio_register_driver(&wl1251_sdio_driver);
315         if (err)
316                 wl1251_error("failed to register sdio driver: %d", err);
317         return err;
318 }
319
320 static void __exit wl1251_sdio_exit(void)
321 {
322         sdio_unregister_driver(&wl1251_sdio_driver);
323         platform_driver_unregister(&wl1251_platform_driver);
324         wl1251_notice("unloaded");
325 }
326
327 module_init(wl1251_sdio_init);
328 module_exit(wl1251_sdio_exit);
329
330 MODULE_LICENSE("GPL");
331 MODULE_AUTHOR("Kalle Valo <kalle.valo@nokia.com>");