resource.c 16.1 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3
/*
 * resource.c - Contains functions for registering and analyzing resource information
 *
4
 * based on isapnp.c resource management (c) Jaroslav Kysela <perex@perex.cz>
L
Linus Torvalds 已提交
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
 * Copyright 2003 Adam Belay <ambx1@neo.rr.com>
 */

#include <linux/module.h>
#include <linux/errno.h>
#include <linux/interrupt.h>
#include <linux/kernel.h>
#include <asm/io.h>
#include <asm/dma.h>
#include <asm/irq.h>
#include <linux/pci.h>
#include <linux/ioport.h>
#include <linux/init.h>

#include <linux/pnp.h>
#include "base.h"

B
Bjorn Helgaas 已提交
22 23 24 25
static int pnp_reserve_irq[16] = {[0 ... 15] = -1 };	/* reserve (don't use) some IRQ */
static int pnp_reserve_dma[8] = {[0 ... 7] = -1 };	/* reserve (don't use) some DMA */
static int pnp_reserve_io[16] = {[0 ... 15] = -1 };	/* reserve (don't use) some I/O region */
static int pnp_reserve_mem[16] = {[0 ... 15] = -1 };	/* reserve (don't use) some memory region */
L
Linus Torvalds 已提交
26 27 28 29 30

/*
 * option registration
 */

31
struct pnp_option *pnp_build_option(int priority)
L
Linus Torvalds 已提交
32 33 34 35 36 37 38 39 40 41 42 43 44 45
{
	struct pnp_option *option = pnp_alloc(sizeof(struct pnp_option));

	if (!option)
		return NULL;

	option->priority = priority & 0xff;
	/* make sure the priority is valid */
	if (option->priority > PNP_RES_PRIORITY_FUNCTIONAL)
		option->priority = PNP_RES_PRIORITY_INVALID;

	return option;
}

B
Bjorn Helgaas 已提交
46
struct pnp_option *pnp_register_independent_option(struct pnp_dev *dev)
L
Linus Torvalds 已提交
47 48
{
	struct pnp_option *option;
B
Bjorn Helgaas 已提交
49

L
Linus Torvalds 已提交
50 51 52 53
	option = pnp_build_option(PNP_RES_PRIORITY_PREFERRED);

	/* this should never happen but if it does we'll try to continue */
	if (dev->independent)
54
		dev_err(&dev->dev, "independent resource already registered\n");
L
Linus Torvalds 已提交
55
	dev->independent = option;
56 57

	dev_dbg(&dev->dev, "new independent option\n");
L
Linus Torvalds 已提交
58 59 60
	return option;
}

B
Bjorn Helgaas 已提交
61 62
struct pnp_option *pnp_register_dependent_option(struct pnp_dev *dev,
						 int priority)
L
Linus Torvalds 已提交
63 64
{
	struct pnp_option *option;
B
Bjorn Helgaas 已提交
65

L
Linus Torvalds 已提交
66 67 68 69 70 71 72 73 74
	option = pnp_build_option(priority);

	if (dev->dependent) {
		struct pnp_option *parent = dev->dependent;
		while (parent->next)
			parent = parent->next;
		parent->next = option;
	} else
		dev->dependent = option;
75 76

	dev_dbg(&dev->dev, "new dependent option (priority %#x)\n", priority);
L
Linus Torvalds 已提交
77 78 79
	return option;
}

80 81
int pnp_register_irq_resource(struct pnp_dev *dev, struct pnp_option *option,
			      struct pnp_irq *data)
