ds.c 34.8 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11 12
/*
 * ds.c -- 16-bit PCMCIA core support
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 *
 * The initial developer of the original code is David A. Hinds
 * <dahinds@users.sourceforge.net>.  Portions created by David A. Hinds
 * are Copyright (C) 1999 David A. Hinds.  All Rights Reserved.
 *
 * (C) 1999		David A. Hinds
13
 * (C) 2003 - 2006	Dominik Brodowski
L
Linus Torvalds 已提交
14 15
 */

16
#include <linux/kernel.h>
L
Linus Torvalds 已提交
17 18 19 20 21 22
#include <linux/module.h>
#include <linux/init.h>
#include <linux/errno.h>
#include <linux/list.h>
#include <linux/delay.h>
#include <linux/workqueue.h>
23
#include <linux/crc32.h>
24
#include <linux/firmware.h>
25
#include <linux/kref.h>
26
#include <linux/dma-mapping.h>
L
Linus Torvalds 已提交
27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46

#include <pcmcia/cs_types.h>
#include <pcmcia/cs.h>
#include <pcmcia/cistpl.h>
#include <pcmcia/ds.h>
#include <pcmcia/ss.h>

#include "cs_internal.h"

/*====================================================================*/

/* Module parameters */

MODULE_AUTHOR("David Hinds <dahinds@users.sourceforge.net>");
MODULE_DESCRIPTION("PCMCIA Driver Services");
MODULE_LICENSE("GPL");


/*====================================================================*/

47 48 49 50 51 52
static void pcmcia_check_driver(struct pcmcia_driver *p_drv)
{
	struct pcmcia_device_id *did = p_drv->id_table;
	unsigned int i;
	u32 hash;

53
	if (!p_drv->probe || !p_drv->remove)
P
Pavel Roskin 已提交
54 55
		printk(KERN_DEBUG "pcmcia: %s lacks a requisite callback "
		       "function\n", p_drv->drv.name);
56

57
	while (did && did->match_flags) {
D
Dominik Brodowski 已提交
58
		for (i = 0; i < 4; i++) {
59 60 61 62 63 64 65 66 67 68 69
			if (!did->prod_id[i])
				continue;

			hash = crc32(0, did->prod_id[i], strlen(did->prod_id[i]));
			if (hash == did->prod_id_hash[i])
				continue;

			printk(KERN_DEBUG "pcmcia: %s: invalid hash for "
			       "product string \"%s\": is 0x%x, should "
			       "be 0x%x\n", p_drv->drv.name, did->prod_id[i],
			       did->prod_id_hash[i], hash);
70 71 72
			printk(KERN_DEBUG "pcmcia: see "
				"Documentation/pcmcia/devicetable.txt for "
				"details\n");
73 74 75 76 77 78 79
		}
		did++;
	}

	return;
}

80

L
Linus Torvalds 已提交
81 82 83
/*======================================================================*/


B
Bernhard Walle 已提交
84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105
struct pcmcia_dynid {
	struct list_head 		node;
	struct pcmcia_device_id 	id;
};

/**
 * pcmcia_store_new_id - add a new PCMCIA device ID to this driver and re-probe devices
 * @driver: target device driver
 * @buf: buffer for scanning device ID data
 * @count: input size
 *
 * Adds a new dynamic PCMCIA device ID to this driver,
 * and causes the driver to probe for all devices again.
 */
static ssize_t
pcmcia_store_new_id(struct device_driver *driver, const char *buf, size_t count)
{
	struct pcmcia_dynid *dynid;
	struct pcmcia_driver *pdrv = to_pcmcia_drv(driver);
	__u16 match_flags, manf_id, card_id;
	__u8 func_id, function, device_no;
	__u32 prod_id_hash[4] = {0, 0, 0, 0};
D
Dominik Brodowski 已提交
106
	int fields = 0;
B
Bernhard Walle 已提交
107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126
	int retval = 0;

	fields = sscanf(buf, "%hx %hx %hx %hhx %hhx %hhx %x %x %x %x",
			&match_flags, &manf_id, &card_id, &func_id, &function, &device_no,
			&prod_id_hash[0], &prod_id_hash[1], &prod_id_hash[2], &prod_id_hash[3]);
	if (fields < 6)
		return -EINVAL;

	dynid = kzalloc(sizeof(struct pcmcia_dynid), GFP_KERNEL);
	if (!dynid)
		return -ENOMEM;

	dynid->id.match_flags = match_flags;
	dynid->id.manf_id = manf_id;
	dynid->id.card_id = card_id;
	dynid->id.func_id = func_id;
	dynid->id.function = function;
	dynid->id.device_no = device_no;
	memcpy(dynid->id.prod_id_hash, prod_id_hash, sizeof(__u32) * 4);

127
	mutex_lock(&pdrv->dynids.lock);
128
	list_add_tail(&dynid->node, &pdrv->dynids.list);
129
	mutex_unlock(&pdrv->dynids.lock);
B
Bernhard Walle 已提交
130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146

	if (get_driver(&pdrv->drv)) {
		retval = driver_attach(&pdrv->drv);
		put_driver(&pdrv->drv);
	}

	if (retval)
		return retval;
	return count;
}
static DRIVER_ATTR(new_id, S_IWUSR, NULL, pcmcia_store_new_id);

static void
pcmcia_free_dynids(struct pcmcia_driver *drv)
{
	struct pcmcia_dynid *dynid, *n;

147
	mutex_lock(&drv->dynids.lock);
B
Bernhard Walle 已提交
148 149 150 151
	list_for_each_entry_safe(dynid, n, &drv->dynids.list, node) {
		list_del(&dynid->node);
		kfree(dynid);
	}
152
	mutex_unlock(&drv->dynids.lock);
B
Bernhard Walle 已提交
153 154 155 156 157 158 159
}

static int
pcmcia_create_newid_file(struct pcmcia_driver *drv)
{
	int error = 0;
	if (drv->probe != NULL)
160
		error = driver_create_file(&drv->drv, &driver_attr_new_id);
B
Bernhard Walle 已提交
161 162 163 164
	return error;
}


L
Linus Torvalds 已提交
165 166
/**
 * pcmcia_register_driver - register a PCMCIA driver with the bus core
R
Randy Dunlap 已提交
167
 * @driver: the &driver being registered
L
Linus Torvalds 已提交
168 169 170 171 172
 *
 * Registers a PCMCIA driver with the PCMCIA bus core.
 */
int pcmcia_register_driver(struct pcmcia_driver *driver)
{
B
Bernhard Walle 已提交
173 174
	int error;

L
Linus Torvalds 已提交
175 176 177
	if (!driver)
		return -EINVAL;

178 179
	pcmcia_check_driver(driver);

L
Linus Torvalds 已提交
180 181 182
	/* initialize common fields */
	driver->drv.bus = &pcmcia_bus_type;
	driver->drv.owner = driver->owner;
183
	mutex_init(&driver->dynids.lock);
B
Bernhard Walle 已提交
184
	INIT_LIST_HEAD(&driver->dynids.list);
L
Linus Torvalds 已提交
185

186
	pr_debug("registering driver %s\n", driver->drv.name);
187

B
Bernhard Walle 已提交
188 189 190 191 192 193 194 195 196
	error = driver_register(&driver->drv);
	if (error < 0)
		return error;

	error = pcmcia_create_newid_file(driver);
	if (error)
		driver_unregister(&driver->drv);

	return error;
L
Linus Torvalds 已提交
197 198 199 200 201
}
EXPORT_SYMBOL(pcmcia_register_driver);

/**
 * pcmcia_unregister_driver - unregister a PCMCIA driver with the bus core
R
Randy Dunlap 已提交
202
 * @driver: the &driver being unregistered
L
Linus Torvalds 已提交
203 204 205
 */
