blob: 8246e9de4306f4bab00f24c84a7c8c61607391c6 [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
Ido Yariv0da13da2011-03-31 10:06:58 +020054static void wl1271_sdio_set_block_size(struct wl1271 *wl, unsigned int blksz)
Luciano Coelhoa81159e2011-03-14 14:05:13 +020055{
Luciano Coelhoa81159e2011-03-14 14:05:13 +020056 sdio_claim_host(wl->if_priv);
Ido Yariv0da13da2011-03-31 10:06:58 +020057 sdio_set_block_size(wl->if_priv, blksz);
Luciano Coelhoa81159e2011-03-14 14:05:13 +020058 sdio_release_host(wl->if_priv);
59}
60
Teemu Paasikivi5129dff2010-02-22 08:38:27 +020061static inline struct sdio_func *wl_to_func(struct wl1271 *wl)
62{
63 return wl->if_priv;
64}
65
66static struct device *wl1271_sdio_wl_to_dev(struct wl1271 *wl)
67{
68 return &(wl_to_func(wl)->dev);
69}
70
Ido Yariva6208652011-03-01 15:14:41 +020071static irqreturn_t wl1271_hardirq(int irq, void *cookie)
Teemu Paasikivi5129dff2010-02-22 08:38:27 +020072{
73 struct wl1271 *wl = cookie;
74 unsigned long flags;
75
76 wl1271_debug(DEBUG_IRQ, "IRQ");
77
78 /* complete the ELP completion */
79 spin_lock_irqsave(&wl->wl_lock, flags);
Ido Yariva6208652011-03-01 15:14:41 +020080 set_bit(WL1271_FLAG_IRQ_RUNNING, &wl->flags);
Teemu Paasikivi5129dff2010-02-22 08:38:27 +020081 if (wl->elp_compl) {
82 complete(wl->elp_compl);
83 wl->elp_compl = NULL;
84 }
Teemu Paasikivi5129dff2010-02-22 08:38:27 +020085 spin_unlock_irqrestore(&wl->wl_lock, flags);
86
Ido Yariva6208652011-03-01 15:14:41 +020087 return IRQ_WAKE_THREAD;
Teemu Paasikivi5129dff2010-02-22 08:38:27 +020088}
89
90static void wl1271_sdio_disable_interrupts(struct wl1271 *wl)
91{
92 disable_irq(wl->irq);
93}
94
95static void wl1271_sdio_enable_interrupts(struct wl1271 *wl)
96{
97 enable_irq(wl->irq);
98}
99
100static void wl1271_sdio_reset(struct wl1271 *wl)
101{
102}
103
104static void wl1271_sdio_init(struct wl1271 *wl)
105{
106}
107
108static void wl1271_sdio_raw_read(struct wl1271 *wl, int addr, void *buf,
Teemu Paasikivia3b8ea72010-03-18 12:26:41 +0200109 size_t len, bool fixed)
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200110{
111 int ret;
112 struct sdio_func *func = wl_to_func(wl);
113
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200114 if (unlikely(addr == HW_ACCESS_ELP_CTRL_REG_ADDR)) {
115 ((u8 *)buf)[0] = sdio_f0_readb(func, addr, &ret);
Teemu Paasikivia3b8ea72010-03-18 12:26:41 +0200116 wl1271_debug(DEBUG_SDIO, "sdio read 52 addr 0x%x, byte 0x%02x",
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200117 addr, ((u8 *)buf)[0]);
118 } else {
119 if (fixed)
120 ret = sdio_readsb(func, buf, addr, len);
121 else
122 ret = sdio_memcpy_fromio(func, buf, addr, len);
123
Teemu Paasikivi99e50312010-03-26 12:53:16 +0200124 wl1271_debug(DEBUG_SDIO, "sdio read 53 addr 0x%x, %zu bytes",
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200125 addr, len);
Teemu Paasikivia3b8ea72010-03-18 12:26:41 +0200126 wl1271_dump_ascii(DEBUG_SDIO, "data: ", buf, len);
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200127 }
128
129 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
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200139 if (unlikely(addr == HW_ACCESS_ELP_CTRL_REG_ADDR)) {
140 sdio_f0_writeb(func, ((u8 *)buf)[0], addr, &ret);
Teemu Paasikivia3b8ea72010-03-18 12:26:41 +0200141 wl1271_debug(DEBUG_SDIO, "sdio write 52 addr 0x%x, byte 0x%02x",
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200142 addr, ((u8 *)buf)[0]);
143 } else {
Teemu Paasikivi99e50312010-03-26 12:53:16 +0200144 wl1271_debug(DEBUG_SDIO, "sdio write 53 addr 0x%x, %zu bytes",
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200145 addr, len);
Teemu Paasikivia3b8ea72010-03-18 12:26:41 +0200146 wl1271_dump_ascii(DEBUG_SDIO, "data: ", buf, len);
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200147
148 if (fixed)
149 ret = sdio_writesb(func, addr, buf, len);
150 else
151 ret = sdio_memcpy_toio(func, addr, buf, len);
152 }
Ohad Ben-Cohen49063a02010-09-07 04:24:21 +0300153
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200154 if (ret)
155 wl1271_error("sdio write failed (%d)", ret);
Ohad Ben-Cohen49063a02010-09-07 04:24:21 +0300156}
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200157
Ohad Ben-Cohen2cc78ff2010-09-16 01:22:04 +0200158static int wl1271_sdio_power_on(struct wl1271 *wl)
Ohad Ben-Cohen49063a02010-09-07 04:24:21 +0300159{
160 struct sdio_func *func = wl_to_func(wl);
Ohad Ben-Cohen00cbb3c2010-10-08 16:16:16 +0300161 int ret;
162
Ido Yariv11251e72011-02-28 00:13:58 +0200163 /* Make sure the card will not be powered off by runtime PM */
Ohad Ben-Cohen00cbb3c2010-10-08 16:16:16 +0300164 ret = pm_runtime_get_sync(&func->dev);
165 if (ret < 0)
166 goto out;
Ohad Ben-Cohen49063a02010-09-07 04:24:21 +0300167
Ido Yariv11251e72011-02-28 00:13:58 +0200168 /* Runtime PM might be disabled, so power up the card manually */
169 ret = mmc_power_restore_host(func->card->host);
170 if (ret < 0)
171 goto out;
172
Ohad Ben-Cohen49063a02010-09-07 04:24:21 +0300173 sdio_claim_host(func);
174 sdio_enable_func(func);
Ohad Ben-Cohen2cc78ff2010-09-16 01:22:04 +0200175
Ohad Ben-Cohen00cbb3c2010-10-08 16:16:16 +0300176out:
177 return ret;
Ohad Ben-Cohen49063a02010-09-07 04:24:21 +0300178}
179
Ohad Ben-Cohen2cc78ff2010-09-16 01:22:04 +0200180static int wl1271_sdio_power_off(struct wl1271 *wl)
Ohad Ben-Cohen49063a02010-09-07 04:24:21 +0300181{
182 struct sdio_func *func = wl_to_func(wl);
Ido Yariv11251e72011-02-28 00:13:58 +0200183 int ret;
Ohad Ben-Cohen49063a02010-09-07 04:24:21 +0300184
Ohad Ben-Cohen49063a02010-09-07 04:24:21 +0300185 sdio_disable_func(func);
186 sdio_release_host(func);
Ohad Ben-Cohen2cc78ff2010-09-16 01:22:04 +0200187
Ido Yariv11251e72011-02-28 00:13:58 +0200188 /* Runtime PM might be disabled, so power off the card manually */
189 ret = mmc_power_save_host(func->card->host);
190 if (ret < 0)
191 return ret;
192
193 /* Let runtime PM know the card is powered off */
Ohad Ben-Cohen00cbb3c2010-10-08 16:16:16 +0300194 return pm_runtime_put_sync(&func->dev);
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200195}
196
Ohad Ben-Cohen2cc78ff2010-09-16 01:22:04 +0200197static int wl1271_sdio_set_power(struct wl1271 *wl, bool enable)
Teemu Paasikivibecd5512010-03-18 12:26:27 +0200198{
Ohad Ben-Cohen49063a02010-09-07 04:24:21 +0300199 if (enable)
Ohad Ben-Cohen2cc78ff2010-09-16 01:22:04 +0200200 return wl1271_sdio_power_on(wl);
Ohad Ben-Cohen49063a02010-09-07 04:24:21 +0300201 else
Ohad Ben-Cohen2cc78ff2010-09-16 01:22:04 +0200202 return wl1271_sdio_power_off(wl);
Teemu Paasikivibecd5512010-03-18 12:26:27 +0200203}
204
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200205static struct wl1271_if_operations sdio_ops = {
206 .read = wl1271_sdio_raw_read,
207 .write = wl1271_sdio_raw_write,
208 .reset = wl1271_sdio_reset,
209 .init = wl1271_sdio_init,
Teemu Paasikivibecd5512010-03-18 12:26:27 +0200210 .power = wl1271_sdio_set_power,
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200211 .dev = wl1271_sdio_wl_to_dev,
212 .enable_irq = wl1271_sdio_enable_interrupts,
Luciano Coelhoa81159e2011-03-14 14:05:13 +0200213 .disable_irq = wl1271_sdio_disable_interrupts,
214 .set_block_size = wl1271_sdio_set_block_size,
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200215};
216
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200217static int __devinit wl1271_probe(struct sdio_func *func,
218 const struct sdio_device_id *id)
219{
220 struct ieee80211_hw *hw;
Ohad Ben-Cohen09cecc32010-09-16 01:31:35 +0200221 const struct wl12xx_platform_data *wlan_data;
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200222 struct wl1271 *wl;
223 int ret;
224
225 /* We are only able to handle the wlan function */
226 if (func->num != 0x02)
227 return -ENODEV;
228
229 hw = wl1271_alloc_hw();
230 if (IS_ERR(hw))
231 return PTR_ERR(hw);
232
233 wl = hw->priv;
234
235 wl->if_priv = func;
236 wl->if_ops = &sdio_ops;
237
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200238 /* Grab access to FN0 for ELP reg. */
239 func->card->quirks |= MMC_QUIRK_LENIENT_FN0;
240
Arik Nemtsov1d732e82011-03-18 14:49:57 +0200241 /* Use block mode for transferring over one block size of data */
242 func->card->quirks |= MMC_QUIRK_BLKSZ_FOR_BYTE_MODE;
243
Ohad Ben-Cohen09cecc32010-09-16 01:31:35 +0200244 wlan_data = wl12xx_get_platform_data();
245 if (IS_ERR(wlan_data)) {
246 ret = PTR_ERR(wlan_data);
247 wl1271_error("missing wlan platform data: %d", ret);
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200248 goto out_free;
249 }
250
Ohad Ben-Cohen09cecc32010-09-16 01:31:35 +0200251 wl->irq = wlan_data->irq;
Ohad Ben-Cohen15cea992010-09-16 01:31:51 +0200252 wl->ref_clock = wlan_data->board_ref_clock;
Shahar Levi5ea417a2011-03-06 16:32:11 +0200253 wl->tcxo_clock = wlan_data->board_tcxo_clock;
Ohad Ben-Cohen09cecc32010-09-16 01:31:35 +0200254
Ido Yariva6208652011-03-01 15:14:41 +0200255 ret = request_threaded_irq(wl->irq, wl1271_hardirq, wl1271_irq,
Ido Yariv2da69b82011-03-01 15:14:42 +0200256 IRQF_TRIGGER_HIGH | IRQF_ONESHOT,
Ido Yariva6208652011-03-01 15:14:41 +0200257 DRIVER_NAME, wl);
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200258 if (ret < 0) {
259 wl1271_error("request_irq() failed: %d", ret);
260 goto out_free;
261 }
262
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200263 disable_irq(wl->irq);
264
265 ret = wl1271_init_ieee80211(wl);
266 if (ret)
267 goto out_irq;
268
269 ret = wl1271_register_hw(wl);
270 if (ret)
271 goto out_irq;
272
Teemu Paasikivi49d7f6d2010-02-22 08:38:29 +0200273 sdio_set_drvdata(func, wl);
274
Ohad Ben-Cohen00cbb3c2010-10-08 16:16:16 +0300275 /* Tell PM core that we don't need the card to be powered now */
276 pm_runtime_put_noidle(&func->dev);
277
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200278 wl1271_notice("initialized");
279
280 return 0;
281
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200282 out_irq:
283 free_irq(wl->irq, wl);
284
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200285 out_free:
Teemu Paasikivi3b56dd62010-03-18 12:26:46 +0200286 wl1271_free_hw(wl);
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200287
288 return ret;
289}
290
291static void __devexit wl1271_remove(struct sdio_func *func)
292{
293 struct wl1271 *wl = sdio_get_drvdata(func);
294
Ohad Ben-Cohen00cbb3c2010-10-08 16:16:16 +0300295 /* Undo decrement done above in wl1271_probe */
296 pm_runtime_get_noresume(&func->dev);
297
Teemu Paasikivi3b56dd62010-03-18 12:26:46 +0200298 wl1271_unregister_hw(wl);
Juuso Oikarinen4e23b112010-08-13 04:46:48 +0200299 free_irq(wl->irq, wl);
Teemu Paasikivi801a6732010-03-18 12:26:42 +0200300 wl1271_free_hw(wl);
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200301}
302
Ohad Ben-Cohen674f3052010-10-08 16:16:27 +0300303static int wl1271_suspend(struct device *dev)
304{
305 /* Tell MMC/SDIO core it's OK to power down the card
306 * (if it isn't already), but not to remove it completely */
307 return 0;
308}
309
310static int wl1271_resume(struct device *dev)
311{
312 return 0;
313}
314
315static const struct dev_pm_ops wl1271_sdio_pm_ops = {
316 .suspend = wl1271_suspend,
317 .resume = wl1271_resume,
318};
319
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200320static struct sdio_driver wl1271_sdio_driver = {
Luciano Coelhof4b5d8d2010-04-01 11:38:17 +0300321 .name = "wl1271_sdio",
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200322 .id_table = wl1271_devices,
323 .probe = wl1271_probe,
324 .remove = __devexit_p(wl1271_remove),
Ohad Ben-Cohen674f3052010-10-08 16:16:27 +0300325 .drv = {
326 .pm = &wl1271_sdio_pm_ops,
327 },
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200328};
329
330static int __init wl1271_init(void)
331{
332 int ret;
333
334 ret = sdio_register_driver(&wl1271_sdio_driver);
335 if (ret < 0) {
336 wl1271_error("failed to register sdio driver: %d", ret);
337 goto out;
338 }
339
340out:
341 return ret;
342}
343
344static void __exit wl1271_exit(void)
345{
346 sdio_unregister_driver(&wl1271_sdio_driver);
347
348 wl1271_notice("unloaded");
349}
350
351module_init(wl1271_init);
352module_exit(wl1271_exit);
353
354MODULE_LICENSE("GPL");
Luciano Coelho5245e3a2011-03-30 21:31:39 +0300355MODULE_AUTHOR("Luciano Coelho <coelho@ti.com>");
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200356MODULE_AUTHOR("Juuso Oikarinen <juuso.oikarinen@nokia.com>");
357MODULE_FIRMWARE(WL1271_FW_NAME);
Shahar Levi5aa42342011-03-06 16:32:07 +0200358MODULE_FIRMWARE(WL128X_FW_NAME);
Arik Nemtsov1aed55f2011-03-06 16:32:18 +0200359MODULE_FIRMWARE(WL127X_AP_FW_NAME);
360MODULE_FIRMWARE(WL128X_AP_FW_NAME);