L
Linus Torvalds 已提交
82 83
{
	struct pnp_irq *ptr;
84 85 86
#ifdef DEBUG
	char buf[PNP_IRQ_NR];   /* hex-encoded, so this is overkill but safe */
#endif
B
Bjorn Helgaas 已提交
87

L
Linus Torvalds 已提交
88 89 90 91 92 93 94 95 96 97 98 99 100
	ptr = option->irq;
	while (ptr && ptr->next)
		ptr = ptr->next;
	if (ptr)
		ptr->next = data;
	else
		option->irq = data;

#ifdef CONFIG_PCI
	{
		int i;

		for (i = 0; i < 16; i++)
101
			if (test_bit(i, data->map.bits))
D
David Shaohua Li 已提交
102
				pcibios_penalize_isa_irq(i, 0);
L
Linus Torvalds 已提交
103 104
	}
#endif
105 106

#ifdef DEBUG
107
	bitmap_scnprintf(buf, sizeof(buf), data->map.bits, PNP_IRQ_NR);
108 109 110
	dev_dbg(&dev->dev, "  irq bitmask %s flags %#x\n", buf,
		data->flags);
#endif
L
Linus Torvalds 已提交
111 112 113
	return 0;
}

114 115
int pnp_register_dma_resource(struct pnp_dev *dev, struct pnp_option *option,
			      struct pnp_dma *data)
L
Linus Torvalds 已提交
116 117
{
	struct pnp_dma *ptr;
B
Bjorn Helgaas 已提交
118

L
Linus Torvalds 已提交
119 120 121 122 123 124 125 126
	ptr = option->dma;
	while (ptr && ptr->next)
		ptr = ptr->next;
	if (ptr)
		ptr->next = data;
	else
		option->dma = data;

127 128
	dev_dbg(&dev->dev, "  dma bitmask %#x flags %#x\n", data->map,
		data->flags);
L
Linus Torvalds 已提交
129 130 131
	return 0;
}

132 133
int pnp_register_port_resource(struct pnp_dev *dev, struct pnp_option *option,
			       struct pnp_port *data)
L
Linus Torvalds 已提交
134 135
{
	struct pnp_port *ptr;
B
Bjorn Helgaas 已提交
136

L
Linus Torvalds 已提交
137 138 139 140 141 142 143 144
	ptr = option->port;
	while (ptr && ptr->next)
		ptr = ptr->next;
	if (ptr)
		ptr->next = data;
	else
		option->port = data;

145
	dev_dbg(&dev->dev, "  io  "
146 147 148 149 150
		"min %#llx max %#llx align %lld size %lld flags %#x\n",
		(unsigned long long) data->min,
		(unsigned long long) data->max,
		(unsigned long long) data->align,
		(unsigned long long) data->size, data->flags);
L
Linus Torvalds 已提交
151 152 153
	return 0;
}

154 155
int pnp_register_mem_resource(struct pnp_dev *dev, struct pnp_option *option,
			      struct pnp_mem *data)
L
Linus Torvalds 已提交
156 157
{
	struct pnp_mem *ptr;
B
Bjorn Helgaas 已提交
158

L
Linus Torvalds 已提交
159 160 161 162 163 164 165
	ptr = option->mem;
	while (ptr && ptr->next)
		ptr = ptr->next;
	if (ptr)
		ptr->next = data;
	else
		option->mem = data;
166 167

	dev_dbg(&dev->dev, "  mem "
168 169 170 171 172
		"min %#llx max %#llx align %lld size %lld flags %#x\n",
		(unsigned long long) data->min,
		(unsigned long long) data->max,
		(unsigned long long) data->align,
		(unsigned long long) data->size, data->flags);
L
Linus Torvalds 已提交
173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 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 236 237 238 239 240 241 242 243 244 245
	return 0;
}

static void pnp_free_port(struct pnp_port *port)
{
	struct pnp_port *next;

	while (port) {
		next = port->next;
		kfree(port);
		port = next;
	}
}

static void pnp_free_irq(struct pnp_irq *irq)
{
	struct pnp_irq *next;

	while (irq) {
		next = irq->next;
		kfree(irq);
		irq = next;
	}
}

static void pnp_free_dma(struct pnp_dma *dma)
{
	struct pnp_dma *next;

	while (dma) {
		next = dma->next;
		kfree(dma);
		dma = next;
	}
}

static void pnp_free_mem(struct pnp_mem *mem)
{
	struct pnp_mem *next;

	while (mem) {
		next = mem->next;
		kfree(mem);
		mem = next;
	}
}

