rsrc_nonstatic.c 25.0 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
/*
 * rsrc_nonstatic.c -- Resource management routines for !SS_CAP_STATIC_MAP sockets
 *
 * 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
 */

#include <linux/module.h>
#include <linux/moduleparam.h>
#include <linux/init.h>
#include <linux/interrupt.h>
#include <linux/kernel.h>
#include <linux/errno.h>
#include <linux/types.h>
#include <linux/slab.h>
#include <linux/ioport.h>
#include <linux/timer.h>
#include <linux/pci.h>
#include <linux/device.h>

#include <asm/irq.h>
#include <asm/io.h>

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

MODULE_AUTHOR("David A. Hinds, Dominik Brodowski");
MODULE_LICENSE("GPL");

/* Parameters that can be set with 'insmod' */

#define INT_MODULE_PARM(n, v) static int n = v; module_param(n, int, 0444)

INT_MODULE_PARM(probe_mem,	1);		/* memory probe? */
#ifdef CONFIG_PCMCIA_PROBE
INT_MODULE_PARM(probe_io,	1);		/* IO port probe? */
INT_MODULE_PARM(mem_limit,	0x10000);
#endif

/* for io_db and mem_db */
struct resource_map {
	u_long			base, num;
	struct resource_map	*next;
};

struct socket_data {
	struct resource_map		mem_db;
	struct resource_map		io_db;
	unsigned int			rsrc_mem_probe;
};

62
static DEFINE_MUTEX(rsrc_mutex);
L
Linus Torvalds 已提交
63 64 65 66 67 68 69 70 71 72 73
#define MEM_PROBE_LOW	(1 << 0)
#define MEM_PROBE_HIGH	(1 << 1)


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

    Linux resource management extensions

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

static struct resource *
74
make_resource(resource_size_t b, resource_size_t n, int flags, char *name)
L
Linus Torvalds 已提交
75
{
76
	struct resource *res = kzalloc(sizeof(*res), GFP_KERNEL);
L
Linus Torvalds 已提交
77 78 79 80 81 82 83 84 85 86 87

	if (res) {
		res->name = name;
		res->start = b;
		res->end = b + n - 1;
		res->flags = flags;
	}
	return res;
}

static struct resource *
88 89
claim_region(struct pcmcia_socket *s, resource_size_t base,
		resource_size_t size, int type, char *name)
L
Linus Torvalds 已提交
90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187
{
	struct resource *res, *parent;

	parent = type & IORESOURCE_MEM ? &iomem_resource : &ioport_resource;
	res = make_resource(base, size, type | IORESOURCE_BUSY, name);

	if (res) {
#ifdef CONFIG_PCI
		if (s && s->cb_dev)
			parent = pci_find_parent_resource(s->cb_dev, res);
#endif
		if (!parent || request_resource(parent, res)) {
			kfree(res);
			res = NULL;
		}
	}
	return res;
}

static void free_region(struct resource *res)
{
	if (res) {
		release_resource(res);
		kfree(res);
	}
}

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

    These manage the internal databases of available resources.

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

static int add_interval(struct resource_map *map, u_long base, u_long num)
{
    struct resource_map *p, *q;

    for (p = map; ; p = p->next) {
	if ((p != map) && (p->base+p->num-1 >= base))
	    return -1;
	if ((p->next == map) || (p->next->base > base+num-1))
	    break;
    }
    q = kmalloc(sizeof(struct resource_map), GFP_KERNEL);
    if (!q) return CS_OUT_OF_RESOURCE;
    q->base = base; q->num = num;
    q->next = p->next; p->next = q;
    return CS_SUCCESS;
}

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

static int sub_interval(struct resource_map *map, u_long base, u_long num)
{
    struct resource_map *p, *q;

    for (p = map; ; p = q) {
	q = p->next;
	if (q == map)
	    break;
	if ((q->base+q->num > base) && (base+num > q->base)) {
	    if (q->base >= base) {
		if (q->base+q->num <= base+num) {
		    /* Delete whole block */
		    p->next = q->next;
		    kfree(q);
		    /* don't advance the pointer yet */
		    q = p;
		} else {
		    /* Cut off bit from the front */
		    q->num = q->base + q->num - base - num;
		    q->base = base + num;
		}
	    } else if (q->base+q->num <= base+num) {
		/* Cut off bit from the end */
		q->num = base - q->base;
	    } else {
		/* Split the block into two pieces */
		p = kmalloc(sizeof(struct resource_map), GFP_KERNEL);
		if (!p) return CS_OUT_OF_RESOURCE;
		p->base = base+num;
		p->num = q->base+q->num - p->base;
		q->num = base - q->base;
		p->next = q->next ; q->next = p;
	    }
	}
    }
    return CS_SUCCESS;
}

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

    These routines examine a region of IO or memory addresses to
    determine what ranges might be genuinely available.

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

