blob: 22c1337ba883600ac65b94aaf36b42a09eaf8852 [file] [log] [blame]
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001/*
2 * This file is part of wl1271
3 *
4 * Copyright (C) 2008-2009 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
Alexey Dobriyana6b7a402011-06-06 10:43:46 +000024#include <linux/interrupt.h>
Teemu Paasikivi2d5e82b2010-02-22 08:38:21 +020025#include <linux/irq.h>
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030026#include <linux/module.h>
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030027#include <linux/crc7.h>
28#include <linux/spi/spi.h>
Ohad Ben-Cohenc1f9a092010-09-16 13:16:02 +020029#include <linux/wl12xx.h>
Felipe Balbi0969d672011-10-05 09:29:13 +030030#include <linux/platform_device.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090031#include <linux/slab.h>
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030032
Shahar Levi00d20102010-11-08 11:20:10 +000033#include "wl12xx.h"
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030034#include "wl12xx_80211.h"
Shahar Levi00d20102010-11-08 11:20:10 +000035#include "io.h"
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030036
Shahar Levi00d20102010-11-08 11:20:10 +000037#include "reg.h"
Teemu Paasikivi760d9692010-02-22 08:38:25 +020038
39#define WSPI_CMD_READ 0x40000000
40#define WSPI_CMD_WRITE 0x00000000
41#define WSPI_CMD_FIXED 0x20000000
42#define WSPI_CMD_BYTE_LENGTH 0x1FFE0000
43#define WSPI_CMD_BYTE_LENGTH_OFFSET 17
44#define WSPI_CMD_BYTE_ADDR 0x0001FFFF
45
46#define WSPI_INIT_CMD_CRC_LEN 5
47
48#define WSPI_INIT_CMD_START 0x00
49#define WSPI_INIT_CMD_TX 0x40
50/* the extra bypass bit is sampled by the TNET as '1' */
51#define WSPI_INIT_CMD_BYPASS_BIT 0x80
52#define WSPI_INIT_CMD_FIXEDBUSY_LEN 0x07
53#define WSPI_INIT_CMD_EN_FIXEDBUSY 0x80
54#define WSPI_INIT_CMD_DIS_FIXEDBUSY 0x00
55#define WSPI_INIT_CMD_IOD 0x40
56#define WSPI_INIT_CMD_IP 0x20
57#define WSPI_INIT_CMD_CS 0x10
58#define WSPI_INIT_CMD_WS 0x08
59#define WSPI_INIT_CMD_WSPI 0x01
60#define WSPI_INIT_CMD_END 0x01
61
62#define WSPI_INIT_CMD_LEN 8
63
64#define HW_ACCESS_WSPI_FIXED_BUSY_LEN \
65 ((WL1271_BUSY_WORD_LEN - 4) / sizeof(u32))
66#define HW_ACCESS_WSPI_INIT_CMD_MASK 0
67
Ido Yariv5c57a902010-09-30 13:28:26 +020068/* HW limitation: maximum possible chunk size is 4095 bytes */
69#define WSPI_MAX_CHUNK_SIZE 4092
70
71#define WSPI_MAX_NUM_OF_CHUNKS (WL1271_AGGR_BUFFER_SIZE / WSPI_MAX_CHUNK_SIZE)
72
Felipe Balbib65019f2011-10-04 23:36:47 +030073struct wl12xx_spi_glue {
74 struct device *dev;
Felipe Balbi0969d672011-10-05 09:29:13 +030075 struct platform_device *core;
Felipe Balbib65019f2011-10-04 23:36:47 +030076};
77
Felipe Balbia390e852011-10-06 10:07:44 +030078static void wl12xx_spi_reset(struct device *child)
Teemu Paasikivi8197b712010-02-22 08:38:23 +020079{
Felipe Balbia390e852011-10-06 10:07:44 +030080 struct wl12xx_spi_glue *glue = dev_get_drvdata(child->parent);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030081 u8 *cmd;
82 struct spi_transfer t;
83 struct spi_message m;
84
85 cmd = kzalloc(WSPI_INIT_CMD_LEN, GFP_KERNEL);
86 if (!cmd) {
87 wl1271_error("could not allocate cmd for spi reset");
88 return;
89 }
90
91 memset(&t, 0, sizeof(t));
92 spi_message_init(&m);
93
94 memset(cmd, 0xff, WSPI_INIT_CMD_LEN);
95
96 t.tx_buf = cmd;
97 t.len = WSPI_INIT_CMD_LEN;
98 spi_message_add_tail(&t, &m);
99
Felipe Balbib65019f2011-10-04 23:36:47 +0300100 spi_sync(to_spi_device(glue->dev), &m);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300101
102 wl1271_dump(DEBUG_SPI, "spi reset -> ", cmd, WSPI_INIT_CMD_LEN);
Dan Carpenter0dd38662010-12-21 07:00:13 +0300103 kfree(cmd);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300104}
105
Felipe Balbia390e852011-10-06 10:07:44 +0300106static void wl12xx_spi_init(struct device *child)
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300107{
Felipe Balbia390e852011-10-06 10:07:44 +0300108 struct wl12xx_spi_glue *glue = dev_get_drvdata(child->parent);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300109 u8 crc[WSPI_INIT_CMD_CRC_LEN], *cmd;
110 struct spi_transfer t;
111 struct spi_message m;
112
113 cmd = kzalloc(WSPI_INIT_CMD_LEN, GFP_KERNEL);
114 if (!cmd) {
115 wl1271_error("could not allocate cmd for spi init");
116 return;
117 }
118
119 memset(crc, 0, sizeof(crc));
120 memset(&t, 0, sizeof(t));
121 spi_message_init(&m);
122
123 /*
124 * Set WSPI_INIT_COMMAND
125 * the data is being send from the MSB to LSB
126 */
127 cmd[2] = 0xff;
128 cmd[3] = 0xff;
129 cmd[1] = WSPI_INIT_CMD_START | WSPI_INIT_CMD_TX;
130 cmd[0] = 0;
131 cmd[7] = 0;
132 cmd[6] |= HW_ACCESS_WSPI_INIT_CMD_MASK << 3;
133 cmd[6] |= HW_ACCESS_WSPI_FIXED_BUSY_LEN & WSPI_INIT_CMD_FIXEDBUSY_LEN;
134
135 if (HW_ACCESS_WSPI_FIXED_BUSY_LEN == 0)
136 cmd[5] |= WSPI_INIT_CMD_DIS_FIXEDBUSY;
137 else
138 cmd[5] |= WSPI_INIT_CMD_EN_FIXEDBUSY;
139
140 cmd[5] |= WSPI_INIT_CMD_IOD | WSPI_INIT_CMD_IP | WSPI_INIT_CMD_CS
141 | WSPI_INIT_CMD_WSPI | WSPI_INIT_CMD_WS;
142
143 crc[0] = cmd[1];
144 crc[1] = cmd[0];
145 crc[2] = cmd[7];
146 crc[3] = cmd[6];
147 crc[4] = cmd[5];
148
149 cmd[4] |= crc7(0, crc, WSPI_INIT_CMD_CRC_LEN) << 1;
150 cmd[4] |= WSPI_INIT_CMD_END;
151
152 t.tx_buf = cmd;
153 t.len = WSPI_INIT_CMD_LEN;
154 spi_message_add_tail(&t, &m);
155
Felipe Balbib65019f2011-10-04 23:36:47 +0300156 spi_sync(to_spi_device(glue->dev), &m);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300157 wl1271_dump(DEBUG_SPI, "spi init -> ", cmd, WSPI_INIT_CMD_LEN);
Kulikov Vasiliybb123612010-07-31 20:33:59 +0400158 kfree(cmd);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300159}
160
Juuso Oikarinen545f1da2009-10-08 21:56:23 +0300161#define WL1271_BUSY_WORD_TIMEOUT 1000
162
Felipe Balbia390e852011-10-06 10:07:44 +0300163static int wl12xx_spi_read_busy(struct device *child)
Juuso Oikarinen545f1da2009-10-08 21:56:23 +0300164{
Felipe Balbia390e852011-10-06 10:07:44 +0300165 struct wl12xx_spi_glue *glue = dev_get_drvdata(child->parent);
166 struct wl1271 *wl = dev_get_drvdata(child);
Juuso Oikarinen545f1da2009-10-08 21:56:23 +0300167 struct spi_transfer t[1];
168 struct spi_message m;
169 u32 *busy_buf;
170 int num_busy_bytes = 0;
171
Juuso Oikarinen545f1da2009-10-08 21:56:23 +0300172 /*
173 * Read further busy words from SPI until a non-busy word is
174 * encountered, then read the data itself into the buffer.
175 */
Juuso Oikarinen545f1da2009-10-08 21:56:23 +0300176
177 num_busy_bytes = WL1271_BUSY_WORD_TIMEOUT;
178 busy_buf = wl->buffer_busyword;
179 while (num_busy_bytes) {
180 num_busy_bytes--;
181 spi_message_init(&m);
182 memset(t, 0, sizeof(t));
183 t[0].rx_buf = busy_buf;
184 t[0].len = sizeof(u32);
Juuso Oikarinen259da432010-03-26 12:53:18 +0200185 t[0].cs_change = true;
Juuso Oikarinen545f1da2009-10-08 21:56:23 +0300186 spi_message_add_tail(&t[0], &m);
Felipe Balbib65019f2011-10-04 23:36:47 +0300187 spi_sync(to_spi_device(glue->dev), &m);
Juuso Oikarinen545f1da2009-10-08 21:56:23 +0300188
Juuso Oikarinen259da432010-03-26 12:53:18 +0200189 if (*busy_buf & 0x1)
190 return 0;
Juuso Oikarinen545f1da2009-10-08 21:56:23 +0300191 }
192
193 /* The SPI bus is unresponsive, the read failed. */
Juuso Oikarinen545f1da2009-10-08 21:56:23 +0300194 wl1271_error("SPI read busy-word timeout!\n");
Juuso Oikarinen259da432010-03-26 12:53:18 +0200195 return -ETIMEDOUT;
Juuso Oikarinen545f1da2009-10-08 21:56:23 +0300196}
197
Felipe Balbia390e852011-10-06 10:07:44 +0300198static void wl12xx_spi_raw_read(struct device *child, int addr, void *buf,
Juuso Oikarinen259da432010-03-26 12:53:18 +0200199 size_t len, bool fixed)
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300200{
Felipe Balbia390e852011-10-06 10:07:44 +0300201 struct wl12xx_spi_glue *glue = dev_get_drvdata(child->parent);
202 struct wl1271 *wl = dev_get_drvdata(child);
Ido Yariv5c57a902010-09-30 13:28:26 +0200203 struct spi_transfer t[2];
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300204 struct spi_message m;
Juuso Oikarinen545f1da2009-10-08 21:56:23 +0300205 u32 *busy_buf;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300206 u32 *cmd;
Ido Yariv5c57a902010-09-30 13:28:26 +0200207 u32 chunk_len;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300208
Ido Yariv5c57a902010-09-30 13:28:26 +0200209 while (len > 0) {
210 chunk_len = min((size_t)WSPI_MAX_CHUNK_SIZE, len);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300211
Ido Yariv5c57a902010-09-30 13:28:26 +0200212 cmd = &wl->buffer_cmd;
213 busy_buf = wl->buffer_busyword;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300214
Ido Yariv5c57a902010-09-30 13:28:26 +0200215 *cmd = 0;
216 *cmd |= WSPI_CMD_READ;
217 *cmd |= (chunk_len << WSPI_CMD_BYTE_LENGTH_OFFSET) &
218 WSPI_CMD_BYTE_LENGTH;
219 *cmd |= addr & WSPI_CMD_BYTE_ADDR;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300220
Ido Yariv5c57a902010-09-30 13:28:26 +0200221 if (fixed)
222 *cmd |= WSPI_CMD_FIXED;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300223
Ido Yariv5c57a902010-09-30 13:28:26 +0200224 spi_message_init(&m);
225 memset(t, 0, sizeof(t));
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300226
Ido Yariv5c57a902010-09-30 13:28:26 +0200227 t[0].tx_buf = cmd;
228 t[0].len = 4;
229 t[0].cs_change = true;
230 spi_message_add_tail(&t[0], &m);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300231
Ido Yariv5c57a902010-09-30 13:28:26 +0200232 /* Busy and non busy words read */
233 t[1].rx_buf = busy_buf;
234 t[1].len = WL1271_BUSY_WORD_LEN;
235 t[1].cs_change = true;
236 spi_message_add_tail(&t[1], &m);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300237
Felipe Balbib65019f2011-10-04 23:36:47 +0300238 spi_sync(to_spi_device(glue->dev), &m);
Ido Yariv5c57a902010-09-30 13:28:26 +0200239
240 if (!(busy_buf[WL1271_BUSY_WORD_CNT - 1] & 0x1) &&
Felipe Balbia390e852011-10-06 10:07:44 +0300241 wl12xx_spi_read_busy(child)) {
Ido Yariv5c57a902010-09-30 13:28:26 +0200242 memset(buf, 0, chunk_len);
243 return;
244 }
245
246 spi_message_init(&m);
247 memset(t, 0, sizeof(t));
248
249 t[0].rx_buf = buf;
250 t[0].len = chunk_len;
251 t[0].cs_change = true;
252 spi_message_add_tail(&t[0], &m);
253
Felipe Balbib65019f2011-10-04 23:36:47 +0300254 spi_sync(to_spi_device(glue->dev), &m);
Ido Yariv5c57a902010-09-30 13:28:26 +0200255
256 wl1271_dump(DEBUG_SPI, "spi_read cmd -> ", cmd, sizeof(*cmd));
257 wl1271_dump(DEBUG_SPI, "spi_read buf <- ", buf, chunk_len);
258
259 if (!fixed)
260 addr += chunk_len;
261 buf += chunk_len;
262 len -= chunk_len;
Juuso Oikarinen259da432010-03-26 12:53:18 +0200263 }
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300264}
265
Felipe Balbia390e852011-10-06 10:07:44 +0300266static void wl12xx_spi_raw_write(struct device *child, int addr, void *buf,
267 size_t len, bool fixed)
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300268{
Felipe Balbia390e852011-10-06 10:07:44 +0300269 struct wl12xx_spi_glue *glue = dev_get_drvdata(child->parent);
Ido Yariv5c57a902010-09-30 13:28:26 +0200270 struct spi_transfer t[2 * WSPI_MAX_NUM_OF_CHUNKS];
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300271 struct spi_message m;
Ido Yariv5c57a902010-09-30 13:28:26 +0200272 u32 commands[WSPI_MAX_NUM_OF_CHUNKS];
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300273 u32 *cmd;
Ido Yariv5c57a902010-09-30 13:28:26 +0200274 u32 chunk_len;
275 int i;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300276
Ido Yariv5c57a902010-09-30 13:28:26 +0200277 WARN_ON(len > WL1271_AGGR_BUFFER_SIZE);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300278
279 spi_message_init(&m);
280 memset(t, 0, sizeof(t));
281
Ido Yariv5c57a902010-09-30 13:28:26 +0200282 cmd = &commands[0];
283 i = 0;
284 while (len > 0) {
285 chunk_len = min((size_t)WSPI_MAX_CHUNK_SIZE, len);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300286
Ido Yariv5c57a902010-09-30 13:28:26 +0200287 *cmd = 0;
288 *cmd |= WSPI_CMD_WRITE;
289 *cmd |= (chunk_len << WSPI_CMD_BYTE_LENGTH_OFFSET) &
290 WSPI_CMD_BYTE_LENGTH;
291 *cmd |= addr & WSPI_CMD_BYTE_ADDR;
292
293 if (fixed)
294 *cmd |= WSPI_CMD_FIXED;
295
296 t[i].tx_buf = cmd;
297 t[i].len = sizeof(*cmd);
298 spi_message_add_tail(&t[i++], &m);
299
300 t[i].tx_buf = buf;
301 t[i].len = chunk_len;
302 spi_message_add_tail(&t[i++], &m);
303
304 wl1271_dump(DEBUG_SPI, "spi_write cmd -> ", cmd, sizeof(*cmd));
305 wl1271_dump(DEBUG_SPI, "spi_write buf -> ", buf, chunk_len);
306
307 if (!fixed)
308 addr += chunk_len;
309 buf += chunk_len;
310 len -= chunk_len;
311 cmd++;
312 }
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300313
Felipe Balbib65019f2011-10-04 23:36:47 +0300314 spi_sync(to_spi_device(glue->dev), &m);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300315}
Teemu Paasikivi2d5e82b2010-02-22 08:38:21 +0200316
Teemu Paasikivi8197b712010-02-22 08:38:23 +0200317static struct wl1271_if_operations spi_ops = {
Felipe Balbia390e852011-10-06 10:07:44 +0300318 .read = wl12xx_spi_raw_read,
319 .write = wl12xx_spi_raw_write,
320 .reset = wl12xx_spi_reset,
321 .init = wl12xx_spi_init,
Luciano Coelhoa81159e2011-03-14 14:05:13 +0200322 .set_block_size = NULL,
Teemu Paasikivi8197b712010-02-22 08:38:23 +0200323};
324
Teemu Paasikivi2d5e82b2010-02-22 08:38:21 +0200325static int __devinit wl1271_probe(struct spi_device *spi)
326{
Felipe Balbib65019f2011-10-04 23:36:47 +0300327 struct wl12xx_spi_glue *glue;
Teemu Paasikivi2d5e82b2010-02-22 08:38:21 +0200328 struct wl12xx_platform_data *pdata;
Felipe Balbi0969d672011-10-05 09:29:13 +0300329 struct resource res[1];
Felipe Balbib65019f2011-10-04 23:36:47 +0300330 int ret = -ENOMEM;
Teemu Paasikivi2d5e82b2010-02-22 08:38:21 +0200331
332 pdata = spi->dev.platform_data;
333 if (!pdata) {
334 wl1271_error("no platform data");
335 return -ENODEV;
336 }
337
Felipe Balbia390e852011-10-06 10:07:44 +0300338 pdata->ops = &spi_ops;
339
Felipe Balbib65019f2011-10-04 23:36:47 +0300340 glue = kzalloc(sizeof(*glue), GFP_KERNEL);
341 if (!glue) {
342 wl1271_error("can't allocate glue");
343 goto out;
344 }
345
Felipe Balbib65019f2011-10-04 23:36:47 +0300346 glue->dev = &spi->dev;
Felipe Balbib65019f2011-10-04 23:36:47 +0300347
348 spi_set_drvdata(spi, glue);
Teemu Paasikivi2d5e82b2010-02-22 08:38:21 +0200349
350 /* This is the only SPI value that we need to set here, the rest
351 * comes from the board-peripherals file */
352 spi->bits_per_word = 32;
353
354 ret = spi_setup(spi);
355 if (ret < 0) {
356 wl1271_error("spi_setup failed");
Felipe Balbia390e852011-10-06 10:07:44 +0300357 goto out_free_glue;
Teemu Paasikivi2d5e82b2010-02-22 08:38:21 +0200358 }
359
Felipe Balbi0969d672011-10-05 09:29:13 +0300360 glue->core = platform_device_alloc("wl12xx-spi", -1);
361 if (!glue->core) {
362 wl1271_error("can't allocate platform_device");
363 ret = -ENOMEM;
Felipe Balbia390e852011-10-06 10:07:44 +0300364 goto out_free_glue;
Felipe Balbi0969d672011-10-05 09:29:13 +0300365 }
366
367 glue->core->dev.parent = &spi->dev;
368
369 memset(res, 0x00, sizeof(res));
370
371 res[0].start = spi->irq;
372 res[0].flags = IORESOURCE_IRQ;
373 res[0].name = "irq";
374
375 ret = platform_device_add_resources(glue->core, res, ARRAY_SIZE(res));
376 if (ret) {
377 wl1271_error("can't add resources");
378 goto out_dev_put;
379 }
380
381 ret = platform_device_add_data(glue->core, pdata, sizeof(*pdata));
382 if (ret) {
383 wl1271_error("can't add platform data");
384 goto out_dev_put;
385 }
386
387 ret = platform_device_add(glue->core);
388 if (ret) {
389 wl1271_error("can't register platform device");
390 goto out_dev_put;
391 }
392
Teemu Paasikivi2d5e82b2010-02-22 08:38:21 +0200393 return 0;
394
Felipe Balbi0969d672011-10-05 09:29:13 +0300395out_dev_put:
396 platform_device_put(glue->core);
397
Felipe Balbib65019f2011-10-04 23:36:47 +0300398out_free_glue:
399 kfree(glue);
400out:
Teemu Paasikivi2d5e82b2010-02-22 08:38:21 +0200401 return ret;
402}
403
404static int __devexit wl1271_remove(struct spi_device *spi)
405{
Felipe Balbib65019f2011-10-04 23:36:47 +0300406 struct wl12xx_spi_glue *glue = spi_get_drvdata(spi);
Teemu Paasikivi2d5e82b2010-02-22 08:38:21 +0200407
Felipe Balbi0969d672011-10-05 09:29:13 +0300408 platform_device_del(glue->core);
409 platform_device_put(glue->core);
Felipe Balbib65019f2011-10-04 23:36:47 +0300410 kfree(glue);
Teemu Paasikivi2d5e82b2010-02-22 08:38:21 +0200411
412 return 0;
413}
414
415
416static struct spi_driver wl1271_spi_driver = {
417 .driver = {
Luciano Coelho7fdd50d2010-03-26 12:53:10 +0200418 .name = "wl1271_spi",
Teemu Paasikivi2d5e82b2010-02-22 08:38:21 +0200419 .bus = &spi_bus_type,
420 .owner = THIS_MODULE,
421 },
422
423 .probe = wl1271_probe,
424 .remove = __devexit_p(wl1271_remove),
425};
426
427static int __init wl1271_init(void)
428{
Felipe Balbiba2274c2011-05-14 00:26:23 +0300429 return spi_register_driver(&wl1271_spi_driver);
Teemu Paasikivi2d5e82b2010-02-22 08:38:21 +0200430}
431
432static void __exit wl1271_exit(void)
433{
434 spi_unregister_driver(&wl1271_spi_driver);
Teemu Paasikivi2d5e82b2010-02-22 08:38:21 +0200435}
436
437module_init(wl1271_init);
438module_exit(wl1271_exit);
439
440MODULE_LICENSE("GPL");
Luciano Coelho5245e3a2011-03-30 21:31:39 +0300441MODULE_AUTHOR("Luciano Coelho <coelho@ti.com>");
Teemu Paasikivi2d5e82b2010-02-22 08:38:21 +0200442MODULE_AUTHOR("Juuso Oikarinen <juuso.oikarinen@nokia.com>");
Arik Nemtsovc302b2c2011-08-17 10:45:48 +0300443MODULE_FIRMWARE(WL127X_FW_NAME);
Shahar Levi5aa42342011-03-06 16:32:07 +0200444MODULE_FIRMWARE(WL128X_FW_NAME);
Ameya Palandef148cfd2010-07-05 17:12:38 +0300445MODULE_ALIAS("spi:wl1271");