Linux-2.6.12-rc2
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / kernel / resource.c
blob35c99ac02c7cf1408e03cfa4198a0a6786b3ac58
1 /*
2 * linux/kernel/resource.c
4 * Copyright (C) 1999 Linus Torvalds
5 * Copyright (C) 1999 Martin Mares <mj@ucw.cz>
7 * Arbitrary resource management.
8 */
10 #include <linux/config.h>
11 #include <linux/module.h>
12 #include <linux/sched.h>
13 #include <linux/errno.h>
14 #include <linux/ioport.h>
15 #include <linux/init.h>
16 #include <linux/slab.h>
17 #include <linux/spinlock.h>
18 #include <linux/fs.h>
19 #include <linux/proc_fs.h>
20 #include <linux/seq_file.h>
21 #include <asm/io.h>
24 struct resource ioport_resource = {
25 .name = "PCI IO",
26 .start = 0x0000,
27 .end = IO_SPACE_LIMIT,
28 .flags = IORESOURCE_IO,
31 EXPORT_SYMBOL(ioport_resource);
33 struct resource iomem_resource = {
34 .name = "PCI mem",
35 .start = 0UL,
36 .end = ~0UL,
37 .flags = IORESOURCE_MEM,
40 EXPORT_SYMBOL(iomem_resource);
42 static DEFINE_RWLOCK(resource_lock);
44 #ifdef CONFIG_PROC_FS
46 enum { MAX_IORES_LEVEL = 5 };
48 static void *r_next(struct seq_file *m, void *v, loff_t *pos)
50 struct resource *p = v;
51 (*pos)++;
52 if (p->child)
53 return p->child;
54 while (!p->sibling && p->parent)
55 p = p->parent;
56 return p->sibling;
59 static void *r_start(struct seq_file *m, loff_t *pos)
60 __acquires(resource_lock)
62 struct resource *p = m->private;
63 loff_t l = 0;
64 read_lock(&resource_lock);
65 for (p = p->child; p && l < *pos; p = r_next(m, p, &l))
67 return p;
70 static void r_stop(struct seq_file *m, void *v)
71 __releases(resource_lock)
73 read_unlock(&resource_lock);
76 static int r_show(struct seq_file *m, void *v)
78 struct resource *root = m->private;
79 struct resource *r = v, *p;
80 int width = root->end < 0x10000 ? 4 : 8;
81 int depth;
83 for (depth = 0, p = r; depth < MAX_IORES_LEVEL; depth++, p = p->parent)
84 if (p->parent == root)
85 break;
86 seq_printf(m, "%*s%0*lx-%0*lx : %s\n",
87 depth * 2, "",
88 width, r->start,
89 width, r->end,
90 r->name ? r->name : "<BAD>");
91 return 0;
94 static struct seq_operations resource_op = {
95 .start = r_start,
96 .next = r_next,
97 .stop = r_stop,
98 .show = r_show,
101 static int ioports_open(struct inode *inode, struct file *file)
103 int res = seq_open(file, &resource_op);
104 if (!res) {
105 struct seq_file *m = file->private_data;
106 m->private = &ioport_resource;
108 return res;
111 static int iomem_open(struct inode *inode, struct file *file)
113 int res = seq_open(file, &resource_op);
114 if (!res) {
115 struct seq_file *m = file->private_data;
116 m->private = &iomem_resource;
118 return res;
121 static struct file_operations proc_ioports_operations = {
122 .open = ioports_open,
123 .read = seq_read,
124 .llseek = seq_lseek,
125 .release = seq_release,
128 static struct file_operations proc_iomem_operations = {
129 .open = iomem_open,
130 .read = seq_read,
131 .llseek = seq_lseek,
132 .release = seq_release,
135 static int __init ioresources_init(void)
137 struct proc_dir_entry *entry;
139 entry = create_proc_entry("ioports", 0, NULL);
140 if (entry)
141 entry->proc_fops = &proc_ioports_operations;
142 entry = create_proc_entry("iomem", 0, NULL);
143 if (entry)
144 entry->proc_fops = &proc_iomem_operations;
145 return 0;
147 __initcall(ioresources_init);
149 #endif /* CONFIG_PROC_FS */
151 /* Return the conflict entry if you can't request it */
152 static struct resource * __request_resource(struct resource *root, struct resource *new)
154 unsigned long start = new->start;
155 unsigned long end = new->end;
156 struct resource *tmp, **p;
158 if (end < start)
159 return root;
160 if (start < root->start)
161 return root;
162 if (end > root->end)
163 return root;
164 p = &root->child;
165 for (;;) {
166 tmp = *p;
167 if (!tmp || tmp->start > end) {
168 new->sibling = tmp;
169 *p = new;
170 new->parent = root;
171 return NULL;
173 p = &tmp->sibling;
174 if (tmp->end < start)
175 continue;
176 return tmp;
180 static int __release_resource(struct resource *old)
182 struct resource *tmp, **p;
184 p = &old->parent->child;
185 for (;;) {
186 tmp = *p;
187 if (!tmp)
188 break;
189 if (tmp == old) {
190 *p = tmp->sibling;
191 old->parent = NULL;
192 return 0;
194 p = &tmp->sibling;
196 return -EINVAL;
199 int request_resource(struct resource *root, struct resource *new)
201 struct resource *conflict;
203 write_lock(&resource_lock);
204 conflict = __request_resource(root, new);
205 write_unlock(&resource_lock);
206 return conflict ? -EBUSY : 0;
209 EXPORT_SYMBOL(request_resource);
211 struct resource *____request_resource(struct resource *root, struct resource *new)
213 struct resource *conflict;
215 write_lock(&resource_lock);
216 conflict = __request_resource(root, new);
217 write_unlock(&resource_lock);
218 return conflict;
221 EXPORT_SYMBOL(____request_resource);
223 int release_resource(struct resource *old)
225 int retval;
227 write_lock(&resource_lock);
228 retval = __release_resource(old);
229 write_unlock(&resource_lock);
230 return retval;
233 EXPORT_SYMBOL(release_resource);
236 * Find empty slot in the resource tree given range and alignment.
238 static int find_resource(struct resource *root, struct resource *new,
239 unsigned long size,
240 unsigned long min, unsigned long max,
241 unsigned long align,
242 void (*alignf)(void *, struct resource *,
243 unsigned long, unsigned long),
244 void *alignf_data)
246 struct resource *this = root->child;
248 new->start = root->start;
250 * Skip past an allocated resource that starts at 0, since the assignment
251 * of this->start - 1 to new->end below would cause an underflow.
253 if (this && this->start == 0) {
254 new->start = this->end + 1;
255 this = this->sibling;
257 for(;;) {
258 if (this)
259 new->end = this->start - 1;
260 else
261 new->end = root->end;
262 if (new->start < min)
263 new->start = min;
264 if (new->end > max)
265 new->end = max;
266 new->start = (new->start + align - 1) & ~(align - 1);
267 if (alignf)
268 alignf(alignf_data, new, size, align);
269 if (new->start < new->end && new->end - new->start + 1 >= size) {
270 new->end = new->start + size - 1;
271 return 0;
273 if (!this)
274 break;
275 new->start = this->end + 1;
276 this = this->sibling;
278 return -EBUSY;
282 * Allocate empty slot in the resource tree given range and alignment.
284 int allocate_resource(struct resource *root, struct resource *new,
285 unsigned long size,
286 unsigned long min, unsigned long max,
287 unsigned long align,
288 void (*alignf)(void *, struct resource *,
289 unsigned long, unsigned long),
290 void *alignf_data)
292 int err;
294 write_lock(&resource_lock);
295 err = find_resource(root, new, size, min, max, align, alignf, alignf_data);
296 if (err >= 0 && __request_resource(root, new))
297 err = -EBUSY;
298 write_unlock(&resource_lock);
299 return err;
302 EXPORT_SYMBOL(allocate_resource);
305 * insert_resource - Inserts a resource in the resource tree
306 * @parent: parent of the new resource
307 * @new: new resource to insert
309 * Returns 0 on success, -EBUSY if the resource can't be inserted.
311 * This function is equivalent of request_resource when no conflict
312 * happens. If a conflict happens, and the conflicting resources
313 * entirely fit within the range of the new resource, then the new
314 * resource is inserted and the conflicting resources become childs of
315 * the new resource. Otherwise the new resource becomes the child of
316 * the conflicting resource
318 int insert_resource(struct resource *parent, struct resource *new)
320 int result;
321 struct resource *first, *next;
323 write_lock(&resource_lock);
324 begin:
325 result = 0;
326 first = __request_resource(parent, new);
327 if (!first)
328 goto out;
330 result = -EBUSY;
331 if (first == parent)
332 goto out;
334 /* Resource fully contained by the clashing resource? Recurse into it */
335 if (first->start <= new->start && first->end >= new->end) {
336 parent = first;
337 goto begin;
340 for (next = first; ; next = next->sibling) {
341 /* Partial overlap? Bad, and unfixable */
342 if (next->start < new->start || next->end > new->end)
343 goto out;
344 if (!next->sibling)
345 break;
346 if (next->sibling->start > new->end)
347 break;
350 result = 0;
352 new->parent = parent;
353 new->sibling = next->sibling;
354 new->child = first;
356 next->sibling = NULL;
357 for (next = first; next; next = next->sibling)
358 next->parent = new;
360 if (parent->child == first) {
361 parent->child = new;
362 } else {
363 next = parent->child;
364 while (next->sibling != first)
365 next = next->sibling;
366 next->sibling = new;
369 out:
370 write_unlock(&resource_lock);
371 return result;
374 EXPORT_SYMBOL(insert_resource);
377 * Given an existing resource, change its start and size to match the
378 * arguments. Returns -EBUSY if it can't fit. Existing children of
379 * the resource are assumed to be immutable.
381 int adjust_resource(struct resource *res, unsigned long start, unsigned long size)
383 struct resource *tmp, *parent = res->parent;
384 unsigned long end = start + size - 1;
385 int result = -EBUSY;
387 write_lock(&resource_lock);
389 if ((start < parent->start) || (end > parent->end))
390 goto out;
392 for (tmp = res->child; tmp; tmp = tmp->sibling) {
393 if ((tmp->start < start) || (tmp->end > end))
394 goto out;
397 if (res->sibling && (res->sibling->start <= end))
398 goto out;
400 tmp = parent->child;
401 if (tmp != res) {
402 while (tmp->sibling != res)
403 tmp = tmp->sibling;
404 if (start <= tmp->end)
405 goto out;
408 res->start = start;
409 res->end = end;
410 result = 0;
412 out:
413 write_unlock(&resource_lock);
414 return result;
417 EXPORT_SYMBOL(adjust_resource);
420 * This is compatibility stuff for IO resources.
422 * Note how this, unlike the above, knows about
423 * the IO flag meanings (busy etc).
425 * Request-region creates a new busy region.
427 * Check-region returns non-zero if the area is already busy
429 * Release-region releases a matching busy region.
431 struct resource * __request_region(struct resource *parent, unsigned long start, unsigned long n, const char *name)
433 struct resource *res = kmalloc(sizeof(*res), GFP_KERNEL);
435 if (res) {
436 memset(res, 0, sizeof(*res));
437 res->name = name;
438 res->start = start;
439 res->end = start + n - 1;
440 res->flags = IORESOURCE_BUSY;
442 write_lock(&resource_lock);
444 for (;;) {
445 struct resource *conflict;
447 conflict = __request_resource(parent, res);
448 if (!conflict)
449 break;
450 if (conflict != parent) {
451 parent = conflict;
452 if (!(conflict->flags & IORESOURCE_BUSY))
453 continue;
456 /* Uhhuh, that didn't work out.. */
457 kfree(res);
458 res = NULL;
459 break;
461 write_unlock(&resource_lock);
463 return res;
466 EXPORT_SYMBOL(__request_region);
468 int __deprecated __check_region(struct resource *parent, unsigned long start, unsigned long n)
470 struct resource * res;
472 res = __request_region(parent, start, n, "check-region");
473 if (!res)
474 return -EBUSY;
476 release_resource(res);
477 kfree(res);
478 return 0;
481 EXPORT_SYMBOL(__check_region);
483 void __release_region(struct resource *parent, unsigned long start, unsigned long n)
485 struct resource **p;
486 unsigned long end;
488 p = &parent->child;
489 end = start + n - 1;
491 write_lock(&resource_lock);
493 for (;;) {
494 struct resource *res = *p;
496 if (!res)
497 break;
498 if (res->start <= start && res->end >= end) {
499 if (!(res->flags & IORESOURCE_BUSY)) {
500 p = &res->child;
501 continue;
503 if (res->start != start || res->end != end)
504 break;
505 *p = res->sibling;
506 write_unlock(&resource_lock);
507 kfree(res);
508 return;
510 p = &res->sibling;
513 write_unlock(&resource_lock);
515 printk(KERN_WARNING "Trying to free nonexistent resource <%08lx-%08lx>\n", start, end);
518 EXPORT_SYMBOL(__release_region);
521 * Called from init/main.c to reserve IO ports.
523 #define MAXRESERVE 4
524 static int __init reserve_setup(char *str)
526 static int reserved;
527 static struct resource reserve[MAXRESERVE];
529 for (;;) {
530 int io_start, io_num;
531 int x = reserved;
533 if (get_option (&str, &io_start) != 2)
534 break;
535 if (get_option (&str, &io_num) == 0)
536 break;
537 if (x < MAXRESERVE) {
538 struct resource *res = reserve + x;
539 res->name = "reserved";
540 res->start = io_start;
541 res->end = io_start + io_num - 1;
542 res->flags = IORESOURCE_BUSY;
543 res->child = NULL;
544 if (request_resource(res->start >= 0x10000 ? &iomem_resource : &ioport_resource, res) == 0)
545 reserved = x+1;
548 return 1;
551 __setup("reserve=", reserve_setup);