#ifdef CONFIG_PCMCIA_PROBE
188 189
static void do_io_probe(struct pcmcia_socket *s, unsigned int base,
			unsigned int num)
L
Linus Torvalds 已提交
190 191 192
{
    struct resource *res;
    struct socket_data *s_data = s->resource_data;
193
    unsigned int i, j, bad;
L
Linus Torvalds 已提交
194 195 196
    int any;
    u_char *b, hole, most;

197
    printk(KERN_INFO "cs: IO port probe %#x-%#x:",
L
Linus Torvalds 已提交
198 199 200
	   base, base+num-1);

    /* First, what does a floating port look like? */
201
    b = kzalloc(256, GFP_KERNEL);
L
Linus Torvalds 已提交
202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235
    if (!b) {
            printk(KERN_ERR "do_io_probe: unable to kmalloc 256 bytes");
            return;
    }
    for (i = base, most = 0; i < base+num; i += 8) {
	res = claim_region(NULL, i, 8, IORESOURCE_IO, "PCMCIA IO probe");
	if (!res)
	    continue;
	hole = inb(i);
	for (j = 1; j < 8; j++)
	    if (inb(i+j) != hole) break;
	free_region(res);
	if ((j == 8) && (++b[hole] > b[most]))
	    most = hole;
	if (b[most] == 127) break;
    }
    kfree(b);

    bad = any = 0;
    for (i = base; i < base+num; i += 8) {
	res = claim_region(NULL, i, 8, IORESOURCE_IO, "PCMCIA IO probe");
	if (!res)
	    continue;
	for (j = 0; j < 8; j++)
	    if (inb(i+j) != most) break;
	free_region(res);
	if (j < 8) {
	    if (!any)
		printk(" excluding");
	    if (!bad)
		bad = any = i;
	} else {
	    if (bad) {
		sub_interval(&s_data->io_db, bad, i-bad);
236
		printk(" %#x-%#x", bad, i-1);
L
Linus Torvalds 已提交
237 238 239 240 241 242 243 244 245 246
		bad = 0;
	    }
	}
    }
    if (bad) {
	if ((num > 16) && (bad == base) && (i == base+num)) {
	    printk(" nothing: probe failed.\n");
	    return;
	} else {
	    sub_interval(&s_data->io_db, bad, i-bad);
247
	    printk(" %#x-%#x", bad, i-1);
L
Linus Torvalds 已提交
248 249 250 251 252 253 254 255 256 257 258 259 260 261 262
	}
    }

    printk(any ? "\n" : " clean.\n");
}
#endif

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

    This is tricky... when we set up CIS memory, we try to validate
    the memory window space allocations.

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

/* Validation function for cards with a valid CIS */
263 264
static int readable(struct pcmcia_socket *s, struct resource *res,
		    unsigned int *count)
L
Linus Torvalds 已提交
265 266 267 268 269 270
{
	int ret = -1;

	s->cis_mem.res = res;
	s->cis_virt = ioremap(res->start, s->map_size);
	if (s->cis_virt) {
271
		ret = pccard_validate_cis(s, BIND_FN_ALL, count);
L
Linus Torvalds 已提交
272 273 274 275 276 277
		/* invalidate mapping and CIS cache */
		iounmap(s->cis_virt);
		s->cis_virt = NULL;
		destroy_cis_cache(s);
	}
	s->cis_mem.res = NULL;
278
	if ((ret != 0) || (count == 0))
L
Linus Torvalds 已提交
279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318
		return 0;
	return 1;
}

/* Validation function for simple memory cards */
static int checksum(struct pcmcia_socket *s, struct resource *res)
{
	pccard_mem_map map;
	int i, a = 0, b = -1, d;
	void __iomem *virt;

	virt = ioremap(res->start, s->map_size);
	if (virt) {
		map.map = 0;
		map.flags = MAP_ACTIVE;
		map.speed = 0;
		map.res = res;
		map.card_start = 0;
		s->ops->set_mem_map(s, &map);

		/* Don't bother checking every word... */
		for (i = 0; i < s->map_size; i += 44) {
			d = readl(virt+i);
			a += d;
			b &= d;
		}

		map.flags = 0;
		s->ops->set_mem_map(s, &map);

		iounmap(virt);
	}

	return (b == -1) ? -1 : (a>>1);
}

