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