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