void pcmcia_unregister_driver(struct pcmcia_driver *driver)
{
206
	pr_debug("unregistering driver %s\n", driver->drv.name);
L
Linus Torvalds 已提交
207
	driver_unregister(&driver->drv);
B
Bernhard Walle 已提交
208
	pcmcia_free_dynids(driver);
L
Linus Torvalds 已提交
209 210 211 212 213 214
}
EXPORT_SYMBOL(pcmcia_unregister_driver);


/* pcmcia_device handling */

D
Dominik Brodowski 已提交
215
struct pcmcia_device *pcmcia_get_dev(struct pcmcia_device *p_dev)
L
Linus Torvalds 已提交
216 217 218 219 220 221 222 223
{
	struct device *tmp_dev;
	tmp_dev = get_device(&p_dev->dev);
	if (!tmp_dev)
		return NULL;
	return to_pcmcia_dev(tmp_dev);
}

224
void pcmcia_put_dev(struct pcmcia_device *p_dev)
L
Linus Torvalds 已提交
225 226 227 228 229
{
	if (p_dev)
		put_device(&p_dev->dev);
}

230 231 232
static void pcmcia_release_function(struct kref *ref)
{
	struct config_t *c = container_of(ref, struct config_t, ref);
233
	pr_debug("releasing config_t\n");
234 235 236
	kfree(c);
}

L
Linus Torvalds 已提交
237 238 239
static void pcmcia_release_dev(struct device *dev)
{
	struct pcmcia_device *p_dev = to_pcmcia_dev(dev);
240
	int i;
241
	dev_dbg(dev, "releasing device\n");
242
	pcmcia_put_socket(p_dev->socket);
243 244
	for (i = 0; i < 4; i++)
		kfree(p_dev->prod_id[i]);
245
	kfree(p_dev->devname);
246
	kref_put(&p_dev->function_config->ref, pcmcia_release_function);
L
Linus Torvalds 已提交
247 248 249 250
	kfree(p_dev);
}


D
Dominik Brodowski 已提交
251
static int pcmcia_device_probe(struct device *dev)
L
Linus Torvalds 已提交
252 253 254
{
	struct pcmcia_device *p_dev;
	struct pcmcia_driver *p_drv;
255
	struct pcmcia_socket *s;
256
	cistpl_config_t cis_config;
L
Linus Torvalds 已提交
257 258 259 260 261 262 263 264
	int ret = 0;

	dev = get_device(dev);
	if (!dev)
		return -ENODEV;

	p_dev = to_pcmcia_dev(dev);
	p_drv = to_pcmcia_drv(dev->driver);
265
	s = p_dev->socket;
L
Linus Torvalds 已提交
266

267
	dev_dbg(dev, "trying to bind to %s\n", p_drv->drv.name);
268

269 270
	if ((!p_drv->probe) || (!p_dev->function_config) ||
	    (!try_module_get(p_drv->owner))) {
L
Linus Torvalds 已提交
271 272 273 274
		ret = -EINVAL;
		goto put_dev;
	}

275 276 277 278 279 280 281
	/* set up some more device information */
	ret = pccard_read_tuple(p_dev->socket, p_dev->func, CISTPL_CONFIG,
				&cis_config);
	if (!ret) {
		p_dev->conf.ConfigBase = cis_config.base;
		p_dev->conf.Present = cis_config.rmask[0];
	} else {
282 283
		dev_printk(KERN_INFO, dev,
			   "pcmcia: could not parse base and rmask0 of CIS\n");
284 285 286 287
		p_dev->conf.ConfigBase = 0;
		p_dev->conf.Present = 0;
	}

288
	ret = p_drv->probe(p_dev);
289
	if (ret) {
290
		dev_dbg(dev, "binding to %s failed with %d\n",
291
			   p_drv->drv.name, ret);
292
		goto put_module;
293
	}
294

D
Dominik Brodowski 已提交
295
	mutex_lock(&s->ops_mutex);
296
	if ((s->pcmcia_state.has_pfc) &&
297
	    (p_dev->socket->device_count == 1) && (p_dev->device_no == 0))
298
		pcmcia_parse_uevents(s, PCMCIA_UEVENT_REQUERY);
D
Dominik Brodowski 已提交
299
	mutex_unlock(&s->ops_mutex);
300

301
put_module:
L
Linus Torvalds 已提交
302 303
	if (ret)
		module_put(p_drv->owner);
304
put_dev:
305
	if (ret)
L
Linus Torvalds 已提交
306
		put_device(dev);
D
Dominik Brodowski 已提交
307
	return ret;
L
Linus Torvalds 已提交
308 309 310
}


311 312 313 314 315 316 317 318
/*
 * Removes a PCMCIA card from the device tree and socket list.
 */
static void pcmcia_card_remove(struct pcmcia_socket *s, struct pcmcia_device *leftover)
{
	struct pcmcia_device	*p_dev;
	struct pcmcia_device	*tmp;

319
	dev_dbg(leftover ? &leftover->dev : &s->dev,
320 321
		   "pcmcia_card_remove(%d) %s\n", s->sock,
		   leftover ? leftover->devname : "");
322

D
Dominik Brodowski 已提交
323
	mutex_lock(&s->ops_mutex);
324 325 326 327
	if (!leftover)
		s->device_count = 0;
	else
		s->device_count = 1;
D
Dominik Brodowski 已提交
328
	mutex_unlock(&s->ops_mutex);
329 330 331 332 333 334

	/* unregister all pcmcia_devices registered with this socket, except leftover */
	list_for_each_entry_safe(p_dev, tmp, &s->devices_list, socket_device_list) {
		if (p_dev == leftover)
			continue;

D
Dominik Brodowski 已提交
335
		mutex_lock(&s->ops_mutex);
336
		list_del(&p_dev->socket_device_list);
D
Dominik Brodowski 已提交
337
		p_dev->_removed = 1;
D
Dominik Brodowski 已提交
338
		mutex_unlock(&s->ops_mutex);
339

340
		dev_dbg(&p_dev->dev, "unregistering device\n");
341 342 343 344 345 346
		device_unregister(&p_dev->dev);
	}

	return;
}

D
Dominik Brodowski 已提交
347
static int pcmcia_device_remove(struct device *dev)
L
Linus Torvalds 已提交
348 349 350
{
	struct pcmcia_device *p_dev;
	struct pcmcia_driver *p_drv;
351
	int i;
L
Linus Torvalds 已提交
352 353 354

	p_dev = to_pcmcia_dev(dev);
	p_drv = to_pcmcia_drv(dev->driver);
355

356
	dev_dbg(dev, "removing device\n");
357

358 359 360 361
	/* If we're removing the primary module driving a
	 * pseudo multi-function card, we need to unbind
	 * all devices
	 */
362
	if ((p_dev->socket->pcmcia_state.has_pfc) &&
363
	    (p_dev->socket->device_count > 0) &&
364 365 366 367
	    (p_dev->device_no == 0))
		pcmcia_card_remove(p_dev->socket, p_dev);

	/* detach the "instance" */
368 369
	if (!p_drv)
		return 0;
L
Linus Torvalds 已提交
370

371
	if (p_drv->remove)
D
Dominik Brodowski 已提交
372
		p_drv->remove(p_dev);
373

374 375
	p_dev->dev_node = NULL;

376
	/* check for proper unloading */
377
	if (p_dev->_irq || p_dev->_io || p_dev->_locked)
378 379 380
		dev_printk(KERN_INFO, dev,
			"pcmcia: driver %s did not release config properly\n",
			p_drv->drv.name);
381

382
	for (i = 0; i < MAX_WIN; i++)
383
		if (p_dev->_win & CLIENT_WIN_REQ(i))
384 385 386
			dev_printk(KERN_INFO, dev,
			  "pcmcia: driver %s did not release window properly\n",
			   p_drv->drv.name);
387

388 389 390
	/* references from pcmcia_probe_device */
	pcmcia_put_dev(p_dev);
	module_put(p_drv->owner);
L
Linus Torvalds 已提交
391 392 393 394 395 396 397 398 399 400 401 402

	return 0;
}