void pnp_free_option(struct pnp_option *option)
{
	struct pnp_option *next;

	while (option) {
		next = option->next;
		pnp_free_port(option->port);
		pnp_free_irq(option->irq);
		pnp_free_dma(option->dma);
		pnp_free_mem(option->mem);
		kfree(option);
		option = next;
	}
}

/*
 * resource validity checking
 */

#define length(start, end) (*(end) - *(start) + 1)

/* Two ranges conflict if one doesn't end before the other starts */
#define ranged_conflict(starta, enda, startb, endb) \
	!((*(enda) < *(startb)) || (*(endb) < *(starta)))

#define cannot_compare(flags) \
246
((flags) & IORESOURCE_DISABLED)
L
Linus Torvalds 已提交
247

248
int pnp_check_port(struct pnp_dev *dev, struct resource *res)
L
Linus Torvalds 已提交
249
{
250
	int i;
L
Linus Torvalds 已提交
251
	struct pnp_dev *tdev;
252
	struct resource *tres;
253
	resource_size_t *port, *end, *tport, *tend;
B
Bjorn Helgaas 已提交
254

255 256
	port = &res->start;
	end = &res->end;
L
Linus Torvalds 已提交
257 258

	/* if the resource doesn't exist, don't complain about it */
259
	if (cannot_compare(res->flags))
L
Linus Torvalds 已提交
260 261 262 263
		return 1;

	/* check if the resource is already in use, skip if the
	 * device is active because it itself may be in use */
B
Bjorn Helgaas 已提交
264 265
	if (!dev->active) {
		if (__check_region(&ioport_resource, *port, length(port, end)))
L
Linus Torvalds 已提交
266 267 268 269
			return 0;
	}

	/* check if the resource is reserved */
270 271 272
	for (i = 0; i < 8; i++) {
		int rport = pnp_reserve_io[i << 1];
		int rend = pnp_reserve_io[(i << 1) + 1] + rport - 1;
B
Bjorn Helgaas 已提交
273
		if (ranged_conflict(port, end, &rport, &rend))
L
Linus Torvalds 已提交
274 275 276 277
			return 0;
	}

	/* check for internal conflicts */
B
Bjorn Helgaas 已提交
278 279
	for (i = 0; (tres = pnp_get_resource(dev, IORESOURCE_IO, i)); i++) {
		if (tres != res && tres->flags & IORESOURCE_IO) {
280 281
			tport = &tres->start;
			tend = &tres->end;
B
Bjorn Helgaas 已提交
282
			if (ranged_conflict(port, end, tport, tend))
L
Linus Torvalds 已提交
283 284 285 286 287 288 289 290
				return 0;
		}
	}

	/* check for conflicts with other pnp devices */
	pnp_for_each_dev(tdev) {
		if (tdev == dev)
			continue;
B
Bjorn Helgaas 已提交
291 292 293 294
		for (i = 0;
		     (tres = pnp_get_resource(tdev, IORESOURCE_IO, i));
		     i++) {
			if (tres->flags & IORESOURCE_IO) {
295
				if (cannot_compare(tres->flags))
L
Linus Torvalds 已提交
296
					continue;
297 298
				tport = &tres->start;
				tend = &tres->end;
B
Bjorn Helgaas 已提交
299
				if (ranged_conflict(port, end, tport, tend))
L
Linus Torvalds 已提交
300 301 302 303 304 305 306 307
					return 0;
			}
		}
	}

	return 1;
}

