[ARM] pxa: Gumstix Verdex PCMCIA support
[linux-2.6/verdex.git] / drivers / net / wireless / wl12xx / wl1251_sdio.c
blob9423f22bdcedcda262bde981d9b8da6698412179
1 /*
2 * wl12xx SDIO routines
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.
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.
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
18 * Copyright (C) 2005 Texas Instruments Incorporated
19 * Copyright (C) 2008 Google Inc
20 * Copyright (C) 2009 Bob Copeland (me@bobcopeland.com)
22 #include <linux/module.h>
23 #include <linux/crc7.h>
24 #include <linux/mod_devicetable.h>
25 #include <linux/irq.h>
26 #include <linux/mmc/sdio_func.h>
27 #include <linux/mmc/sdio_ids.h>
28 #include <linux/platform_device.h>
30 #include "wl1251.h"
31 #include "wl12xx_80211.h"
32 #include "wl1251_reg.h"
33 #include "wl1251_ps.h"
34 #include "wl1251_io.h"
35 #include "wl1251_tx.h"
36 #include "wl1251_debugfs.h"
38 #ifndef SDIO_VENDOR_ID_TI
39 #define SDIO_VENDOR_ID_TI 0x104c
40 #endif
42 #ifndef SDIO_DEVICE_ID_TI_WL1251
43 #define SDIO_DEVICE_ID_TI_WL1251 0x9066
44 #endif
46 static struct sdio_func *wl_to_func(struct wl1251 *wl)
48 return wl->if_priv;
51 static void wl1251_sdio_interrupt(struct sdio_func *func)
53 struct wl1251 *wl = sdio_get_drvdata(func);
55 wl1251_debug(DEBUG_IRQ, "IRQ");
57 /* FIXME should be synchronous for sdio */
58 ieee80211_queue_work(wl->hw, &wl->irq_work);
61 static const struct sdio_device_id wl1251_devices[] = {
62 { SDIO_DEVICE(SDIO_VENDOR_ID_TI, SDIO_DEVICE_ID_TI_WL1251) },
65 MODULE_DEVICE_TABLE(sdio, wl1251_devices);
68 void wl1251_sdio_read(struct wl1251 *wl, int addr, void *buf, size_t len)
70 int ret;
71 struct sdio_func *func = wl_to_func(wl);
73 sdio_claim_host(func);
74 ret = sdio_memcpy_fromio(func, buf, addr, len);
75 if (ret)
76 wl1251_error("sdio read failed (%d)", ret);
77 sdio_release_host(func);
80 void wl1251_sdio_write(struct wl1251 *wl, int addr, void *buf, size_t len)
82 int ret;
83 struct sdio_func *func = wl_to_func(wl);
85 sdio_claim_host(func);
86 ret = sdio_memcpy_toio(func, addr, buf, len);
87 if (ret)
88 wl1251_error("sdio write failed (%d)", ret);
89 sdio_release_host(func);
92 void wl1251_sdio_reset(struct wl1251 *wl)
96 static void wl1251_sdio_enable_irq(struct wl1251 *wl)
98 struct sdio_func *func = wl_to_func(wl);
100 sdio_claim_host(func);
101 sdio_claim_irq(func, wl1251_sdio_interrupt);
102 sdio_release_host(func);
105 static void wl1251_sdio_disable_irq(struct wl1251 *wl)
107 struct sdio_func *func = wl_to_func(wl);
109 sdio_claim_host(func);
110 sdio_release_irq(func);
111 sdio_release_host(func);
114 void wl1251_sdio_set_power(bool enable)
118 struct wl1251_if_operations wl1251_sdio_ops = {
119 .read = wl1251_sdio_read,
120 .write = wl1251_sdio_write,
121 .reset = wl1251_sdio_reset,
122 .enable_irq = wl1251_sdio_enable_irq,
123 .disable_irq = wl1251_sdio_disable_irq,
126 int wl1251_sdio_probe(struct sdio_func *func, const struct sdio_device_id *id)
128 int ret;
129 struct wl1251 *wl;
130 struct ieee80211_hw *hw;
132 hw = wl1251_alloc_hw();
133 if (IS_ERR(hw))
134 return PTR_ERR(hw);
136 wl = hw->priv;
138 sdio_claim_host(func);
139 ret = sdio_enable_func(func);
140 if (ret)
141 goto release;
143 sdio_set_block_size(func, 512);
145 SET_IEEE80211_DEV(hw, &func->dev);
146 wl->if_priv = func;
147 wl->if_ops = &wl1251_sdio_ops;
148 wl->set_power = wl1251_sdio_set_power;
150 sdio_release_host(func);
151 ret = wl1251_init_ieee80211(wl);
152 if (ret)
153 goto disable;
155 sdio_set_drvdata(func, wl);
156 return ret;
158 disable:
159 sdio_claim_host(func);
160 sdio_disable_func(func);
161 release:
162 sdio_release_host(func);
163 return ret;
166 static void __devexit wl1251_sdio_remove(struct sdio_func *func)
168 struct wl1251 *wl = sdio_get_drvdata(func);
170 wl1251_free_hw(wl);
172 sdio_claim_host(func);
173 sdio_release_irq(func);
174 sdio_disable_func(func);
175 sdio_release_host(func);
178 static struct sdio_driver wl1251_sdio_driver = {
179 .name = "wl1251_sdio",
180 .id_table = wl1251_devices,
181 .probe = wl1251_sdio_probe,
182 .remove = __devexit_p(wl1251_sdio_remove),
185 static int __init wl1251_sdio_init(void)
187 int err;
189 err = sdio_register_driver(&wl1251_sdio_driver);
190 if (err)
191 wl1251_error("failed to register sdio driver: %d", err);
192 return err;
195 static void __exit wl1251_sdio_exit(void)
197 sdio_unregister_driver(&wl1251_sdio_driver);
198 wl1251_notice("unloaded");
201 module_init(wl1251_sdio_init);
202 module_exit(wl1251_sdio_exit);
204 MODULE_LICENSE("GPL");
205 MODULE_AUTHOR("Kalle Valo <kalle.valo@nokia.com>");