static int
cis_readable(struct pcmcia_socket *s, unsigned long base, unsigned long size)
{
	struct resource *res1, *res2;
319
	unsigned int info1, info2;
L
Linus Torvalds 已提交
320 321 322 323 324 325 326 327 328 329 330 331 332
	int ret = 0;

	res1 = claim_region(s, base, size/2, IORESOURCE_MEM, "cs memory probe");
	res2 = claim_region(s, base + size/2, size/2, IORESOURCE_MEM, "cs memory probe");

	if (res1 && res2) {
		ret = readable(s, res1, &info1);
		ret += readable(s, res2, &info2);
	}

	free_region(res2);
	free_region(res1);

333
	return (ret == 2) && (info1 == info2);
L
Linus Torvalds 已提交
334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372
}

static int
checksum_match(struct pcmcia_socket *s, unsigned long base, unsigned long size)
{
	struct resource *res1, *res2;
	int a = -1, b = -1;

	res1 = claim_region(s, base, size/2, IORESOURCE_MEM, "cs memory probe");
	res2 = claim_region(s, base + size/2, size/2, IORESOURCE_MEM, "cs memory probe");

	if (res1 && res2) {
		a = checksum(s, res1);
		b = checksum(s, res2);
	}

	free_region(res2);
	free_region(res1);

	return (a == b) && (a >= 0);
}

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

    The memory probe.  If the memory list includes a 64K-aligned block
    below 1MB, we probe in 64K chunks, and as soon as we accumulate at
    least mem_limit free space, we quit.

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

static int do_mem_probe(u_long base, u_long num, struct pcmcia_socket *s)
{
    struct socket_data *s_data = s->resource_data;
    u_long i, j, bad, fail, step;

    printk(KERN_INFO "cs: memory probe 0x%06lx-0x%06lx:",
	   base, base+num-1);
    bad = fail = 0;
    step = (num < 0x20000) ? 0x2000 : ((num>>4) & ~0x1fff);
373 374 375
    /* don't allow too large steps */
    if (step > 0x800000)
	step = 0x800000;
L
Linus Torvalds 已提交
376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407
    /* cis_readable wants to map 2x map_size */
    if (step < 2 * s->map_size)
	step = 2 * s->map_size;
    for (i = j = base; i < base+num; i = j + step) {
	if (!fail) {
	    for (j = i; j < base+num; j += step) {
		if (cis_readable(s, j, step))
		    break;
	    }
	    fail = ((i == base) && (j == base+num));
	}
	if (fail) {
	    for (j = i; j < base+num; j += 2*step)
		if (checksum_match(s, j, step) &&
		    checksum_match(s, j + step, step))
		    break;
	}
	if (i != j) {
	    if (!bad) printk(" excluding");
	    printk(" %#05lx-%#05lx", i, j-1);
	    sub_interval(&s_data->mem_db, i, j-i);
	    bad += j-i;
	}
    }
    printk(bad ? "\n" : " clean.\n");
    return (num - bad);
}

#ifdef CONFIG_PCMCIA_PROBE

static u_long inv_probe(struct resource_map *m, struct pcmcia_socket *s)
{
408 409 410 411 412 413 414 415 416 417 418 419 420
	struct socket_data *s_data = s->resource_data;
	u_long ok;
	if (m == &s_data->mem_db)
		return 0;
	ok = inv_probe(m->next, s);
	if (ok) {
		if (m->base >= 0x100000)
			sub_interval(&s_data->mem_db, m->base, m->num);
		return ok;
	}
	if (m->base < 0x100000)
		return 0;
	return do_mem_probe(m->base, m->num, s);
L
Linus Torvalds 已提交
421 422
}

423
static int validate_mem(struct pcmcia_socket *s, unsigned int probe_mask)
L
Linus Torvalds 已提交
424
{
425 426 427 428
	struct resource_map *m, mm;
	static unsigned char order[] = { 0xd0, 0xe0, 0xc0, 0xf0 };
	unsigned long b, i, ok = 0;
	struct socket_data *s_data = s->resource_data;
L
Linus Torvalds 已提交
429

430 431 432 433 434 435 436
	/* We do up to four passes through the list */
	if (probe_mask & MEM_PROBE_HIGH) {
		if (inv_probe(s_data->mem_db.next, s) > 0)
			return 0;
		printk(KERN_NOTICE "cs: warning: no high memory space "
		       "available!\n");
		return -ENODEV;
L
Linus Torvalds 已提交
437
	}
438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457

	for (m = s_data->mem_db.next; m != &s_data->mem_db; m = mm.next) {
		mm = *m;
		/* Only probe < 1 MB */
		if (mm.base >= 0x100000)
			continue;
		if ((mm.base | mm.num) & 0xffff) {
			ok += do_mem_probe(mm.base, mm.num, s);
			continue;
		}
		/* Special probe for 64K-aligned block */
		for (i = 0; i < 4; i++) {
			b = order[i] << 12;
			if ((b >= mm.base) && (b+0x10000 <= mm.base+mm.num)) {
				if (ok >= mem_limit)
					sub_interval(&s_data->mem_db, b, 0x10000);
				else
					ok += do_mem_probe(b, 0x10000, s);
			}
		}
L
Linus Torvalds 已提交
458
	}
459 460 461 462 463

	if (ok > 0)
		return 0;

	return -ENODEV;
L
Linus Torvalds 已提交
464 465 466 467
}