308
int pnp_check_mem(struct pnp_dev *dev, struct resource *res)
L
Linus Torvalds 已提交
309
{
310
	int i;
L
Linus Torvalds 已提交
311
	struct pnp_dev *tdev;
312
	struct resource *tres;
313
	resource_size_t *addr, *end, *taddr, *tend;
B
Bjorn Helgaas 已提交
314

315 316
	addr = &res->start;
	end = &res->end;
L
Linus Torvalds 已提交
317 318

	/* if the resource doesn't exist, don't complain about it */
319
	if (cannot_compare(res->flags))
L
Linus Torvalds 已提交
320 321 322 323
		return 1;

	/* check if the resource is already in use, skip if the
	 * device is active because it itself may be in use */
B
Bjorn Helgaas 已提交
324 325
	if (!dev->active) {
		if (check_mem_region(*addr, length(addr, end)))
L
Linus Torvalds 已提交
326 327 328 329
			return 0;
	}

	/* check if the resource is reserved */
330 331 332
	for (i = 0; i < 8; i++) {
		int raddr = pnp_reserve_mem[i << 1];
		int rend = pnp_reserve_mem[(i << 1) + 1] + raddr - 1;
B
Bjorn Helgaas 已提交
333
		if (ranged_conflict(addr, end, &raddr, &rend))
L
Linus Torvalds 已提交
334 335 336 337
			return 0;
	}

	/* check for internal conflicts */
B
Bjorn Helgaas 已提交
338 339
	for (i = 0; (tres = pnp_get_resource(dev, IORESOURCE_MEM, i)); i++) {
		if (tres != res && tres->flags & IORESOURCE_MEM) {
340 341
			taddr = &tres->start;
			tend = &tres->end;
B
Bjorn Helgaas 已提交
342
			if (ranged_conflict(addr, end, taddr, tend))
L
Linus Torvalds 已提交
343 344 345 346 347 348 349 350
				return 0;
		}
	}

	/* check for conflicts with other pnp devices */
	pnp_for_each_dev(tdev) {
		if (tdev == dev)
			continue;
B
Bjorn Helgaas 已提交
351 352 353 354
		for (i = 0;
		     (tres = pnp_get_resource(tdev, IORESOURCE_MEM, i));
		     i++) {
			if (tres->flags & IORESOURCE_MEM) {
355
				if (cannot_compare(tres->flags))
L
Linus Torvalds 已提交
356
					continue;
357 358
				taddr = &tres->start;
				tend = &tres->end;
B
Bjorn Helgaas 已提交
359
				if (ranged_conflict(addr, end, taddr, tend))
L
Linus Torvalds 已提交
360 361 362 363 364 365 366 367
					return 0;
			}
		}
	}

	return 1;
}

368
static irqreturn_t pnp_test_handler(int irq, void *dev_id)
L
Linus Torvalds 已提交
369 370 371 372
{
	return IRQ_HANDLED;
}

373
int pnp_check_irq(struct pnp_dev *dev, struct resource *res)
L
Linus Torvalds 已提交
374
{
375
	int i;
L
Linus Torvalds 已提交
376
	struct pnp_dev *tdev;
377
	struct resource *tres;
378 379 380
	resource_size_t *irq;

	irq = &res->start;
L
Linus Torvalds 已提交
381 382

	/* if the resource doesn't exist, don't complain about it */
383
	if (cannot_compare(res->flags))
L
Linus Torvalds 已提交
384 385 386 387 388 389 390
		return 1;

	/* check if the resource is valid */
	if (*irq < 0 || *irq > 15)
		return 0;

	/* check if the resource is reserved */
391 392
	for (i = 0; i < 16; i++) {
		if (pnp_reserve_irq[i] == *irq)
L
Linus Torvalds 已提交
393 394 395 396
			return 0;
	}

	/* check for internal conflicts */
B
Bjorn Helgaas 已提交
397 398
	for (i = 0; (tres = pnp_get_resource(dev, IORESOURCE_IRQ, i)); i++) {
		if (tres != res && tres->flags & IORESOURCE_IRQ) {
399
			if (tres->start == *irq)
L
Linus Torvalds 已提交
400 401 402 403 404 405 406 407 408
				return 0;
		}
	}

#ifdef CONFIG_PCI
	/* check if the resource is being used by a pci device */
	{
		struct pci_dev *pci = NULL;
		for_each_pci_dev(pci) {
409 410
			if (pci->irq == *irq) {
				pci_dev_put(pci);
L
Linus Torvalds 已提交
411
				return 0;
412
			}
L
Linus Torvalds 已提交
413 414 415 416 417 418
		}
	}
#endif

	/* check if the resource is already in use, skip if the
	 * device is active because it itself may be in use */
B
Bjorn Helgaas 已提交
419
	if (!dev->active) {
420
		if (request_irq(*irq, pnp_test_handler,
B
Bjorn Helgaas 已提交
421
				IRQF_DISABLED | IRQF_PROBE_SHARED, "pnp", NULL))
L
Linus Torvalds 已提交
422 423 424 425 426 427 428 429
			return 0;
		free_irq(*irq, NULL);
	}

	/* check for conflicts with other pnp devices */
	pnp_for_each_dev(tdev) {
		if (tdev == dev)
			continue;
B
Bjorn Helgaas 已提交
430 431 432 433
		for (i = 0;
		     (tres = pnp_get_resource(tdev, IORESOURCE_IRQ, i));
		     i++) {
			if (tres->flags & IORESOURCE_IRQ) {
434
				if (cannot_compare(tres->flags))
L
Linus Torvalds 已提交
435
					continue;
436
				if (tres->start == *irq)
L
Linus Torvalds 已提交
437 438 439 440 441 442 443 444
					return 0;
			}
		}
	}

	return 1;
}

