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/module.h>
11 #include <linux/errno.h>
12 #include <linux/ioport.h>
13 #include <linux/init.h>
14 #include <linux/slab.h>
15 #include <linux/spinlock.h>
17 #include <linux/proc_fs.h>
18 #include <linux/seq_file.h>
19 #include <linux/device.h>
20 #include <linux/pfn.h>
24 struct resource ioport_resource
= {
27 .end
= IO_SPACE_LIMIT
,
28 .flags
= IORESOURCE_IO
,
30 EXPORT_SYMBOL(ioport_resource
);
32 struct resource iomem_resource
= {
36 .flags
= IORESOURCE_MEM
,
38 EXPORT_SYMBOL(iomem_resource
);
40 static DEFINE_RWLOCK(resource_lock
);
42 static void *r_next(struct seq_file
*m
, void *v
, loff_t
*pos
)
44 struct resource
*p
= v
;
48 while (!p
->sibling
&& p
->parent
)
55 enum { MAX_IORES_LEVEL
= 5 };
57 static void *r_start(struct seq_file
*m
, loff_t
*pos
)
58 __acquires(resource_lock
)
60 struct resource
*p
= m
->private;
62 read_lock(&resource_lock
);
63 for (p
= p
->child
; p
&& l
< *pos
; p
= r_next(m
, p
, &l
))
68 static void r_stop(struct seq_file
*m
, void *v
)
69 __releases(resource_lock
)
71 read_unlock(&resource_lock
);
74 static int r_show(struct seq_file
*m
, void *v
)
76 struct resource
*root
= m
->private;
77 struct resource
*r
= v
, *p
;
78 int width
= root
->end
< 0x10000 ? 4 : 8;
81 for (depth
= 0, p
= r
; depth
< MAX_IORES_LEVEL
; depth
++, p
= p
->parent
)
82 if (p
->parent
== root
)
84 seq_printf(m
, "%*s%0*llx-%0*llx : %s\n",
86 width
, (unsigned long long) r
->start
,
87 width
, (unsigned long long) r
->end
,
88 r
->name
? r
->name
: "<BAD>");
92 static const struct seq_operations resource_op
= {
99 static int ioports_open(struct inode
*inode
, struct file
*file
)
101 int res
= seq_open(file
, &resource_op
);
103 struct seq_file
*m
= file
->private_data
;
104 m
->private = &ioport_resource
;
109 static int iomem_open(struct inode
*inode
, struct file
*file
)
111 int res
= seq_open(file
, &resource_op
);
113 struct seq_file
*m
= file
->private_data
;
114 m
->private = &iomem_resource
;
119 static const struct file_operations proc_ioports_operations
= {
120 .open
= ioports_open
,
123 .release
= seq_release
,
126 static const struct file_operations proc_iomem_operations
= {
130 .release
= seq_release
,
133 static int __init
ioresources_init(void)
135 proc_create("ioports", 0, NULL
, &proc_ioports_operations
);
136 proc_create("iomem", 0, NULL
, &proc_iomem_operations
);
139 __initcall(ioresources_init
);
141 #endif /* CONFIG_PROC_FS */
143 /* Return the conflict entry if you can't request it */
144 static struct resource
* __request_resource(struct resource
*root
, struct resource
*new)
146 resource_size_t start
= new->start
;
147 resource_size_t end
= new->end
;
148 struct resource
*tmp
, **p
;
152 if (start
< root
->start
)
159 if (!tmp
|| tmp
->start
> end
) {
166 if (tmp
->end
< start
)
172 static int __release_resource(struct resource
*old
)
174 struct resource
*tmp
, **p
;
176 p
= &old
->parent
->child
;
192 * request_resource - request and reserve an I/O or memory resource
193 * @root: root resource descriptor
194 * @new: resource descriptor desired by caller
196 * Returns 0 for success, negative error code on error.
198 int request_resource(struct resource
*root
, struct resource
*new)
200 struct resource
*conflict
;
202 write_lock(&resource_lock
);
203 conflict
= __request_resource(root
, new);
204 write_unlock(&resource_lock
);
205 return conflict
? -EBUSY
: 0;
208 EXPORT_SYMBOL(request_resource
);
211 * release_resource - release a previously reserved resource
212 * @old: resource pointer
214 int release_resource(struct resource
*old
)
218 write_lock(&resource_lock
);
219 retval
= __release_resource(old
);
220 write_unlock(&resource_lock
);
224 EXPORT_SYMBOL(release_resource
);
226 #if !defined(CONFIG_ARCH_HAS_WALK_MEMORY)
228 * Finds the lowest memory reosurce exists within [res->start.res->end)
229 * the caller must specify res->start, res->end, res->flags and "name".
230 * If found, returns 0, res is overwritten, if not found, returns -1.
232 static int find_next_system_ram(struct resource
*res
, char *name
)
234 resource_size_t start
, end
;
241 BUG_ON(start
>= end
);
243 read_lock(&resource_lock
);
244 for (p
= iomem_resource
.child
; p
; p
= p
->sibling
) {
245 /* system ram is just marked as IORESOURCE_MEM */
246 if (p
->flags
!= res
->flags
)
248 if (name
&& strcmp(p
->name
, name
))
250 if (p
->start
> end
) {
254 if ((p
->end
>= start
) && (p
->start
< end
))
257 read_unlock(&resource_lock
);
261 if (res
->start
< p
->start
)
262 res
->start
= p
->start
;
263 if (res
->end
> p
->end
)
269 * This function calls callback against all memory range of "System RAM"
270 * which are marked as IORESOURCE_MEM and IORESOUCE_BUSY.
271 * Now, this function is only for "System RAM".
273 int walk_system_ram_range(unsigned long start_pfn
, unsigned long nr_pages
,
274 void *arg
, int (*func
)(unsigned long, unsigned long, void *))
277 unsigned long pfn
, len
;
281 res
.start
= (u64
) start_pfn
<< PAGE_SHIFT
;
282 res
.end
= ((u64
)(start_pfn
+ nr_pages
) << PAGE_SHIFT
) - 1;
283 res
.flags
= IORESOURCE_MEM
| IORESOURCE_BUSY
;
285 while ((res
.start
< res
.end
) &&
286 (find_next_system_ram(&res
, "System RAM") >= 0)) {
287 pfn
= (unsigned long)(res
.start
>> PAGE_SHIFT
);
288 len
= (unsigned long)((res
.end
+ 1 - res
.start
) >> PAGE_SHIFT
);
289 ret
= (*func
)(pfn
, len
, arg
);
292 res
.start
= res
.end
+ 1;
301 * Find empty slot in the resource tree given range and alignment.
303 static int find_resource(struct resource
*root
, struct resource
*new,
304 resource_size_t size
, resource_size_t min
,
305 resource_size_t max
, resource_size_t align
,
306 void (*alignf
)(void *, struct resource
*,
307 resource_size_t
, resource_size_t
),
310 struct resource
*this = root
->child
;
311 struct resource tmp
= *new;
313 tmp
.start
= root
->start
;
315 * Skip past an allocated resource that starts at 0, since the assignment
316 * of this->start - 1 to tmp->end below would cause an underflow.
318 if (this && this->start
== 0) {
319 tmp
.start
= this->end
+ 1;
320 this = this->sibling
;
324 tmp
.end
= this->start
- 1;
331 tmp
.start
= ALIGN(tmp
.start
, align
);
333 alignf(alignf_data
, &tmp
, size
, align
);
334 if (tmp
.start
< tmp
.end
&& tmp
.end
- tmp
.start
>= size
- 1) {
335 new->start
= tmp
.start
;
336 new->end
= tmp
.start
+ size
- 1;
341 tmp
.start
= this->end
+ 1;
342 this = this->sibling
;
348 * allocate_resource - allocate empty slot in the resource tree given range & alignment
349 * @root: root resource descriptor
350 * @new: resource descriptor desired by caller
351 * @size: requested resource region size
352 * @min: minimum size to allocate
353 * @max: maximum size to allocate
354 * @align: alignment requested, in bytes
355 * @alignf: alignment function, optional, called if not NULL
356 * @alignf_data: arbitrary data to pass to the @alignf function
358 int allocate_resource(struct resource
*root
, struct resource
*new,
359 resource_size_t size
, resource_size_t min
,
360 resource_size_t max
, resource_size_t align
,
361 void (*alignf
)(void *, struct resource
*,
362 resource_size_t
, resource_size_t
),
367 write_lock(&resource_lock
);
368 err
= find_resource(root
, new, size
, min
, max
, align
, alignf
, alignf_data
);
369 if (err
>= 0 && __request_resource(root
, new))
371 write_unlock(&resource_lock
);
375 EXPORT_SYMBOL(allocate_resource
);
378 * Insert a resource into the resource tree. If successful, return NULL,
379 * otherwise return the conflicting resource (compare to __request_resource())
381 static struct resource
* __insert_resource(struct resource
*parent
, struct resource
*new)
383 struct resource
*first
, *next
;
385 for (;; parent
= first
) {
386 first
= __request_resource(parent
, new);
393 if ((first
->start
> new->start
) || (first
->end
< new->end
))
395 if ((first
->start
== new->start
) && (first
->end
== new->end
))
399 for (next
= first
; ; next
= next
->sibling
) {
400 /* Partial overlap? Bad, and unfixable */
401 if (next
->start
< new->start
|| next
->end
> new->end
)
405 if (next
->sibling
->start
> new->end
)
409 new->parent
= parent
;
410 new->sibling
= next
->sibling
;
413 next
->sibling
= NULL
;
414 for (next
= first
; next
; next
= next
->sibling
)
417 if (parent
->child
== first
) {
420 next
= parent
->child
;
421 while (next
->sibling
!= first
)
422 next
= next
->sibling
;
429 * insert_resource - Inserts a resource in the resource tree
430 * @parent: parent of the new resource
431 * @new: new resource to insert
433 * Returns 0 on success, -EBUSY if the resource can't be inserted.
435 * This function is equivalent to request_resource when no conflict
436 * happens. If a conflict happens, and the conflicting resources
437 * entirely fit within the range of the new resource, then the new
438 * resource is inserted and the conflicting resources become children of
441 int insert_resource(struct resource
*parent
, struct resource
*new)
443 struct resource
*conflict
;
445 write_lock(&resource_lock
);
446 conflict
= __insert_resource(parent
, new);
447 write_unlock(&resource_lock
);
448 return conflict
? -EBUSY
: 0;
452 * insert_resource_expand_to_fit - Insert a resource into the resource tree
453 * @root: root resource descriptor
454 * @new: new resource to insert
456 * Insert a resource into the resource tree, possibly expanding it in order
457 * to make it encompass any conflicting resources.
459 void insert_resource_expand_to_fit(struct resource
*root
, struct resource
*new)
464 write_lock(&resource_lock
);
466 struct resource
*conflict
;
468 conflict
= __insert_resource(root
, new);
471 if (conflict
== root
)
474 /* Ok, expand resource to cover the conflict, then try again .. */
475 if (conflict
->start
< new->start
)
476 new->start
= conflict
->start
;
477 if (conflict
->end
> new->end
)
478 new->end
= conflict
->end
;
480 printk("Expanded resource %s due to conflict with %s\n", new->name
, conflict
->name
);
482 write_unlock(&resource_lock
);
486 * adjust_resource - modify a resource's start and size
487 * @res: resource to modify
488 * @start: new start value
491 * Given an existing resource, change its start and size to match the
492 * arguments. Returns 0 on success, -EBUSY if it can't fit.
493 * Existing children of the resource are assumed to be immutable.
495 int adjust_resource(struct resource
*res
, resource_size_t start
, resource_size_t size
)
497 struct resource
*tmp
, *parent
= res
->parent
;
498 resource_size_t end
= start
+ size
- 1;
501 write_lock(&resource_lock
);
503 if ((start
< parent
->start
) || (end
> parent
->end
))
506 for (tmp
= res
->child
; tmp
; tmp
= tmp
->sibling
) {
507 if ((tmp
->start
< start
) || (tmp
->end
> end
))
511 if (res
->sibling
&& (res
->sibling
->start
<= end
))
516 while (tmp
->sibling
!= res
)
518 if (start
<= tmp
->end
)
527 write_unlock(&resource_lock
);
531 static void __init
__reserve_region_with_split(struct resource
*root
,
532 resource_size_t start
, resource_size_t end
,
535 struct resource
*parent
= root
;
536 struct resource
*conflict
;
537 struct resource
*res
= kzalloc(sizeof(*res
), GFP_ATOMIC
);
545 res
->flags
= IORESOURCE_BUSY
;
547 conflict
= __request_resource(parent
, res
);
551 /* failed, split and try again */
554 /* conflict covered whole area */
555 if (conflict
->start
<= start
&& conflict
->end
>= end
)
558 if (conflict
->start
> start
)
559 __reserve_region_with_split(root
, start
, conflict
->start
-1, name
);
560 if (conflict
->end
< end
)
561 __reserve_region_with_split(root
, conflict
->end
+1, end
, name
);
564 void __init
reserve_region_with_split(struct resource
*root
,
565 resource_size_t start
, resource_size_t end
,
568 write_lock(&resource_lock
);
569 __reserve_region_with_split(root
, start
, end
, name
);
570 write_unlock(&resource_lock
);
573 EXPORT_SYMBOL(adjust_resource
);
576 * resource_alignment - calculate resource's alignment
577 * @res: resource pointer
579 * Returns alignment on success, 0 (invalid alignment) on failure.
581 resource_size_t
resource_alignment(struct resource
*res
)
583 switch (res
->flags
& (IORESOURCE_SIZEALIGN
| IORESOURCE_STARTALIGN
)) {
584 case IORESOURCE_SIZEALIGN
:
585 return resource_size(res
);
586 case IORESOURCE_STARTALIGN
:
594 * This is compatibility stuff for IO resources.
596 * Note how this, unlike the above, knows about
597 * the IO flag meanings (busy etc).
599 * request_region creates a new busy region.
601 * check_region returns non-zero if the area is already busy.
603 * release_region releases a matching busy region.
607 * __request_region - create a new busy resource region
608 * @parent: parent resource descriptor
609 * @start: resource start address
610 * @n: resource region size
611 * @name: reserving caller's ID string
612 * @flags: IO resource flags
614 struct resource
* __request_region(struct resource
*parent
,
615 resource_size_t start
, resource_size_t n
,
616 const char *name
, int flags
)
618 struct resource
*res
= kzalloc(sizeof(*res
), GFP_KERNEL
);
625 res
->end
= start
+ n
- 1;
626 res
->flags
= IORESOURCE_BUSY
;
629 write_lock(&resource_lock
);
632 struct resource
*conflict
;
634 conflict
= __request_resource(parent
, res
);
637 if (conflict
!= parent
) {
639 if (!(conflict
->flags
& IORESOURCE_BUSY
))
643 /* Uhhuh, that didn't work out.. */
648 write_unlock(&resource_lock
);
651 EXPORT_SYMBOL(__request_region
);
654 * __check_region - check if a resource region is busy or free
655 * @parent: parent resource descriptor
656 * @start: resource start address
657 * @n: resource region size
659 * Returns 0 if the region is free at the moment it is checked,
660 * returns %-EBUSY if the region is busy.
663 * This function is deprecated because its use is racy.
664 * Even if it returns 0, a subsequent call to request_region()
665 * may fail because another driver etc. just allocated the region.
666 * Do NOT use it. It will be removed from the kernel.
668 int __check_region(struct resource
*parent
, resource_size_t start
,
671 struct resource
* res
;
673 res
= __request_region(parent
, start
, n
, "check-region", 0);
677 release_resource(res
);
681 EXPORT_SYMBOL(__check_region
);
684 * __release_region - release a previously reserved resource region
685 * @parent: parent resource descriptor
686 * @start: resource start address
687 * @n: resource region size
689 * The described resource region must match a currently busy region.
691 void __release_region(struct resource
*parent
, resource_size_t start
,
700 write_lock(&resource_lock
);
703 struct resource
*res
= *p
;
707 if (res
->start
<= start
&& res
->end
>= end
) {
708 if (!(res
->flags
& IORESOURCE_BUSY
)) {
712 if (res
->start
!= start
|| res
->end
!= end
)
715 write_unlock(&resource_lock
);
722 write_unlock(&resource_lock
);
724 printk(KERN_WARNING
"Trying to free nonexistent resource "
725 "<%016llx-%016llx>\n", (unsigned long long)start
,
726 (unsigned long long)end
);
728 EXPORT_SYMBOL(__release_region
);
731 * Managed region resource
733 struct region_devres
{
734 struct resource
*parent
;
735 resource_size_t start
;
739 static void devm_region_release(struct device
*dev
, void *res
)
741 struct region_devres
*this = res
;
743 __release_region(this->parent
, this->start
, this->n
);
746 static int devm_region_match(struct device
*dev
, void *res
, void *match_data
)
748 struct region_devres
*this = res
, *match
= match_data
;
750 return this->parent
== match
->parent
&&
751 this->start
== match
->start
&& this->n
== match
->n
;
754 struct resource
* __devm_request_region(struct device
*dev
,
755 struct resource
*parent
, resource_size_t start
,
756 resource_size_t n
, const char *name
)
758 struct region_devres
*dr
= NULL
;
759 struct resource
*res
;
761 dr
= devres_alloc(devm_region_release
, sizeof(struct region_devres
),
770 res
= __request_region(parent
, start
, n
, name
, 0);
778 EXPORT_SYMBOL(__devm_request_region
);
780 void __devm_release_region(struct device
*dev
, struct resource
*parent
,
781 resource_size_t start
, resource_size_t n
)
783 struct region_devres match_data
= { parent
, start
, n
};
785 __release_region(parent
, start
, n
);
786 WARN_ON(devres_destroy(dev
, devm_region_release
, devm_region_match
,
789 EXPORT_SYMBOL(__devm_release_region
);
792 * Called from init/main.c to reserve IO ports.
795 static int __init
reserve_setup(char *str
)
798 static struct resource reserve
[MAXRESERVE
];
801 unsigned int io_start
, io_num
;
804 if (get_option (&str
, &io_start
) != 2)
806 if (get_option (&str
, &io_num
) == 0)
808 if (x
< MAXRESERVE
) {
809 struct resource
*res
= reserve
+ x
;
810 res
->name
= "reserved";
811 res
->start
= io_start
;
812 res
->end
= io_start
+ io_num
- 1;
813 res
->flags
= IORESOURCE_BUSY
;
815 if (request_resource(res
->start
>= 0x10000 ? &iomem_resource
: &ioport_resource
, res
) == 0)
822 __setup("reserve=", reserve_setup
);
825 * Check if the requested addr and size spans more than any slot in the
826 * iomem resource tree.
828 int iomem_map_sanity_check(resource_size_t addr
, unsigned long size
)
830 struct resource
*p
= &iomem_resource
;
834 read_lock(&resource_lock
);
835 for (p
= p
->child
; p
; p
= r_next(NULL
, p
, &l
)) {
837 * We can probably skip the resources without
838 * IORESOURCE_IO attribute?
840 if (p
->start
>= addr
+ size
)
844 if (PFN_DOWN(p
->start
) <= PFN_DOWN(addr
) &&
845 PFN_DOWN(p
->end
) >= PFN_DOWN(addr
+ size
- 1))
848 * if a resource is "BUSY", it's not a hardware resource
849 * but a driver mapping of such a resource; we don't want
850 * to warn for those; some drivers legitimately map only
851 * partial hardware resources. (example: vesafb)
853 if (p
->flags
& IORESOURCE_BUSY
)
856 printk(KERN_WARNING
"resource map sanity check conflict: "
857 "0x%llx 0x%llx 0x%llx 0x%llx %s\n",
858 (unsigned long long)addr
,
859 (unsigned long long)(addr
+ size
- 1),
860 (unsigned long long)p
->start
,
861 (unsigned long long)p
->end
,
866 read_unlock(&resource_lock
);
871 #ifdef CONFIG_STRICT_DEVMEM
872 static int strict_iomem_checks
= 1;
874 static int strict_iomem_checks
;
878 * check if an address is reserved in the iomem resource tree
879 * returns 1 if reserved, 0 if not reserved.
881 int iomem_is_exclusive(u64 addr
)
883 struct resource
*p
= &iomem_resource
;
886 int size
= PAGE_SIZE
;
888 if (!strict_iomem_checks
)
891 addr
= addr
& PAGE_MASK
;
893 read_lock(&resource_lock
);
894 for (p
= p
->child
; p
; p
= r_next(NULL
, p
, &l
)) {
896 * We can probably skip the resources without
897 * IORESOURCE_IO attribute?
899 if (p
->start
>= addr
+ size
)
903 if (p
->flags
& IORESOURCE_BUSY
&&
904 p
->flags
& IORESOURCE_EXCLUSIVE
) {
909 read_unlock(&resource_lock
);
914 static int __init
strict_iomem(char *str
)
916 if (strstr(str
, "relaxed"))
917 strict_iomem_checks
= 0;
918 if (strstr(str
, "strict"))
919 strict_iomem_checks
= 1;
923 __setup("iomem=", strict_iomem
);