/*
 * pcmcia_device_query -- determine information about a pcmcia device
 */
static int pcmcia_device_query(struct pcmcia_device *p_dev)
{
	cistpl_manfid_t manf_id;
	cistpl_funcid_t func_id;
403
	cistpl_vers_1_t	*vers1;
L
Linus Torvalds 已提交
404 405
	unsigned int i;

406 407 408 409
	vers1 = kmalloc(sizeof(*vers1), GFP_KERNEL);
	if (!vers1)
		return -ENOMEM;

410
	if (!pccard_read_tuple(p_dev->socket, BIND_FN_ALL,
L
Linus Torvalds 已提交
411
			       CISTPL_MANFID, &manf_id)) {
412
		mutex_lock(&p_dev->socket->ops_mutex);
L
Linus Torvalds 已提交
413 414 415 416
		p_dev->manf_id = manf_id.manf;
		p_dev->card_id = manf_id.card;
		p_dev->has_manf_id = 1;
		p_dev->has_card_id = 1;
417
		mutex_unlock(&p_dev->socket->ops_mutex);
L
Linus Torvalds 已提交
418 419 420 421
	}

	if (!pccard_read_tuple(p_dev->socket, p_dev->func,
			       CISTPL_FUNCID, &func_id)) {
422
		mutex_lock(&p_dev->socket->ops_mutex);
L
Linus Torvalds 已提交
423 424
		p_dev->func_id = func_id.func;
		p_dev->has_func_id = 1;
425
		mutex_unlock(&p_dev->socket->ops_mutex);
L
Linus Torvalds 已提交
426 427 428 429
	} else {
		/* rule of thumb: cards with no FUNCID, but with
		 * common memory device geometry information, are
		 * probably memory cards (from pcmcia-cs) */
430 431 432 433 434 435 436
		cistpl_device_geo_t *devgeo;

		devgeo = kmalloc(sizeof(*devgeo), GFP_KERNEL);
		if (!devgeo) {
			kfree(vers1);
			return -ENOMEM;
		}
L
Linus Torvalds 已提交
437
		if (!pccard_read_tuple(p_dev->socket, p_dev->func,
438
				      CISTPL_DEVICE_GEO, devgeo)) {
439
			dev_dbg(&p_dev->dev,
440 441
				   "mem device geometry probably means "
				   "FUNCID_MEMORY\n");
442
			mutex_lock(&p_dev->socket->ops_mutex);
L
Linus Torvalds 已提交
443 444
			p_dev->func_id = CISTPL_FUNCID_MEMORY;
			p_dev->has_func_id = 1;
445
			mutex_unlock(&p_dev->socket->ops_mutex);
L
Linus Torvalds 已提交
446
		}
447
		kfree(devgeo);
L
Linus Torvalds 已提交
448 449
	}

450
	if (!pccard_read_tuple(p_dev->socket, BIND_FN_ALL, CISTPL_VERS_1,
451
			       vers1)) {
452
		mutex_lock(&p_dev->socket->ops_mutex);
453
		for (i = 0; i < min_t(unsigned int, 4, vers1->ns); i++) {
L
Linus Torvalds 已提交
454 455
			char *tmp;
			unsigned int length;
456
			char *new;
L
Linus Torvalds 已提交
457

458
			tmp = vers1->str + vers1->ofs[i];
L
Linus Torvalds 已提交
459 460

			length = strlen(tmp) + 1;
461
			if ((length < 2) || (length > 255))
L
Linus Torvalds 已提交
462 463
				continue;

464 465
			new = kmalloc(sizeof(char) * length, GFP_KERNEL);
			if (!new)
L
Linus Torvalds 已提交
466 467
				continue;

468 469 470 471 472
			new = strncpy(new, tmp, length);

			tmp = p_dev->prod_id[i];
			p_dev->prod_id[i] = new;
			kfree(tmp);
L
Linus Torvalds 已提交
473
		}
474
		mutex_unlock(&p_dev->socket->ops_mutex);
L
Linus Torvalds 已提交
475 476
	}

477
	kfree(vers1);
L
Linus Torvalds 已提交
478 479 480 481 482 483 484 485 486 487 488
	return 0;
}


/* device_add_lock is needed to avoid double registration by cardmgr and kernel.
 * Serializes pcmcia_device_add; will most likely be removed in future.
 *
 * While it has the caveat that adding new PCMCIA devices inside(!) device_register()
 * won't work, this doesn't matter much at the moment: the driver core doesn't
 * support it either.
 */
489
static DEFINE_MUTEX(device_add_lock);
L
Linus Torvalds 已提交
490

D
Dominik Brodowski 已提交
491
struct pcmcia_device *pcmcia_device_add(struct pcmcia_socket *s, unsigned int function)
L
Linus Torvalds 已提交
492
{
493
	struct pcmcia_device *p_dev, *tmp_dev;
494
	int i;
L
Linus Torvalds 已提交
495

496
	s = pcmcia_get_socket(s);
L
Linus Torvalds 已提交
497 498 499
	if (!s)
		return NULL;

500
	mutex_lock(&device_add_lock);
L
Linus Torvalds 已提交
501

502
	pr_debug("adding device to %d, function %d\n", s->sock, function);
503

504
	p_dev = kzalloc(sizeof(struct pcmcia_device), GFP_KERNEL);
L
Linus Torvalds 已提交
505 506 507
	if (!p_dev)
		goto err_put;

D
Dominik Brodowski 已提交
508
	mutex_lock(&s->ops_mutex);
L
Linus Torvalds 已提交
509
	p_dev->device_no = (s->device_count++);
D
Dominik Brodowski 已提交
510
	mutex_unlock(&s->ops_mutex);
511

512 513 514 515 516 517
	/* max of 2 PFC devices */
	if ((p_dev->device_no >= 2) && (function == 0))
		goto err_free;

	/* max of 4 devices overall */
	if (p_dev->device_no >= 4)
518 519 520
		goto err_free;

	p_dev->socket = s;
L
Linus Torvalds 已提交
521 522 523
	p_dev->func   = function;

	p_dev->dev.bus = &pcmcia_bus_type;
524
	p_dev->dev.parent = s->dev.parent;
L
Linus Torvalds 已提交
525
	p_dev->dev.release = pcmcia_release_dev;
526 527 528
	/* by default don't allow DMA */
	p_dev->dma_mask = DMA_MASK_NONE;
	p_dev->dev.dma_mask = &p_dev->dma_mask;
529 530 531 532
	dev_set_name(&p_dev->dev, "%d.%d", p_dev->socket->sock, p_dev->device_no);
	if (!dev_name(&p_dev->dev))
		goto err_free;
	p_dev->devname = kasprintf(GFP_KERNEL, "pcmcia%s", dev_name(&p_dev->dev));
533 534
	if (!p_dev->devname)
		goto err_free;
535
	dev_dbg(&p_dev->dev, "devname is %s\n", p_dev->devname);
L
Linus Torvalds 已提交
536

D
Dominik Brodowski 已提交
537
	mutex_lock(&s->ops_mutex);
538 539 540 541 542 543

	/*
	 * p_dev->function_config must be the same for all card functions.
	 * Note that this is serialized by the device_add_lock, so that
	 * only one such struct will be created.
	 */
D
Dominik Brodowski 已提交
544 545
	list_for_each_entry(tmp_dev, &s->devices_list, socket_device_list)
		if (p_dev->func == tmp_dev->func) {
546
			p_dev->function_config = tmp_dev->function_config;
547 548
			p_dev->io = tmp_dev->io;
			p_dev->irq = tmp_dev->irq;
549 550 551 552
			kref_get(&p_dev->function_config->ref);
		}

	/* Add to the list in pcmcia_bus_socket */
553
	list_add(&p_dev->socket_device_list, &s->devices_list);
554

D
Dominik Brodowski 已提交
555
	mutex_unlock(&s->ops_mutex);
L
Linus Torvalds 已提交
556

557
	if (!p_dev->function_config) {
558
		dev_dbg(&p_dev->dev, "creating config_t\n");
559 560 561 562 563 564 565
		p_dev->function_config = kzalloc(sizeof(struct config_t),
						 GFP_KERNEL);
		if (!p_dev->function_config)
			goto err_unreg;
		kref_init(&p_dev->function_config->ref);
	}

566 567 568
	dev_printk(KERN_NOTICE, &p_dev->dev,
		   "pcmcia: registering new device %s\n",
		   p_dev->devname);
569

570 571
	pcmcia_device_query(p_dev);

572 573
	if (device_register(&p_dev->dev))
		goto err_unreg;
L
Linus Torvalds 已提交
574

575
	mutex_unlock(&device_add_lock);
L
Linus Torvalds 已提交
576 577 578

	return p_dev;

579
 err_unreg:
D
Dominik Brodowski 已提交
580
	mutex_lock(&s->ops_mutex);
581
	list_del(&p_dev->socket_device_list);
D
Dominik Brodowski 已提交
582
	mutex_unlock(&s->ops_mutex);
583

L
Linus Torvalds 已提交
584
 err_free:
D
Dominik Brodowski 已提交
585
	mutex_lock(&s->ops_mutex);
586
	s->device_count--;
D
Dominik Brodowski 已提交
587
	mutex_unlock(&s->ops_mutex);
588

589 590
	for (i = 0; i < 4; i++)
		kfree(p_dev->prod_id[i]);
591
	kfree(p_dev->devname);
L
Linus Torvalds 已提交
592 593
	kfree(p_dev);
 err_put:
594
	mutex_unlock(&device_add_lock);
595
	pcmcia_put_socket(s);
L
Linus Torvalds 已提交
596 597 598 599 600 601 602 603

	return NULL;
}