#else /* CONFIG_PCMCIA_PROBE */

A
Andrew Morton 已提交
468
static int validate_mem(struct pcmcia_socket *s, unsigned int probe_mask)
L
Linus Torvalds 已提交
469 470 471
{
	struct resource_map *m, mm;
	struct socket_data *s_data = s->resource_data;
A
Andrew Morton 已提交
472
	unsigned long ok = 0;
L
Linus Torvalds 已提交
473 474 475

	for (m = s_data->mem_db.next; m != &s_data->mem_db; m = mm.next) {
		mm = *m;
A
Andrew Morton 已提交
476
		ok += do_mem_probe(mm.base, mm.num, s);
L
Linus Torvalds 已提交
477
	}
A
Andrew Morton 已提交
478 479 480
	if (ok > 0)
		return 0;
	return -ENODEV;
L
Linus Torvalds 已提交
481 482 483 484 485 486
}

#endif /* CONFIG_PCMCIA_PROBE */


/*
487
 * Locking note: Must be called with skt_mutex held!
L
Linus Torvalds 已提交
488
 */
489
static int pcmcia_nonstatic_validate_mem(struct pcmcia_socket *s)
L
Linus Torvalds 已提交
490 491
{
	struct socket_data *s_data = s->resource_data;
492 493 494 495 496
	unsigned int probe_mask = MEM_PROBE_LOW;
	int ret = 0;

	if (!probe_mem)
		return 0;
L
Linus Torvalds 已提交
497

498
	mutex_lock(&rsrc_mutex);
L
Linus Torvalds 已提交
499

500 501
	if (s->features & SS_CAP_PAGE_REGS)
		probe_mask = MEM_PROBE_HIGH;
L
Linus Torvalds 已提交
502

503 504 505 506
	if (probe_mask & ~s_data->rsrc_mem_probe) {
		if (s->state & SOCKET_PRESENT)
			ret = validate_mem(s, probe_mask);
		if (!ret)
L
Linus Torvalds 已提交
507
			s_data->rsrc_mem_probe |= probe_mask;
508
	}
L
Linus Torvalds 已提交
509

510
	mutex_unlock(&rsrc_mutex);
L
Linus Torvalds 已提交
511

512
	return ret;
L
Linus Torvalds 已提交
513 514 515 516 517 518 519 520 521 522
}

struct pcmcia_align_data {
	unsigned long	mask;
	unsigned long	offset;
	struct resource_map	*map;
};

static void
pcmcia_common_align(void *align_data, struct resource *res,
523
			resource_size_t size, resource_size_t align)
L
Linus Torvalds 已提交
524 525
{
	struct pcmcia_align_data *data = align_data;
526
	resource_size_t start;
L
Linus Torvalds 已提交
527 528 529 530 531 532 533 534 535 536
	/*
	 * Ensure that we have the correct start address
	 */
	start = (res->start & ~data->mask) + data->offset;
	if (start < res->start)
		start += data->mask + 1;
	res->start = start;
}

static void
537 538
pcmcia_align(void *align_data, struct resource *res, resource_size_t size,
		resource_size_t align)
L
Linus Torvalds 已提交
539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587
{
	struct pcmcia_align_data *data = align_data;
	struct resource_map *m;

	pcmcia_common_align(data, res, size, align);

	for (m = data->map->next; m != data->map; m = m->next) {
		unsigned long start = m->base;
		unsigned long end = m->base + m->num - 1;

		/*
		 * If the lower resources are not available, try aligning
		 * to this entry of the resource database to see if it'll
		 * fit here.
		 */
		if (res->start < start) {
			res->start = start;
			pcmcia_common_align(data, res, size, align);
		}

		/*
		 * If we're above the area which was passed in, there's
		 * no point proceeding.
		 */
		if (res->start >= res->end)
			break;

		if ((res->start + size - 1) <= end)
			break;
	}

	/*
	 * If we failed to find something suitable, ensure we fail.
	 */
	if (m == data->map)
		res->start = res->end;
}

/*
 * Adjust an existing IO region allocation, but making sure that we don't
 * encroach outside the resources which the user supplied.
 */
