blob: 3ab33dd49ea246a1182cd5dbe9a399de8e75fe28 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*** -*- linux-c -*- **********************************************************
2
3 Driver for Atmel at76c502 at76c504 and at76c506 wireless cards.
4
5 Copyright 2000-2001 ATMEL Corporation.
6 Copyright 2003 Simon Kelley.
7
8 This code was developed from version 2.1.1 of the Atmel drivers,
9 released by Atmel corp. under the GPL in December 2002. It also
10 includes code from the Linux aironet drivers (C) Benjamin Reed,
11 and the Linux PCMCIA package, (C) David Hinds.
12
13 For all queries about this code, please contact the current author,
14 Simon Kelley <simon@thekelleys.org.uk> and not Atmel Corporation.
15
16 This program is free software; you can redistribute it and/or modify
17 it under the terms of the GNU General Public License as published by
18 the Free Software Foundation; either version 2 of the License, or
19 (at your option) any later version.
20
21 This software is distributed in the hope that it will be useful,
22 but WITHOUT ANY WARRANTY; without even the implied warranty of
23 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
24 GNU General Public License for more details.
25
26 You should have received a copy of the GNU General Public License
27 along with Atmel wireless lan drivers; if not, write to the Free Software
28 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
29
30******************************************************************************/
31
32#include <linux/config.h>
33#ifdef __IN_PCMCIA_PACKAGE__
34#include <pcmcia/k_compat.h>
35#endif
36#include <linux/init.h>
37#include <linux/kernel.h>
38#include <linux/module.h>
39#include <linux/ptrace.h>
40#include <linux/slab.h>
41#include <linux/string.h>
42#include <linux/netdevice.h>
43#include <linux/moduleparam.h>
44#include <linux/device.h>
45
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#include <pcmcia/cs_types.h>
47#include <pcmcia/cs.h>
48#include <pcmcia/cistpl.h>
49#include <pcmcia/cisreg.h>
50#include <pcmcia/ds.h>
51#include <pcmcia/ciscode.h>
52
53#include <asm/io.h>
54#include <asm/system.h>
55#include <linux/wireless.h>
56
57#include "atmel.h"
58
59/*
60 All the PCMCIA modules use PCMCIA_DEBUG to control debugging. If
61 you do not define PCMCIA_DEBUG at all, all the debug code will be
62 left out. If you compile with PCMCIA_DEBUG=0, the debug code will
63 be present but disabled -- but it can then be enabled for specific
64 modules at load time with a 'pc_debug=#' option to insmod.
65*/
simon@thekelleys.org.ukb16a2282005-10-30 15:50:15 +000066
Linus Torvalds1da177e2005-04-16 15:20:36 -070067#ifdef PCMCIA_DEBUG
68static int pc_debug = PCMCIA_DEBUG;
69module_param(pc_debug, int, 0);
70static char *version = "$Revision: 1.2 $";
71#define DEBUG(n, args...) if (pc_debug>(n)) printk(KERN_DEBUG args);
72#else
73#define DEBUG(n, args...)
74#endif
75
76/*====================================================================*/
77
78MODULE_AUTHOR("Simon Kelley");
79MODULE_DESCRIPTION("Support for Atmel at76c50x 802.11 wireless ethernet cards.");
80MODULE_LICENSE("GPL");
81MODULE_SUPPORTED_DEVICE("Atmel at76c50x PCMCIA cards");
82
83/*====================================================================*/
84
85/*
86 The event() function is this driver's Card Services event handler.
87 It will be called by Card Services when an appropriate card status
88 event is received. The config() and release() entry points are
89 used to configure or release a socket, in response to card
90 insertion and ejection events. They are invoked from the atmel_cs
91 event handler.
92*/
93
94static void atmel_config(dev_link_t *link);
95static void atmel_release(dev_link_t *link);
96static int atmel_event(event_t event, int priority,
97 event_callback_args_t *args);
98
99/*
100 The attach() and detach() entry points are used to create and destroy
101 "instances" of the driver, where each instance represents everything
102 needed to manage one actual PCMCIA card.
103*/
104
105static dev_link_t *atmel_attach(void);
Dominik Brodowskicc3b4862005-11-14 21:23:14 +0100106static void atmel_detach(struct pcmcia_device *p_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
108/*
109 You'll also need to prototype all the functions that will actually
110 be used to talk to your device. See 'pcmem_cs' for a good example
111 of a fully self-sufficient driver; the other drivers rely more or
112 less on other parts of the kernel.
113*/
114
115/*
116 The dev_info variable is the "key" that is used to match up this
117 device driver with appropriate cards, through the card configuration
118 database.
119*/
120
121static dev_info_t dev_info = "atmel_cs";
122
123/*
124 A linked list of "instances" of the atmelnet device. Each actual
125 PCMCIA card corresponds to one device instance, and is described
126 by one dev_link_t structure (defined in ds.h).
127
128 You may not want to use a linked list for this -- for example, the
129 memory card driver uses an array of dev_link_t pointers, where minor
130 device numbers are used to derive the corresponding array index.
131*/
132
133static dev_link_t *dev_list = NULL;
134
135/*
136 A dev_link_t structure has fields for most things that are needed
137 to keep track of a socket, but there will usually be some device
138 specific information that also needs to be kept track of. The
139 'priv' pointer in a dev_link_t structure can be used to point to
140 a device-specific private data structure, like this.
141
142 A driver needs to provide a dev_node_t structure for each device
143 on a card. In some cases, there is only one device per card (for
144 example, ethernet cards, modems). In other cases, there may be
145 many actual or logical devices (SCSI adapters, memory cards with
146 multiple partitions). The dev_node_t structures need to be kept
147 in a linked list starting at the 'dev' field of a dev_link_t
148 structure. We allocate them in the card's private data structure,
149 because they generally shouldn't be allocated dynamically.
150
151 In this case, we also provide a flag to indicate if a device is
152 "stopped" due to a power management event, or card ejection. The
153 device IO routines can use a flag like this to throttle IO to a
154 card that is not ready to accept it.
155*/
156
157typedef struct local_info_t {
158 dev_node_t node;
159 struct net_device *eth_dev;
160} local_info_t;
161
162/*======================================================================
163
164 atmel_attach() creates an "instance" of the driver, allocating
165 local data structures for one device. The device is registered
166 with Card Services.
167
168 The dev_link structure is initialized, but we don't actually
169 configure the card at this point -- we wait until we receive a
170 card insertion event.
171
172 ======================================================================*/
173
174static dev_link_t *atmel_attach(void)
175{
176 client_reg_t client_reg;
177 dev_link_t *link;
178 local_info_t *local;
179 int ret;
180
181 DEBUG(0, "atmel_attach()\n");
182
183 /* Initialize the dev_link_t structure */
Panagiotis Issarisb69a3aa2005-11-08 00:03:15 +0100184 link = kzalloc(sizeof(struct dev_link_t), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 if (!link) {
186 printk(KERN_ERR "atmel_cs: no memory for new device\n");
187 return NULL;
188 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189
190 /* Interrupt setup */
191 link->irq.Attributes = IRQ_TYPE_EXCLUSIVE;
192 link->irq.IRQInfo1 = IRQ_LEVEL_ID;
193 link->irq.Handler = NULL;
194
195 /*
196 General socket configuration defaults can go here. In this
197 client, we assume very little, and rely on the CIS for almost
198 everything. In most clients, many details (i.e., number, sizes,
199 and attributes of IO windows) are fixed by the nature of the
200 device, and can be hard-wired here.
201 */
202 link->conf.Attributes = 0;
203 link->conf.Vcc = 50;
204 link->conf.IntType = INT_MEMORY_AND_IO;
205
206 /* Allocate space for private device-specific data */
Panagiotis Issarisb69a3aa2005-11-08 00:03:15 +0100207 local = kzalloc(sizeof(local_info_t), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 if (!local) {
209 printk(KERN_ERR "atmel_cs: no memory for new device\n");
210 kfree (link);
211 return NULL;
212 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 link->priv = local;
214
215 /* Register with Card Services */
216 link->next = dev_list;
217 dev_list = link;
218 client_reg.dev_info = &dev_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 client_reg.Version = 0x0210;
220 client_reg.event_callback_args.client_data = link;
221 ret = pcmcia_register_client(&link->handle, &client_reg);
222 if (ret != 0) {
223 cs_error(link->handle, RegisterClient, ret);
Dominik Brodowskicc3b4862005-11-14 21:23:14 +0100224 atmel_detach(link->handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 return NULL;
226 }
227
228 return link;
229} /* atmel_attach */
230
231/*======================================================================
232
233 This deletes a driver "instance". The device is de-registered
234 with Card Services. If it has been released, all local data
235 structures are freed. Otherwise, the structures will be freed
236 when the device is released.
237
238 ======================================================================*/
239
Dominik Brodowskicc3b4862005-11-14 21:23:14 +0100240static void atmel_detach(struct pcmcia_device *p_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241{
Dominik Brodowskicc3b4862005-11-14 21:23:14 +0100242 dev_link_t *link = dev_to_instance(p_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 dev_link_t **linkp;
244
245 DEBUG(0, "atmel_detach(0x%p)\n", link);
246
247 /* Locate device structure */
248 for (linkp = &dev_list; *linkp; linkp = &(*linkp)->next)
249 if (*linkp == link) break;
250 if (*linkp == NULL)
251 return;
252
253 if (link->state & DEV_CONFIG)
254 atmel_release(link);
255
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 /* Unlink device structure, free pieces */
257 *linkp = link->next;
Jesper Juhlb4558ea2005-10-28 16:53:13 -0400258 kfree(link->priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 kfree(link);
260}
261
262/*======================================================================
263
264 atmel_config() is scheduled to run after a CARD_INSERTION event
265 is received, to configure the PCMCIA socket, and to make the
266 device available to the system.
267
268 ======================================================================*/
269
270#define CS_CHECK(fn, ret) \
271do { last_fn = (fn); if ((last_ret = (ret)) != 0) goto cs_failed; } while (0)
272
273/* Call-back function to interrogate PCMCIA-specific information
274 about the current existance of the card */
275static int card_present(void *arg)
276{
277 dev_link_t *link = (dev_link_t *)arg;
278 if (link->state & DEV_SUSPEND)
279 return 0;
280 else if (link->state & DEV_PRESENT)
281 return 1;
282
283 return 0;
284}
285
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286static void atmel_config(dev_link_t *link)
287{
288 client_handle_t handle;
289 tuple_t tuple;
290 cisparse_t parse;
291 local_info_t *dev;
292 int last_fn, last_ret;
293 u_char buf[64];
simon@thekelleys.org.ukb16a2282005-10-30 15:50:15 +0000294 struct pcmcia_device_id *did;
295
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 handle = link->handle;
297 dev = link->priv;
simon@thekelleys.org.ukb16a2282005-10-30 15:50:15 +0000298 did = handle_to_dev(handle).driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299
300 DEBUG(0, "atmel_config(0x%p)\n", link);
301
302 tuple.Attributes = 0;
303 tuple.TupleData = buf;
304 tuple.TupleDataMax = sizeof(buf);
305 tuple.TupleOffset = 0;
306
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 /*
308 This reads the card's CONFIG tuple to find its configuration
309 registers.
310 */
311 tuple.DesiredTuple = CISTPL_CONFIG;
312 CS_CHECK(GetFirstTuple, pcmcia_get_first_tuple(handle, &tuple));
313 CS_CHECK(GetTupleData, pcmcia_get_tuple_data(handle, &tuple));
314 CS_CHECK(ParseTuple, pcmcia_parse_tuple(handle, &tuple, &parse));
315 link->conf.ConfigBase = parse.config.base;
316 link->conf.Present = parse.config.rmask[0];
317
318 /* Configure card */
319 link->state |= DEV_CONFIG;
320
321 /*
322 In this loop, we scan the CIS for configuration table entries,
323 each of which describes a valid card configuration, including
324 voltage, IO window, memory window, and interrupt settings.
325
326 We make no assumptions about the card to be configured: we use
327 just the information available in the CIS. In an ideal world,
328 this would work for any PCMCIA card, but it requires a complete
329 and accurate CIS. In practice, a driver usually "knows" most of
330 these things without consulting the CIS, and most client drivers
331 will only use the CIS to fill in implementation-defined details.
332 */
333 tuple.DesiredTuple = CISTPL_CFTABLE_ENTRY;
334 CS_CHECK(GetFirstTuple, pcmcia_get_first_tuple(handle, &tuple));
335 while (1) {
336 cistpl_cftable_entry_t dflt = { 0 };
337 cistpl_cftable_entry_t *cfg = &(parse.cftable_entry);
338 if (pcmcia_get_tuple_data(handle, &tuple) != 0 ||
339 pcmcia_parse_tuple(handle, &tuple, &parse) != 0)
340 goto next_entry;
341
342 if (cfg->flags & CISTPL_CFTABLE_DEFAULT) dflt = *cfg;
343 if (cfg->index == 0) goto next_entry;
344 link->conf.ConfigIndex = cfg->index;
345
346 /* Does this card need audio output? */
347 if (cfg->flags & CISTPL_CFTABLE_AUDIO) {
348 link->conf.Attributes |= CONF_ENABLE_SPKR;
349 link->conf.Status = CCSR_AUDIO_ENA;
350 }
351
352 /* Use power settings for Vcc and Vpp if present */
353 /* Note that the CIS values need to be rescaled */
354 if (cfg->vcc.present & (1<<CISTPL_POWER_VNOM))
355 link->conf.Vcc = cfg->vcc.param[CISTPL_POWER_VNOM]/10000;
356 else if (dflt.vcc.present & (1<<CISTPL_POWER_VNOM))
357 link->conf.Vcc = dflt.vcc.param[CISTPL_POWER_VNOM]/10000;
358
359 if (cfg->vpp1.present & (1<<CISTPL_POWER_VNOM))
360 link->conf.Vpp1 = link->conf.Vpp2 =
361 cfg->vpp1.param[CISTPL_POWER_VNOM]/10000;
362 else if (dflt.vpp1.present & (1<<CISTPL_POWER_VNOM))
363 link->conf.Vpp1 = link->conf.Vpp2 =
364 dflt.vpp1.param[CISTPL_POWER_VNOM]/10000;
365
366 /* Do we need to allocate an interrupt? */
367 if (cfg->irq.IRQInfo1 || dflt.irq.IRQInfo1)
368 link->conf.Attributes |= CONF_ENABLE_IRQ;
369
370 /* IO window settings */
371 link->io.NumPorts1 = link->io.NumPorts2 = 0;
372 if ((cfg->io.nwin > 0) || (dflt.io.nwin > 0)) {
373 cistpl_io_t *io = (cfg->io.nwin) ? &cfg->io : &dflt.io;
374 link->io.Attributes1 = IO_DATA_PATH_WIDTH_AUTO;
375 if (!(io->flags & CISTPL_IO_8BIT))
376 link->io.Attributes1 = IO_DATA_PATH_WIDTH_16;
377 if (!(io->flags & CISTPL_IO_16BIT))
378 link->io.Attributes1 = IO_DATA_PATH_WIDTH_8;
379 link->io.BasePort1 = io->win[0].base;
380 link->io.NumPorts1 = io->win[0].len;
381 if (io->nwin > 1) {
382 link->io.Attributes2 = link->io.Attributes1;
383 link->io.BasePort2 = io->win[1].base;
384 link->io.NumPorts2 = io->win[1].len;
385 }
386 }
387
388 /* This reserves IO space but doesn't actually enable it */
389 if (pcmcia_request_io(link->handle, &link->io) != 0)
390 goto next_entry;
391
392 /* If we got this far, we're cool! */
393 break;
394
395 next_entry:
396 CS_CHECK(GetNextTuple, pcmcia_get_next_tuple(handle, &tuple));
397 }
398
399 /*
400 Allocate an interrupt line. Note that this does not assign a
401 handler to the interrupt, unless the 'Handler' member of the
402 irq structure is initialized.
403 */
404 if (link->conf.Attributes & CONF_ENABLE_IRQ)
405 CS_CHECK(RequestIRQ, pcmcia_request_irq(link->handle, &link->irq));
406
407 /*
408 This actually configures the PCMCIA socket -- setting up
409 the I/O windows and the interrupt mapping, and putting the
410 card and host interface into "Memory and IO" mode.
411 */
412 CS_CHECK(RequestConfiguration, pcmcia_request_configuration(link->handle, &link->conf));
413
414 if (link->irq.AssignedIRQ == 0) {
415 printk(KERN_ALERT
416 "atmel: cannot assign IRQ: check that CONFIG_ISA is set in kernel config.");
417 goto cs_failed;
418 }
419
420 ((local_info_t*)link->priv)->eth_dev =
421 init_atmel_card(link->irq.AssignedIRQ,
422 link->io.BasePort1,
simon@thekelleys.org.ukb16a2282005-10-30 15:50:15 +0000423 did ? did->driver_info : ATMEL_FW_TYPE_NONE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 &handle_to_dev(handle),
425 card_present,
426 link);
427 if (!((local_info_t*)link->priv)->eth_dev)
simon@thekelleys.org.ukb16a2282005-10-30 15:50:15 +0000428 goto cs_failed;
429
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430
431 /*
432 At this point, the dev_node_t structure(s) need to be
433 initialized and arranged in a linked list at link->dev.
434 */
435 strcpy(dev->node.dev_name, ((local_info_t*)link->priv)->eth_dev->name );
436 dev->node.major = dev->node.minor = 0;
437 link->dev = &dev->node;
simon@thekelleys.org.ukb16a2282005-10-30 15:50:15 +0000438
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 link->state &= ~DEV_CONFIG_PENDING;
440 return;
441
442 cs_failed:
443 cs_error(link->handle, last_fn, last_ret);
444 atmel_release(link);
445}
446
447/*======================================================================
448
449 After a card is removed, atmel_release() will unregister the
450 device, and release the PCMCIA configuration. If the device is
451 still open, this will be postponed until it is closed.
452
453 ======================================================================*/
454
455static void atmel_release(dev_link_t *link)
456{
457 struct net_device *dev = ((local_info_t*)link->priv)->eth_dev;
458
459 DEBUG(0, "atmel_release(0x%p)\n", link);
460
461 /* Unlink the device chain */
462 link->dev = NULL;
463
464 if (dev)
simon@thekelleys.org.ukb16a2282005-10-30 15:50:15 +0000465 stop_atmel_card(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 ((local_info_t*)link->priv)->eth_dev = NULL;
467
468 /* Don't bother checking to see if these succeed or not */
469 pcmcia_release_configuration(link->handle);
470 if (link->io.NumPorts1)
471 pcmcia_release_io(link->handle, &link->io);
472 if (link->irq.AssignedIRQ)
473 pcmcia_release_irq(link->handle, &link->irq);
474 link->state &= ~DEV_CONFIG;
475}
476
Dominik Brodowski98e4c282005-11-14 21:21:18 +0100477static int atmel_suspend(struct pcmcia_device *dev)
478{
479 dev_link_t *link = dev_to_instance(dev);
480 local_info_t *local = link->priv;
481
482 link->state |= DEV_SUSPEND;
483 if (link->state & DEV_CONFIG) {
484 netif_device_detach(local->eth_dev);
485 pcmcia_release_configuration(link->handle);
486 }
487
488 return 0;
489}
490
491static int atmel_resume(struct pcmcia_device *dev)
492{
493 dev_link_t *link = dev_to_instance(dev);
494 local_info_t *local = link->priv;
495
496 link->state &= ~DEV_SUSPEND;
497 if (link->state & DEV_CONFIG) {
498 pcmcia_request_configuration(link->handle, &link->conf);
499 atmel_open(local->eth_dev);
500 netif_device_attach(local->eth_dev);
501 }
502
503 return 0;
504}
505
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506/*======================================================================
507
508 The card status event handler. Mostly, this schedules other
509 stuff to run after an event is received.
510
511 When a CARD_REMOVAL event is received, we immediately set a
512 private flag to block future accesses to this device. All the
513 functions that actually access the device should check this flag
514 to make sure the card is still present.
515
516 ======================================================================*/
517
518static int atmel_event(event_t event, int priority,
519 event_callback_args_t *args)
520{
521 dev_link_t *link = args->client_data;
Dominik Brodowskicc3b4862005-11-14 21:23:14 +0100522
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 DEBUG(1, "atmel_event(0x%06x)\n", event);
Dominik Brodowskicc3b4862005-11-14 21:23:14 +0100524
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 switch (event) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 case CS_EVENT_CARD_INSERTION:
527 link->state |= DEV_PRESENT | DEV_CONFIG_PENDING;
528 atmel_config(link);
529 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 }
531 return 0;
532} /* atmel_event */
533
534/*====================================================================*/
simon@thekelleys.org.ukb16a2282005-10-30 15:50:15 +0000535/* We use the driver_info field to store the correct firmware type for a card. */
536
537#define PCMCIA_DEVICE_MANF_CARD_INFO(manf, card, info) { \
538 .match_flags = PCMCIA_DEV_ID_MATCH_MANF_ID| \
539 PCMCIA_DEV_ID_MATCH_CARD_ID, \
540 .manf_id = (manf), \
541 .card_id = (card), \
542 .driver_info = (kernel_ulong_t)(info), }
543
544#define PCMCIA_DEVICE_PROD_ID12_INFO(v1, v2, vh1, vh2, info) { \
545 .match_flags = PCMCIA_DEV_ID_MATCH_PROD_ID1| \
546 PCMCIA_DEV_ID_MATCH_PROD_ID2, \
547 .prod_id = { (v1), (v2), NULL, NULL }, \
548 .prod_id_hash = { (vh1), (vh2), 0, 0 }, \
549 .driver_info = (kernel_ulong_t)(info), }
550
Dominik Brodowski4a17a112005-06-27 16:28:34 -0700551static struct pcmcia_device_id atmel_ids[] = {
simon@thekelleys.org.ukb16a2282005-10-30 15:50:15 +0000552 PCMCIA_DEVICE_MANF_CARD_INFO(0x0101, 0x0620, ATMEL_FW_TYPE_502_3COM),
553 PCMCIA_DEVICE_MANF_CARD_INFO(0x0101, 0x0696, ATMEL_FW_TYPE_502_3COM),
554 PCMCIA_DEVICE_MANF_CARD_INFO(0x01bf, 0x3302, ATMEL_FW_TYPE_502E),
555 PCMCIA_DEVICE_MANF_CARD_INFO(0xd601, 0x0007, ATMEL_FW_TYPE_502),
556 PCMCIA_DEVICE_PROD_ID12_INFO("11WAVE", "11WP611AL-E", 0x9eb2da1f, 0xc9a0d3f9, ATMEL_FW_TYPE_502E),
557 PCMCIA_DEVICE_PROD_ID12_INFO("ATMEL", "AT76C502AR", 0xabda4164, 0x41b37e1f, ATMEL_FW_TYPE_502),
558 PCMCIA_DEVICE_PROD_ID12_INFO("ATMEL", "AT76C502AR_D", 0xabda4164, 0x3675d704, ATMEL_FW_TYPE_502D),
559 PCMCIA_DEVICE_PROD_ID12_INFO("ATMEL", "AT76C502AR_E", 0xabda4164, 0x4172e792, ATMEL_FW_TYPE_502E),
560 PCMCIA_DEVICE_PROD_ID12_INFO("ATMEL", "AT76C504_R", 0xabda4164, 0x917f3d72, ATMEL_FW_TYPE_504_2958),
561 PCMCIA_DEVICE_PROD_ID12_INFO("ATMEL", "AT76C504", 0xabda4164, 0x5040670a, ATMEL_FW_TYPE_504),
562 PCMCIA_DEVICE_PROD_ID12_INFO("ATMEL", "AT76C504A", 0xabda4164, 0xe15ed87f, ATMEL_FW_TYPE_504A_2958),
563 PCMCIA_DEVICE_PROD_ID12_INFO("BT", "Voyager 1020 Laptop Adapter", 0xae49b86a, 0x1e957cd5, ATMEL_FW_TYPE_502),
564 PCMCIA_DEVICE_PROD_ID12_INFO("CNet", "CNWLC 11Mbps Wireless PC Card V-5", 0xbc477dde, 0x502fae6b, ATMEL_FW_TYPE_502E),
565 PCMCIA_DEVICE_PROD_ID12_INFO("IEEE 802.11b", "Wireless LAN PC Card", 0x5b878724, 0x122f1df6, ATMEL_FW_TYPE_502),
566 PCMCIA_DEVICE_PROD_ID12_INFO("IEEE 802.11b", "Wireless LAN Card S", 0x5b878724, 0x5fba533a, ATMEL_FW_TYPE_504_2958),
567 PCMCIA_DEVICE_PROD_ID12_INFO("OEM", "11Mbps Wireless LAN PC Card V-3", 0xfea54c90, 0x1c5b0f68, ATMEL_FW_TYPE_502),
568 PCMCIA_DEVICE_PROD_ID12_INFO("SMC", "2632W", 0xc4f8b18b, 0x30f38774, ATMEL_FW_TYPE_502D),
569 PCMCIA_DEVICE_PROD_ID12_INFO("SMC", "2632W-V2", 0xc4f8b18b, 0x172d1377, ATMEL_FW_TYPE_502),
570 PCMCIA_DEVICE_PROD_ID12_INFO("Wireless", "PC_CARD", 0xa407ecdd, 0x119f6314, ATMEL_FW_TYPE_502D),
571 PCMCIA_DEVICE_PROD_ID12_INFO("WLAN", "802.11b PC CARD", 0x575c516c, 0xb1f6dbc4, ATMEL_FW_TYPE_502D),
572 PCMCIA_DEVICE_PROD_ID12_INFO("LG", "LW2100N", 0xb474d43a, 0x6b1fec94, ATMEL_FW_TYPE_502E),
Dominik Brodowski4a17a112005-06-27 16:28:34 -0700573 PCMCIA_DEVICE_NULL
574};
simon@thekelleys.org.ukb16a2282005-10-30 15:50:15 +0000575
Dominik Brodowski4a17a112005-06-27 16:28:34 -0700576MODULE_DEVICE_TABLE(pcmcia, atmel_ids);
577
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578static struct pcmcia_driver atmel_driver = {
Dominik Brodowski1e212f32005-07-07 17:59:00 -0700579 .owner = THIS_MODULE,
580 .drv = {
581 .name = "atmel_cs",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 },
Dominik Brodowski1e212f32005-07-07 17:59:00 -0700583 .attach = atmel_attach,
584 .event = atmel_event,
Dominik Brodowskicc3b4862005-11-14 21:23:14 +0100585 .remove = atmel_detach,
Dominik Brodowski4a17a112005-06-27 16:28:34 -0700586 .id_table = atmel_ids,
Dominik Brodowski98e4c282005-11-14 21:21:18 +0100587 .suspend = atmel_suspend,
588 .resume = atmel_resume,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589};
590
591static int atmel_cs_init(void)
592{
593 return pcmcia_register_driver(&atmel_driver);
594}
595
596static void atmel_cs_cleanup(void)
597{
598 pcmcia_unregister_driver(&atmel_driver);
599 BUG_ON(dev_list != NULL);
600}
601
602/*
603 This program is free software; you can redistribute it and/or
604 modify it under the terms of the GNU General Public License
605 as published by the Free Software Foundation; either version 2
606 of the License, or (at your option) any later version.
607
608 This program is distributed in the hope that it will be useful,
609 but WITHOUT ANY WARRANTY; without even the implied warranty of
610 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
611 GNU General Public License for more details.
612
613 In addition:
614
615 Redistribution and use in source and binary forms, with or without
616 modification, are permitted provided that the following conditions
617 are met:
618
619 1. Redistributions of source code must retain the above copyright
620 notice, this list of conditions and the following disclaimer.
621 2. Redistributions in binary form must reproduce the above copyright
622 notice, this list of conditions and the following disclaimer in the
623 documentation and/or other materials provided with the distribution.
624 3. The name of the author may not be used to endorse or promote
625 products derived from this software without specific prior written
626 permission.
627
628 THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
629 IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
630 WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
631 ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
632 INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
633 (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
634 SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
635 HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
636 STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
637 IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
638 POSSIBILITY OF SUCH DAMAGE.
639*/
640
641module_init(atmel_cs_init);
642module_exit(atmel_cs_cleanup);