pcmcia: remove cs_types.h
[linux-2.6/cjktty.git] / drivers / pcmcia / ds.c
blobbacfc55f2026c7d736f2bd8c2f1e825a8cd47d6d
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 - 2010 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>
26 #include <linux/dma-mapping.h>
27 #include <linux/slab.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"
36 /*====================================================================*/
38 /* Module parameters */
40 MODULE_AUTHOR("David Hinds <dahinds@users.sourceforge.net>");
41 MODULE_DESCRIPTION("PCMCIA Driver Services");
42 MODULE_LICENSE("GPL");
45 /*====================================================================*/
47 static void pcmcia_check_driver(struct pcmcia_driver *p_drv)
49 struct pcmcia_device_id *did = p_drv->id_table;
50 unsigned int i;
51 u32 hash;
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);
57 while (did && did->match_flags) {
58 for (i = 0; i < 4; i++) {
59 if (!did->prod_id[i])
60 continue;
62 hash = crc32(0, did->prod_id[i], strlen(did->prod_id[i]));
63 if (hash == did->prod_id_hash[i])
64 continue;
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");
74 did++;
77 return;
81 /*======================================================================*/
84 struct pcmcia_dynid {
85 struct list_head node;
86 struct pcmcia_device_id id;
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
95 * Adds a new dynamic PCMCIA device ID to this driver,
96 * and causes the driver to probe for all devices again.
98 static ssize_t
99 pcmcia_store_new_id(struct device_driver *driver, const char *buf, size_t count)
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;
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;
115 dynid = kzalloc(sizeof(struct pcmcia_dynid), GFP_KERNEL);
116 if (!dynid)
117 return -ENOMEM;
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);
127 mutex_lock(&pdrv->dynids.lock);
128 list_add_tail(&dynid->node, &pdrv->dynids.list);
129 mutex_unlock(&pdrv->dynids.lock);
131 if (get_driver(&pdrv->drv)) {
132 retval = driver_attach(&pdrv->drv);
133 put_driver(&pdrv->drv);
136 if (retval)
137 return retval;
138 return count;
140 static DRIVER_ATTR(new_id, S_IWUSR, NULL, pcmcia_store_new_id);
142 static void
143 pcmcia_free_dynids(struct pcmcia_driver *drv)
145 struct pcmcia_dynid *dynid, *n;
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);
152 mutex_unlock(&drv->dynids.lock);
155 static int
156 pcmcia_create_newid_file(struct pcmcia_driver *drv)
158 int error = 0;
159 if (drv->probe != NULL)
160 error = driver_create_file(&drv->drv, &driver_attr_new_id);
161 return error;
166 * pcmcia_register_driver - register a PCMCIA driver with the bus core
167 * @driver: the &driver being registered
169 * Registers a PCMCIA driver with the PCMCIA bus core.
171 int pcmcia_register_driver(struct pcmcia_driver *driver)
173 int error;
175 if (!driver)
176 return -EINVAL;
178 pcmcia_check_driver(driver);
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);
186 pr_debug("registering driver %s\n", driver->drv.name);
188 error = driver_register(&driver->drv);
189 if (error < 0)
190 return error;
192 error = pcmcia_create_newid_file(driver);
193 if (error)
194 driver_unregister(&driver->drv);
196 return error;
198 EXPORT_SYMBOL(pcmcia_register_driver);
201 * pcmcia_unregister_driver - unregister a PCMCIA driver with the bus core
202 * @driver: the &driver being unregistered
204 void pcmcia_unregister_driver(struct pcmcia_driver *driver)
206 pr_debug("unregistering driver %s\n", driver->drv.name);
207 driver_unregister(&driver->drv);
208 pcmcia_free_dynids(driver);
210 EXPORT_SYMBOL(pcmcia_unregister_driver);
213 /* pcmcia_device handling */
215 static struct pcmcia_device *pcmcia_get_dev(struct pcmcia_device *p_dev)
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);
224 static void pcmcia_put_dev(struct pcmcia_device *p_dev)
226 if (p_dev)
227 put_device(&p_dev->dev);
230 static void pcmcia_release_function(struct kref *ref)
232 struct config_t *c = container_of(ref, struct config_t, ref);
233 pr_debug("releasing config_t\n");
234 kfree(c);
237 static void pcmcia_release_dev(struct device *dev)
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);
251 static int pcmcia_device_probe(struct device *dev)
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;
259 dev = get_device(dev);
260 if (!dev)
261 return -ENODEV;
263 p_dev = to_pcmcia_dev(dev);
264 p_drv = to_pcmcia_drv(dev->driver);
265 s = p_dev->socket;
267 dev_dbg(dev, "trying to bind to %s\n", p_drv->drv.name);
269 if ((!p_drv->probe) || (!p_dev->function_config) ||
270 (!try_module_get(p_drv->owner))) {
271 ret = -EINVAL;
272 goto put_dev;
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;
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;
295 mutex_lock(&s->ops_mutex);
296 if ((s->pcmcia_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);
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;
312 * Removes a PCMCIA card from the device tree and socket list.
314 static void pcmcia_card_remove(struct pcmcia_socket *s, struct pcmcia_device *leftover)
316 struct pcmcia_device *p_dev;
317 struct pcmcia_device *tmp;
319 dev_dbg(leftover ? &leftover->dev : &s->dev,
320 "pcmcia_card_remove(%d) %s\n", s->sock,
321 leftover ? leftover->devname : "");
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);
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;
335 mutex_lock(&s->ops_mutex);
336 list_del(&p_dev->socket_device_list);
337 mutex_unlock(&s->ops_mutex);
339 dev_dbg(&p_dev->dev, "unregistering device\n");
340 device_unregister(&p_dev->dev);
343 return;
346 static int pcmcia_device_remove(struct device *dev)
348 struct pcmcia_device *p_dev;
349 struct pcmcia_driver *p_drv;
350 int i;
352 p_dev = to_pcmcia_dev(dev);
353 p_drv = to_pcmcia_drv(dev->driver);
355 dev_dbg(dev, "removing device\n");
357 /* If we're removing the primary module driving a
358 * pseudo multi-function card, we need to unbind
359 * all devices
361 if ((p_dev->socket->pcmcia_pfc) &&
362 (p_dev->socket->device_count > 0) &&
363 (p_dev->device_no == 0))
364 pcmcia_card_remove(p_dev->socket, p_dev);
366 /* detach the "instance" */
367 if (!p_drv)
368 return 0;
370 if (p_drv->remove)
371 p_drv->remove(p_dev);
373 /* check for proper unloading */
374 if (p_dev->_irq || p_dev->_io || p_dev->_locked)
375 dev_printk(KERN_INFO, dev,
376 "pcmcia: driver %s did not release config properly\n",
377 p_drv->drv.name);
379 for (i = 0; i < MAX_WIN; i++)
380 if (p_dev->_win & CLIENT_WIN_REQ(i))
381 dev_printk(KERN_INFO, dev,
382 "pcmcia: driver %s did not release window properly\n",
383 p_drv->drv.name);
385 /* references from pcmcia_probe_device */
386 pcmcia_put_dev(p_dev);
387 module_put(p_drv->owner);
389 return 0;
394 * pcmcia_device_query -- determine information about a pcmcia device
396 static int pcmcia_device_query(struct pcmcia_device *p_dev)
398 cistpl_manfid_t manf_id;
399 cistpl_funcid_t func_id;
400 cistpl_vers_1_t *vers1;
401 unsigned int i;
403 vers1 = kmalloc(sizeof(*vers1), GFP_KERNEL);
404 if (!vers1)
405 return -ENOMEM;
407 if (!pccard_read_tuple(p_dev->socket, BIND_FN_ALL,
408 CISTPL_MANFID, &manf_id)) {
409 mutex_lock(&p_dev->socket->ops_mutex);
410 p_dev->manf_id = manf_id.manf;
411 p_dev->card_id = manf_id.card;
412 p_dev->has_manf_id = 1;
413 p_dev->has_card_id = 1;
414 mutex_unlock(&p_dev->socket->ops_mutex);
417 if (!pccard_read_tuple(p_dev->socket, p_dev->func,
418 CISTPL_FUNCID, &func_id)) {
419 mutex_lock(&p_dev->socket->ops_mutex);
420 p_dev->func_id = func_id.func;
421 p_dev->has_func_id = 1;
422 mutex_unlock(&p_dev->socket->ops_mutex);
423 } else {
424 /* rule of thumb: cards with no FUNCID, but with
425 * common memory device geometry information, are
426 * probably memory cards (from pcmcia-cs) */
427 cistpl_device_geo_t *devgeo;
429 devgeo = kmalloc(sizeof(*devgeo), GFP_KERNEL);
430 if (!devgeo) {
431 kfree(vers1);
432 return -ENOMEM;
434 if (!pccard_read_tuple(p_dev->socket, p_dev->func,
435 CISTPL_DEVICE_GEO, devgeo)) {
436 dev_dbg(&p_dev->dev,
437 "mem device geometry probably means "
438 "FUNCID_MEMORY\n");
439 mutex_lock(&p_dev->socket->ops_mutex);
440 p_dev->func_id = CISTPL_FUNCID_MEMORY;
441 p_dev->has_func_id = 1;
442 mutex_unlock(&p_dev->socket->ops_mutex);
444 kfree(devgeo);
447 if (!pccard_read_tuple(p_dev->socket, BIND_FN_ALL, CISTPL_VERS_1,
448 vers1)) {
449 mutex_lock(&p_dev->socket->ops_mutex);
450 for (i = 0; i < min_t(unsigned int, 4, vers1->ns); i++) {
451 char *tmp;
452 unsigned int length;
453 char *new;
455 tmp = vers1->str + vers1->ofs[i];
457 length = strlen(tmp) + 1;
458 if ((length < 2) || (length > 255))
459 continue;
461 new = kmalloc(sizeof(char) * length, GFP_KERNEL);
462 if (!new)
463 continue;
465 new = strncpy(new, tmp, length);
467 tmp = p_dev->prod_id[i];
468 p_dev->prod_id[i] = new;
469 kfree(tmp);
471 mutex_unlock(&p_dev->socket->ops_mutex);
474 kfree(vers1);
475 return 0;
479 static struct pcmcia_device *pcmcia_device_add(struct pcmcia_socket *s,
480 unsigned int function)
482 struct pcmcia_device *p_dev, *tmp_dev;
483 int i;
485 s = pcmcia_get_socket(s);
486 if (!s)
487 return NULL;
489 pr_debug("adding device to %d, function %d\n", s->sock, function);
491 p_dev = kzalloc(sizeof(struct pcmcia_device), GFP_KERNEL);
492 if (!p_dev)
493 goto err_put;
495 mutex_lock(&s->ops_mutex);
496 p_dev->device_no = (s->device_count++);
497 mutex_unlock(&s->ops_mutex);
499 /* max of 2 PFC devices */
500 if ((p_dev->device_no >= 2) && (function == 0))
501 goto err_free;
503 /* max of 4 devices overall */
504 if (p_dev->device_no >= 4)
505 goto err_free;
507 p_dev->socket = s;
508 p_dev->func = function;
510 p_dev->dev.bus = &pcmcia_bus_type;
511 p_dev->dev.parent = s->dev.parent;
512 p_dev->dev.release = pcmcia_release_dev;
513 /* by default don't allow DMA */
514 p_dev->dma_mask = DMA_MASK_NONE;
515 p_dev->dev.dma_mask = &p_dev->dma_mask;
516 dev_set_name(&p_dev->dev, "%d.%d", p_dev->socket->sock, p_dev->device_no);
517 if (!dev_name(&p_dev->dev))
518 goto err_free;
519 p_dev->devname = kasprintf(GFP_KERNEL, "pcmcia%s", dev_name(&p_dev->dev));
520 if (!p_dev->devname)
521 goto err_free;
522 dev_dbg(&p_dev->dev, "devname is %s\n", p_dev->devname);
524 mutex_lock(&s->ops_mutex);
527 * p_dev->function_config must be the same for all card functions.
528 * Note that this is serialized by ops_mutex, so that only one
529 * such struct will be created.
531 list_for_each_entry(tmp_dev, &s->devices_list, socket_device_list)
532 if (p_dev->func == tmp_dev->func) {
533 p_dev->function_config = tmp_dev->function_config;
534 p_dev->io = tmp_dev->io;
535 p_dev->irq = tmp_dev->irq;
536 kref_get(&p_dev->function_config->ref);
539 /* Add to the list in pcmcia_bus_socket */
540 list_add(&p_dev->socket_device_list, &s->devices_list);
542 if (pcmcia_setup_irq(p_dev))
543 dev_warn(&p_dev->dev,
544 "IRQ setup failed -- device might not work\n");
546 if (!p_dev->function_config) {
547 dev_dbg(&p_dev->dev, "creating config_t\n");
548 p_dev->function_config = kzalloc(sizeof(struct config_t),
549 GFP_KERNEL);
550 if (!p_dev->function_config) {
551 mutex_unlock(&s->ops_mutex);
552 goto err_unreg;
554 kref_init(&p_dev->function_config->ref);
556 mutex_unlock(&s->ops_mutex);
558 dev_printk(KERN_NOTICE, &p_dev->dev,
559 "pcmcia: registering new device %s (IRQ: %d)\n",
560 p_dev->devname, p_dev->irq);
562 pcmcia_device_query(p_dev);
564 if (device_register(&p_dev->dev))
565 goto err_unreg;
567 return p_dev;
569 err_unreg:
570 mutex_lock(&s->ops_mutex);
571 list_del(&p_dev->socket_device_list);
572 mutex_unlock(&s->ops_mutex);
574 err_free:
575 mutex_lock(&s->ops_mutex);
576 s->device_count--;
577 mutex_unlock(&s->ops_mutex);
579 for (i = 0; i < 4; i++)
580 kfree(p_dev->prod_id[i]);
581 kfree(p_dev->devname);
582 kfree(p_dev);
583 err_put:
584 pcmcia_put_socket(s);
586 return NULL;
590 static int pcmcia_card_add(struct pcmcia_socket *s)
592 cistpl_longlink_mfc_t mfc;
593 unsigned int no_funcs, i, no_chains;
594 int ret = -EAGAIN;
596 mutex_lock(&s->ops_mutex);
597 if (!(s->resource_setup_done)) {
598 dev_dbg(&s->dev,
599 "no resources available, delaying card_add\n");
600 mutex_unlock(&s->ops_mutex);
601 return -EAGAIN; /* try again, but later... */
604 if (pcmcia_validate_mem(s)) {
605 dev_dbg(&s->dev, "validating mem resources failed, "
606 "delaying card_add\n");
607 mutex_unlock(&s->ops_mutex);
608 return -EAGAIN; /* try again, but later... */
610 mutex_unlock(&s->ops_mutex);
612 ret = pccard_validate_cis(s, &no_chains);
613 if (ret || !no_chains) {
614 dev_dbg(&s->dev, "invalid CIS or invalid resources\n");
615 return -ENODEV;
618 if (!pccard_read_tuple(s, BIND_FN_ALL, CISTPL_LONGLINK_MFC, &mfc))
619 no_funcs = mfc.nfn;
620 else
621 no_funcs = 1;
622 s->functions = no_funcs;
624 for (i = 0; i < no_funcs; i++)
625 pcmcia_device_add(s, i);
627 return ret;
631 static int pcmcia_requery_callback(struct device *dev, void * _data)
633 struct pcmcia_device *p_dev = to_pcmcia_dev(dev);
634 if (!p_dev->dev.driver) {
635 dev_dbg(dev, "update device information\n");
636 pcmcia_device_query(p_dev);
639 return 0;
643 static void pcmcia_requery(struct pcmcia_socket *s)
645 int has_pfc;
647 if (s->functions == 0) {
648 pcmcia_card_add(s);
649 return;
652 /* some device information might have changed because of a CIS
653 * update or because we can finally read it correctly... so
654 * determine it again, overwriting old values if necessary. */
655 bus_for_each_dev(&pcmcia_bus_type, NULL, NULL, pcmcia_requery_callback);
657 /* if the CIS changed, we need to check whether the number of
658 * functions changed. */
659 if (s->fake_cis) {
660 int old_funcs, new_funcs;
661 cistpl_longlink_mfc_t mfc;
663 /* does this cis override add or remove functions? */
664 old_funcs = s->functions;
666 if (!pccard_read_tuple(s, BIND_FN_ALL, CISTPL_LONGLINK_MFC,
667 &mfc))
668 new_funcs = mfc.nfn;
669 else
670 new_funcs = 1;
671 if (old_funcs != new_funcs) {
672 /* we need to re-start */
673 pcmcia_card_remove(s, NULL);
674 s->functions = 0;
675 pcmcia_card_add(s);
679 /* If the PCMCIA device consists of two pseudo devices,
680 * call pcmcia_device_add() -- which will fail if both
681 * devices are already registered. */
682 mutex_lock(&s->ops_mutex);
683 has_pfc = s->pcmcia_pfc;
684 mutex_unlock(&s->ops_mutex);
685 if (has_pfc)
686 pcmcia_device_add(s, 0);
688 /* we re-scan all devices, not just the ones connected to this
689 * socket. This does not matter, though. */
690 if (bus_rescan_devices(&pcmcia_bus_type))
691 dev_warn(&s->dev, "rescanning the bus failed\n");
695 #ifdef CONFIG_PCMCIA_LOAD_CIS
698 * pcmcia_load_firmware - load CIS from userspace if device-provided is broken
699 * @dev: the pcmcia device which needs a CIS override
700 * @filename: requested filename in /lib/firmware/
702 * This uses the in-kernel firmware loading mechanism to use a "fake CIS" if
703 * the one provided by the card is broken. The firmware files reside in
704 * /lib/firmware/ in userspace.
706 static int pcmcia_load_firmware(struct pcmcia_device *dev, char * filename)
708 struct pcmcia_socket *s = dev->socket;
709 const struct firmware *fw;
710 int ret = -ENOMEM;
711 cistpl_longlink_mfc_t mfc;
712 int old_funcs, new_funcs = 1;
714 if (!filename)
715 return -EINVAL;
717 dev_dbg(&dev->dev, "trying to load CIS file %s\n", filename);
719 if (request_firmware(&fw, filename, &dev->dev) == 0) {
720 if (fw->size >= CISTPL_MAX_CIS_SIZE) {
721 ret = -EINVAL;
722 dev_printk(KERN_ERR, &dev->dev,
723 "pcmcia: CIS override is too big\n");
724 goto release;
727 if (!pcmcia_replace_cis(s, fw->data, fw->size))
728 ret = 0;
729 else {
730 dev_printk(KERN_ERR, &dev->dev,
731 "pcmcia: CIS override failed\n");
732 goto release;
735 /* we need to re-start if the number of functions changed */
736 old_funcs = s->functions;
737 if (!pccard_read_tuple(s, BIND_FN_ALL, CISTPL_LONGLINK_MFC,
738 &mfc))
739 new_funcs = mfc.nfn;
741 if (old_funcs != new_funcs)
742 ret = -EBUSY;
744 /* update information */
745 pcmcia_device_query(dev);
747 /* requery (as number of functions might have changed) */
748 pcmcia_parse_uevents(s, PCMCIA_UEVENT_REQUERY);
750 release:
751 release_firmware(fw);
753 return ret;
756 #else /* !CONFIG_PCMCIA_LOAD_CIS */
758 static inline int pcmcia_load_firmware(struct pcmcia_device *dev, char * filename)
760 return -ENODEV;
763 #endif
766 static inline int pcmcia_devmatch(struct pcmcia_device *dev,
767 struct pcmcia_device_id *did)
769 if (did->match_flags & PCMCIA_DEV_ID_MATCH_MANF_ID) {
770 if ((!dev->has_manf_id) || (dev->manf_id != did->manf_id))
771 return 0;
774 if (did->match_flags & PCMCIA_DEV_ID_MATCH_CARD_ID) {
775 if ((!dev->has_card_id) || (dev->card_id != did->card_id))
776 return 0;
779 if (did->match_flags & PCMCIA_DEV_ID_MATCH_FUNCTION) {
780 if (dev->func != did->function)
781 return 0;
784 if (did->match_flags & PCMCIA_DEV_ID_MATCH_PROD_ID1) {
785 if (!dev->prod_id[0])
786 return 0;
787 if (strcmp(did->prod_id[0], dev->prod_id[0]))
788 return 0;
791 if (did->match_flags & PCMCIA_DEV_ID_MATCH_PROD_ID2) {
792 if (!dev->prod_id[1])
793 return 0;
794 if (strcmp(did->prod_id[1], dev->prod_id[1]))
795 return 0;
798 if (did->match_flags & PCMCIA_DEV_ID_MATCH_PROD_ID3) {
799 if (!dev->prod_id[2])
800 return 0;
801 if (strcmp(did->prod_id[2], dev->prod_id[2]))
802 return 0;
805 if (did->match_flags & PCMCIA_DEV_ID_MATCH_PROD_ID4) {
806 if (!dev->prod_id[3])
807 return 0;
808 if (strcmp(did->prod_id[3], dev->prod_id[3]))
809 return 0;
812 if (did->match_flags & PCMCIA_DEV_ID_MATCH_DEVICE_NO) {
813 dev_dbg(&dev->dev, "this is a pseudo-multi-function device\n");
814 mutex_lock(&dev->socket->ops_mutex);
815 dev->socket->pcmcia_pfc = 1;
816 mutex_unlock(&dev->socket->ops_mutex);
817 if (dev->device_no != did->device_no)
818 return 0;
821 if (did->match_flags & PCMCIA_DEV_ID_MATCH_FUNC_ID) {
822 int ret;
824 if ((!dev->has_func_id) || (dev->func_id != did->func_id))
825 return 0;
827 /* if this is a pseudo-multi-function device,
828 * we need explicit matches */
829 if (dev->socket->pcmcia_pfc)
830 return 0;
831 if (dev->device_no)
832 return 0;
834 /* also, FUNC_ID matching needs to be activated by userspace
835 * after it has re-checked that there is no possible module
836 * with a prod_id/manf_id/card_id match.
838 mutex_lock(&dev->socket->ops_mutex);
839 ret = dev->allow_func_id_match;
840 mutex_unlock(&dev->socket->ops_mutex);
842 if (!ret) {
843 dev_dbg(&dev->dev,
844 "skipping FUNC_ID match until userspace ACK\n");
845 return 0;
849 if (did->match_flags & PCMCIA_DEV_ID_MATCH_FAKE_CIS) {
850 dev_dbg(&dev->dev, "device needs a fake CIS\n");
851 if (!dev->socket->fake_cis)
852 if (pcmcia_load_firmware(dev, did->cisfile))
853 return 0;
856 if (did->match_flags & PCMCIA_DEV_ID_MATCH_ANONYMOUS) {
857 int i;
858 for (i = 0; i < 4; i++)
859 if (dev->prod_id[i])
860 return 0;
861 if (dev->has_manf_id || dev->has_card_id || dev->has_func_id)
862 return 0;
865 return 1;
869 static int pcmcia_bus_match(struct device *dev, struct device_driver *drv)
871 struct pcmcia_device *p_dev = to_pcmcia_dev(dev);
872 struct pcmcia_driver *p_drv = to_pcmcia_drv(drv);
873 struct pcmcia_device_id *did = p_drv->id_table;
874 struct pcmcia_dynid *dynid;
876 /* match dynamic devices first */
877 mutex_lock(&p_drv->dynids.lock);
878 list_for_each_entry(dynid, &p_drv->dynids.list, node) {
879 dev_dbg(dev, "trying to match to %s\n", drv->name);
880 if (pcmcia_devmatch(p_dev, &dynid->id)) {
881 dev_dbg(dev, "matched to %s\n", drv->name);
882 mutex_unlock(&p_drv->dynids.lock);
883 return 1;
886 mutex_unlock(&p_drv->dynids.lock);
888 while (did && did->match_flags) {
889 dev_dbg(dev, "trying to match to %s\n", drv->name);
890 if (pcmcia_devmatch(p_dev, did)) {
891 dev_dbg(dev, "matched to %s\n", drv->name);
892 return 1;
894 did++;
897 return 0;
900 #ifdef CONFIG_HOTPLUG
902 static int pcmcia_bus_uevent(struct device *dev, struct kobj_uevent_env *env)
904 struct pcmcia_device *p_dev;
905 int i;
906 u32 hash[4] = { 0, 0, 0, 0};
908 if (!dev)
909 return -ENODEV;
911 p_dev = to_pcmcia_dev(dev);
913 /* calculate hashes */
914 for (i = 0; i < 4; i++) {
915 if (!p_dev->prod_id[i])
916 continue;
917 hash[i] = crc32(0, p_dev->prod_id[i], strlen(p_dev->prod_id[i]));
920 if (add_uevent_var(env, "SOCKET_NO=%u", p_dev->socket->sock))
921 return -ENOMEM;
923 if (add_uevent_var(env, "DEVICE_NO=%02X", p_dev->device_no))
924 return -ENOMEM;
926 if (add_uevent_var(env, "MODALIAS=pcmcia:m%04Xc%04Xf%02Xfn%02Xpfn%02X"
927 "pa%08Xpb%08Xpc%08Xpd%08X",
928 p_dev->has_manf_id ? p_dev->manf_id : 0,
929 p_dev->has_card_id ? p_dev->card_id : 0,
930 p_dev->has_func_id ? p_dev->func_id : 0,
931 p_dev->func,
932 p_dev->device_no,
933 hash[0],
934 hash[1],
935 hash[2],
936 hash[3]))
937 return -ENOMEM;
939 return 0;
942 #else
944 static int pcmcia_bus_uevent(struct device *dev, struct kobj_uevent_env *env)
946 return -ENODEV;
949 #endif
951 /************************ runtime PM support ***************************/
953 static int pcmcia_dev_suspend(struct device *dev, pm_message_t state);
954 static int pcmcia_dev_resume(struct device *dev);
956 static int runtime_suspend(struct device *dev)
958 int rc;
960 device_lock(dev);
961 rc = pcmcia_dev_suspend(dev, PMSG_SUSPEND);
962 device_unlock(dev);
963 return rc;
966 static int runtime_resume(struct device *dev)
968 int rc;
970 device_lock(dev);
971 rc = pcmcia_dev_resume(dev);
972 device_unlock(dev);
973 return rc;
976 /************************ per-device sysfs output ***************************/
978 #define pcmcia_device_attr(field, test, format) \
979 static ssize_t field##_show (struct device *dev, struct device_attribute *attr, char *buf) \
981 struct pcmcia_device *p_dev = to_pcmcia_dev(dev); \
982 return p_dev->test ? sprintf(buf, format, p_dev->field) : -ENODEV; \
985 #define pcmcia_device_stringattr(name, field) \
986 static ssize_t name##_show (struct device *dev, struct device_attribute *attr, char *buf) \
988 struct pcmcia_device *p_dev = to_pcmcia_dev(dev); \
989 return p_dev->field ? sprintf(buf, "%s\n", p_dev->field) : -ENODEV; \
992 pcmcia_device_attr(func, socket, "0x%02x\n");
993 pcmcia_device_attr(func_id, has_func_id, "0x%02x\n");
994 pcmcia_device_attr(manf_id, has_manf_id, "0x%04x\n");
995 pcmcia_device_attr(card_id, has_card_id, "0x%04x\n");
996 pcmcia_device_stringattr(prod_id1, prod_id[0]);
997 pcmcia_device_stringattr(prod_id2, prod_id[1]);
998 pcmcia_device_stringattr(prod_id3, prod_id[2]);
999 pcmcia_device_stringattr(prod_id4, prod_id[3]);
1002 static ssize_t pcmcia_show_pm_state(struct device *dev, struct device_attribute *attr, char *buf)
1004 struct pcmcia_device *p_dev = to_pcmcia_dev(dev);
1006 if (p_dev->suspended)
1007 return sprintf(buf, "off\n");
1008 else
1009 return sprintf(buf, "on\n");
1012 static ssize_t pcmcia_store_pm_state(struct device *dev, struct device_attribute *attr,
1013 const char *buf, size_t count)
1015 struct pcmcia_device *p_dev = to_pcmcia_dev(dev);
1016 int ret = 0;
1018 if (!count)
1019 return -EINVAL;
1021 if ((!p_dev->suspended) && !strncmp(buf, "off", 3))
1022 ret = runtime_suspend(dev);
1023 else if (p_dev->suspended && !strncmp(buf, "on", 2))
1024 ret = runtime_resume(dev);
1026 return ret ? ret : count;
1030 static ssize_t modalias_show(struct device *dev, struct device_attribute *attr, char *buf)
1032 struct pcmcia_device *p_dev = to_pcmcia_dev(dev);
1033 int i;
1034 u32 hash[4] = { 0, 0, 0, 0};
1036 /* calculate hashes */
1037 for (i = 0; i < 4; i++) {
1038 if (!p_dev->prod_id[i])
1039 continue;
1040 hash[i] = crc32(0, p_dev->prod_id[i],
1041 strlen(p_dev->prod_id[i]));
1043 return sprintf(buf, "pcmcia:m%04Xc%04Xf%02Xfn%02Xpfn%02X"
1044 "pa%08Xpb%08Xpc%08Xpd%08X\n",
1045 p_dev->has_manf_id ? p_dev->manf_id : 0,
1046 p_dev->has_card_id ? p_dev->card_id : 0,
1047 p_dev->has_func_id ? p_dev->func_id : 0,
1048 p_dev->func, p_dev->device_no,
1049 hash[0], hash[1], hash[2], hash[3]);
1052 static ssize_t pcmcia_store_allow_func_id_match(struct device *dev,
1053 struct device_attribute *attr, const char *buf, size_t count)
1055 struct pcmcia_device *p_dev = to_pcmcia_dev(dev);
1057 if (!count)
1058 return -EINVAL;
1060 mutex_lock(&p_dev->socket->ops_mutex);
1061 p_dev->allow_func_id_match = 1;
1062 mutex_unlock(&p_dev->socket->ops_mutex);
1063 pcmcia_parse_uevents(p_dev->socket, PCMCIA_UEVENT_REQUERY);
1065 return count;
1068 static struct device_attribute pcmcia_dev_attrs[] = {
1069 __ATTR(function, 0444, func_show, NULL),
1070 __ATTR(pm_state, 0644, pcmcia_show_pm_state, pcmcia_store_pm_state),
1071 __ATTR_RO(func_id),
1072 __ATTR_RO(manf_id),
1073 __ATTR_RO(card_id),
1074 __ATTR_RO(prod_id1),
1075 __ATTR_RO(prod_id2),
1076 __ATTR_RO(prod_id3),
1077 __ATTR_RO(prod_id4),
1078 __ATTR_RO(modalias),
1079 __ATTR(allow_func_id_match, 0200, NULL, pcmcia_store_allow_func_id_match),
1080 __ATTR_NULL,
1083 /* PM support, also needed for reset */
1085 static int pcmcia_dev_suspend(struct device *dev, pm_message_t state)
1087 struct pcmcia_device *p_dev = to_pcmcia_dev(dev);
1088 struct pcmcia_driver *p_drv = NULL;
1089 int ret = 0;
1091 mutex_lock(&p_dev->socket->ops_mutex);
1092 if (p_dev->suspended) {
1093 mutex_unlock(&p_dev->socket->ops_mutex);
1094 return 0;
1096 p_dev->suspended = 1;
1097 mutex_unlock(&p_dev->socket->ops_mutex);
1099 dev_dbg(dev, "suspending\n");
1101 if (dev->driver)
1102 p_drv = to_pcmcia_drv(dev->driver);
1104 if (!p_drv)
1105 goto out;
1107 if (p_drv->suspend) {
1108 ret = p_drv->suspend(p_dev);
1109 if (ret) {
1110 dev_printk(KERN_ERR, dev,
1111 "pcmcia: device %s (driver %s) did "
1112 "not want to go to sleep (%d)\n",
1113 p_dev->devname, p_drv->drv.name, ret);
1114 mutex_lock(&p_dev->socket->ops_mutex);
1115 p_dev->suspended = 0;
1116 mutex_unlock(&p_dev->socket->ops_mutex);
1117 goto out;
1121 if (p_dev->device_no == p_dev->func) {
1122 dev_dbg(dev, "releasing configuration\n");
1123 pcmcia_release_configuration(p_dev);
1126 out:
1127 return ret;
1131 static int pcmcia_dev_resume(struct device *dev)
1133 struct pcmcia_device *p_dev = to_pcmcia_dev(dev);
1134 struct pcmcia_driver *p_drv = NULL;
1135 int ret = 0;
1137 mutex_lock(&p_dev->socket->ops_mutex);
1138 if (!p_dev->suspended) {
1139 mutex_unlock(&p_dev->socket->ops_mutex);
1140 return 0;
1142 p_dev->suspended = 0;
1143 mutex_unlock(&p_dev->socket->ops_mutex);
1145 dev_dbg(dev, "resuming\n");
1147 if (dev->driver)
1148 p_drv = to_pcmcia_drv(dev->driver);
1150 if (!p_drv)
1151 goto out;
1153 if (p_dev->device_no == p_dev->func) {
1154 dev_dbg(dev, "requesting configuration\n");
1155 ret = pcmcia_request_configuration(p_dev, &p_dev->conf);
1156 if (ret)
1157 goto out;
1160 if (p_drv->resume)
1161 ret = p_drv->resume(p_dev);
1163 out:
1164 return ret;
1168 static int pcmcia_bus_suspend_callback(struct device *dev, void * _data)
1170 struct pcmcia_socket *skt = _data;
1171 struct pcmcia_device *p_dev = to_pcmcia_dev(dev);
1173 if (p_dev->socket != skt || p_dev->suspended)
1174 return 0;
1176 return runtime_suspend(dev);
1179 static int pcmcia_bus_resume_callback(struct device *dev, void * _data)
1181 struct pcmcia_socket *skt = _data;
1182 struct pcmcia_device *p_dev = to_pcmcia_dev(dev);
1184 if (p_dev->socket != skt || !p_dev->suspended)
1185 return 0;
1187 runtime_resume(dev);
1189 return 0;
1192 static int pcmcia_bus_resume(struct pcmcia_socket *skt)
1194 dev_dbg(&skt->dev, "resuming socket %d\n", skt->sock);
1195 bus_for_each_dev(&pcmcia_bus_type, NULL, skt, pcmcia_bus_resume_callback);
1196 return 0;
1199 static int pcmcia_bus_suspend(struct pcmcia_socket *skt)
1201 dev_dbg(&skt->dev, "suspending socket %d\n", skt->sock);
1202 if (bus_for_each_dev(&pcmcia_bus_type, NULL, skt,
1203 pcmcia_bus_suspend_callback)) {
1204 pcmcia_bus_resume(skt);
1205 return -EIO;
1207 return 0;
1210 static int pcmcia_bus_remove(struct pcmcia_socket *skt)
1212 atomic_set(&skt->present, 0);
1213 pcmcia_card_remove(skt, NULL);
1215 mutex_lock(&skt->ops_mutex);
1216 destroy_cis_cache(skt);
1217 pcmcia_cleanup_irq(skt);
1218 mutex_unlock(&skt->ops_mutex);
1220 return 0;
1223 static int pcmcia_bus_add(struct pcmcia_socket *skt)
1225 atomic_set(&skt->present, 1);
1227 mutex_lock(&skt->ops_mutex);
1228 skt->pcmcia_pfc = 0;
1229 destroy_cis_cache(skt); /* to be on the safe side... */
1230 mutex_unlock(&skt->ops_mutex);
1232 pcmcia_card_add(skt);
1234 return 0;
1237 static int pcmcia_bus_early_resume(struct pcmcia_socket *skt)
1239 if (!verify_cis_cache(skt)) {
1240 pcmcia_put_socket(skt);
1241 return 0;
1244 dev_dbg(&skt->dev, "cis mismatch - different card\n");
1246 /* first, remove the card */
1247 pcmcia_bus_remove(skt);
1249 mutex_lock(&skt->ops_mutex);
1250 destroy_cis_cache(skt);
1251 kfree(skt->fake_cis);
1252 skt->fake_cis = NULL;
1253 skt->functions = 0;
1254 mutex_unlock(&skt->ops_mutex);
1256 /* now, add the new card */
1257 pcmcia_bus_add(skt);
1258 return 0;
1263 * NOTE: This is racy. There's no guarantee the card will still be
1264 * physically present, even if the call to this function returns
1265 * non-NULL. Furthermore, the device driver most likely is unbound
1266 * almost immediately, so the timeframe where pcmcia_dev_present
1267 * returns NULL is probably really really small.
1269 struct pcmcia_device *pcmcia_dev_present(struct pcmcia_device *_p_dev)
1271 struct pcmcia_device *p_dev;
1272 struct pcmcia_device *ret = NULL;
1274 p_dev = pcmcia_get_dev(_p_dev);
1275 if (!p_dev)
1276 return NULL;
1278 if (atomic_read(&p_dev->socket->present) != 0)
1279 ret = p_dev;
1281 pcmcia_put_dev(p_dev);
1282 return ret;
1284 EXPORT_SYMBOL(pcmcia_dev_present);
1287 static struct pcmcia_callback pcmcia_bus_callback = {
1288 .owner = THIS_MODULE,
1289 .add = pcmcia_bus_add,
1290 .remove = pcmcia_bus_remove,
1291 .requery = pcmcia_requery,
1292 .validate = pccard_validate_cis,
1293 .suspend = pcmcia_bus_suspend,
1294 .early_resume = pcmcia_bus_early_resume,
1295 .resume = pcmcia_bus_resume,
1298 static int __devinit pcmcia_bus_add_socket(struct device *dev,
1299 struct class_interface *class_intf)
1301 struct pcmcia_socket *socket = dev_get_drvdata(dev);
1302 int ret;
1304 socket = pcmcia_get_socket(socket);
1305 if (!socket) {
1306 dev_printk(KERN_ERR, dev,
1307 "PCMCIA obtaining reference to socket failed\n");
1308 return -ENODEV;
1311 ret = sysfs_create_bin_file(&dev->kobj, &pccard_cis_attr);
1312 if (ret) {
1313 dev_printk(KERN_ERR, dev, "PCMCIA registration failed\n");
1314 pcmcia_put_socket(socket);
1315 return ret;
1318 INIT_LIST_HEAD(&socket->devices_list);
1319 socket->pcmcia_pfc = 0;
1320 socket->device_count = 0;
1321 atomic_set(&socket->present, 0);
1323 ret = pccard_register_pcmcia(socket, &pcmcia_bus_callback);
1324 if (ret) {
1325 dev_printk(KERN_ERR, dev, "PCMCIA registration failed\n");
1326 pcmcia_put_socket(socket);
1327 return ret;
1330 return 0;
1333 static void pcmcia_bus_remove_socket(struct device *dev,
1334 struct class_interface *class_intf)
1336 struct pcmcia_socket *socket = dev_get_drvdata(dev);
1338 if (!socket)
1339 return;
1341 pccard_register_pcmcia(socket, NULL);
1343 /* unregister any unbound devices */
1344 mutex_lock(&socket->skt_mutex);
1345 pcmcia_card_remove(socket, NULL);
1346 release_cis_mem(socket);
1347 mutex_unlock(&socket->skt_mutex);
1349 sysfs_remove_bin_file(&dev->kobj, &pccard_cis_attr);
1351 pcmcia_put_socket(socket);
1353 return;
1357 /* the pcmcia_bus_interface is used to handle pcmcia socket devices */
1358 static struct class_interface pcmcia_bus_interface __refdata = {
1359 .class = &pcmcia_socket_class,
1360 .add_dev = &pcmcia_bus_add_socket,
1361 .remove_dev = &pcmcia_bus_remove_socket,
1365 struct bus_type pcmcia_bus_type = {
1366 .name = "pcmcia",
1367 .uevent = pcmcia_bus_uevent,
1368 .match = pcmcia_bus_match,
1369 .dev_attrs = pcmcia_dev_attrs,
1370 .probe = pcmcia_device_probe,
1371 .remove = pcmcia_device_remove,
1372 .suspend = pcmcia_dev_suspend,
1373 .resume = pcmcia_dev_resume,
1377 static int __init init_pcmcia_bus(void)
1379 int ret;
1381 ret = bus_register(&pcmcia_bus_type);
1382 if (ret < 0) {
1383 printk(KERN_WARNING "pcmcia: bus_register error: %d\n", ret);
1384 return ret;
1386 ret = class_interface_register(&pcmcia_bus_interface);
1387 if (ret < 0) {
1388 printk(KERN_WARNING
1389 "pcmcia: class_interface_register error: %d\n", ret);
1390 bus_unregister(&pcmcia_bus_type);
1391 return ret;
1394 return 0;
1396 fs_initcall(init_pcmcia_bus); /* one level after subsys_initcall so that
1397 * pcmcia_socket_class is already registered */
1400 static void __exit exit_pcmcia_bus(void)
1402 class_interface_unregister(&pcmcia_bus_interface);
1404 bus_unregister(&pcmcia_bus_type);
1406 module_exit(exit_pcmcia_bus);
1409 MODULE_ALIAS("ds");