static int nonstatic_adjust_io_region(struct resource *res, unsigned long r_start,
				      unsigned long r_end, struct pcmcia_socket *s)
{
	struct resource_map *m;
	struct socket_data *s_data = s->resource_data;
	int ret = -ENOMEM;

588
	mutex_lock(&rsrc_mutex);
L
Linus Torvalds 已提交
589 590 591 592 593 594 595 596 597 598
	for (m = s_data->io_db.next; m != &s_data->io_db; m = m->next) {
		unsigned long start = m->base;
		unsigned long end = m->base + m->num - 1;

		if (start > r_start || r_end > end)
			continue;

		ret = adjust_resource(res, r_start, r_end - r_start + 1);
		break;
	}
599
	mutex_unlock(&rsrc_mutex);
L
Linus Torvalds 已提交
600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616

	return ret;
}

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

    These find ranges of I/O ports or memory addresses that are not
    currently allocated by other devices.

    The 'align' field should reflect the number of bits of address
    that need to be preserved from the initial value of *base.  It
    should be a power of two, greater than or equal to 'num'.  A value
    of 0 means that all bits of *base are significant.  *base should
    also be strictly less than 'align'.

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

D
Dominik Brodowski 已提交
617
static struct resource *nonstatic_find_io_region(unsigned long base, int num,
L
Linus Torvalds 已提交
618 619
		   unsigned long align, struct pcmcia_socket *s)
{
620
	struct resource *res = make_resource(0, num, IORESOURCE_IO, s->dev.bus_id);
L
Linus Torvalds 已提交
621 622 623 624 625 626 627 628 629 630 631 632
	struct socket_data *s_data = s->resource_data;
	struct pcmcia_align_data data;
	unsigned long min = base;
	int ret;

	if (align == 0)
		align = 0x10000;

	data.mask = align - 1;
	data.offset = base & data.mask;
	data.map = &s_data->io_db;

633
	mutex_lock(&rsrc_mutex);
L
Linus Torvalds 已提交
634 635 636 637 638 639 640 641
#ifdef CONFIG_PCI
	if (s->cb_dev) {
		ret = pci_bus_alloc_resource(s->cb_dev->bus, res, num, 1,
					     min, 0, pcmcia_align, &data);
	} else
#endif
		ret = allocate_resource(&ioport_resource, res, num, min, ~0UL,
					1, pcmcia_align, &data);
642
	mutex_unlock(&rsrc_mutex);
L
Linus Torvalds 已提交
643 644 645 646 647 648 649 650

	if (ret != 0) {
		kfree(res);
		res = NULL;
	}
	return res;
}

D
Dominik Brodowski 已提交
651 652
static struct resource * nonstatic_find_mem_region(u_long base, u_long num,
		u_long align, int low, struct pcmcia_socket *s)
L
Linus Torvalds 已提交
653
{
654
	struct resource *res = make_resource(0, num, IORESOURCE_MEM, s->dev.bus_id);
L
Linus Torvalds 已提交
655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674
	struct socket_data *s_data = s->resource_data;
	struct pcmcia_align_data data;
	unsigned long min, max;
	int ret, i;

	low = low || !(s->features & SS_CAP_PAGE_REGS);

	data.mask = align - 1;
	data.offset = base & data.mask;
	data.map = &s_data->mem_db;

	for (i = 0; i < 2; i++) {
		if (low) {
			max = 0x100000UL;
			min = base < max ? base : 0;
		} else {
			max = ~0UL;
			min = 0x100000UL + base;
		}

675
		mutex_lock(&rsrc_mutex);
L
Linus Torvalds 已提交
676 677 678 679 680 681 682 683 684
#ifdef CONFIG_PCI
		if (s->cb_dev) {
			ret = pci_bus_alloc_resource(s->cb_dev->bus, res, num,
						     1, min, 0,
						     pcmcia_align, &data);
		} else
#endif
			ret = allocate_resource(&iomem_resource, res, num, min,
						max, 1, pcmcia_align, &data);
685
		mutex_unlock(&rsrc_mutex);
L
Linus Torvalds 已提交
686 687 688 689 690 691 692 693 694 695 696 697 698
		if (ret == 0 || low)
			break;
		low = 1;
	}

	if (ret != 0) {
		kfree(res);
		res = NULL;
	}
	return res;
}


