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