static int pcmcia_card_add(struct pcmcia_socket *s)
{
	cistpl_longlink_mfc_t mfc;
604
	unsigned int no_funcs, i, no_chains;
605
	int ret = -EAGAIN;
L
Linus Torvalds 已提交
606

607
	mutex_lock(&s->ops_mutex);
608
	if (!(s->resource_setup_done)) {
609
		dev_dbg(&s->dev,
610
			   "no resources available, delaying card_add\n");
611
		mutex_unlock(&s->ops_mutex);
L
Linus Torvalds 已提交
612
		return -EAGAIN; /* try again, but later... */
613
	}
L
Linus Torvalds 已提交
614

615
	if (pcmcia_validate_mem(s)) {
616
		dev_dbg(&s->dev, "validating mem resources failed, "
617
		       "delaying card_add\n");
618
		mutex_unlock(&s->ops_mutex);
619
		return -EAGAIN; /* try again, but later... */
620
	}
621
	mutex_unlock(&s->ops_mutex);
622

623
	ret = pccard_validate_cis(s, &no_chains);
624
	if (ret || !no_chains) {
625
		dev_dbg(&s->dev, "invalid CIS or invalid resources\n");
L
Linus Torvalds 已提交
626 627 628 629 630 631 632
		return -ENODEV;
	}

	if (!pccard_read_tuple(s, BIND_FN_ALL, CISTPL_LONGLINK_MFC, &mfc))
		no_funcs = mfc.nfn;
	else
		no_funcs = 1;
633
	s->functions = no_funcs;
L
Linus Torvalds 已提交
634

D
Dominik Brodowski 已提交
635
	for (i = 0; i < no_funcs; i++)
636
		pcmcia_device_add(s, i);
L
Linus Torvalds 已提交
637

D
Dominik Brodowski 已提交
638
	return ret;
L
Linus Torvalds 已提交
639 640 641
}


642
static int pcmcia_requery_callback(struct device *dev, void * _data)
643
{
644
	struct pcmcia_device *p_dev = to_pcmcia_dev(dev);
645
	if (!p_dev->dev.driver) {
646
		dev_dbg(dev, "update device information\n");
647
		pcmcia_device_query(p_dev);
648
	}
649 650 651 652

	return 0;
}

653

654
static void pcmcia_requery(struct pcmcia_socket *s)
655
{
656
	int present, has_pfc;
657

658 659 660
	mutex_lock(&s->ops_mutex);
	present = s->pcmcia_state.present;
	mutex_unlock(&s->ops_mutex);
661

662 663
	if (!present)
		return;
664

665 666 667
	if (s->functions == 0) {
		pcmcia_card_add(s);
		return;
668 669 670 671 672
	}

	/* some device information might have changed because of a CIS
	 * update or because we can finally read it correctly... so
	 * determine it again, overwriting old values if necessary. */
673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696
	bus_for_each_dev(&pcmcia_bus_type, NULL, NULL, pcmcia_requery_callback);

	/* if the CIS changed, we need to check whether the number of
	 * functions changed. */
	if (s->fake_cis) {
		int old_funcs, new_funcs;
		cistpl_longlink_mfc_t mfc;

		/* does this cis override add or remove functions? */
		old_funcs = s->functions;

		if (!pccard_read_tuple(s, BIND_FN_ALL, CISTPL_LONGLINK_MFC,
					&mfc))
			new_funcs = mfc.nfn;
		else
			new_funcs = 1;
		if (old_funcs > new_funcs) {
			pcmcia_card_remove(s, NULL);
			pcmcia_card_add(s);
		} else if (new_funcs > old_funcs) {
			s->functions = new_funcs;
			pcmcia_device_add(s, 1);
		}
	}
697

698 699 700 701 702 703 704 705 706
	/* If the PCMCIA device consists of two pseudo devices,
	 * call pcmcia_device_add() -- which will fail if both
	 * devices are already registered. */
	mutex_lock(&s->ops_mutex);
	has_pfc = s->pcmcia_state.has_pfc;
	mutex_unlock(&s->ops_mutex);
	if (has_pfc)
		pcmcia_device_add(s, 0);

707 708
	/* we re-scan all devices, not just the ones connected to this
	 * socket. This does not matter, though. */
709 710
	if (bus_rescan_devices(&pcmcia_bus_type))
		dev_warn(&s->dev, "rescanning the bus failed\n");
711
}
712

713

714 715 716 717
#ifdef CONFIG_PCMCIA_LOAD_CIS

/**
 * pcmcia_load_firmware - load CIS from userspace if device-provided is broken
R
Randy Dunlap 已提交
718 719
 * @dev: the pcmcia device which needs a CIS override
 * @filename: requested filename in /lib/firmware/
720 721 722 723 724 725 726 727 728 729 730 731 732 733
 *
 * This uses the in-kernel firmware loading mechanism to use a "fake CIS" if
 * the one provided by the card is broken. The firmware files reside in
 * /lib/firmware/ in userspace.
 */
