blob: 02851901677e354202af8144b9bc2af7f378d00e [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>
Ohad Ben-Cohenc1f9a092010-09-16 13:16:02 +020027#include <linux/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 Ignotas832c10f2010-06-08 14:33:31 +030040struct wl1251_sdio {
41 struct sdio_func *func;
42 u32 elp_val;
43};
44
Grazvydas Ignotas8c00b392010-04-15 18:23:23 +030045static struct wl12xx_platform_data *wl12xx_board_data;
46
Bob Copeland3ec410d2009-08-07 13:33:42 +030047static struct sdio_func *wl_to_func(struct wl1251 *wl)
48{
Grazvydas Ignotas832c10f2010-06-08 14:33:31 +030049 struct wl1251_sdio *wl_sdio = wl->if_priv;
50 return wl_sdio->func;
Bob Copeland3ec410d2009-08-07 13:33:42 +030051}
52
53static void wl1251_sdio_interrupt(struct sdio_func *func)
54{
Bob Copelandb5ed9c12009-08-07 13:33:49 +030055 struct wl1251 *wl = sdio_get_drvdata(func);
56
57 wl1251_debug(DEBUG_IRQ, "IRQ");
58
59 /* FIXME should be synchronous for sdio */
Kalle Valo16e711f2009-08-07 13:35:04 +030060 ieee80211_queue_work(wl->hw, &wl->irq_work);
Bob Copeland3ec410d2009-08-07 13:33:42 +030061}
62
63static const struct sdio_device_id wl1251_devices[] = {
64 { SDIO_DEVICE(SDIO_VENDOR_ID_TI, SDIO_DEVICE_ID_TI_WL1251) },
65 {}
66};
67MODULE_DEVICE_TABLE(sdio, wl1251_devices);
68
69
Grazvydas Ignotas3c9cb9c2010-03-12 12:28:41 +020070static void wl1251_sdio_read(struct wl1251 *wl, int addr,
71 void *buf, size_t len)
Bob Copeland3ec410d2009-08-07 13:33:42 +030072{
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
Grazvydas Ignotas3c9cb9c2010-03-12 12:28:41 +020083static void wl1251_sdio_write(struct wl1251 *wl, int addr,
84 void *buf, size_t len)
Bob Copeland3ec410d2009-08-07 13:33:42 +030085{
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
Grazvydas Ignotas3f9e7502010-03-11 17:44:57 +020096static void wl1251_sdio_read_elp(struct wl1251 *wl, int addr, u32 *val)
97{
98 int ret = 0;
Grazvydas Ignotas832c10f2010-06-08 14:33:31 +030099 struct wl1251_sdio *wl_sdio = wl->if_priv;
100 struct sdio_func *func = wl_sdio->func;
Grazvydas Ignotas3f9e7502010-03-11 17:44:57 +0200101
Grazvydas Ignotas832c10f2010-06-08 14:33:31 +0300102 /*
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 */
Grazvydas Ignotas3f9e7502010-03-11 17:44:57 +0200108 sdio_claim_host(func);
Grazvydas Ignotas832c10f2010-06-08 14:33:31 +0300109 *val = sdio_writeb_readb(func, wl_sdio->elp_val, addr, &ret);
Grazvydas Ignotas3f9e7502010-03-11 17:44:57 +0200110 sdio_release_host(func);
111
112 if (ret)
113 wl1251_error("sdio_readb failed (%d)", ret);
114}
115
116static void wl1251_sdio_write_elp(struct wl1251 *wl, int addr, u32 val)
117{
118 int ret = 0;
Grazvydas Ignotas832c10f2010-06-08 14:33:31 +0300119 struct wl1251_sdio *wl_sdio = wl->if_priv;
120 struct sdio_func *func = wl_sdio->func;
Grazvydas Ignotas3f9e7502010-03-11 17:44:57 +0200121
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);
Grazvydas Ignotas832c10f2010-06-08 14:33:31 +0300128 else
129 wl_sdio->elp_val = val;
Grazvydas Ignotas3f9e7502010-03-11 17:44:57 +0200130}
131
Grazvydas Ignotas3c9cb9c2010-03-12 12:28:41 +0200132static void wl1251_sdio_reset(struct wl1251 *wl)
Bob Copeland3ec410d2009-08-07 13:33:42 +0300133{
134}
135
Bob Copelandb5ed9c12009-08-07 13:33:49 +0300136static void wl1251_sdio_enable_irq(struct wl1251 *wl)
137{
138 struct sdio_func *func = wl_to_func(wl);
139
140 sdio_claim_host(func);
141 sdio_claim_irq(func, wl1251_sdio_interrupt);
142 sdio_release_host(func);
143}
144
145static void wl1251_sdio_disable_irq(struct wl1251 *wl)
146{
147 struct sdio_func *func = wl_to_func(wl);
148
149 sdio_claim_host(func);
150 sdio_release_irq(func);
151 sdio_release_host(func);
152}
153
Grazvydas Ignotasa02a2952010-04-16 13:22:12 +0300154/* Interrupts when using dedicated WLAN_IRQ pin */
155static irqreturn_t wl1251_line_irq(int irq, void *cookie)
156{
157 struct wl1251 *wl = cookie;
158
159 ieee80211_queue_work(wl->hw, &wl->irq_work);
160
161 return IRQ_HANDLED;
162}
163
164static void wl1251_enable_line_irq(struct wl1251 *wl)
165{
166 return enable_irq(wl->irq);
167}
168
169static void wl1251_disable_line_irq(struct wl1251 *wl)
170{
171 return disable_irq(wl->irq);
172}
173
Grazvydas Ignotascb7bbc72010-11-04 00:13:47 +0200174static int wl1251_sdio_set_power(struct wl1251 *wl, bool enable)
Bob Copeland3ec410d2009-08-07 13:33:42 +0300175{
Grazvydas Ignotascb7bbc72010-11-04 00:13:47 +0200176 if (wl->set_power)
177 wl->set_power(enable);
178
179 return 0;
Bob Copeland3ec410d2009-08-07 13:33:42 +0300180}
181
Grazvydas Ignotasa02a2952010-04-16 13:22:12 +0300182static struct wl1251_if_operations wl1251_sdio_ops = {
Bob Copeland3ec410d2009-08-07 13:33:42 +0300183 .read = wl1251_sdio_read,
184 .write = wl1251_sdio_write,
Grazvydas Ignotas3f9e7502010-03-11 17:44:57 +0200185 .write_elp = wl1251_sdio_write_elp,
186 .read_elp = wl1251_sdio_read_elp,
Bob Copeland3ec410d2009-08-07 13:33:42 +0300187 .reset = wl1251_sdio_reset,
Grazvydas Ignotascb7bbc72010-11-04 00:13:47 +0200188 .power = wl1251_sdio_set_power,
Bob Copeland3ec410d2009-08-07 13:33:42 +0300189};
190
Grazvydas Ignotas8c00b392010-04-15 18:23:23 +0300191static int wl1251_platform_probe(struct platform_device *pdev)
192{
193 if (pdev->id != -1) {
194 wl1251_error("can only handle single device");
195 return -ENODEV;
196 }
197
198 wl12xx_board_data = pdev->dev.platform_data;
199 return 0;
200}
201
202/*
203 * Dummy platform_driver for passing platform_data to this driver,
204 * until we have a way to pass this through SDIO subsystem or
205 * some other way.
206 */
207static struct platform_driver wl1251_platform_driver = {
208 .driver = {
209 .name = "wl1251_data",
210 .owner = THIS_MODULE,
211 },
212 .probe = wl1251_platform_probe,
213};
214
Grazvydas Ignotas3c9cb9c2010-03-12 12:28:41 +0200215static int wl1251_sdio_probe(struct sdio_func *func,
216 const struct sdio_device_id *id)
Bob Copeland3ec410d2009-08-07 13:33:42 +0300217{
218 int ret;
219 struct wl1251 *wl;
220 struct ieee80211_hw *hw;
Grazvydas Ignotas832c10f2010-06-08 14:33:31 +0300221 struct wl1251_sdio *wl_sdio;
Bob Copeland3ec410d2009-08-07 13:33:42 +0300222
223 hw = wl1251_alloc_hw();
224 if (IS_ERR(hw))
225 return PTR_ERR(hw);
226
227 wl = hw->priv;
228
Grazvydas Ignotas832c10f2010-06-08 14:33:31 +0300229 wl_sdio = kzalloc(sizeof(*wl_sdio), GFP_KERNEL);
230 if (wl_sdio == NULL) {
231 ret = -ENOMEM;
232 goto out_free_hw;
233 }
234
Bob Copeland3ec410d2009-08-07 13:33:42 +0300235 sdio_claim_host(func);
236 ret = sdio_enable_func(func);
237 if (ret)
238 goto release;
239
240 sdio_set_block_size(func, 512);
Grazvydas Ignotasa02a2952010-04-16 13:22:12 +0300241 sdio_release_host(func);
Bob Copeland3ec410d2009-08-07 13:33:42 +0300242
243 SET_IEEE80211_DEV(hw, &func->dev);
Grazvydas Ignotas832c10f2010-06-08 14:33:31 +0300244 wl_sdio->func = func;
245 wl->if_priv = wl_sdio;
Bob Copeland3ec410d2009-08-07 13:33:42 +0300246 wl->if_ops = &wl1251_sdio_ops;
Bob Copeland3ec410d2009-08-07 13:33:42 +0300247
Grazvydas Ignotas8c00b392010-04-15 18:23:23 +0300248 if (wl12xx_board_data != NULL) {
249 wl->set_power = wl12xx_board_data->set_power;
Grazvydas Ignotasa02a2952010-04-16 13:22:12 +0300250 wl->irq = wl12xx_board_data->irq;
Grazvydas Ignotas8c00b392010-04-15 18:23:23 +0300251 wl->use_eeprom = wl12xx_board_data->use_eeprom;
252 }
253
Grazvydas Ignotasa02a2952010-04-16 13:22:12 +0300254 if (wl->irq) {
255 ret = request_irq(wl->irq, wl1251_line_irq, 0, "wl1251", wl);
256 if (ret < 0) {
257 wl1251_error("request_irq() failed: %d", ret);
258 goto disable;
259 }
260
261 set_irq_type(wl->irq, IRQ_TYPE_EDGE_RISING);
262 disable_irq(wl->irq);
263
264 wl1251_sdio_ops.enable_irq = wl1251_enable_line_irq;
265 wl1251_sdio_ops.disable_irq = wl1251_disable_line_irq;
266
267 wl1251_info("using dedicated interrupt line");
268 } else {
269 wl1251_sdio_ops.enable_irq = wl1251_sdio_enable_irq;
270 wl1251_sdio_ops.disable_irq = wl1251_sdio_disable_irq;
271
272 wl1251_info("using SDIO interrupt");
273 }
274
Bob Copeland3ec410d2009-08-07 13:33:42 +0300275 ret = wl1251_init_ieee80211(wl);
Bob Copeland3ec410d2009-08-07 13:33:42 +0300276 if (ret)
Grazvydas Ignotasa02a2952010-04-16 13:22:12 +0300277 goto out_free_irq;
Bob Copeland3ec410d2009-08-07 13:33:42 +0300278
Bob Copeland3ec410d2009-08-07 13:33:42 +0300279 sdio_set_drvdata(func, wl);
280 return ret;
281
Grazvydas Ignotasa02a2952010-04-16 13:22:12 +0300282out_free_irq:
283 if (wl->irq)
284 free_irq(wl->irq, wl);
Bob Copeland3ec410d2009-08-07 13:33:42 +0300285disable:
Bob Copelandb5ed9c12009-08-07 13:33:49 +0300286 sdio_claim_host(func);
Bob Copeland3ec410d2009-08-07 13:33:42 +0300287 sdio_disable_func(func);
288release:
289 sdio_release_host(func);
Grazvydas Ignotas832c10f2010-06-08 14:33:31 +0300290 kfree(wl_sdio);
291out_free_hw:
Grazvydas Ignotasaa679c32010-06-05 02:25:47 +0300292 wl1251_free_hw(wl);
Bob Copeland3ec410d2009-08-07 13:33:42 +0300293 return ret;
294}
295
296static void __devexit wl1251_sdio_remove(struct sdio_func *func)
297{
298 struct wl1251 *wl = sdio_get_drvdata(func);
Grazvydas Ignotas832c10f2010-06-08 14:33:31 +0300299 struct wl1251_sdio *wl_sdio = wl->if_priv;
Bob Copeland3ec410d2009-08-07 13:33:42 +0300300
Grazvydas Ignotasa02a2952010-04-16 13:22:12 +0300301 if (wl->irq)
302 free_irq(wl->irq, wl);
Grazvydas Ignotas832c10f2010-06-08 14:33:31 +0300303 kfree(wl_sdio);
Bob Copeland3ec410d2009-08-07 13:33:42 +0300304 wl1251_free_hw(wl);
305
306 sdio_claim_host(func);
307 sdio_release_irq(func);
308 sdio_disable_func(func);
309 sdio_release_host(func);
310}
311
312static struct sdio_driver wl1251_sdio_driver = {
313 .name = "wl1251_sdio",
314 .id_table = wl1251_devices,
315 .probe = wl1251_sdio_probe,
316 .remove = __devexit_p(wl1251_sdio_remove),
317};
318
319static int __init wl1251_sdio_init(void)
320{
321 int err;
322
Grazvydas Ignotas8c00b392010-04-15 18:23:23 +0300323 err = platform_driver_register(&wl1251_platform_driver);
324 if (err) {
325 wl1251_error("failed to register platform driver: %d", err);
326 return err;
327 }
328
Bob Copeland3ec410d2009-08-07 13:33:42 +0300329 err = sdio_register_driver(&wl1251_sdio_driver);
330 if (err)
331 wl1251_error("failed to register sdio driver: %d", err);
332 return err;
333}
334
335static void __exit wl1251_sdio_exit(void)
336{
337 sdio_unregister_driver(&wl1251_sdio_driver);
Grazvydas Ignotas8c00b392010-04-15 18:23:23 +0300338 platform_driver_unregister(&wl1251_platform_driver);
Bob Copeland3ec410d2009-08-07 13:33:42 +0300339 wl1251_notice("unloaded");
340}
341
342module_init(wl1251_sdio_init);
343module_exit(wl1251_sdio_exit);
344
345MODULE_LICENSE("GPL");
Kalle Valo31c726f2010-08-22 22:46:15 +0300346MODULE_AUTHOR("Kalle Valo <kvalo@adurom.com>");