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