static int pcmcia_load_firmware(struct pcmcia_device *dev, char * filename)
{
	struct pcmcia_socket *s = dev->socket;
	const struct firmware *fw;
	int ret = -ENOMEM;

	if (!filename)
		return -EINVAL;

734
	dev_dbg(&dev->dev, "trying to load CIS file %s\n", filename);
735

736
	if (request_firmware(&fw, filename, &dev->dev) == 0) {
737 738
		if (fw->size >= CISTPL_MAX_CIS_SIZE) {
			ret = -EINVAL;
739 740
			dev_printk(KERN_ERR, &dev->dev,
				   "pcmcia: CIS override is too big\n");
741
			goto release;
742
		}
743

744
		if (!pcmcia_replace_cis(s, fw->data, fw->size))
745
			ret = 0;
746
		else {
747 748
			dev_printk(KERN_ERR, &dev->dev,
				   "pcmcia: CIS override failed\n");
749 750 751
			goto release;
		}

752 753 754 755

		/* update information */
		pcmcia_device_query(dev);

756 757
		/* requery (as number of functions might have changed) */
		pcmcia_parse_uevents(s, PCMCIA_UEVENT_REQUERY);
758 759 760 761
	}
 release:
	release_firmware(fw);

D
Dominik Brodowski 已提交
762
	return ret;
763 764 765 766 767 768 769 770 771 772 773 774
}

#else /* !CONFIG_PCMCIA_LOAD_CIS */

static inline int pcmcia_load_firmware(struct pcmcia_device *dev, char * filename)
{
	return -ENODEV;
}

#endif


775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823
static inline int pcmcia_devmatch(struct pcmcia_device *dev,
				  struct pcmcia_device_id *did)
{
	if (did->match_flags & PCMCIA_DEV_ID_MATCH_MANF_ID) {
		if ((!dev->has_manf_id) || (dev->manf_id != did->manf_id))
			return 0;
	}

	if (did->match_flags & PCMCIA_DEV_ID_MATCH_CARD_ID) {
		if ((!dev->has_card_id) || (dev->card_id != did->card_id))
			return 0;
	}

	if (did->match_flags & PCMCIA_DEV_ID_MATCH_FUNCTION) {
		if (dev->func != did->function)
			return 0;
	}

	if (did->match_flags & PCMCIA_DEV_ID_MATCH_PROD_ID1) {
		if (!dev->prod_id[0])
			return 0;
		if (strcmp(did->prod_id[0], dev->prod_id[0]))
			return 0;
	}

	if (did->match_flags & PCMCIA_DEV_ID_MATCH_PROD_ID2) {
		if (!dev->prod_id[1])
			return 0;
		if (strcmp(did->prod_id[1], dev->prod_id[1]))
			return 0;
	}

	if (did->match_flags & PCMCIA_DEV_ID_MATCH_PROD_ID3) {
		if (!dev->prod_id[2])
			return 0;
		if (strcmp(did->prod_id[2], dev->prod_id[2]))
			return 0;
	}

	if (did->match_flags & PCMCIA_DEV_ID_MATCH_PROD_ID4) {
		if (!dev->prod_id[3])
			return 0;
		if (strcmp(did->prod_id[3], dev->prod_id[3]))
			return 0;
	}

	if (did->match_flags & PCMCIA_DEV_ID_MATCH_DEVICE_NO) {
		if (dev->device_no != did->device_no)
			return 0;
824 825 826
		mutex_lock(&dev->socket->ops_mutex);
		dev->socket->pcmcia_state.has_pfc = 1;
		mutex_unlock(&dev->socket->ops_mutex);
827 828 829
	}

	if (did->match_flags & PCMCIA_DEV_ID_MATCH_FUNC_ID) {
830 831
		int ret;

832 833 834 835 836 837 838 839 840 841 842 843 844 845
		if ((!dev->has_func_id) || (dev->func_id != did->func_id))
			return 0;

		/* if this is a pseudo-multi-function device,
		 * we need explicit matches */
		if (did->match_flags & PCMCIA_DEV_ID_MATCH_DEVICE_NO)
			return 0;
		if (dev->device_no)
			return 0;

		/* also, FUNC_ID matching needs to be activated by userspace
		 * after it has re-checked that there is no possible module
		 * with a prod_id/manf_id/card_id match.
		 */
846 847 848 849 850 851 852
		mutex_lock(&dev->socket->ops_mutex);
		ret = dev->allow_func_id_match;
		mutex_unlock(&dev->socket->ops_mutex);

		if (!ret) {
			dev_dbg(&dev->dev,
				"skipping FUNC_ID match until userspace ACK\n");
853
			return 0;
854
		}
855 856
	}

857
	if (did->match_flags & PCMCIA_DEV_ID_MATCH_FAKE_CIS) {
858
		dev_dbg(&dev->dev, "device needs a fake CIS\n");
859 860 861 862
		if (!dev->socket->fake_cis)
			pcmcia_load_firmware(dev, did->cisfile);

		if (!dev->socket->fake_cis)
863 864 865
			return 0;
	}

866 867
	if (did->match_flags & PCMCIA_DEV_ID_MATCH_ANONYMOUS) {
		int i;
D
Dominik Brodowski 已提交
868
		for (i = 0; i < 4; i++)
869 870 871 872 873 874
			if (dev->prod_id[i])
				return 0;
		if (dev->has_manf_id || dev->has_card_id || dev->has_func_id)
			return 0;
	}

875 876 877 878
	return 1;
}


D
Dominik Brodowski 已提交
879 880 881 882
static int pcmcia_bus_match(struct device *dev, struct device_driver *drv)
{
	struct pcmcia_device *p_dev = to_pcmcia_dev(dev);
	struct pcmcia_driver *p_drv = to_pcmcia_drv(drv);
883
	struct pcmcia_device_id *did = p_drv->id_table;
B
Bernhard Walle 已提交
884 885 886
	struct pcmcia_dynid *dynid;

	/* match dynamic devices first */
887
	mutex_lock(&p_drv->dynids.lock);
B
Bernhard Walle 已提交
888
	list_for_each_entry(dynid, &p_drv->dynids.list, node) {
889
		dev_dbg(dev, "trying to match to %s\n", drv->name);
B
Bernhard Walle 已提交
890
		if (pcmcia_devmatch(p_dev, &dynid->id)) {
891
			dev_dbg(dev, "matched to %s\n", drv->name);
892
			mutex_unlock(&p_drv->dynids.lock);
B
Bernhard Walle 已提交
893 894 895
			return 1;
		}
	}
896
	mutex_unlock(&p_drv->dynids.lock);
L
Linus Torvalds 已提交
897

898
#ifdef CONFIG_PCMCIA_IOCTL
L
Linus Torvalds 已提交
899
	/* matching by cardmgr */
900
	if (p_dev->cardmgr == p_drv) {
901
		dev_dbg(dev, "cardmgr matched to %s\n", drv->name);
L
Linus Torvalds 已提交
902
		return 1;
903
	}
904
#endif
L
Linus Torvalds 已提交
905

906
	while (did && did->match_flags) {
907
		dev_dbg(dev, "trying to match to %s\n", drv->name);
908
		if (pcmcia_devmatch(p_dev, did)) {
909
			dev_dbg(dev, "matched to %s\n", drv->name);
910
			return 1;
911
		}
912 913 914
		did++;
	}

L
Linus Torvalds 已提交
915 916 917
	return 0;
}

918 919
#ifdef CONFIG_HOTPLUG

