[LIBERTAS]: set dnld_sent correctly for CF parts
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / pcmcia / ds.c
bloba99607142fc81ee029ee136c443f82d18c83ec1a
1 /*
2 * ds.c -- 16-bit PCMCIA core support
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.
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.
12 * (C) 1999 David A. Hinds
13 * (C) 2003 - 2006 Dominik Brodowski
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>
27 #define IN_CARD_SERVICES
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>
34 #include "cs_internal.h"
35 #include "ds_internal.h"
37 /*====================================================================*/
39 /* Module parameters */
41 MODULE_AUTHOR("David Hinds <dahinds@users.sourceforge.net>");
42 MODULE_DESCRIPTION("PCMCIA Driver Services");
43 MODULE_LICENSE("GPL");
45 #ifdef DEBUG
46 int ds_pc_debug;
48 module_param_named(pc_debug, ds_pc_debug, int, 0644);
50 #define ds_dbg(lvl, fmt, arg...) do { \
51 if (ds_pc_debug > (lvl)) \
52 printk(KERN_DEBUG "ds: " fmt , ## arg); \
53 } while (0)
54 #else
55 #define ds_dbg(lvl, fmt, arg...) do { } while (0)
56 #endif
58 spinlock_t pcmcia_dev_list_lock;
60 /*====================================================================*/
62 /* code which was in cs.c before */
64 /* String tables for error messages */
66 typedef struct lookup_t {
67 int key;
68 char *msg;
69 } lookup_t;
71 static const lookup_t error_table[] = {
72 { CS_SUCCESS, "Operation succeeded" },
73 { CS_BAD_ADAPTER, "Bad adapter" },
74 { CS_BAD_ATTRIBUTE, "Bad attribute", },
75 { CS_BAD_BASE, "Bad base address" },
76 { CS_BAD_EDC, "Bad EDC" },
77 { CS_BAD_IRQ, "Bad IRQ" },
78 { CS_BAD_OFFSET, "Bad offset" },
79 { CS_BAD_PAGE, "Bad page number" },
80 { CS_READ_FAILURE, "Read failure" },
81 { CS_BAD_SIZE, "Bad size" },
82 { CS_BAD_SOCKET, "Bad socket" },
83 { CS_BAD_TYPE, "Bad type" },
84 { CS_BAD_VCC, "Bad Vcc" },
85 { CS_BAD_VPP, "Bad Vpp" },
86 { CS_BAD_WINDOW, "Bad window" },
87 { CS_WRITE_FAILURE, "Write failure" },
88 { CS_NO_CARD, "No card present" },
89 { CS_UNSUPPORTED_FUNCTION, "Usupported function" },
90 { CS_UNSUPPORTED_MODE, "Unsupported mode" },
91 { CS_BAD_SPEED, "Bad speed" },
92 { CS_BUSY, "Resource busy" },
93 { CS_GENERAL_FAILURE, "General failure" },
94 { CS_WRITE_PROTECTED, "Write protected" },
95 { CS_BAD_ARG_LENGTH, "Bad argument length" },
96 { CS_BAD_ARGS, "Bad arguments" },
97 { CS_CONFIGURATION_LOCKED, "Configuration locked" },
98 { CS_IN_USE, "Resource in use" },
99 { CS_NO_MORE_ITEMS, "No more items" },
100 { CS_OUT_OF_RESOURCE, "Out of resource" },
101 { CS_BAD_HANDLE, "Bad handle" },
102 { CS_BAD_TUPLE, "Bad CIS tuple" }
106 static const lookup_t service_table[] = {
107 { AccessConfigurationRegister, "AccessConfigurationRegister" },
108 { AddSocketServices, "AddSocketServices" },
109 { AdjustResourceInfo, "AdjustResourceInfo" },
110 { CheckEraseQueue, "CheckEraseQueue" },
111 { CloseMemory, "CloseMemory" },
112 { DeregisterClient, "DeregisterClient" },
113 { DeregisterEraseQueue, "DeregisterEraseQueue" },
114 { GetCardServicesInfo, "GetCardServicesInfo" },
115 { GetClientInfo, "GetClientInfo" },
116 { GetConfigurationInfo, "GetConfigurationInfo" },
117 { GetEventMask, "GetEventMask" },
118 { GetFirstClient, "GetFirstClient" },
119 { GetFirstRegion, "GetFirstRegion" },
120 { GetFirstTuple, "GetFirstTuple" },
121 { GetNextClient, "GetNextClient" },
122 { GetNextRegion, "GetNextRegion" },
123 { GetNextTuple, "GetNextTuple" },
124 { GetStatus, "GetStatus" },
125 { GetTupleData, "GetTupleData" },
126 { MapMemPage, "MapMemPage" },
127 { ModifyConfiguration, "ModifyConfiguration" },
128 { ModifyWindow, "ModifyWindow" },
129 { OpenMemory, "OpenMemory" },
130 { ParseTuple, "ParseTuple" },
131 { ReadMemory, "ReadMemory" },
132 { RegisterClient, "RegisterClient" },
133 { RegisterEraseQueue, "RegisterEraseQueue" },
134 { RegisterMTD, "RegisterMTD" },
135 { ReleaseConfiguration, "ReleaseConfiguration" },
136 { ReleaseIO, "ReleaseIO" },
137 { ReleaseIRQ, "ReleaseIRQ" },
138 { ReleaseWindow, "ReleaseWindow" },
139 { RequestConfiguration, "RequestConfiguration" },
140 { RequestIO, "RequestIO" },
141 { RequestIRQ, "RequestIRQ" },
142 { RequestSocketMask, "RequestSocketMask" },
143 { RequestWindow, "RequestWindow" },
144 { ResetCard, "ResetCard" },
145 { SetEventMask, "SetEventMask" },
146 { ValidateCIS, "ValidateCIS" },
147 { WriteMemory, "WriteMemory" },
148 { BindDevice, "BindDevice" },
149 { BindMTD, "BindMTD" },
150 { ReportError, "ReportError" },
151 { SuspendCard, "SuspendCard" },
152 { ResumeCard, "ResumeCard" },
153 { EjectCard, "EjectCard" },
154 { InsertCard, "InsertCard" },
155 { ReplaceCIS, "ReplaceCIS" }
159 static int pcmcia_report_error(struct pcmcia_device *p_dev, error_info_t *err)
161 int i;
162 char *serv;
164 if (!p_dev)
165 printk(KERN_NOTICE);
166 else
167 printk(KERN_NOTICE "%s: ", p_dev->dev.bus_id);
169 for (i = 0; i < ARRAY_SIZE(service_table); i++)
170 if (service_table[i].key == err->func)
171 break;
172 if (i < ARRAY_SIZE(service_table))
173 serv = service_table[i].msg;
174 else
175 serv = "Unknown service number";
177 for (i = 0; i < ARRAY_SIZE(error_table); i++)
178 if (error_table[i].key == err->retcode)
179 break;
180 if (i < ARRAY_SIZE(error_table))
181 printk("%s: %s\n", serv, error_table[i].msg);
182 else
183 printk("%s: Unknown error code %#x\n", serv, err->retcode);
185 return CS_SUCCESS;
186 } /* report_error */
188 /* end of code which was in cs.c before */
190 /*======================================================================*/
192 void cs_error(struct pcmcia_device *p_dev, int func, int ret)
194 error_info_t err = { func, ret };
195 pcmcia_report_error(p_dev, &err);
197 EXPORT_SYMBOL(cs_error);
200 static void pcmcia_check_driver(struct pcmcia_driver *p_drv)
202 struct pcmcia_device_id *did = p_drv->id_table;
203 unsigned int i;
204 u32 hash;
206 if (!p_drv->probe || !p_drv->remove)
207 printk(KERN_DEBUG "pcmcia: %s lacks a requisite callback "
208 "function\n", p_drv->drv.name);
210 while (did && did->match_flags) {
211 for (i=0; i<4; i++) {
212 if (!did->prod_id[i])
213 continue;
215 hash = crc32(0, did->prod_id[i], strlen(did->prod_id[i]));
216 if (hash == did->prod_id_hash[i])
217 continue;
219 printk(KERN_DEBUG "pcmcia: %s: invalid hash for "
220 "product string \"%s\": is 0x%x, should "
221 "be 0x%x\n", p_drv->drv.name, did->prod_id[i],
222 did->prod_id_hash[i], hash);
223 printk(KERN_DEBUG "pcmcia: see "
224 "Documentation/pcmcia/devicetable.txt for "
225 "details\n");
227 did++;
230 return;
234 /*======================================================================*/
237 struct pcmcia_dynid {
238 struct list_head node;
239 struct pcmcia_device_id id;
243 * pcmcia_store_new_id - add a new PCMCIA device ID to this driver and re-probe devices
244 * @driver: target device driver
245 * @buf: buffer for scanning device ID data
246 * @count: input size
248 * Adds a new dynamic PCMCIA device ID to this driver,
249 * and causes the driver to probe for all devices again.
251 static ssize_t
252 pcmcia_store_new_id(struct device_driver *driver, const char *buf, size_t count)
254 struct pcmcia_dynid *dynid;
255 struct pcmcia_driver *pdrv = to_pcmcia_drv(driver);
256 __u16 match_flags, manf_id, card_id;
257 __u8 func_id, function, device_no;
258 __u32 prod_id_hash[4] = {0, 0, 0, 0};
259 int fields=0;
260 int retval = 0;
262 fields = sscanf(buf, "%hx %hx %hx %hhx %hhx %hhx %x %x %x %x",
263 &match_flags, &manf_id, &card_id, &func_id, &function, &device_no,
264 &prod_id_hash[0], &prod_id_hash[1], &prod_id_hash[2], &prod_id_hash[3]);
265 if (fields < 6)
266 return -EINVAL;
268 dynid = kzalloc(sizeof(struct pcmcia_dynid), GFP_KERNEL);
269 if (!dynid)
270 return -ENOMEM;
272 INIT_LIST_HEAD(&dynid->node);
273 dynid->id.match_flags = match_flags;
274 dynid->id.manf_id = manf_id;
275 dynid->id.card_id = card_id;
276 dynid->id.func_id = func_id;
277 dynid->id.function = function;
278 dynid->id.device_no = device_no;
279 memcpy(dynid->id.prod_id_hash, prod_id_hash, sizeof(__u32) * 4);
281 spin_lock(&pdrv->dynids.lock);
282 list_add_tail(&pdrv->dynids.list, &dynid->node);
283 spin_unlock(&pdrv->dynids.lock);
285 if (get_driver(&pdrv->drv)) {
286 retval = driver_attach(&pdrv->drv);
287 put_driver(&pdrv->drv);
290 if (retval)
291 return retval;
292 return count;
294 static DRIVER_ATTR(new_id, S_IWUSR, NULL, pcmcia_store_new_id);
296 static void
297 pcmcia_free_dynids(struct pcmcia_driver *drv)
299 struct pcmcia_dynid *dynid, *n;
301 spin_lock(&drv->dynids.lock);
302 list_for_each_entry_safe(dynid, n, &drv->dynids.list, node) {
303 list_del(&dynid->node);
304 kfree(dynid);
306 spin_unlock(&drv->dynids.lock);
309 static int
310 pcmcia_create_newid_file(struct pcmcia_driver *drv)
312 int error = 0;
313 if (drv->probe != NULL)
314 error = sysfs_create_file(&drv->drv.kobj,
315 &driver_attr_new_id.attr);
316 return error;
321 * pcmcia_register_driver - register a PCMCIA driver with the bus core
323 * Registers a PCMCIA driver with the PCMCIA bus core.
325 int pcmcia_register_driver(struct pcmcia_driver *driver)
327 int error;
329 if (!driver)
330 return -EINVAL;
332 pcmcia_check_driver(driver);
334 /* initialize common fields */
335 driver->drv.bus = &pcmcia_bus_type;
336 driver->drv.owner = driver->owner;
337 spin_lock_init(&driver->dynids.lock);
338 INIT_LIST_HEAD(&driver->dynids.list);
340 ds_dbg(3, "registering driver %s\n", driver->drv.name);
342 error = driver_register(&driver->drv);
343 if (error < 0)
344 return error;
346 error = pcmcia_create_newid_file(driver);
347 if (error)
348 driver_unregister(&driver->drv);
350 return error;
352 EXPORT_SYMBOL(pcmcia_register_driver);
355 * pcmcia_unregister_driver - unregister a PCMCIA driver with the bus core
357 void pcmcia_unregister_driver(struct pcmcia_driver *driver)
359 ds_dbg(3, "unregistering driver %s\n", driver->drv.name);
360 driver_unregister(&driver->drv);
361 pcmcia_free_dynids(driver);
363 EXPORT_SYMBOL(pcmcia_unregister_driver);
366 /* pcmcia_device handling */
368 struct pcmcia_device * pcmcia_get_dev(struct pcmcia_device *p_dev)
370 struct device *tmp_dev;
371 tmp_dev = get_device(&p_dev->dev);
372 if (!tmp_dev)
373 return NULL;
374 return to_pcmcia_dev(tmp_dev);
377 void pcmcia_put_dev(struct pcmcia_device *p_dev)
379 if (p_dev)
380 put_device(&p_dev->dev);
383 static void pcmcia_release_function(struct kref *ref)
385 struct config_t *c = container_of(ref, struct config_t, ref);
386 ds_dbg(1, "releasing config_t\n");
387 kfree(c);
390 static void pcmcia_release_dev(struct device *dev)
392 struct pcmcia_device *p_dev = to_pcmcia_dev(dev);
393 ds_dbg(1, "releasing device %s\n", p_dev->dev.bus_id);
394 pcmcia_put_socket(p_dev->socket);
395 kfree(p_dev->devname);
396 kref_put(&p_dev->function_config->ref, pcmcia_release_function);
397 kfree(p_dev);
400 static void pcmcia_add_device_later(struct pcmcia_socket *s, int mfc)
402 if (!s->pcmcia_state.device_add_pending) {
403 ds_dbg(1, "scheduling to add %s secondary"
404 " device to %d\n", mfc ? "mfc" : "pfc", s->sock);
405 s->pcmcia_state.device_add_pending = 1;
406 s->pcmcia_state.mfc_pfc = mfc;
407 schedule_work(&s->device_add);
409 return;
412 static int pcmcia_device_probe(struct device * dev)
414 struct pcmcia_device *p_dev;
415 struct pcmcia_driver *p_drv;
416 struct pcmcia_device_id *did;
417 struct pcmcia_socket *s;
418 cistpl_config_t cis_config;
419 int ret = 0;
421 dev = get_device(dev);
422 if (!dev)
423 return -ENODEV;
425 p_dev = to_pcmcia_dev(dev);
426 p_drv = to_pcmcia_drv(dev->driver);
427 s = p_dev->socket;
429 ds_dbg(1, "trying to bind %s to %s\n", p_dev->dev.bus_id,
430 p_drv->drv.name);
432 if ((!p_drv->probe) || (!p_dev->function_config) ||
433 (!try_module_get(p_drv->owner))) {
434 ret = -EINVAL;
435 goto put_dev;
438 /* set up some more device information */
439 ret = pccard_read_tuple(p_dev->socket, p_dev->func, CISTPL_CONFIG,
440 &cis_config);
441 if (!ret) {
442 p_dev->conf.ConfigBase = cis_config.base;
443 p_dev->conf.Present = cis_config.rmask[0];
444 } else {
445 printk(KERN_INFO "pcmcia: could not parse base and rmask0 of CIS\n");
446 p_dev->conf.ConfigBase = 0;
447 p_dev->conf.Present = 0;
450 ret = p_drv->probe(p_dev);
451 if (ret) {
452 ds_dbg(1, "binding %s to %s failed with %d\n",
453 p_dev->dev.bus_id, p_drv->drv.name, ret);
454 goto put_module;
457 /* handle pseudo multifunction devices:
458 * there are at most two pseudo multifunction devices.
459 * if we're matching against the first, schedule a
460 * call which will then check whether there are two
461 * pseudo devices, and if not, add the second one.
463 did = p_dev->dev.driver_data;
464 if (did && (did->match_flags & PCMCIA_DEV_ID_MATCH_DEVICE_NO) &&
465 (p_dev->socket->device_count == 1) && (p_dev->device_no == 0))
466 pcmcia_add_device_later(p_dev->socket, 0);
468 put_module:
469 if (ret)
470 module_put(p_drv->owner);
471 put_dev:
472 if (ret)
473 put_device(dev);
474 return (ret);
479 * Removes a PCMCIA card from the device tree and socket list.
481 static void pcmcia_card_remove(struct pcmcia_socket *s, struct pcmcia_device *leftover)
483 struct pcmcia_device *p_dev;
484 struct pcmcia_device *tmp;
485 unsigned long flags;
487 ds_dbg(2, "pcmcia_card_remove(%d) %s\n", s->sock,
488 leftover ? leftover->devname : "");
490 if (!leftover)
491 s->device_count = 0;
492 else
493 s->device_count = 1;
495 /* unregister all pcmcia_devices registered with this socket, except leftover */
496 list_for_each_entry_safe(p_dev, tmp, &s->devices_list, socket_device_list) {
497 if (p_dev == leftover)
498 continue;
500 spin_lock_irqsave(&pcmcia_dev_list_lock, flags);
501 list_del(&p_dev->socket_device_list);
502 p_dev->_removed=1;
503 spin_unlock_irqrestore(&pcmcia_dev_list_lock, flags);
505 ds_dbg(2, "unregistering device %s\n", p_dev->dev.bus_id);
506 device_unregister(&p_dev->dev);
509 return;
512 static int pcmcia_device_remove(struct device * dev)
514 struct pcmcia_device *p_dev;
515 struct pcmcia_driver *p_drv;
516 struct pcmcia_device_id *did;
517 int i;
519 p_dev = to_pcmcia_dev(dev);
520 p_drv = to_pcmcia_drv(dev->driver);
522 ds_dbg(1, "removing device %s\n", p_dev->dev.bus_id);
524 /* If we're removing the primary module driving a
525 * pseudo multi-function card, we need to unbind
526 * all devices
528 did = p_dev->dev.driver_data;
529 if (did && (did->match_flags & PCMCIA_DEV_ID_MATCH_DEVICE_NO) &&
530 (p_dev->socket->device_count != 0) &&
531 (p_dev->device_no == 0))
532 pcmcia_card_remove(p_dev->socket, p_dev);
534 /* detach the "instance" */
535 if (!p_drv)
536 return 0;
538 if (p_drv->remove)
539 p_drv->remove(p_dev);
541 p_dev->dev_node = NULL;
543 /* check for proper unloading */
544 if (p_dev->_irq || p_dev->_io || p_dev->_locked)
545 printk(KERN_INFO "pcmcia: driver %s did not release config properly\n",
546 p_drv->drv.name);
548 for (i = 0; i < MAX_WIN; i++)
549 if (p_dev->_win & CLIENT_WIN_REQ(i))
550 printk(KERN_INFO "pcmcia: driver %s did not release windows properly\n",
551 p_drv->drv.name);
553 /* references from pcmcia_probe_device */
554 pcmcia_put_dev(p_dev);
555 module_put(p_drv->owner);
557 return 0;
562 * pcmcia_device_query -- determine information about a pcmcia device
564 static int pcmcia_device_query(struct pcmcia_device *p_dev)
566 cistpl_manfid_t manf_id;
567 cistpl_funcid_t func_id;
568 cistpl_vers_1_t *vers1;
569 unsigned int i;
571 vers1 = kmalloc(sizeof(*vers1), GFP_KERNEL);
572 if (!vers1)
573 return -ENOMEM;
575 if (!pccard_read_tuple(p_dev->socket, p_dev->func,
576 CISTPL_MANFID, &manf_id)) {
577 p_dev->manf_id = manf_id.manf;
578 p_dev->card_id = manf_id.card;
579 p_dev->has_manf_id = 1;
580 p_dev->has_card_id = 1;
583 if (!pccard_read_tuple(p_dev->socket, p_dev->func,
584 CISTPL_FUNCID, &func_id)) {
585 p_dev->func_id = func_id.func;
586 p_dev->has_func_id = 1;
587 } else {
588 /* rule of thumb: cards with no FUNCID, but with
589 * common memory device geometry information, are
590 * probably memory cards (from pcmcia-cs) */
591 cistpl_device_geo_t *devgeo;
593 devgeo = kmalloc(sizeof(*devgeo), GFP_KERNEL);
594 if (!devgeo) {
595 kfree(vers1);
596 return -ENOMEM;
598 if (!pccard_read_tuple(p_dev->socket, p_dev->func,
599 CISTPL_DEVICE_GEO, devgeo)) {
600 ds_dbg(0, "mem device geometry probably means "
601 "FUNCID_MEMORY\n");
602 p_dev->func_id = CISTPL_FUNCID_MEMORY;
603 p_dev->has_func_id = 1;
605 kfree(devgeo);
608 if (!pccard_read_tuple(p_dev->socket, p_dev->func, CISTPL_VERS_1,
609 vers1)) {
610 for (i=0; i < vers1->ns; i++) {
611 char *tmp;
612 unsigned int length;
614 tmp = vers1->str + vers1->ofs[i];
616 length = strlen(tmp) + 1;
617 if ((length < 2) || (length > 255))
618 continue;
620 p_dev->prod_id[i] = kmalloc(sizeof(char) * length,
621 GFP_KERNEL);
622 if (!p_dev->prod_id[i])
623 continue;
625 p_dev->prod_id[i] = strncpy(p_dev->prod_id[i],
626 tmp, length);
630 kfree(vers1);
631 return 0;
635 /* device_add_lock is needed to avoid double registration by cardmgr and kernel.
636 * Serializes pcmcia_device_add; will most likely be removed in future.
638 * While it has the caveat that adding new PCMCIA devices inside(!) device_register()
639 * won't work, this doesn't matter much at the moment: the driver core doesn't
640 * support it either.
642 static DEFINE_MUTEX(device_add_lock);
644 struct pcmcia_device * pcmcia_device_add(struct pcmcia_socket *s, unsigned int function)
646 struct pcmcia_device *p_dev, *tmp_dev;
647 unsigned long flags;
648 int bus_id_len;
650 s = pcmcia_get_socket(s);
651 if (!s)
652 return NULL;
654 mutex_lock(&device_add_lock);
656 ds_dbg(3, "adding device to %d, function %d\n", s->sock, function);
658 /* max of 4 devices per card */
659 if (s->device_count == 4)
660 goto err_put;
662 p_dev = kzalloc(sizeof(struct pcmcia_device), GFP_KERNEL);
663 if (!p_dev)
664 goto err_put;
666 p_dev->socket = s;
667 p_dev->device_no = (s->device_count++);
668 p_dev->func = function;
670 p_dev->dev.bus = &pcmcia_bus_type;
671 p_dev->dev.parent = s->dev.parent;
672 p_dev->dev.release = pcmcia_release_dev;
673 bus_id_len = sprintf (p_dev->dev.bus_id, "%d.%d", p_dev->socket->sock, p_dev->device_no);
675 p_dev->devname = kmalloc(6 + bus_id_len + 1, GFP_KERNEL);
676 if (!p_dev->devname)
677 goto err_free;
678 sprintf (p_dev->devname, "pcmcia%s", p_dev->dev.bus_id);
679 ds_dbg(3, "devname is %s\n", p_dev->devname);
681 spin_lock_irqsave(&pcmcia_dev_list_lock, flags);
684 * p_dev->function_config must be the same for all card functions.
685 * Note that this is serialized by the device_add_lock, so that
686 * only one such struct will be created.
688 list_for_each_entry(tmp_dev, &s->devices_list, socket_device_list)
689 if (p_dev->func == tmp_dev->func) {
690 p_dev->function_config = tmp_dev->function_config;
691 kref_get(&p_dev->function_config->ref);
694 /* Add to the list in pcmcia_bus_socket */
695 list_add(&p_dev->socket_device_list, &s->devices_list);
697 spin_unlock_irqrestore(&pcmcia_dev_list_lock, flags);
699 if (!p_dev->function_config) {
700 ds_dbg(3, "creating config_t for %s\n", p_dev->dev.bus_id);
701 p_dev->function_config = kzalloc(sizeof(struct config_t),
702 GFP_KERNEL);
703 if (!p_dev->function_config)
704 goto err_unreg;
705 kref_init(&p_dev->function_config->ref);
708 printk(KERN_NOTICE "pcmcia: registering new device %s\n",
709 p_dev->devname);
711 pcmcia_device_query(p_dev);
713 if (device_register(&p_dev->dev))
714 goto err_unreg;
716 mutex_unlock(&device_add_lock);
718 return p_dev;
720 err_unreg:
721 spin_lock_irqsave(&pcmcia_dev_list_lock, flags);
722 list_del(&p_dev->socket_device_list);
723 spin_unlock_irqrestore(&pcmcia_dev_list_lock, flags);
725 err_free:
726 kfree(p_dev->devname);
727 kfree(p_dev);
728 s->device_count--;
729 err_put:
730 mutex_unlock(&device_add_lock);
731 pcmcia_put_socket(s);
733 return NULL;
737 static int pcmcia_card_add(struct pcmcia_socket *s)
739 cisinfo_t cisinfo;
740 cistpl_longlink_mfc_t mfc;
741 unsigned int no_funcs, i;
742 int ret = 0;
744 if (!(s->resource_setup_done)) {
745 ds_dbg(3, "no resources available, delaying card_add\n");
746 return -EAGAIN; /* try again, but later... */
749 if (pcmcia_validate_mem(s)) {
750 ds_dbg(3, "validating mem resources failed, "
751 "delaying card_add\n");
752 return -EAGAIN; /* try again, but later... */
755 ret = pccard_validate_cis(s, BIND_FN_ALL, &cisinfo);
756 if (ret || !cisinfo.Chains) {
757 ds_dbg(0, "invalid CIS or invalid resources\n");
758 return -ENODEV;
761 if (!pccard_read_tuple(s, BIND_FN_ALL, CISTPL_LONGLINK_MFC, &mfc))
762 no_funcs = mfc.nfn;
763 else
764 no_funcs = 1;
765 s->functions = no_funcs;
767 for (i=0; i < no_funcs; i++)
768 pcmcia_device_add(s, i);
770 return (ret);
774 static void pcmcia_delayed_add_device(struct work_struct *work)
776 struct pcmcia_socket *s =
777 container_of(work, struct pcmcia_socket, device_add);
778 ds_dbg(1, "adding additional device to %d\n", s->sock);
779 pcmcia_device_add(s, s->pcmcia_state.mfc_pfc);
780 s->pcmcia_state.device_add_pending = 0;
781 s->pcmcia_state.mfc_pfc = 0;
784 static int pcmcia_requery(struct device *dev, void * _data)
786 struct pcmcia_device *p_dev = to_pcmcia_dev(dev);
787 if (!p_dev->dev.driver) {
788 ds_dbg(1, "update device information for %s\n",
789 p_dev->dev.bus_id);
790 pcmcia_device_query(p_dev);
793 return 0;
796 static void pcmcia_bus_rescan(struct pcmcia_socket *skt, int new_cis)
798 int no_devices = 0;
799 int ret = 0;
800 unsigned long flags;
802 /* must be called with skt_mutex held */
803 ds_dbg(0, "re-scanning socket %d\n", skt->sock);
805 spin_lock_irqsave(&pcmcia_dev_list_lock, flags);
806 if (list_empty(&skt->devices_list))
807 no_devices = 1;
808 spin_unlock_irqrestore(&pcmcia_dev_list_lock, flags);
810 /* If this is because of a CIS override, start over */
811 if (new_cis && !no_devices)
812 pcmcia_card_remove(skt, NULL);
814 /* if no devices were added for this socket yet because of
815 * missing resource information or other trouble, we need to
816 * do this now. */
817 if (no_devices || new_cis) {
818 ret = pcmcia_card_add(skt);
819 if (ret)
820 return;
823 /* some device information might have changed because of a CIS
824 * update or because we can finally read it correctly... so
825 * determine it again, overwriting old values if necessary. */
826 bus_for_each_dev(&pcmcia_bus_type, NULL, NULL, pcmcia_requery);
828 /* we re-scan all devices, not just the ones connected to this
829 * socket. This does not matter, though. */
830 ret = bus_rescan_devices(&pcmcia_bus_type);
831 if (ret)
832 printk(KERN_INFO "pcmcia: bus_rescan_devices failed\n");
835 #ifdef CONFIG_PCMCIA_LOAD_CIS
838 * pcmcia_load_firmware - load CIS from userspace if device-provided is broken
839 * @dev - the pcmcia device which needs a CIS override
840 * @filename - requested filename in /lib/firmware/
842 * This uses the in-kernel firmware loading mechanism to use a "fake CIS" if
843 * the one provided by the card is broken. The firmware files reside in
844 * /lib/firmware/ in userspace.
846 static int pcmcia_load_firmware(struct pcmcia_device *dev, char * filename)
848 struct pcmcia_socket *s = dev->socket;
849 const struct firmware *fw;
850 char path[20];
851 int ret = -ENOMEM;
852 int no_funcs;
853 int old_funcs;
854 cisdump_t *cis;
855 cistpl_longlink_mfc_t mfc;
857 if (!filename)
858 return -EINVAL;
860 ds_dbg(1, "trying to load CIS file %s\n", filename);
862 if (strlen(filename) > 14) {
863 printk(KERN_WARNING "pcmcia: CIS filename is too long\n");
864 return -EINVAL;
867 snprintf(path, 20, "%s", filename);
869 if (request_firmware(&fw, path, &dev->dev) == 0) {
870 if (fw->size >= CISTPL_MAX_CIS_SIZE) {
871 ret = -EINVAL;
872 printk(KERN_ERR "pcmcia: CIS override is too big\n");
873 goto release;
876 cis = kzalloc(sizeof(cisdump_t), GFP_KERNEL);
877 if (!cis) {
878 ret = -ENOMEM;
879 goto release;
882 cis->Length = fw->size + 1;
883 memcpy(cis->Data, fw->data, fw->size);
885 if (!pcmcia_replace_cis(s, cis))
886 ret = 0;
887 else {
888 printk(KERN_ERR "pcmcia: CIS override failed\n");
889 goto release;
893 /* update information */
894 pcmcia_device_query(dev);
896 /* does this cis override add or remove functions? */
897 old_funcs = s->functions;
899 if (!pccard_read_tuple(s, BIND_FN_ALL, CISTPL_LONGLINK_MFC, &mfc))
900 no_funcs = mfc.nfn;
901 else
902 no_funcs = 1;
903 s->functions = no_funcs;
905 if (old_funcs > no_funcs)
906 pcmcia_card_remove(s, dev);
907 else if (no_funcs > old_funcs)
908 pcmcia_add_device_later(s, 1);
910 release:
911 release_firmware(fw);
913 return (ret);
916 #else /* !CONFIG_PCMCIA_LOAD_CIS */
918 static inline int pcmcia_load_firmware(struct pcmcia_device *dev, char * filename)
920 return -ENODEV;
923 #endif
926 static inline int pcmcia_devmatch(struct pcmcia_device *dev,
927 struct pcmcia_device_id *did)
929 if (did->match_flags & PCMCIA_DEV_ID_MATCH_MANF_ID) {
930 if ((!dev->has_manf_id) || (dev->manf_id != did->manf_id))
931 return 0;
934 if (did->match_flags & PCMCIA_DEV_ID_MATCH_CARD_ID) {
935 if ((!dev->has_card_id) || (dev->card_id != did->card_id))
936 return 0;
939 if (did->match_flags & PCMCIA_DEV_ID_MATCH_FUNCTION) {
940 if (dev->func != did->function)
941 return 0;
944 if (did->match_flags & PCMCIA_DEV_ID_MATCH_PROD_ID1) {
945 if (!dev->prod_id[0])
946 return 0;
947 if (strcmp(did->prod_id[0], dev->prod_id[0]))
948 return 0;
951 if (did->match_flags & PCMCIA_DEV_ID_MATCH_PROD_ID2) {
952 if (!dev->prod_id[1])
953 return 0;
954 if (strcmp(did->prod_id[1], dev->prod_id[1]))
955 return 0;
958 if (did->match_flags & PCMCIA_DEV_ID_MATCH_PROD_ID3) {
959 if (!dev->prod_id[2])
960 return 0;
961 if (strcmp(did->prod_id[2], dev->prod_id[2]))
962 return 0;
965 if (did->match_flags & PCMCIA_DEV_ID_MATCH_PROD_ID4) {
966 if (!dev->prod_id[3])
967 return 0;
968 if (strcmp(did->prod_id[3], dev->prod_id[3]))
969 return 0;
972 if (did->match_flags & PCMCIA_DEV_ID_MATCH_DEVICE_NO) {
973 if (dev->device_no != did->device_no)
974 return 0;
977 if (did->match_flags & PCMCIA_DEV_ID_MATCH_FUNC_ID) {
978 if ((!dev->has_func_id) || (dev->func_id != did->func_id))
979 return 0;
981 /* if this is a pseudo-multi-function device,
982 * we need explicit matches */
983 if (did->match_flags & PCMCIA_DEV_ID_MATCH_DEVICE_NO)
984 return 0;
985 if (dev->device_no)
986 return 0;
988 /* also, FUNC_ID matching needs to be activated by userspace
989 * after it has re-checked that there is no possible module
990 * with a prod_id/manf_id/card_id match.
992 ds_dbg(0, "skipping FUNC_ID match for %s until userspace "
993 "interaction\n", dev->dev.bus_id);
994 if (!dev->allow_func_id_match)
995 return 0;
998 if (did->match_flags & PCMCIA_DEV_ID_MATCH_FAKE_CIS) {
999 ds_dbg(0, "device %s needs a fake CIS\n", dev->dev.bus_id);
1000 if (!dev->socket->fake_cis)
1001 pcmcia_load_firmware(dev, did->cisfile);
1003 if (!dev->socket->fake_cis)
1004 return 0;
1007 if (did->match_flags & PCMCIA_DEV_ID_MATCH_ANONYMOUS) {
1008 int i;
1009 for (i=0; i<4; i++)
1010 if (dev->prod_id[i])
1011 return 0;
1012 if (dev->has_manf_id || dev->has_card_id || dev->has_func_id)
1013 return 0;
1016 dev->dev.driver_data = (void *) did;
1018 return 1;
1022 static int pcmcia_bus_match(struct device * dev, struct device_driver * drv) {
1023 struct pcmcia_device * p_dev = to_pcmcia_dev(dev);
1024 struct pcmcia_driver * p_drv = to_pcmcia_drv(drv);
1025 struct pcmcia_device_id *did = p_drv->id_table;
1026 struct pcmcia_dynid *dynid;
1028 /* match dynamic devices first */
1029 spin_lock(&p_drv->dynids.lock);
1030 list_for_each_entry(dynid, &p_drv->dynids.list, node) {
1031 ds_dbg(3, "trying to match %s to %s\n", dev->bus_id,
1032 drv->name);
1033 if (pcmcia_devmatch(p_dev, &dynid->id)) {
1034 ds_dbg(0, "matched %s to %s\n", dev->bus_id,
1035 drv->name);
1036 spin_unlock(&p_drv->dynids.lock);
1037 return 1;
1040 spin_unlock(&p_drv->dynids.lock);
1042 #ifdef CONFIG_PCMCIA_IOCTL
1043 /* matching by cardmgr */
1044 if (p_dev->cardmgr == p_drv) {
1045 ds_dbg(0, "cardmgr matched %s to %s\n", dev->bus_id,
1046 drv->name);
1047 return 1;
1049 #endif
1051 while (did && did->match_flags) {
1052 ds_dbg(3, "trying to match %s to %s\n", dev->bus_id,
1053 drv->name);
1054 if (pcmcia_devmatch(p_dev, did)) {
1055 ds_dbg(0, "matched %s to %s\n", dev->bus_id,
1056 drv->name);
1057 return 1;
1059 did++;
1062 return 0;
1065 #ifdef CONFIG_HOTPLUG
1067 static int pcmcia_bus_uevent(struct device *dev, char **envp, int num_envp,
1068 char *buffer, int buffer_size)
1070 struct pcmcia_device *p_dev;
1071 int i, length = 0;
1072 u32 hash[4] = { 0, 0, 0, 0};
1074 if (!dev)
1075 return -ENODEV;
1077 p_dev = to_pcmcia_dev(dev);
1079 /* calculate hashes */
1080 for (i=0; i<4; i++) {
1081 if (!p_dev->prod_id[i])
1082 continue;
1083 hash[i] = crc32(0, p_dev->prod_id[i], strlen(p_dev->prod_id[i]));
1086 i = 0;
1088 if (add_uevent_var(envp, num_envp, &i,
1089 buffer, buffer_size, &length,
1090 "SOCKET_NO=%u",
1091 p_dev->socket->sock))
1092 return -ENOMEM;
1094 if (add_uevent_var(envp, num_envp, &i,
1095 buffer, buffer_size, &length,
1096 "DEVICE_NO=%02X",
1097 p_dev->device_no))
1098 return -ENOMEM;
1100 if (add_uevent_var(envp, num_envp, &i,
1101 buffer, buffer_size, &length,
1102 "MODALIAS=pcmcia:m%04Xc%04Xf%02Xfn%02Xpfn%02X"
1103 "pa%08Xpb%08Xpc%08Xpd%08X",
1104 p_dev->has_manf_id ? p_dev->manf_id : 0,
1105 p_dev->has_card_id ? p_dev->card_id : 0,
1106 p_dev->has_func_id ? p_dev->func_id : 0,
1107 p_dev->func,
1108 p_dev->device_no,
1109 hash[0],
1110 hash[1],
1111 hash[2],
1112 hash[3]))
1113 return -ENOMEM;
1115 envp[i] = NULL;
1117 return 0;
1120 #else
1122 static int pcmcia_bus_uevent(struct device *dev, char **envp, int num_envp,
1123 char *buffer, int buffer_size)
1125 return -ENODEV;
1128 #endif
1130 /************************ runtime PM support ***************************/
1132 static int pcmcia_dev_suspend(struct device *dev, pm_message_t state);
1133 static int pcmcia_dev_resume(struct device *dev);
1135 static int runtime_suspend(struct device *dev)
1137 int rc;
1139 down(&dev->sem);
1140 rc = pcmcia_dev_suspend(dev, PMSG_SUSPEND);
1141 up(&dev->sem);
1142 if (!rc)
1143 dev->power.power_state.event = PM_EVENT_SUSPEND;
1144 return rc;
1147 static void runtime_resume(struct device *dev)
1149 int rc;
1151 down(&dev->sem);
1152 rc = pcmcia_dev_resume(dev);
1153 up(&dev->sem);
1154 if (!rc)
1155 dev->power.power_state.event = PM_EVENT_ON;
1158 /************************ per-device sysfs output ***************************/
1160 #define pcmcia_device_attr(field, test, format) \
1161 static ssize_t field##_show (struct device *dev, struct device_attribute *attr, char *buf) \
1163 struct pcmcia_device *p_dev = to_pcmcia_dev(dev); \
1164 return p_dev->test ? sprintf (buf, format, p_dev->field) : -ENODEV; \
1167 #define pcmcia_device_stringattr(name, field) \
1168 static ssize_t name##_show (struct device *dev, struct device_attribute *attr, char *buf) \
1170 struct pcmcia_device *p_dev = to_pcmcia_dev(dev); \
1171 return p_dev->field ? sprintf (buf, "%s\n", p_dev->field) : -ENODEV; \
1174 pcmcia_device_attr(func, socket, "0x%02x\n");
1175 pcmcia_device_attr(func_id, has_func_id, "0x%02x\n");
1176 pcmcia_device_attr(manf_id, has_manf_id, "0x%04x\n");
1177 pcmcia_device_attr(card_id, has_card_id, "0x%04x\n");
1178 pcmcia_device_stringattr(prod_id1, prod_id[0]);
1179 pcmcia_device_stringattr(prod_id2, prod_id[1]);
1180 pcmcia_device_stringattr(prod_id3, prod_id[2]);
1181 pcmcia_device_stringattr(prod_id4, prod_id[3]);
1184 static ssize_t pcmcia_show_pm_state(struct device *dev, struct device_attribute *attr, char *buf)
1186 struct pcmcia_device *p_dev = to_pcmcia_dev(dev);
1188 if (p_dev->suspended)
1189 return sprintf(buf, "off\n");
1190 else
1191 return sprintf(buf, "on\n");
1194 static ssize_t pcmcia_store_pm_state(struct device *dev, struct device_attribute *attr,
1195 const char *buf, size_t count)
1197 struct pcmcia_device *p_dev = to_pcmcia_dev(dev);
1198 int ret = 0;
1200 if (!count)
1201 return -EINVAL;
1203 if ((!p_dev->suspended) && !strncmp(buf, "off", 3))
1204 ret = runtime_suspend(dev);
1205 else if (p_dev->suspended && !strncmp(buf, "on", 2))
1206 runtime_resume(dev);
1208 return ret ? ret : count;
1212 static ssize_t modalias_show(struct device *dev, struct device_attribute *attr, char *buf)
1214 struct pcmcia_device *p_dev = to_pcmcia_dev(dev);
1215 int i;
1216 u32 hash[4] = { 0, 0, 0, 0};
1218 /* calculate hashes */
1219 for (i=0; i<4; i++) {
1220 if (!p_dev->prod_id[i])
1221 continue;
1222 hash[i] = crc32(0,p_dev->prod_id[i],strlen(p_dev->prod_id[i]));
1224 return sprintf(buf, "pcmcia:m%04Xc%04Xf%02Xfn%02Xpfn%02X"
1225 "pa%08Xpb%08Xpc%08Xpd%08X\n",
1226 p_dev->has_manf_id ? p_dev->manf_id : 0,
1227 p_dev->has_card_id ? p_dev->card_id : 0,
1228 p_dev->has_func_id ? p_dev->func_id : 0,
1229 p_dev->func, p_dev->device_no,
1230 hash[0], hash[1], hash[2], hash[3]);
1233 static ssize_t pcmcia_store_allow_func_id_match(struct device *dev,
1234 struct device_attribute *attr, const char *buf, size_t count)
1236 struct pcmcia_device *p_dev = to_pcmcia_dev(dev);
1237 int ret;
1239 if (!count)
1240 return -EINVAL;
1242 mutex_lock(&p_dev->socket->skt_mutex);
1243 p_dev->allow_func_id_match = 1;
1244 mutex_unlock(&p_dev->socket->skt_mutex);
1246 ret = bus_rescan_devices(&pcmcia_bus_type);
1247 if (ret)
1248 printk(KERN_INFO "pcmcia: bus_rescan_devices failed after "
1249 "allowing func_id matches\n");
1251 return count;
1254 static struct device_attribute pcmcia_dev_attrs[] = {
1255 __ATTR(function, 0444, func_show, NULL),
1256 __ATTR(pm_state, 0644, pcmcia_show_pm_state, pcmcia_store_pm_state),
1257 __ATTR_RO(func_id),
1258 __ATTR_RO(manf_id),
1259 __ATTR_RO(card_id),
1260 __ATTR_RO(prod_id1),
1261 __ATTR_RO(prod_id2),
1262 __ATTR_RO(prod_id3),
1263 __ATTR_RO(prod_id4),
1264 __ATTR_RO(modalias),
1265 __ATTR(allow_func_id_match, 0200, NULL, pcmcia_store_allow_func_id_match),
1266 __ATTR_NULL,
1269 /* PM support, also needed for reset */
1271 static int pcmcia_dev_suspend(struct device * dev, pm_message_t state)
1273 struct pcmcia_device *p_dev = to_pcmcia_dev(dev);
1274 struct pcmcia_driver *p_drv = NULL;
1275 int ret = 0;
1277 ds_dbg(2, "suspending %s\n", dev->bus_id);
1279 if (dev->driver)
1280 p_drv = to_pcmcia_drv(dev->driver);
1282 if (!p_drv)
1283 goto out;
1285 if (p_drv->suspend) {
1286 ret = p_drv->suspend(p_dev);
1287 if (ret) {
1288 printk(KERN_ERR "pcmcia: device %s (driver %s) did "
1289 "not want to go to sleep (%d)\n",
1290 p_dev->devname, p_drv->drv.name, ret);
1291 goto out;
1295 if (p_dev->device_no == p_dev->func) {
1296 ds_dbg(2, "releasing configuration for %s\n", dev->bus_id);
1297 pcmcia_release_configuration(p_dev);
1300 out:
1301 if (!ret)
1302 p_dev->suspended = 1;
1303 return ret;
1307 static int pcmcia_dev_resume(struct device * dev)
1309 struct pcmcia_device *p_dev = to_pcmcia_dev(dev);
1310 struct pcmcia_driver *p_drv = NULL;
1311 int ret = 0;
1313 ds_dbg(2, "resuming %s\n", dev->bus_id);
1315 if (dev->driver)
1316 p_drv = to_pcmcia_drv(dev->driver);
1318 if (!p_drv)
1319 goto out;
1321 if (p_dev->device_no == p_dev->func) {
1322 ds_dbg(2, "requesting configuration for %s\n", dev->bus_id);
1323 ret = pcmcia_request_configuration(p_dev, &p_dev->conf);
1324 if (ret)
1325 goto out;
1328 if (p_drv->resume)
1329 ret = p_drv->resume(p_dev);
1331 out:
1332 if (!ret)
1333 p_dev->suspended = 0;
1334 return ret;
1338 static int pcmcia_bus_suspend_callback(struct device *dev, void * _data)
1340 struct pcmcia_socket *skt = _data;
1341 struct pcmcia_device *p_dev = to_pcmcia_dev(dev);
1343 if (p_dev->socket != skt || p_dev->suspended)
1344 return 0;
1346 return runtime_suspend(dev);
1349 static int pcmcia_bus_resume_callback(struct device *dev, void * _data)
1351 struct pcmcia_socket *skt = _data;
1352 struct pcmcia_device *p_dev = to_pcmcia_dev(dev);
1354 if (p_dev->socket != skt || !p_dev->suspended)
1355 return 0;
1357 runtime_resume(dev);
1359 return 0;
1362 static int pcmcia_bus_resume(struct pcmcia_socket *skt)
1364 ds_dbg(2, "resuming socket %d\n", skt->sock);
1365 bus_for_each_dev(&pcmcia_bus_type, NULL, skt, pcmcia_bus_resume_callback);
1366 return 0;
1369 static int pcmcia_bus_suspend(struct pcmcia_socket *skt)
1371 ds_dbg(2, "suspending socket %d\n", skt->sock);
1372 if (bus_for_each_dev(&pcmcia_bus_type, NULL, skt,
1373 pcmcia_bus_suspend_callback)) {
1374 pcmcia_bus_resume(skt);
1375 return -EIO;
1377 return 0;
1381 /*======================================================================
1383 The card status event handler.
1385 ======================================================================*/
1387 /* Normally, the event is passed to individual drivers after
1388 * informing userspace. Only for CS_EVENT_CARD_REMOVAL this
1389 * is inversed to maintain historic compatibility.
1392 static int ds_event(struct pcmcia_socket *skt, event_t event, int priority)
1394 struct pcmcia_socket *s = pcmcia_get_socket(skt);
1396 if (!s) {
1397 printk(KERN_ERR "PCMCIA obtaining reference to socket %p " \
1398 "failed, event 0x%x lost!\n", skt, event);
1399 return -ENODEV;
1402 ds_dbg(1, "ds_event(0x%06x, %d, 0x%p)\n",
1403 event, priority, skt);
1405 switch (event) {
1406 case CS_EVENT_CARD_REMOVAL:
1407 s->pcmcia_state.present = 0;
1408 pcmcia_card_remove(skt, NULL);
1409 handle_event(skt, event);
1410 break;
1412 case CS_EVENT_CARD_INSERTION:
1413 s->pcmcia_state.present = 1;
1414 pcmcia_card_add(skt);
1415 handle_event(skt, event);
1416 break;
1418 case CS_EVENT_EJECTION_REQUEST:
1419 break;
1421 case CS_EVENT_PM_SUSPEND:
1422 case CS_EVENT_PM_RESUME:
1423 case CS_EVENT_RESET_PHYSICAL:
1424 case CS_EVENT_CARD_RESET:
1425 default:
1426 handle_event(skt, event);
1427 break;
1430 pcmcia_put_socket(s);
1432 return 0;
1433 } /* ds_event */
1436 struct pcmcia_device * pcmcia_dev_present(struct pcmcia_device *_p_dev)
1438 struct pcmcia_device *p_dev;
1439 struct pcmcia_device *ret = NULL;
1441 p_dev = pcmcia_get_dev(_p_dev);
1442 if (!p_dev)
1443 return NULL;
1445 if (!p_dev->socket->pcmcia_state.present)
1446 goto out;
1448 if (p_dev->_removed)
1449 goto out;
1451 if (p_dev->suspended)
1452 goto out;
1454 ret = p_dev;
1455 out:
1456 pcmcia_put_dev(p_dev);
1457 return ret;
1459 EXPORT_SYMBOL(pcmcia_dev_present);
1462 static struct pcmcia_callback pcmcia_bus_callback = {
1463 .owner = THIS_MODULE,
1464 .event = ds_event,
1465 .requery = pcmcia_bus_rescan,
1466 .suspend = pcmcia_bus_suspend,
1467 .resume = pcmcia_bus_resume,
1470 static int __devinit pcmcia_bus_add_socket(struct device *dev,
1471 struct class_interface *class_intf)
1473 struct pcmcia_socket *socket = dev_get_drvdata(dev);
1474 int ret;
1476 socket = pcmcia_get_socket(socket);
1477 if (!socket) {
1478 printk(KERN_ERR "PCMCIA obtaining reference to socket %p failed\n", socket);
1479 return -ENODEV;
1483 * Ugly. But we want to wait for the socket threads to have started up.
1484 * We really should let the drivers themselves drive some of this..
1486 msleep(250);
1488 #ifdef CONFIG_PCMCIA_IOCTL
1489 init_waitqueue_head(&socket->queue);
1490 #endif
1491 INIT_LIST_HEAD(&socket->devices_list);
1492 INIT_WORK(&socket->device_add, pcmcia_delayed_add_device);
1493 memset(&socket->pcmcia_state, 0, sizeof(u8));
1494 socket->device_count = 0;
1496 ret = pccard_register_pcmcia(socket, &pcmcia_bus_callback);
1497 if (ret) {
1498 printk(KERN_ERR "PCMCIA registration PCCard core failed for socket %p\n", socket);
1499 pcmcia_put_socket(socket);
1500 return (ret);
1503 return 0;
1506 static void pcmcia_bus_remove_socket(struct device *dev,
1507 struct class_interface *class_intf)
1509 struct pcmcia_socket *socket = dev_get_drvdata(dev);
1511 if (!socket)
1512 return;
1514 socket->pcmcia_state.dead = 1;
1515 pccard_register_pcmcia(socket, NULL);
1517 /* unregister any unbound devices */
1518 mutex_lock(&socket->skt_mutex);
1519 pcmcia_card_remove(socket, NULL);
1520 mutex_unlock(&socket->skt_mutex);
1522 pcmcia_put_socket(socket);
1524 return;
1528 /* the pcmcia_bus_interface is used to handle pcmcia socket devices */
1529 static struct class_interface pcmcia_bus_interface = {
1530 .class = &pcmcia_socket_class,
1531 .add_dev = &pcmcia_bus_add_socket,
1532 .remove_dev = &pcmcia_bus_remove_socket,
1536 struct bus_type pcmcia_bus_type = {
1537 .name = "pcmcia",
1538 .uevent = pcmcia_bus_uevent,
1539 .match = pcmcia_bus_match,
1540 .dev_attrs = pcmcia_dev_attrs,
1541 .probe = pcmcia_device_probe,
1542 .remove = pcmcia_device_remove,
1543 .suspend = pcmcia_dev_suspend,
1544 .resume = pcmcia_dev_resume,
1548 static int __init init_pcmcia_bus(void)
1550 int ret;
1552 spin_lock_init(&pcmcia_dev_list_lock);
1554 ret = bus_register(&pcmcia_bus_type);
1555 if (ret < 0) {
1556 printk(KERN_WARNING "pcmcia: bus_register error: %d\n", ret);
1557 return ret;
1559 ret = class_interface_register(&pcmcia_bus_interface);
1560 if (ret < 0) {
1561 printk(KERN_WARNING
1562 "pcmcia: class_interface_register error: %d\n", ret);
1563 bus_unregister(&pcmcia_bus_type);
1564 return ret;
1567 pcmcia_setup_ioctl();
1569 return 0;
1571 fs_initcall(init_pcmcia_bus); /* one level after subsys_initcall so that
1572 * pcmcia_socket_class is already registered */
1575 static void __exit exit_pcmcia_bus(void)
1577 pcmcia_cleanup_ioctl();
1579 class_interface_unregister(&pcmcia_bus_interface);
1581 bus_unregister(&pcmcia_bus_type);
1583 module_exit(exit_pcmcia_bus);
1586 MODULE_ALIAS("ds");