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
);
235 #ifdef CONFIG_MEMORY_HOTPLUG
237 * Finds the lowest memory reosurce exists within [res->start.res->end)
238 * the caller must specify res->start, res->end, res->flags.
239 * If found, returns 0, res is overwritten, if not found, returns -1.
241 int find_next_system_ram(struct resource
*res
)
243 resource_size_t start
, end
;
251 read_lock(&resource_lock
);
252 for (p
= iomem_resource
.child
; p
; p
= p
->sibling
) {
253 /* system ram is just marked as IORESOURCE_MEM */
254 if (p
->flags
!= res
->flags
)
256 if (p
->start
> end
) {
260 if (p
->start
>= start
)
263 read_unlock(&resource_lock
);
267 res
->start
= p
->start
;
274 * Find empty slot in the resource tree given range and alignment.
276 static int find_resource(struct resource
*root
, struct resource
*new,
278 unsigned long min
, unsigned long max
,
280 void (*alignf
)(void *, struct resource
*,
281 unsigned long, unsigned long),
284 struct resource
*this = root
->child
;
286 new->start
= root
->start
;
288 * Skip past an allocated resource that starts at 0, since the assignment
289 * of this->start - 1 to new->end below would cause an underflow.
291 if (this && this->start
== 0) {
292 new->start
= this->end
+ 1;
293 this = this->sibling
;
297 new->end
= this->start
- 1;
299 new->end
= root
->end
;
300 if (new->start
< min
)
304 new->start
= ALIGN(new->start
, align
);
306 alignf(alignf_data
, new, size
, align
);
307 if (new->start
< new->end
&& new->end
- new->start
>= size
- 1) {
308 new->end
= new->start
+ size
- 1;
313 new->start
= this->end
+ 1;
314 this = this->sibling
;
320 * Allocate empty slot in the resource tree given range and alignment.
322 int allocate_resource(struct resource
*root
, struct resource
*new,
324 unsigned long min
, unsigned long max
,
326 void (*alignf
)(void *, struct resource
*,
327 unsigned long, unsigned long),
332 write_lock(&resource_lock
);
333 err
= find_resource(root
, new, size
, min
, max
, align
, alignf
, alignf_data
);
334 if (err
>= 0 && __request_resource(root
, new))
336 write_unlock(&resource_lock
);
340 EXPORT_SYMBOL(allocate_resource
);
343 * insert_resource - Inserts a resource in the resource tree
344 * @parent: parent of the new resource
345 * @new: new resource to insert
347 * Returns 0 on success, -EBUSY if the resource can't be inserted.
349 * This function is equivalent of request_resource when no conflict
350 * happens. If a conflict happens, and the conflicting resources
351 * entirely fit within the range of the new resource, then the new
352 * resource is inserted and the conflicting resources become childs of
353 * the new resource. Otherwise the new resource becomes the child of
354 * the conflicting resource
356 int insert_resource(struct resource
*parent
, struct resource
*new)
359 struct resource
*first
, *next
;
361 write_lock(&resource_lock
);
364 first
= __request_resource(parent
, new);
372 /* Resource fully contained by the clashing resource? Recurse into it */
373 if (first
->start
<= new->start
&& first
->end
>= new->end
) {
378 for (next
= first
; ; next
= next
->sibling
) {
379 /* Partial overlap? Bad, and unfixable */
380 if (next
->start
< new->start
|| next
->end
> new->end
)
384 if (next
->sibling
->start
> new->end
)
390 new->parent
= parent
;
391 new->sibling
= next
->sibling
;
394 next
->sibling
= NULL
;
395 for (next
= first
; next
; next
= next
->sibling
)
398 if (parent
->child
== first
) {
401 next
= parent
->child
;
402 while (next
->sibling
!= first
)
403 next
= next
->sibling
;
408 write_unlock(&resource_lock
);
412 EXPORT_SYMBOL(insert_resource
);
415 * Given an existing resource, change its start and size to match the
416 * arguments. Returns -EBUSY if it can't fit. Existing children of
417 * the resource are assumed to be immutable.
419 int adjust_resource(struct resource
*res
, unsigned long start
, unsigned long size
)
421 struct resource
*tmp
, *parent
= res
->parent
;
422 unsigned long end
= start
+ size
- 1;
425 write_lock(&resource_lock
);
427 if ((start
< parent
->start
) || (end
> parent
->end
))
430 for (tmp
= res
->child
; tmp
; tmp
= tmp
->sibling
) {
431 if ((tmp
->start
< start
) || (tmp
->end
> end
))
435 if (res
->sibling
&& (res
->sibling
->start
<= end
))
440 while (tmp
->sibling
!= res
)
442 if (start
<= tmp
->end
)
451 write_unlock(&resource_lock
);
455 EXPORT_SYMBOL(adjust_resource
);
458 * This is compatibility stuff for IO resources.
460 * Note how this, unlike the above, knows about
461 * the IO flag meanings (busy etc).
463 * Request-region creates a new busy region.
465 * Check-region returns non-zero if the area is already busy
467 * Release-region releases a matching busy region.
469 struct resource
* __request_region(struct resource
*parent
, unsigned long start
, unsigned long n
, const char *name
)
471 struct resource
*res
= kzalloc(sizeof(*res
), GFP_KERNEL
);
476 res
->end
= start
+ n
- 1;
477 res
->flags
= IORESOURCE_BUSY
;
479 write_lock(&resource_lock
);
482 struct resource
*conflict
;
484 conflict
= __request_resource(parent
, res
);
487 if (conflict
!= parent
) {
489 if (!(conflict
->flags
& IORESOURCE_BUSY
))
493 /* Uhhuh, that didn't work out.. */
498 write_unlock(&resource_lock
);
503 EXPORT_SYMBOL(__request_region
);
505 int __check_region(struct resource
*parent
, unsigned long start
, unsigned long n
)
507 struct resource
* res
;
509 res
= __request_region(parent
, start
, n
, "check-region");
513 release_resource(res
);
518 EXPORT_SYMBOL(__check_region
);
520 void __release_region(struct resource
*parent
, unsigned long start
, unsigned long n
)
528 write_lock(&resource_lock
);
531 struct resource
*res
= *p
;
535 if (res
->start
<= start
&& res
->end
>= end
) {
536 if (!(res
->flags
& IORESOURCE_BUSY
)) {
540 if (res
->start
!= start
|| res
->end
!= end
)
543 write_unlock(&resource_lock
);
550 write_unlock(&resource_lock
);
552 printk(KERN_WARNING
"Trying to free nonexistent resource <%08lx-%08lx>\n", start
, end
);
555 EXPORT_SYMBOL(__release_region
);
558 * Called from init/main.c to reserve IO ports.
561 static int __init
reserve_setup(char *str
)
564 static struct resource reserve
[MAXRESERVE
];
567 int io_start
, io_num
;
570 if (get_option (&str
, &io_start
) != 2)
572 if (get_option (&str
, &io_num
) == 0)
574 if (x
< MAXRESERVE
) {
575 struct resource
*res
= reserve
+ x
;
576 res
->name
= "reserved";
577 res
->start
= io_start
;
578 res
->end
= io_start
+ io_num
- 1;
579 res
->flags
= IORESOURCE_BUSY
;
581 if (request_resource(res
->start
>= 0x10000 ? &iomem_resource
: &ioport_resource
, res
) == 0)
588 __setup("reserve=", reserve_setup
);