blob: 38627949ff54b859d9152780455894ffa33ba110 [file] [log] [blame]
Tomas Winklerab69a5a2009-10-17 09:09:34 +00001/*
2 * iwmc3200top - Intel Wireless MultiCom 3200 Top Driver
3 * drivers/misc/iwmc3200top/main.c
4 *
5 * Copyright (C) 2009 Intel Corporation. All rights reserved.
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License version
9 * 2 as published by the Free Software Foundation.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
19 * 02110-1301, USA.
20 *
21 *
22 * Author Name: Maxim Grabarnik <maxim.grabarnink@intel.com>
23 * -
24 *
25 */
26
27#include <linux/module.h>
28#include <linux/init.h>
29#include <linux/kernel.h>
30#include <linux/debugfs.h>
31#include <linux/mmc/sdio_ids.h>
32#include <linux/mmc/sdio_func.h>
33#include <linux/mmc/sdio.h>
34
35#include "iwmc3200top.h"
36#include "log.h"
37#include "fw-msg.h"
38#include "debugfs.h"
39
40
41#define DRIVER_DESCRIPTION "Intel(R) IWMC 3200 Top Driver"
42#define DRIVER_COPYRIGHT "Copyright (c) 2008 Intel Corporation."
43
Tomas Winklercb43e232009-11-14 08:36:36 +000044#define DRIVER_VERSION "0.1.62"
Tomas Winklerab69a5a2009-10-17 09:09:34 +000045
46MODULE_DESCRIPTION(DRIVER_DESCRIPTION);
47MODULE_VERSION(DRIVER_VERSION);
48MODULE_LICENSE("GPL");
49MODULE_AUTHOR(DRIVER_COPYRIGHT);
Tomas Winkler0e481742009-11-18 23:29:57 -080050MODULE_FIRMWARE(FW_NAME(FW_API_VER));
Tomas Winklerab69a5a2009-10-17 09:09:34 +000051
Tomas Winklerab69a5a2009-10-17 09:09:34 +000052/*
53 * This workers main task is to wait for OP_OPR_ALIVE
54 * from TOP FW until ALIVE_MSG_TIMOUT timeout is elapsed.
55 * When OP_OPR_ALIVE received it will issue
56 * a call to "bus_rescan_devices".
57 */
58static void iwmct_rescan_worker(struct work_struct *ws)
59{
60 struct iwmct_priv *priv;
61 int ret;
62
63 priv = container_of(ws, struct iwmct_priv, bus_rescan_worker);
64
65 LOG_INFO(priv, FW_MSG, "Calling bus_rescan\n");
66
67 ret = bus_rescan_devices(priv->func->dev.bus);
68 if (ret < 0)
Tomas Winkler0df828f2009-12-16 04:26:25 +000069 LOG_INFO(priv, INIT, "bus_rescan_devices FAILED!!!\n");
Tomas Winklerab69a5a2009-10-17 09:09:34 +000070}
71
72static void op_top_message(struct iwmct_priv *priv, struct top_msg *msg)
73{
74 switch (msg->hdr.opcode) {
75 case OP_OPR_ALIVE:
76 LOG_INFO(priv, FW_MSG, "Got ALIVE from device, wake rescan\n");
77 queue_work(priv->bus_rescan_wq, &priv->bus_rescan_worker);
78 break;
79 default:
80 LOG_INFO(priv, FW_MSG, "Received msg opcode 0x%X\n",
81 msg->hdr.opcode);
82 break;
83 }
84}
85
86
87static void handle_top_message(struct iwmct_priv *priv, u8 *buf, int len)
88{
89 struct top_msg *msg;
90
91 msg = (struct top_msg *)buf;
92
93 if (msg->hdr.type != COMM_TYPE_D2H) {
94 LOG_ERROR(priv, FW_MSG,
95 "Message from TOP with invalid message type 0x%X\n",
96 msg->hdr.type);
97 return;
98 }
99
100 if (len < sizeof(msg->hdr)) {
101 LOG_ERROR(priv, FW_MSG,
102 "Message from TOP is too short for message header "
103 "received %d bytes, expected at least %zd bytes\n",
104 len, sizeof(msg->hdr));
105 return;
106 }
107
108 if (len < le16_to_cpu(msg->hdr.length) + sizeof(msg->hdr)) {
109 LOG_ERROR(priv, FW_MSG,
110 "Message length (%d bytes) is shorter than "
111 "in header (%d bytes)\n",
112 len, le16_to_cpu(msg->hdr.length));
113 return;
114 }
115
116 switch (msg->hdr.category) {
117 case COMM_CATEGORY_OPERATIONAL:
118 op_top_message(priv, (struct top_msg *)buf);
119 break;
120
121 case COMM_CATEGORY_DEBUG:
122 case COMM_CATEGORY_TESTABILITY:
123 case COMM_CATEGORY_DIAGNOSTICS:
124 iwmct_log_top_message(priv, buf, len);
125 break;
126
127 default:
128 LOG_ERROR(priv, FW_MSG,
129 "Message from TOP with unknown category 0x%X\n",
130 msg->hdr.category);
131 break;
132 }
133}
134
135int iwmct_send_hcmd(struct iwmct_priv *priv, u8 *cmd, u16 len)
136{
137 int ret;
138 u8 *buf;
139
Tomas Winkler0df828f2009-12-16 04:26:25 +0000140 LOG_TRACE(priv, FW_MSG, "Sending hcmd:\n");
Tomas Winklerab69a5a2009-10-17 09:09:34 +0000141
142 /* add padding to 256 for IWMC */
143 ((struct top_msg *)cmd)->hdr.flags |= CMD_FLAG_PADDING_256;
144
145 LOG_HEXDUMP(FW_MSG, cmd, len);
146
147 if (len > FW_HCMD_BLOCK_SIZE) {
148 LOG_ERROR(priv, FW_MSG, "size %d exceeded hcmd max size %d\n",
149 len, FW_HCMD_BLOCK_SIZE);
150 return -1;
151 }
152
153 buf = kzalloc(FW_HCMD_BLOCK_SIZE, GFP_KERNEL);
154 if (!buf) {
155 LOG_ERROR(priv, FW_MSG, "kzalloc error, buf size %d\n",
156 FW_HCMD_BLOCK_SIZE);
157 return -1;
158 }
159
160 memcpy(buf, cmd, len);
161
162 sdio_claim_host(priv->func);
163 ret = sdio_memcpy_toio(priv->func, IWMC_SDIO_DATA_ADDR, buf,
164 FW_HCMD_BLOCK_SIZE);
165 sdio_release_host(priv->func);
166
167 kfree(buf);
168 return ret;
169}
170
171int iwmct_tx(struct iwmct_priv *priv, unsigned int addr,
172 void *src, int count)
173{
174 int ret;
175
176 sdio_claim_host(priv->func);
177 ret = sdio_memcpy_toio(priv->func, addr, src, count);
178 sdio_release_host(priv->func);
179
180 return ret;
181}
182
183static void iwmct_irq_read_worker(struct work_struct *ws)
184{
185 struct iwmct_priv *priv;
186 struct iwmct_work_struct *read_req;
187 __le32 *buf = NULL;
188 int ret;
189 int iosize;
190 u32 barker;
191 bool is_barker;
192
193 priv = container_of(ws, struct iwmct_priv, isr_worker);
194
Tomas Winkler0df828f2009-12-16 04:26:25 +0000195 LOG_TRACE(priv, IRQ, "enter iwmct_irq_read_worker %p\n", ws);
Tomas Winklerab69a5a2009-10-17 09:09:34 +0000196
197 /* --------------------- Handshake with device -------------------- */
198 sdio_claim_host(priv->func);
199
200 /* all list manipulations have to be protected by
201 * sdio_claim_host/sdio_release_host */
202 if (list_empty(&priv->read_req_list)) {
203 LOG_ERROR(priv, IRQ, "read_req_list empty in read worker\n");
204 goto exit_release;
205 }
206
207 read_req = list_entry(priv->read_req_list.next,
208 struct iwmct_work_struct, list);
209
210 list_del(&read_req->list);
211 iosize = read_req->iosize;
212 kfree(read_req);
213
214 buf = kzalloc(iosize, GFP_KERNEL);
215 if (!buf) {
216 LOG_ERROR(priv, IRQ, "kzalloc error, buf size %d\n", iosize);
217 goto exit_release;
218 }
219
220 LOG_INFO(priv, IRQ, "iosize=%d, buf=%p, func=%d\n",
221 iosize, buf, priv->func->num);
222
223 /* read from device */
224 ret = sdio_memcpy_fromio(priv->func, buf, IWMC_SDIO_DATA_ADDR, iosize);
225 if (ret) {
226 LOG_ERROR(priv, IRQ, "error %d reading buffer\n", ret);
227 goto exit_release;
228 }
229
230 LOG_HEXDUMP(IRQ, (u8 *)buf, iosize);
231
232 barker = le32_to_cpu(buf[0]);
233
234 /* Verify whether it's a barker and if not - treat as regular Rx */
235 if (barker == IWMC_BARKER_ACK ||
236 (barker & BARKER_DNLOAD_BARKER_MSK) == IWMC_BARKER_REBOOT) {
237
238 /* Valid Barker is equal on first 4 dwords */
239 is_barker = (buf[1] == buf[0]) &&
240 (buf[2] == buf[0]) &&
241 (buf[3] == buf[0]);
242
243 if (!is_barker) {
244 LOG_WARNING(priv, IRQ,
245 "Potentially inconsistent barker "
246 "%08X_%08X_%08X_%08X\n",
247 le32_to_cpu(buf[0]), le32_to_cpu(buf[1]),
248 le32_to_cpu(buf[2]), le32_to_cpu(buf[3]));
249 }
250 } else {
251 is_barker = false;
252 }
253
254 /* Handle Top CommHub message */
255 if (!is_barker) {
256 sdio_release_host(priv->func);
257 handle_top_message(priv, (u8 *)buf, iosize);
258 goto exit;
259 } else if (barker == IWMC_BARKER_ACK) { /* Handle barkers */
260 if (atomic_read(&priv->dev_sync) == 0) {
261 LOG_ERROR(priv, IRQ,
262 "ACK barker arrived out-of-sync\n");
263 goto exit_release;
264 }
265
266 /* Continuing to FW download (after Sync is completed)*/
267 atomic_set(&priv->dev_sync, 0);
268 LOG_INFO(priv, IRQ, "ACK barker arrived "
269 "- starting FW download\n");
270 } else { /* REBOOT barker */
271 LOG_INFO(priv, IRQ, "Recieved reboot barker: %x\n", barker);
272 priv->barker = barker;
273
274 if (barker & BARKER_DNLOAD_SYNC_MSK) {
275 /* Send the same barker back */
276 ret = sdio_memcpy_toio(priv->func, IWMC_SDIO_DATA_ADDR,
277 buf, iosize);
278 if (ret) {
279 LOG_ERROR(priv, IRQ,
280 "error %d echoing barker\n", ret);
281 goto exit_release;
282 }
283 LOG_INFO(priv, IRQ, "Echoing barker to device\n");
284 atomic_set(&priv->dev_sync, 1);
285 goto exit_release;
286 }
287
288 /* Continuing to FW download (without Sync) */
289 LOG_INFO(priv, IRQ, "No sync requested "
290 "- starting FW download\n");
291 }
292
293 sdio_release_host(priv->func);
294
Tomas Winklerab69a5a2009-10-17 09:09:34 +0000295 if (priv->dbg.fw_download)
296 iwmct_fw_load(priv);
297 else
298 LOG_ERROR(priv, IRQ, "FW download not allowed\n");
299
300 goto exit;
301
302exit_release:
303 sdio_release_host(priv->func);
304exit:
305 kfree(buf);
Tomas Winkler0df828f2009-12-16 04:26:25 +0000306 LOG_TRACE(priv, IRQ, "exit iwmct_irq_read_worker\n");
Tomas Winklerab69a5a2009-10-17 09:09:34 +0000307}
308
309static void iwmct_irq(struct sdio_func *func)
310{
311 struct iwmct_priv *priv;
312 int val, ret;
313 int iosize;
314 int addr = IWMC_SDIO_INTR_GET_SIZE_ADDR;
315 struct iwmct_work_struct *read_req;
316
317 priv = sdio_get_drvdata(func);
318
Tomas Winkler0df828f2009-12-16 04:26:25 +0000319 LOG_TRACE(priv, IRQ, "enter iwmct_irq\n");
Tomas Winklerab69a5a2009-10-17 09:09:34 +0000320
321 /* read the function's status register */
322 val = sdio_readb(func, IWMC_SDIO_INTR_STATUS_ADDR, &ret);
323
Tomas Winkler0df828f2009-12-16 04:26:25 +0000324 LOG_TRACE(priv, IRQ, "iir value = %d, ret=%d\n", val, ret);
Tomas Winklerab69a5a2009-10-17 09:09:34 +0000325
326 if (!val) {
327 LOG_ERROR(priv, IRQ, "iir = 0, exiting ISR\n");
328 goto exit_clear_intr;
329 }
330
331
332 /*
333 * read 2 bytes of the transaction size
334 * IMPORTANT: sdio transaction size has to be read before clearing
335 * sdio interrupt!!!
336 */
337 val = sdio_readb(priv->func, addr++, &ret);
338 iosize = val;
339 val = sdio_readb(priv->func, addr++, &ret);
340 iosize += val << 8;
341
342 LOG_INFO(priv, IRQ, "READ size %d\n", iosize);
343
344 if (iosize == 0) {
345 LOG_ERROR(priv, IRQ, "READ size %d, exiting ISR\n", iosize);
346 goto exit_clear_intr;
347 }
348
349 /* allocate a work structure to pass iosize to the worker */
350 read_req = kzalloc(sizeof(struct iwmct_work_struct), GFP_KERNEL);
351 if (!read_req) {
352 LOG_ERROR(priv, IRQ, "failed to allocate read_req, exit ISR\n");
353 goto exit_clear_intr;
354 }
355
356 INIT_LIST_HEAD(&read_req->list);
357 read_req->iosize = iosize;
358
359 list_add_tail(&priv->read_req_list, &read_req->list);
360
361 /* clear the function's interrupt request bit (write 1 to clear) */
362 sdio_writeb(func, 1, IWMC_SDIO_INTR_CLEAR_ADDR, &ret);
363
364 queue_work(priv->wq, &priv->isr_worker);
365
Tomas Winkler0df828f2009-12-16 04:26:25 +0000366 LOG_TRACE(priv, IRQ, "exit iwmct_irq\n");
Tomas Winklerab69a5a2009-10-17 09:09:34 +0000367
368 return;
369
370exit_clear_intr:
371 /* clear the function's interrupt request bit (write 1 to clear) */
372 sdio_writeb(func, 1, IWMC_SDIO_INTR_CLEAR_ADDR, &ret);
373}
374
375
376static int blocks;
377module_param(blocks, int, 0604);
378MODULE_PARM_DESC(blocks, "max_blocks_to_send");
379
380static int dump;
381module_param(dump, bool, 0604);
382MODULE_PARM_DESC(dump, "dump_hex_content");
383
384static int jump = 1;
385module_param(jump, bool, 0604);
386
387static int direct = 1;
388module_param(direct, bool, 0604);
389
390static int checksum = 1;
391module_param(checksum, bool, 0604);
392
393static int fw_download = 1;
394module_param(fw_download, bool, 0604);
395
396static int block_size = IWMC_SDIO_BLK_SIZE;
397module_param(block_size, int, 0404);
398
399static int download_trans_blks = IWMC_DEFAULT_TR_BLK;
400module_param(download_trans_blks, int, 0604);
401
402static int rubbish_barker;
403module_param(rubbish_barker, bool, 0604);
404
405#ifdef CONFIG_IWMC3200TOP_DEBUG
406static int log_level[LOG_SRC_MAX];
407static unsigned int log_level_argc;
408module_param_array(log_level, int, &log_level_argc, 0604);
409MODULE_PARM_DESC(log_level, "log_level");
410
411static int log_level_fw[FW_LOG_SRC_MAX];
412static unsigned int log_level_fw_argc;
413module_param_array(log_level_fw, int, &log_level_fw_argc, 0604);
414MODULE_PARM_DESC(log_level_fw, "log_level_fw");
415#endif
416
417void iwmct_dbg_init_params(struct iwmct_priv *priv)
418{
419#ifdef CONFIG_IWMC3200TOP_DEBUG
420 int i;
421
422 for (i = 0; i < log_level_argc; i++) {
423 dev_notice(&priv->func->dev, "log_level[%d]=0x%X\n",
424 i, log_level[i]);
425 iwmct_log_set_filter((log_level[i] >> 8) & 0xFF,
426 log_level[i] & 0xFF);
427 }
428 for (i = 0; i < log_level_fw_argc; i++) {
429 dev_notice(&priv->func->dev, "log_level_fw[%d]=0x%X\n",
430 i, log_level_fw[i]);
431 iwmct_log_set_fw_filter((log_level_fw[i] >> 8) & 0xFF,
432 log_level_fw[i] & 0xFF);
433 }
434#endif
435
436 priv->dbg.blocks = blocks;
437 LOG_INFO(priv, INIT, "blocks=%d\n", blocks);
438 priv->dbg.dump = (bool)dump;
439 LOG_INFO(priv, INIT, "dump=%d\n", dump);
440 priv->dbg.jump = (bool)jump;
441 LOG_INFO(priv, INIT, "jump=%d\n", jump);
442 priv->dbg.direct = (bool)direct;
443 LOG_INFO(priv, INIT, "direct=%d\n", direct);
444 priv->dbg.checksum = (bool)checksum;
445 LOG_INFO(priv, INIT, "checksum=%d\n", checksum);
446 priv->dbg.fw_download = (bool)fw_download;
447 LOG_INFO(priv, INIT, "fw_download=%d\n", fw_download);
448 priv->dbg.block_size = block_size;
449 LOG_INFO(priv, INIT, "block_size=%d\n", block_size);
450 priv->dbg.download_trans_blks = download_trans_blks;
451 LOG_INFO(priv, INIT, "download_trans_blks=%d\n", download_trans_blks);
452}
453
454/*****************************************************************************
455 *
456 * sysfs attributes
457 *
458 *****************************************************************************/
459static ssize_t show_iwmct_fw_version(struct device *d,
460 struct device_attribute *attr, char *buf)
461{
462 struct iwmct_priv *priv = dev_get_drvdata(d);
463 return sprintf(buf, "%s\n", priv->dbg.label_fw);
464}
465static DEVICE_ATTR(cc_label_fw, S_IRUGO, show_iwmct_fw_version, NULL);
466
467#ifdef CONFIG_IWMC3200TOP_DEBUG
468static DEVICE_ATTR(log_level, S_IWUSR | S_IRUGO,
469 show_iwmct_log_level, store_iwmct_log_level);
470static DEVICE_ATTR(log_level_fw, S_IWUSR | S_IRUGO,
471 show_iwmct_log_level_fw, store_iwmct_log_level_fw);
472#endif
473
474static struct attribute *iwmct_sysfs_entries[] = {
475 &dev_attr_cc_label_fw.attr,
476#ifdef CONFIG_IWMC3200TOP_DEBUG
477 &dev_attr_log_level.attr,
478 &dev_attr_log_level_fw.attr,
479#endif
480 NULL
481};
482
483static struct attribute_group iwmct_attribute_group = {
484 .name = NULL, /* put in device directory */
485 .attrs = iwmct_sysfs_entries,
486};
487
488
489static int iwmct_probe(struct sdio_func *func,
490 const struct sdio_device_id *id)
491{
492 struct iwmct_priv *priv;
493 int ret;
494 int val = 1;
495 int addr = IWMC_SDIO_INTR_ENABLE_ADDR;
496
497 dev_dbg(&func->dev, "enter iwmct_probe\n");
498
499 dev_dbg(&func->dev, "IRQ polling period id %u msecs, HZ is %d\n",
500 jiffies_to_msecs(2147483647), HZ);
501
502 priv = kzalloc(sizeof(struct iwmct_priv), GFP_KERNEL);
503 if (!priv) {
504 dev_err(&func->dev, "kzalloc error\n");
505 return -ENOMEM;
506 }
507 priv->func = func;
508 sdio_set_drvdata(func, priv);
509
510
511 /* create drivers work queue */
512 priv->wq = create_workqueue(DRV_NAME "_wq");
513 priv->bus_rescan_wq = create_workqueue(DRV_NAME "_rescan_wq");
514 INIT_WORK(&priv->bus_rescan_worker, iwmct_rescan_worker);
515 INIT_WORK(&priv->isr_worker, iwmct_irq_read_worker);
516
517 init_waitqueue_head(&priv->wait_q);
518
519 sdio_claim_host(func);
520 /* FIXME: Remove after it is fixed in the Boot ROM upgrade */
521 func->enable_timeout = 10;
522
523 /* In our HW, setting the block size also wakes up the boot rom. */
524 ret = sdio_set_block_size(func, priv->dbg.block_size);
525 if (ret) {
526 LOG_ERROR(priv, INIT,
527 "sdio_set_block_size() failure: %d\n", ret);
528 goto error_sdio_enable;
529 }
530
531 ret = sdio_enable_func(func);
532 if (ret) {
533 LOG_ERROR(priv, INIT, "sdio_enable_func() failure: %d\n", ret);
534 goto error_sdio_enable;
535 }
536
537 /* init reset and dev_sync states */
538 atomic_set(&priv->reset, 0);
539 atomic_set(&priv->dev_sync, 0);
540
541 /* init read req queue */
542 INIT_LIST_HEAD(&priv->read_req_list);
543
544 /* process configurable parameters */
545 iwmct_dbg_init_params(priv);
546 ret = sysfs_create_group(&func->dev.kobj, &iwmct_attribute_group);
547 if (ret) {
548 LOG_ERROR(priv, INIT, "Failed to register attributes and "
549 "initialize module_params\n");
550 goto error_dev_attrs;
551 }
552
553 iwmct_dbgfs_register(priv, DRV_NAME);
554
555 if (!priv->dbg.direct && priv->dbg.download_trans_blks > 8) {
556 LOG_INFO(priv, INIT,
557 "Reducing transaction to 8 blocks = 2K (from %d)\n",
558 priv->dbg.download_trans_blks);
559 priv->dbg.download_trans_blks = 8;
560 }
561 priv->trans_len = priv->dbg.download_trans_blks * priv->dbg.block_size;
562 LOG_INFO(priv, INIT, "Transaction length = %d\n", priv->trans_len);
563
564 ret = sdio_claim_irq(func, iwmct_irq);
565 if (ret) {
566 LOG_ERROR(priv, INIT, "sdio_claim_irq() failure: %d\n", ret);
567 goto error_claim_irq;
568 }
569
570
571 /* Enable function's interrupt */
572 sdio_writeb(priv->func, val, addr, &ret);
573 if (ret) {
574 LOG_ERROR(priv, INIT, "Failure writing to "
575 "Interrupt Enable Register (%d): %d\n", addr, ret);
576 goto error_enable_int;
577 }
578
579 sdio_release_host(func);
580
581 LOG_INFO(priv, INIT, "exit iwmct_probe\n");
582
583 return ret;
584
585error_enable_int:
586 sdio_release_irq(func);
587error_claim_irq:
588 sdio_disable_func(func);
589error_dev_attrs:
590 iwmct_dbgfs_unregister(priv->dbgfs);
591 sysfs_remove_group(&func->dev.kobj, &iwmct_attribute_group);
592error_sdio_enable:
593 sdio_release_host(func);
594 return ret;
595}
596
597static void iwmct_remove(struct sdio_func *func)
598{
599 struct iwmct_work_struct *read_req;
600 struct iwmct_priv *priv = sdio_get_drvdata(func);
601
602 priv = sdio_get_drvdata(func);
603
604 LOG_INFO(priv, INIT, "enter\n");
605
606 sdio_claim_host(func);
607 sdio_release_irq(func);
608 sdio_release_host(func);
609
610 /* Safely destroy osc workqueue */
611 destroy_workqueue(priv->bus_rescan_wq);
612 destroy_workqueue(priv->wq);
613
614 sdio_claim_host(func);
615 sdio_disable_func(func);
616 sysfs_remove_group(&func->dev.kobj, &iwmct_attribute_group);
617 iwmct_dbgfs_unregister(priv->dbgfs);
618 sdio_release_host(func);
619
620 /* free read requests */
621 while (!list_empty(&priv->read_req_list)) {
622 read_req = list_entry(priv->read_req_list.next,
623 struct iwmct_work_struct, list);
624
625 list_del(&read_req->list);
626 kfree(read_req);
627 }
628
629 kfree(priv);
630}
631
632
633static const struct sdio_device_id iwmct_ids[] = {
Tomas Winkler11e25212009-11-14 08:36:35 +0000634 /* Intel Wireless MultiCom 3200 Top Driver */
635 { SDIO_DEVICE(SDIO_VENDOR_ID_INTEL, 0x1404)},
636 { }, /* Terminating entry */
Tomas Winklerab69a5a2009-10-17 09:09:34 +0000637};
638
639MODULE_DEVICE_TABLE(sdio, iwmct_ids);
640
641static struct sdio_driver iwmct_driver = {
642 .probe = iwmct_probe,
643 .remove = iwmct_remove,
644 .name = DRV_NAME,
645 .id_table = iwmct_ids,
646};
647
648static int __init iwmct_init(void)
649{
650 int rc;
651
652 /* Default log filter settings */
653 iwmct_log_set_filter(LOG_SRC_ALL, LOG_SEV_FILTER_RUNTIME);
Tomas Winkler0df828f2009-12-16 04:26:25 +0000654 iwmct_log_set_filter(LOG_SRC_FW_MSG, LOG_SEV_FW_FILTER_ALL);
Tomas Winklerab69a5a2009-10-17 09:09:34 +0000655 iwmct_log_set_fw_filter(LOG_SRC_ALL, FW_LOG_SEV_FILTER_RUNTIME);
656
657 rc = sdio_register_driver(&iwmct_driver);
658
659 return rc;
660}
661
662static void __exit iwmct_exit(void)
663{
664 sdio_unregister_driver(&iwmct_driver);
665}
666
667module_init(iwmct_init);
668module_exit(iwmct_exit);
669