blob: f51a0241a44044d17380ad8951f30d6ff5ad2fd2 [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>
Grazvydas Ignotas1d4b89f2010-11-08 15:29:36 +020029#include <linux/pm_runtime.h>
Bob Copeland3ec410d2009-08-07 13:33:42 +030030
31#include "wl1251.h"
Bob Copeland3ec410d2009-08-07 13:33:42 +030032
33#ifndef SDIO_VENDOR_ID_TI
34#define SDIO_VENDOR_ID_TI 0x104c
35#endif
36
37#ifndef SDIO_DEVICE_ID_TI_WL1251
38#define SDIO_DEVICE_ID_TI_WL1251 0x9066
39#endif
40
Grazvydas Ignotas832c10f2010-06-08 14:33:31 +030041struct wl1251_sdio {
42 struct sdio_func *func;
43 u32 elp_val;
44};
45
Bob Copeland3ec410d2009-08-07 13:33:42 +030046static struct sdio_func *wl_to_func(struct wl1251 *wl)
47{
Grazvydas Ignotas832c10f2010-06-08 14:33:31 +030048 struct wl1251_sdio *wl_sdio = wl->if_priv;
49 return wl_sdio->func;
Bob Copeland3ec410d2009-08-07 13:33:42 +030050}
51
52static void wl1251_sdio_interrupt(struct sdio_func *func)
53{
Bob Copelandb5ed9c12009-08-07 13:33:49 +030054 struct wl1251 *wl = sdio_get_drvdata(func);
55
56 wl1251_debug(DEBUG_IRQ, "IRQ");
57
58 /* FIXME should be synchronous for sdio */
Kalle Valo16e711f2009-08-07 13:35:04 +030059 ieee80211_queue_work(wl->hw, &wl->irq_work);
Bob Copeland3ec410d2009-08-07 13:33:42 +030060}
61
62static const struct sdio_device_id wl1251_devices[] = {
63 { SDIO_DEVICE(SDIO_VENDOR_ID_TI, SDIO_DEVICE_ID_TI_WL1251) },
64 {}
65};
66MODULE_DEVICE_TABLE(sdio, wl1251_devices);
67
68
Grazvydas Ignotas3c9cb9c2010-03-12 12:28:41 +020069static void wl1251_sdio_read(struct wl1251 *wl, int addr,
70 void *buf, size_t len)
Bob Copeland3ec410d2009-08-07 13:33:42 +030071{
72 int ret;
73 struct sdio_func *func = wl_to_func(wl);
74
75 sdio_claim_host(func);
76 ret = sdio_memcpy_fromio(func, buf, addr, len);
77 if (ret)
78 wl1251_error("sdio read failed (%d)", ret);
79 sdio_release_host(func);
80}
81
Grazvydas Ignotas3c9cb9c2010-03-12 12:28:41 +020082static void wl1251_sdio_write(struct wl1251 *wl, int addr,
83 void *buf, size_t len)
Bob Copeland3ec410d2009-08-07 13:33:42 +030084{
85 int ret;
86 struct sdio_func *func = wl_to_func(wl);
87
88 sdio_claim_host(func);
89 ret = sdio_memcpy_toio(func, addr, buf, len);
90 if (ret)
91 wl1251_error("sdio write failed (%d)", ret);
92 sdio_release_host(func);
93}
94
Grazvydas Ignotas3f9e7502010-03-11 17:44:57 +020095static void wl1251_sdio_read_elp(struct wl1251 *wl, int addr, u32 *val)
96{
97 int ret = 0;
Grazvydas Ignotas832c10f2010-06-08 14:33:31 +030098 struct wl1251_sdio *wl_sdio = wl->if_priv;
99 struct sdio_func *func = wl_sdio->func;
Grazvydas Ignotas3f9e7502010-03-11 17:44:57 +0200100
Grazvydas Ignotas832c10f2010-06-08 14:33:31 +0300101 /*
102 * The hardware only supports RAW (read after write) access for
103 * reading, regular sdio_readb won't work here (it interprets
104 * the unused bits of CMD52 as write data even if we send read
105 * request).
106 */
Grazvydas Ignotas3f9e7502010-03-11 17:44:57 +0200107 sdio_claim_host(func);
Grazvydas Ignotas832c10f2010-06-08 14:33:31 +0300108 *val = sdio_writeb_readb(func, wl_sdio->elp_val, addr, &ret);
Grazvydas Ignotas3f9e7502010-03-11 17:44:57 +0200109 sdio_release_host(func);
110
111 if (ret)
112 wl1251_error("sdio_readb failed (%d)", ret);
113}
114
115static void wl1251_sdio_write_elp(struct wl1251 *wl, int addr, u32 val)
116{
117 int ret = 0;
Grazvydas Ignotas832c10f2010-06-08 14:33:31 +0300118 struct wl1251_sdio *wl_sdio = wl->if_priv;
119 struct sdio_func *func = wl_sdio->func;
Grazvydas Ignotas3f9e7502010-03-11 17:44:57 +0200120
121 sdio_claim_host(func);
122 sdio_writeb(func, val, addr, &ret);
123 sdio_release_host(func);
124
125 if (ret)
126 wl1251_error("sdio_writeb failed (%d)", ret);
Grazvydas Ignotas832c10f2010-06-08 14:33:31 +0300127 else
128 wl_sdio->elp_val = val;
Grazvydas Ignotas3f9e7502010-03-11 17:44:57 +0200129}
130
Grazvydas Ignotas3c9cb9c2010-03-12 12:28:41 +0200131static void wl1251_sdio_reset(struct wl1251 *wl)
Bob Copeland3ec410d2009-08-07 13:33:42 +0300132{
133}
134
Bob Copelandb5ed9c12009-08-07 13:33:49 +0300135static void wl1251_sdio_enable_irq(struct wl1251 *wl)
136{
137 struct sdio_func *func = wl_to_func(wl);
138
139 sdio_claim_host(func);
140 sdio_claim_irq(func, wl1251_sdio_interrupt);
141 sdio_release_host(func);
142}
143
144static void wl1251_sdio_disable_irq(struct wl1251 *wl)
145{
146 struct sdio_func *func = wl_to_func(wl);
147
148 sdio_claim_host(func);
149 sdio_release_irq(func);
150 sdio_release_host(func);
151}
152
Grazvydas Ignotasa02a2952010-04-16 13:22:12 +0300153/* Interrupts when using dedicated WLAN_IRQ pin */
154static irqreturn_t wl1251_line_irq(int irq, void *cookie)
155{
156 struct wl1251 *wl = cookie;
157
158 ieee80211_queue_work(wl->hw, &wl->irq_work);
159
160 return IRQ_HANDLED;
161}
162
163static void wl1251_enable_line_irq(struct wl1251 *wl)
164{
165 return enable_irq(wl->irq);
166}
167
168static void wl1251_disable_line_irq(struct wl1251 *wl)
169{
170 return disable_irq(wl->irq);
171}
172
Grazvydas Ignotascb7bbc72010-11-04 00:13:47 +0200173static int wl1251_sdio_set_power(struct wl1251 *wl, bool enable)
Bob Copeland3ec410d2009-08-07 13:33:42 +0300174{
Grazvydas Ignotas1d4b89f2010-11-08 15:29:36 +0200175 struct sdio_func *func = wl_to_func(wl);
176 int ret;
Grazvydas Ignotascb7bbc72010-11-04 00:13:47 +0200177
Grazvydas Ignotas1d4b89f2010-11-08 15:29:36 +0200178 if (enable) {
179 /*
180 * Power is controlled by runtime PM, but we still call board
181 * callback in case it wants to do any additional setup,
182 * for example enabling clock buffer for the module.
183 */
184 if (wl->set_power)
185 wl->set_power(true);
186
187 ret = pm_runtime_get_sync(&func->dev);
188 if (ret < 0)
189 goto out;
190
191 sdio_claim_host(func);
192 sdio_enable_func(func);
193 sdio_release_host(func);
194 } else {
195 sdio_claim_host(func);
196 sdio_disable_func(func);
197 sdio_release_host(func);
198
199 ret = pm_runtime_put_sync(&func->dev);
200 if (ret < 0)
201 goto out;
202
203 if (wl->set_power)
204 wl->set_power(false);
205 }
206
207out:
208 return ret;
Bob Copeland3ec410d2009-08-07 13:33:42 +0300209}
210
Grazvydas Ignotasa02a2952010-04-16 13:22:12 +0300211static struct wl1251_if_operations wl1251_sdio_ops = {
Bob Copeland3ec410d2009-08-07 13:33:42 +0300212 .read = wl1251_sdio_read,
213 .write = wl1251_sdio_write,
Grazvydas Ignotas3f9e7502010-03-11 17:44:57 +0200214 .write_elp = wl1251_sdio_write_elp,
215 .read_elp = wl1251_sdio_read_elp,
Bob Copeland3ec410d2009-08-07 13:33:42 +0300216 .reset = wl1251_sdio_reset,
Grazvydas Ignotascb7bbc72010-11-04 00:13:47 +0200217 .power = wl1251_sdio_set_power,
Bob Copeland3ec410d2009-08-07 13:33:42 +0300218};
219
Grazvydas Ignotas3c9cb9c2010-03-12 12:28:41 +0200220static int wl1251_sdio_probe(struct sdio_func *func,
221 const struct sdio_device_id *id)
Bob Copeland3ec410d2009-08-07 13:33:42 +0300222{
223 int ret;
224 struct wl1251 *wl;
225 struct ieee80211_hw *hw;
Grazvydas Ignotas832c10f2010-06-08 14:33:31 +0300226 struct wl1251_sdio *wl_sdio;
Grazvydas Ignotase4b3fdb2010-11-04 00:13:49 +0200227 const struct wl12xx_platform_data *wl12xx_board_data;
Bob Copeland3ec410d2009-08-07 13:33:42 +0300228
229 hw = wl1251_alloc_hw();
230 if (IS_ERR(hw))
231 return PTR_ERR(hw);
232
233 wl = hw->priv;
234
Grazvydas Ignotas832c10f2010-06-08 14:33:31 +0300235 wl_sdio = kzalloc(sizeof(*wl_sdio), GFP_KERNEL);
236 if (wl_sdio == NULL) {
237 ret = -ENOMEM;
238 goto out_free_hw;
239 }
240
Bob Copeland3ec410d2009-08-07 13:33:42 +0300241 sdio_claim_host(func);
242 ret = sdio_enable_func(func);
243 if (ret)
244 goto release;
245
246 sdio_set_block_size(func, 512);
Grazvydas Ignotasa02a2952010-04-16 13:22:12 +0300247 sdio_release_host(func);
Bob Copeland3ec410d2009-08-07 13:33:42 +0300248
249 SET_IEEE80211_DEV(hw, &func->dev);
Grazvydas Ignotas832c10f2010-06-08 14:33:31 +0300250 wl_sdio->func = func;
251 wl->if_priv = wl_sdio;
Bob Copeland3ec410d2009-08-07 13:33:42 +0300252 wl->if_ops = &wl1251_sdio_ops;
Bob Copeland3ec410d2009-08-07 13:33:42 +0300253
Grazvydas Ignotase4b3fdb2010-11-04 00:13:49 +0200254 wl12xx_board_data = wl12xx_get_platform_data();
Dan Carpenterae29fbb2010-12-18 11:52:10 +0300255 if (!IS_ERR(wl12xx_board_data)) {
Grazvydas Ignotas8c00b392010-04-15 18:23:23 +0300256 wl->set_power = wl12xx_board_data->set_power;
Grazvydas Ignotasa02a2952010-04-16 13:22:12 +0300257 wl->irq = wl12xx_board_data->irq;
Grazvydas Ignotas8c00b392010-04-15 18:23:23 +0300258 wl->use_eeprom = wl12xx_board_data->use_eeprom;
259 }
260
Grazvydas Ignotasa02a2952010-04-16 13:22:12 +0300261 if (wl->irq) {
262 ret = request_irq(wl->irq, wl1251_line_irq, 0, "wl1251", wl);
263 if (ret < 0) {
264 wl1251_error("request_irq() failed: %d", ret);
265 goto disable;
266 }
267
Thomas Gleixnerdced35a2011-03-28 17:49:12 +0200268 irq_set_irq_type(wl->irq, IRQ_TYPE_EDGE_RISING);
Grazvydas Ignotasa02a2952010-04-16 13:22:12 +0300269 disable_irq(wl->irq);
270
271 wl1251_sdio_ops.enable_irq = wl1251_enable_line_irq;
272 wl1251_sdio_ops.disable_irq = wl1251_disable_line_irq;
273
274 wl1251_info("using dedicated interrupt line");
275 } else {
276 wl1251_sdio_ops.enable_irq = wl1251_sdio_enable_irq;
277 wl1251_sdio_ops.disable_irq = wl1251_sdio_disable_irq;
278
279 wl1251_info("using SDIO interrupt");
280 }
281
Bob Copeland3ec410d2009-08-07 13:33:42 +0300282 ret = wl1251_init_ieee80211(wl);
Bob Copeland3ec410d2009-08-07 13:33:42 +0300283 if (ret)
Grazvydas Ignotasa02a2952010-04-16 13:22:12 +0300284 goto out_free_irq;
Bob Copeland3ec410d2009-08-07 13:33:42 +0300285
Bob Copeland3ec410d2009-08-07 13:33:42 +0300286 sdio_set_drvdata(func, wl);
Grazvydas Ignotas1d4b89f2010-11-08 15:29:36 +0200287
288 /* Tell PM core that we don't need the card to be powered now */
289 pm_runtime_put_noidle(&func->dev);
290
Bob Copeland3ec410d2009-08-07 13:33:42 +0300291 return ret;
292
Grazvydas Ignotasa02a2952010-04-16 13:22:12 +0300293out_free_irq:
294 if (wl->irq)
295 free_irq(wl->irq, wl);
Bob Copeland3ec410d2009-08-07 13:33:42 +0300296disable:
Bob Copelandb5ed9c12009-08-07 13:33:49 +0300297 sdio_claim_host(func);
Bob Copeland3ec410d2009-08-07 13:33:42 +0300298 sdio_disable_func(func);
299release:
300 sdio_release_host(func);
Grazvydas Ignotas832c10f2010-06-08 14:33:31 +0300301 kfree(wl_sdio);
302out_free_hw:
Grazvydas Ignotasaa679c32010-06-05 02:25:47 +0300303 wl1251_free_hw(wl);
Bob Copeland3ec410d2009-08-07 13:33:42 +0300304 return ret;
305}
306
307static void __devexit wl1251_sdio_remove(struct sdio_func *func)
308{
309 struct wl1251 *wl = sdio_get_drvdata(func);
Grazvydas Ignotas832c10f2010-06-08 14:33:31 +0300310 struct wl1251_sdio *wl_sdio = wl->if_priv;
Bob Copeland3ec410d2009-08-07 13:33:42 +0300311
Grazvydas Ignotas1d4b89f2010-11-08 15:29:36 +0200312 /* Undo decrement done above in wl1251_probe */
313 pm_runtime_get_noresume(&func->dev);
314
Grazvydas Ignotasa02a2952010-04-16 13:22:12 +0300315 if (wl->irq)
316 free_irq(wl->irq, wl);
Grazvydas Ignotas832c10f2010-06-08 14:33:31 +0300317 kfree(wl_sdio);
Bob Copeland3ec410d2009-08-07 13:33:42 +0300318 wl1251_free_hw(wl);
319
320 sdio_claim_host(func);
321 sdio_release_irq(func);
322 sdio_disable_func(func);
323 sdio_release_host(func);
324}
325
Grazvydas Ignotas1d4b89f2010-11-08 15:29:36 +0200326static int wl1251_suspend(struct device *dev)
327{
328 /*
329 * Tell MMC/SDIO core it's OK to power down the card
330 * (if it isn't already), but not to remove it completely.
331 */
332 return 0;
333}
334
335static int wl1251_resume(struct device *dev)
336{
337 return 0;
338}
339
340static const struct dev_pm_ops wl1251_sdio_pm_ops = {
341 .suspend = wl1251_suspend,
342 .resume = wl1251_resume,
343};
344
Bob Copeland3ec410d2009-08-07 13:33:42 +0300345static struct sdio_driver wl1251_sdio_driver = {
346 .name = "wl1251_sdio",
347 .id_table = wl1251_devices,
348 .probe = wl1251_sdio_probe,
349 .remove = __devexit_p(wl1251_sdio_remove),
Grazvydas Ignotas1d4b89f2010-11-08 15:29:36 +0200350 .drv.pm = &wl1251_sdio_pm_ops,
Bob Copeland3ec410d2009-08-07 13:33:42 +0300351};
352
353static int __init wl1251_sdio_init(void)
354{
355 int err;
356
357 err = sdio_register_driver(&wl1251_sdio_driver);
358 if (err)
359 wl1251_error("failed to register sdio driver: %d", err);
360 return err;
361}
362
363static void __exit wl1251_sdio_exit(void)
364{
365 sdio_unregister_driver(&wl1251_sdio_driver);
366 wl1251_notice("unloaded");
367}
368
369module_init(wl1251_sdio_init);
370module_exit(wl1251_sdio_exit);
371
372MODULE_LICENSE("GPL");
Kalle Valo31c726f2010-08-22 22:46:15 +0300373MODULE_AUTHOR("Kalle Valo <kvalo@adurom.com>");