920
static int pcmcia_bus_uevent(struct device *dev, struct kobj_uevent_env *env)
921 922
{
	struct pcmcia_device *p_dev;
923
	int i;
924 925 926 927 928 929 930 931
	u32 hash[4] = { 0, 0, 0, 0};

	if (!dev)
		return -ENODEV;

	p_dev = to_pcmcia_dev(dev);

	/* calculate hashes */
D
Dominik Brodowski 已提交
932
	for (i = 0; i < 4; i++) {
933 934 935 936 937
		if (!p_dev->prod_id[i])
			continue;
		hash[i] = crc32(0, p_dev->prod_id[i], strlen(p_dev->prod_id[i]));
	}

938
	if (add_uevent_var(env, "SOCKET_NO=%u", p_dev->socket->sock))
939 940
		return -ENOMEM;

941
	if (add_uevent_var(env, "DEVICE_NO=%02X", p_dev->device_no))
942 943
		return -ENOMEM;

944
	if (add_uevent_var(env, "MODALIAS=pcmcia:m%04Xc%04Xf%02Xfn%02Xpfn%02X"
945 946 947 948 949 950 951 952 953 954
			   "pa%08Xpb%08Xpc%08Xpd%08X",
			   p_dev->has_manf_id ? p_dev->manf_id : 0,
			   p_dev->has_card_id ? p_dev->card_id : 0,
			   p_dev->has_func_id ? p_dev->func_id : 0,
			   p_dev->func,
			   p_dev->device_no,
			   hash[0],
			   hash[1],
			   hash[2],
			   hash[3]))
955 956 957 958 959 960 961
		return -ENOMEM;

	return 0;
}

#else

962
static int pcmcia_bus_uevent(struct device *dev, struct kobj_uevent_env *env)
963 964 965 966 967 968
{
	return -ENODEV;
}

#endif

969 970 971 972 973 974 975 976 977
/************************ runtime PM support ***************************/

static int pcmcia_dev_suspend(struct device *dev, pm_message_t state);
static int pcmcia_dev_resume(struct device *dev);

static int runtime_suspend(struct device *dev)
{
	int rc;

978
	device_lock(dev);
979
	rc = pcmcia_dev_suspend(dev, PMSG_SUSPEND);
980
	device_unlock(dev);
981 982 983
	return rc;
}

984
static int runtime_resume(struct device *dev)
985 986 987
{
	int rc;

988
	device_lock(dev);
989
	rc = pcmcia_dev_resume(dev);
990
	device_unlock(dev);
991
	return rc;
992 993
}

L
Linus Torvalds 已提交
994 995 996
/************************ per-device sysfs output ***************************/

#define pcmcia_device_attr(field, test, format)				\
997
static ssize_t field##_show (struct device *dev, struct device_attribute *attr, char *buf)		\
L
Linus Torvalds 已提交
998 999
{									\
	struct pcmcia_device *p_dev = to_pcmcia_dev(dev);		\
D
Dominik Brodowski 已提交
1000
	return p_dev->test ? sprintf(buf, format, p_dev->field) : -ENODEV; \
L
Linus Torvalds 已提交
1001 1002 1003
}

#define pcmcia_device_stringattr(name, field)					\
1004
static ssize_t name##_show (struct device *dev, struct device_attribute *attr, char *buf)		\
L
Linus Torvalds 已提交
1005 1006
{									\
	struct pcmcia_device *p_dev = to_pcmcia_dev(dev);		\
D
Dominik Brodowski 已提交
1007
	return p_dev->field ? sprintf(buf, "%s\n", p_dev->field) : -ENODEV; \
L
Linus Torvalds 已提交
1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018
}

pcmcia_device_attr(func, socket, "0x%02x\n");
pcmcia_device_attr(func_id, has_func_id, "0x%02x\n");
pcmcia_device_attr(manf_id, has_manf_id, "0x%04x\n");
pcmcia_device_attr(card_id, has_card_id, "0x%04x\n");
pcmcia_device_stringattr(prod_id1, prod_id[0]);
pcmcia_device_stringattr(prod_id2, prod_id[1]);
pcmcia_device_stringattr(prod_id3, prod_id[2]);
pcmcia_device_stringattr(prod_id4, prod_id[3]);

1019 1020 1021 1022 1023

static ssize_t pcmcia_show_pm_state(struct device *dev, struct device_attribute *attr, char *buf)
{
	struct pcmcia_device *p_dev = to_pcmcia_dev(dev);

1024
	if (p_dev->suspended)
1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035
		return sprintf(buf, "off\n");
	else
		return sprintf(buf, "on\n");
}

static ssize_t pcmcia_store_pm_state(struct device *dev, struct device_attribute *attr,
				     const char *buf, size_t count)
{
	struct pcmcia_device *p_dev = to_pcmcia_dev(dev);
	int ret = 0;

D
Dominik Brodowski 已提交
1036 1037
	if (!count)
		return -EINVAL;
1038

1039
	if ((!p_dev->suspended) && !strncmp(buf, "off", 3))
1040
		ret = runtime_suspend(dev);
1041
	else if (p_dev->suspended && !strncmp(buf, "on", 2))
1042
		ret = runtime_resume(dev);
1043 1044 1045 1046 1047

	return ret ? ret : count;
}


1048
static ssize_t modalias_show(struct device *dev, struct device_attribute *attr, char *buf)
1049 1050 1051 1052 1053 1054
{
	struct pcmcia_device *p_dev = to_pcmcia_dev(dev);
	int i;
	u32 hash[4] = { 0, 0, 0, 0};

	/* calculate hashes */
D
Dominik Brodowski 已提交
1055
	for (i = 0; i < 4; i++) {
1056 1057
		if (!p_dev->prod_id[i])
			continue;
D
Dominik Brodowski 已提交
1058 1059
		hash[i] = crc32(0, p_dev->prod_id[i],
				strlen(p_dev->prod_id[i]));
1060 1061 1062 1063 1064 1065 1066 1067 1068
	}
	return sprintf(buf, "pcmcia:m%04Xc%04Xf%02Xfn%02Xpfn%02X"
				"pa%08Xpb%08Xpc%08Xpd%08X\n",
				p_dev->has_manf_id ? p_dev->manf_id : 0,
				p_dev->has_card_id ? p_dev->card_id : 0,
				p_dev->has_func_id ? p_dev->func_id : 0,
				p_dev->func, p_dev->device_no,
				hash[0], hash[1], hash[2], hash[3]);
}
1069

1070 1071
static ssize_t pcmcia_store_allow_func_id_match(struct device *dev,
		struct device_attribute *attr, const char *buf, size_t count)
1072 1073
{
	struct pcmcia_device *p_dev = to_pcmcia_dev(dev);
1074 1075 1076

	if (!count)
		return -EINVAL;
1077

1078
	mutex_lock(&p_dev->socket->ops_mutex);
1079
	p_dev->allow_func_id_match = 1;
1080
	mutex_unlock(&p_dev->socket->ops_mutex);
1081
	pcmcia_parse_uevents(p_dev->socket, PCMCIA_UEVENT_REQUERY);
1082 1083 1084 1085

	return count;
}

L
Linus Torvalds 已提交
1086 1087
static struct device_attribute pcmcia_dev_attrs[] = {
	__ATTR(function, 0444, func_show, NULL),
1088
	__ATTR(pm_state, 0644, pcmcia_show_pm_state, pcmcia_store_pm_state),
L
Linus Torvalds 已提交
1089 1090 1091 1092 1093 1094 1095
	__ATTR_RO(func_id),
	__ATTR_RO(manf_id),
	__ATTR_RO(card_id),
	__ATTR_RO(prod_id1),
	__ATTR_RO(prod_id2),
	__ATTR_RO(prod_id3),
	__ATTR_RO(prod_id4),
1096
	__ATTR_RO(modalias),
1097
	__ATTR(allow_func_id_match, 0200, NULL, pcmcia_store_allow_func_id_match),
L
Linus Torvalds 已提交
1098 1099 1100
	__ATTR_NULL,
};

1101 1102
/* PM support, also needed for reset */

