blob: a3a727c3b40f2a6a21fbb86e075e9ab6d802752e [file] [log] [blame]
Henk de Groot68c0bdf2009-09-27 11:12:52 +02001/*******************************************************************************
2 * Agere Systems Inc.
3 * Wireless device driver for Linux (wlags49).
4 *
5 * Copyright (c) 1998-2003 Agere Systems Inc.
6 * All rights reserved.
7 * http://www.agere.com
8 *
9 * Initially developed by TriplePoint, Inc.
10 * http://www.triplepoint.com
11 *
12 *------------------------------------------------------------------------------
13 *
14 * This file contains processing and initialization specific to Card Services
15 * devices (PCMCIA, CF).
16 *
17 *------------------------------------------------------------------------------
18 *
19 * SOFTWARE LICENSE
20 *
21 * This software is provided subject to the following terms and conditions,
22 * which you should read carefully before using the software. Using this
23 * software indicates your acceptance of these terms and conditions. If you do
24 * not agree with these terms and conditions, do not use the software.
25 *
Prashant P. Shah8cd57782010-06-23 12:16:41 +053026 * Copyright (c) 2003 Agere Systems Inc.
Henk de Groot68c0bdf2009-09-27 11:12:52 +020027 * All rights reserved.
28 *
29 * Redistribution and use in source or binary forms, with or without
30 * modifications, are permitted provided that the following conditions are met:
31 *
32 * . Redistributions of source code must retain the above copyright notice, this
33 * list of conditions and the following Disclaimer as comments in the code as
34 * well as in the documentation and/or other materials provided with the
35 * distribution.
36 *
37 * . Redistributions in binary form must reproduce the above copyright notice,
38 * this list of conditions and the following Disclaimer in the documentation
39 * and/or other materials provided with the distribution.
40 *
41 * . Neither the name of Agere Systems Inc. nor the names of the contributors
42 * may be used to endorse or promote products derived from this software
43 * without specific prior written permission.
44 *
45 * Disclaimer
46 *
Prashant P. Shah8cd57782010-06-23 12:16:41 +053047 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
Henk de Groot68c0bdf2009-09-27 11:12:52 +020048 * INCLUDING, BUT NOT LIMITED TO, INFRINGEMENT AND THE IMPLIED WARRANTIES OF
49 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. ANY
50 * USE, MODIFICATION OR DISTRIBUTION OF THIS SOFTWARE IS SOLELY AT THE USERS OWN
51 * RISK. IN NO EVENT SHALL AGERE SYSTEMS INC. OR CONTRIBUTORS BE LIABLE FOR ANY
52 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
53 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
54 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
55 * ON ANY THEORY OF LIABILITY, INCLUDING, BUT NOT LIMITED TO, CONTRACT, STRICT
56 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
57 * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
58 * DAMAGE.
59 *
60 ******************************************************************************/
61
Henk de Groot68c0bdf2009-09-27 11:12:52 +020062/*******************************************************************************
63 * include files
64 ******************************************************************************/
65#include <wl_version.h>
66
67#include <linux/kernel.h>
68#include <linux/sched.h>
69#include <linux/ptrace.h>
Henk de Groot68c0bdf2009-09-27 11:12:52 +020070#include <linux/ctype.h>
71#include <linux/string.h>
72#include <linux/timer.h>
73#include <linux/interrupt.h>
74#include <linux/in.h>
75#include <linux/delay.h>
76#include <asm/io.h>
77#include <asm/system.h>
78#include <asm/bitops.h>
79
80#include <linux/netdevice.h>
81#include <linux/etherdevice.h>
82#include <linux/skbuff.h>
83#include <linux/if_arp.h>
84#include <linux/ioport.h>
85
Henk de Groot68c0bdf2009-09-27 11:12:52 +020086#include <pcmcia/cistpl.h>
87#include <pcmcia/cisreg.h>
88#include <pcmcia/ciscode.h>
89#include <pcmcia/ds.h>
90#include <debug.h>
91
92#include <hcf.h>
93#include <dhf.h>
94#include <hcfdef.h>
95
96#include <wl_if.h>
97#include <wl_internal.h>
98#include <wl_util.h>
99#include <wl_main.h>
100#include <wl_netdev.h>
101#include <wl_cs.h>
102#include <wl_sysfs.h>
103
104
105/*******************************************************************************
Henk de Groot68c0bdf2009-09-27 11:12:52 +0200106 * global definitions
107 ******************************************************************************/
108#if DBG
109extern dbg_info_t *DbgInfo;
110#endif /* DBG */
111
112
113/*******************************************************************************
114 * wl_adapter_attach()
115 *******************************************************************************
116 *
117 * DESCRIPTION:
118 *
119 * Creates an instance of the driver, allocating local data structures for
120 * one device. The device is registered with Card Services.
121 *
122 * PARAMETERS:
123 *
124 * none
125 *
126 * RETURNS:
127 *
128 * pointer to an allocated dev_link_t structure
129 * NULL on failure
130 *
131 ******************************************************************************/
132static int wl_adapter_attach(struct pcmcia_device *link)
133{
Prashant P. Shah6d98be32010-06-23 12:15:06 +0530134 struct net_device *dev;
135 struct wl_private *lp;
Prashant P. Shah194a6362010-06-23 12:17:02 +0530136 /*--------------------------------------------------------------------*/
Henk de Groot68c0bdf2009-09-27 11:12:52 +0200137
Prashant P. Shah6d98be32010-06-23 12:15:06 +0530138 DBG_FUNC("wl_adapter_attach");
139 DBG_ENTER(DbgInfo);
Henk de Groot68c0bdf2009-09-27 11:12:52 +0200140
Prashant P. Shah6d98be32010-06-23 12:15:06 +0530141 dev = wl_device_alloc();
142 if (dev == NULL) {
143 DBG_ERROR(DbgInfo, "wl_device_alloc returned NULL\n");
144 return -ENOMEM;
145 }
Henk de Groot68c0bdf2009-09-27 11:12:52 +0200146
Linus Torvalds1685e632010-08-06 12:25:06 -0700147 link->resource[0]->end = HCF_NUM_IO_PORTS;
148 link->resource[0]->flags= IO_DATA_PATH_WIDTH_16;
Dominik Brodowski1ac71e52010-07-29 19:27:09 +0200149 link->config_flags |= CONF_ENABLE_IRQ;
Dominik Brodowski7feabb62010-07-29 18:35:47 +0200150 link->config_index = 5;
151 link->config_regs = PRESENT_OPTION;
Henk de Groot68c0bdf2009-09-27 11:12:52 +0200152
Prashant P. Shah6d98be32010-06-23 12:15:06 +0530153 link->priv = dev;
154 lp = wl_priv(dev);
155 lp->link = link;
Henk de Groot68c0bdf2009-09-27 11:12:52 +0200156
Prashant P. Shah6d98be32010-06-23 12:15:06 +0530157 wl_adapter_insert(link);
Henk de Groot68c0bdf2009-09-27 11:12:52 +0200158
Prashant P. Shah6d98be32010-06-23 12:15:06 +0530159 DBG_LEAVE(DbgInfo);
160 return 0;
Prashant P. Shah194a6362010-06-23 12:17:02 +0530161} /* wl_adapter_attach */
Henk de Groot68c0bdf2009-09-27 11:12:52 +0200162/*============================================================================*/
163
164
165
Henk de Groot68c0bdf2009-09-27 11:12:52 +0200166static void wl_adapter_detach(struct pcmcia_device *link)
167{
Prashant P. Shah6d98be32010-06-23 12:15:06 +0530168 struct net_device *dev = link->priv;
Prashant P. Shah194a6362010-06-23 12:17:02 +0530169 /*--------------------------------------------------------------------*/
Henk de Groot68c0bdf2009-09-27 11:12:52 +0200170
Prashant P. Shah6d98be32010-06-23 12:15:06 +0530171 DBG_FUNC("wl_adapter_detach");
172 DBG_ENTER(DbgInfo);
173 DBG_PARAM(DbgInfo, "link", "0x%p", link);
Henk de Groot68c0bdf2009-09-27 11:12:52 +0200174
Prashant P. Shah6d98be32010-06-23 12:15:06 +0530175 wl_adapter_release(link);
Henk de Groot68c0bdf2009-09-27 11:12:52 +0200176
Prashant P. Shah6d98be32010-06-23 12:15:06 +0530177 if (dev) {
178 unregister_wlags_sysfs(dev);
179 unregister_netdev(dev);
180 }
Henk de Groot68c0bdf2009-09-27 11:12:52 +0200181
Prashant P. Shah6d98be32010-06-23 12:15:06 +0530182 wl_device_dealloc(dev);
Henk de Groot68c0bdf2009-09-27 11:12:52 +0200183
Prashant P. Shah6d98be32010-06-23 12:15:06 +0530184 DBG_LEAVE(DbgInfo);
Prashant P. Shah194a6362010-06-23 12:17:02 +0530185} /* wl_adapter_detach */
Henk de Groot68c0bdf2009-09-27 11:12:52 +0200186/*============================================================================*/
187
188
Prashant P. Shahaa605fa2010-06-10 22:07:04 +0530189void wl_adapter_release(struct pcmcia_device *link)
Henk de Groot68c0bdf2009-09-27 11:12:52 +0200190{
Prashant P. Shah6d98be32010-06-23 12:15:06 +0530191 DBG_FUNC("wl_adapter_release");
192 DBG_ENTER(DbgInfo);
193 DBG_PARAM(DbgInfo, "link", "0x%p", link);
Henk de Groot68c0bdf2009-09-27 11:12:52 +0200194
Prashant P. Shah6d98be32010-06-23 12:15:06 +0530195 /* Stop hardware */
196 wl_remove(link->priv);
Henk de Groot68c0bdf2009-09-27 11:12:52 +0200197
Prashant P. Shah6d98be32010-06-23 12:15:06 +0530198 pcmcia_disable_device(link);
Henk de Groot68c0bdf2009-09-27 11:12:52 +0200199
Prashant P. Shah6d98be32010-06-23 12:15:06 +0530200 DBG_LEAVE(DbgInfo);
Prashant P. Shah194a6362010-06-23 12:17:02 +0530201} /* wl_adapter_release */
Henk de Groot68c0bdf2009-09-27 11:12:52 +0200202/*============================================================================*/
203
204static int wl_adapter_suspend(struct pcmcia_device *link)
205{
Prashant P. Shah6d98be32010-06-23 12:15:06 +0530206 struct net_device *dev = link->priv;
Henk de Groot68c0bdf2009-09-27 11:12:52 +0200207
Prashant P. Shah194a6362010-06-23 12:17:02 +0530208 /* if (link->open) { */
Henk de Groot68c0bdf2009-09-27 11:12:52 +0200209 netif_device_detach(dev);
210 wl_suspend(dev);
Prashant P. Shah194a6362010-06-23 12:17:02 +0530211 /* CHECK! pcmcia_release_configuration(link->handle); */
212 /* } */
Henk de Groot68c0bdf2009-09-27 11:12:52 +0200213
Prashant P. Shah6d98be32010-06-23 12:15:06 +0530214 return 0;
Prashant P. Shah194a6362010-06-23 12:17:02 +0530215} /* wl_adapter_suspend */
Henk de Groot68c0bdf2009-09-27 11:12:52 +0200216
217static int wl_adapter_resume(struct pcmcia_device *link)
218{
219 struct net_device *dev = link->priv;
220
221 wl_resume(dev);
222
Prashant P. Shahaa605fa2010-06-10 22:07:04 +0530223 netif_device_attach(dev);
Henk de Groot68c0bdf2009-09-27 11:12:52 +0200224
225 return 0;
Prashant P. Shah194a6362010-06-23 12:17:02 +0530226} /* wl_adapter_resume */
Henk de Groot68c0bdf2009-09-27 11:12:52 +0200227
Prashant P. Shahaa605fa2010-06-10 22:07:04 +0530228void wl_adapter_insert(struct pcmcia_device *link)
Henk de Groot68c0bdf2009-09-27 11:12:52 +0200229{
Prashant P. Shah6d98be32010-06-23 12:15:06 +0530230 struct net_device *dev;
231 int i;
232 int ret;
Prashant P. Shah194a6362010-06-23 12:17:02 +0530233 /*--------------------------------------------------------------------*/
Henk de Groot68c0bdf2009-09-27 11:12:52 +0200234
Prashant P. Shah6d98be32010-06-23 12:15:06 +0530235 DBG_FUNC("wl_adapter_insert");
236 DBG_ENTER(DbgInfo);
237 DBG_PARAM(DbgInfo, "link", "0x%p", link);
Henk de Groot68c0bdf2009-09-27 11:12:52 +0200238
Prashant P. Shah6d98be32010-06-23 12:15:06 +0530239 dev = link->priv;
Henk de Groot68c0bdf2009-09-27 11:12:52 +0200240
Prashant P. Shah6d98be32010-06-23 12:15:06 +0530241 /* Do we need to allocate an interrupt? */
Dominik Brodowski1ac71e52010-07-29 19:27:09 +0200242 link->config_flags |= CONF_ENABLE_IRQ;
Linus Torvalds1685e632010-08-06 12:25:06 -0700243 link->io_lines = 6;
Henk de Groot68c0bdf2009-09-27 11:12:52 +0200244
Linus Torvalds1685e632010-08-06 12:25:06 -0700245 ret = pcmcia_request_io(link);
Prashant P. Shah6d98be32010-06-23 12:15:06 +0530246 if (ret != 0)
247 goto failed;
Henk de Groot68c0bdf2009-09-27 11:12:52 +0200248
Prashant P. Shah6d98be32010-06-23 12:15:06 +0530249 ret = pcmcia_request_irq(link, (void *) wl_isr);
250 if (ret != 0)
251 goto failed;
Henk de Groot93822ad2010-05-13 16:27:33 +0200252
Dominik Brodowski1ac71e52010-07-29 19:27:09 +0200253 ret = pcmcia_enable_device(link);
Prashant P. Shah6d98be32010-06-23 12:15:06 +0530254 if (ret != 0)
255 goto failed;
Henk de Groot68c0bdf2009-09-27 11:12:52 +0200256
Prashant P. Shah6d98be32010-06-23 12:15:06 +0530257 dev->irq = link->irq;
Linus Torvalds1685e632010-08-06 12:25:06 -0700258 dev->base_addr = link->resource[0]->start;
Henk de Groot68c0bdf2009-09-27 11:12:52 +0200259
Prashant P. Shah6d98be32010-06-23 12:15:06 +0530260 SET_NETDEV_DEV(dev, &link->dev);
261 if (register_netdev(dev) != 0) {
262 printk("%s: register_netdev() failed\n", MODULE_NAME);
263 goto failed;
264 }
Henk de Groot93822ad2010-05-13 16:27:33 +0200265
Prashant P. Shah6d98be32010-06-23 12:15:06 +0530266 register_wlags_sysfs(dev);
Henk de Groot68c0bdf2009-09-27 11:12:52 +0200267
Prashant P. Shah6d98be32010-06-23 12:15:06 +0530268 printk(KERN_INFO "%s: Wireless, io_addr %#03lx, irq %d, ""mac_address ",
269 dev->name, dev->base_addr, dev->irq);
Prashant P. Shah194a6362010-06-23 12:17:02 +0530270 for (i = 0; i < ETH_ALEN; i++)
Prashant P. Shah6d98be32010-06-23 12:15:06 +0530271 printk("%02X%c", dev->dev_addr[i], ((i < (ETH_ALEN-1)) ? ':' : '\n'));
Henk de Groot68c0bdf2009-09-27 11:12:52 +0200272
Prashant P. Shah6d98be32010-06-23 12:15:06 +0530273 DBG_LEAVE(DbgInfo);
274 return;
Henk de Groot68c0bdf2009-09-27 11:12:52 +0200275
Henk de Groot68c0bdf2009-09-27 11:12:52 +0200276failed:
Prashant P. Shah6d98be32010-06-23 12:15:06 +0530277 wl_adapter_release(link);
Henk de Groot68c0bdf2009-09-27 11:12:52 +0200278
Prashant P. Shah6d98be32010-06-23 12:15:06 +0530279 DBG_LEAVE(DbgInfo);
280 return;
Prashant P. Shah194a6362010-06-23 12:17:02 +0530281} /* wl_adapter_insert */
Henk de Groot68c0bdf2009-09-27 11:12:52 +0200282/*============================================================================*/
283
284
285/*******************************************************************************
286 * wl_adapter_open()
287 *******************************************************************************
288 *
289 * DESCRIPTION:
290 *
291 * Open the device.
292 *
293 * PARAMETERS:
294 *
295 * dev - a pointer to a net_device structure representing the network
296 * device to open.
297 *
298 * RETURNS:
299 *
300 * 0 on success
301 * errno value otherwise
302 *
303 ******************************************************************************/
Prashant P. Shahaa605fa2010-06-10 22:07:04 +0530304int wl_adapter_open(struct net_device *dev)
Henk de Groot68c0bdf2009-09-27 11:12:52 +0200305{
Prashant P. Shah6d98be32010-06-23 12:15:06 +0530306 struct wl_private *lp = wl_priv(dev);
307 struct pcmcia_device *link = lp->link;
308 int result = 0;
309 int hcf_status = HCF_SUCCESS;
Prashant P. Shah194a6362010-06-23 12:17:02 +0530310 /*--------------------------------------------------------------------*/
Henk de Groot68c0bdf2009-09-27 11:12:52 +0200311
Prashant P. Shah6d98be32010-06-23 12:15:06 +0530312 DBG_FUNC("wl_adapter_open");
313 DBG_ENTER(DbgInfo);
Prashant P. Shahaa605fa2010-06-10 22:07:04 +0530314 DBG_PRINT("%s\n", VERSION_INFO);
Prashant P. Shah6d98be32010-06-23 12:15:06 +0530315 DBG_PARAM(DbgInfo, "dev", "%s (0x%p)", dev->name, dev);
Henk de Groot68c0bdf2009-09-27 11:12:52 +0200316
Prashant P. Shah194a6362010-06-23 12:17:02 +0530317 if (!pcmcia_dev_present(link)) {
Prashant P. Shah6d98be32010-06-23 12:15:06 +0530318 DBG_LEAVE(DbgInfo);
319 return -ENODEV;
320 }
Henk de Groot68c0bdf2009-09-27 11:12:52 +0200321
Prashant P. Shah6d98be32010-06-23 12:15:06 +0530322 link->open++;
Henk de Groot68c0bdf2009-09-27 11:12:52 +0200323
Prashant P. Shah6d98be32010-06-23 12:15:06 +0530324 hcf_status = wl_open(dev);
Henk de Groot68c0bdf2009-09-27 11:12:52 +0200325
Prashant P. Shah6d98be32010-06-23 12:15:06 +0530326 if (hcf_status != HCF_SUCCESS) {
327 link->open--;
328 result = -ENODEV;
329 }
Henk de Groot68c0bdf2009-09-27 11:12:52 +0200330
Prashant P. Shah6d98be32010-06-23 12:15:06 +0530331 DBG_LEAVE(DbgInfo);
332 return result;
Prashant P. Shah194a6362010-06-23 12:17:02 +0530333} /* wl_adapter_open */
Henk de Groot68c0bdf2009-09-27 11:12:52 +0200334/*============================================================================*/
335
336
337/*******************************************************************************
338 * wl_adapter_close()
339 *******************************************************************************
340 *
341 * DESCRIPTION:
342 *
343 * Close the device.
344 *
345 * PARAMETERS:
346 *
347 * dev - a pointer to a net_device structure representing the network
348 * device to close.
349 *
350 * RETURNS:
351 *
352 * 0 on success
353 * errno value otherwise
354 *
355 ******************************************************************************/
Prashant P. Shahaa605fa2010-06-10 22:07:04 +0530356int wl_adapter_close(struct net_device *dev)
Henk de Groot68c0bdf2009-09-27 11:12:52 +0200357{
Prashant P. Shah6d98be32010-06-23 12:15:06 +0530358 struct wl_private *lp = wl_priv(dev);
359 struct pcmcia_device *link = lp->link;
Prashant P. Shah194a6362010-06-23 12:17:02 +0530360 /*--------------------------------------------------------------------*/
Henk de Groot68c0bdf2009-09-27 11:12:52 +0200361
Prashant P. Shah6d98be32010-06-23 12:15:06 +0530362 DBG_FUNC("wl_adapter_close");
363 DBG_ENTER(DbgInfo);
364 DBG_PARAM(DbgInfo, "dev", "%s (0x%p)", dev->name, dev);
Henk de Groot68c0bdf2009-09-27 11:12:52 +0200365
Prashant P. Shah6d98be32010-06-23 12:15:06 +0530366 if (link == NULL) {
367 DBG_LEAVE(DbgInfo);
368 return -ENODEV;
369 }
Henk de Groot68c0bdf2009-09-27 11:12:52 +0200370
Prashant P. Shah6d98be32010-06-23 12:15:06 +0530371 DBG_TRACE(DbgInfo, "%s: Shutting down adapter.\n", dev->name);
372 wl_close(dev);
Henk de Groot68c0bdf2009-09-27 11:12:52 +0200373
Prashant P. Shah6d98be32010-06-23 12:15:06 +0530374 link->open--;
Henk de Groot68c0bdf2009-09-27 11:12:52 +0200375
Prashant P. Shah6d98be32010-06-23 12:15:06 +0530376 DBG_LEAVE(DbgInfo);
377 return 0;
Prashant P. Shah194a6362010-06-23 12:17:02 +0530378} /* wl_adapter_close */
Henk de Groot68c0bdf2009-09-27 11:12:52 +0200379/*============================================================================*/
380
Joe Perches2202a5a2011-05-03 19:29:02 -0700381static const struct pcmcia_device_id wl_adapter_ids[] = {
Prashant P. Shah194a6362010-06-23 12:17:02 +0530382#if !((HCF_TYPE) & HCF_TYPE_HII5)
Henk de Groot68c0bdf2009-09-27 11:12:52 +0200383 PCMCIA_DEVICE_MANF_CARD(0x0156, 0x0003),
384 PCMCIA_DEVICE_PROD_ID12("Agere Systems", "Wireless PC Card Model 0110",
Prashant P. Shah6d98be32010-06-23 12:15:06 +0530385 0x33103a9b, 0xe175b0dd),
Henk de Groot68c0bdf2009-09-27 11:12:52 +0200386#else
387 PCMCIA_DEVICE_MANF_CARD(0x0156, 0x0004),
388 PCMCIA_DEVICE_PROD_ID12("Linksys", "WCF54G_Wireless-G_CompactFlash_Card",
Prashant P. Shah6d98be32010-06-23 12:15:06 +0530389 0x0733cc81, 0x98a599e1),
Prashant P. Shah194a6362010-06-23 12:17:02 +0530390#endif /* (HCF_TYPE) & HCF_TYPE_HII5 */
Henk de Groot68c0bdf2009-09-27 11:12:52 +0200391 PCMCIA_DEVICE_NULL,
Prashant P. Shah6d98be32010-06-23 12:15:06 +0530392};
Henk de Groot68c0bdf2009-09-27 11:12:52 +0200393MODULE_DEVICE_TABLE(pcmcia, wl_adapter_ids);
394
395static struct pcmcia_driver wlags49_driver = {
Prashant P. Shah6d98be32010-06-23 12:15:06 +0530396 .owner = THIS_MODULE,
Dominik Brodowski2e9b9812010-08-08 11:36:26 +0200397 .name = DRIVER_NAME,
Prashant P. Shah6d98be32010-06-23 12:15:06 +0530398 .probe = wl_adapter_attach,
399 .remove = wl_adapter_detach,
400 .id_table = wl_adapter_ids,
401 .suspend = wl_adapter_suspend,
402 .resume = wl_adapter_resume,
Henk de Groot68c0bdf2009-09-27 11:12:52 +0200403};
404
405
406
407/*******************************************************************************
408 * wl_adapter_init_module()
409 *******************************************************************************
410 *
411 * DESCRIPTION:
412 *
413 * Called by init_module() to perform PCMCIA driver initialization.
414 *
415 * PARAMETERS:
416 *
417 * N/A
418 *
419 * RETURNS:
420 *
421 * 0 on success
422 * -1 on error
423 *
424 ******************************************************************************/
Prashant P. Shahaa605fa2010-06-10 22:07:04 +0530425int wl_adapter_init_module(void)
Henk de Groot68c0bdf2009-09-27 11:12:52 +0200426{
Prashant P. Shah6d98be32010-06-23 12:15:06 +0530427 int ret;
Prashant P. Shah194a6362010-06-23 12:17:02 +0530428 /*--------------------------------------------------------------------*/
Henk de Groot68c0bdf2009-09-27 11:12:52 +0200429
Prashant P. Shah6d98be32010-06-23 12:15:06 +0530430 DBG_FUNC("wl_adapter_init_module");
431 DBG_ENTER(DbgInfo);
432 DBG_TRACE(DbgInfo, "wl_adapter_init_module() -- PCMCIA\n");
Henk de Groot68c0bdf2009-09-27 11:12:52 +0200433
Prashant P. Shah6d98be32010-06-23 12:15:06 +0530434 ret = pcmcia_register_driver(&wlags49_driver);
Henk de Groot68c0bdf2009-09-27 11:12:52 +0200435
Prashant P. Shah6d98be32010-06-23 12:15:06 +0530436 DBG_LEAVE(DbgInfo);
437 return ret;
Prashant P. Shah194a6362010-06-23 12:17:02 +0530438} /* wl_adapter_init_module */
Henk de Groot68c0bdf2009-09-27 11:12:52 +0200439/*============================================================================*/
440
441
442/*******************************************************************************
443 * wl_adapter_cleanup_module()
444 *******************************************************************************
445 *
446 * DESCRIPTION:
447 *
448 * Called by cleanup_module() to perform driver uninitialization.
449 *
450 * PARAMETERS:
451 *
452 * N/A
453 *
454 * RETURNS:
455 *
456 * N/A
457 *
458 ******************************************************************************/
Prashant P. Shahaa605fa2010-06-10 22:07:04 +0530459void wl_adapter_cleanup_module(void)
Henk de Groot68c0bdf2009-09-27 11:12:52 +0200460{
Prashant P. Shah6d98be32010-06-23 12:15:06 +0530461 DBG_FUNC("wl_adapter_cleanup_module");
462 DBG_ENTER(DbgInfo);
463 DBG_TRACE(DbgInfo, "wl_adapter_cleanup_module() -- PCMCIA\n");
Henk de Groot68c0bdf2009-09-27 11:12:52 +0200464
465
Prashant P. Shah6d98be32010-06-23 12:15:06 +0530466 pcmcia_unregister_driver(&wlags49_driver);
Henk de Groot68c0bdf2009-09-27 11:12:52 +0200467
Prashant P. Shah6d98be32010-06-23 12:15:06 +0530468 DBG_LEAVE(DbgInfo);
469 return;
Prashant P. Shah194a6362010-06-23 12:17:02 +0530470} /* wl_adapter_cleanup_module */
Henk de Groot68c0bdf2009-09-27 11:12:52 +0200471/*============================================================================*/
472
473
474/*******************************************************************************
475 * wl_adapter_is_open()
476 *******************************************************************************
477 *
478 * DESCRIPTION:
479 *
480 * Check with Card Services to determine if this device is open.
481 *
482 * PARAMETERS:
483 *
484 * dev - a pointer to the net_device structure whose open status will be
485 * checked
486 *
487 * RETURNS:
488 *
489 * nonzero if device is open
490 * 0 otherwise
491 *
492 ******************************************************************************/
Prashant P. Shahaa605fa2010-06-10 22:07:04 +0530493int wl_adapter_is_open(struct net_device *dev)
Henk de Groot68c0bdf2009-09-27 11:12:52 +0200494{
Prashant P. Shah6d98be32010-06-23 12:15:06 +0530495 struct wl_private *lp = wl_priv(dev);
496 struct pcmcia_device *link = lp->link;
Henk de Groot68c0bdf2009-09-27 11:12:52 +0200497
Prashant P. Shah194a6362010-06-23 12:17:02 +0530498 if (!pcmcia_dev_present(link))
Prashant P. Shah6d98be32010-06-23 12:15:06 +0530499 return 0;
Henk de Groot68c0bdf2009-09-27 11:12:52 +0200500
Prashant P. Shah194a6362010-06-23 12:17:02 +0530501 return link->open;
502} /* wl_adapter_is_open */
Henk de Groot68c0bdf2009-09-27 11:12:52 +0200503/*============================================================================*/
504
505
506#if DBG
507
508/*******************************************************************************
509 * DbgEvent()
510 *******************************************************************************
511 *
512 * DESCRIPTION:
513 *
514 * Converts the card serivces events to text for debugging.
515 *
516 * PARAMETERS:
517 *
518 * mask - a integer representing the error(s) being reported by Card
519 * Services.
520 *
521 * RETURNS:
522 *
523 * a pointer to a string describing the error(s)
524 *
525 ******************************************************************************/
Prashant P. Shah194a6362010-06-23 12:17:02 +0530526const char *DbgEvent(int mask)
Henk de Groot68c0bdf2009-09-27 11:12:52 +0200527{
Prashant P. Shah6d98be32010-06-23 12:15:06 +0530528 static char DbgBuffer[256];
529 char *pBuf;
Prashant P. Shah194a6362010-06-23 12:17:02 +0530530 /*--------------------------------------------------------------------*/
Henk de Groot68c0bdf2009-09-27 11:12:52 +0200531
Prashant P. Shah6d98be32010-06-23 12:15:06 +0530532 pBuf = DbgBuffer;
533 *pBuf = '\0';
Henk de Groot68c0bdf2009-09-27 11:12:52 +0200534
535
Prashant P. Shah6d98be32010-06-23 12:15:06 +0530536 if (mask & CS_EVENT_WRITE_PROTECT)
537 strcat(pBuf, "WRITE_PROTECT ");
Henk de Groot68c0bdf2009-09-27 11:12:52 +0200538
Prashant P. Shah6d98be32010-06-23 12:15:06 +0530539 if (mask & CS_EVENT_CARD_LOCK)
540 strcat(pBuf, "CARD_LOCK ");
Henk de Groot68c0bdf2009-09-27 11:12:52 +0200541
Prashant P. Shah6d98be32010-06-23 12:15:06 +0530542 if (mask & CS_EVENT_CARD_INSERTION)
543 strcat(pBuf, "CARD_INSERTION ");
Henk de Groot68c0bdf2009-09-27 11:12:52 +0200544
Prashant P. Shah6d98be32010-06-23 12:15:06 +0530545 if (mask & CS_EVENT_CARD_REMOVAL)
546 strcat(pBuf, "CARD_REMOVAL ");
Henk de Groot68c0bdf2009-09-27 11:12:52 +0200547
Prashant P. Shah6d98be32010-06-23 12:15:06 +0530548 if (mask & CS_EVENT_BATTERY_DEAD)
549 strcat(pBuf, "BATTERY_DEAD ");
Henk de Groot68c0bdf2009-09-27 11:12:52 +0200550
Prashant P. Shah6d98be32010-06-23 12:15:06 +0530551 if (mask & CS_EVENT_BATTERY_LOW)
552 strcat(pBuf, "BATTERY_LOW ");
Henk de Groot68c0bdf2009-09-27 11:12:52 +0200553
Prashant P. Shah6d98be32010-06-23 12:15:06 +0530554 if (mask & CS_EVENT_READY_CHANGE)
555 strcat(pBuf, "READY_CHANGE ");
Henk de Groot68c0bdf2009-09-27 11:12:52 +0200556
Prashant P. Shah6d98be32010-06-23 12:15:06 +0530557 if (mask & CS_EVENT_CARD_DETECT)
558 strcat(pBuf, "CARD_DETECT ");
Henk de Groot68c0bdf2009-09-27 11:12:52 +0200559
Prashant P. Shah6d98be32010-06-23 12:15:06 +0530560 if (mask & CS_EVENT_RESET_REQUEST)
561 strcat(pBuf, "RESET_REQUEST ");
Henk de Groot68c0bdf2009-09-27 11:12:52 +0200562
Prashant P. Shah6d98be32010-06-23 12:15:06 +0530563 if (mask & CS_EVENT_RESET_PHYSICAL)
564 strcat(pBuf, "RESET_PHYSICAL ");
Henk de Groot68c0bdf2009-09-27 11:12:52 +0200565
Prashant P. Shah6d98be32010-06-23 12:15:06 +0530566 if (mask & CS_EVENT_CARD_RESET)
567 strcat(pBuf, "CARD_RESET ");
Henk de Groot68c0bdf2009-09-27 11:12:52 +0200568
Prashant P. Shah6d98be32010-06-23 12:15:06 +0530569 if (mask & CS_EVENT_REGISTRATION_COMPLETE)
570 strcat(pBuf, "REGISTRATION_COMPLETE ");
Henk de Groot68c0bdf2009-09-27 11:12:52 +0200571
Prashant P. Shah194a6362010-06-23 12:17:02 +0530572 /* if (mask & CS_EVENT_RESET_COMPLETE)
573 strcat(pBuf, "RESET_COMPLETE "); */
Henk de Groot68c0bdf2009-09-27 11:12:52 +0200574
Prashant P. Shah6d98be32010-06-23 12:15:06 +0530575 if (mask & CS_EVENT_PM_SUSPEND)
576 strcat(pBuf, "PM_SUSPEND ");
Henk de Groot68c0bdf2009-09-27 11:12:52 +0200577
Prashant P. Shah6d98be32010-06-23 12:15:06 +0530578 if (mask & CS_EVENT_PM_RESUME)
579 strcat(pBuf, "PM_RESUME ");
Henk de Groot68c0bdf2009-09-27 11:12:52 +0200580
Prashant P. Shah6d98be32010-06-23 12:15:06 +0530581 if (mask & CS_EVENT_INSERTION_REQUEST)
582 strcat(pBuf, "INSERTION_REQUEST ");
Henk de Groot68c0bdf2009-09-27 11:12:52 +0200583
Prashant P. Shah6d98be32010-06-23 12:15:06 +0530584 if (mask & CS_EVENT_EJECTION_REQUEST)
585 strcat(pBuf, "EJECTION_REQUEST ");
Henk de Groot68c0bdf2009-09-27 11:12:52 +0200586
Prashant P. Shah6d98be32010-06-23 12:15:06 +0530587 if (mask & CS_EVENT_MTD_REQUEST)
588 strcat(pBuf, "MTD_REQUEST ");
Henk de Groot68c0bdf2009-09-27 11:12:52 +0200589
Prashant P. Shah6d98be32010-06-23 12:15:06 +0530590 if (mask & CS_EVENT_ERASE_COMPLETE)
591 strcat(pBuf, "ERASE_COMPLETE ");
Henk de Groot68c0bdf2009-09-27 11:12:52 +0200592
Prashant P. Shah6d98be32010-06-23 12:15:06 +0530593 if (mask & CS_EVENT_REQUEST_ATTENTION)
594 strcat(pBuf, "REQUEST_ATTENTION ");
Henk de Groot68c0bdf2009-09-27 11:12:52 +0200595
Prashant P. Shah6d98be32010-06-23 12:15:06 +0530596 if (mask & CS_EVENT_CB_DETECT)
597 strcat(pBuf, "CB_DETECT ");
Henk de Groot68c0bdf2009-09-27 11:12:52 +0200598
Prashant P. Shah6d98be32010-06-23 12:15:06 +0530599 if (mask & CS_EVENT_3VCARD)
600 strcat(pBuf, "3VCARD ");
Henk de Groot68c0bdf2009-09-27 11:12:52 +0200601
Prashant P. Shah6d98be32010-06-23 12:15:06 +0530602 if (mask & CS_EVENT_XVCARD)
603 strcat(pBuf, "XVCARD ");
Henk de Groot68c0bdf2009-09-27 11:12:52 +0200604
605
Prashant P. Shah6d98be32010-06-23 12:15:06 +0530606 if (*pBuf) {
607 pBuf[strlen(pBuf) - 1] = '\0';
608 } else {
Prashant P. Shah194a6362010-06-23 12:17:02 +0530609 if (mask != 0x0)
Prashant P. Shah6d98be32010-06-23 12:15:06 +0530610 sprintf(pBuf, "<<0x%08x>>", mask);
Prashant P. Shah6d98be32010-06-23 12:15:06 +0530611 }
Henk de Groot68c0bdf2009-09-27 11:12:52 +0200612
Prashant P. Shah6d98be32010-06-23 12:15:06 +0530613 return pBuf;
Prashant P. Shah194a6362010-06-23 12:17:02 +0530614} /* DbgEvent */
Henk de Groot68c0bdf2009-09-27 11:12:52 +0200615/*============================================================================*/
616
617#endif /* DBG */