Merge commit 'v2.6.27-rc7' into x86/microcode
[linux-2.6-block.git] / drivers / pcmcia / ds.c
CommitLineData
1da177e4
LT
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
8661bb5b 13 * (C) 2003 - 2006 Dominik Brodowski
1da177e4
LT
14 */
15
3b659fb8 16#include <linux/kernel.h>
1da177e4 17#include <linux/module.h>
1da177e4 18#include <linux/init.h>
1da177e4 19#include <linux/errno.h>
1da177e4
LT
20#include <linux/list.h>
21#include <linux/delay.h>
1da177e4 22#include <linux/workqueue.h>
840c2ac5 23#include <linux/crc32.h>
daa9517d 24#include <linux/firmware.h>
360b65b9 25#include <linux/kref.h>
43d9f7fd 26#include <linux/dma-mapping.h>
1da177e4 27
1da177e4
LT
28#include <pcmcia/cs_types.h>
29#include <pcmcia/cs.h>
1da177e4
LT
30#include <pcmcia/cistpl.h>
31#include <pcmcia/ds.h>
32#include <pcmcia/ss.h>
33
34#include "cs_internal.h"
e7a480d2 35#include "ds_internal.h"
1da177e4
LT
36
37/*====================================================================*/
38
39/* Module parameters */
40
41MODULE_AUTHOR("David Hinds <dahinds@users.sourceforge.net>");
42MODULE_DESCRIPTION("PCMCIA Driver Services");
43MODULE_LICENSE("GPL");
44
45#ifdef DEBUG
e7a480d2 46int ds_pc_debug;
1da177e4
LT
47
48module_param_named(pc_debug, ds_pc_debug, int, 0644);
49
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
57
e7a480d2 58spinlock_t pcmcia_dev_list_lock;
1da177e4 59
1da177e4
LT
60/*====================================================================*/
61
62/* code which was in cs.c before */
63
64/* String tables for error messages */
65
66typedef struct lookup_t {
67 int key;
68 char *msg;
69} lookup_t;
70
71static 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" }
103};
104
105
106static 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" }
156};
157
158
2bc5a9bd 159static int pcmcia_report_error(struct pcmcia_device *p_dev, error_info_t *err)
1da177e4
LT
160{
161 int i;
162 char *serv;
163
2bc5a9bd 164 if (!p_dev)
1da177e4 165 printk(KERN_NOTICE);
2bc5a9bd 166 else
1da177e4 167 printk(KERN_NOTICE "%s: ", p_dev->dev.bus_id);
1da177e4
LT
168
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";
176
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);
184
185 return CS_SUCCESS;
186} /* report_error */
1da177e4
LT
187
188/* end of code which was in cs.c before */
189
190/*======================================================================*/
191
2bc5a9bd 192void cs_error(struct pcmcia_device *p_dev, int func, int ret)
1da177e4
LT
193{
194 error_info_t err = { func, ret };
2bc5a9bd 195 pcmcia_report_error(p_dev, &err);
1da177e4
LT
196}
197EXPORT_SYMBOL(cs_error);
198
23a83bfe
DB
199
200static void pcmcia_check_driver(struct pcmcia_driver *p_drv)
201{
202 struct pcmcia_device_id *did = p_drv->id_table;
203 unsigned int i;
204 u32 hash;
205
f8cfa618 206 if (!p_drv->probe || !p_drv->remove)
ba5bb6b5
PR
207 printk(KERN_DEBUG "pcmcia: %s lacks a requisite callback "
208 "function\n", p_drv->drv.name);
1e212f36 209
23a83bfe
DB
210 while (did && did->match_flags) {
211 for (i=0; i<4; i++) {
212 if (!did->prod_id[i])
213 continue;
214
215 hash = crc32(0, did->prod_id[i], strlen(did->prod_id[i]));
216 if (hash == did->prod_id_hash[i])
217 continue;
218
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);
5085cb26
DB
223 printk(KERN_DEBUG "pcmcia: see "
224 "Documentation/pcmcia/devicetable.txt for "
225 "details\n");
23a83bfe
DB
226 }
227 did++;
228 }
229
230 return;
231}
232
daa9517d 233
1da177e4
LT
234/*======================================================================*/
235
1da177e4 236
6179b556
BW
237struct pcmcia_dynid {
238 struct list_head node;
239 struct pcmcia_device_id id;
240};
241
242/**
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
247 *
248 * Adds a new dynamic PCMCIA device ID to this driver,
249 * and causes the driver to probe for all devices again.
250 */
251static ssize_t
252pcmcia_store_new_id(struct device_driver *driver, const char *buf, size_t count)
253{
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;
261
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;
267
268 dynid = kzalloc(sizeof(struct pcmcia_dynid), GFP_KERNEL);
269 if (!dynid)
270 return -ENOMEM;
271
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);
280
281 spin_lock(&pdrv->dynids.lock);
282 list_add_tail(&pdrv->dynids.list, &dynid->node);
283 spin_unlock(&pdrv->dynids.lock);
284
285 if (get_driver(&pdrv->drv)) {
286 retval = driver_attach(&pdrv->drv);
287 put_driver(&pdrv->drv);
288 }
289
290 if (retval)
291 return retval;
292 return count;
293}
294static DRIVER_ATTR(new_id, S_IWUSR, NULL, pcmcia_store_new_id);
295
296static void
297pcmcia_free_dynids(struct pcmcia_driver *drv)
298{
299 struct pcmcia_dynid *dynid, *n;
300
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);
305 }
306 spin_unlock(&drv->dynids.lock);
307}
308
309static int
310pcmcia_create_newid_file(struct pcmcia_driver *drv)
311{
312 int error = 0;
313 if (drv->probe != NULL)
2344c6de 314 error = driver_create_file(&drv->drv, &driver_attr_new_id);
6179b556
BW
315 return error;
316}
317
318
1da177e4
LT
319/**
320 * pcmcia_register_driver - register a PCMCIA driver with the bus core
78187865 321 * @driver: the &driver being registered
1da177e4
LT
322 *
323 * Registers a PCMCIA driver with the PCMCIA bus core.
324 */
1da177e4
LT
325int pcmcia_register_driver(struct pcmcia_driver *driver)
326{
6179b556
BW
327 int error;
328
1da177e4
LT
329 if (!driver)
330 return -EINVAL;
331
23a83bfe
DB
332 pcmcia_check_driver(driver);
333
1da177e4
LT
334 /* initialize common fields */
335 driver->drv.bus = &pcmcia_bus_type;
336 driver->drv.owner = driver->owner;
6179b556
BW
337 spin_lock_init(&driver->dynids.lock);
338 INIT_LIST_HEAD(&driver->dynids.list);
1da177e4 339
d9d9ea01
DB
340 ds_dbg(3, "registering driver %s\n", driver->drv.name);
341
6179b556
BW
342 error = driver_register(&driver->drv);
343 if (error < 0)
344 return error;
345
346 error = pcmcia_create_newid_file(driver);
347 if (error)
348 driver_unregister(&driver->drv);
349
350 return error;
1da177e4
LT
351}
352EXPORT_SYMBOL(pcmcia_register_driver);
353
354/**
355 * pcmcia_unregister_driver - unregister a PCMCIA driver with the bus core
78187865 356 * @driver: the &driver being unregistered
1da177e4
LT
357 */
358void pcmcia_unregister_driver(struct pcmcia_driver *driver)
359{
d9d9ea01 360 ds_dbg(3, "unregistering driver %s\n", driver->drv.name);
1da177e4 361 driver_unregister(&driver->drv);
6179b556 362 pcmcia_free_dynids(driver);
1da177e4
LT
363}
364EXPORT_SYMBOL(pcmcia_unregister_driver);
365
1da177e4
LT
366
367/* pcmcia_device handling */
368
e7a480d2 369struct pcmcia_device * pcmcia_get_dev(struct pcmcia_device *p_dev)
1da177e4
LT
370{
371 struct device *tmp_dev;
372 tmp_dev = get_device(&p_dev->dev);
373 if (!tmp_dev)
374 return NULL;
375 return to_pcmcia_dev(tmp_dev);
376}
377
e7a480d2 378void pcmcia_put_dev(struct pcmcia_device *p_dev)
1da177e4
LT
379{
380 if (p_dev)
381 put_device(&p_dev->dev);
382}
383
360b65b9
DB
384static void pcmcia_release_function(struct kref *ref)
385{
386 struct config_t *c = container_of(ref, struct config_t, ref);
d9d9ea01 387 ds_dbg(1, "releasing config_t\n");
360b65b9
DB
388 kfree(c);
389}
390
1da177e4
LT
391static void pcmcia_release_dev(struct device *dev)
392{
393 struct pcmcia_device *p_dev = to_pcmcia_dev(dev);
d9d9ea01 394 ds_dbg(1, "releasing device %s\n", p_dev->dev.bus_id);
dc109497 395 pcmcia_put_socket(p_dev->socket);
bd65a685 396 kfree(p_dev->devname);
360b65b9 397 kref_put(&p_dev->function_config->ref, pcmcia_release_function);
1da177e4
LT
398 kfree(p_dev);
399}
400
1d2c9042 401static void pcmcia_add_device_later(struct pcmcia_socket *s, int mfc)
82d56e6d
DB
402{
403 if (!s->pcmcia_state.device_add_pending) {
d9d9ea01
DB
404 ds_dbg(1, "scheduling to add %s secondary"
405 " device to %d\n", mfc ? "mfc" : "pfc", s->sock);
82d56e6d 406 s->pcmcia_state.device_add_pending = 1;
1d2c9042 407 s->pcmcia_state.mfc_pfc = mfc;
82d56e6d
DB
408 schedule_work(&s->device_add);
409 }
410 return;
411}
1da177e4
LT
412
413static int pcmcia_device_probe(struct device * dev)
414{
415 struct pcmcia_device *p_dev;
416 struct pcmcia_driver *p_drv;
82d56e6d 417 struct pcmcia_device_id *did;
f8cfa618 418 struct pcmcia_socket *s;
af2b3b50 419 cistpl_config_t cis_config;
1da177e4
LT
420 int ret = 0;
421
422 dev = get_device(dev);
423 if (!dev)
424 return -ENODEV;
425
426 p_dev = to_pcmcia_dev(dev);
427 p_drv = to_pcmcia_drv(dev->driver);
f8cfa618 428 s = p_dev->socket;
1da177e4 429
d9d9ea01
DB
430 ds_dbg(1, "trying to bind %s to %s\n", p_dev->dev.bus_id,
431 p_drv->drv.name);
432
360b65b9
DB
433 if ((!p_drv->probe) || (!p_dev->function_config) ||
434 (!try_module_get(p_drv->owner))) {
1da177e4
LT
435 ret = -EINVAL;
436 goto put_dev;
437 }
438
af2b3b50
DB
439 /* set up some more device information */
440 ret = pccard_read_tuple(p_dev->socket, p_dev->func, CISTPL_CONFIG,
441 &cis_config);
442 if (!ret) {
443 p_dev->conf.ConfigBase = cis_config.base;
444 p_dev->conf.Present = cis_config.rmask[0];
445 } else {
446 printk(KERN_INFO "pcmcia: could not parse base and rmask0 of CIS\n");
447 p_dev->conf.ConfigBase = 0;
448 p_dev->conf.Present = 0;
449 }
450
f8cfa618 451 ret = p_drv->probe(p_dev);
d9d9ea01
DB
452 if (ret) {
453 ds_dbg(1, "binding %s to %s failed with %d\n",
454 p_dev->dev.bus_id, p_drv->drv.name, ret);
82d56e6d 455 goto put_module;
d9d9ea01 456 }
82d56e6d
DB
457
458 /* handle pseudo multifunction devices:
459 * there are at most two pseudo multifunction devices.
460 * if we're matching against the first, schedule a
461 * call which will then check whether there are two
462 * pseudo devices, and if not, add the second one.
463 */
80a55e92 464 did = p_dev->dev.driver_data;
4ceadbf5 465 if (did && (did->match_flags & PCMCIA_DEV_ID_MATCH_DEVICE_NO) &&
82d56e6d 466 (p_dev->socket->device_count == 1) && (p_dev->device_no == 0))
1d2c9042 467 pcmcia_add_device_later(p_dev->socket, 0);
f8cfa618
DB
468
469 put_module:
1da177e4
LT
470 if (ret)
471 module_put(p_drv->owner);
472 put_dev:
f8cfa618 473 if (ret)
1da177e4
LT
474 put_device(dev);
475 return (ret);
476}
477
478
d6ff5a85
DB
479/*
480 * Removes a PCMCIA card from the device tree and socket list.
481 */
482static void pcmcia_card_remove(struct pcmcia_socket *s, struct pcmcia_device *leftover)
483{
484 struct pcmcia_device *p_dev;
485 struct pcmcia_device *tmp;
486 unsigned long flags;
487
d9d9ea01
DB
488 ds_dbg(2, "pcmcia_card_remove(%d) %s\n", s->sock,
489 leftover ? leftover->devname : "");
d6ff5a85
DB
490
491 if (!leftover)
492 s->device_count = 0;
493 else
494 s->device_count = 1;
495
496 /* unregister all pcmcia_devices registered with this socket, except leftover */
497 list_for_each_entry_safe(p_dev, tmp, &s->devices_list, socket_device_list) {
498 if (p_dev == leftover)
499 continue;
500
501 spin_lock_irqsave(&pcmcia_dev_list_lock, flags);
502 list_del(&p_dev->socket_device_list);
503 p_dev->_removed=1;
504 spin_unlock_irqrestore(&pcmcia_dev_list_lock, flags);
505
d9d9ea01 506 ds_dbg(2, "unregistering device %s\n", p_dev->dev.bus_id);
d6ff5a85
DB
507 device_unregister(&p_dev->dev);
508 }
509
510 return;
511}
512
1da177e4
LT
513static int pcmcia_device_remove(struct device * dev)
514{
515 struct pcmcia_device *p_dev;
516 struct pcmcia_driver *p_drv;
d6ff5a85 517 struct pcmcia_device_id *did;
cc3b4866 518 int i;
1da177e4 519
1da177e4
LT
520 p_dev = to_pcmcia_dev(dev);
521 p_drv = to_pcmcia_drv(dev->driver);
d6ff5a85 522
d9d9ea01
DB
523 ds_dbg(1, "removing device %s\n", p_dev->dev.bus_id);
524
d6ff5a85
DB
525 /* If we're removing the primary module driving a
526 * pseudo multi-function card, we need to unbind
527 * all devices
528 */
80a55e92 529 did = p_dev->dev.driver_data;
b2f51a1c 530 if (did && (did->match_flags & PCMCIA_DEV_ID_MATCH_DEVICE_NO) &&
d6ff5a85
DB
531 (p_dev->socket->device_count != 0) &&
532 (p_dev->device_no == 0))
533 pcmcia_card_remove(p_dev->socket, p_dev);
534
535 /* detach the "instance" */
f3990715
DB
536 if (!p_drv)
537 return 0;
1da177e4 538
f3990715 539 if (p_drv->remove)
cc3b4866
DB
540 p_drv->remove(p_dev);
541
a0aab143
DB
542 p_dev->dev_node = NULL;
543
f3990715 544 /* check for proper unloading */
e2d40963 545 if (p_dev->_irq || p_dev->_io || p_dev->_locked)
f3990715
DB
546 printk(KERN_INFO "pcmcia: driver %s did not release config properly\n",
547 p_drv->drv.name);
cc3b4866 548
f3990715 549 for (i = 0; i < MAX_WIN; i++)
e2d40963 550 if (p_dev->_win & CLIENT_WIN_REQ(i))
f3990715
DB
551 printk(KERN_INFO "pcmcia: driver %s did not release windows properly\n",
552 p_drv->drv.name);
cc3b4866 553
f3990715
DB
554 /* references from pcmcia_probe_device */
555 pcmcia_put_dev(p_dev);
556 module_put(p_drv->owner);
1da177e4
LT
557
558 return 0;
559}
560
561
1da177e4
LT
562/*
563 * pcmcia_device_query -- determine information about a pcmcia device
564 */
565static int pcmcia_device_query(struct pcmcia_device *p_dev)
566{
567 cistpl_manfid_t manf_id;
568 cistpl_funcid_t func_id;
76fa82fb 569 cistpl_vers_1_t *vers1;
1da177e4
LT
570 unsigned int i;
571
76fa82fb
IM
572 vers1 = kmalloc(sizeof(*vers1), GFP_KERNEL);
573 if (!vers1)
574 return -ENOMEM;
575
1da177e4
LT
576 if (!pccard_read_tuple(p_dev->socket, p_dev->func,
577 CISTPL_MANFID, &manf_id)) {
578 p_dev->manf_id = manf_id.manf;
579 p_dev->card_id = manf_id.card;
580 p_dev->has_manf_id = 1;
581 p_dev->has_card_id = 1;
582 }
583
584 if (!pccard_read_tuple(p_dev->socket, p_dev->func,
585 CISTPL_FUNCID, &func_id)) {
586 p_dev->func_id = func_id.func;
587 p_dev->has_func_id = 1;
588 } else {
589 /* rule of thumb: cards with no FUNCID, but with
590 * common memory device geometry information, are
591 * probably memory cards (from pcmcia-cs) */
76fa82fb
IM
592 cistpl_device_geo_t *devgeo;
593
594 devgeo = kmalloc(sizeof(*devgeo), GFP_KERNEL);
595 if (!devgeo) {
596 kfree(vers1);
597 return -ENOMEM;
598 }
1da177e4 599 if (!pccard_read_tuple(p_dev->socket, p_dev->func,
76fa82fb 600 CISTPL_DEVICE_GEO, devgeo)) {
1da177e4
LT
601 ds_dbg(0, "mem device geometry probably means "
602 "FUNCID_MEMORY\n");
603 p_dev->func_id = CISTPL_FUNCID_MEMORY;
604 p_dev->has_func_id = 1;
605 }
76fa82fb 606 kfree(devgeo);
1da177e4
LT
607 }
608
609 if (!pccard_read_tuple(p_dev->socket, p_dev->func, CISTPL_VERS_1,
76fa82fb
IM
610 vers1)) {
611 for (i=0; i < vers1->ns; i++) {
1da177e4
LT
612 char *tmp;
613 unsigned int length;
614
76fa82fb 615 tmp = vers1->str + vers1->ofs[i];
1da177e4
LT
616
617 length = strlen(tmp) + 1;
6e3d4f25 618 if ((length < 2) || (length > 255))
1da177e4
LT
619 continue;
620
621 p_dev->prod_id[i] = kmalloc(sizeof(char) * length,
622 GFP_KERNEL);
623 if (!p_dev->prod_id[i])
624 continue;
625
626 p_dev->prod_id[i] = strncpy(p_dev->prod_id[i],
627 tmp, length);
628 }
629 }
630
76fa82fb 631 kfree(vers1);
1da177e4
LT
632 return 0;
633}
634
635
636/* device_add_lock is needed to avoid double registration by cardmgr and kernel.
637 * Serializes pcmcia_device_add; will most likely be removed in future.
638 *
639 * While it has the caveat that adding new PCMCIA devices inside(!) device_register()
640 * won't work, this doesn't matter much at the moment: the driver core doesn't
641 * support it either.
642 */
7fe908dd 643static DEFINE_MUTEX(device_add_lock);
1da177e4 644
dc109497 645struct pcmcia_device * pcmcia_device_add(struct pcmcia_socket *s, unsigned int function)
1da177e4 646{
360b65b9 647 struct pcmcia_device *p_dev, *tmp_dev;
1da177e4 648 unsigned long flags;
bd65a685 649 int bus_id_len;
1da177e4 650
dc109497 651 s = pcmcia_get_socket(s);
1da177e4
LT
652 if (!s)
653 return NULL;
654
7fe908dd 655 mutex_lock(&device_add_lock);
1da177e4 656
d9d9ea01
DB
657 ds_dbg(3, "adding device to %d, function %d\n", s->sock, function);
658
6cf5be51
DB
659 /* max of 4 devices per card */
660 if (s->device_count == 4)
1ad275e3
DB
661 goto err_put;
662
8084b372 663 p_dev = kzalloc(sizeof(struct pcmcia_device), GFP_KERNEL);
1da177e4
LT
664 if (!p_dev)
665 goto err_put;
1da177e4 666
dc109497 667 p_dev->socket = s;
1da177e4
LT
668 p_dev->device_no = (s->device_count++);
669 p_dev->func = function;
670
671 p_dev->dev.bus = &pcmcia_bus_type;
87373318 672 p_dev->dev.parent = s->dev.parent;
1da177e4 673 p_dev->dev.release = pcmcia_release_dev;
43d9f7fd
JB
674 /* by default don't allow DMA */
675 p_dev->dma_mask = DMA_MASK_NONE;
676 p_dev->dev.dma_mask = &p_dev->dma_mask;
bd65a685
BG
677 bus_id_len = sprintf (p_dev->dev.bus_id, "%d.%d", p_dev->socket->sock, p_dev->device_no);
678
679 p_dev->devname = kmalloc(6 + bus_id_len + 1, GFP_KERNEL);
680 if (!p_dev->devname)
681 goto err_free;
682 sprintf (p_dev->devname, "pcmcia%s", p_dev->dev.bus_id);
d9d9ea01 683 ds_dbg(3, "devname is %s\n", p_dev->devname);
1da177e4 684
1da177e4 685 spin_lock_irqsave(&pcmcia_dev_list_lock, flags);
360b65b9
DB
686
687 /*
688 * p_dev->function_config must be the same for all card functions.
689 * Note that this is serialized by the device_add_lock, so that
690 * only one such struct will be created.
691 */
692 list_for_each_entry(tmp_dev, &s->devices_list, socket_device_list)
693 if (p_dev->func == tmp_dev->func) {
694 p_dev->function_config = tmp_dev->function_config;
695 kref_get(&p_dev->function_config->ref);
696 }
697
698 /* Add to the list in pcmcia_bus_socket */
6171b88b 699 list_add(&p_dev->socket_device_list, &s->devices_list);
360b65b9 700
1da177e4
LT
701 spin_unlock_irqrestore(&pcmcia_dev_list_lock, flags);
702
360b65b9 703 if (!p_dev->function_config) {
d9d9ea01 704 ds_dbg(3, "creating config_t for %s\n", p_dev->dev.bus_id);
360b65b9
DB
705 p_dev->function_config = kzalloc(sizeof(struct config_t),
706 GFP_KERNEL);
707 if (!p_dev->function_config)
708 goto err_unreg;
709 kref_init(&p_dev->function_config->ref);
710 }
711
807277cb
DB
712 printk(KERN_NOTICE "pcmcia: registering new device %s\n",
713 p_dev->devname);
714
1ad275e3
DB
715 pcmcia_device_query(p_dev);
716
360b65b9
DB
717 if (device_register(&p_dev->dev))
718 goto err_unreg;
1da177e4 719
7fe908dd 720 mutex_unlock(&device_add_lock);
1da177e4
LT
721
722 return p_dev;
723
360b65b9
DB
724 err_unreg:
725 spin_lock_irqsave(&pcmcia_dev_list_lock, flags);
726 list_del(&p_dev->socket_device_list);
727 spin_unlock_irqrestore(&pcmcia_dev_list_lock, flags);
728
1da177e4 729 err_free:
bd65a685 730 kfree(p_dev->devname);
1da177e4
LT
731 kfree(p_dev);
732 s->device_count--;
733 err_put:
7fe908dd 734 mutex_unlock(&device_add_lock);
dc109497 735 pcmcia_put_socket(s);
1da177e4
LT
736
737 return NULL;
738}
739
740
741static int pcmcia_card_add(struct pcmcia_socket *s)
742{
1da177e4 743 cistpl_longlink_mfc_t mfc;
c5081d5f 744 unsigned int no_funcs, i, no_chains;
1da177e4
LT
745 int ret = 0;
746
d9d9ea01
DB
747 if (!(s->resource_setup_done)) {
748 ds_dbg(3, "no resources available, delaying card_add\n");
1da177e4 749 return -EAGAIN; /* try again, but later... */
d9d9ea01 750 }
1da177e4 751
d9d9ea01
DB
752 if (pcmcia_validate_mem(s)) {
753 ds_dbg(3, "validating mem resources failed, "
754 "delaying card_add\n");
de75914e 755 return -EAGAIN; /* try again, but later... */
d9d9ea01 756 }
de75914e 757
c5081d5f
DB
758 ret = pccard_validate_cis(s, BIND_FN_ALL, &no_chains);
759 if (ret || !no_chains) {
1da177e4
LT
760 ds_dbg(0, "invalid CIS or invalid resources\n");
761 return -ENODEV;
762 }
763
764 if (!pccard_read_tuple(s, BIND_FN_ALL, CISTPL_LONGLINK_MFC, &mfc))
765 no_funcs = mfc.nfn;
766 else
767 no_funcs = 1;
1d2c9042 768 s->functions = no_funcs;
1da177e4 769
1da177e4 770 for (i=0; i < no_funcs; i++)
dc109497 771 pcmcia_device_add(s, i);
1da177e4
LT
772
773 return (ret);
774}
775
776
4796b71f 777static void pcmcia_delayed_add_device(struct work_struct *work)
1ad275e3 778{
c4028958
DH
779 struct pcmcia_socket *s =
780 container_of(work, struct pcmcia_socket, device_add);
d9d9ea01 781 ds_dbg(1, "adding additional device to %d\n", s->sock);
1d2c9042 782 pcmcia_device_add(s, s->pcmcia_state.mfc_pfc);
b5e43913 783 s->pcmcia_state.device_add_pending = 0;
1d2c9042 784 s->pcmcia_state.mfc_pfc = 0;
1ad275e3
DB
785}
786
e2f0b534 787static int pcmcia_requery(struct device *dev, void * _data)
ff1fa9ef 788{
e2f0b534 789 struct pcmcia_device *p_dev = to_pcmcia_dev(dev);
d9d9ea01
DB
790 if (!p_dev->dev.driver) {
791 ds_dbg(1, "update device information for %s\n",
792 p_dev->dev.bus_id);
e2f0b534 793 pcmcia_device_query(p_dev);
d9d9ea01 794 }
e2f0b534
DB
795
796 return 0;
797}
798
4ae1cbf1 799static void pcmcia_bus_rescan(struct pcmcia_socket *skt, int new_cis)
e2f0b534 800{
4ae1cbf1 801 int no_devices = 0;
f901b8c4 802 int ret = 0;
e2f0b534
DB
803 unsigned long flags;
804
7fe908dd 805 /* must be called with skt_mutex held */
d9d9ea01
DB
806 ds_dbg(0, "re-scanning socket %d\n", skt->sock);
807
e2f0b534 808 spin_lock_irqsave(&pcmcia_dev_list_lock, flags);
dc109497 809 if (list_empty(&skt->devices_list))
4ae1cbf1 810 no_devices = 1;
e2f0b534
DB
811 spin_unlock_irqrestore(&pcmcia_dev_list_lock, flags);
812
4ae1cbf1
DB
813 /* If this is because of a CIS override, start over */
814 if (new_cis && !no_devices)
815 pcmcia_card_remove(skt, NULL);
816
e2f0b534
DB
817 /* if no devices were added for this socket yet because of
818 * missing resource information or other trouble, we need to
819 * do this now. */
4ae1cbf1 820 if (no_devices || new_cis) {
f901b8c4 821 ret = pcmcia_card_add(skt);
e2f0b534
DB
822 if (ret)
823 return;
824 }
825
826 /* some device information might have changed because of a CIS
827 * update or because we can finally read it correctly... so
828 * determine it again, overwriting old values if necessary. */
829 bus_for_each_dev(&pcmcia_bus_type, NULL, NULL, pcmcia_requery);
830
831 /* we re-scan all devices, not just the ones connected to this
832 * socket. This does not matter, though. */
f901b8c4
DB
833 ret = bus_rescan_devices(&pcmcia_bus_type);
834 if (ret)
835 printk(KERN_INFO "pcmcia: bus_rescan_devices failed\n");
ff1fa9ef 836}
1ad275e3 837
1d2c9042
DB
838#ifdef CONFIG_PCMCIA_LOAD_CIS
839
840/**
841 * pcmcia_load_firmware - load CIS from userspace if device-provided is broken
78187865
RD
842 * @dev: the pcmcia device which needs a CIS override
843 * @filename: requested filename in /lib/firmware/
1d2c9042
DB
844 *
845 * This uses the in-kernel firmware loading mechanism to use a "fake CIS" if
846 * the one provided by the card is broken. The firmware files reside in
847 * /lib/firmware/ in userspace.
848 */
849static int pcmcia_load_firmware(struct pcmcia_device *dev, char * filename)
850{
851 struct pcmcia_socket *s = dev->socket;
852 const struct firmware *fw;
feda4f2c 853 char path[FIRMWARE_NAME_MAX];
1d2c9042
DB
854 int ret = -ENOMEM;
855 int no_funcs;
856 int old_funcs;
857 cisdump_t *cis;
858 cistpl_longlink_mfc_t mfc;
859
860 if (!filename)
861 return -EINVAL;
862
d9d9ea01 863 ds_dbg(1, "trying to load CIS file %s\n", filename);
1d2c9042 864
feda4f2c 865 if (strlen(filename) > (FIRMWARE_NAME_MAX - 1)) {
52debb06
RD
866 printk(KERN_WARNING "pcmcia: CIS filename is too long [%s]\n",
867 filename);
1d2c9042 868 return -EINVAL;
d9d9ea01 869 }
1d2c9042 870
52debb06 871 snprintf(path, sizeof(path), "%s", filename);
1d2c9042
DB
872
873 if (request_firmware(&fw, path, &dev->dev) == 0) {
d9d9ea01
DB
874 if (fw->size >= CISTPL_MAX_CIS_SIZE) {
875 ret = -EINVAL;
876 printk(KERN_ERR "pcmcia: CIS override is too big\n");
1d2c9042 877 goto release;
d9d9ea01 878 }
1d2c9042
DB
879
880 cis = kzalloc(sizeof(cisdump_t), GFP_KERNEL);
d9d9ea01
DB
881 if (!cis) {
882 ret = -ENOMEM;
1d2c9042 883 goto release;
d9d9ea01 884 }
1d2c9042
DB
885
886 cis->Length = fw->size + 1;
887 memcpy(cis->Data, fw->data, fw->size);
888
889 if (!pcmcia_replace_cis(s, cis))
890 ret = 0;
d9d9ea01
DB
891 else {
892 printk(KERN_ERR "pcmcia: CIS override failed\n");
893 goto release;
894 }
895
1d2c9042
DB
896
897 /* update information */
898 pcmcia_device_query(dev);
899
900 /* does this cis override add or remove functions? */
901 old_funcs = s->functions;
902
903 if (!pccard_read_tuple(s, BIND_FN_ALL, CISTPL_LONGLINK_MFC, &mfc))
904 no_funcs = mfc.nfn;
905 else
906 no_funcs = 1;
907 s->functions = no_funcs;
908
909 if (old_funcs > no_funcs)
910 pcmcia_card_remove(s, dev);
911 else if (no_funcs > old_funcs)
912 pcmcia_add_device_later(s, 1);
913 }
914 release:
915 release_firmware(fw);
916
917 return (ret);
918}
919
920#else /* !CONFIG_PCMCIA_LOAD_CIS */
921
922static inline int pcmcia_load_firmware(struct pcmcia_device *dev, char * filename)
923{
924 return -ENODEV;
925}
926
927#endif
928
929
1ad275e3
DB
930static inline int pcmcia_devmatch(struct pcmcia_device *dev,
931 struct pcmcia_device_id *did)
932{
933 if (did->match_flags & PCMCIA_DEV_ID_MATCH_MANF_ID) {
934 if ((!dev->has_manf_id) || (dev->manf_id != did->manf_id))
935 return 0;
936 }
937
938 if (did->match_flags & PCMCIA_DEV_ID_MATCH_CARD_ID) {
939 if ((!dev->has_card_id) || (dev->card_id != did->card_id))
940 return 0;
941 }
942
943 if (did->match_flags & PCMCIA_DEV_ID_MATCH_FUNCTION) {
944 if (dev->func != did->function)
945 return 0;
946 }
947
948 if (did->match_flags & PCMCIA_DEV_ID_MATCH_PROD_ID1) {
949 if (!dev->prod_id[0])
950 return 0;
951 if (strcmp(did->prod_id[0], dev->prod_id[0]))
952 return 0;
953 }
954
955 if (did->match_flags & PCMCIA_DEV_ID_MATCH_PROD_ID2) {
956 if (!dev->prod_id[1])
957 return 0;
958 if (strcmp(did->prod_id[1], dev->prod_id[1]))
959 return 0;
960 }
961
962 if (did->match_flags & PCMCIA_DEV_ID_MATCH_PROD_ID3) {
963 if (!dev->prod_id[2])
964 return 0;
965 if (strcmp(did->prod_id[2], dev->prod_id[2]))
966 return 0;
967 }
968
969 if (did->match_flags & PCMCIA_DEV_ID_MATCH_PROD_ID4) {
970 if (!dev->prod_id[3])
971 return 0;
972 if (strcmp(did->prod_id[3], dev->prod_id[3]))
973 return 0;
974 }
975
976 if (did->match_flags & PCMCIA_DEV_ID_MATCH_DEVICE_NO) {
1ad275e3
DB
977 if (dev->device_no != did->device_no)
978 return 0;
979 }
980
981 if (did->match_flags & PCMCIA_DEV_ID_MATCH_FUNC_ID) {
982 if ((!dev->has_func_id) || (dev->func_id != did->func_id))
983 return 0;
984
985 /* if this is a pseudo-multi-function device,
986 * we need explicit matches */
987 if (did->match_flags & PCMCIA_DEV_ID_MATCH_DEVICE_NO)
988 return 0;
989 if (dev->device_no)
990 return 0;
991
992 /* also, FUNC_ID matching needs to be activated by userspace
993 * after it has re-checked that there is no possible module
994 * with a prod_id/manf_id/card_id match.
995 */
d9d9ea01
DB
996 ds_dbg(0, "skipping FUNC_ID match for %s until userspace "
997 "interaction\n", dev->dev.bus_id);
1ad275e3
DB
998 if (!dev->allow_func_id_match)
999 return 0;
1000 }
1001
ea7b3882 1002 if (did->match_flags & PCMCIA_DEV_ID_MATCH_FAKE_CIS) {
d9d9ea01 1003 ds_dbg(0, "device %s needs a fake CIS\n", dev->dev.bus_id);
daa9517d
DB
1004 if (!dev->socket->fake_cis)
1005 pcmcia_load_firmware(dev, did->cisfile);
1006
1007 if (!dev->socket->fake_cis)
ea7b3882 1008 return 0;
ea7b3882
DB
1009 }
1010
f602ff7e
DB
1011 if (did->match_flags & PCMCIA_DEV_ID_MATCH_ANONYMOUS) {
1012 int i;
1013 for (i=0; i<4; i++)
1014 if (dev->prod_id[i])
1015 return 0;
1016 if (dev->has_manf_id || dev->has_card_id || dev->has_func_id)
1017 return 0;
1018 }
1019
1ad275e3
DB
1020 dev->dev.driver_data = (void *) did;
1021
1022 return 1;
1023}
1024
1025
1da177e4
LT
1026static int pcmcia_bus_match(struct device * dev, struct device_driver * drv) {
1027 struct pcmcia_device * p_dev = to_pcmcia_dev(dev);
1028 struct pcmcia_driver * p_drv = to_pcmcia_drv(drv);
1ad275e3 1029 struct pcmcia_device_id *did = p_drv->id_table;
6179b556
BW
1030 struct pcmcia_dynid *dynid;
1031
1032 /* match dynamic devices first */
1033 spin_lock(&p_drv->dynids.lock);
1034 list_for_each_entry(dynid, &p_drv->dynids.list, node) {
1035 ds_dbg(3, "trying to match %s to %s\n", dev->bus_id,
1036 drv->name);
1037 if (pcmcia_devmatch(p_dev, &dynid->id)) {
1038 ds_dbg(0, "matched %s to %s\n", dev->bus_id,
1039 drv->name);
1040 spin_unlock(&p_drv->dynids.lock);
1041 return 1;
1042 }
1043 }
1044 spin_unlock(&p_drv->dynids.lock);
1da177e4 1045
0e0fad8f 1046#ifdef CONFIG_PCMCIA_IOCTL
1da177e4 1047 /* matching by cardmgr */
d9d9ea01
DB
1048 if (p_dev->cardmgr == p_drv) {
1049 ds_dbg(0, "cardmgr matched %s to %s\n", dev->bus_id,
1050 drv->name);
1da177e4 1051 return 1;
d9d9ea01 1052 }
0e0fad8f 1053#endif
1da177e4 1054
1ad275e3 1055 while (did && did->match_flags) {
d9d9ea01
DB
1056 ds_dbg(3, "trying to match %s to %s\n", dev->bus_id,
1057 drv->name);
1058 if (pcmcia_devmatch(p_dev, did)) {
1059 ds_dbg(0, "matched %s to %s\n", dev->bus_id,
1060 drv->name);
1ad275e3 1061 return 1;
d9d9ea01 1062 }
1ad275e3
DB
1063 did++;
1064 }
1065
1da177e4
LT
1066 return 0;
1067}
1068
840c2ac5
DB
1069#ifdef CONFIG_HOTPLUG
1070
7eff2e7a 1071static int pcmcia_bus_uevent(struct device *dev, struct kobj_uevent_env *env)
840c2ac5
DB
1072{
1073 struct pcmcia_device *p_dev;
7eff2e7a 1074 int i;
840c2ac5
DB
1075 u32 hash[4] = { 0, 0, 0, 0};
1076
1077 if (!dev)
1078 return -ENODEV;
1079
1080 p_dev = to_pcmcia_dev(dev);
1081
1082 /* calculate hashes */
1083 for (i=0; i<4; i++) {
1084 if (!p_dev->prod_id[i])
1085 continue;
1086 hash[i] = crc32(0, p_dev->prod_id[i], strlen(p_dev->prod_id[i]));
1087 }
1088
7eff2e7a 1089 if (add_uevent_var(env, "SOCKET_NO=%u", p_dev->socket->sock))
840c2ac5
DB
1090 return -ENOMEM;
1091
7eff2e7a 1092 if (add_uevent_var(env, "DEVICE_NO=%02X", p_dev->device_no))
840c2ac5
DB
1093 return -ENOMEM;
1094
7eff2e7a 1095 if (add_uevent_var(env, "MODALIAS=pcmcia:m%04Xc%04Xf%02Xfn%02Xpfn%02X"
312c004d
KS
1096 "pa%08Xpb%08Xpc%08Xpd%08X",
1097 p_dev->has_manf_id ? p_dev->manf_id : 0,
1098 p_dev->has_card_id ? p_dev->card_id : 0,
1099 p_dev->has_func_id ? p_dev->func_id : 0,
1100 p_dev->func,
1101 p_dev->device_no,
1102 hash[0],
1103 hash[1],
1104 hash[2],
1105 hash[3]))
840c2ac5
DB
1106 return -ENOMEM;
1107
840c2ac5
DB
1108 return 0;
1109}
1110
1111#else
1112
7eff2e7a 1113static int pcmcia_bus_uevent(struct device *dev, struct kobj_uevent_env *env)
840c2ac5
DB
1114{
1115 return -ENODEV;
1116}
1117
1118#endif
1119
3f8df781
AS
1120/************************ runtime PM support ***************************/
1121
1122static int pcmcia_dev_suspend(struct device *dev, pm_message_t state);
1123static int pcmcia_dev_resume(struct device *dev);
1124
1125static int runtime_suspend(struct device *dev)
1126{
1127 int rc;
1128
1129 down(&dev->sem);
1130 rc = pcmcia_dev_suspend(dev, PMSG_SUSPEND);
1131 up(&dev->sem);
3f8df781
AS
1132 return rc;
1133}
1134
1135static void runtime_resume(struct device *dev)
1136{
1137 int rc;
1138
1139 down(&dev->sem);
1140 rc = pcmcia_dev_resume(dev);
1141 up(&dev->sem);
3f8df781
AS
1142}
1143
1da177e4
LT
1144/************************ per-device sysfs output ***************************/
1145
1146#define pcmcia_device_attr(field, test, format) \
e404e274 1147static ssize_t field##_show (struct device *dev, struct device_attribute *attr, char *buf) \
1da177e4
LT
1148{ \
1149 struct pcmcia_device *p_dev = to_pcmcia_dev(dev); \
1150 return p_dev->test ? sprintf (buf, format, p_dev->field) : -ENODEV; \
1151}
1152
1153#define pcmcia_device_stringattr(name, field) \
e404e274 1154static ssize_t name##_show (struct device *dev, struct device_attribute *attr, char *buf) \
1da177e4
LT
1155{ \
1156 struct pcmcia_device *p_dev = to_pcmcia_dev(dev); \
1157 return p_dev->field ? sprintf (buf, "%s\n", p_dev->field) : -ENODEV; \
1158}
1159
1160pcmcia_device_attr(func, socket, "0x%02x\n");
1161pcmcia_device_attr(func_id, has_func_id, "0x%02x\n");
1162pcmcia_device_attr(manf_id, has_manf_id, "0x%04x\n");
1163pcmcia_device_attr(card_id, has_card_id, "0x%04x\n");
1164pcmcia_device_stringattr(prod_id1, prod_id[0]);
1165pcmcia_device_stringattr(prod_id2, prod_id[1]);
1166pcmcia_device_stringattr(prod_id3, prod_id[2]);
1167pcmcia_device_stringattr(prod_id4, prod_id[3]);
1168
db1019ca
DB
1169
1170static ssize_t pcmcia_show_pm_state(struct device *dev, struct device_attribute *attr, char *buf)
1171{
1172 struct pcmcia_device *p_dev = to_pcmcia_dev(dev);
1173
f6fbe01a 1174 if (p_dev->suspended)
db1019ca
DB
1175 return sprintf(buf, "off\n");
1176 else
1177 return sprintf(buf, "on\n");
1178}
1179
1180static ssize_t pcmcia_store_pm_state(struct device *dev, struct device_attribute *attr,
1181 const char *buf, size_t count)
1182{
1183 struct pcmcia_device *p_dev = to_pcmcia_dev(dev);
1184 int ret = 0;
1185
1186 if (!count)
1187 return -EINVAL;
1188
f6fbe01a 1189 if ((!p_dev->suspended) && !strncmp(buf, "off", 3))
3f8df781 1190 ret = runtime_suspend(dev);
f6fbe01a 1191 else if (p_dev->suspended && !strncmp(buf, "on", 2))
3f8df781 1192 runtime_resume(dev);
db1019ca
DB
1193
1194 return ret ? ret : count;
1195}
1196
1197
3704511b 1198static ssize_t modalias_show(struct device *dev, struct device_attribute *attr, char *buf)
3248ff43
DB
1199{
1200 struct pcmcia_device *p_dev = to_pcmcia_dev(dev);
1201 int i;
1202 u32 hash[4] = { 0, 0, 0, 0};
1203
1204 /* calculate hashes */
1205 for (i=0; i<4; i++) {
1206 if (!p_dev->prod_id[i])
1207 continue;
1208 hash[i] = crc32(0,p_dev->prod_id[i],strlen(p_dev->prod_id[i]));
1209 }
1210 return sprintf(buf, "pcmcia:m%04Xc%04Xf%02Xfn%02Xpfn%02X"
1211 "pa%08Xpb%08Xpc%08Xpd%08X\n",
1212 p_dev->has_manf_id ? p_dev->manf_id : 0,
1213 p_dev->has_card_id ? p_dev->card_id : 0,
1214 p_dev->has_func_id ? p_dev->func_id : 0,
1215 p_dev->func, p_dev->device_no,
1216 hash[0], hash[1], hash[2], hash[3]);
1217}
a5b55778 1218
3248ff43
DB
1219static ssize_t pcmcia_store_allow_func_id_match(struct device *dev,
1220 struct device_attribute *attr, const char *buf, size_t count)
a5b55778
DB
1221{
1222 struct pcmcia_device *p_dev = to_pcmcia_dev(dev);
f901b8c4 1223 int ret;
db1019ca
DB
1224
1225 if (!count)
1226 return -EINVAL;
a5b55778 1227
7fe908dd 1228 mutex_lock(&p_dev->socket->skt_mutex);
a5b55778 1229 p_dev->allow_func_id_match = 1;
7fe908dd 1230 mutex_unlock(&p_dev->socket->skt_mutex);
a5b55778 1231
f901b8c4
DB
1232 ret = bus_rescan_devices(&pcmcia_bus_type);
1233 if (ret)
1234 printk(KERN_INFO "pcmcia: bus_rescan_devices failed after "
1235 "allowing func_id matches\n");
a5b55778
DB
1236
1237 return count;
1238}
1239
1da177e4
LT
1240static struct device_attribute pcmcia_dev_attrs[] = {
1241 __ATTR(function, 0444, func_show, NULL),
db1019ca 1242 __ATTR(pm_state, 0644, pcmcia_show_pm_state, pcmcia_store_pm_state),
1da177e4
LT
1243 __ATTR_RO(func_id),
1244 __ATTR_RO(manf_id),
1245 __ATTR_RO(card_id),
1246 __ATTR_RO(prod_id1),
1247 __ATTR_RO(prod_id2),
1248 __ATTR_RO(prod_id3),
1249 __ATTR_RO(prod_id4),
3248ff43 1250 __ATTR_RO(modalias),
a5b55778 1251 __ATTR(allow_func_id_match, 0200, NULL, pcmcia_store_allow_func_id_match),
1da177e4
LT
1252 __ATTR_NULL,
1253};
1254
8e9e793d
DB
1255/* PM support, also needed for reset */
1256
1257static int pcmcia_dev_suspend(struct device * dev, pm_message_t state)
1258{
1259 struct pcmcia_device *p_dev = to_pcmcia_dev(dev);
1260 struct pcmcia_driver *p_drv = NULL;
f6fbe01a 1261 int ret = 0;
8e9e793d 1262
d6b4fa6d
DB
1263 if (p_dev->suspended)
1264 return 0;
1265
d9d9ea01
DB
1266 ds_dbg(2, "suspending %s\n", dev->bus_id);
1267
8e9e793d
DB
1268 if (dev->driver)
1269 p_drv = to_pcmcia_drv(dev->driver);
1270
e2d40963
DB
1271 if (!p_drv)
1272 goto out;
1273
1274 if (p_drv->suspend) {
8661bb5b 1275 ret = p_drv->suspend(p_dev);
d9d9ea01
DB
1276 if (ret) {
1277 printk(KERN_ERR "pcmcia: device %s (driver %s) did "
1278 "not want to go to sleep (%d)\n",
1279 p_dev->devname, p_drv->drv.name, ret);
f6fbe01a 1280 goto out;
d9d9ea01 1281 }
8661bb5b 1282 }
8e9e793d 1283
d9d9ea01
DB
1284 if (p_dev->device_no == p_dev->func) {
1285 ds_dbg(2, "releasing configuration for %s\n", dev->bus_id);
e2d40963 1286 pcmcia_release_configuration(p_dev);
d9d9ea01 1287 }
e2d40963 1288
f6fbe01a
DB
1289 out:
1290 if (!ret)
1291 p_dev->suspended = 1;
1292 return ret;
8e9e793d
DB
1293}
1294
1295
1296static int pcmcia_dev_resume(struct device * dev)
1297{
1298 struct pcmcia_device *p_dev = to_pcmcia_dev(dev);
1299 struct pcmcia_driver *p_drv = NULL;
f6fbe01a 1300 int ret = 0;
8e9e793d 1301
d6b4fa6d
DB
1302 if (!p_dev->suspended)
1303 return 0;
1304
d9d9ea01
DB
1305 ds_dbg(2, "resuming %s\n", dev->bus_id);
1306
8e9e793d
DB
1307 if (dev->driver)
1308 p_drv = to_pcmcia_drv(dev->driver);
1309
e2d40963
DB
1310 if (!p_drv)
1311 goto out;
1312
1313 if (p_dev->device_no == p_dev->func) {
d9d9ea01 1314 ds_dbg(2, "requesting configuration for %s\n", dev->bus_id);
e2d40963
DB
1315 ret = pcmcia_request_configuration(p_dev, &p_dev->conf);
1316 if (ret)
1317 goto out;
8661bb5b 1318 }
8e9e793d 1319
e2d40963
DB
1320 if (p_drv->resume)
1321 ret = p_drv->resume(p_dev);
1322
f6fbe01a
DB
1323 out:
1324 if (!ret)
1325 p_dev->suspended = 0;
1326 return ret;
8e9e793d
DB
1327}
1328
1329
1330static int pcmcia_bus_suspend_callback(struct device *dev, void * _data)
1331{
1332 struct pcmcia_socket *skt = _data;
1333 struct pcmcia_device *p_dev = to_pcmcia_dev(dev);
1334
3f8df781 1335 if (p_dev->socket != skt || p_dev->suspended)
8e9e793d
DB
1336 return 0;
1337
3f8df781 1338 return runtime_suspend(dev);
8e9e793d
DB
1339}
1340
1341static int pcmcia_bus_resume_callback(struct device *dev, void * _data)
1342{
1343 struct pcmcia_socket *skt = _data;
1344 struct pcmcia_device *p_dev = to_pcmcia_dev(dev);
1345
3f8df781 1346 if (p_dev->socket != skt || !p_dev->suspended)
8e9e793d
DB
1347 return 0;
1348
3f8df781 1349 runtime_resume(dev);
8e9e793d
DB
1350
1351 return 0;
1352}
1353
1354static int pcmcia_bus_resume(struct pcmcia_socket *skt)
1355{
d9d9ea01 1356 ds_dbg(2, "resuming socket %d\n", skt->sock);
8e9e793d
DB
1357 bus_for_each_dev(&pcmcia_bus_type, NULL, skt, pcmcia_bus_resume_callback);
1358 return 0;
1359}
1360
1361static int pcmcia_bus_suspend(struct pcmcia_socket *skt)
1362{
d9d9ea01 1363 ds_dbg(2, "suspending socket %d\n", skt->sock);
8e9e793d
DB
1364 if (bus_for_each_dev(&pcmcia_bus_type, NULL, skt,
1365 pcmcia_bus_suspend_callback)) {
1366 pcmcia_bus_resume(skt);
1367 return -EIO;
1368 }
1369 return 0;
1370}
1371
1da177e4 1372
1da177e4
LT
1373/*======================================================================
1374
1375 The card status event handler.
1376
1377======================================================================*/
1378
1da177e4
LT
1379/* Normally, the event is passed to individual drivers after
1380 * informing userspace. Only for CS_EVENT_CARD_REMOVAL this
1381 * is inversed to maintain historic compatibility.
1382 */
1383
1384static int ds_event(struct pcmcia_socket *skt, event_t event, int priority)
1385{
dc109497 1386 struct pcmcia_socket *s = pcmcia_get_socket(skt);
1da177e4 1387
1617406a
FM
1388 if (!s) {
1389 printk(KERN_ERR "PCMCIA obtaining reference to socket %p " \
1390 "failed, event 0x%x lost!\n", skt, event);
1391 return -ENODEV;
1392 }
1393
1da177e4 1394 ds_dbg(1, "ds_event(0x%06x, %d, 0x%p)\n",
dc109497 1395 event, priority, skt);
1da177e4 1396
f8cfa618 1397 switch (event) {
1da177e4 1398 case CS_EVENT_CARD_REMOVAL:
b5e43913 1399 s->pcmcia_state.present = 0;
d6ff5a85 1400 pcmcia_card_remove(skt, NULL);
dc109497 1401 handle_event(skt, event);
1da177e4 1402 break;
f8cfa618 1403
1da177e4 1404 case CS_EVENT_CARD_INSERTION:
b5e43913 1405 s->pcmcia_state.present = 1;
1da177e4 1406 pcmcia_card_add(skt);
dc109497 1407 handle_event(skt, event);
1da177e4
LT
1408 break;
1409
1410 case CS_EVENT_EJECTION_REQUEST:
1da177e4
LT
1411 break;
1412
8e9e793d
DB
1413 case CS_EVENT_PM_SUSPEND:
1414 case CS_EVENT_PM_RESUME:
1415 case CS_EVENT_RESET_PHYSICAL:
1416 case CS_EVENT_CARD_RESET:
1da177e4 1417 default:
dc109497 1418 handle_event(skt, event);
1da177e4
LT
1419 break;
1420 }
1421
dc109497
DB
1422 pcmcia_put_socket(s);
1423
1da177e4
LT
1424 return 0;
1425} /* ds_event */
1426
1427
9940ec36
DB
1428struct pcmcia_device * pcmcia_dev_present(struct pcmcia_device *_p_dev)
1429{
1430 struct pcmcia_device *p_dev;
1431 struct pcmcia_device *ret = NULL;
1432
1433 p_dev = pcmcia_get_dev(_p_dev);
1434 if (!p_dev)
1435 return NULL;
1436
1437 if (!p_dev->socket->pcmcia_state.present)
1438 goto out;
1439
1440 if (p_dev->_removed)
1441 goto out;
1442
1443 if (p_dev->suspended)
1444 goto out;
1445
1446 ret = p_dev;
1447 out:
1448 pcmcia_put_dev(p_dev);
1449 return ret;
1450}
1451EXPORT_SYMBOL(pcmcia_dev_present);
1452
1453
90c6cdd1
DB
1454static struct pcmcia_callback pcmcia_bus_callback = {
1455 .owner = THIS_MODULE,
1456 .event = ds_event,
1457 .requery = pcmcia_bus_rescan,
8e9e793d
DB
1458 .suspend = pcmcia_bus_suspend,
1459 .resume = pcmcia_bus_resume,
90c6cdd1
DB
1460};
1461
87373318 1462static int __devinit pcmcia_bus_add_socket(struct device *dev,
d8539d81 1463 struct class_interface *class_intf)
1da177e4 1464{
87373318 1465 struct pcmcia_socket *socket = dev_get_drvdata(dev);
1da177e4
LT
1466 int ret;
1467
dc109497
DB
1468 socket = pcmcia_get_socket(socket);
1469 if (!socket) {
1da177e4 1470 printk(KERN_ERR "PCMCIA obtaining reference to socket %p failed\n", socket);
1da177e4
LT
1471 return -ENODEV;
1472 }
1473
1da177e4
LT
1474 /*
1475 * Ugly. But we want to wait for the socket threads to have started up.
1476 * We really should let the drivers themselves drive some of this..
1477 */
1478 msleep(250);
1479
e7a480d2 1480#ifdef CONFIG_PCMCIA_IOCTL
dc109497 1481 init_waitqueue_head(&socket->queue);
e7a480d2 1482#endif
dc109497 1483 INIT_LIST_HEAD(&socket->devices_list);
4796b71f 1484 INIT_WORK(&socket->device_add, pcmcia_delayed_add_device);
dc109497
DB
1485 memset(&socket->pcmcia_state, 0, sizeof(u8));
1486 socket->device_count = 0;
1da177e4 1487
90c6cdd1 1488 ret = pccard_register_pcmcia(socket, &pcmcia_bus_callback);
1da177e4
LT
1489 if (ret) {
1490 printk(KERN_ERR "PCMCIA registration PCCard core failed for socket %p\n", socket);
dc109497 1491 pcmcia_put_socket(socket);
1da177e4
LT
1492 return (ret);
1493 }
1494
1495 return 0;
1496}
1497
87373318 1498static void pcmcia_bus_remove_socket(struct device *dev,
d8539d81 1499 struct class_interface *class_intf)
1da177e4 1500{
87373318 1501 struct pcmcia_socket *socket = dev_get_drvdata(dev);
1da177e4 1502
dc109497 1503 if (!socket)
1da177e4
LT
1504 return;
1505
dc109497 1506 socket->pcmcia_state.dead = 1;
1da177e4
LT
1507 pccard_register_pcmcia(socket, NULL);
1508
dfbc9e9d 1509 /* unregister any unbound devices */
8e4d9dcb 1510 mutex_lock(&socket->skt_mutex);
dfbc9e9d 1511 pcmcia_card_remove(socket, NULL);
8e4d9dcb 1512 mutex_unlock(&socket->skt_mutex);
dfbc9e9d 1513
dc109497 1514 pcmcia_put_socket(socket);
1da177e4
LT
1515
1516 return;
1517}
1518
1519
1520/* the pcmcia_bus_interface is used to handle pcmcia socket devices */
ed49f5d0 1521static struct class_interface pcmcia_bus_interface __refdata = {
1da177e4 1522 .class = &pcmcia_socket_class,
87373318
GKH
1523 .add_dev = &pcmcia_bus_add_socket,
1524 .remove_dev = &pcmcia_bus_remove_socket,
1da177e4
LT
1525};
1526
1527
e7a480d2 1528struct bus_type pcmcia_bus_type = {
1da177e4 1529 .name = "pcmcia",
312c004d 1530 .uevent = pcmcia_bus_uevent,
1da177e4
LT
1531 .match = pcmcia_bus_match,
1532 .dev_attrs = pcmcia_dev_attrs,
1d0baa3a
RK
1533 .probe = pcmcia_device_probe,
1534 .remove = pcmcia_device_remove,
8e9e793d
DB
1535 .suspend = pcmcia_dev_suspend,
1536 .resume = pcmcia_dev_resume,
1da177e4 1537};
1da177e4
LT
1538
1539
1540static int __init init_pcmcia_bus(void)
1541{
ace7d477
RD
1542 int ret;
1543
1da177e4
LT
1544 spin_lock_init(&pcmcia_dev_list_lock);
1545
ace7d477
RD
1546 ret = bus_register(&pcmcia_bus_type);
1547 if (ret < 0) {
1548 printk(KERN_WARNING "pcmcia: bus_register error: %d\n", ret);
1549 return ret;
1550 }
1551 ret = class_interface_register(&pcmcia_bus_interface);
1552 if (ret < 0) {
1553 printk(KERN_WARNING
1554 "pcmcia: class_interface_register error: %d\n", ret);
1555 bus_unregister(&pcmcia_bus_type);
1556 return ret;
1557 }
1da177e4 1558
e7a480d2 1559 pcmcia_setup_ioctl();
1da177e4
LT
1560
1561 return 0;
1562}
1563fs_initcall(init_pcmcia_bus); /* one level after subsys_initcall so that
1564 * pcmcia_socket_class is already registered */
1565
1566
1567static void __exit exit_pcmcia_bus(void)
1568{
e7a480d2 1569 pcmcia_cleanup_ioctl();
1da177e4 1570
e7a480d2 1571 class_interface_unregister(&pcmcia_bus_interface);
1da177e4
LT
1572
1573 bus_unregister(&pcmcia_bus_type);
1574}
1575module_exit(exit_pcmcia_bus);
1576
1577
1da177e4 1578MODULE_ALIAS("ds");