2 * linux/kernel/resource.c
4 * Copyright (C) 1999 Linus Torvalds
5 * Copyright (C) 1999 Martin Mares <mj@ucw.cz>
7 * Arbitrary resource management.
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>
19 #include <linux/proc_fs.h>
20 #include <linux/seq_file.h>
24 struct resource ioport_resource = {
27 .end = IO_SPACE_LIMIT,
28 .flags = IORESOURCE_IO,
31 EXPORT_SYMBOL(ioport_resource);
33 struct resource iomem_resource = {
37 .flags = IORESOURCE_MEM,
40 EXPORT_SYMBOL(iomem_resource);
42 static DEFINE_RWLOCK(resource_lock);
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;
54 while (!p->sibling && p->parent)
59 static void *r_start(struct seq_file *m, loff_t *pos)
60 __acquires(resource_lock)
62 struct resource *p = m->private;
64 read_lock(&resource_lock);
65 for (p = p->child; p && l < *pos; p = r_next(m, p, &l))
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;
83 for (depth = 0, p = r; depth < MAX_IORES_LEVEL; depth++, p = p->parent)
84 if (p->parent == root)
86 seq_printf(m, "%*s%0*lx-%0*lx : %s\n",
90 r->name ? r->name : "<BAD>");
94 static struct seq_operations resource_op = {
101 static int ioports_open(struct inode *inode, struct file *file)
103 int res = seq_open(file, &resource_op);
105 struct seq_file *m = file->private_data;
106 m->private = &ioport_resource;
111 static int iomem_open(struct inode *inode, struct file *file)
113 int res = seq_open(file, &resource_op);
115 struct seq_file *m = file->private_data;
116 m->private = &iomem_resource;
121 static struct file_operations proc_ioports_operations = {
122 .open = ioports_open,
125 .release = seq_release,
128 static struct file_operations proc_iomem_operations = {
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);
141 entry->proc_fops = &proc_ioports_operations;
142 entry = create_proc_entry("iomem", 0, NULL);
144 entry->proc_fops = &proc_iomem_operations;
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;
160 if (start < root->start)
167 if (!tmp || tmp->start > end) {
174 if (tmp->end < start)
180 static int __release_resource(struct resource *old)
182 struct resource *tmp, **p;
184 p = &old->parent->child;
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);
221 EXPORT_SYMBOL(____request_resource);
223 int release_resource(struct resource *old)
227 write_lock(&resource_lock);
228 retval = __release_resource(old);
229 write_unlock(&resource_lock);
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,
240 unsigned long min, unsigned long max,
242 void (*alignf)(void *, struct resource *,
243 unsigned long, unsigned long),
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;
259 new->end = this->start - 1;
261 new->end = root->end;
262 if (new->start < min)
266 new->start = ALIGN(new->start, align);
268 alignf(alignf_data, new, size, align);
269 if (new->start < new->end && new->end - new->start >= size - 1) {
270 new->end = new->start + size - 1;
275 new->start = this->end + 1;
276 this = this->sibling;
282 * Allocate empty slot in the resource tree given range and alignment.
284 int allocate_resource(struct resource *root, struct resource *new,
286 unsigned long min, unsigned long max,
288 void (*alignf)(void *, struct resource *,
289 unsigned long, unsigned long),
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))
298 write_unlock(&resource_lock);
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)
321 struct resource *first, *next;
323 write_lock(&resource_lock);
326 first = __request_resource(parent, new);
334 /* Resource fully contained by the clashing resource? Recurse into it */
335 if (first->start <= new->start && first->end >= new->end) {
340 for (next = first; ; next = next->sibling) {
341 /* Partial overlap? Bad, and unfixable */
342 if (next->start < new->start || next->end > new->end)
346 if (next->sibling->start > new->end)
352 new->parent = parent;
353 new->sibling = next->sibling;
356 next->sibling = NULL;
357 for (next = first; next; next = next->sibling)
360 if (parent->child == first) {
363 next = parent->child;
364 while (next->sibling != first)
365 next = next->sibling;
370 write_unlock(&resource_lock);
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;
387 write_lock(&resource_lock);
389 if ((start < parent->start) || (end > parent->end))
392 for (tmp = res->child; tmp; tmp = tmp->sibling) {
393 if ((tmp->start < start) || (tmp->end > end))
397 if (res->sibling && (res->sibling->start <= end))
402 while (tmp->sibling != res)
404 if (start <= tmp->end)
413 write_unlock(&resource_lock);
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 = kzalloc(sizeof(*res), GFP_KERNEL);
438 res->end = start + n - 1;
439 res->flags = IORESOURCE_BUSY;
441 write_lock(&resource_lock);
444 struct resource *conflict;
446 conflict = __request_resource(parent, res);
449 if (conflict != parent) {
451 if (!(conflict->flags & IORESOURCE_BUSY))
455 /* Uhhuh, that didn't work out.. */
460 write_unlock(&resource_lock);
465 EXPORT_SYMBOL(__request_region);
467 int __deprecated __check_region(struct resource *parent, unsigned long start, unsigned long n)
469 struct resource * res;
471 res = __request_region(parent, start, n, "check-region");
475 release_resource(res);
480 EXPORT_SYMBOL(__check_region);
482 void __release_region(struct resource *parent, unsigned long start, unsigned long n)
490 write_lock(&resource_lock);
493 struct resource *res = *p;
497 if (res->start <= start && res->end >= end) {
498 if (!(res->flags & IORESOURCE_BUSY)) {
502 if (res->start != start || res->end != end)
505 write_unlock(&resource_lock);
512 write_unlock(&resource_lock);
514 printk(KERN_WARNING "Trying to free nonexistent resource <%08lx-%08lx>\n", start, end);
517 EXPORT_SYMBOL(__release_region);
520 * Called from init/main.c to reserve IO ports.
523 static int __init reserve_setup(char *str)
526 static struct resource reserve[MAXRESERVE];
529 int io_start, io_num;
532 if (get_option (&str, &io_start) != 2)
534 if (get_option (&str, &io_num) == 0)
536 if (x < MAXRESERVE) {
537 struct resource *res = reserve + x;
538 res->name = "reserved";
539 res->start = io_start;
540 res->end = io_start + io_num - 1;
541 res->flags = IORESOURCE_BUSY;
543 if (request_resource(res->start >= 0x10000 ? &iomem_resource : &ioport_resource, res) == 0)
550 __setup("reserve=", reserve_setup);