ALSA: opl4 - Fix a wrong argument in proc write callback
[safe/jmp/linux-2.6] / drivers / pcmcia / ds.c
1 /*
2  * ds.c -- 16-bit PCMCIA core support
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License version 2 as
6  * published by the Free Software Foundation.
7  *
8  * The initial developer of the original code is David A. Hinds
9  * <dahinds@users.sourceforge.net>.  Portions created by David A. Hinds
10  * are Copyright (C) 1999 David A. Hinds.  All Rights Reserved.
11  *
12  * (C) 1999             David A. Hinds
13  * (C) 2003 - 2006      Dominik Brodowski
14  */
15
16 #include <linux/kernel.h>
17 #include <linux/module.h>
18 #include <linux/init.h>
19 #include <linux/errno.h>
20 #include <linux/list.h>
21 #include <linux/delay.h>
22 #include <linux/workqueue.h>
23 #include <linux/crc32.h>
24 #include <linux/firmware.h>
25 #include <linux/kref.h>
26 #include <linux/dma-mapping.h>
27 #include <linux/slab.h>
28
29 #include <pcmcia/cs_types.h>
30 #include <pcmcia/cs.h>
31 #include <pcmcia/cistpl.h>
32 #include <pcmcia/ds.h>
33 #include <pcmcia/ss.h>
34
35 #include "cs_internal.h"
36
37 /*====================================================================*/
38
39 /* Module parameters */
40
41 MODULE_AUTHOR("David Hinds <dahinds@users.sourceforge.net>");
42 MODULE_DESCRIPTION("PCMCIA Driver Services");
43 MODULE_LICENSE("GPL");
44
45
46 /*====================================================================*/
47
48 static void pcmcia_check_driver(struct pcmcia_driver *p_drv)
49 {
50         struct pcmcia_device_id *did = p_drv->id_table;
51         unsigned int i;
52         u32 hash;
53
54         if (!p_drv->probe || !p_drv->remove)
55                 printk(KERN_DEBUG "pcmcia: %s lacks a requisite callback "
56                        "function\n", p_drv->drv.name);
57
58         while (did && did->match_flags) {
59                 for (i = 0; i < 4; i++) {
60                         if (!did->prod_id[i])
61                                 continue;
62
63                         hash = crc32(0, did->prod_id[i], strlen(did->prod_id[i]));
64                         if (hash == did->prod_id_hash[i])
65                                 continue;
66
67                         printk(KERN_DEBUG "pcmcia: %s: invalid hash for "
68                                "product string \"%s\": is 0x%x, should "
69                                "be 0x%x\n", p_drv->drv.name, did->prod_id[i],
70                                did->prod_id_hash[i], hash);
71                         printk(KERN_DEBUG "pcmcia: see "
72                                 "Documentation/pcmcia/devicetable.txt for "
73                                 "details\n");
74                 }
75                 did++;
76         }
77
78         return;
79 }
80
81
82 /*======================================================================*/
83
84
85 struct pcmcia_dynid {
86         struct list_head                node;
87         struct pcmcia_device_id         id;
88 };
89
90 /**
91  * pcmcia_store_new_id - add a new PCMCIA device ID to this driver and re-probe devices
92  * @driver: target device driver
93  * @buf: buffer for scanning device ID data
94  * @count: input size
95  *
96  * Adds a new dynamic PCMCIA device ID to this driver,
97  * and causes the driver to probe for all devices again.
98  */
99 static ssize_t
100 pcmcia_store_new_id(struct device_driver *driver, const char *buf, size_t count)
101 {
102         struct pcmcia_dynid *dynid;
103         struct pcmcia_driver *pdrv = to_pcmcia_drv(driver);
104         __u16 match_flags, manf_id, card_id;
105         __u8 func_id, function, device_no;
106         __u32 prod_id_hash[4] = {0, 0, 0, 0};
107         int fields = 0;
108         int retval = 0;
109
110         fields = sscanf(buf, "%hx %hx %hx %hhx %hhx %hhx %x %x %x %x",
111                         &match_flags, &manf_id, &card_id, &func_id, &function, &device_no,
112                         &prod_id_hash[0], &prod_id_hash[1], &prod_id_hash[2], &prod_id_hash[3]);
113         if (fields < 6)
114                 return -EINVAL;
115
116         dynid = kzalloc(sizeof(struct pcmcia_dynid), GFP_KERNEL);
117         if (!dynid)
118                 return -ENOMEM;
119
120         dynid->id.match_flags = match_flags;
121         dynid->id.manf_id = manf_id;
122         dynid->id.card_id = card_id;
123         dynid->id.func_id = func_id;
124         dynid->id.function = function;
125         dynid->id.device_no = device_no;
126         memcpy(dynid->id.prod_id_hash, prod_id_hash, sizeof(__u32) * 4);
127
128         mutex_lock(&pdrv->dynids.lock);
129         list_add_tail(&dynid->node, &pdrv->dynids.list);
130         mutex_unlock(&pdrv->dynids.lock);
131
132         if (get_driver(&pdrv->drv)) {
133                 retval = driver_attach(&pdrv->drv);
134                 put_driver(&pdrv->drv);
135         }
136
137         if (retval)
138                 return retval;
139         return count;
140 }
141 static DRIVER_ATTR(new_id, S_IWUSR, NULL, pcmcia_store_new_id);
142
143 static void
144 pcmcia_free_dynids(struct pcmcia_driver *drv)
145 {
146         struct pcmcia_dynid *dynid, *n;
147
148         mutex_lock(&drv->dynids.lock);
149         list_for_each_entry_safe(dynid, n, &drv->dynids.list, node) {
150                 list_del(&dynid->node);
151                 kfree(dynid);
152         }
153         mutex_unlock(&drv->dynids.lock);
154 }
155
156 static int
157 pcmcia_create_newid_file(struct pcmcia_driver *drv)
158 {
159         int error = 0;
160         if (drv->probe != NULL)
161                 error = driver_create_file(&drv->drv, &driver_attr_new_id);
162         return error;
163 }
164
165
166 /**
167  * pcmcia_register_driver - register a PCMCIA driver with the bus core
168  * @driver: the &driver being registered
169  *
170  * Registers a PCMCIA driver with the PCMCIA bus core.
171  */
172 int pcmcia_register_driver(struct pcmcia_driver *driver)
173 {
174         int error;
175
176         if (!driver)
177                 return -EINVAL;
178
179         pcmcia_check_driver(driver);
180
181         /* initialize common fields */
182         driver->drv.bus = &pcmcia_bus_type;
183         driver->drv.owner = driver->owner;
184         mutex_init(&driver->dynids.lock);
185         INIT_LIST_HEAD(&driver->dynids.list);
186
187         pr_debug("registering driver %s\n", driver->drv.name);
188
189         error = driver_register(&driver->drv);
190         if (error < 0)
191                 return error;
192
193         error = pcmcia_create_newid_file(driver);
194         if (error)
195                 driver_unregister(&driver->drv);
196
197         return error;
198 }
199 EXPORT_SYMBOL(pcmcia_register_driver);
200
201 /**
202  * pcmcia_unregister_driver - unregister a PCMCIA driver with the bus core
203  * @driver: the &driver being unregistered
204  */
205 void pcmcia_unregister_driver(struct pcmcia_driver *driver)
206 {
207         pr_debug("unregistering driver %s\n", driver->drv.name);
208         driver_unregister(&driver->drv);
209         pcmcia_free_dynids(driver);
210 }
211 EXPORT_SYMBOL(pcmcia_unregister_driver);
212
213
214 /* pcmcia_device handling */
215
216 struct pcmcia_device *pcmcia_get_dev(struct pcmcia_device *p_dev)
217 {
218         struct device *tmp_dev;
219         tmp_dev = get_device(&p_dev->dev);
220         if (!tmp_dev)
221                 return NULL;
222         return to_pcmcia_dev(tmp_dev);
223 }
224
225 void pcmcia_put_dev(struct pcmcia_device *p_dev)
226 {
227         if (p_dev)
228                 put_device(&p_dev->dev);
229 }
230
231 static void pcmcia_release_function(struct kref *ref)
232 {
233         struct config_t *c = container_of(ref, struct config_t, ref);
234         pr_debug("releasing config_t\n");
235         kfree(c);
236 }
237
238 static void pcmcia_release_dev(struct device *dev)
239 {
240         struct pcmcia_device *p_dev = to_pcmcia_dev(dev);
241         int i;
242         dev_dbg(dev, "releasing device\n");
243         pcmcia_put_socket(p_dev->socket);
244         for (i = 0; i < 4; i++)
245                 kfree(p_dev->prod_id[i]);
246         kfree(p_dev->devname);
247         kref_put(&p_dev->function_config->ref, pcmcia_release_function);
248         kfree(p_dev);
249 }
250
251
252 static int pcmcia_device_probe(struct device *dev)
253 {
254         struct pcmcia_device *p_dev;
255         struct pcmcia_driver *p_drv;
256         struct pcmcia_socket *s;
257         cistpl_config_t cis_config;
258         int ret = 0;
259
260         dev = get_device(dev);
261         if (!dev)
262                 return -ENODEV;
263
264         p_dev = to_pcmcia_dev(dev);
265         p_drv = to_pcmcia_drv(dev->driver);
266         s = p_dev->socket;
267
268         dev_dbg(dev, "trying to bind to %s\n", p_drv->drv.name);
269
270         if ((!p_drv->probe) || (!p_dev->function_config) ||
271             (!try_module_get(p_drv->owner))) {
272                 ret = -EINVAL;
273                 goto put_dev;
274         }
275
276         /* set up some more device information */
277         ret = pccard_read_tuple(p_dev->socket, p_dev->func, CISTPL_CONFIG,
278                                 &cis_config);
279         if (!ret) {
280                 p_dev->conf.ConfigBase = cis_config.base;
281                 p_dev->conf.Present = cis_config.rmask[0];
282         } else {
283                 dev_printk(KERN_INFO, dev,
284                            "pcmcia: could not parse base and rmask0 of CIS\n");
285                 p_dev->conf.ConfigBase = 0;
286                 p_dev->conf.Present = 0;
287         }
288
289         ret = p_drv->probe(p_dev);
290         if (ret) {
291                 dev_dbg(dev, "binding to %s failed with %d\n",
292                            p_drv->drv.name, ret);
293                 goto put_module;
294         }
295
296         mutex_lock(&s->ops_mutex);
297         if ((s->pcmcia_state.has_pfc) &&
298             (p_dev->socket->device_count == 1) && (p_dev->device_no == 0))
299                 pcmcia_parse_uevents(s, PCMCIA_UEVENT_REQUERY);
300         mutex_unlock(&s->ops_mutex);
301
302 put_module:
303         if (ret)
304                 module_put(p_drv->owner);
305 put_dev:
306         if (ret)
307                 put_device(dev);
308         return ret;
309 }
310
311
312 /*
313  * Removes a PCMCIA card from the device tree and socket list.
314  */
315 static void pcmcia_card_remove(struct pcmcia_socket *s, struct pcmcia_device *leftover)
316 {
317         struct pcmcia_device    *p_dev;
318         struct pcmcia_device    *tmp;
319
320         dev_dbg(leftover ? &leftover->dev : &s->dev,
321                    "pcmcia_card_remove(%d) %s\n", s->sock,
322                    leftover ? leftover->devname : "");
323
324         mutex_lock(&s->ops_mutex);
325         if (!leftover)
326                 s->device_count = 0;
327         else
328                 s->device_count = 1;
329         mutex_unlock(&s->ops_mutex);
330
331         /* unregister all pcmcia_devices registered with this socket, except leftover */
332         list_for_each_entry_safe(p_dev, tmp, &s->devices_list, socket_device_list) {
333                 if (p_dev == leftover)
334                         continue;
335
336                 mutex_lock(&s->ops_mutex);
337                 list_del(&p_dev->socket_device_list);
338                 p_dev->_removed = 1;
339                 mutex_unlock(&s->ops_mutex);
340
341                 dev_dbg(&p_dev->dev, "unregistering device\n");
342                 device_unregister(&p_dev->dev);
343         }
344
345         return;
346 }
347
348 static int pcmcia_device_remove(struct device *dev)
349 {
350         struct pcmcia_device *p_dev;
351         struct pcmcia_driver *p_drv;
352         int i;
353
354         p_dev = to_pcmcia_dev(dev);
355         p_drv = to_pcmcia_drv(dev->driver);
356
357         dev_dbg(dev, "removing device\n");
358
359         /* If we're removing the primary module driving a
360          * pseudo multi-function card, we need to unbind
361          * all devices
362          */
363         if ((p_dev->socket->pcmcia_state.has_pfc) &&
364             (p_dev->socket->device_count > 0) &&
365             (p_dev->device_no == 0))
366                 pcmcia_card_remove(p_dev->socket, p_dev);
367
368         /* detach the "instance" */
369         if (!p_drv)
370                 return 0;
371
372         if (p_drv->remove)
373                 p_drv->remove(p_dev);
374
375         p_dev->dev_node = NULL;
376
377         /* check for proper unloading */
378         if (p_dev->_irq || p_dev->_io || p_dev->_locked)
379                 dev_printk(KERN_INFO, dev,
380                         "pcmcia: driver %s did not release config properly\n",
381                         p_drv->drv.name);
382
383         for (i = 0; i < MAX_WIN; i++)
384                 if (p_dev->_win & CLIENT_WIN_REQ(i))
385                         dev_printk(KERN_INFO, dev,
386                           "pcmcia: driver %s did not release window properly\n",
387                            p_drv->drv.name);
388
389         /* references from pcmcia_probe_device */
390         pcmcia_put_dev(p_dev);
391         module_put(p_drv->owner);
392
393         return 0;
394 }
395
396
397 /*
398  * pcmcia_device_query -- determine information about a pcmcia device
399  */
400 static int pcmcia_device_query(struct pcmcia_device *p_dev)
401 {
402         cistpl_manfid_t manf_id;
403         cistpl_funcid_t func_id;
404         cistpl_vers_1_t *vers1;
405         unsigned int i;
406
407         vers1 = kmalloc(sizeof(*vers1), GFP_KERNEL);
408         if (!vers1)
409                 return -ENOMEM;
410
411         if (!pccard_read_tuple(p_dev->socket, BIND_FN_ALL,
412                                CISTPL_MANFID, &manf_id)) {
413                 mutex_lock(&p_dev->socket->ops_mutex);
414                 p_dev->manf_id = manf_id.manf;
415                 p_dev->card_id = manf_id.card;
416                 p_dev->has_manf_id = 1;
417                 p_dev->has_card_id = 1;
418                 mutex_unlock(&p_dev->socket->ops_mutex);
419         }
420
421         if (!pccard_read_tuple(p_dev->socket, p_dev->func,
422                                CISTPL_FUNCID, &func_id)) {
423                 mutex_lock(&p_dev->socket->ops_mutex);
424                 p_dev->func_id = func_id.func;
425                 p_dev->has_func_id = 1;
426                 mutex_unlock(&p_dev->socket->ops_mutex);
427         } else {
428                 /* rule of thumb: cards with no FUNCID, but with
429                  * common memory device geometry information, are
430                  * probably memory cards (from pcmcia-cs) */
431                 cistpl_device_geo_t *devgeo;
432
433                 devgeo = kmalloc(sizeof(*devgeo), GFP_KERNEL);
434                 if (!devgeo) {
435                         kfree(vers1);
436                         return -ENOMEM;
437                 }
438                 if (!pccard_read_tuple(p_dev->socket, p_dev->func,
439                                       CISTPL_DEVICE_GEO, devgeo)) {
440                         dev_dbg(&p_dev->dev,
441                                    "mem device geometry probably means "
442                                    "FUNCID_MEMORY\n");
443                         mutex_lock(&p_dev->socket->ops_mutex);
444                         p_dev->func_id = CISTPL_FUNCID_MEMORY;
445                         p_dev->has_func_id = 1;
446                         mutex_unlock(&p_dev->socket->ops_mutex);
447                 }
448                 kfree(devgeo);
449         }
450
451         if (!pccard_read_tuple(p_dev->socket, BIND_FN_ALL, CISTPL_VERS_1,
452                                vers1)) {
453                 mutex_lock(&p_dev->socket->ops_mutex);
454                 for (i = 0; i < min_t(unsigned int, 4, vers1->ns); i++) {
455                         char *tmp;
456                         unsigned int length;
457                         char *new;
458
459                         tmp = vers1->str + vers1->ofs[i];
460
461                         length = strlen(tmp) + 1;
462                         if ((length < 2) || (length > 255))
463                                 continue;
464
465                         new = kmalloc(sizeof(char) * length, GFP_KERNEL);
466                         if (!new)
467                                 continue;
468
469                         new = strncpy(new, tmp, length);
470
471                         tmp = p_dev->prod_id[i];
472                         p_dev->prod_id[i] = new;
473                         kfree(tmp);
474                 }
475                 mutex_unlock(&p_dev->socket->ops_mutex);
476         }
477
478         kfree(vers1);
479         return 0;
480 }
481
482
483 /* device_add_lock is needed to avoid double registration by cardmgr and kernel.
484  * Serializes pcmcia_device_add; will most likely be removed in future.
485  *
486  * While it has the caveat that adding new PCMCIA devices inside(!) device_register()
487  * won't work, this doesn't matter much at the moment: the driver core doesn't
488  * support it either.
489  */
490 static DEFINE_MUTEX(device_add_lock);
491
492 struct pcmcia_device *pcmcia_device_add(struct pcmcia_socket *s, unsigned int function)
493 {
494         struct pcmcia_device *p_dev, *tmp_dev;
495         int i;
496
497         s = pcmcia_get_socket(s);
498         if (!s)
499                 return NULL;
500
501         mutex_lock(&device_add_lock);
502
503         pr_debug("adding device to %d, function %d\n", s->sock, function);
504
505         p_dev = kzalloc(sizeof(struct pcmcia_device), GFP_KERNEL);
506         if (!p_dev)
507                 goto err_put;
508
509         mutex_lock(&s->ops_mutex);
510         p_dev->device_no = (s->device_count++);
511         mutex_unlock(&s->ops_mutex);
512
513         /* max of 2 PFC devices */
514         if ((p_dev->device_no >= 2) && (function == 0))
515                 goto err_free;
516
517         /* max of 4 devices overall */
518         if (p_dev->device_no >= 4)
519                 goto err_free;
520
521         p_dev->socket = s;
522         p_dev->func   = function;
523
524         p_dev->dev.bus = &pcmcia_bus_type;
525         p_dev->dev.parent = s->dev.parent;
526         p_dev->dev.release = pcmcia_release_dev;
527         /* by default don't allow DMA */
528         p_dev->dma_mask = DMA_MASK_NONE;
529         p_dev->dev.dma_mask = &p_dev->dma_mask;
530         dev_set_name(&p_dev->dev, "%d.%d", p_dev->socket->sock, p_dev->device_no);
531         if (!dev_name(&p_dev->dev))
532                 goto err_free;
533         p_dev->devname = kasprintf(GFP_KERNEL, "pcmcia%s", dev_name(&p_dev->dev));
534         if (!p_dev->devname)
535                 goto err_free;
536         dev_dbg(&p_dev->dev, "devname is %s\n", p_dev->devname);
537
538         mutex_lock(&s->ops_mutex);
539
540         /*
541          * p_dev->function_config must be the same for all card functions.
542          * Note that this is serialized by the device_add_lock, so that
543          * only one such struct will be created.
544          */
545         list_for_each_entry(tmp_dev, &s->devices_list, socket_device_list)
546                 if (p_dev->func == tmp_dev->func) {
547                         p_dev->function_config = tmp_dev->function_config;
548                         p_dev->io = tmp_dev->io;
549                         p_dev->irq = tmp_dev->irq;
550                         kref_get(&p_dev->function_config->ref);
551                 }
552
553         /* Add to the list in pcmcia_bus_socket */
554         list_add(&p_dev->socket_device_list, &s->devices_list);
555
556         mutex_unlock(&s->ops_mutex);
557
558         if (!p_dev->function_config) {
559                 dev_dbg(&p_dev->dev, "creating config_t\n");
560                 p_dev->function_config = kzalloc(sizeof(struct config_t),
561                                                  GFP_KERNEL);
562                 if (!p_dev->function_config)
563                         goto err_unreg;
564                 kref_init(&p_dev->function_config->ref);
565         }
566
567         dev_printk(KERN_NOTICE, &p_dev->dev,
568                    "pcmcia: registering new device %s\n",
569                    p_dev->devname);
570
571         pcmcia_device_query(p_dev);
572
573         if (device_register(&p_dev->dev))
574                 goto err_unreg;
575
576         mutex_unlock(&device_add_lock);
577
578         return p_dev;
579
580  err_unreg:
581         mutex_lock(&s->ops_mutex);
582         list_del(&p_dev->socket_device_list);
583         mutex_unlock(&s->ops_mutex);
584
585  err_free:
586         mutex_lock(&s->ops_mutex);
587         s->device_count--;
588         mutex_unlock(&s->ops_mutex);
589
590         for (i = 0; i < 4; i++)
591                 kfree(p_dev->prod_id[i]);
592         kfree(p_dev->devname);
593         kfree(p_dev);
594  err_put:
595         mutex_unlock(&device_add_lock);
596         pcmcia_put_socket(s);
597
598         return NULL;
599 }
600
601
602 static int pcmcia_card_add(struct pcmcia_socket *s)
603 {
604         cistpl_longlink_mfc_t mfc;
605         unsigned int no_funcs, i, no_chains;
606         int ret = -EAGAIN;
607
608         mutex_lock(&s->ops_mutex);
609         if (!(s->resource_setup_done)) {
610                 dev_dbg(&s->dev,
611                            "no resources available, delaying card_add\n");
612                 mutex_unlock(&s->ops_mutex);
613                 return -EAGAIN; /* try again, but later... */
614         }
615
616         if (pcmcia_validate_mem(s)) {
617                 dev_dbg(&s->dev, "validating mem resources failed, "
618                        "delaying card_add\n");
619                 mutex_unlock(&s->ops_mutex);
620                 return -EAGAIN; /* try again, but later... */
621         }
622         mutex_unlock(&s->ops_mutex);
623
624         ret = pccard_validate_cis(s, &no_chains);
625         if (ret || !no_chains) {
626                 dev_dbg(&s->dev, "invalid CIS or invalid resources\n");
627                 return -ENODEV;
628         }
629
630         if (!pccard_read_tuple(s, BIND_FN_ALL, CISTPL_LONGLINK_MFC, &mfc))
631                 no_funcs = mfc.nfn;
632         else
633                 no_funcs = 1;
634         s->functions = no_funcs;
635
636         for (i = 0; i < no_funcs; i++)
637                 pcmcia_device_add(s, i);
638
639         return ret;
640 }
641
642
643 static int pcmcia_requery_callback(struct device *dev, void * _data)
644 {
645         struct pcmcia_device *p_dev = to_pcmcia_dev(dev);
646         if (!p_dev->dev.driver) {
647                 dev_dbg(dev, "update device information\n");
648                 pcmcia_device_query(p_dev);
649         }
650
651         return 0;
652 }
653
654
655 static void pcmcia_requery(struct pcmcia_socket *s)
656 {
657         int present, has_pfc;
658
659         mutex_lock(&s->ops_mutex);
660         present = s->pcmcia_state.present;
661         mutex_unlock(&s->ops_mutex);
662
663         if (!present)
664                 return;
665
666         if (s->functions == 0) {
667                 pcmcia_card_add(s);
668                 return;
669         }
670
671         /* some device information might have changed because of a CIS
672          * update or because we can finally read it correctly... so
673          * determine it again, overwriting old values if necessary. */
674         bus_for_each_dev(&pcmcia_bus_type, NULL, NULL, pcmcia_requery_callback);
675
676         /* if the CIS changed, we need to check whether the number of
677          * functions changed. */
678         if (s->fake_cis) {
679                 int old_funcs, new_funcs;
680                 cistpl_longlink_mfc_t mfc;
681
682                 /* does this cis override add or remove functions? */
683                 old_funcs = s->functions;
684
685                 if (!pccard_read_tuple(s, BIND_FN_ALL, CISTPL_LONGLINK_MFC,
686                                         &mfc))
687                         new_funcs = mfc.nfn;
688                 else
689                         new_funcs = 1;
690                 if (old_funcs > new_funcs) {
691                         pcmcia_card_remove(s, NULL);
692                         pcmcia_card_add(s);
693                 } else if (new_funcs > old_funcs) {
694                         s->functions = new_funcs;
695                         pcmcia_device_add(s, 1);
696                 }
697         }
698
699         /* If the PCMCIA device consists of two pseudo devices,
700          * call pcmcia_device_add() -- which will fail if both
701          * devices are already registered. */
702         mutex_lock(&s->ops_mutex);
703         has_pfc = s->pcmcia_state.has_pfc;
704         mutex_unlock(&s->ops_mutex);
705         if (has_pfc)
706                 pcmcia_device_add(s, 0);
707
708         /* we re-scan all devices, not just the ones connected to this
709          * socket. This does not matter, though. */
710         if (bus_rescan_devices(&pcmcia_bus_type))
711                 dev_warn(&s->dev, "rescanning the bus failed\n");
712 }
713
714
715 #ifdef CONFIG_PCMCIA_LOAD_CIS
716
717 /**
718  * pcmcia_load_firmware - load CIS from userspace if device-provided is broken
719  * @dev: the pcmcia device which needs a CIS override
720  * @filename: requested filename in /lib/firmware/
721  *
722  * This uses the in-kernel firmware loading mechanism to use a "fake CIS" if
723  * the one provided by the card is broken. The firmware files reside in
724  * /lib/firmware/ in userspace.
725  */
726 static int pcmcia_load_firmware(struct pcmcia_device *dev, char * filename)
727 {
728         struct pcmcia_socket *s = dev->socket;
729         const struct firmware *fw;
730         int ret = -ENOMEM;
731
732         if (!filename)
733                 return -EINVAL;
734
735         dev_dbg(&dev->dev, "trying to load CIS file %s\n", filename);
736
737         if (request_firmware(&fw, filename, &dev->dev) == 0) {
738                 if (fw->size >= CISTPL_MAX_CIS_SIZE) {
739                         ret = -EINVAL;
740                         dev_printk(KERN_ERR, &dev->dev,
741                                    "pcmcia: CIS override is too big\n");
742                         goto release;
743                 }
744
745                 if (!pcmcia_replace_cis(s, fw->data, fw->size))
746                         ret = 0;
747                 else {
748                         dev_printk(KERN_ERR, &dev->dev,
749                                    "pcmcia: CIS override failed\n");
750                         goto release;
751                 }
752
753
754                 /* update information */
755                 pcmcia_device_query(dev);
756
757                 /* requery (as number of functions might have changed) */
758                 pcmcia_parse_uevents(s, PCMCIA_UEVENT_REQUERY);
759         }
760  release:
761         release_firmware(fw);
762
763         return ret;
764 }
765
766 #else /* !CONFIG_PCMCIA_LOAD_CIS */
767
768 static inline int pcmcia_load_firmware(struct pcmcia_device *dev, char * filename)
769 {
770         return -ENODEV;
771 }
772
773 #endif
774
775
776 static inline int pcmcia_devmatch(struct pcmcia_device *dev,
777                                   struct pcmcia_device_id *did)
778 {
779         if (did->match_flags & PCMCIA_DEV_ID_MATCH_MANF_ID) {
780                 if ((!dev->has_manf_id) || (dev->manf_id != did->manf_id))
781                         return 0;
782         }
783
784         if (did->match_flags & PCMCIA_DEV_ID_MATCH_CARD_ID) {
785                 if ((!dev->has_card_id) || (dev->card_id != did->card_id))
786                         return 0;
787         }
788
789         if (did->match_flags & PCMCIA_DEV_ID_MATCH_FUNCTION) {
790                 if (dev->func != did->function)
791                         return 0;
792         }
793
794         if (did->match_flags & PCMCIA_DEV_ID_MATCH_PROD_ID1) {
795                 if (!dev->prod_id[0])
796                         return 0;
797                 if (strcmp(did->prod_id[0], dev->prod_id[0]))
798                         return 0;
799         }
800
801         if (did->match_flags & PCMCIA_DEV_ID_MATCH_PROD_ID2) {
802                 if (!dev->prod_id[1])
803                         return 0;
804                 if (strcmp(did->prod_id[1], dev->prod_id[1]))
805                         return 0;
806         }
807
808         if (did->match_flags & PCMCIA_DEV_ID_MATCH_PROD_ID3) {
809                 if (!dev->prod_id[2])
810                         return 0;
811                 if (strcmp(did->prod_id[2], dev->prod_id[2]))
812                         return 0;
813         }
814
815         if (did->match_flags & PCMCIA_DEV_ID_MATCH_PROD_ID4) {
816                 if (!dev->prod_id[3])
817                         return 0;
818                 if (strcmp(did->prod_id[3], dev->prod_id[3]))
819                         return 0;
820         }
821
822         if (did->match_flags & PCMCIA_DEV_ID_MATCH_DEVICE_NO) {
823                 if (dev->device_no != did->device_no)
824                         return 0;
825                 mutex_lock(&dev->socket->ops_mutex);
826                 dev->socket->pcmcia_state.has_pfc = 1;
827                 mutex_unlock(&dev->socket->ops_mutex);
828         }
829
830         if (did->match_flags & PCMCIA_DEV_ID_MATCH_FUNC_ID) {
831                 int ret;
832
833                 if ((!dev->has_func_id) || (dev->func_id != did->func_id))
834                         return 0;
835
836                 /* if this is a pseudo-multi-function device,
837                  * we need explicit matches */
838                 if (did->match_flags & PCMCIA_DEV_ID_MATCH_DEVICE_NO)
839                         return 0;
840                 if (dev->device_no)
841                         return 0;
842
843                 /* also, FUNC_ID matching needs to be activated by userspace
844                  * after it has re-checked that there is no possible module
845                  * with a prod_id/manf_id/card_id match.
846                  */
847                 mutex_lock(&dev->socket->ops_mutex);
848                 ret = dev->allow_func_id_match;
849                 mutex_unlock(&dev->socket->ops_mutex);
850
851                 if (!ret) {
852                         dev_dbg(&dev->dev,
853                                 "skipping FUNC_ID match until userspace ACK\n");
854                         return 0;
855                 }
856         }
857
858         if (did->match_flags & PCMCIA_DEV_ID_MATCH_FAKE_CIS) {
859                 dev_dbg(&dev->dev, "device needs a fake CIS\n");
860                 if (!dev->socket->fake_cis)
861                         pcmcia_load_firmware(dev, did->cisfile);
862
863                 if (!dev->socket->fake_cis)
864                         return 0;
865         }
866
867         if (did->match_flags & PCMCIA_DEV_ID_MATCH_ANONYMOUS) {
868                 int i;
869                 for (i = 0; i < 4; i++)
870                         if (dev->prod_id[i])
871                                 return 0;
872                 if (dev->has_manf_id || dev->has_card_id || dev->has_func_id)
873                         return 0;
874         }
875
876         return 1;
877 }
878
879
880 static int pcmcia_bus_match(struct device *dev, struct device_driver *drv)
881 {
882         struct pcmcia_device *p_dev = to_pcmcia_dev(dev);
883         struct pcmcia_driver *p_drv = to_pcmcia_drv(drv);
884         struct pcmcia_device_id *did = p_drv->id_table;
885         struct pcmcia_dynid *dynid;
886
887         /* match dynamic devices first */
888         mutex_lock(&p_drv->dynids.lock);
889         list_for_each_entry(dynid, &p_drv->dynids.list, node) {
890                 dev_dbg(dev, "trying to match to %s\n", drv->name);
891                 if (pcmcia_devmatch(p_dev, &dynid->id)) {
892                         dev_dbg(dev, "matched to %s\n", drv->name);
893                         mutex_unlock(&p_drv->dynids.lock);
894                         return 1;
895                 }
896         }
897         mutex_unlock(&p_drv->dynids.lock);
898
899 #ifdef CONFIG_PCMCIA_IOCTL
900         /* matching by cardmgr */
901         if (p_dev->cardmgr == p_drv) {
902                 dev_dbg(dev, "cardmgr matched to %s\n", drv->name);
903                 return 1;
904         }
905 #endif
906
907         while (did && did->match_flags) {
908                 dev_dbg(dev, "trying to match to %s\n", drv->name);
909                 if (pcmcia_devmatch(p_dev, did)) {
910                         dev_dbg(dev, "matched to %s\n", drv->name);
911                         return 1;
912                 }
913                 did++;
914         }
915
916         return 0;
917 }
918
919 #ifdef CONFIG_HOTPLUG
920
921 static int pcmcia_bus_uevent(struct device *dev, struct kobj_uevent_env *env)
922 {
923         struct pcmcia_device *p_dev;
924         int i;
925         u32 hash[4] = { 0, 0, 0, 0};
926
927         if (!dev)
928                 return -ENODEV;
929
930         p_dev = to_pcmcia_dev(dev);
931
932         /* calculate hashes */
933         for (i = 0; i < 4; i++) {
934                 if (!p_dev->prod_id[i])
935                         continue;
936                 hash[i] = crc32(0, p_dev->prod_id[i], strlen(p_dev->prod_id[i]));
937         }
938
939         if (add_uevent_var(env, "SOCKET_NO=%u", p_dev->socket->sock))
940                 return -ENOMEM;
941
942         if (add_uevent_var(env, "DEVICE_NO=%02X", p_dev->device_no))
943                 return -ENOMEM;
944
945         if (add_uevent_var(env, "MODALIAS=pcmcia:m%04Xc%04Xf%02Xfn%02Xpfn%02X"
946                            "pa%08Xpb%08Xpc%08Xpd%08X",
947                            p_dev->has_manf_id ? p_dev->manf_id : 0,
948                            p_dev->has_card_id ? p_dev->card_id : 0,
949                            p_dev->has_func_id ? p_dev->func_id : 0,
950                            p_dev->func,
951                            p_dev->device_no,
952                            hash[0],
953                            hash[1],
954                            hash[2],
955                            hash[3]))
956                 return -ENOMEM;
957
958         return 0;
959 }
960
961 #else
962
963 static int pcmcia_bus_uevent(struct device *dev, struct kobj_uevent_env *env)
964 {
965         return -ENODEV;
966 }
967
968 #endif
969
970 /************************ runtime PM support ***************************/
971
972 static int pcmcia_dev_suspend(struct device *dev, pm_message_t state);
973 static int pcmcia_dev_resume(struct device *dev);
974
975 static int runtime_suspend(struct device *dev)
976 {
977         int rc;
978
979         device_lock(dev);
980         rc = pcmcia_dev_suspend(dev, PMSG_SUSPEND);
981         device_unlock(dev);
982         return rc;
983 }
984
985 static int runtime_resume(struct device *dev)
986 {
987         int rc;
988
989         device_lock(dev);
990         rc = pcmcia_dev_resume(dev);
991         device_unlock(dev);
992         return rc;
993 }
994
995 /************************ per-device sysfs output ***************************/
996
997 #define pcmcia_device_attr(field, test, format)                         \
998 static ssize_t field##_show (struct device *dev, struct device_attribute *attr, char *buf)              \
999 {                                                                       \
1000         struct pcmcia_device *p_dev = to_pcmcia_dev(dev);               \
1001         return p_dev->test ? sprintf(buf, format, p_dev->field) : -ENODEV; \
1002 }
1003
1004 #define pcmcia_device_stringattr(name, field)                                   \
1005 static ssize_t name##_show (struct device *dev, struct device_attribute *attr, char *buf)               \
1006 {                                                                       \
1007         struct pcmcia_device *p_dev = to_pcmcia_dev(dev);               \
1008         return p_dev->field ? sprintf(buf, "%s\n", p_dev->field) : -ENODEV; \
1009 }
1010
1011 pcmcia_device_attr(func, socket, "0x%02x\n");
1012 pcmcia_device_attr(func_id, has_func_id, "0x%02x\n");
1013 pcmcia_device_attr(manf_id, has_manf_id, "0x%04x\n");
1014 pcmcia_device_attr(card_id, has_card_id, "0x%04x\n");
1015 pcmcia_device_stringattr(prod_id1, prod_id[0]);
1016 pcmcia_device_stringattr(prod_id2, prod_id[1]);
1017 pcmcia_device_stringattr(prod_id3, prod_id[2]);
1018 pcmcia_device_stringattr(prod_id4, prod_id[3]);
1019
1020
1021 static ssize_t pcmcia_show_pm_state(struct device *dev, struct device_attribute *attr, char *buf)
1022 {
1023         struct pcmcia_device *p_dev = to_pcmcia_dev(dev);
1024
1025         if (p_dev->suspended)
1026                 return sprintf(buf, "off\n");
1027         else
1028                 return sprintf(buf, "on\n");
1029 }
1030
1031 static ssize_t pcmcia_store_pm_state(struct device *dev, struct device_attribute *attr,
1032                                      const char *buf, size_t count)
1033 {
1034         struct pcmcia_device *p_dev = to_pcmcia_dev(dev);
1035         int ret = 0;
1036
1037         if (!count)
1038                 return -EINVAL;
1039
1040         if ((!p_dev->suspended) && !strncmp(buf, "off", 3))
1041                 ret = runtime_suspend(dev);
1042         else if (p_dev->suspended && !strncmp(buf, "on", 2))
1043                 ret = runtime_resume(dev);
1044
1045         return ret ? ret : count;
1046 }
1047
1048
1049 static ssize_t modalias_show(struct device *dev, struct device_attribute *attr, char *buf)
1050 {
1051         struct pcmcia_device *p_dev = to_pcmcia_dev(dev);
1052         int i;
1053         u32 hash[4] = { 0, 0, 0, 0};
1054
1055         /* calculate hashes */
1056         for (i = 0; i < 4; i++) {
1057                 if (!p_dev->prod_id[i])
1058                         continue;
1059                 hash[i] = crc32(0, p_dev->prod_id[i],
1060                                 strlen(p_dev->prod_id[i]));
1061         }
1062         return sprintf(buf, "pcmcia:m%04Xc%04Xf%02Xfn%02Xpfn%02X"
1063                                 "pa%08Xpb%08Xpc%08Xpd%08X\n",
1064                                 p_dev->has_manf_id ? p_dev->manf_id : 0,
1065                                 p_dev->has_card_id ? p_dev->card_id : 0,
1066                                 p_dev->has_func_id ? p_dev->func_id : 0,
1067                                 p_dev->func, p_dev->device_no,
1068                                 hash[0], hash[1], hash[2], hash[3]);
1069 }
1070
1071 static ssize_t pcmcia_store_allow_func_id_match(struct device *dev,
1072                 struct device_attribute *attr, const char *buf, size_t count)
1073 {
1074         struct pcmcia_device *p_dev = to_pcmcia_dev(dev);
1075
1076         if (!count)
1077                 return -EINVAL;
1078
1079         mutex_lock(&p_dev->socket->ops_mutex);
1080         p_dev->allow_func_id_match = 1;
1081         mutex_unlock(&p_dev->socket->ops_mutex);
1082         pcmcia_parse_uevents(p_dev->socket, PCMCIA_UEVENT_REQUERY);
1083
1084         return count;
1085 }
1086
1087 static struct device_attribute pcmcia_dev_attrs[] = {
1088         __ATTR(function, 0444, func_show, NULL),
1089         __ATTR(pm_state, 0644, pcmcia_show_pm_state, pcmcia_store_pm_state),
1090         __ATTR_RO(func_id),
1091         __ATTR_RO(manf_id),
1092         __ATTR_RO(card_id),
1093         __ATTR_RO(prod_id1),
1094         __ATTR_RO(prod_id2),
1095         __ATTR_RO(prod_id3),
1096         __ATTR_RO(prod_id4),
1097         __ATTR_RO(modalias),
1098         __ATTR(allow_func_id_match, 0200, NULL, pcmcia_store_allow_func_id_match),
1099         __ATTR_NULL,
1100 };
1101
1102 /* PM support, also needed for reset */
1103
1104 static int pcmcia_dev_suspend(struct device *dev, pm_message_t state)
1105 {
1106         struct pcmcia_device *p_dev = to_pcmcia_dev(dev);
1107         struct pcmcia_driver *p_drv = NULL;
1108         int ret = 0;
1109
1110         mutex_lock(&p_dev->socket->ops_mutex);
1111         if (p_dev->suspended) {
1112                 mutex_unlock(&p_dev->socket->ops_mutex);
1113                 return 0;
1114         }
1115         p_dev->suspended = 1;
1116         mutex_unlock(&p_dev->socket->ops_mutex);
1117
1118         dev_dbg(dev, "suspending\n");
1119
1120         if (dev->driver)
1121                 p_drv = to_pcmcia_drv(dev->driver);
1122
1123         if (!p_drv)
1124                 goto out;
1125
1126         if (p_drv->suspend) {
1127                 ret = p_drv->suspend(p_dev);
1128                 if (ret) {
1129                         dev_printk(KERN_ERR, dev,
1130                                    "pcmcia: device %s (driver %s) did "
1131                                    "not want to go to sleep (%d)\n",
1132                                    p_dev->devname, p_drv->drv.name, ret);
1133                         mutex_lock(&p_dev->socket->ops_mutex);
1134                         p_dev->suspended = 0;
1135                         mutex_unlock(&p_dev->socket->ops_mutex);
1136                         goto out;
1137                 }
1138         }
1139
1140         if (p_dev->device_no == p_dev->func) {
1141                 dev_dbg(dev, "releasing configuration\n");
1142                 pcmcia_release_configuration(p_dev);
1143         }
1144
1145  out:
1146         return ret;
1147 }
1148
1149
1150 static int pcmcia_dev_resume(struct device *dev)
1151 {
1152         struct pcmcia_device *p_dev = to_pcmcia_dev(dev);
1153         struct pcmcia_driver *p_drv = NULL;
1154         int ret = 0;
1155
1156         mutex_lock(&p_dev->socket->ops_mutex);
1157         if (!p_dev->suspended) {
1158                 mutex_unlock(&p_dev->socket->ops_mutex);
1159                 return 0;
1160         }
1161         p_dev->suspended = 0;
1162         mutex_unlock(&p_dev->socket->ops_mutex);
1163
1164         dev_dbg(dev, "resuming\n");
1165
1166         if (dev->driver)
1167                 p_drv = to_pcmcia_drv(dev->driver);
1168
1169         if (!p_drv)
1170                 goto out;
1171
1172         if (p_dev->device_no == p_dev->func) {
1173                 dev_dbg(dev, "requesting configuration\n");
1174                 ret = pcmcia_request_configuration(p_dev, &p_dev->conf);
1175                 if (ret)
1176                         goto out;
1177         }
1178
1179         if (p_drv->resume)
1180                 ret = p_drv->resume(p_dev);
1181
1182  out:
1183         return ret;
1184 }
1185
1186
1187 static int pcmcia_bus_suspend_callback(struct device *dev, void * _data)
1188 {
1189         struct pcmcia_socket *skt = _data;
1190         struct pcmcia_device *p_dev = to_pcmcia_dev(dev);
1191
1192         if (p_dev->socket != skt || p_dev->suspended)
1193                 return 0;
1194
1195         return runtime_suspend(dev);
1196 }
1197
1198 static int pcmcia_bus_resume_callback(struct device *dev, void * _data)
1199 {
1200         struct pcmcia_socket *skt = _data;
1201         struct pcmcia_device *p_dev = to_pcmcia_dev(dev);
1202
1203         if (p_dev->socket != skt || !p_dev->suspended)
1204                 return 0;
1205
1206         runtime_resume(dev);
1207
1208         return 0;
1209 }
1210
1211 static int pcmcia_bus_resume(struct pcmcia_socket *skt)
1212 {
1213         dev_dbg(&skt->dev, "resuming socket %d\n", skt->sock);
1214         bus_for_each_dev(&pcmcia_bus_type, NULL, skt, pcmcia_bus_resume_callback);
1215         return 0;
1216 }
1217
1218 static int pcmcia_bus_suspend(struct pcmcia_socket *skt)
1219 {
1220         dev_dbg(&skt->dev, "suspending socket %d\n", skt->sock);
1221         if (bus_for_each_dev(&pcmcia_bus_type, NULL, skt,
1222                              pcmcia_bus_suspend_callback)) {
1223                 pcmcia_bus_resume(skt);
1224                 return -EIO;
1225         }
1226         return 0;
1227 }
1228
1229
1230 /*======================================================================
1231
1232     The card status event handler.
1233
1234 ======================================================================*/
1235
1236 /* Normally, the event is passed to individual drivers after
1237  * informing userspace. Only for CS_EVENT_CARD_REMOVAL this
1238  * is inversed to maintain historic compatibility.
1239  */
1240
1241 static int ds_event(struct pcmcia_socket *skt, event_t event, int priority)
1242 {
1243         struct pcmcia_socket *s = pcmcia_get_socket(skt);
1244
1245         if (!s) {
1246                 dev_printk(KERN_ERR, &skt->dev,
1247                            "PCMCIA obtaining reference to socket "      \
1248                            "failed, event 0x%x lost!\n", event);
1249                 return -ENODEV;
1250         }
1251
1252         dev_dbg(&skt->dev, "ds_event(0x%06x, %d, 0x%p)\n",
1253                    event, priority, skt);
1254
1255         switch (event) {
1256         case CS_EVENT_CARD_REMOVAL:
1257                 mutex_lock(&s->ops_mutex);
1258                 s->pcmcia_state.present = 0;
1259                 mutex_unlock(&s->ops_mutex);
1260                 pcmcia_card_remove(skt, NULL);
1261                 handle_event(skt, event);
1262                 mutex_lock(&s->ops_mutex);
1263                 destroy_cis_cache(s);
1264                 mutex_unlock(&s->ops_mutex);
1265                 break;
1266
1267         case CS_EVENT_CARD_INSERTION:
1268                 mutex_lock(&s->ops_mutex);
1269                 s->pcmcia_state.has_pfc = 0;
1270                 s->pcmcia_state.present = 1;
1271                 destroy_cis_cache(s); /* to be on the safe side... */
1272                 mutex_unlock(&s->ops_mutex);
1273                 pcmcia_card_add(skt);
1274                 handle_event(skt, event);
1275                 break;
1276
1277         case CS_EVENT_EJECTION_REQUEST:
1278                 break;
1279
1280         case CS_EVENT_PM_RESUME:
1281                 if (verify_cis_cache(skt) != 0) {
1282                         dev_dbg(&skt->dev, "cis mismatch - different card\n");
1283                         /* first, remove the card */
1284                         ds_event(skt, CS_EVENT_CARD_REMOVAL, CS_EVENT_PRI_HIGH);
1285                         mutex_lock(&s->ops_mutex);
1286                         destroy_cis_cache(skt);
1287                         kfree(skt->fake_cis);
1288                         skt->fake_cis = NULL;
1289                         mutex_unlock(&s->ops_mutex);
1290                         /* now, add the new card */
1291                         ds_event(skt, CS_EVENT_CARD_INSERTION,
1292                                  CS_EVENT_PRI_LOW);
1293                 }
1294                 handle_event(skt, event);
1295                 break;
1296
1297         case CS_EVENT_PM_SUSPEND:
1298         case CS_EVENT_RESET_PHYSICAL:
1299         case CS_EVENT_CARD_RESET:
1300         default:
1301                 handle_event(skt, event);
1302                 break;
1303     }
1304
1305     pcmcia_put_socket(s);
1306
1307     return 0;
1308 } /* ds_event */
1309
1310
1311 struct pcmcia_device *pcmcia_dev_present(struct pcmcia_device *_p_dev)
1312 {
1313         struct pcmcia_device *p_dev;
1314         struct pcmcia_device *ret = NULL;
1315
1316         p_dev = pcmcia_get_dev(_p_dev);
1317         if (!p_dev)
1318                 return NULL;
1319
1320         mutex_lock(&p_dev->socket->ops_mutex);
1321         if (!p_dev->socket->pcmcia_state.present)
1322                 goto out;
1323
1324         if (p_dev->socket->pcmcia_state.dead)
1325                 goto out;
1326
1327         if (p_dev->_removed)
1328                 goto out;
1329
1330         if (p_dev->suspended)
1331                 goto out;
1332
1333         ret = p_dev;
1334  out:
1335         mutex_unlock(&p_dev->socket->ops_mutex);
1336         pcmcia_put_dev(p_dev);
1337         return ret;
1338 }
1339 EXPORT_SYMBOL(pcmcia_dev_present);
1340
1341
1342 static struct pcmcia_callback pcmcia_bus_callback = {
1343         .owner = THIS_MODULE,
1344         .event = ds_event,
1345         .requery = pcmcia_requery,
1346         .validate = pccard_validate_cis,
1347         .suspend = pcmcia_bus_suspend,
1348         .resume = pcmcia_bus_resume,
1349 };
1350
1351 static int __devinit pcmcia_bus_add_socket(struct device *dev,
1352                                            struct class_interface *class_intf)
1353 {
1354         struct pcmcia_socket *socket = dev_get_drvdata(dev);
1355         int ret;
1356
1357         socket = pcmcia_get_socket(socket);
1358         if (!socket) {
1359                 dev_printk(KERN_ERR, dev,
1360                            "PCMCIA obtaining reference to socket failed\n");
1361                 return -ENODEV;
1362         }
1363
1364         ret = sysfs_create_bin_file(&dev->kobj, &pccard_cis_attr);
1365         if (ret) {
1366                 dev_printk(KERN_ERR, dev, "PCMCIA registration failed\n");
1367                 pcmcia_put_socket(socket);
1368                 return ret;
1369         }
1370
1371 #ifdef CONFIG_PCMCIA_IOCTL
1372         init_waitqueue_head(&socket->queue);
1373 #endif
1374         INIT_LIST_HEAD(&socket->devices_list);
1375         memset(&socket->pcmcia_state, 0, sizeof(u8));
1376         socket->device_count = 0;
1377
1378         ret = pccard_register_pcmcia(socket, &pcmcia_bus_callback);
1379         if (ret) {
1380                 dev_printk(KERN_ERR, dev, "PCMCIA registration failed\n");
1381                 pcmcia_put_socket(socket);
1382                 return ret;
1383         }
1384
1385         return 0;
1386 }
1387
1388 static void pcmcia_bus_remove_socket(struct device *dev,
1389                                      struct class_interface *class_intf)
1390 {
1391         struct pcmcia_socket *socket = dev_get_drvdata(dev);
1392
1393         if (!socket)
1394                 return;
1395
1396         mutex_lock(&socket->ops_mutex);
1397         socket->pcmcia_state.dead = 1;
1398         mutex_unlock(&socket->ops_mutex);
1399
1400         pccard_register_pcmcia(socket, NULL);
1401
1402         /* unregister any unbound devices */
1403         mutex_lock(&socket->skt_mutex);
1404         pcmcia_card_remove(socket, NULL);
1405         release_cis_mem(socket);
1406         mutex_unlock(&socket->skt_mutex);
1407
1408         sysfs_remove_bin_file(&dev->kobj, &pccard_cis_attr);
1409
1410         pcmcia_put_socket(socket);
1411
1412         return;
1413 }
1414
1415
1416 /* the pcmcia_bus_interface is used to handle pcmcia socket devices */
1417 static struct class_interface pcmcia_bus_interface __refdata = {
1418         .class = &pcmcia_socket_class,
1419         .add_dev = &pcmcia_bus_add_socket,
1420         .remove_dev = &pcmcia_bus_remove_socket,
1421 };
1422
1423
1424 struct bus_type pcmcia_bus_type = {
1425         .name = "pcmcia",
1426         .uevent = pcmcia_bus_uevent,
1427         .match = pcmcia_bus_match,
1428         .dev_attrs = pcmcia_dev_attrs,
1429         .probe = pcmcia_device_probe,
1430         .remove = pcmcia_device_remove,
1431         .suspend = pcmcia_dev_suspend,
1432         .resume = pcmcia_dev_resume,
1433 };
1434
1435
1436 static int __init init_pcmcia_bus(void)
1437 {
1438         int ret;
1439
1440         ret = bus_register(&pcmcia_bus_type);
1441         if (ret < 0) {
1442                 printk(KERN_WARNING "pcmcia: bus_register error: %d\n", ret);
1443                 return ret;
1444         }
1445         ret = class_interface_register(&pcmcia_bus_interface);
1446         if (ret < 0) {
1447                 printk(KERN_WARNING
1448                         "pcmcia: class_interface_register error: %d\n", ret);
1449                 bus_unregister(&pcmcia_bus_type);
1450                 return ret;
1451         }
1452
1453         pcmcia_setup_ioctl();
1454
1455         return 0;
1456 }
1457 fs_initcall(init_pcmcia_bus); /* one level after subsys_initcall so that
1458                                * pcmcia_socket_class is already registered */
1459
1460
1461 static void __exit exit_pcmcia_bus(void)
1462 {
1463         pcmcia_cleanup_ioctl();
1464
1465         class_interface_unregister(&pcmcia_bus_interface);
1466
1467         bus_unregister(&pcmcia_bus_type);
1468 }
1469 module_exit(exit_pcmcia_bus);
1470
1471
1472 MODULE_ALIAS("ds");