blob: b1c7d031c39163686050d624246190e22ee2e348 [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>
Ido Yariv11251e72011-02-28 00:13:58 +020031#include <linux/mmc/host.h>
Ohad Ben-Cohen19b87172010-05-13 12:43:24 +030032#include <linux/gpio.h>
Ohad Ben-Cohen09cecc32010-09-16 01:31:35 +020033#include <linux/wl12xx.h>
Ohad Ben-Cohen00cbb3c2010-10-08 16:16:16 +030034#include <linux/pm_runtime.h>
Teemu Paasikivi5129dff2010-02-22 08:38:27 +020035
Shahar Levi00d20102010-11-08 11:20:10 +000036#include "wl12xx.h"
Teemu Paasikivi5129dff2010-02-22 08:38:27 +020037#include "wl12xx_80211.h"
Shahar Levi00d20102010-11-08 11:20:10 +000038#include "io.h"
Teemu Paasikivi5129dff2010-02-22 08:38:27 +020039
Teemu Paasikivi5129dff2010-02-22 08:38:27 +020040#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
Ido Yariva6208652011-03-01 15:14:41 +020064static irqreturn_t wl1271_hardirq(int irq, void *cookie)
Teemu Paasikivi5129dff2010-02-22 08:38:27 +020065{
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);
Ido Yariva6208652011-03-01 15:14:41 +020073 set_bit(WL1271_FLAG_IRQ_RUNNING, &wl->flags);
Teemu Paasikivi5129dff2010-02-22 08:38:27 +020074 if (wl->elp_compl) {
75 complete(wl->elp_compl);
76 wl->elp_compl = NULL;
77 }
Teemu Paasikivi5129dff2010-02-22 08:38:27 +020078 spin_unlock_irqrestore(&wl->wl_lock, flags);
79
Ido Yariva6208652011-03-01 15:14:41 +020080 return IRQ_WAKE_THREAD;
Teemu Paasikivi5129dff2010-02-22 08:38:27 +020081}
82
83static void wl1271_sdio_disable_interrupts(struct wl1271 *wl)
84{
85 disable_irq(wl->irq);
86}
87
88static void wl1271_sdio_enable_interrupts(struct wl1271 *wl)
89{
90 enable_irq(wl->irq);
91}
92
93static void wl1271_sdio_reset(struct wl1271 *wl)
94{
95}
96
97static void wl1271_sdio_init(struct wl1271 *wl)
98{
99}
100
101static void wl1271_sdio_raw_read(struct wl1271 *wl, int addr, void *buf,
Teemu Paasikivia3b8ea72010-03-18 12:26:41 +0200102 size_t len, bool fixed)
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200103{
104 int ret;
105 struct sdio_func *func = wl_to_func(wl);
106
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200107 if (unlikely(addr == HW_ACCESS_ELP_CTRL_REG_ADDR)) {
108 ((u8 *)buf)[0] = sdio_f0_readb(func, addr, &ret);
Teemu Paasikivia3b8ea72010-03-18 12:26:41 +0200109 wl1271_debug(DEBUG_SDIO, "sdio read 52 addr 0x%x, byte 0x%02x",
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200110 addr, ((u8 *)buf)[0]);
111 } else {
112 if (fixed)
113 ret = sdio_readsb(func, buf, addr, len);
114 else
115 ret = sdio_memcpy_fromio(func, buf, addr, len);
116
Teemu Paasikivi99e50312010-03-26 12:53:16 +0200117 wl1271_debug(DEBUG_SDIO, "sdio read 53 addr 0x%x, %zu bytes",
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200118 addr, len);
Teemu Paasikivia3b8ea72010-03-18 12:26:41 +0200119 wl1271_dump_ascii(DEBUG_SDIO, "data: ", buf, len);
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200120 }
121
122 if (ret)
123 wl1271_error("sdio read failed (%d)", ret);
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200124}
125
126static void wl1271_sdio_raw_write(struct wl1271 *wl, int addr, void *buf,
Teemu Paasikivia3b8ea72010-03-18 12:26:41 +0200127 size_t len, bool fixed)
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200128{
129 int ret;
130 struct sdio_func *func = wl_to_func(wl);
131
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200132 if (unlikely(addr == HW_ACCESS_ELP_CTRL_REG_ADDR)) {
133 sdio_f0_writeb(func, ((u8 *)buf)[0], addr, &ret);
Teemu Paasikivia3b8ea72010-03-18 12:26:41 +0200134 wl1271_debug(DEBUG_SDIO, "sdio write 52 addr 0x%x, byte 0x%02x",
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200135 addr, ((u8 *)buf)[0]);
136 } else {
Teemu Paasikivi99e50312010-03-26 12:53:16 +0200137 wl1271_debug(DEBUG_SDIO, "sdio write 53 addr 0x%x, %zu bytes",
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200138 addr, len);
Teemu Paasikivia3b8ea72010-03-18 12:26:41 +0200139 wl1271_dump_ascii(DEBUG_SDIO, "data: ", buf, len);
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200140
141 if (fixed)
142 ret = sdio_writesb(func, addr, buf, len);
143 else
144 ret = sdio_memcpy_toio(func, addr, buf, len);
145 }
Ohad Ben-Cohen49063a02010-09-07 04:24:21 +0300146
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200147 if (ret)
148 wl1271_error("sdio write failed (%d)", ret);
Ohad Ben-Cohen49063a02010-09-07 04:24:21 +0300149}
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200150
Ohad Ben-Cohen2cc78ff2010-09-16 01:22:04 +0200151static int wl1271_sdio_power_on(struct wl1271 *wl)
Ohad Ben-Cohen49063a02010-09-07 04:24:21 +0300152{
153 struct sdio_func *func = wl_to_func(wl);
Ohad Ben-Cohen00cbb3c2010-10-08 16:16:16 +0300154 int ret;
155
Ido Yariv11251e72011-02-28 00:13:58 +0200156 /* Make sure the card will not be powered off by runtime PM */
Ohad Ben-Cohen00cbb3c2010-10-08 16:16:16 +0300157 ret = pm_runtime_get_sync(&func->dev);
158 if (ret < 0)
159 goto out;
Ohad Ben-Cohen49063a02010-09-07 04:24:21 +0300160
Ido Yariv11251e72011-02-28 00:13:58 +0200161 /* Runtime PM might be disabled, so power up the card manually */
162 ret = mmc_power_restore_host(func->card->host);
163 if (ret < 0)
164 goto out;
165
Ohad Ben-Cohen49063a02010-09-07 04:24:21 +0300166 sdio_claim_host(func);
167 sdio_enable_func(func);
Ohad Ben-Cohen2cc78ff2010-09-16 01:22:04 +0200168
Ohad Ben-Cohen00cbb3c2010-10-08 16:16:16 +0300169out:
170 return ret;
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);
Ido Yariv11251e72011-02-28 00:13:58 +0200176 int ret;
Ohad Ben-Cohen49063a02010-09-07 04:24:21 +0300177
Ohad Ben-Cohen49063a02010-09-07 04:24:21 +0300178 sdio_disable_func(func);
179 sdio_release_host(func);
Ohad Ben-Cohen2cc78ff2010-09-16 01:22:04 +0200180
Ido Yariv11251e72011-02-28 00:13:58 +0200181 /* Runtime PM might be disabled, so power off the card manually */
182 ret = mmc_power_save_host(func->card->host);
183 if (ret < 0)
184 return ret;
185
186 /* Let runtime PM know the card is powered off */
Ohad Ben-Cohen00cbb3c2010-10-08 16:16:16 +0300187 return pm_runtime_put_sync(&func->dev);
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200188}
189
Ohad Ben-Cohen2cc78ff2010-09-16 01:22:04 +0200190static int wl1271_sdio_set_power(struct wl1271 *wl, bool enable)
Teemu Paasikivibecd5512010-03-18 12:26:27 +0200191{
Ohad Ben-Cohen49063a02010-09-07 04:24:21 +0300192 if (enable)
Ohad Ben-Cohen2cc78ff2010-09-16 01:22:04 +0200193 return wl1271_sdio_power_on(wl);
Ohad Ben-Cohen49063a02010-09-07 04:24:21 +0300194 else
Ohad Ben-Cohen2cc78ff2010-09-16 01:22:04 +0200195 return wl1271_sdio_power_off(wl);
Teemu Paasikivibecd5512010-03-18 12:26:27 +0200196}
197
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200198static struct wl1271_if_operations sdio_ops = {
199 .read = wl1271_sdio_raw_read,
200 .write = wl1271_sdio_raw_write,
201 .reset = wl1271_sdio_reset,
202 .init = wl1271_sdio_init,
Teemu Paasikivibecd5512010-03-18 12:26:27 +0200203 .power = wl1271_sdio_set_power,
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200204 .dev = wl1271_sdio_wl_to_dev,
205 .enable_irq = wl1271_sdio_enable_interrupts,
206 .disable_irq = wl1271_sdio_disable_interrupts
207};
208
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200209static int __devinit wl1271_probe(struct sdio_func *func,
210 const struct sdio_device_id *id)
211{
212 struct ieee80211_hw *hw;
Ohad Ben-Cohen09cecc32010-09-16 01:31:35 +0200213 const struct wl12xx_platform_data *wlan_data;
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200214 struct wl1271 *wl;
215 int ret;
216
217 /* We are only able to handle the wlan function */
218 if (func->num != 0x02)
219 return -ENODEV;
220
221 hw = wl1271_alloc_hw();
222 if (IS_ERR(hw))
223 return PTR_ERR(hw);
224
225 wl = hw->priv;
226
227 wl->if_priv = func;
228 wl->if_ops = &sdio_ops;
229
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200230 /* Grab access to FN0 for ELP reg. */
231 func->card->quirks |= MMC_QUIRK_LENIENT_FN0;
232
Ohad Ben-Cohen09cecc32010-09-16 01:31:35 +0200233 wlan_data = wl12xx_get_platform_data();
234 if (IS_ERR(wlan_data)) {
235 ret = PTR_ERR(wlan_data);
236 wl1271_error("missing wlan platform data: %d", ret);
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200237 goto out_free;
238 }
239
Ohad Ben-Cohen09cecc32010-09-16 01:31:35 +0200240 wl->irq = wlan_data->irq;
Ohad Ben-Cohen15cea992010-09-16 01:31:51 +0200241 wl->ref_clock = wlan_data->board_ref_clock;
Ohad Ben-Cohen09cecc32010-09-16 01:31:35 +0200242
Ido Yariva6208652011-03-01 15:14:41 +0200243 ret = request_threaded_irq(wl->irq, wl1271_hardirq, wl1271_irq,
Ido Yariv2da69b82011-03-01 15:14:42 +0200244 IRQF_TRIGGER_HIGH | IRQF_ONESHOT,
Ido Yariva6208652011-03-01 15:14:41 +0200245 DRIVER_NAME, wl);
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200246 if (ret < 0) {
247 wl1271_error("request_irq() failed: %d", ret);
248 goto out_free;
249 }
250
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200251 disable_irq(wl->irq);
252
253 ret = wl1271_init_ieee80211(wl);
254 if (ret)
255 goto out_irq;
256
257 ret = wl1271_register_hw(wl);
258 if (ret)
259 goto out_irq;
260
Teemu Paasikivi49d7f6d2010-02-22 08:38:29 +0200261 sdio_set_drvdata(func, wl);
262
Ohad Ben-Cohen00cbb3c2010-10-08 16:16:16 +0300263 /* Tell PM core that we don't need the card to be powered now */
264 pm_runtime_put_noidle(&func->dev);
265
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200266 wl1271_notice("initialized");
267
268 return 0;
269
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200270 out_irq:
271 free_irq(wl->irq, wl);
272
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200273 out_free:
Teemu Paasikivi3b56dd62010-03-18 12:26:46 +0200274 wl1271_free_hw(wl);
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200275
276 return ret;
277}
278
279static void __devexit wl1271_remove(struct sdio_func *func)
280{
281 struct wl1271 *wl = sdio_get_drvdata(func);
282
Ohad Ben-Cohen00cbb3c2010-10-08 16:16:16 +0300283 /* Undo decrement done above in wl1271_probe */
284 pm_runtime_get_noresume(&func->dev);
285
Teemu Paasikivi3b56dd62010-03-18 12:26:46 +0200286 wl1271_unregister_hw(wl);
Juuso Oikarinen4e23b112010-08-13 04:46:48 +0200287 free_irq(wl->irq, wl);
Teemu Paasikivi801a6732010-03-18 12:26:42 +0200288 wl1271_free_hw(wl);
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200289}
290
Ohad Ben-Cohen674f3052010-10-08 16:16:27 +0300291static int wl1271_suspend(struct device *dev)
292{
293 /* Tell MMC/SDIO core it's OK to power down the card
294 * (if it isn't already), but not to remove it completely */
295 return 0;
296}
297
298static int wl1271_resume(struct device *dev)
299{
300 return 0;
301}
302
303static const struct dev_pm_ops wl1271_sdio_pm_ops = {
304 .suspend = wl1271_suspend,
305 .resume = wl1271_resume,
306};
307
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200308static struct sdio_driver wl1271_sdio_driver = {
Luciano Coelhof4b5d8d2010-04-01 11:38:17 +0300309 .name = "wl1271_sdio",
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200310 .id_table = wl1271_devices,
311 .probe = wl1271_probe,
312 .remove = __devexit_p(wl1271_remove),
Ohad Ben-Cohen674f3052010-10-08 16:16:27 +0300313 .drv = {
314 .pm = &wl1271_sdio_pm_ops,
315 },
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200316};
317
318static int __init wl1271_init(void)
319{
320 int ret;
321
322 ret = sdio_register_driver(&wl1271_sdio_driver);
323 if (ret < 0) {
324 wl1271_error("failed to register sdio driver: %d", ret);
325 goto out;
326 }
327
328out:
329 return ret;
330}
331
332static void __exit wl1271_exit(void)
333{
334 sdio_unregister_driver(&wl1271_sdio_driver);
335
336 wl1271_notice("unloaded");
337}
338
339module_init(wl1271_init);
340module_exit(wl1271_exit);
341
342MODULE_LICENSE("GPL");
Luciano Coelho5245e3a2011-03-30 21:31:39 +0300343MODULE_AUTHOR("Luciano Coelho <coelho@ti.com>");
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200344MODULE_AUTHOR("Juuso Oikarinen <juuso.oikarinen@nokia.com>");
345MODULE_FIRMWARE(WL1271_FW_NAME);
Arik Nemtsovd75387c2011-01-17 10:16:00 +0100346MODULE_FIRMWARE(WL1271_AP_FW_NAME);