699
static int adjust_memory(struct pcmcia_socket *s, unsigned int action, unsigned long start, unsigned long end)
L
Linus Torvalds 已提交
700 701
{
	struct socket_data *data = s->resource_data;
702 703
	unsigned long size = end - start + 1;
	int ret = 0;
L
Linus Torvalds 已提交
704

705
	if (end < start)
706
		return -EINVAL;
L
Linus Torvalds 已提交
707

708
	mutex_lock(&rsrc_mutex);
709
	switch (action) {
L
Linus Torvalds 已提交
710
	case ADD_MANAGED_RESOURCE:
711
		ret = add_interval(&data->mem_db, start, size);
L
Linus Torvalds 已提交
712 713
		break;
	case REMOVE_MANAGED_RESOURCE:
714 715
		ret = sub_interval(&data->mem_db, start, size);
		if (!ret) {
L
Linus Torvalds 已提交
716 717 718 719 720 721 722 723
			struct pcmcia_socket *socket;
			down_read(&pcmcia_socket_list_rwsem);
			list_for_each_entry(socket, &pcmcia_socket_list, socket_list)
				release_cis_mem(socket);
			up_read(&pcmcia_socket_list_rwsem);
		}
		break;
	default:
724
		ret = -EINVAL;
L
Linus Torvalds 已提交
725
	}
726
	mutex_unlock(&rsrc_mutex);
L
Linus Torvalds 已提交
727 728 729 730 731

	return ret;
}


732
static int adjust_io(struct pcmcia_socket *s, unsigned int action, unsigned long start, unsigned long end)
L
Linus Torvalds 已提交
733 734
{
	struct socket_data *data = s->resource_data;
735 736
	unsigned long size = end - start + 1;
	int ret = 0;
L
Linus Torvalds 已提交
737

738
	if (end < start)
739 740 741 742
		return -EINVAL;

	if (end > IO_SPACE_LIMIT)
		return -EINVAL;
L
Linus Torvalds 已提交
743

744
	mutex_lock(&rsrc_mutex);
745
	switch (action) {
L
Linus Torvalds 已提交
746
	case ADD_MANAGED_RESOURCE:
747 748
		if (add_interval(&data->io_db, start, size) != 0) {
			ret = -EBUSY;
L
Linus Torvalds 已提交
749 750 751 752
			break;
		}
#ifdef CONFIG_PCMCIA_PROBE
		if (probe_io)
753
			do_io_probe(s, start, size);
L
Linus Torvalds 已提交
754 755 756
#endif
		break;
	case REMOVE_MANAGED_RESOURCE:
757
		sub_interval(&data->io_db, start, size);
L
Linus Torvalds 已提交
758 759
		break;
	default:
760
		ret = -EINVAL;
L
Linus Torvalds 已提交
761 762
		break;
	}
763
	mutex_unlock(&rsrc_mutex);
L
Linus Torvalds 已提交
764 765 766 767 768

	return ret;
}


769 770 771 772 773 774 775 776 777
#ifdef CONFIG_PCI
static int nonstatic_autoadd_resources(struct pcmcia_socket *s)
{
	struct resource *res;
	int i, done = 0;

	if (!s->cb_dev || !s->cb_dev->bus)
		return -ENODEV;

B
Brian Gerst 已提交
778
#if defined(CONFIG_X86)
779 780 781 782 783 784 785 786 787 788
	/* If this is the root bus, the risk of hitting
	 * some strange system devices which aren't protected
	 * by either ACPI resource tables or properly requested
	 * resources is too big. Therefore, don't do auto-adding
	 * of resources at the moment.
	 */
	if (s->cb_dev->bus->number == 0)
		return -EINVAL;
#endif

789 790 791 792 793 794 795 796
	for (i=0; i < PCI_BUS_NUM_RESOURCES; i++) {
		res = s->cb_dev->bus->resource[i];
		if (!res)
			continue;

		if (res->flags & IORESOURCE_IO) {
			if (res == &ioport_resource)
				continue;
797 798 799 800
			printk(KERN_INFO "pcmcia: parent PCI bridge I/O "
				"window: 0x%llx - 0x%llx\n",
				(unsigned long long)res->start,
				(unsigned long long)res->end);
801 802 803 804 805 806 807 808
			if (!adjust_io(s, ADD_MANAGED_RESOURCE, res->start, res->end))
				done |= IORESOURCE_IO;

		}

		if (res->flags & IORESOURCE_MEM) {
			if (res == &iomem_resource)
				continue;
809 810 811 812
			printk(KERN_INFO "pcmcia: parent PCI bridge Memory "
				"window: 0x%llx - 0x%llx\n",
				(unsigned long long)res->start,
				(unsigned long long)res->end);
813 814 815 816 817 818 819
			if (!adjust_memory(s, ADD_MANAGED_RESOURCE, res->start, res->end))
				done |= IORESOURCE_MEM;
		}
	}

	/* if we got at least one of IO, and one of MEM, we can be glad and
	 * activate the PCMCIA subsystem */
820
	if (done == (IORESOURCE_MEM | IORESOURCE_IO))
821 822 823 824 825 826 827 828 829 830 831 832 833 834 835
		s->resource_setup_done = 1;

	return 0;
}

#else

static inline int nonstatic_autoadd_resources(struct pcmcia_socket *s)
{
	return -ENODEV;
}

#endif


