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