resource.c 11.3 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
 */

B
Bjorn Helgaas 已提交
31
static 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 56 57 58
	dev->independent = option;
	return option;
}

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

L
Linus Torvalds 已提交
64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
	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;
	return option;
}

int pnp_register_irq_resource(struct pnp_option *option, struct pnp_irq *data)
{
	struct pnp_irq *ptr;
B
Bjorn Helgaas 已提交
79

L
Linus Torvalds 已提交
80 81 82 83 84 85 86 87 88 89 90 91 92 93
	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++)
			if (test_bit(i, data->map))
D
David Shaohua Li 已提交
94
				pcibios_penalize_isa_irq(i, 0);
L
Linus Torvalds 已提交
95 96 97 98 99 100 101 102
	}
#endif
	return 0;
}

int pnp_register_dma_resource(struct pnp_option *option, struct pnp_dma *data)
{
	struct pnp_dma *ptr;
B
Bjorn Helgaas 已提交
103

L
Linus Torvalds 已提交
104 105 106 107 108 109 110 111 112 113 114 115 116 117
	ptr = option->dma;
	while (ptr && ptr->next)
		ptr = ptr->next;
	if (ptr)
		ptr->next = data;
	else
		option->dma = data;

	return 0;
}

int pnp_register_port_resource(struct pnp_option *option, struct pnp_port *data)
{
	struct pnp_port *ptr;
B
Bjorn Helgaas 已提交
118

L
Linus Torvalds 已提交
119 120 121 122 123 124 125 126 127 128 129 130 131 132
	ptr = option->port;
	while (ptr && ptr->next)
		ptr = ptr->next;
	if (ptr)
		ptr->next = data;
	else
		option->port = data;

	return 0;
}

int pnp_register_mem_resource(struct pnp_option *option, struct pnp_mem *data)
{
	struct pnp_mem *ptr;
B
Bjorn Helgaas 已提交
133

L
Linus Torvalds 已提交
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 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
	ptr = option->mem;
	while (ptr && ptr->next)
		ptr = ptr->next;
	if (ptr)
		ptr->next = data;
	else
		option->mem = data;
	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) \
((flags) & (IORESOURCE_UNSET | IORESOURCE_DISABLED))

B
Bjorn Helgaas 已提交
216
int pnp_check_port(struct pnp_dev *dev, int idx)
L
Linus Torvalds 已提交
217 218 219
{
	int tmp;
	struct pnp_dev *tdev;
220
	resource_size_t *port, *end, *tport, *tend;
B
Bjorn Helgaas 已提交
221

L
Linus Torvalds 已提交
222 223 224 225 226 227 228 229 230
	port = &dev->res.port_resource[idx].start;
	end = &dev->res.port_resource[idx].end;

	/* if the resource doesn't exist, don't complain about it */
	if (cannot_compare(dev->res.port_resource[idx].flags))
		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 已提交
231 232
	if (!dev->active) {
		if (__check_region(&ioport_resource, *port, length(port, end)))
L
Linus Torvalds 已提交
233 234 235 236 237 238 239
			return 0;
	}

	/* check if the resource is reserved */
	for (tmp = 0; tmp < 8; tmp++) {
		int rport = pnp_reserve_io[tmp << 1];
		int rend = pnp_reserve_io[(tmp << 1) + 1] + rport - 1;
B
Bjorn Helgaas 已提交
240
		if (ranged_conflict(port, end, &rport, &rend))
L
Linus Torvalds 已提交
241 242 243 244 245 246 247 248
			return 0;
	}

	/* check for internal conflicts */
	for (tmp = 0; tmp < PNP_MAX_PORT && tmp != idx; tmp++) {
		if (dev->res.port_resource[tmp].flags & IORESOURCE_IO) {
			tport = &dev->res.port_resource[tmp].start;
			tend = &dev->res.port_resource[tmp].end;
B
Bjorn Helgaas 已提交
249
			if (ranged_conflict(port, end, tport, tend))
L
Linus Torvalds 已提交
250 251 252 253 254 255 256 257 258 259
				return 0;
		}
	}

	/* check for conflicts with other pnp devices */
	pnp_for_each_dev(tdev) {
		if (tdev == dev)
			continue;
		for (tmp = 0; tmp < PNP_MAX_PORT; tmp++) {
			if (tdev->res.port_resource[tmp].flags & IORESOURCE_IO) {
B
Bjorn Helgaas 已提交
260 261
				if (cannot_compare
				    (tdev->res.port_resource[tmp].flags))
L
Linus Torvalds 已提交
262 263 264
					continue;
				tport = &tdev->res.port_resource[tmp].start;
				tend = &tdev->res.port_resource[tmp].end;
B
Bjorn Helgaas 已提交
265
				if (ranged_conflict(port, end, tport, tend))
L
Linus Torvalds 已提交
266 267 268 269 270 271 272 273
					return 0;
			}
		}
	}

	return 1;
}