L
Linus Torvalds 已提交
836 837 838 839
static int nonstatic_init(struct pcmcia_socket *s)
{
	struct socket_data *data;

840
	data = kzalloc(sizeof(struct socket_data), GFP_KERNEL);
L
Linus Torvalds 已提交
841 842 843 844 845 846 847 848
	if (!data)
		return -ENOMEM;

	data->mem_db.next = &data->mem_db;
	data->io_db.next = &data->io_db;

	s->resource_data = (void *) data;

849 850
	nonstatic_autoadd_resources(s);

L
Linus Torvalds 已提交
851 852 853 854 855 856 857 858
	return 0;
}

static void nonstatic_release_resource_db(struct pcmcia_socket *s)
{
	struct socket_data *data = s->resource_data;
	struct resource_map *p, *q;

859
	mutex_lock(&rsrc_mutex);
L
Linus Torvalds 已提交
860 861 862 863 864 865 866 867
	for (p = data->mem_db.next; p != &data->mem_db; p = q) {
		q = p->next;
		kfree(p);
	}
	for (p = data->io_db.next; p != &data->io_db; p = q) {
		q = p->next;
		kfree(p);
	}
868
	mutex_unlock(&rsrc_mutex);
L
Linus Torvalds 已提交
869 870 871 872 873 874 875 876
}


struct pccard_resource_ops pccard_nonstatic_ops = {
	.validate_mem = pcmcia_nonstatic_validate_mem,
	.adjust_io_region = nonstatic_adjust_io_region,
	.find_io = nonstatic_find_io_region,
	.find_mem = nonstatic_find_mem_region,
877 878
	.add_io = adjust_io,
	.add_mem = adjust_memory,
L
Linus Torvalds 已提交
879 880 881 882 883 884 885 886
	.init = nonstatic_init,
	.exit = nonstatic_release_resource_db,
};
EXPORT_SYMBOL(pccard_nonstatic_ops);


/* sysfs interface to the resource database */

887 888
static ssize_t show_io_db(struct device *dev,
			  struct device_attribute *attr, char *buf)
L
Linus Torvalds 已提交
889
{
890
	struct pcmcia_socket *s = dev_get_drvdata(dev);
L
Linus Torvalds 已提交
891 892 893 894
	struct socket_data *data;
	struct resource_map *p;
	ssize_t ret = 0;

895
	mutex_lock(&rsrc_mutex);
L
Linus Torvalds 已提交
896 897 898 899 900 901 902 903 904 905 906
	data = s->resource_data;

	for (p = data->io_db.next; p != &data->io_db; p = p->next) {
		if (ret > (PAGE_SIZE - 10))
			continue;
		ret += snprintf (&buf[ret], (PAGE_SIZE - ret - 1),
				 "0x%08lx - 0x%08lx\n",
				 ((unsigned long) p->base),
				 ((unsigned long) p->base + p->num - 1));
	}

907
	mutex_unlock(&rsrc_mutex);
L
Linus Torvalds 已提交
908 909 910
	return (ret);
}

911 912 913
static ssize_t store_io_db(struct device *dev,
			   struct device_attribute *attr,
			   const char *buf, size_t count)
L
Linus Torvalds 已提交
914
{
915
	struct pcmcia_socket *s = dev_get_drvdata(dev);
L
Linus Torvalds 已提交
916
	unsigned long start_addr, end_addr;
917
	unsigned int add = ADD_MANAGED_RESOURCE;
L
Linus Torvalds 已提交
918 919 920 921 922
	ssize_t ret = 0;

	ret = sscanf (buf, "+ 0x%lx - 0x%lx", &start_addr, &end_addr);
	if (ret != 2) {
		ret = sscanf (buf, "- 0x%lx - 0x%lx", &start_addr, &end_addr);
923
		add = REMOVE_MANAGED_RESOURCE;
L
Linus Torvalds 已提交
924 925
		if (ret != 2) {
			ret = sscanf (buf, "0x%lx - 0x%lx", &start_addr, &end_addr);
926
			add = ADD_MANAGED_RESOURCE;
L
Linus Torvalds 已提交
927 928 929 930
			if (ret != 2)
				return -EINVAL;
		}
	}
931
	if (end_addr < start_addr)
L
Linus Torvalds 已提交
932 933
		return -EINVAL;

934
	ret = adjust_io(s, add, start_addr, end_addr);
935 936
	if (!ret)
		s->resource_setup_new = 1;
L
Linus Torvalds 已提交
937 938 939

	return ret ? ret : count;
}
940
static DEVICE_ATTR(available_resources_io, 0600, show_io_db, store_io_db);
L
Linus Torvalds 已提交
941

942 943
static ssize_t show_mem_db(struct device *dev,
			   struct device_attribute *attr, char *buf)