445
int pnp_check_dma(struct pnp_dev *dev, struct resource *res)
L
Linus Torvalds 已提交
446 447
{
#ifndef CONFIG_IA64
448
	int i;
L
Linus Torvalds 已提交
449
	struct pnp_dev *tdev;
450
	struct resource *tres;
451 452 453
	resource_size_t *dma;

	dma = &res->start;
L
Linus Torvalds 已提交
454 455

	/* if the resource doesn't exist, don't complain about it */
456
	if (cannot_compare(res->flags))
L
Linus Torvalds 已提交
457 458 459 460 461 462 463
		return 1;

	/* check if the resource is valid */
	if (*dma < 0 || *dma == 4 || *dma > 7)
		return 0;

	/* check if the resource is reserved */
464 465
	for (i = 0; i < 8; i++) {
		if (pnp_reserve_dma[i] == *dma)
L
Linus Torvalds 已提交
466 467 468 469
			return 0;
	}

	/* check for internal conflicts */
B
Bjorn Helgaas 已提交
470 471
	for (i = 0; (tres = pnp_get_resource(dev, IORESOURCE_DMA, i)); i++) {
		if (tres != res && tres->flags & IORESOURCE_DMA) {
472
			if (tres->start == *dma)
L
Linus Torvalds 已提交
473 474 475 476 477 478
				return 0;
		}
	}

	/* check if the resource is already in use, skip if the
	 * device is active because it itself may be in use */
B
Bjorn Helgaas 已提交
479
	if (!dev->active) {
L
Linus Torvalds 已提交
480 481 482 483 484 485 486 487 488
		if (request_dma(*dma, "pnp"))
			return 0;
		free_dma(*dma);
	}

	/* check for conflicts with other pnp devices */
	pnp_for_each_dev(tdev) {
		if (tdev == dev)
			continue;
B
Bjorn Helgaas 已提交
489 490 491 492
		for (i = 0;
		     (tres = pnp_get_resource(tdev, IORESOURCE_DMA, i));
		     i++) {
			if (tres->flags & IORESOURCE_DMA) {
493
				if (cannot_compare(tres->flags))
L
Linus Torvalds 已提交
494
					continue;
495
				if (tres->start == *dma)
L
Linus Torvalds 已提交
496 497 498 499 500 501 502
					return 0;
			}
		}
	}

	return 1;
#else
B
Bjorn Helgaas 已提交
503
	/* IA64 does not have legacy DMA */
L
Linus Torvalds 已提交
504 505 506 507
	return 0;
#endif
}

508 509 510 511 512 513
int pnp_resource_type(struct resource *res)
{
	return res->flags & (IORESOURCE_IO  | IORESOURCE_MEM |
			     IORESOURCE_IRQ | IORESOURCE_DMA);
}