D
Dominik Brodowski 已提交
1103
static int pcmcia_dev_suspend(struct device *dev, pm_message_t state)
1104 1105 1106
{
	struct pcmcia_device *p_dev = to_pcmcia_dev(dev);
	struct pcmcia_driver *p_drv = NULL;
1107
	int ret = 0;
1108

1109 1110 1111
	mutex_lock(&p_dev->socket->ops_mutex);
	if (p_dev->suspended) {
		mutex_unlock(&p_dev->socket->ops_mutex);
1112
		return 0;
1113 1114 1115
	}
	p_dev->suspended = 1;
	mutex_unlock(&p_dev->socket->ops_mutex);
1116

1117
	dev_dbg(dev, "suspending\n");
1118

1119 1120 1121
	if (dev->driver)
		p_drv = to_pcmcia_drv(dev->driver);

1122 1123 1124 1125
	if (!p_drv)
		goto out;

	if (p_drv->suspend) {
1126
		ret = p_drv->suspend(p_dev);
1127
		if (ret) {
1128 1129 1130 1131
			dev_printk(KERN_ERR, dev,
				   "pcmcia: device %s (driver %s) did "
				   "not want to go to sleep (%d)\n",
				   p_dev->devname, p_drv->drv.name, ret);
1132 1133 1134
			mutex_lock(&p_dev->socket->ops_mutex);
			p_dev->suspended = 0;
			mutex_unlock(&p_dev->socket->ops_mutex);
1135
			goto out;
1136
		}
1137
	}
1138

1139
	if (p_dev->device_no == p_dev->func) {
1140
		dev_dbg(dev, "releasing configuration\n");
1141
		pcmcia_release_configuration(p_dev);
1142
	}
1143

1144 1145
 out:
	return ret;
1146 1147 1148
}


D
Dominik Brodowski 已提交
1149
static int pcmcia_dev_resume(struct device *dev)
1150 1151
{
	struct pcmcia_device *p_dev = to_pcmcia_dev(dev);
D
Dominik Brodowski 已提交
1152
	struct pcmcia_driver *p_drv = NULL;
1153
	int ret = 0;
1154

1155 1156 1157
	mutex_lock(&p_dev->socket->ops_mutex);
	if (!p_dev->suspended) {
		mutex_unlock(&p_dev->socket->ops_mutex);
1158
		return 0;
1159 1160 1161
	}
	p_dev->suspended = 0;
	mutex_unlock(&p_dev->socket->ops_mutex);
1162

1163
	dev_dbg(dev, "resuming\n");
1164

1165 1166 1167
	if (dev->driver)
		p_drv = to_pcmcia_drv(dev->driver);

1168 1169 1170 1171
	if (!p_drv)
		goto out;

	if (p_dev->device_no == p_dev->func) {
1172
		dev_dbg(dev, "requesting configuration\n");
1173 1174 1175
		ret = pcmcia_request_configuration(p_dev, &p_dev->conf);
		if (ret)
			goto out;
1176
	}
1177

1178 1179 1180
	if (p_drv->resume)
		ret = p_drv->resume(p_dev);

1181 1182
 out:
	return ret;
1183 1184 1185 1186 1187 1188 1189 1190
}


static int pcmcia_bus_suspend_callback(struct device *dev, void * _data)
{
	struct pcmcia_socket *skt = _data;
	struct pcmcia_device *p_dev = to_pcmcia_dev(dev);

1191
	if (p_dev->socket != skt || p_dev->suspended)
1192 1193
		return 0;

1194
	return runtime_suspend(dev);
1195 1196 1197 1198 1199 1200 1201
}

static int pcmcia_bus_resume_callback(struct device *dev, void * _data)
{
	struct pcmcia_socket *skt = _data;
	struct pcmcia_device *p_dev = to_pcmcia_dev(dev);

1202
	if (p_dev->socket != skt || !p_dev->suspended)
1203 1204
		return 0;

1205
	runtime_resume(dev);
1206 1207 1208 1209 1210 1211

	return 0;
}

static int pcmcia_bus_resume(struct pcmcia_socket *skt)
{
1212
	dev_dbg(&skt->dev, "resuming socket %d\n", skt->sock);
1213 1214 1215 1216 1217 1218
	bus_for_each_dev(&pcmcia_bus_type, NULL, skt, pcmcia_bus_resume_callback);
	return 0;
}

static int pcmcia_bus_suspend(struct pcmcia_socket *skt)
{
1219
	dev_dbg(&skt->dev, "suspending socket %d\n", skt->sock);
1220 1221 1222 1223 1224 1225 1226 1227
	if (bus_for_each_dev(&pcmcia_bus_type, NULL, skt,
			     pcmcia_bus_suspend_callback)) {
		pcmcia_bus_resume(skt);
		return -EIO;
	}
	return 0;
}

L
Linus Torvalds 已提交
1228 1229 1230 1231

/*======================================================================

    The card status event handler.
D
Dominik Brodowski 已提交
1232

L
Linus Torvalds 已提交
1233 1234 1235 1236 1237 1238 1239 1240 1241
======================================================================*/

/* Normally, the event is passed to individual drivers after
 * informing userspace. Only for CS_EVENT_CARD_REMOVAL this
 * is inversed to maintain historic compatibility.
 */

static int ds_event(struct pcmcia_socket *skt, event_t event, int priority)
{
1242
	struct pcmcia_socket *s = pcmcia_get_socket(skt);
L
Linus Torvalds 已提交
1243

1244
	if (!s) {
1245 1246 1247
		dev_printk(KERN_ERR, &skt->dev,
			   "PCMCIA obtaining reference to socket "	\
			   "failed, event 0x%x lost!\n", event);
1248 1249 1250
		return -ENODEV;
	}

1251
	dev_dbg(&skt->dev, "ds_event(0x%06x, %d, 0x%p)\n",
1252
		   event, priority, skt);
L
Linus Torvalds 已提交
1253

1254
	switch (event) {
L
Linus Torvalds 已提交
1255
	case CS_EVENT_CARD_REMOVAL:
D
Dominik Brodowski 已提交
1256
		mutex_lock(&s->ops_mutex);
1257
		s->pcmcia_state.present = 0;
D
Dominik Brodowski 已提交
1258
		mutex_unlock(&s->ops_mutex);
1259
		pcmcia_card_remove(skt, NULL);
1260
		handle_event(skt, event);
1261
		mutex_lock(&s->ops_mutex);
1262
		destroy_cis_cache(s);
1263
		mutex_unlock(&s->ops_mutex);
L
Linus Torvalds 已提交
1264
		break;
1265

L
Linus Torvalds 已提交
1266
	case CS_EVENT_CARD_INSERTION:
1267
		mutex_lock(&s->ops_mutex);
1268
		s->pcmcia_state.has_pfc = 0;
D
Dominik Brodowski 已提交
1269
		s->pcmcia_state.present = 1;
1270
		destroy_cis_cache(s); /* to be on the safe side... */
1271
		mutex_unlock(&s->ops_mutex);
L
Linus Torvalds 已提交
1272
		pcmcia_card_add(skt);
1273
		handle_event(skt, event);
L
Linus Torvalds 已提交
1274 1275 1276 1277 1278
		break;

	case CS_EVENT_EJECTION_REQUEST:
		break;

1279
	case CS_EVENT_PM_RESUME:
1280 1281 1282 1283
		if (verify_cis_cache(skt) != 0) {
			dev_dbg(&skt->dev, "cis mismatch - different card\n");
			/* first, remove the card */
			ds_event(skt, CS_EVENT_CARD_REMOVAL, CS_EVENT_PRI_HIGH);
1284
			mutex_lock(&s->ops_mutex);
1285 1286 1287
			destroy_cis_cache(skt);
			kfree(skt->fake_cis);
			skt->fake_cis = NULL;
1288
			mutex_unlock(&s->ops_mutex);
1289 1290 1291 1292 1293 1294 1295 1296
			/* now, add the new card */
			ds_event(skt, CS_EVENT_CARD_INSERTION,
				 CS_EVENT_PRI_LOW);
		}
		handle_event(skt, event);
		break;

	case CS_EVENT_PM_SUSPEND:
1297 1298
	case CS_EVENT_RESET_PHYSICAL:
	case CS_EVENT_CARD_RESET:
L
Linus Torvalds 已提交
1299
	default:
1300
		handle_event(skt, event);
L
Linus Torvalds 已提交
1301 1302 1303
		break;
    }

1304 1305
    pcmcia_put_socket(s);

L
Linus Torvalds 已提交
1306 1307 1308 1309
    return 0;
} /* ds_event */