L
Linus Torvalds 已提交
944
{
945
	struct pcmcia_socket *s = dev_get_drvdata(dev);
L
Linus Torvalds 已提交
946 947 948 949
	struct socket_data *data;
	struct resource_map *p;
	ssize_t ret = 0;

950
	mutex_lock(&rsrc_mutex);
L
Linus Torvalds 已提交
951 952 953 954 955 956 957 958 959 960 961
	data = s->resource_data;

	for (p = data->mem_db.next; p != &data->mem_db; p = p->next) {
		if (ret > (PAGE_SIZE - 10))
			continue;
		ret += snprintf (&buf[ret], (PAGE_SIZE - ret - 1),
				 "0x%08lx - 0x%08lx\n",
				 ((unsigned long) p->base),
				 ((unsigned long) p->base + p->num - 1));
	}

962
	mutex_unlock(&rsrc_mutex);
L
Linus Torvalds 已提交
963 964 965
	return (ret);
}

966 967 968
static ssize_t store_mem_db(struct device *dev,
			    struct device_attribute *attr,
			    const char *buf, size_t count)
L
Linus Torvalds 已提交
969
{
970
	struct pcmcia_socket *s = dev_get_drvdata(dev);
L
Linus Torvalds 已提交
971
	unsigned long start_addr, end_addr;
972
	unsigned int add = ADD_MANAGED_RESOURCE;
L
Linus Torvalds 已提交
973 974 975 976 977
	ssize_t ret = 0;

	ret = sscanf (buf, "+ 0x%lx - 0x%lx", &start_addr, &end_addr);
	if (ret != 2) {
		ret = sscanf (buf, "- 0x%lx - 0x%lx", &start_addr, &end_addr);
978
		add = REMOVE_MANAGED_RESOURCE;
L
Linus Torvalds 已提交
979 980
		if (ret != 2) {
			ret = sscanf (buf, "0x%lx - 0x%lx", &start_addr, &end_addr);
981
			add = ADD_MANAGED_RESOURCE;
L
Linus Torvalds 已提交
982 983 984 985
			if (ret != 2)
				return -EINVAL;
		}
	}
986
	if (end_addr < start_addr)
L
Linus Torvalds 已提交
987 988
		return -EINVAL;

989
	ret = adjust_memory(s, add, start_addr, end_addr);
990 991
	if (!ret)
		s->resource_setup_new = 1;
L
Linus Torvalds 已提交
992 993 994

	return ret ? ret : count;
}
995
static DEVICE_ATTR(available_resources_mem, 0600, show_mem_db, store_mem_db);
L
Linus Torvalds 已提交
996

997 998 999
static struct attribute *pccard_rsrc_attributes[] = {
	&dev_attr_available_resources_io.attr,
	&dev_attr_available_resources_mem.attr,
L
Linus Torvalds 已提交
1000 1001 1002
	NULL,
};

1003 1004 1005 1006
static const struct attribute_group rsrc_attributes = {
	.attrs = pccard_rsrc_attributes,
};

1007
static int __devinit pccard_sysfs_add_rsrc(struct device *dev,
1008
					   struct class_interface *class_intf)
L
Linus Torvalds 已提交
1009
{
1010
	struct pcmcia_socket *s = dev_get_drvdata(dev);
1011

L
Linus Torvalds 已提交
1012 1013
	if (s->resource_ops != &pccard_nonstatic_ops)
		return 0;
1014
	return sysfs_create_group(&dev->kobj, &rsrc_attributes);
L
Linus Torvalds 已提交
1015 1016
}

1017
static void __devexit pccard_sysfs_remove_rsrc(struct device *dev,
1018
					       struct class_interface *class_intf)
L
Linus Torvalds 已提交
1019
{
1020
	struct pcmcia_socket *s = dev_get_drvdata(dev);
L
Linus Torvalds 已提交
1021 1022 1023

	if (s->resource_ops != &pccard_nonstatic_ops)
		return;
1024
	sysfs_remove_group(&dev->kobj, &rsrc_attributes);
L
Linus Torvalds 已提交
1025 1026
}

1027
static struct class_interface pccard_rsrc_interface __refdata = {
L
Linus Torvalds 已提交
1028
	.class = &pcmcia_socket_class,
1029 1030
	.add_dev = &pccard_sysfs_add_rsrc,
	.remove_dev = __devexit_p(&pccard_sysfs_remove_rsrc),
L
Linus Torvalds 已提交
1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044
};

static int __init nonstatic_sysfs_init(void)
{
	return class_interface_register(&pccard_rsrc_interface);
}

static void __exit nonstatic_sysfs_exit(void)
{
	class_interface_unregister(&pccard_rsrc_interface);
}

module_init(nonstatic_sysfs_init);
module_exit(nonstatic_sysfs_exit);