B
Bjorn Helgaas 已提交
274
int pnp_check_mem(struct pnp_dev *dev, int idx)
L
Linus Torvalds 已提交
275 276 277
{
	int tmp;
	struct pnp_dev *tdev;
278
	resource_size_t *addr, *end, *taddr, *tend;
B
Bjorn Helgaas 已提交
279

L
Linus Torvalds 已提交
280 281 282 283 284 285 286 287 288
	addr = &dev->res.mem_resource[idx].start;
	end = &dev->res.mem_resource[idx].end;

	/* if the resource doesn't exist, don't complain about it */
	if (cannot_compare(dev->res.mem_resource[idx].flags))
		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 已提交
289 290
	if (!dev->active) {
		if (check_mem_region(*addr, length(addr, end)))
L
Linus Torvalds 已提交
291 292 293 294 295 296 297
			return 0;
	}

	/* check if the resource is reserved */
	for (tmp = 0; tmp < 8; tmp++) {
		int raddr = pnp_reserve_mem[tmp << 1];
		int rend = pnp_reserve_mem[(tmp << 1) + 1] + raddr - 1;
B
Bjorn Helgaas 已提交
298
		if (ranged_conflict(addr, end, &raddr, &rend))
L
Linus Torvalds 已提交
299 300 301 302 303 304 305 306
			return 0;
	}

	/* check for internal conflicts */
	for (tmp = 0; tmp < PNP_MAX_MEM && tmp != idx; tmp++) {
		if (dev->res.mem_resource[tmp].flags & IORESOURCE_MEM) {
			taddr = &dev->res.mem_resource[tmp].start;
			tend = &dev->res.mem_resource[tmp].end;
B
Bjorn Helgaas 已提交
307
			if (ranged_conflict(addr, end, taddr, tend))
L
Linus Torvalds 已提交
308 309 310 311 312 313 314 315 316 317
				return 0;
		}
	}

	/* check for conflicts with other pnp devices */
	pnp_for_each_dev(tdev) {
		if (tdev == dev)
			continue;
		for (tmp = 0; tmp < PNP_MAX_MEM; tmp++) {
			if (tdev->res.mem_resource[tmp].flags & IORESOURCE_MEM) {
B
Bjorn Helgaas 已提交
318 319
				if (cannot_compare
				    (tdev->res.mem_resource[tmp].flags))
L
Linus Torvalds 已提交
320 321 322
					continue;
				taddr = &tdev->res.mem_resource[tmp].start;
				tend = &tdev->res.mem_resource[tmp].end;
B
Bjorn Helgaas 已提交
323
				if (ranged_conflict(addr, end, taddr, tend))
L
Linus Torvalds 已提交
324 325 326 327 328 329 330 331
					return 0;
			}
		}
	}

	return 1;
}

332
static irqreturn_t pnp_test_handler(int irq, void *dev_id)
L
Linus Torvalds 已提交
333 334 335 336
{
	return IRQ_HANDLED;
}