B
Bjorn Helgaas 已提交
514 515 516 517
struct resource *pnp_get_resource(struct pnp_dev *dev,
				  unsigned int type, unsigned int num)
{
	struct pnp_resource *pnp_res;
518
	struct resource *res;
B
Bjorn Helgaas 已提交
519

520 521 522 523 524
	list_for_each_entry(pnp_res, &dev->resources, list) {
		res = &pnp_res->res;
		if (pnp_resource_type(res) == type && num-- == 0)
			return res;
	}
B
Bjorn Helgaas 已提交
525 526
	return NULL;
}
527 528
EXPORT_SYMBOL(pnp_get_resource);

529
static struct pnp_resource *pnp_new_resource(struct pnp_dev *dev)
530 531 532
{
	struct pnp_resource *pnp_res;

533 534 535 536 537 538
	pnp_res = kzalloc(sizeof(struct pnp_resource), GFP_KERNEL);
	if (!pnp_res)
		return NULL;

	list_add_tail(&pnp_res->list, &dev->resources);
	return pnp_res;
539 540
}

541 542 543 544 545 546
struct pnp_resource *pnp_add_irq_resource(struct pnp_dev *dev, int irq,
					  int flags)
{
	struct pnp_resource *pnp_res;
	struct resource *res;

547
	pnp_res = pnp_new_resource(dev);
548
	if (!pnp_res) {
549
		dev_err(&dev->dev, "can't add resource for IRQ %d\n", irq);
550 551 552 553 554 555 556 557 558 559 560 561
		return NULL;
	}

	res = &pnp_res->res;
	res->flags = IORESOURCE_IRQ | flags;
	res->start = irq;
	res->end = irq;

	dev_dbg(&dev->dev, "  add irq %d flags %#x\n", irq, flags);
	return pnp_res;
}

562 563 564 565 566 567
struct pnp_resource *pnp_add_dma_resource(struct pnp_dev *dev, int dma,
					  int flags)
{
	struct pnp_resource *pnp_res;
	struct resource *res;

568
	pnp_res = pnp_new_resource(dev);
569
	if (!pnp_res) {
570
		dev_err(&dev->dev, "can't add resource for DMA %d\n", dma);
571 572 573 574 575 576 577 578 579 580 581 582
		return NULL;
	}

	res = &pnp_res->res;
	res->flags = IORESOURCE_DMA | flags;
	res->start = dma;
	res->end = dma;

	dev_dbg(&dev->dev, "  add dma %d flags %#x\n", dma, flags);
	return pnp_res;
}

583 584 585 586 587 588 589
struct pnp_resource *pnp_add_io_resource(struct pnp_dev *dev,
					 resource_size_t start,
					 resource_size_t end, int flags)
{
	struct pnp_resource *pnp_res;
	struct resource *res;

590
	pnp_res = pnp_new_resource(dev);
591
	if (!pnp_res) {
592 593 594
		dev_err(&dev->dev, "can't add resource for IO %#llx-%#llx\n",
			(unsigned long long) start,
			(unsigned long long) end);
595 596 597 598 599 600 601 602 603 604 605 606 607
		return NULL;
	}

	res = &pnp_res->res;
	res->flags = IORESOURCE_IO | flags;
	res->start = start;
	res->end = end;

	dev_dbg(&dev->dev, "  add io  %#llx-%#llx flags %#x\n",
		(unsigned long long) start, (unsigned long long) end, flags);
	return pnp_res;
}

608 609 610 611 612 613 614
struct pnp_resource *pnp_add_mem_resource(struct pnp_dev *dev,
					  resource_size_t start,
					  resource_size_t end, int flags)
{
	struct pnp_resource *pnp_res;
	struct resource *res;

615
	pnp_res = pnp_new_resource(dev);
616
	if (!pnp_res) {
617 618 619
		dev_err(&dev->dev, "can't add resource for MEM %#llx-%#llx\n",
			(unsigned long long) start,
			(unsigned long long) end);
620 621 622 623 624 625 626 627 628 629 630 631 632
		return NULL;
	}

	res = &pnp_res->res;
	res->flags = IORESOURCE_MEM | flags;
	res->start = start;
	res->end = end;

	dev_dbg(&dev->dev, "  add mem %#llx-%#llx flags %#x\n",
		(unsigned long long) start, (unsigned long long) end, flags);
	return pnp_res;
}

