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