D
Dominik Brodowski 已提交
1310
struct pcmcia_device *pcmcia_dev_present(struct pcmcia_device *_p_dev)
1311 1312 1313 1314 1315 1316 1317 1318
{
	struct pcmcia_device *p_dev;
	struct pcmcia_device *ret = NULL;

	p_dev = pcmcia_get_dev(_p_dev);
	if (!p_dev)
		return NULL;

D
Dominik Brodowski 已提交
1319
	mutex_lock(&p_dev->socket->ops_mutex);
1320 1321 1322
	if (!p_dev->socket->pcmcia_state.present)
		goto out;

1323 1324 1325
	if (p_dev->socket->pcmcia_state.dead)
		goto out;

1326 1327 1328 1329 1330 1331 1332 1333
	if (p_dev->_removed)
		goto out;

	if (p_dev->suspended)
		goto out;

	ret = p_dev;
 out:
D
Dominik Brodowski 已提交
1334
	mutex_unlock(&p_dev->socket->ops_mutex);
1335 1336 1337 1338 1339 1340
	pcmcia_put_dev(p_dev);
	return ret;
}
EXPORT_SYMBOL(pcmcia_dev_present);


1341 1342 1343
static struct pcmcia_callback pcmcia_bus_callback = {
	.owner = THIS_MODULE,
	.event = ds_event,
1344
	.requery = pcmcia_requery,
1345
	.validate = pccard_validate_cis,
1346 1347
	.suspend = pcmcia_bus_suspend,
	.resume = pcmcia_bus_resume,
1348 1349
};

1350
static int __devinit pcmcia_bus_add_socket(struct device *dev,
1351
					   struct class_interface *class_intf)
L
Linus Torvalds 已提交
1352
{
1353
	struct pcmcia_socket *socket = dev_get_drvdata(dev);
L
Linus Torvalds 已提交
1354 1355
	int ret;

1356 1357
	socket = pcmcia_get_socket(socket);
	if (!socket) {
1358 1359
		dev_printk(KERN_ERR, dev,
			   "PCMCIA obtaining reference to socket failed\n");
L
Linus Torvalds 已提交
1360 1361 1362
		return -ENODEV;
	}

1363 1364 1365 1366 1367 1368 1369
	ret = sysfs_create_bin_file(&dev->kobj, &pccard_cis_attr);
	if (ret) {
		dev_printk(KERN_ERR, dev, "PCMCIA registration failed\n");
		pcmcia_put_socket(socket);
		return ret;
	}

1370
#ifdef CONFIG_PCMCIA_IOCTL
1371
	init_waitqueue_head(&socket->queue);
1372
#endif
1373 1374 1375
	INIT_LIST_HEAD(&socket->devices_list);
	memset(&socket->pcmcia_state, 0, sizeof(u8));
	socket->device_count = 0;
L
Linus Torvalds 已提交
1376

1377
	ret = pccard_register_pcmcia(socket, &pcmcia_bus_callback);
L
Linus Torvalds 已提交
1378
	if (ret) {
1379
		dev_printk(KERN_ERR, dev, "PCMCIA registration failed\n");
1380
		pcmcia_put_socket(socket);
D
Dominik Brodowski 已提交
1381
		return ret;
L
Linus Torvalds 已提交
1382 1383 1384 1385 1386
	}

	return 0;
}

1387
static void pcmcia_bus_remove_socket(struct device *dev,
1388
				     struct class_interface *class_intf)
L
Linus Torvalds 已提交
1389
{
1390
	struct pcmcia_socket *socket = dev_get_drvdata(dev);
L
Linus Torvalds 已提交
1391

1392
	if (!socket)
L
Linus Torvalds 已提交
1393 1394
		return;

D
Dominik Brodowski 已提交
1395
	mutex_lock(&socket->ops_mutex);
1396
	socket->pcmcia_state.dead = 1;
D
Dominik Brodowski 已提交
1397
	mutex_unlock(&socket->ops_mutex);
1398

L
Linus Torvalds 已提交
1399 1400
	pccard_register_pcmcia(socket, NULL);

1401
	/* unregister any unbound devices */
1402
	mutex_lock(&socket->skt_mutex);
1403
	pcmcia_card_remove(socket, NULL);
1404
	release_cis_mem(socket);
1405
	mutex_unlock(&socket->skt_mutex);
1406

1407 1408
	sysfs_remove_bin_file(&dev->kobj, &pccard_cis_attr);

1409
	pcmcia_put_socket(socket);
L
Linus Torvalds 已提交
1410 1411 1412 1413 1414 1415

	return;
}


/* the pcmcia_bus_interface is used to handle pcmcia socket devices */
1416
static struct class_interface pcmcia_bus_interface __refdata = {
L
Linus Torvalds 已提交
1417
	.class = &pcmcia_socket_class,
1418 1419
	.add_dev = &pcmcia_bus_add_socket,
	.remove_dev = &pcmcia_bus_remove_socket,
L
Linus Torvalds 已提交
1420 1421 1422
};


1423
struct bus_type pcmcia_bus_type = {
L
Linus Torvalds 已提交
1424
	.name = "pcmcia",
1425
	.uevent = pcmcia_bus_uevent,
L
Linus Torvalds 已提交
1426 1427
	.match = pcmcia_bus_match,
	.dev_attrs = pcmcia_dev_attrs,
1428 1429
	.probe = pcmcia_device_probe,
	.remove = pcmcia_device_remove,
1430 1431
	.suspend = pcmcia_dev_suspend,
	.resume = pcmcia_dev_resume,
L
Linus Torvalds 已提交
1432 1433 1434 1435 1436
};


static int __init init_pcmcia_bus(void)
{
1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450
	int ret;

	ret = bus_register(&pcmcia_bus_type);
	if (ret < 0) {
		printk(KERN_WARNING "pcmcia: bus_register error: %d\n", ret);
		return ret;
	}
	ret = class_interface_register(&pcmcia_bus_interface);
	if (ret < 0) {
		printk(KERN_WARNING
			"pcmcia: class_interface_register error: %d\n", ret);
		bus_unregister(&pcmcia_bus_type);
		return ret;
	}
L
Linus Torvalds 已提交
1451

1452
	pcmcia_setup_ioctl();
L
Linus Torvalds 已提交
1453 1454 1455

	return 0;
}
D
Dominik Brodowski 已提交
1456
fs_initcall(init_pcmcia_bus); /* one level after subsys_initcall so that
L
Linus Torvalds 已提交
1457 1458 1459 1460 1461
			       * pcmcia_socket_class is already registered */


static void __exit exit_pcmcia_bus(void)
{
1462
	pcmcia_cleanup_ioctl();
L
Linus Torvalds 已提交
1463

1464
	class_interface_unregister(&pcmcia_bus_interface);
L
Linus Torvalds 已提交
1465 1466 1467 1468 1469 1470 1471

	bus_unregister(&pcmcia_bus_type);
}
module_exit(exit_pcmcia_bus);


MODULE_ALIAS("ds");