blob: c561332e70092b18280fff1843f948b13603289a [file] [log] [blame]
Bob Copeland3ec410d2009-08-07 13:33:42 +03001/*
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>
Bob Copeland3ec410d2009-08-07 13:33:42 +030023#include <linux/mod_devicetable.h>
Bob Copeland3ec410d2009-08-07 13:33:42 +030024#include <linux/mmc/sdio_func.h>
25#include <linux/mmc/sdio_ids.h>
Grazvydas Ignotas8c00b392010-04-15 18:23:23 +030026#include <linux/platform_device.h>
27#include <linux/spi/wl12xx.h>
Grazvydas Ignotasa02a2952010-04-16 13:22:12 +030028#include <linux/irq.h>
Bob Copeland3ec410d2009-08-07 13:33:42 +030029
30#include "wl1251.h"
Bob Copeland3ec410d2009-08-07 13:33:42 +030031
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
Grazvydas Ignotas8c00b392010-04-15 18:23:23 +030040static struct wl12xx_platform_data *wl12xx_board_data;
41
Bob Copeland3ec410d2009-08-07 13:33:42 +030042static struct sdio_func *wl_to_func(struct wl1251 *wl)
43{
44 return wl->if_priv;
45}
46
47static void wl1251_sdio_interrupt(struct sdio_func *func)
48{
Bob Copelandb5ed9c12009-08-07 13:33:49 +030049 struct wl1251 *wl = sdio_get_drvdata(func);
50
51 wl1251_debug(DEBUG_IRQ, "IRQ");
52
53 /* FIXME should be synchronous for sdio */
Kalle Valo16e711f2009-08-07 13:35:04 +030054 ieee80211_queue_work(wl->hw, &wl->irq_work);
Bob Copeland3ec410d2009-08-07 13:33:42 +030055}
56
57static const struct sdio_device_id wl1251_devices[] = {
58 { SDIO_DEVICE(SDIO_VENDOR_ID_TI, SDIO_DEVICE_ID_TI_WL1251) },
59 {}
60};
61MODULE_DEVICE_TABLE(sdio, wl1251_devices);
62
63
Grazvydas Ignotas3c9cb9c2010-03-12 12:28:41 +020064static void wl1251_sdio_read(struct wl1251 *wl, int addr,
65 void *buf, size_t len)
Bob Copeland3ec410d2009-08-07 13:33:42 +030066{
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
Grazvydas Ignotas3c9cb9c2010-03-12 12:28:41 +020077static void wl1251_sdio_write(struct wl1251 *wl, int addr,
78 void *buf, size_t len)
Bob Copeland3ec410d2009-08-07 13:33:42 +030079{
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
Grazvydas Ignotas3f9e7502010-03-11 17:44:57 +020090static 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(func, addr, &ret);
97 sdio_release_host(func);
98
99 if (ret)
100 wl1251_error("sdio_readb failed (%d)", ret);
101}
102
103static 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
Grazvydas Ignotas3c9cb9c2010-03-12 12:28:41 +0200116static void wl1251_sdio_reset(struct wl1251 *wl)
Bob Copeland3ec410d2009-08-07 13:33:42 +0300117{
118}
119
Bob Copelandb5ed9c12009-08-07 13:33:49 +0300120static void wl1251_sdio_enable_irq(struct wl1251 *wl)
121{
122 struct sdio_func *func = wl_to_func(wl);
123
124 sdio_claim_host(func);
125 sdio_claim_irq(func, wl1251_sdio_interrupt);
126 sdio_release_host(func);
127}
128
129static void wl1251_sdio_disable_irq(struct wl1251 *wl)
130{
131 struct sdio_func *func = wl_to_func(wl);
132
133 sdio_claim_host(func);
134 sdio_release_irq(func);
135 sdio_release_host(func);
136}
137
Grazvydas Ignotasa02a2952010-04-16 13:22:12 +0300138/* Interrupts when using dedicated WLAN_IRQ pin */
139static irqreturn_t wl1251_line_irq(int irq, void *cookie)
140{
141 struct wl1251 *wl = cookie;
142
143 ieee80211_queue_work(wl->hw, &wl->irq_work);
144
145 return IRQ_HANDLED;
146}
147
148static void wl1251_enable_line_irq(struct wl1251 *wl)
149{
150 return enable_irq(wl->irq);
151}
152
153static void wl1251_disable_line_irq(struct wl1251 *wl)
154{
155 return disable_irq(wl->irq);
156}
157
Grazvydas Ignotas3c9cb9c2010-03-12 12:28:41 +0200158static void wl1251_sdio_set_power(bool enable)
Bob Copeland3ec410d2009-08-07 13:33:42 +0300159{
160}
161
Grazvydas Ignotasa02a2952010-04-16 13:22:12 +0300162static struct wl1251_if_operations wl1251_sdio_ops = {
Bob Copeland3ec410d2009-08-07 13:33:42 +0300163 .read = wl1251_sdio_read,
164 .write = wl1251_sdio_write,
Grazvydas Ignotas3f9e7502010-03-11 17:44:57 +0200165 .write_elp = wl1251_sdio_write_elp,
166 .read_elp = wl1251_sdio_read_elp,
Bob Copeland3ec410d2009-08-07 13:33:42 +0300167 .reset = wl1251_sdio_reset,
168};
169
Grazvydas Ignotas8c00b392010-04-15 18:23:23 +0300170static int wl1251_platform_probe(struct platform_device *pdev)
171{
172 if (pdev->id != -1) {
173 wl1251_error("can only handle single device");
174 return -ENODEV;
175 }
176
177 wl12xx_board_data = pdev->dev.platform_data;
178 return 0;
179}
180
181/*
182 * Dummy platform_driver for passing platform_data to this driver,
183 * until we have a way to pass this through SDIO subsystem or
184 * some other way.
185 */
186static struct platform_driver wl1251_platform_driver = {
187 .driver = {
188 .name = "wl1251_data",
189 .owner = THIS_MODULE,
190 },
191 .probe = wl1251_platform_probe,
192};
193
Grazvydas Ignotas3c9cb9c2010-03-12 12:28:41 +0200194static int wl1251_sdio_probe(struct sdio_func *func,
195 const struct sdio_device_id *id)
Bob Copeland3ec410d2009-08-07 13:33:42 +0300196{
197 int ret;
198 struct wl1251 *wl;
199 struct ieee80211_hw *hw;
200
201 hw = wl1251_alloc_hw();
202 if (IS_ERR(hw))
203 return PTR_ERR(hw);
204
205 wl = hw->priv;
206
207 sdio_claim_host(func);
208 ret = sdio_enable_func(func);
209 if (ret)
210 goto release;
211
212 sdio_set_block_size(func, 512);
Grazvydas Ignotasa02a2952010-04-16 13:22:12 +0300213 sdio_release_host(func);
Bob Copeland3ec410d2009-08-07 13:33:42 +0300214
215 SET_IEEE80211_DEV(hw, &func->dev);
216 wl->if_priv = func;
217 wl->if_ops = &wl1251_sdio_ops;
218 wl->set_power = wl1251_sdio_set_power;
219
Grazvydas Ignotas8c00b392010-04-15 18:23:23 +0300220 if (wl12xx_board_data != NULL) {
221 wl->set_power = wl12xx_board_data->set_power;
Grazvydas Ignotasa02a2952010-04-16 13:22:12 +0300222 wl->irq = wl12xx_board_data->irq;
Grazvydas Ignotas8c00b392010-04-15 18:23:23 +0300223 wl->use_eeprom = wl12xx_board_data->use_eeprom;
224 }
225
Grazvydas Ignotasa02a2952010-04-16 13:22:12 +0300226 if (wl->irq) {
227 ret = request_irq(wl->irq, wl1251_line_irq, 0, "wl1251", wl);
228 if (ret < 0) {
229 wl1251_error("request_irq() failed: %d", ret);
230 goto disable;
231 }
232
233 set_irq_type(wl->irq, IRQ_TYPE_EDGE_RISING);
234 disable_irq(wl->irq);
235
236 wl1251_sdio_ops.enable_irq = wl1251_enable_line_irq;
237 wl1251_sdio_ops.disable_irq = wl1251_disable_line_irq;
238
239 wl1251_info("using dedicated interrupt line");
240 } else {
241 wl1251_sdio_ops.enable_irq = wl1251_sdio_enable_irq;
242 wl1251_sdio_ops.disable_irq = wl1251_sdio_disable_irq;
243
244 wl1251_info("using SDIO interrupt");
245 }
246
Bob Copeland3ec410d2009-08-07 13:33:42 +0300247 ret = wl1251_init_ieee80211(wl);
Bob Copeland3ec410d2009-08-07 13:33:42 +0300248 if (ret)
Grazvydas Ignotasa02a2952010-04-16 13:22:12 +0300249 goto out_free_irq;
Bob Copeland3ec410d2009-08-07 13:33:42 +0300250
Bob Copeland3ec410d2009-08-07 13:33:42 +0300251 sdio_set_drvdata(func, wl);
252 return ret;
253
Grazvydas Ignotasa02a2952010-04-16 13:22:12 +0300254out_free_irq:
255 if (wl->irq)
256 free_irq(wl->irq, wl);
Bob Copeland3ec410d2009-08-07 13:33:42 +0300257disable:
Bob Copelandb5ed9c12009-08-07 13:33:49 +0300258 sdio_claim_host(func);
Bob Copeland3ec410d2009-08-07 13:33:42 +0300259 sdio_disable_func(func);
260release:
261 sdio_release_host(func);
Grazvydas Ignotasaa679c32010-06-05 02:25:47 +0300262 wl1251_free_hw(wl);
Bob Copeland3ec410d2009-08-07 13:33:42 +0300263 return ret;
264}
265
266static void __devexit wl1251_sdio_remove(struct sdio_func *func)
267{
268 struct wl1251 *wl = sdio_get_drvdata(func);
269
Grazvydas Ignotasa02a2952010-04-16 13:22:12 +0300270 if (wl->irq)
271 free_irq(wl->irq, wl);
Bob Copeland3ec410d2009-08-07 13:33:42 +0300272 wl1251_free_hw(wl);
273
274 sdio_claim_host(func);
275 sdio_release_irq(func);
276 sdio_disable_func(func);
277 sdio_release_host(func);
278}
279
280static struct sdio_driver wl1251_sdio_driver = {
281 .name = "wl1251_sdio",
282 .id_table = wl1251_devices,
283 .probe = wl1251_sdio_probe,
284 .remove = __devexit_p(wl1251_sdio_remove),
285};
286
287static int __init wl1251_sdio_init(void)
288{
289 int err;
290
Grazvydas Ignotas8c00b392010-04-15 18:23:23 +0300291 err = platform_driver_register(&wl1251_platform_driver);
292 if (err) {
293 wl1251_error("failed to register platform driver: %d", err);
294 return err;
295 }
296
Bob Copeland3ec410d2009-08-07 13:33:42 +0300297 err = sdio_register_driver(&wl1251_sdio_driver);
298 if (err)
299 wl1251_error("failed to register sdio driver: %d", err);
300 return err;
301}
302
303static void __exit wl1251_sdio_exit(void)
304{
305 sdio_unregister_driver(&wl1251_sdio_driver);
Grazvydas Ignotas8c00b392010-04-15 18:23:23 +0300306 platform_driver_unregister(&wl1251_platform_driver);
Bob Copeland3ec410d2009-08-07 13:33:42 +0300307 wl1251_notice("unloaded");
308}
309
310module_init(wl1251_sdio_init);
311module_exit(wl1251_sdio_exit);
312
313MODULE_LICENSE("GPL");
Kalle Valob1b0a2b2009-08-07 13:35:19 +0300314MODULE_AUTHOR("Kalle Valo <kalle.valo@nokia.com>");