blob: 7409c3468e2521fb33ade88adf84159b3abc02c0 [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>
Bob Copeland3ec410d2009-08-07 13:33:42 +030028
29#include "wl1251.h"
Bob Copeland3ec410d2009-08-07 13:33:42 +030030
31#ifndef SDIO_VENDOR_ID_TI
32#define SDIO_VENDOR_ID_TI 0x104c
33#endif
34
35#ifndef SDIO_DEVICE_ID_TI_WL1251
36#define SDIO_DEVICE_ID_TI_WL1251 0x9066
37#endif
38
Grazvydas Ignotas8c00b392010-04-15 18:23:23 +030039static struct wl12xx_platform_data *wl12xx_board_data;
40
Bob Copeland3ec410d2009-08-07 13:33:42 +030041static struct sdio_func *wl_to_func(struct wl1251 *wl)
42{
43 return wl->if_priv;
44}
45
46static void wl1251_sdio_interrupt(struct sdio_func *func)
47{
Bob Copelandb5ed9c12009-08-07 13:33:49 +030048 struct wl1251 *wl = sdio_get_drvdata(func);
49
50 wl1251_debug(DEBUG_IRQ, "IRQ");
51
52 /* FIXME should be synchronous for sdio */
Kalle Valo16e711f2009-08-07 13:35:04 +030053 ieee80211_queue_work(wl->hw, &wl->irq_work);
Bob Copeland3ec410d2009-08-07 13:33:42 +030054}
55
56static const struct sdio_device_id wl1251_devices[] = {
57 { SDIO_DEVICE(SDIO_VENDOR_ID_TI, SDIO_DEVICE_ID_TI_WL1251) },
58 {}
59};
60MODULE_DEVICE_TABLE(sdio, wl1251_devices);
61
62
Grazvydas Ignotas3c9cb9c2010-03-12 12:28:41 +020063static void wl1251_sdio_read(struct wl1251 *wl, int addr,
64 void *buf, size_t len)
Bob Copeland3ec410d2009-08-07 13:33:42 +030065{
66 int ret;
67 struct sdio_func *func = wl_to_func(wl);
68
69 sdio_claim_host(func);
70 ret = sdio_memcpy_fromio(func, buf, addr, len);
71 if (ret)
72 wl1251_error("sdio read failed (%d)", ret);
73 sdio_release_host(func);
74}
75
Grazvydas Ignotas3c9cb9c2010-03-12 12:28:41 +020076static void wl1251_sdio_write(struct wl1251 *wl, int addr,
77 void *buf, size_t len)
Bob Copeland3ec410d2009-08-07 13:33:42 +030078{
79 int ret;
80 struct sdio_func *func = wl_to_func(wl);
81
82 sdio_claim_host(func);
83 ret = sdio_memcpy_toio(func, addr, buf, len);
84 if (ret)
85 wl1251_error("sdio write failed (%d)", ret);
86 sdio_release_host(func);
87}
88
Grazvydas Ignotas3f9e7502010-03-11 17:44:57 +020089static void wl1251_sdio_read_elp(struct wl1251 *wl, int addr, u32 *val)
90{
91 int ret = 0;
92 struct sdio_func *func = wl_to_func(wl);
93
94 sdio_claim_host(func);
95 *val = sdio_readb(func, addr, &ret);
96 sdio_release_host(func);
97
98 if (ret)
99 wl1251_error("sdio_readb failed (%d)", ret);
100}
101
102static void wl1251_sdio_write_elp(struct wl1251 *wl, int addr, u32 val)
103{
104 int ret = 0;
105 struct sdio_func *func = wl_to_func(wl);
106
107 sdio_claim_host(func);
108 sdio_writeb(func, val, addr, &ret);
109 sdio_release_host(func);
110
111 if (ret)
112 wl1251_error("sdio_writeb failed (%d)", ret);
113}
114
Grazvydas Ignotas3c9cb9c2010-03-12 12:28:41 +0200115static void wl1251_sdio_reset(struct wl1251 *wl)
Bob Copeland3ec410d2009-08-07 13:33:42 +0300116{
117}
118
Bob Copelandb5ed9c12009-08-07 13:33:49 +0300119static void wl1251_sdio_enable_irq(struct wl1251 *wl)
120{
121 struct sdio_func *func = wl_to_func(wl);
122
123 sdio_claim_host(func);
124 sdio_claim_irq(func, wl1251_sdio_interrupt);
125 sdio_release_host(func);
126}
127
128static void wl1251_sdio_disable_irq(struct wl1251 *wl)
129{
130 struct sdio_func *func = wl_to_func(wl);
131
132 sdio_claim_host(func);
133 sdio_release_irq(func);
134 sdio_release_host(func);
135}
136
Grazvydas Ignotas3c9cb9c2010-03-12 12:28:41 +0200137static void wl1251_sdio_set_power(bool enable)
Bob Copeland3ec410d2009-08-07 13:33:42 +0300138{
139}
140
Grazvydas Ignotas3c9cb9c2010-03-12 12:28:41 +0200141static const struct wl1251_if_operations wl1251_sdio_ops = {
Bob Copeland3ec410d2009-08-07 13:33:42 +0300142 .read = wl1251_sdio_read,
143 .write = wl1251_sdio_write,
Grazvydas Ignotas3f9e7502010-03-11 17:44:57 +0200144 .write_elp = wl1251_sdio_write_elp,
145 .read_elp = wl1251_sdio_read_elp,
Bob Copeland3ec410d2009-08-07 13:33:42 +0300146 .reset = wl1251_sdio_reset,
Bob Copelandb5ed9c12009-08-07 13:33:49 +0300147 .enable_irq = wl1251_sdio_enable_irq,
148 .disable_irq = wl1251_sdio_disable_irq,
Bob Copeland3ec410d2009-08-07 13:33:42 +0300149};
150
Grazvydas Ignotas8c00b392010-04-15 18:23:23 +0300151static int wl1251_platform_probe(struct platform_device *pdev)
152{
153 if (pdev->id != -1) {
154 wl1251_error("can only handle single device");
155 return -ENODEV;
156 }
157
158 wl12xx_board_data = pdev->dev.platform_data;
159 return 0;
160}
161
162/*
163 * Dummy platform_driver for passing platform_data to this driver,
164 * until we have a way to pass this through SDIO subsystem or
165 * some other way.
166 */
167static struct platform_driver wl1251_platform_driver = {
168 .driver = {
169 .name = "wl1251_data",
170 .owner = THIS_MODULE,
171 },
172 .probe = wl1251_platform_probe,
173};
174
Grazvydas Ignotas3c9cb9c2010-03-12 12:28:41 +0200175static int wl1251_sdio_probe(struct sdio_func *func,
176 const struct sdio_device_id *id)
Bob Copeland3ec410d2009-08-07 13:33:42 +0300177{
178 int ret;
179 struct wl1251 *wl;
180 struct ieee80211_hw *hw;
181
182 hw = wl1251_alloc_hw();
183 if (IS_ERR(hw))
184 return PTR_ERR(hw);
185
186 wl = hw->priv;
187
188 sdio_claim_host(func);
189 ret = sdio_enable_func(func);
190 if (ret)
191 goto release;
192
193 sdio_set_block_size(func, 512);
194
195 SET_IEEE80211_DEV(hw, &func->dev);
196 wl->if_priv = func;
197 wl->if_ops = &wl1251_sdio_ops;
198 wl->set_power = wl1251_sdio_set_power;
199
Grazvydas Ignotas8c00b392010-04-15 18:23:23 +0300200 if (wl12xx_board_data != NULL) {
201 wl->set_power = wl12xx_board_data->set_power;
202 wl->use_eeprom = wl12xx_board_data->use_eeprom;
203 }
204
Bob Copeland3ec410d2009-08-07 13:33:42 +0300205 sdio_release_host(func);
206 ret = wl1251_init_ieee80211(wl);
Bob Copeland3ec410d2009-08-07 13:33:42 +0300207 if (ret)
208 goto disable;
209
Bob Copeland3ec410d2009-08-07 13:33:42 +0300210 sdio_set_drvdata(func, wl);
211 return ret;
212
Bob Copeland3ec410d2009-08-07 13:33:42 +0300213disable:
Bob Copelandb5ed9c12009-08-07 13:33:49 +0300214 sdio_claim_host(func);
Bob Copeland3ec410d2009-08-07 13:33:42 +0300215 sdio_disable_func(func);
216release:
217 sdio_release_host(func);
218 return ret;
219}
220
221static void __devexit wl1251_sdio_remove(struct sdio_func *func)
222{
223 struct wl1251 *wl = sdio_get_drvdata(func);
224
225 wl1251_free_hw(wl);
226
227 sdio_claim_host(func);
228 sdio_release_irq(func);
229 sdio_disable_func(func);
230 sdio_release_host(func);
231}
232
233static struct sdio_driver wl1251_sdio_driver = {
234 .name = "wl1251_sdio",
235 .id_table = wl1251_devices,
236 .probe = wl1251_sdio_probe,
237 .remove = __devexit_p(wl1251_sdio_remove),
238};
239
240static int __init wl1251_sdio_init(void)
241{
242 int err;
243
Grazvydas Ignotas8c00b392010-04-15 18:23:23 +0300244 err = platform_driver_register(&wl1251_platform_driver);
245 if (err) {
246 wl1251_error("failed to register platform driver: %d", err);
247 return err;
248 }
249
Bob Copeland3ec410d2009-08-07 13:33:42 +0300250 err = sdio_register_driver(&wl1251_sdio_driver);
251 if (err)
252 wl1251_error("failed to register sdio driver: %d", err);
253 return err;
254}
255
256static void __exit wl1251_sdio_exit(void)
257{
258 sdio_unregister_driver(&wl1251_sdio_driver);
Grazvydas Ignotas8c00b392010-04-15 18:23:23 +0300259 platform_driver_unregister(&wl1251_platform_driver);
Bob Copeland3ec410d2009-08-07 13:33:42 +0300260 wl1251_notice("unloaded");
261}
262
263module_init(wl1251_sdio_init);
264module_exit(wl1251_sdio_exit);
265
266MODULE_LICENSE("GPL");
Kalle Valob1b0a2b2009-08-07 13:35:19 +0300267MODULE_AUTHOR("Kalle Valo <kalle.valo@nokia.com>");