B
Bjorn Helgaas 已提交
337
int pnp_check_irq(struct pnp_dev *dev, int idx)
L
Linus Torvalds 已提交
338 339 340
{
	int tmp;
	struct pnp_dev *tdev;
B
Bjorn Helgaas 已提交
341
	resource_size_t *irq = &dev->res.irq_resource[idx].start;
L
Linus Torvalds 已提交
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 373 374 375 376 377

	/* if the resource doesn't exist, don't complain about it */
	if (cannot_compare(dev->res.irq_resource[idx].flags))
		return 1;

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

	/* check if the resource is reserved */
	for (tmp = 0; tmp < 16; tmp++) {
		if (pnp_reserve_irq[tmp] == *irq)
			return 0;
	}

	/* check for internal conflicts */
	for (tmp = 0; tmp < PNP_MAX_IRQ && tmp != idx; tmp++) {
		if (dev->res.irq_resource[tmp].flags & IORESOURCE_IRQ) {
			if (dev->res.irq_resource[tmp].start == *irq)
				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) {
			if (pci->irq == *irq)
				return 0;
		}
	}
#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 已提交
378
	if (!dev->active) {
379
		if (request_irq(*irq, pnp_test_handler,
B
Bjorn Helgaas 已提交
380
				IRQF_DISABLED | IRQF_PROBE_SHARED, "pnp", NULL))
L
Linus Torvalds 已提交
381 382 383 384 385 386 387 388 389 390
			return 0;
		free_irq(*irq, NULL);
	}

	/* check for conflicts with other pnp devices */
	pnp_for_each_dev(tdev) {
		if (tdev == dev)
			continue;
		for (tmp = 0; tmp < PNP_MAX_IRQ; tmp++) {
			if (tdev->res.irq_resource[tmp].flags & IORESOURCE_IRQ) {
B
Bjorn Helgaas 已提交
391 392
				if (cannot_compare
				    (tdev->res.irq_resource[tmp].flags))
L
Linus Torvalds 已提交
393 394 395 396 397 398 399 400 401 402
					continue;
				if ((tdev->res.irq_resource[tmp].start == *irq))
					return 0;
			}
		}
	}

	return 1;
}

B
Bjorn Helgaas 已提交
403
int pnp_check_dma(struct pnp_dev *dev, int idx)
L
Linus Torvalds 已提交
404 405 406 407
{
#ifndef CONFIG_IA64
	int tmp;
	struct pnp_dev *tdev;
B
Bjorn Helgaas 已提交
408
	resource_size_t *dma = &dev->res.dma_resource[idx].start;
L
Linus Torvalds 已提交
409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433

	/* if the resource doesn't exist, don't complain about it */
	if (cannot_compare(dev->res.dma_resource[idx].flags))
		return 1;

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

	/* check if the resource is reserved */
	for (tmp = 0; tmp < 8; tmp++) {
		if (pnp_reserve_dma[tmp] == *dma)
			return 0;
	}

	/* check for internal conflicts */
	for (tmp = 0; tmp < PNP_MAX_DMA && tmp != idx; tmp++) {
		if (dev->res.dma_resource[tmp].flags & IORESOURCE_DMA) {
			if (dev->res.dma_resource[tmp].start == *dma)
				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 已提交
434
	if (!dev->active) {
L
Linus Torvalds 已提交
435 436 437 438 439 440 441 442 443 444 445
		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;
		for (tmp = 0; tmp < PNP_MAX_DMA; tmp++) {
			if (tdev->res.dma_resource[tmp].flags & IORESOURCE_DMA) {
B
Bjorn Helgaas 已提交
446 447
				if (cannot_compare
				    (tdev->res.dma_resource[tmp].flags))
L
Linus Torvalds 已提交
448 449 450 451 452 453 454 455 456
					continue;
				if ((tdev->res.dma_resource[tmp].start == *dma))
					return 0;
			}
		}
	}

	return 1;
#else
B
Bjorn Helgaas 已提交
457
	/* IA64 does not have legacy DMA */
L
Linus Torvalds 已提交
458 459 460 461 462 463 464 465 466 467
	return 0;
#endif
}

/* 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 已提交
468
		if (get_option(&str, &pnp_reserve_irq[i]) != 2)
L
Linus Torvalds 已提交
469 470 471 472 473 474 475 476 477 478 479 480
			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 已提交
481
		if (get_option(&str, &pnp_reserve_dma[i]) != 2)
L
Linus Torvalds 已提交
482 483 484 485 486 487 488 489 490 491 492 493
			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 已提交
494
		if (get_option(&str, &pnp_reserve_io[i]) != 2)
L
Linus Torvalds 已提交
495 496 497 498 499 500 501 502 503 504 505 506
			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 已提交
507
		if (get_option(&str, &pnp_reserve_mem[i]) != 2)
L
Linus Torvalds 已提交
508 509 510 511 512
			break;
	return 1;
}

__setup("pnp_reserve_mem=", pnp_setup_reserve_mem);