blob: 1d5dc727167db411353e5d0b69c911684df7d665 [file] [log] [blame]
Teemu Paasikivi5129dff2010-02-22 08:38:27 +02001/*
2 * This file is part of wl1271
3 *
4 * Copyright (C) 2009-2010 Nokia Corporation
5 *
6 * Contact: Luciano Coelho <luciano.coelho@nokia.com>
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * version 2 as published by the Free Software Foundation.
11 *
12 * This program is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
20 * 02110-1301 USA
21 *
22 */
23
24#include <linux/irq.h>
25#include <linux/module.h>
26#include <linux/crc7.h>
27#include <linux/vmalloc.h>
28#include <linux/mmc/sdio_func.h>
29#include <linux/mmc/sdio_ids.h>
30#include <linux/mmc/card.h>
Ohad Ben-Cohen19b87172010-05-13 12:43:24 +030031#include <linux/gpio.h>
Teemu Paasikivi5129dff2010-02-22 08:38:27 +020032
33#include "wl1271.h"
34#include "wl12xx_80211.h"
35#include "wl1271_io.h"
36
37
38#define RX71_WL1271_IRQ_GPIO 42
39
40#ifndef SDIO_VENDOR_ID_TI
41#define SDIO_VENDOR_ID_TI 0x0097
42#endif
43
44#ifndef SDIO_DEVICE_ID_TI_WL1271
45#define SDIO_DEVICE_ID_TI_WL1271 0x4076
46#endif
47
48static const struct sdio_device_id wl1271_devices[] = {
49 { SDIO_DEVICE(SDIO_VENDOR_ID_TI, SDIO_DEVICE_ID_TI_WL1271) },
50 {}
51};
52MODULE_DEVICE_TABLE(sdio, wl1271_devices);
53
54static inline struct sdio_func *wl_to_func(struct wl1271 *wl)
55{
56 return wl->if_priv;
57}
58
59static struct device *wl1271_sdio_wl_to_dev(struct wl1271 *wl)
60{
61 return &(wl_to_func(wl)->dev);
62}
63
64static irqreturn_t wl1271_irq(int irq, void *cookie)
65{
66 struct wl1271 *wl = cookie;
67 unsigned long flags;
68
69 wl1271_debug(DEBUG_IRQ, "IRQ");
70
71 /* complete the ELP completion */
72 spin_lock_irqsave(&wl->wl_lock, flags);
73 if (wl->elp_compl) {
74 complete(wl->elp_compl);
75 wl->elp_compl = NULL;
76 }
77
Juuso Oikarinen1e73eb62010-02-22 08:38:37 +020078 if (!test_and_set_bit(WL1271_FLAG_IRQ_RUNNING, &wl->flags))
79 ieee80211_queue_work(wl->hw, &wl->irq_work);
80 set_bit(WL1271_FLAG_IRQ_PENDING, &wl->flags);
Teemu Paasikivi5129dff2010-02-22 08:38:27 +020081 spin_unlock_irqrestore(&wl->wl_lock, flags);
82
83 return IRQ_HANDLED;
84}
85
86static void wl1271_sdio_disable_interrupts(struct wl1271 *wl)
87{
88 disable_irq(wl->irq);
89}
90
91static void wl1271_sdio_enable_interrupts(struct wl1271 *wl)
92{
93 enable_irq(wl->irq);
94}
95
96static void wl1271_sdio_reset(struct wl1271 *wl)
97{
98}
99
100static void wl1271_sdio_init(struct wl1271 *wl)
101{
102}
103
104static void wl1271_sdio_raw_read(struct wl1271 *wl, int addr, void *buf,
Teemu Paasikivia3b8ea72010-03-18 12:26:41 +0200105 size_t len, bool fixed)
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200106{
107 int ret;
108 struct sdio_func *func = wl_to_func(wl);
109
Ohad Ben-Cohen49063a02010-09-07 04:24:21 +0300110 sdio_claim_host(func);
111
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200112 if (unlikely(addr == HW_ACCESS_ELP_CTRL_REG_ADDR)) {
113 ((u8 *)buf)[0] = sdio_f0_readb(func, addr, &ret);
Teemu Paasikivia3b8ea72010-03-18 12:26:41 +0200114 wl1271_debug(DEBUG_SDIO, "sdio read 52 addr 0x%x, byte 0x%02x",
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200115 addr, ((u8 *)buf)[0]);
116 } else {
117 if (fixed)
118 ret = sdio_readsb(func, buf, addr, len);
119 else
120 ret = sdio_memcpy_fromio(func, buf, addr, len);
121
Teemu Paasikivi99e50312010-03-26 12:53:16 +0200122 wl1271_debug(DEBUG_SDIO, "sdio read 53 addr 0x%x, %zu bytes",
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200123 addr, len);
Teemu Paasikivia3b8ea72010-03-18 12:26:41 +0200124 wl1271_dump_ascii(DEBUG_SDIO, "data: ", buf, len);
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200125 }
126
Ohad Ben-Cohen49063a02010-09-07 04:24:21 +0300127 sdio_release_host(func);
128
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200129 if (ret)
130 wl1271_error("sdio read failed (%d)", ret);
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200131}
132
133static void wl1271_sdio_raw_write(struct wl1271 *wl, int addr, void *buf,
Teemu Paasikivia3b8ea72010-03-18 12:26:41 +0200134 size_t len, bool fixed)
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200135{
136 int ret;
137 struct sdio_func *func = wl_to_func(wl);
138
Ohad Ben-Cohen49063a02010-09-07 04:24:21 +0300139 sdio_claim_host(func);
140
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200141 if (unlikely(addr == HW_ACCESS_ELP_CTRL_REG_ADDR)) {
142 sdio_f0_writeb(func, ((u8 *)buf)[0], addr, &ret);
Teemu Paasikivia3b8ea72010-03-18 12:26:41 +0200143 wl1271_debug(DEBUG_SDIO, "sdio write 52 addr 0x%x, byte 0x%02x",
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200144 addr, ((u8 *)buf)[0]);
145 } else {
Teemu Paasikivi99e50312010-03-26 12:53:16 +0200146 wl1271_debug(DEBUG_SDIO, "sdio write 53 addr 0x%x, %zu bytes",
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200147 addr, len);
Teemu Paasikivia3b8ea72010-03-18 12:26:41 +0200148 wl1271_dump_ascii(DEBUG_SDIO, "data: ", buf, len);
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200149
150 if (fixed)
151 ret = sdio_writesb(func, addr, buf, len);
152 else
153 ret = sdio_memcpy_toio(func, addr, buf, len);
154 }
Ohad Ben-Cohen49063a02010-09-07 04:24:21 +0300155
156 sdio_release_host(func);
157
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200158 if (ret)
159 wl1271_error("sdio write failed (%d)", ret);
Ohad Ben-Cohen49063a02010-09-07 04:24:21 +0300160}
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200161
Ohad Ben-Cohen2cc78ff2010-09-16 01:22:04 +0200162static int wl1271_sdio_power_on(struct wl1271 *wl)
Ohad Ben-Cohen49063a02010-09-07 04:24:21 +0300163{
164 struct sdio_func *func = wl_to_func(wl);
165
166 sdio_claim_host(func);
167 sdio_enable_func(func);
168 sdio_release_host(func);
Ohad Ben-Cohen2cc78ff2010-09-16 01:22:04 +0200169
170 return 0;
Ohad Ben-Cohen49063a02010-09-07 04:24:21 +0300171}
172
Ohad Ben-Cohen2cc78ff2010-09-16 01:22:04 +0200173static int wl1271_sdio_power_off(struct wl1271 *wl)
Ohad Ben-Cohen49063a02010-09-07 04:24:21 +0300174{
175 struct sdio_func *func = wl_to_func(wl);
176
177 sdio_claim_host(func);
178 sdio_disable_func(func);
179 sdio_release_host(func);
Ohad Ben-Cohen2cc78ff2010-09-16 01:22:04 +0200180
181 return 0;
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200182}
183
Ohad Ben-Cohen2cc78ff2010-09-16 01:22:04 +0200184static int wl1271_sdio_set_power(struct wl1271 *wl, bool enable)
Teemu Paasikivibecd5512010-03-18 12:26:27 +0200185{
Teemu Paasikivia3b8ea72010-03-18 12:26:41 +0200186 /* Let the SDIO stack handle wlan_enable control, so we
187 * keep host claimed while wlan is in use to keep wl1271
188 * alive.
189 */
Ohad Ben-Cohen49063a02010-09-07 04:24:21 +0300190 if (enable)
Ohad Ben-Cohen2cc78ff2010-09-16 01:22:04 +0200191 return wl1271_sdio_power_on(wl);
Ohad Ben-Cohen49063a02010-09-07 04:24:21 +0300192 else
Ohad Ben-Cohen2cc78ff2010-09-16 01:22:04 +0200193 return wl1271_sdio_power_off(wl);
Teemu Paasikivibecd5512010-03-18 12:26:27 +0200194}
195
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200196static struct wl1271_if_operations sdio_ops = {
197 .read = wl1271_sdio_raw_read,
198 .write = wl1271_sdio_raw_write,
199 .reset = wl1271_sdio_reset,
200 .init = wl1271_sdio_init,
Teemu Paasikivibecd5512010-03-18 12:26:27 +0200201 .power = wl1271_sdio_set_power,
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200202 .dev = wl1271_sdio_wl_to_dev,
203 .enable_irq = wl1271_sdio_enable_interrupts,
204 .disable_irq = wl1271_sdio_disable_interrupts
205};
206
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200207static int __devinit wl1271_probe(struct sdio_func *func,
208 const struct sdio_device_id *id)
209{
210 struct ieee80211_hw *hw;
211 struct wl1271 *wl;
212 int ret;
213
214 /* We are only able to handle the wlan function */
215 if (func->num != 0x02)
216 return -ENODEV;
217
218 hw = wl1271_alloc_hw();
219 if (IS_ERR(hw))
220 return PTR_ERR(hw);
221
222 wl = hw->priv;
223
224 wl->if_priv = func;
225 wl->if_ops = &sdio_ops;
226
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200227 /* Grab access to FN0 for ELP reg. */
228 func->card->quirks |= MMC_QUIRK_LENIENT_FN0;
229
230 wl->irq = gpio_to_irq(RX71_WL1271_IRQ_GPIO);
231 if (wl->irq < 0) {
232 ret = wl->irq;
233 wl1271_error("could not get irq!");
234 goto out_free;
235 }
236
237 ret = request_irq(wl->irq, wl1271_irq, 0, DRIVER_NAME, wl);
238 if (ret < 0) {
239 wl1271_error("request_irq() failed: %d", ret);
240 goto out_free;
241 }
242
243 set_irq_type(wl->irq, IRQ_TYPE_EDGE_RISING);
244
245 disable_irq(wl->irq);
246
247 ret = wl1271_init_ieee80211(wl);
248 if (ret)
249 goto out_irq;
250
251 ret = wl1271_register_hw(wl);
252 if (ret)
253 goto out_irq;
254
Teemu Paasikivi49d7f6d2010-02-22 08:38:29 +0200255 sdio_set_drvdata(func, wl);
256
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200257 wl1271_notice("initialized");
258
259 return 0;
260
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200261 out_irq:
262 free_irq(wl->irq, wl);
263
264
265 out_free:
Teemu Paasikivi3b56dd62010-03-18 12:26:46 +0200266 wl1271_free_hw(wl);
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200267
268 return ret;
269}
270
271static void __devexit wl1271_remove(struct sdio_func *func)
272{
273 struct wl1271 *wl = sdio_get_drvdata(func);
274
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200275 free_irq(wl->irq, wl);
276
Teemu Paasikivi3b56dd62010-03-18 12:26:46 +0200277 wl1271_unregister_hw(wl);
Teemu Paasikivi801a6732010-03-18 12:26:42 +0200278 wl1271_free_hw(wl);
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200279}
280
281static struct sdio_driver wl1271_sdio_driver = {
Luciano Coelhof4b5d8d2010-04-01 11:38:17 +0300282 .name = "wl1271_sdio",
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200283 .id_table = wl1271_devices,
284 .probe = wl1271_probe,
285 .remove = __devexit_p(wl1271_remove),
286};
287
288static int __init wl1271_init(void)
289{
290 int ret;
291
292 ret = sdio_register_driver(&wl1271_sdio_driver);
293 if (ret < 0) {
294 wl1271_error("failed to register sdio driver: %d", ret);
295 goto out;
296 }
297
298out:
299 return ret;
300}
301
302static void __exit wl1271_exit(void)
303{
304 sdio_unregister_driver(&wl1271_sdio_driver);
305
306 wl1271_notice("unloaded");
307}
308
309module_init(wl1271_init);
310module_exit(wl1271_exit);
311
312MODULE_LICENSE("GPL");
313MODULE_AUTHOR("Luciano Coelho <luciano.coelho@nokia.com>");
314MODULE_AUTHOR("Juuso Oikarinen <juuso.oikarinen@nokia.com>");
315MODULE_FIRMWARE(WL1271_FW_NAME);