]> err.no Git - linux-2.6/blob - drivers/pcmcia/ds.c
[PATCH] pcmcia: make config_t independent, add reference counting
[linux-2.6] / drivers / pcmcia / ds.c
1 /*
2  * ds.c -- 16-bit PCMCIA core support
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License version 2 as
6  * published by the Free Software Foundation.
7  *
8  * The initial developer of the original code is David A. Hinds
9  * <dahinds@users.sourceforge.net>.  Portions created by David A. Hinds
10  * are Copyright (C) 1999 David A. Hinds.  All Rights Reserved.
11  *
12  * (C) 1999             David A. Hinds
13  * (C) 2003 - 2005      Dominik Brodowski
14  */
15
16 #include <linux/config.h>
17 #include <linux/kernel.h>
18 #include <linux/module.h>
19 #include <linux/init.h>
20 #include <linux/errno.h>
21 #include <linux/list.h>
22 #include <linux/delay.h>
23 #include <linux/workqueue.h>
24 #include <linux/crc32.h>
25 #include <linux/firmware.h>
26 #include <linux/kref.h>
27
28 #define IN_CARD_SERVICES
29 #include <pcmcia/cs_types.h>
30 #include <pcmcia/cs.h>
31 #include <pcmcia/cistpl.h>
32 #include <pcmcia/ds.h>
33 #include <pcmcia/ss.h>
34
35 #include "cs_internal.h"
36 #include "ds_internal.h"
37
38 /*====================================================================*/
39
40 /* Module parameters */
41
42 MODULE_AUTHOR("David Hinds <dahinds@users.sourceforge.net>");
43 MODULE_DESCRIPTION("PCMCIA Driver Services");
44 MODULE_LICENSE("GPL");
45
46 #ifdef DEBUG
47 int ds_pc_debug;
48
49 module_param_named(pc_debug, ds_pc_debug, int, 0644);
50
51 #define ds_dbg(lvl, fmt, arg...) do {                           \
52         if (ds_pc_debug > (lvl))                                        \
53                 printk(KERN_DEBUG "ds: " fmt , ## arg);         \
54 } while (0)
55 #else
56 #define ds_dbg(lvl, fmt, arg...) do { } while (0)
57 #endif
58
59 spinlock_t pcmcia_dev_list_lock;
60
61 /*====================================================================*/
62
63 /* code which was in cs.c before */
64
65 /* String tables for error messages */
66
67 typedef struct lookup_t {
68     int key;
69     char *msg;
70 } lookup_t;
71
72 static const lookup_t error_table[] = {
73     { CS_SUCCESS,               "Operation succeeded" },
74     { CS_BAD_ADAPTER,           "Bad adapter" },
75     { CS_BAD_ATTRIBUTE,         "Bad attribute", },
76     { CS_BAD_BASE,              "Bad base address" },
77     { CS_BAD_EDC,               "Bad EDC" },
78     { CS_BAD_IRQ,               "Bad IRQ" },
79     { CS_BAD_OFFSET,            "Bad offset" },
80     { CS_BAD_PAGE,              "Bad page number" },
81     { CS_READ_FAILURE,          "Read failure" },
82     { CS_BAD_SIZE,              "Bad size" },
83     { CS_BAD_SOCKET,            "Bad socket" },
84     { CS_BAD_TYPE,              "Bad type" },
85     { CS_BAD_VCC,               "Bad Vcc" },
86     { CS_BAD_VPP,               "Bad Vpp" },
87     { CS_BAD_WINDOW,            "Bad window" },
88     { CS_WRITE_FAILURE,         "Write failure" },
89     { CS_NO_CARD,               "No card present" },
90     { CS_UNSUPPORTED_FUNCTION,  "Usupported function" },
91     { CS_UNSUPPORTED_MODE,      "Unsupported mode" },
92     { CS_BAD_SPEED,             "Bad speed" },
93     { CS_BUSY,                  "Resource busy" },
94     { CS_GENERAL_FAILURE,       "General failure" },
95     { CS_WRITE_PROTECTED,       "Write protected" },
96     { CS_BAD_ARG_LENGTH,        "Bad argument length" },
97     { CS_BAD_ARGS,              "Bad arguments" },
98     { CS_CONFIGURATION_LOCKED,  "Configuration locked" },
99     { CS_IN_USE,                "Resource in use" },
100     { CS_NO_MORE_ITEMS,         "No more items" },
101     { CS_OUT_OF_RESOURCE,       "Out of resource" },
102     { CS_BAD_HANDLE,            "Bad handle" },
103     { CS_BAD_TUPLE,             "Bad CIS tuple" }
104 };
105
106
107 static const lookup_t service_table[] = {
108     { AccessConfigurationRegister,      "AccessConfigurationRegister" },
109     { AddSocketServices,                "AddSocketServices" },
110     { AdjustResourceInfo,               "AdjustResourceInfo" },
111     { CheckEraseQueue,                  "CheckEraseQueue" },
112     { CloseMemory,                      "CloseMemory" },
113     { DeregisterClient,                 "DeregisterClient" },
114     { DeregisterEraseQueue,             "DeregisterEraseQueue" },
115     { GetCardServicesInfo,              "GetCardServicesInfo" },
116     { GetClientInfo,                    "GetClientInfo" },
117     { GetConfigurationInfo,             "GetConfigurationInfo" },
118     { GetEventMask,                     "GetEventMask" },
119     { GetFirstClient,                   "GetFirstClient" },
120     { GetFirstRegion,                   "GetFirstRegion" },
121     { GetFirstTuple,                    "GetFirstTuple" },
122     { GetNextClient,                    "GetNextClient" },
123     { GetNextRegion,                    "GetNextRegion" },
124     { GetNextTuple,                     "GetNextTuple" },
125     { GetStatus,                        "GetStatus" },
126     { GetTupleData,                     "GetTupleData" },
127     { MapMemPage,                       "MapMemPage" },
128     { ModifyConfiguration,              "ModifyConfiguration" },
129     { ModifyWindow,                     "ModifyWindow" },
130     { OpenMemory,                       "OpenMemory" },
131     { ParseTuple,                       "ParseTuple" },
132     { ReadMemory,                       "ReadMemory" },
133     { RegisterClient,                   "RegisterClient" },
134     { RegisterEraseQueue,               "RegisterEraseQueue" },
135     { RegisterMTD,                      "RegisterMTD" },
136     { ReleaseConfiguration,             "ReleaseConfiguration" },
137     { ReleaseIO,                        "ReleaseIO" },
138     { ReleaseIRQ,                       "ReleaseIRQ" },
139     { ReleaseWindow,                    "ReleaseWindow" },
140     { RequestConfiguration,             "RequestConfiguration" },
141     { RequestIO,                        "RequestIO" },
142     { RequestIRQ,                       "RequestIRQ" },
143     { RequestSocketMask,                "RequestSocketMask" },
144     { RequestWindow,                    "RequestWindow" },
145     { ResetCard,                        "ResetCard" },
146     { SetEventMask,                     "SetEventMask" },
147     { ValidateCIS,                      "ValidateCIS" },
148     { WriteMemory,                      "WriteMemory" },
149     { BindDevice,                       "BindDevice" },
150     { BindMTD,                          "BindMTD" },
151     { ReportError,                      "ReportError" },
152     { SuspendCard,                      "SuspendCard" },
153     { ResumeCard,                       "ResumeCard" },
154     { EjectCard,                        "EjectCard" },
155     { InsertCard,                       "InsertCard" },
156     { ReplaceCIS,                       "ReplaceCIS" }
157 };
158
159
160 static int pcmcia_report_error(struct pcmcia_device *p_dev, error_info_t *err)
161 {
162         int i;
163         char *serv;
164
165         if (!p_dev)
166                 printk(KERN_NOTICE);
167         else
168                 printk(KERN_NOTICE "%s: ", p_dev->dev.bus_id);
169
170         for (i = 0; i < ARRAY_SIZE(service_table); i++)
171                 if (service_table[i].key == err->func)
172                         break;
173         if (i < ARRAY_SIZE(service_table))
174                 serv = service_table[i].msg;
175         else
176                 serv = "Unknown service number";
177
178         for (i = 0; i < ARRAY_SIZE(error_table); i++)
179                 if (error_table[i].key == err->retcode)
180                         break;
181         if (i < ARRAY_SIZE(error_table))
182                 printk("%s: %s\n", serv, error_table[i].msg);
183         else
184                 printk("%s: Unknown error code %#x\n", serv, err->retcode);
185
186         return CS_SUCCESS;
187 } /* report_error */
188
189 /* end of code which was in cs.c before */
190
191 /*======================================================================*/
192
193 void cs_error(struct pcmcia_device *p_dev, int func, int ret)
194 {
195         error_info_t err = { func, ret };
196         pcmcia_report_error(p_dev, &err);
197 }
198 EXPORT_SYMBOL(cs_error);
199
200
201 static void pcmcia_check_driver(struct pcmcia_driver *p_drv)
202 {
203         struct pcmcia_device_id *did = p_drv->id_table;
204         unsigned int i;
205         u32 hash;
206
207         if (!p_drv->probe || !p_drv->remove)
208                 printk(KERN_DEBUG "pcmcia: %s lacks a requisite callback "
209                        "function\n", p_drv->drv.name);
210
211         while (did && did->match_flags) {
212                 for (i=0; i<4; i++) {
213                         if (!did->prod_id[i])
214                                 continue;
215
216                         hash = crc32(0, did->prod_id[i], strlen(did->prod_id[i]));
217                         if (hash == did->prod_id_hash[i])
218                                 continue;
219
220                         printk(KERN_DEBUG "pcmcia: %s: invalid hash for "
221                                "product string \"%s\": is 0x%x, should "
222                                "be 0x%x\n", p_drv->drv.name, did->prod_id[i],
223                                did->prod_id_hash[i], hash);
224                         printk(KERN_DEBUG "pcmcia: see "
225                                 "Documentation/pcmcia/devicetable.txt for "
226                                 "details\n");
227                 }
228                 did++;
229         }
230
231         return;
232 }
233
234
235 #ifdef CONFIG_PCMCIA_LOAD_CIS
236
237 /**
238  * pcmcia_load_firmware - load CIS from userspace if device-provided is broken
239  * @dev - the pcmcia device which needs a CIS override
240  * @filename - requested filename in /lib/firmware/cis/
241  *
242  * This uses the in-kernel firmware loading mechanism to use a "fake CIS" if
243  * the one provided by the card is broken. The firmware files reside in
244  * /lib/firmware/cis/ in userspace.
245  */
246 static int pcmcia_load_firmware(struct pcmcia_device *dev, char * filename)
247 {
248         struct pcmcia_socket *s = dev->socket;
249         const struct firmware *fw;
250         char path[20];
251         int ret=-ENOMEM;
252         cisdump_t *cis;
253
254         if (!filename)
255                 return -EINVAL;
256
257         ds_dbg(1, "trying to load firmware %s\n", filename);
258
259         if (strlen(filename) > 14)
260                 return -EINVAL;
261
262         snprintf(path, 20, "%s", filename);
263
264         if (request_firmware(&fw, path, &dev->dev) == 0) {
265                 if (fw->size >= CISTPL_MAX_CIS_SIZE)
266                         goto release;
267
268                 cis = kzalloc(sizeof(cisdump_t), GFP_KERNEL);
269                 if (!cis)
270                         goto release;
271
272                 cis->Length = fw->size + 1;
273                 memcpy(cis->Data, fw->data, fw->size);
274
275                 if (!pcmcia_replace_cis(s, cis))
276                         ret = 0;
277         }
278  release:
279         release_firmware(fw);
280
281         return (ret);
282 }
283
284 #else /* !CONFIG_PCMCIA_LOAD_CIS */
285
286 static inline int pcmcia_load_firmware(struct pcmcia_device *dev, char * filename)
287 {
288         return -ENODEV;
289 }
290
291 #endif
292
293
294 /*======================================================================*/
295
296
297 /**
298  * pcmcia_register_driver - register a PCMCIA driver with the bus core
299  *
300  * Registers a PCMCIA driver with the PCMCIA bus core.
301  */
302 static int pcmcia_device_probe(struct device *dev);
303 static int pcmcia_device_remove(struct device * dev);
304
305 int pcmcia_register_driver(struct pcmcia_driver *driver)
306 {
307         if (!driver)
308                 return -EINVAL;
309
310         pcmcia_check_driver(driver);
311
312         /* initialize common fields */
313         driver->drv.bus = &pcmcia_bus_type;
314         driver->drv.owner = driver->owner;
315
316         return driver_register(&driver->drv);
317 }
318 EXPORT_SYMBOL(pcmcia_register_driver);
319
320 /**
321  * pcmcia_unregister_driver - unregister a PCMCIA driver with the bus core
322  */
323 void pcmcia_unregister_driver(struct pcmcia_driver *driver)
324 {
325         driver_unregister(&driver->drv);
326 }
327 EXPORT_SYMBOL(pcmcia_unregister_driver);
328
329
330 /* pcmcia_device handling */
331
332 struct pcmcia_device * pcmcia_get_dev(struct pcmcia_device *p_dev)
333 {
334         struct device *tmp_dev;
335         tmp_dev = get_device(&p_dev->dev);
336         if (!tmp_dev)
337                 return NULL;
338         return to_pcmcia_dev(tmp_dev);
339 }
340
341 void pcmcia_put_dev(struct pcmcia_device *p_dev)
342 {
343         if (p_dev)
344                 put_device(&p_dev->dev);
345 }
346
347 static void pcmcia_release_function(struct kref *ref)
348 {
349         struct config_t *c = container_of(ref, struct config_t, ref);
350         kfree(c);
351 }
352
353 static void pcmcia_release_dev(struct device *dev)
354 {
355         struct pcmcia_device *p_dev = to_pcmcia_dev(dev);
356         ds_dbg(1, "releasing dev %p\n", p_dev);
357         pcmcia_put_socket(p_dev->socket);
358         kfree(p_dev->devname);
359         kref_put(&p_dev->function_config->ref, pcmcia_release_function);
360         kfree(p_dev);
361 }
362
363 static void pcmcia_add_pseudo_device(struct pcmcia_socket *s)
364 {
365         if (!s->pcmcia_state.device_add_pending) {
366                 s->pcmcia_state.device_add_pending = 1;
367                 schedule_work(&s->device_add);
368         }
369         return;
370 }
371
372 static int pcmcia_device_probe(struct device * dev)
373 {
374         struct pcmcia_device *p_dev;
375         struct pcmcia_driver *p_drv;
376         struct pcmcia_device_id *did;
377         struct pcmcia_socket *s;
378         int ret = 0;
379
380         dev = get_device(dev);
381         if (!dev)
382                 return -ENODEV;
383
384         p_dev = to_pcmcia_dev(dev);
385         p_drv = to_pcmcia_drv(dev->driver);
386         s = p_dev->socket;
387
388         if ((!p_drv->probe) || (!p_dev->function_config) ||
389             (!try_module_get(p_drv->owner))) {
390                 ret = -EINVAL;
391                 goto put_dev;
392         }
393
394         p_dev->state &= ~CLIENT_UNBOUND;
395
396         ret = p_drv->probe(p_dev);
397         if (ret)
398                 goto put_module;
399
400         /* handle pseudo multifunction devices:
401          * there are at most two pseudo multifunction devices.
402          * if we're matching against the first, schedule a
403          * call which will then check whether there are two
404          * pseudo devices, and if not, add the second one.
405          */
406         did = (struct pcmcia_device_id *) p_dev->dev.driver_data;
407         if (did && (did->match_flags & PCMCIA_DEV_ID_MATCH_DEVICE_NO) &&
408             (p_dev->socket->device_count == 1) && (p_dev->device_no == 0))
409                 pcmcia_add_pseudo_device(p_dev->socket);
410
411  put_module:
412         if (ret)
413                 module_put(p_drv->owner);
414  put_dev:
415         if (ret)
416                 put_device(dev);
417         return (ret);
418 }
419
420
421 static int pcmcia_device_remove(struct device * dev)
422 {
423         struct pcmcia_device *p_dev;
424         struct pcmcia_driver *p_drv;
425         int i;
426
427         /* detach the "instance" */
428         p_dev = to_pcmcia_dev(dev);
429         p_drv = to_pcmcia_drv(dev->driver);
430         if (!p_drv)
431                 return 0;
432
433         if (p_drv->remove)
434                 p_drv->remove(p_dev);
435
436         /* check for proper unloading */
437         if (p_dev->state & (CLIENT_IRQ_REQ|CLIENT_IO_REQ|CLIENT_CONFIG_LOCKED))
438                 printk(KERN_INFO "pcmcia: driver %s did not release config properly\n",
439                        p_drv->drv.name);
440
441         for (i = 0; i < MAX_WIN; i++)
442                 if (p_dev->state & CLIENT_WIN_REQ(i))
443                         printk(KERN_INFO "pcmcia: driver %s did not release windows properly\n",
444                                p_drv->drv.name);
445
446         /* references from pcmcia_probe_device */
447         p_dev->state = CLIENT_UNBOUND;
448         pcmcia_put_dev(p_dev);
449         module_put(p_drv->owner);
450
451         return 0;
452 }
453
454
455 /*
456  * Removes a PCMCIA card from the device tree and socket list.
457  */
458 static void pcmcia_card_remove(struct pcmcia_socket *s)
459 {
460         struct pcmcia_device    *p_dev;
461         unsigned long           flags;
462
463         ds_dbg(2, "unbind_request(%d)\n", s->sock);
464
465         s->device_count = 0;
466
467         for (;;) {
468                 /* unregister all pcmcia_devices registered with this socket*/
469                 spin_lock_irqsave(&pcmcia_dev_list_lock, flags);
470                 if (list_empty(&s->devices_list)) {
471                         spin_unlock_irqrestore(&pcmcia_dev_list_lock, flags);
472                         return;
473                 }
474                 p_dev = list_entry((&s->devices_list)->next, struct pcmcia_device, socket_device_list);
475                 list_del(&p_dev->socket_device_list);
476                 p_dev->state |= CLIENT_STALE;
477                 spin_unlock_irqrestore(&pcmcia_dev_list_lock, flags);
478
479                 device_unregister(&p_dev->dev);
480         }
481
482         return;
483 } /* unbind_request */
484
485
486 /*
487  * pcmcia_device_query -- determine information about a pcmcia device
488  */
489 static int pcmcia_device_query(struct pcmcia_device *p_dev)
490 {
491         cistpl_manfid_t manf_id;
492         cistpl_funcid_t func_id;
493         cistpl_vers_1_t *vers1;
494         unsigned int i;
495
496         vers1 = kmalloc(sizeof(*vers1), GFP_KERNEL);
497         if (!vers1)
498                 return -ENOMEM;
499
500         if (!pccard_read_tuple(p_dev->socket, p_dev->func,
501                                CISTPL_MANFID, &manf_id)) {
502                 p_dev->manf_id = manf_id.manf;
503                 p_dev->card_id = manf_id.card;
504                 p_dev->has_manf_id = 1;
505                 p_dev->has_card_id = 1;
506         }
507
508         if (!pccard_read_tuple(p_dev->socket, p_dev->func,
509                                CISTPL_FUNCID, &func_id)) {
510                 p_dev->func_id = func_id.func;
511                 p_dev->has_func_id = 1;
512         } else {
513                 /* rule of thumb: cards with no FUNCID, but with
514                  * common memory device geometry information, are
515                  * probably memory cards (from pcmcia-cs) */
516                 cistpl_device_geo_t *devgeo;
517
518                 devgeo = kmalloc(sizeof(*devgeo), GFP_KERNEL);
519                 if (!devgeo) {
520                         kfree(vers1);
521                         return -ENOMEM;
522                 }
523                 if (!pccard_read_tuple(p_dev->socket, p_dev->func,
524                                       CISTPL_DEVICE_GEO, devgeo)) {
525                         ds_dbg(0, "mem device geometry probably means "
526                                "FUNCID_MEMORY\n");
527                         p_dev->func_id = CISTPL_FUNCID_MEMORY;
528                         p_dev->has_func_id = 1;
529                 }
530                 kfree(devgeo);
531         }
532
533         if (!pccard_read_tuple(p_dev->socket, p_dev->func, CISTPL_VERS_1,
534                                vers1)) {
535                 for (i=0; i < vers1->ns; i++) {
536                         char *tmp;
537                         unsigned int length;
538
539                         tmp = vers1->str + vers1->ofs[i];
540
541                         length = strlen(tmp) + 1;
542                         if ((length < 2) || (length > 255))
543                                 continue;
544
545                         p_dev->prod_id[i] = kmalloc(sizeof(char) * length,
546                                                     GFP_KERNEL);
547                         if (!p_dev->prod_id[i])
548                                 continue;
549
550                         p_dev->prod_id[i] = strncpy(p_dev->prod_id[i],
551                                                     tmp, length);
552                 }
553         }
554
555         kfree(vers1);
556         return 0;
557 }
558
559
560 /* device_add_lock is needed to avoid double registration by cardmgr and kernel.
561  * Serializes pcmcia_device_add; will most likely be removed in future.
562  *
563  * While it has the caveat that adding new PCMCIA devices inside(!) device_register()
564  * won't work, this doesn't matter much at the moment: the driver core doesn't
565  * support it either.
566  */
567 static DECLARE_MUTEX(device_add_lock);
568
569 struct pcmcia_device * pcmcia_device_add(struct pcmcia_socket *s, unsigned int function)
570 {
571         struct pcmcia_device *p_dev, *tmp_dev;
572         unsigned long flags;
573         int bus_id_len;
574
575         s = pcmcia_get_socket(s);
576         if (!s)
577                 return NULL;
578
579         down(&device_add_lock);
580
581         /* max of 2 devices per card */
582         if (s->device_count == 2)
583                 goto err_put;
584
585         p_dev = kzalloc(sizeof(struct pcmcia_device), GFP_KERNEL);
586         if (!p_dev)
587                 goto err_put;
588
589         p_dev->socket = s;
590         p_dev->device_no = (s->device_count++);
591         p_dev->func   = function;
592         if (s->functions < function)
593                 s->functions = function;
594
595         p_dev->dev.bus = &pcmcia_bus_type;
596         p_dev->dev.parent = s->dev.dev;
597         p_dev->dev.release = pcmcia_release_dev;
598         bus_id_len = sprintf (p_dev->dev.bus_id, "%d.%d", p_dev->socket->sock, p_dev->device_no);
599
600         p_dev->devname = kmalloc(6 + bus_id_len + 1, GFP_KERNEL);
601         if (!p_dev->devname)
602                 goto err_free;
603         sprintf (p_dev->devname, "pcmcia%s", p_dev->dev.bus_id);
604
605         /* compat */
606         p_dev->state = CLIENT_UNBOUND;
607
608
609         spin_lock_irqsave(&pcmcia_dev_list_lock, flags);
610
611         /*
612          * p_dev->function_config must be the same for all card functions.
613          * Note that this is serialized by the device_add_lock, so that
614          * only one such struct will be created.
615          */
616         list_for_each_entry(tmp_dev, &s->devices_list, socket_device_list)
617                 if (p_dev->func == tmp_dev->func) {
618                         p_dev->function_config = tmp_dev->function_config;
619                         kref_get(&p_dev->function_config->ref);
620                 }
621
622         /* Add to the list in pcmcia_bus_socket */
623         list_add_tail(&p_dev->socket_device_list, &s->devices_list);
624
625         spin_unlock_irqrestore(&pcmcia_dev_list_lock, flags);
626
627         if (!p_dev->function_config) {
628                 p_dev->function_config = kzalloc(sizeof(struct config_t),
629                                                  GFP_KERNEL);
630                 if (!p_dev->function_config)
631                         goto err_unreg;
632                 kref_init(&p_dev->function_config->ref);
633         }
634
635         printk(KERN_NOTICE "pcmcia: registering new device %s\n",
636                p_dev->devname);
637
638         pcmcia_device_query(p_dev);
639
640         if (device_register(&p_dev->dev))
641                 goto err_unreg;
642
643         up(&device_add_lock);
644
645         return p_dev;
646
647  err_unreg:
648         spin_lock_irqsave(&pcmcia_dev_list_lock, flags);
649         list_del(&p_dev->socket_device_list);
650         spin_unlock_irqrestore(&pcmcia_dev_list_lock, flags);
651
652  err_free:
653         kfree(p_dev->devname);
654         kfree(p_dev);
655         s->device_count--;
656  err_put:
657         up(&device_add_lock);
658         pcmcia_put_socket(s);
659
660         return NULL;
661 }
662
663
664 static int pcmcia_card_add(struct pcmcia_socket *s)
665 {
666         cisinfo_t cisinfo;
667         cistpl_longlink_mfc_t mfc;
668         unsigned int no_funcs, i;
669         int ret = 0;
670
671         if (!(s->resource_setup_done))
672                 return -EAGAIN; /* try again, but later... */
673
674         if (pcmcia_validate_mem(s))
675                 return -EAGAIN; /* try again, but later... */
676
677         ret = pccard_validate_cis(s, BIND_FN_ALL, &cisinfo);
678         if (ret || !cisinfo.Chains) {
679                 ds_dbg(0, "invalid CIS or invalid resources\n");
680                 return -ENODEV;
681         }
682
683         if (!pccard_read_tuple(s, BIND_FN_ALL, CISTPL_LONGLINK_MFC, &mfc))
684                 no_funcs = mfc.nfn;
685         else
686                 no_funcs = 1;
687
688         for (i=0; i < no_funcs; i++)
689                 pcmcia_device_add(s, i);
690
691         return (ret);
692 }
693
694
695 static void pcmcia_delayed_add_pseudo_device(void *data)
696 {
697         struct pcmcia_socket *s = data;
698         pcmcia_device_add(s, 0);
699         s->pcmcia_state.device_add_pending = 0;
700 }
701
702 static int pcmcia_requery(struct device *dev, void * _data)
703 {
704         struct pcmcia_device *p_dev = to_pcmcia_dev(dev);
705         if (!p_dev->dev.driver)
706                 pcmcia_device_query(p_dev);
707
708         return 0;
709 }
710
711 static void pcmcia_bus_rescan(struct pcmcia_socket *skt)
712 {
713         int no_devices=0;
714         unsigned long flags;
715
716         /* must be called with skt_sem held */
717         spin_lock_irqsave(&pcmcia_dev_list_lock, flags);
718         if (list_empty(&skt->devices_list))
719                 no_devices=1;
720         spin_unlock_irqrestore(&pcmcia_dev_list_lock, flags);
721
722         /* if no devices were added for this socket yet because of
723          * missing resource information or other trouble, we need to
724          * do this now. */
725         if (no_devices) {
726                 int ret = pcmcia_card_add(skt);
727                 if (ret)
728                         return;
729         }
730
731         /* some device information might have changed because of a CIS
732          * update or because we can finally read it correctly... so
733          * determine it again, overwriting old values if necessary. */
734         bus_for_each_dev(&pcmcia_bus_type, NULL, NULL, pcmcia_requery);
735
736         /* we re-scan all devices, not just the ones connected to this
737          * socket. This does not matter, though. */
738         bus_rescan_devices(&pcmcia_bus_type);
739 }
740
741 static inline int pcmcia_devmatch(struct pcmcia_device *dev,
742                                   struct pcmcia_device_id *did)
743 {
744         if (did->match_flags & PCMCIA_DEV_ID_MATCH_MANF_ID) {
745                 if ((!dev->has_manf_id) || (dev->manf_id != did->manf_id))
746                         return 0;
747         }
748
749         if (did->match_flags & PCMCIA_DEV_ID_MATCH_CARD_ID) {
750                 if ((!dev->has_card_id) || (dev->card_id != did->card_id))
751                         return 0;
752         }
753
754         if (did->match_flags & PCMCIA_DEV_ID_MATCH_FUNCTION) {
755                 if (dev->func != did->function)
756                         return 0;
757         }
758
759         if (did->match_flags & PCMCIA_DEV_ID_MATCH_PROD_ID1) {
760                 if (!dev->prod_id[0])
761                         return 0;
762                 if (strcmp(did->prod_id[0], dev->prod_id[0]))
763                         return 0;
764         }
765
766         if (did->match_flags & PCMCIA_DEV_ID_MATCH_PROD_ID2) {
767                 if (!dev->prod_id[1])
768                         return 0;
769                 if (strcmp(did->prod_id[1], dev->prod_id[1]))
770                         return 0;
771         }
772
773         if (did->match_flags & PCMCIA_DEV_ID_MATCH_PROD_ID3) {
774                 if (!dev->prod_id[2])
775                         return 0;
776                 if (strcmp(did->prod_id[2], dev->prod_id[2]))
777                         return 0;
778         }
779
780         if (did->match_flags & PCMCIA_DEV_ID_MATCH_PROD_ID4) {
781                 if (!dev->prod_id[3])
782                         return 0;
783                 if (strcmp(did->prod_id[3], dev->prod_id[3]))
784                         return 0;
785         }
786
787         if (did->match_flags & PCMCIA_DEV_ID_MATCH_DEVICE_NO) {
788                 if (dev->device_no != did->device_no)
789                         return 0;
790         }
791
792         if (did->match_flags & PCMCIA_DEV_ID_MATCH_FUNC_ID) {
793                 if ((!dev->has_func_id) || (dev->func_id != did->func_id))
794                         return 0;
795
796                 /* if this is a pseudo-multi-function device,
797                  * we need explicit matches */
798                 if (did->match_flags & PCMCIA_DEV_ID_MATCH_DEVICE_NO)
799                         return 0;
800                 if (dev->device_no)
801                         return 0;
802
803                 /* also, FUNC_ID matching needs to be activated by userspace
804                  * after it has re-checked that there is no possible module
805                  * with a prod_id/manf_id/card_id match.
806                  */
807                 if (!dev->allow_func_id_match)
808                         return 0;
809         }
810
811         if (did->match_flags & PCMCIA_DEV_ID_MATCH_FAKE_CIS) {
812                 if (!dev->socket->fake_cis)
813                         pcmcia_load_firmware(dev, did->cisfile);
814
815                 if (!dev->socket->fake_cis)
816                         return 0;
817         }
818
819         if (did->match_flags & PCMCIA_DEV_ID_MATCH_ANONYMOUS) {
820                 int i;
821                 for (i=0; i<4; i++)
822                         if (dev->prod_id[i])
823                                 return 0;
824                 if (dev->has_manf_id || dev->has_card_id || dev->has_func_id)
825                         return 0;
826         }
827
828         dev->dev.driver_data = (void *) did;
829
830         return 1;
831 }
832
833
834 static int pcmcia_bus_match(struct device * dev, struct device_driver * drv) {
835         struct pcmcia_device * p_dev = to_pcmcia_dev(dev);
836         struct pcmcia_driver * p_drv = to_pcmcia_drv(drv);
837         struct pcmcia_device_id *did = p_drv->id_table;
838
839         /* matching by cardmgr */
840         if (p_dev->cardmgr == p_drv)
841                 return 1;
842
843         while (did && did->match_flags) {
844                 if (pcmcia_devmatch(p_dev, did))
845                         return 1;
846                 did++;
847         }
848
849         return 0;
850 }
851
852 #ifdef CONFIG_HOTPLUG
853
854 static int pcmcia_bus_uevent(struct device *dev, char **envp, int num_envp,
855                              char *buffer, int buffer_size)
856 {
857         struct pcmcia_device *p_dev;
858         int i, length = 0;
859         u32 hash[4] = { 0, 0, 0, 0};
860
861         if (!dev)
862                 return -ENODEV;
863
864         p_dev = to_pcmcia_dev(dev);
865
866         /* calculate hashes */
867         for (i=0; i<4; i++) {
868                 if (!p_dev->prod_id[i])
869                         continue;
870                 hash[i] = crc32(0, p_dev->prod_id[i], strlen(p_dev->prod_id[i]));
871         }
872
873         i = 0;
874
875         if (add_uevent_var(envp, num_envp, &i,
876                            buffer, buffer_size, &length,
877                            "SOCKET_NO=%u",
878                            p_dev->socket->sock))
879                 return -ENOMEM;
880
881         if (add_uevent_var(envp, num_envp, &i,
882                            buffer, buffer_size, &length,
883                            "DEVICE_NO=%02X",
884                            p_dev->device_no))
885                 return -ENOMEM;
886
887         if (add_uevent_var(envp, num_envp, &i,
888                            buffer, buffer_size, &length,
889                            "MODALIAS=pcmcia:m%04Xc%04Xf%02Xfn%02Xpfn%02X"
890                            "pa%08Xpb%08Xpc%08Xpd%08X",
891                            p_dev->has_manf_id ? p_dev->manf_id : 0,
892                            p_dev->has_card_id ? p_dev->card_id : 0,
893                            p_dev->has_func_id ? p_dev->func_id : 0,
894                            p_dev->func,
895                            p_dev->device_no,
896                            hash[0],
897                            hash[1],
898                            hash[2],
899                            hash[3]))
900                 return -ENOMEM;
901
902         envp[i] = NULL;
903
904         return 0;
905 }
906
907 #else
908
909 static int pcmcia_bus_uevent(struct device *dev, char **envp, int num_envp,
910                               char *buffer, int buffer_size)
911 {
912         return -ENODEV;
913 }
914
915 #endif
916
917 /************************ per-device sysfs output ***************************/
918
919 #define pcmcia_device_attr(field, test, format)                         \
920 static ssize_t field##_show (struct device *dev, struct device_attribute *attr, char *buf)              \
921 {                                                                       \
922         struct pcmcia_device *p_dev = to_pcmcia_dev(dev);               \
923         return p_dev->test ? sprintf (buf, format, p_dev->field) : -ENODEV; \
924 }
925
926 #define pcmcia_device_stringattr(name, field)                                   \
927 static ssize_t name##_show (struct device *dev, struct device_attribute *attr, char *buf)               \
928 {                                                                       \
929         struct pcmcia_device *p_dev = to_pcmcia_dev(dev);               \
930         return p_dev->field ? sprintf (buf, "%s\n", p_dev->field) : -ENODEV; \
931 }
932
933 pcmcia_device_attr(func, socket, "0x%02x\n");
934 pcmcia_device_attr(func_id, has_func_id, "0x%02x\n");
935 pcmcia_device_attr(manf_id, has_manf_id, "0x%04x\n");
936 pcmcia_device_attr(card_id, has_card_id, "0x%04x\n");
937 pcmcia_device_stringattr(prod_id1, prod_id[0]);
938 pcmcia_device_stringattr(prod_id2, prod_id[1]);
939 pcmcia_device_stringattr(prod_id3, prod_id[2]);
940 pcmcia_device_stringattr(prod_id4, prod_id[3]);
941
942
943 static ssize_t pcmcia_show_pm_state(struct device *dev, struct device_attribute *attr, char *buf)
944 {
945         struct pcmcia_device *p_dev = to_pcmcia_dev(dev);
946
947         if (p_dev->dev.power.power_state.event != PM_EVENT_ON)
948                 return sprintf(buf, "off\n");
949         else
950                 return sprintf(buf, "on\n");
951 }
952
953 static ssize_t pcmcia_store_pm_state(struct device *dev, struct device_attribute *attr,
954                                      const char *buf, size_t count)
955 {
956         struct pcmcia_device *p_dev = to_pcmcia_dev(dev);
957         int ret = 0;
958
959         if (!count)
960                 return -EINVAL;
961
962         if ((p_dev->dev.power.power_state.event == PM_EVENT_ON) &&
963             (!strncmp(buf, "off", 3)))
964                 ret = dpm_runtime_suspend(dev, PMSG_SUSPEND);
965         else if ((p_dev->dev.power.power_state.event != PM_EVENT_ON) &&
966                  (!strncmp(buf, "on", 2)))
967                 dpm_runtime_resume(dev);
968
969         return ret ? ret : count;
970 }
971
972
973 static ssize_t modalias_show(struct device *dev, struct device_attribute *attr, char *buf)
974 {
975         struct pcmcia_device *p_dev = to_pcmcia_dev(dev);
976         int i;
977         u32 hash[4] = { 0, 0, 0, 0};
978
979         /* calculate hashes */
980         for (i=0; i<4; i++) {
981                 if (!p_dev->prod_id[i])
982                         continue;
983                 hash[i] = crc32(0,p_dev->prod_id[i],strlen(p_dev->prod_id[i]));
984         }
985         return sprintf(buf, "pcmcia:m%04Xc%04Xf%02Xfn%02Xpfn%02X"
986                                 "pa%08Xpb%08Xpc%08Xpd%08X\n",
987                                 p_dev->has_manf_id ? p_dev->manf_id : 0,
988                                 p_dev->has_card_id ? p_dev->card_id : 0,
989                                 p_dev->has_func_id ? p_dev->func_id : 0,
990                                 p_dev->func, p_dev->device_no,
991                                 hash[0], hash[1], hash[2], hash[3]);
992 }
993
994 static ssize_t pcmcia_store_allow_func_id_match(struct device *dev,
995                 struct device_attribute *attr, const char *buf, size_t count)
996 {
997         struct pcmcia_device *p_dev = to_pcmcia_dev(dev);
998
999         if (!count)
1000                 return -EINVAL;
1001
1002         down(&p_dev->socket->skt_sem);
1003         p_dev->allow_func_id_match = 1;
1004         up(&p_dev->socket->skt_sem);
1005
1006         bus_rescan_devices(&pcmcia_bus_type);
1007
1008         return count;
1009 }
1010
1011 static struct device_attribute pcmcia_dev_attrs[] = {
1012         __ATTR(function, 0444, func_show, NULL),
1013         __ATTR(pm_state, 0644, pcmcia_show_pm_state, pcmcia_store_pm_state),
1014         __ATTR_RO(func_id),
1015         __ATTR_RO(manf_id),
1016         __ATTR_RO(card_id),
1017         __ATTR_RO(prod_id1),
1018         __ATTR_RO(prod_id2),
1019         __ATTR_RO(prod_id3),
1020         __ATTR_RO(prod_id4),
1021         __ATTR_RO(modalias),
1022         __ATTR(allow_func_id_match, 0200, NULL, pcmcia_store_allow_func_id_match),
1023         __ATTR_NULL,
1024 };
1025
1026 /* PM support, also needed for reset */
1027
1028 static int pcmcia_dev_suspend(struct device * dev, pm_message_t state)
1029 {
1030         struct pcmcia_device *p_dev = to_pcmcia_dev(dev);
1031         struct pcmcia_driver *p_drv = NULL;
1032
1033         if (dev->driver)
1034                 p_drv = to_pcmcia_drv(dev->driver);
1035
1036         if (p_drv && p_drv->suspend)
1037                 return p_drv->suspend(p_dev);
1038
1039         return 0;
1040 }
1041
1042
1043 static int pcmcia_dev_resume(struct device * dev)
1044 {
1045         struct pcmcia_device *p_dev = to_pcmcia_dev(dev);
1046         struct pcmcia_driver *p_drv = NULL;
1047
1048         if (dev->driver)
1049                 p_drv = to_pcmcia_drv(dev->driver);
1050
1051         if (p_drv && p_drv->resume)
1052                 return p_drv->resume(p_dev);
1053
1054         return 0;
1055 }
1056
1057
1058 static int pcmcia_bus_suspend_callback(struct device *dev, void * _data)
1059 {
1060         struct pcmcia_socket *skt = _data;
1061         struct pcmcia_device *p_dev = to_pcmcia_dev(dev);
1062
1063         if (p_dev->socket != skt)
1064                 return 0;
1065
1066         return dpm_runtime_suspend(dev, PMSG_SUSPEND);
1067 }
1068
1069 static int pcmcia_bus_resume_callback(struct device *dev, void * _data)
1070 {
1071         struct pcmcia_socket *skt = _data;
1072         struct pcmcia_device *p_dev = to_pcmcia_dev(dev);
1073
1074         if (p_dev->socket != skt)
1075                 return 0;
1076
1077         dpm_runtime_resume(dev);
1078
1079         return 0;
1080 }
1081
1082 static int pcmcia_bus_resume(struct pcmcia_socket *skt)
1083 {
1084         bus_for_each_dev(&pcmcia_bus_type, NULL, skt, pcmcia_bus_resume_callback);
1085         return 0;
1086 }
1087
1088 static int pcmcia_bus_suspend(struct pcmcia_socket *skt)
1089 {
1090         if (bus_for_each_dev(&pcmcia_bus_type, NULL, skt,
1091                              pcmcia_bus_suspend_callback)) {
1092                 pcmcia_bus_resume(skt);
1093                 return -EIO;
1094         }
1095         return 0;
1096 }
1097
1098
1099 /*======================================================================
1100
1101     The card status event handler.
1102     
1103 ======================================================================*/
1104
1105 /* Normally, the event is passed to individual drivers after
1106  * informing userspace. Only for CS_EVENT_CARD_REMOVAL this
1107  * is inversed to maintain historic compatibility.
1108  */
1109
1110 static int ds_event(struct pcmcia_socket *skt, event_t event, int priority)
1111 {
1112         struct pcmcia_socket *s = pcmcia_get_socket(skt);
1113
1114         ds_dbg(1, "ds_event(0x%06x, %d, 0x%p)\n",
1115                event, priority, skt);
1116
1117         switch (event) {
1118         case CS_EVENT_CARD_REMOVAL:
1119                 s->pcmcia_state.present = 0;
1120                 pcmcia_card_remove(skt);
1121                 handle_event(skt, event);
1122                 break;
1123
1124         case CS_EVENT_CARD_INSERTION:
1125                 s->pcmcia_state.present = 1;
1126                 pcmcia_card_add(skt);
1127                 handle_event(skt, event);
1128                 break;
1129
1130         case CS_EVENT_EJECTION_REQUEST:
1131                 break;
1132
1133         case CS_EVENT_PM_SUSPEND:
1134         case CS_EVENT_PM_RESUME:
1135         case CS_EVENT_RESET_PHYSICAL:
1136         case CS_EVENT_CARD_RESET:
1137         default:
1138                 handle_event(skt, event);
1139                 break;
1140     }
1141
1142     pcmcia_put_socket(s);
1143
1144     return 0;
1145 } /* ds_event */
1146
1147
1148 static struct pcmcia_callback pcmcia_bus_callback = {
1149         .owner = THIS_MODULE,
1150         .event = ds_event,
1151         .requery = pcmcia_bus_rescan,
1152         .suspend = pcmcia_bus_suspend,
1153         .resume = pcmcia_bus_resume,
1154 };
1155
1156 static int __devinit pcmcia_bus_add_socket(struct class_device *class_dev,
1157                                            struct class_interface *class_intf)
1158 {
1159         struct pcmcia_socket *socket = class_get_devdata(class_dev);
1160         int ret;
1161
1162         socket = pcmcia_get_socket(socket);
1163         if (!socket) {
1164                 printk(KERN_ERR "PCMCIA obtaining reference to socket %p failed\n", socket);
1165                 return -ENODEV;
1166         }
1167
1168         /*
1169          * Ugly. But we want to wait for the socket threads to have started up.
1170          * We really should let the drivers themselves drive some of this..
1171          */
1172         msleep(250);
1173
1174 #ifdef CONFIG_PCMCIA_IOCTL
1175         init_waitqueue_head(&socket->queue);
1176 #endif
1177         INIT_LIST_HEAD(&socket->devices_list);
1178         INIT_WORK(&socket->device_add, pcmcia_delayed_add_pseudo_device, socket);
1179         memset(&socket->pcmcia_state, 0, sizeof(u8));
1180         socket->device_count = 0;
1181
1182         ret = pccard_register_pcmcia(socket, &pcmcia_bus_callback);
1183         if (ret) {
1184                 printk(KERN_ERR "PCMCIA registration PCCard core failed for socket %p\n", socket);
1185                 pcmcia_put_socket(socket);
1186                 return (ret);
1187         }
1188
1189         return 0;
1190 }
1191
1192 static void pcmcia_bus_remove_socket(struct class_device *class_dev,
1193                                      struct class_interface *class_intf)
1194 {
1195         struct pcmcia_socket *socket = class_get_devdata(class_dev);
1196
1197         if (!socket)
1198                 return;
1199
1200         socket->pcmcia_state.dead = 1;
1201         pccard_register_pcmcia(socket, NULL);
1202
1203         pcmcia_put_socket(socket);
1204
1205         return;
1206 }
1207
1208
1209 /* the pcmcia_bus_interface is used to handle pcmcia socket devices */
1210 static struct class_interface pcmcia_bus_interface = {
1211         .class = &pcmcia_socket_class,
1212         .add = &pcmcia_bus_add_socket,
1213         .remove = &pcmcia_bus_remove_socket,
1214 };
1215
1216
1217 struct bus_type pcmcia_bus_type = {
1218         .name = "pcmcia",
1219         .uevent = pcmcia_bus_uevent,
1220         .match = pcmcia_bus_match,
1221         .dev_attrs = pcmcia_dev_attrs,
1222         .probe = pcmcia_device_probe,
1223         .remove = pcmcia_device_remove,
1224         .suspend = pcmcia_dev_suspend,
1225         .resume = pcmcia_dev_resume,
1226 };
1227
1228
1229 static int __init init_pcmcia_bus(void)
1230 {
1231         spin_lock_init(&pcmcia_dev_list_lock);
1232
1233         bus_register(&pcmcia_bus_type);
1234         class_interface_register(&pcmcia_bus_interface);
1235
1236         pcmcia_setup_ioctl();
1237
1238         return 0;
1239 }
1240 fs_initcall(init_pcmcia_bus); /* one level after subsys_initcall so that 
1241                                * pcmcia_socket_class is already registered */
1242
1243
1244 static void __exit exit_pcmcia_bus(void)
1245 {
1246         pcmcia_cleanup_ioctl();
1247
1248         class_interface_unregister(&pcmcia_bus_interface);
1249
1250         bus_unregister(&pcmcia_bus_type);
1251 }
1252 module_exit(exit_pcmcia_bus);
1253
1254
1255 MODULE_ALIAS("ds");