633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661
static int pnp_possible_option(struct pnp_option *option, int type,
			       resource_size_t start, resource_size_t size)
{
	struct pnp_option *tmp;
	struct pnp_port *port;
	struct pnp_mem *mem;
	struct pnp_irq *irq;
	struct pnp_dma *dma;

	if (!option)
		return 0;

	for (tmp = option; tmp; tmp = tmp->next) {
		switch (type) {
		case IORESOURCE_IO:
			for (port = tmp->port; port; port = port->next) {
				if (port->min == start && port->size == size)
					return 1;
			}
			break;
		case IORESOURCE_MEM:
			for (mem = tmp->mem; mem; mem = mem->next) {
				if (mem->min == start && mem->size == size)
					return 1;
			}
			break;
		case IORESOURCE_IRQ:
			for (irq = tmp->irq; irq; irq = irq->next) {
				if (start < PNP_IRQ_NR &&
662
				    test_bit(start, irq->map.bits))
663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694
					return 1;
			}
			break;
		case IORESOURCE_DMA:
			for (dma = tmp->dma; dma; dma = dma->next) {
				if (dma->map & (1 << start))
					return 1;
			}
			break;
		}
	}

	return 0;
}

/*
 * Determine whether the specified resource is a possible configuration
 * for this device.
 */
int pnp_possible_config(struct pnp_dev *dev, int type, resource_size_t start,
			resource_size_t size)
{
	if (pnp_possible_option(dev->independent, type, start, size))
		return 1;

	if (pnp_possible_option(dev->dependent, type, start, size))
		return 1;

	return 0;
}
EXPORT_SYMBOL(pnp_possible_config);

L
Linus Torvalds 已提交
695 696 697 698 699 700
/* format is: pnp_reserve_irq=irq1[,irq2] .... */
static int __init pnp_setup_reserve_irq(char *str)
{
	int i;

	for (i = 0; i < 16; i++)
B
Bjorn Helgaas 已提交
701
		if (get_option(&str, &pnp_reserve_irq[i]) != 2)
L
Linus Torvalds 已提交
702 703 704 705 706 707 708 709 710 711 712 713
			break;
	return 1;
}

__setup("pnp_reserve_irq=", pnp_setup_reserve_irq);

/* format is: pnp_reserve_dma=dma1[,dma2] .... */
static int __init pnp_setup_reserve_dma(char *str)
{
	int i;

	for (i = 0; i < 8; i++)
B
Bjorn Helgaas 已提交
714
		if (get_option(&str, &pnp_reserve_dma[i]) != 2)
L
Linus Torvalds 已提交
715 716 717 718 719 720 721 722 723 724 725 726
			break;
	return 1;
}

__setup("pnp_reserve_dma=", pnp_setup_reserve_dma);

/* format is: pnp_reserve_io=io1,size1[,io2,size2] .... */
static int __init pnp_setup_reserve_io(char *str)
{
	int i;

	for (i = 0; i < 16; i++)
B
Bjorn Helgaas 已提交
727
		if (get_option(&str, &pnp_reserve_io[i]) != 2)
L
Linus Torvalds 已提交
728 729 730 731 732 733 734 735 736 737 738 739
			break;
	return 1;
}

__setup("pnp_reserve_io=", pnp_setup_reserve_io);

/* format is: pnp_reserve_mem=mem1,size1[,mem2,size2] .... */
static int __init pnp_setup_reserve_mem(char *str)
{
	int i;

	for (i = 0; i < 16; i++)
B
Bjorn Helgaas 已提交
740
		if (get_option(&str, &pnp_reserve_mem[i]) != 2)
L
Linus Torvalds 已提交
741 742 743 744 745
			break;
	return 1;
}

__setup("pnp_reserve_mem=", pnp_setup_reserve_mem);