blob: baf733e86474874102db2ef2fd8ccaaa20fbe868 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*======================================================================
2
3 A Sedlbauer PCMCIA client driver
4
5 This driver is for the Sedlbauer Speed Star and Speed Star II,
6 which are ISDN PCMCIA Cards.
7
8 The contents of this file are subject to the Mozilla Public
9 License Version 1.1 (the "License"); you may not use this file
10 except in compliance with the License. You may obtain a copy of
11 the License at http://www.mozilla.org/MPL/
12
13 Software distributed under the License is distributed on an "AS
14 IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
15 implied. See the License for the specific language governing
16 rights and limitations under the License.
17
18 The initial developer of the original code is David A. Hinds
19 <dahinds@users.sourceforge.net>. Portions created by David A. Hinds
20 are Copyright (C) 1999 David A. Hinds. All Rights Reserved.
21
22 Modifications from dummy_cs.c are Copyright (C) 1999-2001 Marcus Niemann
23 <maniemann@users.sourceforge.net>. All Rights Reserved.
24
25 Alternatively, the contents of this file may be used under the
26 terms of the GNU General Public License version 2 (the "GPL"), in
27 which case the provisions of the GPL are applicable instead of the
28 above. If you wish to allow the use of your version of this file
29 only under the terms of the GPL and not to allow others to use
30 your version of this file under the MPL, indicate your decision
31 by deleting the provisions above and replace them with the notice
32 and other provisions required by the GPL. If you do not delete
33 the provisions above, a recipient may use your version of this
34 file under either the MPL or the GPL.
35
36======================================================================*/
37
38#include <linux/kernel.h>
39#include <linux/module.h>
40#include <linux/init.h>
41#include <linux/sched.h>
42#include <linux/ptrace.h>
43#include <linux/slab.h>
44#include <linux/string.h>
45#include <linux/timer.h>
46#include <linux/ioport.h>
47#include <asm/io.h>
48#include <asm/system.h>
49
50#include <pcmcia/version.h>
51#include <pcmcia/cs_types.h>
52#include <pcmcia/cs.h>
53#include <pcmcia/cistpl.h>
54#include <pcmcia/cisreg.h>
55#include <pcmcia/ds.h>
56#include "hisax_cfg.h"
57
58MODULE_DESCRIPTION("ISDN4Linux: PCMCIA client driver for Sedlbauer cards");
59MODULE_AUTHOR("Marcus Niemann");
60MODULE_LICENSE("Dual MPL/GPL");
61
62/*
63 All the PCMCIA modules use PCMCIA_DEBUG to control debugging. If
64 you do not define PCMCIA_DEBUG at all, all the debug code will be
65 left out. If you compile with PCMCIA_DEBUG=0, the debug code will
66 be present but disabled -- but it can then be enabled for specific
67 modules at load time with a 'pc_debug=#' option to insmod.
68*/
69
70#ifdef PCMCIA_DEBUG
71static int pc_debug = PCMCIA_DEBUG;
72module_param(pc_debug, int, 0);
73#define DEBUG(n, args...) if (pc_debug>(n)) printk(KERN_DEBUG args);
74static char *version =
75"sedlbauer_cs.c 1.1a 2001/01/28 15:04:04 (M.Niemann)";
76#else
77#define DEBUG(n, args...)
78#endif
79
80
81/*====================================================================*/
82
83/* Parameters that can be set with 'insmod' */
84
85static int protocol = 2; /* EURO-ISDN Default */
86module_param(protocol, int, 0);
87
88/*====================================================================*/
89
90/*
91 The event() function is this driver's Card Services event handler.
92 It will be called by Card Services when an appropriate card status
93 event is received. The config() and release() entry points are
94 used to configure or release a socket, in response to card
95 insertion and ejection events. They are invoked from the sedlbauer
96 event handler.
97*/
98
99static void sedlbauer_config(dev_link_t *link);
100static void sedlbauer_release(dev_link_t *link);
101static int sedlbauer_event(event_t event, int priority,
102 event_callback_args_t *args);
103
104/*
105 The attach() and detach() entry points are used to create and destroy
106 "instances" of the driver, where each instance represents everything
107 needed to manage one actual PCMCIA card.
108*/
109
110static dev_link_t *sedlbauer_attach(void);
111static void sedlbauer_detach(dev_link_t *);
112
113/*
114 You'll also need to prototype all the functions that will actually
115 be used to talk to your device. See 'memory_cs' for a good example
116 of a fully self-sufficient driver; the other drivers rely more or
117 less on other parts of the kernel.
118*/
119
120/*
121 The dev_info variable is the "key" that is used to match up this
122 device driver with appropriate cards, through the card configuration
123 database.
124*/
125
126static dev_info_t dev_info = "sedlbauer_cs";
127
128/*
129 A linked list of "instances" of the sedlbauer device. Each actual
130 PCMCIA card corresponds to one device instance, and is described
131 by one dev_link_t structure (defined in ds.h).
132
133 You may not want to use a linked list for this -- for example, the
134 memory card driver uses an array of dev_link_t pointers, where minor
135 device numbers are used to derive the corresponding array index.
136*/
137
138static dev_link_t *dev_list = NULL;
139
140/*
141 A dev_link_t structure has fields for most things that are needed
142 to keep track of a socket, but there will usually be some device
143 specific information that also needs to be kept track of. The
144 'priv' pointer in a dev_link_t structure can be used to point to
145 a device-specific private data structure, like this.
146
147 To simplify the data structure handling, we actually include the
148 dev_link_t structure in the device's private data structure.
149
150 A driver needs to provide a dev_node_t structure for each device
151 on a card. In some cases, there is only one device per card (for
152 example, ethernet cards, modems). In other cases, there may be
153 many actual or logical devices (SCSI adapters, memory cards with
154 multiple partitions). The dev_node_t structures need to be kept
155 in a linked list starting at the 'dev' field of a dev_link_t
156 structure. We allocate them in the card's private data structure,
157 because they generally shouldn't be allocated dynamically.
158
159 In this case, we also provide a flag to indicate if a device is
160 "stopped" due to a power management event, or card ejection. The
161 device IO routines can use a flag like this to throttle IO to a
162 card that is not ready to accept it.
163*/
164
165typedef struct local_info_t {
166 dev_link_t link;
167 dev_node_t node;
168 int stop;
169 int cardnr;
170} local_info_t;
171
172/*======================================================================
173
174 sedlbauer_attach() creates an "instance" of the driver, allocating
175 local data structures for one device. The device is registered
176 with Card Services.
177
178 The dev_link structure is initialized, but we don't actually
179 configure the card at this point -- we wait until we receive a
180 card insertion event.
181
182======================================================================*/
183
184static dev_link_t *sedlbauer_attach(void)
185{
186 local_info_t *local;
187 dev_link_t *link;
188 client_reg_t client_reg;
189 int ret;
190
191 DEBUG(0, "sedlbauer_attach()\n");
192
193 /* Allocate space for private device-specific data */
194 local = kmalloc(sizeof(local_info_t), GFP_KERNEL);
195 if (!local) return NULL;
196 memset(local, 0, sizeof(local_info_t));
197 local->cardnr = -1;
198 link = &local->link; link->priv = local;
199
200 /* Interrupt setup */
201 link->irq.Attributes = IRQ_TYPE_EXCLUSIVE;
202 link->irq.IRQInfo1 = IRQ_LEVEL_ID;
203 link->irq.Handler = NULL;
204
205 /*
206 General socket configuration defaults can go here. In this
207 client, we assume very little, and rely on the CIS for almost
208 everything. In most clients, many details (i.e., number, sizes,
209 and attributes of IO windows) are fixed by the nature of the
210 device, and can be hard-wired here.
211 */
212
213 /* from old sedl_cs
214 */
215 /* The io structure describes IO port mapping */
216 link->io.NumPorts1 = 8;
217 link->io.Attributes1 = IO_DATA_PATH_WIDTH_8;
218 link->io.IOAddrLines = 3;
219
220
221 link->conf.Attributes = 0;
222 link->conf.Vcc = 50;
223 link->conf.IntType = INT_MEMORY_AND_IO;
224
225 /* Register with Card Services */
226 link->next = dev_list;
227 dev_list = link;
228 client_reg.dev_info = &dev_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 client_reg.Version = 0x0210;
230 client_reg.event_callback_args.client_data = link;
231 ret = pcmcia_register_client(&link->handle, &client_reg);
232 if (ret != CS_SUCCESS) {
233 cs_error(link->handle, RegisterClient, ret);
234 sedlbauer_detach(link);
235 return NULL;
236 }
237
238 return link;
239} /* sedlbauer_attach */
240
241/*======================================================================
242
243 This deletes a driver "instance". The device is de-registered
244 with Card Services. If it has been released, all local data
245 structures are freed. Otherwise, the structures will be freed
246 when the device is released.
247
248======================================================================*/
249
250static void sedlbauer_detach(dev_link_t *link)
251{
252 dev_link_t **linkp;
253
254 DEBUG(0, "sedlbauer_detach(0x%p)\n", link);
255
256 /* Locate device structure */
257 for (linkp = &dev_list; *linkp; linkp = &(*linkp)->next)
258 if (*linkp == link) break;
259 if (*linkp == NULL)
260 return;
261
262 /*
263 If the device is currently configured and active, we won't
264 actually delete it yet. Instead, it is marked so that when
265 the release() function is called, that will trigger a proper
266 detach().
267 */
268 if (link->state & DEV_CONFIG) {
269#ifdef PCMCIA_DEBUG
270 printk(KERN_DEBUG "sedlbauer_cs: detach postponed, '%s' "
271 "still locked\n", link->dev->dev_name);
272#endif
273 link->state |= DEV_STALE_LINK;
274 return;
275 }
276
277 /* Break the link with Card Services */
278 if (link->handle)
279 pcmcia_deregister_client(link->handle);
280
281 /* Unlink device structure, and free it */
282 *linkp = link->next;
283 /* This points to the parent local_info_t struct */
284 kfree(link->priv);
285} /* sedlbauer_detach */
286
287/*======================================================================
288
289 sedlbauer_config() is scheduled to run after a CARD_INSERTION event
290 is received, to configure the PCMCIA socket, and to make the
291 device available to the system.
292
293======================================================================*/
294#define CS_CHECK(fn, ret) \
295do { last_fn = (fn); if ((last_ret = (ret)) != 0) goto cs_failed; } while (0)
296
297static void sedlbauer_config(dev_link_t *link)
298{
299 client_handle_t handle = link->handle;
300 local_info_t *dev = link->priv;
301 tuple_t tuple;
302 cisparse_t parse;
303 int last_fn, last_ret;
304 u8 buf[64];
305 config_info_t conf;
306 win_req_t req;
307 memreq_t map;
308 IsdnCard_t icard;
309
310 DEBUG(0, "sedlbauer_config(0x%p)\n", link);
311
312 /*
313 This reads the card's CONFIG tuple to find its configuration
314 registers.
315 */
316 tuple.DesiredTuple = CISTPL_CONFIG;
317 tuple.Attributes = 0;
318 tuple.TupleData = buf;
319 tuple.TupleDataMax = sizeof(buf);
320 tuple.TupleOffset = 0;
321 CS_CHECK(GetFirstTuple, pcmcia_get_first_tuple(handle, &tuple));
322 CS_CHECK(GetTupleData, pcmcia_get_tuple_data(handle, &tuple));
323 CS_CHECK(ParseTuple, pcmcia_parse_tuple(handle, &tuple, &parse));
324 link->conf.ConfigBase = parse.config.base;
325 link->conf.Present = parse.config.rmask[0];
326
327 /* Configure card */
328 link->state |= DEV_CONFIG;
329
330 /* Look up the current Vcc */
331 CS_CHECK(GetConfigurationInfo, pcmcia_get_configuration_info(handle, &conf));
332 link->conf.Vcc = conf.Vcc;
333
334 /*
335 In this loop, we scan the CIS for configuration table entries,
336 each of which describes a valid card configuration, including
337 voltage, IO window, memory window, and interrupt settings.
338
339 We make no assumptions about the card to be configured: we use
340 just the information available in the CIS. In an ideal world,
341 this would work for any PCMCIA card, but it requires a complete
342 and accurate CIS. In practice, a driver usually "knows" most of
343 these things without consulting the CIS, and most client drivers
344 will only use the CIS to fill in implementation-defined details.
345 */
346 tuple.DesiredTuple = CISTPL_CFTABLE_ENTRY;
347 CS_CHECK(GetFirstTuple, pcmcia_get_first_tuple(handle, &tuple));
348 while (1) {
349 cistpl_cftable_entry_t dflt = { 0 };
350 cistpl_cftable_entry_t *cfg = &(parse.cftable_entry);
351 if (pcmcia_get_tuple_data(handle, &tuple) != 0 ||
352 pcmcia_parse_tuple(handle, &tuple, &parse) != 0)
353 goto next_entry;
354
355 if (cfg->flags & CISTPL_CFTABLE_DEFAULT) dflt = *cfg;
356 if (cfg->index == 0) goto next_entry;
357 link->conf.ConfigIndex = cfg->index;
358
359 /* Does this card need audio output? */
360 if (cfg->flags & CISTPL_CFTABLE_AUDIO) {
361 link->conf.Attributes |= CONF_ENABLE_SPKR;
362 link->conf.Status = CCSR_AUDIO_ENA;
363 }
364
365 /* Use power settings for Vcc and Vpp if present */
366 /* Note that the CIS values need to be rescaled */
367 if (cfg->vcc.present & (1<<CISTPL_POWER_VNOM)) {
368 if (conf.Vcc != cfg->vcc.param[CISTPL_POWER_VNOM]/10000)
369 goto next_entry;
370 } else if (dflt.vcc.present & (1<<CISTPL_POWER_VNOM)) {
371 if (conf.Vcc != dflt.vcc.param[CISTPL_POWER_VNOM]/10000)
372 goto next_entry;
373 }
374
375 if (cfg->vpp1.present & (1<<CISTPL_POWER_VNOM))
376 link->conf.Vpp1 = link->conf.Vpp2 =
377 cfg->vpp1.param[CISTPL_POWER_VNOM]/10000;
378 else if (dflt.vpp1.present & (1<<CISTPL_POWER_VNOM))
379 link->conf.Vpp1 = link->conf.Vpp2 =
380 dflt.vpp1.param[CISTPL_POWER_VNOM]/10000;
381
382 /* Do we need to allocate an interrupt? */
383 if (cfg->irq.IRQInfo1 || dflt.irq.IRQInfo1)
384 link->conf.Attributes |= CONF_ENABLE_IRQ;
385
386 /* IO window settings */
387 link->io.NumPorts1 = link->io.NumPorts2 = 0;
388 if ((cfg->io.nwin > 0) || (dflt.io.nwin > 0)) {
389 cistpl_io_t *io = (cfg->io.nwin) ? &cfg->io : &dflt.io;
390 link->io.Attributes1 = IO_DATA_PATH_WIDTH_AUTO;
391 if (!(io->flags & CISTPL_IO_8BIT))
392 link->io.Attributes1 = IO_DATA_PATH_WIDTH_16;
393 if (!(io->flags & CISTPL_IO_16BIT))
394 link->io.Attributes1 = IO_DATA_PATH_WIDTH_8;
395/* new in dummy.cs 2001/01/28 MN
396 link->io.IOAddrLines = io->flags & CISTPL_IO_LINES_MASK;
397*/
398 link->io.BasePort1 = io->win[0].base;
399 link->io.NumPorts1 = io->win[0].len;
400 if (io->nwin > 1) {
401 link->io.Attributes2 = link->io.Attributes1;
402 link->io.BasePort2 = io->win[1].base;
403 link->io.NumPorts2 = io->win[1].len;
404 }
405 /* This reserves IO space but doesn't actually enable it */
406 if (pcmcia_request_io(link->handle, &link->io) != 0)
407 goto next_entry;
408 }
409
410 /*
411 Now set up a common memory window, if needed. There is room
412 in the dev_link_t structure for one memory window handle,
413 but if the base addresses need to be saved, or if multiple
414 windows are needed, the info should go in the private data
415 structure for this device.
416
417 Note that the memory window base is a physical address, and
418 needs to be mapped to virtual space with ioremap() before it
419 is used.
420 */
421 if ((cfg->mem.nwin > 0) || (dflt.mem.nwin > 0)) {
422 cistpl_mem_t *mem =
423 (cfg->mem.nwin) ? &cfg->mem : &dflt.mem;
424 req.Attributes = WIN_DATA_WIDTH_16|WIN_MEMORY_TYPE_CM;
425 req.Attributes |= WIN_ENABLE;
426 req.Base = mem->win[0].host_addr;
427 req.Size = mem->win[0].len;
428/* new in dummy.cs 2001/01/28 MN
429 if (req.Size < 0x1000)
430 req.Size = 0x1000;
431*/
432 req.AccessSpeed = 0;
433 if (pcmcia_request_window(&link->handle, &req, &link->win) != 0)
434 goto next_entry;
435 map.Page = 0; map.CardOffset = mem->win[0].card_addr;
436 if (pcmcia_map_mem_page(link->win, &map) != 0)
437 goto next_entry;
438 }
439 /* If we got this far, we're cool! */
440 break;
441
442 next_entry:
443/* new in dummy.cs 2001/01/28 MN
444 if (link->io.NumPorts1)
445 pcmcia_release_io(link->handle, &link->io);
446*/
447 CS_CHECK(GetNextTuple, pcmcia_get_next_tuple(handle, &tuple));
448 }
449
450 /*
451 Allocate an interrupt line. Note that this does not assign a
452 handler to the interrupt, unless the 'Handler' member of the
453 irq structure is initialized.
454 */
455 if (link->conf.Attributes & CONF_ENABLE_IRQ)
456 CS_CHECK(RequestIRQ, pcmcia_request_irq(link->handle, &link->irq));
457
458 /*
459 This actually configures the PCMCIA socket -- setting up
460 the I/O windows and the interrupt mapping, and putting the
461 card and host interface into "Memory and IO" mode.
462 */
463 CS_CHECK(RequestConfiguration, pcmcia_request_configuration(link->handle, &link->conf));
464
465 /*
466 At this point, the dev_node_t structure(s) need to be
467 initialized and arranged in a linked list at link->dev.
468 */
469 sprintf(dev->node.dev_name, "sedlbauer");
470 dev->node.major = dev->node.minor = 0;
471 link->dev = &dev->node;
472
473 /* Finally, report what we've done */
474 printk(KERN_INFO "%s: index 0x%02x: Vcc %d.%d",
475 dev->node.dev_name, link->conf.ConfigIndex,
476 link->conf.Vcc/10, link->conf.Vcc%10);
477 if (link->conf.Vpp1)
478 printk(", Vpp %d.%d", link->conf.Vpp1/10, link->conf.Vpp1%10);
479 if (link->conf.Attributes & CONF_ENABLE_IRQ)
480 printk(", irq %d", link->irq.AssignedIRQ);
481 if (link->io.NumPorts1)
482 printk(", io 0x%04x-0x%04x", link->io.BasePort1,
483 link->io.BasePort1+link->io.NumPorts1-1);
484 if (link->io.NumPorts2)
485 printk(" & 0x%04x-0x%04x", link->io.BasePort2,
486 link->io.BasePort2+link->io.NumPorts2-1);
487 if (link->win)
488 printk(", mem 0x%06lx-0x%06lx", req.Base,
489 req.Base+req.Size-1);
490 printk("\n");
491
492 link->state &= ~DEV_CONFIG_PENDING;
493
494 icard.para[0] = link->irq.AssignedIRQ;
495 icard.para[1] = link->io.BasePort1;
496 icard.protocol = protocol;
497 icard.typ = ISDN_CTYPE_SEDLBAUER_PCMCIA;
498
499 last_ret = hisax_init_pcmcia(link, &(((local_info_t*)link->priv)->stop), &icard);
500 if (last_ret < 0) {
501 printk(KERN_ERR "sedlbauer_cs: failed to initialize SEDLBAUER PCMCIA %d at i/o %#x\n",
502 last_ret, link->io.BasePort1);
503 sedlbauer_release(link);
504 } else
505 ((local_info_t*)link->priv)->cardnr = last_ret;
506
507 return;
508
509cs_failed:
510 cs_error(link->handle, last_fn, last_ret);
511 sedlbauer_release(link);
512
513} /* sedlbauer_config */
514
515/*======================================================================
516
517 After a card is removed, sedlbauer_release() will unregister the
518 device, and release the PCMCIA configuration. If the device is
519 still open, this will be postponed until it is closed.
520
521======================================================================*/
522
523static void sedlbauer_release(dev_link_t *link)
524{
525 local_info_t *local = link->priv;
526 DEBUG(0, "sedlbauer_release(0x%p)\n", link);
527
528 if (local) {
529 if (local->cardnr >= 0) {
530 /* no unregister function with hisax */
531 HiSax_closecard(local->cardnr);
532 }
533 }
534 /* Unlink the device chain */
535 link->dev = NULL;
536
537 /*
538 In a normal driver, additional code may be needed to release
539 other kernel data structures associated with this device.
540 */
541
542 /* Don't bother checking to see if these succeed or not */
543 if (link->win)
544 pcmcia_release_window(link->win);
545 pcmcia_release_configuration(link->handle);
546 if (link->io.NumPorts1)
547 pcmcia_release_io(link->handle, &link->io);
548 if (link->irq.AssignedIRQ)
549 pcmcia_release_irq(link->handle, &link->irq);
550 link->state &= ~DEV_CONFIG;
551
552 if (link->state & DEV_STALE_LINK)
553 sedlbauer_detach(link);
554
555} /* sedlbauer_release */
556
557/*======================================================================
558
559 The card status event handler. Mostly, this schedules other
560 stuff to run after an event is received.
561
562 When a CARD_REMOVAL event is received, we immediately set a
563 private flag to block future accesses to this device. All the
564 functions that actually access the device should check this flag
565 to make sure the card is still present.
566
567======================================================================*/
568
569static int sedlbauer_event(event_t event, int priority,
570 event_callback_args_t *args)
571{
572 dev_link_t *link = args->client_data;
573 local_info_t *dev = link->priv;
574
575 DEBUG(1, "sedlbauer_event(0x%06x)\n", event);
576
577 switch (event) {
578 case CS_EVENT_CARD_REMOVAL:
579 link->state &= ~DEV_PRESENT;
580 if (link->state & DEV_CONFIG) {
581 ((local_info_t *)link->priv)->stop = 1;
582 sedlbauer_release(link);
583 }
584 break;
585 case CS_EVENT_CARD_INSERTION:
586 link->state |= DEV_PRESENT | DEV_CONFIG_PENDING;
587 sedlbauer_config(link);
588 break;
589 case CS_EVENT_PM_SUSPEND:
590 link->state |= DEV_SUSPEND;
591 /* Fall through... */
592 case CS_EVENT_RESET_PHYSICAL:
593 /* Mark the device as stopped, to block IO until later */
594 dev->stop = 1;
595 if (link->state & DEV_CONFIG)
596 pcmcia_release_configuration(link->handle);
597 break;
598 case CS_EVENT_PM_RESUME:
599 link->state &= ~DEV_SUSPEND;
600 /* Fall through... */
601 case CS_EVENT_CARD_RESET:
602 if (link->state & DEV_CONFIG)
603 pcmcia_request_configuration(link->handle, &link->conf);
604 dev->stop = 0;
605 /*
606 In a normal driver, additional code may go here to restore
607 the device state and restart IO.
608 */
609 break;
610 }
611 return 0;
612} /* sedlbauer_event */
613
Dominik Brodowski70799732005-06-27 16:28:41 -0700614static struct pcmcia_device_id sedlbauer_ids[] = {
615 PCMCIA_DEVICE_PROD_ID1234("SEDLBAUER", "speed star II", "V 3.1", "(c) 93 - 98 cb ", 0x81fb79f5, 0xf3612e1d, 0x6b95c78a, 0x50d4149c),
616 PCMCIA_DEVICE_PROD_ID123("SEDLBAUER", "ISDN-Adapter", "4D67", 0x81fb79f5, 0xe4e9bc12, 0x397b7e90),
617 PCMCIA_DEVICE_PROD_ID123("SEDLBAUER", "ISDN-Adapter", "4D98", 0x81fb79f5, 0xe4e9bc12, 0x2e5c7fce),
618 PCMCIA_DEVICE_PROD_ID123("SEDLBAUER", "ISDN-Adapter", " (C) 93-94 VK", 0x81fb79f5, 0xe4e9bc12, 0x8db143fe),
619 PCMCIA_DEVICE_PROD_ID123("SEDLBAUER", "ISDN-Adapter", " (c) 93-95 VK", 0x81fb79f5, 0xe4e9bc12, 0xb391ab4c),
620 PCMCIA_DEVICE_PROD_ID12("HST High Soft Tech GmbH", "Saphir II B", 0xd79e0b84, 0x21d083ae),
621/* PCMCIA_DEVICE_PROD_ID1234("SEDLBAUER", 0x81fb79f5), */ /* too generic*/
622 PCMCIA_DEVICE_NULL
623};
624MODULE_DEVICE_TABLE(pcmcia, sedlbauer_ids);
625
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626static struct pcmcia_driver sedlbauer_driver = {
627 .owner = THIS_MODULE,
628 .drv = {
629 .name = "sedlbauer_cs",
630 },
631 .attach = sedlbauer_attach,
Dominik Brodowski1e212f32005-07-07 17:59:00 -0700632 .event = sedlbauer_event,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 .detach = sedlbauer_detach,
Dominik Brodowski70799732005-06-27 16:28:41 -0700634 .id_table = sedlbauer_ids,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635};
636
637static int __init init_sedlbauer_cs(void)
638{
639 return pcmcia_register_driver(&sedlbauer_driver);
640}
641
642static void __exit exit_sedlbauer_cs(void)
643{
644 pcmcia_unregister_driver(&sedlbauer_driver);
645 BUG_ON(dev_list != NULL);
646}
647
648module_init(init_sedlbauer_cs);
649module_exit(exit_sedlbauer_cs);