blob: 099c2c9c1a2db3db3bcffd9826784c47c97997ff [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>
Teemu Paasikivi5129dff2010-02-22 08:38:27 +020026#include <linux/vmalloc.h>
Felipe Balbi025aef82011-10-05 09:00:12 +030027#include <linux/platform_device.h>
Teemu Paasikivi5129dff2010-02-22 08:38:27 +020028#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
Felipe Balbifbe936b2011-10-04 23:10:28 +030048struct wl12xx_sdio_glue {
49 struct device *dev;
Felipe Balbi025aef82011-10-05 09:00:12 +030050 struct platform_device *core;
Felipe Balbifbe936b2011-10-04 23:10:28 +030051};
52
Felipe Balbi33dd74c2011-05-14 00:26:18 +030053static const struct sdio_device_id wl1271_devices[] __devinitconst = {
Teemu Paasikivi5129dff2010-02-22 08:38:27 +020054 { SDIO_DEVICE(SDIO_VENDOR_ID_TI, SDIO_DEVICE_ID_TI_WL1271) },
55 {}
56};
57MODULE_DEVICE_TABLE(sdio, wl1271_devices);
58
Felipe Balbia390e852011-10-06 10:07:44 +030059static void wl1271_sdio_set_block_size(struct device *child,
60 unsigned int blksz)
Luciano Coelhoa81159e2011-03-14 14:05:13 +020061{
Felipe Balbia390e852011-10-06 10:07:44 +030062 struct wl12xx_sdio_glue *glue = dev_get_drvdata(child->parent);
63 struct sdio_func *func = dev_to_sdio_func(glue->dev);
64
65 sdio_claim_host(func);
66 sdio_set_block_size(func, blksz);
67 sdio_release_host(func);
Luciano Coelhoa81159e2011-03-14 14:05:13 +020068}
69
Felipe Balbia390e852011-10-06 10:07:44 +030070static void wl12xx_sdio_raw_read(struct device *child, int addr, void *buf,
Teemu Paasikivia3b8ea72010-03-18 12:26:41 +020071 size_t len, bool fixed)
Teemu Paasikivi5129dff2010-02-22 08:38:27 +020072{
73 int ret;
Felipe Balbia390e852011-10-06 10:07:44 +030074 struct wl12xx_sdio_glue *glue = dev_get_drvdata(child->parent);
Felipe Balbifbe936b2011-10-04 23:10:28 +030075 struct sdio_func *func = dev_to_sdio_func(glue->dev);
Teemu Paasikivi5129dff2010-02-22 08:38:27 +020076
Eliad Pellerb4748302012-01-26 14:12:31 +020077 sdio_claim_host(func);
78
Teemu Paasikivi5129dff2010-02-22 08:38:27 +020079 if (unlikely(addr == HW_ACCESS_ELP_CTRL_REG_ADDR)) {
80 ((u8 *)buf)[0] = sdio_f0_readb(func, addr, &ret);
Luciano Coelho3c4d3862011-10-07 14:14:25 +030081 dev_dbg(child->parent, "sdio read 52 addr 0x%x, byte 0x%02x\n",
82 addr, ((u8 *)buf)[0]);
Teemu Paasikivi5129dff2010-02-22 08:38:27 +020083 } else {
84 if (fixed)
85 ret = sdio_readsb(func, buf, addr, len);
86 else
87 ret = sdio_memcpy_fromio(func, buf, addr, len);
88
Luciano Coelho3c4d3862011-10-07 14:14:25 +030089 dev_dbg(child->parent, "sdio read 53 addr 0x%x, %zu bytes\n",
90 addr, len);
Teemu Paasikivi5129dff2010-02-22 08:38:27 +020091 }
92
Eliad Pellerb4748302012-01-26 14:12:31 +020093 sdio_release_host(func);
94
Teemu Paasikivi5129dff2010-02-22 08:38:27 +020095 if (ret)
Luciano Coelho3c4d3862011-10-07 14:14:25 +030096 dev_err(child->parent, "sdio read failed (%d)\n", ret);
Teemu Paasikivi5129dff2010-02-22 08:38:27 +020097}
98
Felipe Balbia390e852011-10-06 10:07:44 +030099static void wl12xx_sdio_raw_write(struct device *child, int addr, void *buf,
Teemu Paasikivia3b8ea72010-03-18 12:26:41 +0200100 size_t len, bool fixed)
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200101{
102 int ret;
Felipe Balbia390e852011-10-06 10:07:44 +0300103 struct wl12xx_sdio_glue *glue = dev_get_drvdata(child->parent);
Felipe Balbifbe936b2011-10-04 23:10:28 +0300104 struct sdio_func *func = dev_to_sdio_func(glue->dev);
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200105
Eliad Pellerb4748302012-01-26 14:12:31 +0200106 sdio_claim_host(func);
107
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200108 if (unlikely(addr == HW_ACCESS_ELP_CTRL_REG_ADDR)) {
109 sdio_f0_writeb(func, ((u8 *)buf)[0], addr, &ret);
Luciano Coelho3c4d3862011-10-07 14:14:25 +0300110 dev_dbg(child->parent, "sdio write 52 addr 0x%x, byte 0x%02x\n",
111 addr, ((u8 *)buf)[0]);
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200112 } else {
Luciano Coelho3c4d3862011-10-07 14:14:25 +0300113 dev_dbg(child->parent, "sdio write 53 addr 0x%x, %zu bytes\n",
114 addr, len);
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200115
116 if (fixed)
117 ret = sdio_writesb(func, addr, buf, len);
118 else
119 ret = sdio_memcpy_toio(func, addr, buf, len);
120 }
Ohad Ben-Cohen49063a02010-09-07 04:24:21 +0300121
Eliad Pellerb4748302012-01-26 14:12:31 +0200122 sdio_release_host(func);
123
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200124 if (ret)
Luciano Coelho3c4d3862011-10-07 14:14:25 +0300125 dev_err(child->parent, "sdio write failed (%d)\n", ret);
Ohad Ben-Cohen49063a02010-09-07 04:24:21 +0300126}
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200127
Felipe Balbia390e852011-10-06 10:07:44 +0300128static int wl12xx_sdio_power_on(struct wl12xx_sdio_glue *glue)
Ohad Ben-Cohen49063a02010-09-07 04:24:21 +0300129{
Ohad Ben-Cohen00cbb3c2010-10-08 16:16:16 +0300130 int ret;
Felipe Balbifbe936b2011-10-04 23:10:28 +0300131 struct sdio_func *func = dev_to_sdio_func(glue->dev);
Ohad Ben-Cohen00cbb3c2010-10-08 16:16:16 +0300132
Ohad Ben-Cohen86046da2011-05-29 16:36:03 +0300133 /* If enabled, tell runtime PM not to power off the card */
134 if (pm_runtime_enabled(&func->dev)) {
135 ret = pm_runtime_get_sync(&func->dev);
Ido Yariva15f1c42011-08-22 23:19:49 +0300136 if (ret < 0)
Ohad Ben-Cohen86046da2011-05-29 16:36:03 +0300137 goto out;
Ohad Ben-Cohenb5d6e5f2011-06-26 18:00:11 +0300138 } else {
139 /* Runtime PM is disabled: power up the card manually */
140 ret = mmc_power_restore_host(func->card->host);
141 if (ret < 0)
142 goto out;
Ohad Ben-Cohen86046da2011-05-29 16:36:03 +0300143 }
Ohad Ben-Cohen49063a02010-09-07 04:24:21 +0300144
145 sdio_claim_host(func);
146 sdio_enable_func(func);
Eliad Pellerb4748302012-01-26 14:12:31 +0200147 sdio_release_host(func);
Ohad Ben-Cohen2cc78ff2010-09-16 01:22:04 +0200148
Ohad Ben-Cohen00cbb3c2010-10-08 16:16:16 +0300149out:
150 return ret;
Ohad Ben-Cohen49063a02010-09-07 04:24:21 +0300151}
152
Felipe Balbia390e852011-10-06 10:07:44 +0300153static int wl12xx_sdio_power_off(struct wl12xx_sdio_glue *glue)
Ohad Ben-Cohen49063a02010-09-07 04:24:21 +0300154{
Ido Yariv11251e72011-02-28 00:13:58 +0200155 int ret;
Felipe Balbifbe936b2011-10-04 23:10:28 +0300156 struct sdio_func *func = dev_to_sdio_func(glue->dev);
Ohad Ben-Cohen49063a02010-09-07 04:24:21 +0300157
Eliad Pellerb4748302012-01-26 14:12:31 +0200158 sdio_claim_host(func);
Ohad Ben-Cohen49063a02010-09-07 04:24:21 +0300159 sdio_disable_func(func);
160 sdio_release_host(func);
Ohad Ben-Cohen2cc78ff2010-09-16 01:22:04 +0200161
Ohad Ben-Cohenb5d6e5f2011-06-26 18:00:11 +0300162 /* Power off the card manually, even if runtime PM is enabled. */
Ido Yariv11251e72011-02-28 00:13:58 +0200163 ret = mmc_power_save_host(func->card->host);
164 if (ret < 0)
165 return ret;
166
Ohad Ben-Cohen86046da2011-05-29 16:36:03 +0300167 /* If enabled, let runtime PM know the card is powered off */
168 if (pm_runtime_enabled(&func->dev))
169 ret = pm_runtime_put_sync(&func->dev);
170
171 return ret;
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200172}
173
Felipe Balbia390e852011-10-06 10:07:44 +0300174static int wl12xx_sdio_set_power(struct device *child, bool enable)
Teemu Paasikivibecd5512010-03-18 12:26:27 +0200175{
Felipe Balbia390e852011-10-06 10:07:44 +0300176 struct wl12xx_sdio_glue *glue = dev_get_drvdata(child->parent);
177
Ohad Ben-Cohen49063a02010-09-07 04:24:21 +0300178 if (enable)
Felipe Balbia390e852011-10-06 10:07:44 +0300179 return wl12xx_sdio_power_on(glue);
Ohad Ben-Cohen49063a02010-09-07 04:24:21 +0300180 else
Felipe Balbia390e852011-10-06 10:07:44 +0300181 return wl12xx_sdio_power_off(glue);
Teemu Paasikivibecd5512010-03-18 12:26:27 +0200182}
183
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200184static struct wl1271_if_operations sdio_ops = {
Felipe Balbia390e852011-10-06 10:07:44 +0300185 .read = wl12xx_sdio_raw_read,
186 .write = wl12xx_sdio_raw_write,
187 .power = wl12xx_sdio_set_power,
Luciano Coelhoa81159e2011-03-14 14:05:13 +0200188 .set_block_size = wl1271_sdio_set_block_size,
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200189};
190
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200191static int __devinit wl1271_probe(struct sdio_func *func,
192 const struct sdio_device_id *id)
193{
Felipe Balbia390e852011-10-06 10:07:44 +0300194 struct wl12xx_platform_data *wlan_data;
Felipe Balbifbe936b2011-10-04 23:10:28 +0300195 struct wl12xx_sdio_glue *glue;
Felipe Balbi025aef82011-10-05 09:00:12 +0300196 struct resource res[1];
Eliad Pellerf795ea82011-05-13 11:57:12 +0300197 mmc_pm_flag_t mmcflags;
Felipe Balbifbe936b2011-10-04 23:10:28 +0300198 int ret = -ENOMEM;
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200199
200 /* We are only able to handle the wlan function */
201 if (func->num != 0x02)
202 return -ENODEV;
203
Felipe Balbifbe936b2011-10-04 23:10:28 +0300204 glue = kzalloc(sizeof(*glue), GFP_KERNEL);
205 if (!glue) {
Luciano Coelho3c4d3862011-10-07 14:14:25 +0300206 dev_err(&func->dev, "can't allocate glue\n");
Felipe Balbifbe936b2011-10-04 23:10:28 +0300207 goto out;
208 }
209
Felipe Balbifbe936b2011-10-04 23:10:28 +0300210 glue->dev = &func->dev;
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200211
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200212 /* Grab access to FN0 for ELP reg. */
213 func->card->quirks |= MMC_QUIRK_LENIENT_FN0;
214
Arik Nemtsov1d732e82011-03-18 14:49:57 +0200215 /* Use block mode for transferring over one block size of data */
216 func->card->quirks |= MMC_QUIRK_BLKSZ_FOR_BYTE_MODE;
217
Ohad Ben-Cohen09cecc32010-09-16 01:31:35 +0200218 wlan_data = wl12xx_get_platform_data();
219 if (IS_ERR(wlan_data)) {
220 ret = PTR_ERR(wlan_data);
Luciano Coelho3c4d3862011-10-07 14:14:25 +0300221 dev_err(glue->dev, "missing wlan platform data: %d\n", ret);
Felipe Balbia390e852011-10-06 10:07:44 +0300222 goto out_free_glue;
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200223 }
224
Felipe Balbia390e852011-10-06 10:07:44 +0300225 /* if sdio can keep power while host is suspended, enable wow */
226 mmcflags = sdio_get_host_pm_caps(func);
Luciano Coelho3c4d3862011-10-07 14:14:25 +0300227 dev_dbg(glue->dev, "sdio PM caps = 0x%x\n", mmcflags);
Ido Yariv341b7cd2011-03-31 10:07:01 +0200228
Felipe Balbia390e852011-10-06 10:07:44 +0300229 if (mmcflags & MMC_PM_KEEP_POWER)
230 wlan_data->pwr_in_suspend = true;
Ohad Ben-Cohen09cecc32010-09-16 01:31:35 +0200231
Felipe Balbia390e852011-10-06 10:07:44 +0300232 wlan_data->ops = &sdio_ops;
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200233
Felipe Balbifbe936b2011-10-04 23:10:28 +0300234 sdio_set_drvdata(func, glue);
Teemu Paasikivi49d7f6d2010-02-22 08:38:29 +0200235
Ohad Ben-Cohen00cbb3c2010-10-08 16:16:16 +0300236 /* Tell PM core that we don't need the card to be powered now */
237 pm_runtime_put_noidle(&func->dev);
238
Luciano Coelhoccb62002011-10-07 15:54:15 +0300239 glue->core = platform_device_alloc("wl12xx", -1);
Felipe Balbi025aef82011-10-05 09:00:12 +0300240 if (!glue->core) {
Luciano Coelho3c4d3862011-10-07 14:14:25 +0300241 dev_err(glue->dev, "can't allocate platform_device");
Felipe Balbi025aef82011-10-05 09:00:12 +0300242 ret = -ENOMEM;
Felipe Balbia390e852011-10-06 10:07:44 +0300243 goto out_free_glue;
Felipe Balbi025aef82011-10-05 09:00:12 +0300244 }
245
246 glue->core->dev.parent = &func->dev;
247
248 memset(res, 0x00, sizeof(res));
249
250 res[0].start = wlan_data->irq;
251 res[0].flags = IORESOURCE_IRQ;
252 res[0].name = "irq";
253
254 ret = platform_device_add_resources(glue->core, res, ARRAY_SIZE(res));
255 if (ret) {
Luciano Coelho3c4d3862011-10-07 14:14:25 +0300256 dev_err(glue->dev, "can't add resources\n");
Felipe Balbi025aef82011-10-05 09:00:12 +0300257 goto out_dev_put;
258 }
259
260 ret = platform_device_add_data(glue->core, wlan_data,
261 sizeof(*wlan_data));
262 if (ret) {
Luciano Coelho3c4d3862011-10-07 14:14:25 +0300263 dev_err(glue->dev, "can't add platform data\n");
Felipe Balbi025aef82011-10-05 09:00:12 +0300264 goto out_dev_put;
265 }
266
267 ret = platform_device_add(glue->core);
268 if (ret) {
Luciano Coelho3c4d3862011-10-07 14:14:25 +0300269 dev_err(glue->dev, "can't add platform device\n");
Felipe Balbi025aef82011-10-05 09:00:12 +0300270 goto out_dev_put;
271 }
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200272 return 0;
273
Felipe Balbi025aef82011-10-05 09:00:12 +0300274out_dev_put:
275 platform_device_put(glue->core);
276
Felipe Balbifbe936b2011-10-04 23:10:28 +0300277out_free_glue:
278 kfree(glue);
Felipe Balbia390e852011-10-06 10:07:44 +0300279
Felipe Balbifbe936b2011-10-04 23:10:28 +0300280out:
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200281 return ret;
282}
283
284static void __devexit wl1271_remove(struct sdio_func *func)
285{
Felipe Balbifbe936b2011-10-04 23:10:28 +0300286 struct wl12xx_sdio_glue *glue = sdio_get_drvdata(func);
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200287
Ohad Ben-Cohen00cbb3c2010-10-08 16:16:16 +0300288 /* Undo decrement done above in wl1271_probe */
289 pm_runtime_get_noresume(&func->dev);
290
Felipe Balbi025aef82011-10-05 09:00:12 +0300291 platform_device_del(glue->core);
292 platform_device_put(glue->core);
Felipe Balbifbe936b2011-10-04 23:10:28 +0300293 kfree(glue);
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200294}
295
Luciano Coelhof634a4e2011-05-18 16:51:26 -0400296#ifdef CONFIG_PM
Ohad Ben-Cohen674f3052010-10-08 16:16:27 +0300297static int wl1271_suspend(struct device *dev)
298{
299 /* Tell MMC/SDIO core it's OK to power down the card
300 * (if it isn't already), but not to remove it completely */
Eliad Peller039bdb12011-05-13 11:57:10 +0300301 struct sdio_func *func = dev_to_sdio_func(dev);
Eyal Shapirab6932892011-11-08 15:56:55 +0200302 struct wl12xx_sdio_glue *glue = sdio_get_drvdata(func);
303 struct wl1271 *wl = platform_get_drvdata(glue->core);
Eliad Peller039bdb12011-05-13 11:57:10 +0300304 mmc_pm_flag_t sdio_flags;
305 int ret = 0;
306
Luciano Coelho3c4d3862011-10-07 14:14:25 +0300307 dev_dbg(dev, "wl1271 suspend. wow_enabled: %d\n",
308 wl->wow_enabled);
Eliad Peller039bdb12011-05-13 11:57:10 +0300309
310 /* check whether sdio should keep power */
311 if (wl->wow_enabled) {
312 sdio_flags = sdio_get_host_pm_caps(func);
313
314 if (!(sdio_flags & MMC_PM_KEEP_POWER)) {
Luciano Coelho3c4d3862011-10-07 14:14:25 +0300315 dev_err(dev, "can't keep power while host "
316 "is suspended\n");
Eliad Peller039bdb12011-05-13 11:57:10 +0300317 ret = -EINVAL;
318 goto out;
319 }
320
321 /* keep power while host suspended */
322 ret = sdio_set_host_pm_flags(func, MMC_PM_KEEP_POWER);
323 if (ret) {
Luciano Coelho3c4d3862011-10-07 14:14:25 +0300324 dev_err(dev, "error while trying to keep power\n");
Eliad Peller039bdb12011-05-13 11:57:10 +0300325 goto out;
326 }
Eliad Pellerf44e5862011-05-13 11:57:11 +0300327
328 /* release host */
329 sdio_release_host(func);
Eliad Peller039bdb12011-05-13 11:57:10 +0300330 }
331out:
332 return ret;
Ohad Ben-Cohen674f3052010-10-08 16:16:27 +0300333}
334
335static int wl1271_resume(struct device *dev)
336{
Eliad Pellerf44e5862011-05-13 11:57:11 +0300337 struct sdio_func *func = dev_to_sdio_func(dev);
Eyal Shapirab6932892011-11-08 15:56:55 +0200338 struct wl12xx_sdio_glue *glue = sdio_get_drvdata(func);
339 struct wl1271 *wl = platform_get_drvdata(glue->core);
Eliad Pellerf44e5862011-05-13 11:57:11 +0300340
Luciano Coelho3c4d3862011-10-07 14:14:25 +0300341 dev_dbg(dev, "wl1271 resume\n");
Eliad Pellerf44e5862011-05-13 11:57:11 +0300342 if (wl->wow_enabled) {
343 /* claim back host */
344 sdio_claim_host(func);
345 }
346
Ohad Ben-Cohen674f3052010-10-08 16:16:27 +0300347 return 0;
348}
349
350static const struct dev_pm_ops wl1271_sdio_pm_ops = {
351 .suspend = wl1271_suspend,
352 .resume = wl1271_resume,
353};
Luciano Coelhof634a4e2011-05-18 16:51:26 -0400354#endif
Ohad Ben-Cohen674f3052010-10-08 16:16:27 +0300355
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200356static struct sdio_driver wl1271_sdio_driver = {
Luciano Coelhof4b5d8d2010-04-01 11:38:17 +0300357 .name = "wl1271_sdio",
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200358 .id_table = wl1271_devices,
359 .probe = wl1271_probe,
360 .remove = __devexit_p(wl1271_remove),
Luciano Coelhof634a4e2011-05-18 16:51:26 -0400361#ifdef CONFIG_PM
Ohad Ben-Cohen674f3052010-10-08 16:16:27 +0300362 .drv = {
363 .pm = &wl1271_sdio_pm_ops,
364 },
Luciano Coelhof634a4e2011-05-18 16:51:26 -0400365#endif
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200366};
367
368static int __init wl1271_init(void)
369{
Felipe Balbi6bdaf792011-05-14 00:26:20 +0300370 return sdio_register_driver(&wl1271_sdio_driver);
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200371}
372
373static void __exit wl1271_exit(void)
374{
375 sdio_unregister_driver(&wl1271_sdio_driver);
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200376}
377
378module_init(wl1271_init);
379module_exit(wl1271_exit);
380
381MODULE_LICENSE("GPL");
Luciano Coelho5245e3a2011-03-30 21:31:39 +0300382MODULE_AUTHOR("Luciano Coelho <coelho@ti.com>");
Teemu Paasikivi5129dff2010-02-22 08:38:27 +0200383MODULE_AUTHOR("Juuso Oikarinen <juuso.oikarinen@nokia.com>");
Arik Nemtsovc302b2c2011-08-17 10:45:48 +0300384MODULE_FIRMWARE(WL127X_FW_NAME);
Shahar Levi5aa42342011-03-06 16:32:07 +0200385MODULE_FIRMWARE(WL128X_FW_NAME);