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 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
12 #include <linux/export.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/sched.h>
21 #include <linux/seq_file.h>
22 #include <linux/device.h>
23 #include <linux/pfn.h>
25 #include <linux/resource_ext.h>
29 struct resource ioport_resource
= {
32 .end
= IO_SPACE_LIMIT
,
33 .flags
= IORESOURCE_IO
,
35 EXPORT_SYMBOL(ioport_resource
);
37 struct resource iomem_resource
= {
41 .flags
= IORESOURCE_MEM
,
43 EXPORT_SYMBOL(iomem_resource
);
45 /* constraints to be met while allocating resources */
46 struct resource_constraint
{
47 resource_size_t min
, max
, align
;
48 resource_size_t (*alignf
)(void *, const struct resource
*,
49 resource_size_t
, resource_size_t
);
53 static DEFINE_RWLOCK(resource_lock
);
56 * For memory hotplug, there is no way to free resource entries allocated
57 * by boot mem after the system is up. So for reusing the resource entry
58 * we need to remember the resource.
60 static struct resource
*bootmem_resource_free
;
61 static DEFINE_SPINLOCK(bootmem_resource_lock
);
63 static struct resource
*next_resource(struct resource
*p
, bool sibling_only
)
65 /* Caller wants to traverse through siblings only */
71 while (!p
->sibling
&& p
->parent
)
76 static void *r_next(struct seq_file
*m
, void *v
, loff_t
*pos
)
78 struct resource
*p
= v
;
80 return (void *)next_resource(p
, false);
85 enum { MAX_IORES_LEVEL
= 5 };
87 static void *r_start(struct seq_file
*m
, loff_t
*pos
)
88 __acquires(resource_lock
)
90 struct resource
*p
= m
->private;
92 read_lock(&resource_lock
);
93 for (p
= p
->child
; p
&& l
< *pos
; p
= r_next(m
, p
, &l
))
98 static void r_stop(struct seq_file
*m
, void *v
)
99 __releases(resource_lock
)
101 read_unlock(&resource_lock
);
104 static int r_show(struct seq_file
*m
, void *v
)
106 struct resource
*root
= m
->private;
107 struct resource
*r
= v
, *p
;
108 int width
= root
->end
< 0x10000 ? 4 : 8;
111 for (depth
= 0, p
= r
; depth
< MAX_IORES_LEVEL
; depth
++, p
= p
->parent
)
112 if (p
->parent
== root
)
114 seq_printf(m
, "%*s%0*llx-%0*llx : %s\n",
116 width
, (unsigned long long) r
->start
,
117 width
, (unsigned long long) r
->end
,
118 r
->name
? r
->name
: "<BAD>");
122 static const struct seq_operations resource_op
= {
129 static int ioports_open(struct inode
*inode
, struct file
*file
)
131 int res
= seq_open(file
, &resource_op
);
133 struct seq_file
*m
= file
->private_data
;
134 m
->private = &ioport_resource
;
139 static int iomem_open(struct inode
*inode
, struct file
*file
)
141 int res
= seq_open(file
, &resource_op
);
143 struct seq_file
*m
= file
->private_data
;
144 m
->private = &iomem_resource
;
149 static const struct file_operations proc_ioports_operations
= {
150 .open
= ioports_open
,
153 .release
= seq_release
,
156 static const struct file_operations proc_iomem_operations
= {
160 .release
= seq_release
,
163 static int __init
ioresources_init(void)
165 proc_create("ioports", 0, NULL
, &proc_ioports_operations
);
166 proc_create("iomem", 0, NULL
, &proc_iomem_operations
);
169 __initcall(ioresources_init
);
171 #endif /* CONFIG_PROC_FS */
173 static void free_resource(struct resource
*res
)
178 if (!PageSlab(virt_to_head_page(res
))) {
179 spin_lock(&bootmem_resource_lock
);
180 res
->sibling
= bootmem_resource_free
;
181 bootmem_resource_free
= res
;
182 spin_unlock(&bootmem_resource_lock
);
188 static struct resource
*alloc_resource(gfp_t flags
)
190 struct resource
*res
= NULL
;
192 spin_lock(&bootmem_resource_lock
);
193 if (bootmem_resource_free
) {
194 res
= bootmem_resource_free
;
195 bootmem_resource_free
= res
->sibling
;
197 spin_unlock(&bootmem_resource_lock
);
200 memset(res
, 0, sizeof(struct resource
));
202 res
= kzalloc(sizeof(struct resource
), flags
);
207 /* Return the conflict entry if you can't request it */
208 static struct resource
* __request_resource(struct resource
*root
, struct resource
*new)
210 resource_size_t start
= new->start
;
211 resource_size_t end
= new->end
;
212 struct resource
*tmp
, **p
;
216 if (start
< root
->start
)
223 if (!tmp
|| tmp
->start
> end
) {
230 if (tmp
->end
< start
)
236 static int __release_resource(struct resource
*old
)
238 struct resource
*tmp
, **p
;
240 p
= &old
->parent
->child
;
255 static void __release_child_resources(struct resource
*r
)
257 struct resource
*tmp
, *p
;
258 resource_size_t size
;
268 __release_child_resources(tmp
);
270 printk(KERN_DEBUG
"release child resource %pR\n", tmp
);
271 /* need to restore size, and keep flags */
272 size
= resource_size(tmp
);
278 void release_child_resources(struct resource
*r
)
280 write_lock(&resource_lock
);
281 __release_child_resources(r
);
282 write_unlock(&resource_lock
);
286 * request_resource_conflict - request and reserve an I/O or memory resource
287 * @root: root resource descriptor
288 * @new: resource descriptor desired by caller
290 * Returns 0 for success, conflict resource on error.
292 struct resource
*request_resource_conflict(struct resource
*root
, struct resource
*new)
294 struct resource
*conflict
;
296 write_lock(&resource_lock
);
297 conflict
= __request_resource(root
, new);
298 write_unlock(&resource_lock
);
303 * request_resource - request and reserve an I/O or memory resource
304 * @root: root resource descriptor
305 * @new: resource descriptor desired by caller
307 * Returns 0 for success, negative error code on error.
309 int request_resource(struct resource
*root
, struct resource
*new)
311 struct resource
*conflict
;
313 conflict
= request_resource_conflict(root
, new);
314 return conflict
? -EBUSY
: 0;
317 EXPORT_SYMBOL(request_resource
);
320 * release_resource - release a previously reserved resource
321 * @old: resource pointer
323 int release_resource(struct resource
*old
)
327 write_lock(&resource_lock
);
328 retval
= __release_resource(old
);
329 write_unlock(&resource_lock
);
333 EXPORT_SYMBOL(release_resource
);
336 * Finds the lowest iomem reosurce exists with-in [res->start.res->end)
337 * the caller must specify res->start, res->end, res->flags and "name".
338 * If found, returns 0, res is overwritten, if not found, returns -1.
339 * This walks through whole tree and not just first level children
340 * until and unless first_level_children_only is true.
342 static int find_next_iomem_res(struct resource
*res
, char *name
,
343 bool first_level_children_only
)
345 resource_size_t start
, end
;
347 bool sibling_only
= false;
353 BUG_ON(start
>= end
);
355 if (first_level_children_only
)
358 read_lock(&resource_lock
);
360 for (p
= iomem_resource
.child
; p
; p
= next_resource(p
, sibling_only
)) {
361 if (p
->flags
!= res
->flags
)
363 if (name
&& strcmp(p
->name
, name
))
365 if (p
->start
> end
) {
369 if ((p
->end
>= start
) && (p
->start
< end
))
373 read_unlock(&resource_lock
);
377 if (res
->start
< p
->start
)
378 res
->start
= p
->start
;
379 if (res
->end
> p
->end
)
385 * Walks through iomem resources and calls func() with matching resource
386 * ranges. This walks through whole tree and not just first level children.
387 * All the memory ranges which overlap start,end and also match flags and
388 * name are valid candidates.
390 * @name: name of resource
391 * @flags: resource flags
395 int walk_iomem_res(char *name
, unsigned long flags
, u64 start
, u64 end
,
396 void *arg
, int (*func
)(u64
, u64
, void *))
406 while ((res
.start
< res
.end
) &&
407 (!find_next_iomem_res(&res
, name
, false))) {
408 ret
= (*func
)(res
.start
, res
.end
, arg
);
411 res
.start
= res
.end
+ 1;
418 * This function calls callback against all memory range of "System RAM"
419 * which are marked as IORESOURCE_MEM and IORESOUCE_BUSY.
420 * Now, this function is only for "System RAM". This function deals with
421 * full ranges and not pfn. If resources are not pfn aligned, dealing
422 * with pfn can truncate ranges.
424 int walk_system_ram_res(u64 start
, u64 end
, void *arg
,
425 int (*func
)(u64
, u64
, void *))
433 res
.flags
= IORESOURCE_MEM
| IORESOURCE_BUSY
;
435 while ((res
.start
< res
.end
) &&
436 (!find_next_iomem_res(&res
, "System RAM", true))) {
437 ret
= (*func
)(res
.start
, res
.end
, arg
);
440 res
.start
= res
.end
+ 1;
446 #if !defined(CONFIG_ARCH_HAS_WALK_MEMORY)
449 * This function calls callback against all memory range of "System RAM"
450 * which are marked as IORESOURCE_MEM and IORESOUCE_BUSY.
451 * Now, this function is only for "System RAM".
453 int walk_system_ram_range(unsigned long start_pfn
, unsigned long nr_pages
,
454 void *arg
, int (*func
)(unsigned long, unsigned long, void *))
457 unsigned long pfn
, end_pfn
;
461 res
.start
= (u64
) start_pfn
<< PAGE_SHIFT
;
462 res
.end
= ((u64
)(start_pfn
+ nr_pages
) << PAGE_SHIFT
) - 1;
463 res
.flags
= IORESOURCE_MEM
| IORESOURCE_BUSY
;
465 while ((res
.start
< res
.end
) &&
466 (find_next_iomem_res(&res
, "System RAM", true) >= 0)) {
467 pfn
= (res
.start
+ PAGE_SIZE
- 1) >> PAGE_SHIFT
;
468 end_pfn
= (res
.end
+ 1) >> PAGE_SHIFT
;
470 ret
= (*func
)(pfn
, end_pfn
- pfn
, arg
);
473 res
.start
= res
.end
+ 1;
481 static int __is_ram(unsigned long pfn
, unsigned long nr_pages
, void *arg
)
486 * This generic page_is_ram() returns true if specified address is
487 * registered as "System RAM" in iomem_resource list.
489 int __weak
page_is_ram(unsigned long pfn
)
491 return walk_system_ram_range(pfn
, 1, NULL
, __is_ram
) == 1;
493 EXPORT_SYMBOL_GPL(page_is_ram
);
496 * region_intersects() - determine intersection of region with known resources
497 * @start: region start address
498 * @size: size of region
499 * @name: name of resource (in iomem_resource)
501 * Check if the specified region partially overlaps or fully eclipses a
502 * resource identified by @name. Return REGION_DISJOINT if the region
503 * does not overlap @name, return REGION_MIXED if the region overlaps
504 * @type and another resource, and return REGION_INTERSECTS if the
505 * region overlaps @type and no other defined resource. Note, that
506 * REGION_INTERSECTS is also returned in the case when the specified
507 * region overlaps RAM and undefined memory holes.
509 * region_intersect() is used by memory remapping functions to ensure
510 * the user is not remapping RAM and is a vast speed up over walking
511 * through the resource table page by page.
513 int region_intersects(resource_size_t start
, size_t size
, const char *name
)
515 unsigned long flags
= IORESOURCE_MEM
| IORESOURCE_BUSY
;
516 resource_size_t end
= start
+ size
- 1;
517 int type
= 0; int other
= 0;
520 read_lock(&resource_lock
);
521 for (p
= iomem_resource
.child
; p
; p
= p
->sibling
) {
522 bool is_type
= strcmp(p
->name
, name
) == 0 && p
->flags
== flags
;
524 if (start
>= p
->start
&& start
<= p
->end
)
525 is_type
? type
++ : other
++;
526 if (end
>= p
->start
&& end
<= p
->end
)
527 is_type
? type
++ : other
++;
528 if (p
->start
>= start
&& p
->end
<= end
)
529 is_type
? type
++ : other
++;
531 read_unlock(&resource_lock
);
534 return type
? REGION_INTERSECTS
: REGION_DISJOINT
;
539 return REGION_DISJOINT
;
542 void __weak
arch_remove_reservations(struct resource
*avail
)
546 static resource_size_t
simple_align_resource(void *data
,
547 const struct resource
*avail
,
548 resource_size_t size
,
549 resource_size_t align
)
554 static void resource_clip(struct resource
*res
, resource_size_t min
,
557 if (res
->start
< min
)
564 * Find empty slot in the resource tree with the given range and
565 * alignment constraints
567 static int __find_resource(struct resource
*root
, struct resource
*old
,
568 struct resource
*new,
569 resource_size_t size
,
570 struct resource_constraint
*constraint
)
572 struct resource
*this = root
->child
;
573 struct resource tmp
= *new, avail
, alloc
;
575 tmp
.start
= root
->start
;
577 * Skip past an allocated resource that starts at 0, since the assignment
578 * of this->start - 1 to tmp->end below would cause an underflow.
580 if (this && this->start
== root
->start
) {
581 tmp
.start
= (this == old
) ? old
->start
: this->end
+ 1;
582 this = this->sibling
;
586 tmp
.end
= (this == old
) ? this->end
: this->start
- 1;
590 if (tmp
.end
< tmp
.start
)
593 resource_clip(&tmp
, constraint
->min
, constraint
->max
);
594 arch_remove_reservations(&tmp
);
596 /* Check for overflow after ALIGN() */
597 avail
.start
= ALIGN(tmp
.start
, constraint
->align
);
599 avail
.flags
= new->flags
& ~IORESOURCE_UNSET
;
600 if (avail
.start
>= tmp
.start
) {
601 alloc
.flags
= avail
.flags
;
602 alloc
.start
= constraint
->alignf(constraint
->alignf_data
, &avail
,
603 size
, constraint
->align
);
604 alloc
.end
= alloc
.start
+ size
- 1;
605 if (resource_contains(&avail
, &alloc
)) {
606 new->start
= alloc
.start
;
607 new->end
= alloc
.end
;
612 next
: if (!this || this->end
== root
->end
)
616 tmp
.start
= this->end
+ 1;
617 this = this->sibling
;
623 * Find empty slot in the resource tree given range and alignment.
625 static int find_resource(struct resource
*root
, struct resource
*new,
626 resource_size_t size
,
627 struct resource_constraint
*constraint
)
629 return __find_resource(root
, NULL
, new, size
, constraint
);
633 * reallocate_resource - allocate a slot in the resource tree given range & alignment.
634 * The resource will be relocated if the new size cannot be reallocated in the
637 * @root: root resource descriptor
638 * @old: resource descriptor desired by caller
639 * @newsize: new size of the resource descriptor
640 * @constraint: the size and alignment constraints to be met.
642 static int reallocate_resource(struct resource
*root
, struct resource
*old
,
643 resource_size_t newsize
,
644 struct resource_constraint
*constraint
)
647 struct resource
new = *old
;
648 struct resource
*conflict
;
650 write_lock(&resource_lock
);
652 if ((err
= __find_resource(root
, old
, &new, newsize
, constraint
)))
655 if (resource_contains(&new, old
)) {
656 old
->start
= new.start
;
666 if (resource_contains(old
, &new)) {
667 old
->start
= new.start
;
670 __release_resource(old
);
672 conflict
= __request_resource(root
, old
);
676 write_unlock(&resource_lock
);
682 * allocate_resource - allocate empty slot in the resource tree given range & alignment.
683 * The resource will be reallocated with a new size if it was already allocated
684 * @root: root resource descriptor
685 * @new: resource descriptor desired by caller
686 * @size: requested resource region size
687 * @min: minimum boundary to allocate
688 * @max: maximum boundary to allocate
689 * @align: alignment requested, in bytes
690 * @alignf: alignment function, optional, called if not NULL
691 * @alignf_data: arbitrary data to pass to the @alignf function
693 int allocate_resource(struct resource
*root
, struct resource
*new,
694 resource_size_t size
, resource_size_t min
,
695 resource_size_t max
, resource_size_t align
,
696 resource_size_t (*alignf
)(void *,
697 const struct resource
*,
703 struct resource_constraint constraint
;
706 alignf
= simple_align_resource
;
708 constraint
.min
= min
;
709 constraint
.max
= max
;
710 constraint
.align
= align
;
711 constraint
.alignf
= alignf
;
712 constraint
.alignf_data
= alignf_data
;
715 /* resource is already allocated, try reallocating with
716 the new constraints */
717 return reallocate_resource(root
, new, size
, &constraint
);
720 write_lock(&resource_lock
);
721 err
= find_resource(root
, new, size
, &constraint
);
722 if (err
>= 0 && __request_resource(root
, new))
724 write_unlock(&resource_lock
);
728 EXPORT_SYMBOL(allocate_resource
);
731 * lookup_resource - find an existing resource by a resource start address
732 * @root: root resource descriptor
733 * @start: resource start address
735 * Returns a pointer to the resource if found, NULL otherwise
737 struct resource
*lookup_resource(struct resource
*root
, resource_size_t start
)
739 struct resource
*res
;
741 read_lock(&resource_lock
);
742 for (res
= root
->child
; res
; res
= res
->sibling
) {
743 if (res
->start
== start
)
746 read_unlock(&resource_lock
);
752 * Insert a resource into the resource tree. If successful, return NULL,
753 * otherwise return the conflicting resource (compare to __request_resource())
755 static struct resource
* __insert_resource(struct resource
*parent
, struct resource
*new)
757 struct resource
*first
, *next
;
759 for (;; parent
= first
) {
760 first
= __request_resource(parent
, new);
766 if (WARN_ON(first
== new)) /* duplicated insertion */
769 if ((first
->start
> new->start
) || (first
->end
< new->end
))
771 if ((first
->start
== new->start
) && (first
->end
== new->end
))
775 for (next
= first
; ; next
= next
->sibling
) {
776 /* Partial overlap? Bad, and unfixable */
777 if (next
->start
< new->start
|| next
->end
> new->end
)
781 if (next
->sibling
->start
> new->end
)
785 new->parent
= parent
;
786 new->sibling
= next
->sibling
;
789 next
->sibling
= NULL
;
790 for (next
= first
; next
; next
= next
->sibling
)
793 if (parent
->child
== first
) {
796 next
= parent
->child
;
797 while (next
->sibling
!= first
)
798 next
= next
->sibling
;
805 * insert_resource_conflict - Inserts resource in the resource tree
806 * @parent: parent of the new resource
807 * @new: new resource to insert
809 * Returns 0 on success, conflict resource if the resource can't be inserted.
811 * This function is equivalent to request_resource_conflict when no conflict
812 * happens. If a conflict happens, and the conflicting resources
813 * entirely fit within the range of the new resource, then the new
814 * resource is inserted and the conflicting resources become children of
817 struct resource
*insert_resource_conflict(struct resource
*parent
, struct resource
*new)
819 struct resource
*conflict
;
821 write_lock(&resource_lock
);
822 conflict
= __insert_resource(parent
, new);
823 write_unlock(&resource_lock
);
828 * insert_resource - Inserts a resource in the resource tree
829 * @parent: parent of the new resource
830 * @new: new resource to insert
832 * Returns 0 on success, -EBUSY if the resource can't be inserted.
834 int insert_resource(struct resource
*parent
, struct resource
*new)
836 struct resource
*conflict
;
838 conflict
= insert_resource_conflict(parent
, new);
839 return conflict
? -EBUSY
: 0;
843 * insert_resource_expand_to_fit - Insert a resource into the resource tree
844 * @root: root resource descriptor
845 * @new: new resource to insert
847 * Insert a resource into the resource tree, possibly expanding it in order
848 * to make it encompass any conflicting resources.
850 void insert_resource_expand_to_fit(struct resource
*root
, struct resource
*new)
855 write_lock(&resource_lock
);
857 struct resource
*conflict
;
859 conflict
= __insert_resource(root
, new);
862 if (conflict
== root
)
865 /* Ok, expand resource to cover the conflict, then try again .. */
866 if (conflict
->start
< new->start
)
867 new->start
= conflict
->start
;
868 if (conflict
->end
> new->end
)
869 new->end
= conflict
->end
;
871 printk("Expanded resource %s due to conflict with %s\n", new->name
, conflict
->name
);
873 write_unlock(&resource_lock
);
876 static int __adjust_resource(struct resource
*res
, resource_size_t start
,
877 resource_size_t size
)
879 struct resource
*tmp
, *parent
= res
->parent
;
880 resource_size_t end
= start
+ size
- 1;
886 if ((start
< parent
->start
) || (end
> parent
->end
))
889 if (res
->sibling
&& (res
->sibling
->start
<= end
))
894 while (tmp
->sibling
!= res
)
896 if (start
<= tmp
->end
)
901 for (tmp
= res
->child
; tmp
; tmp
= tmp
->sibling
)
902 if ((tmp
->start
< start
) || (tmp
->end
> end
))
914 * adjust_resource - modify a resource's start and size
915 * @res: resource to modify
916 * @start: new start value
919 * Given an existing resource, change its start and size to match the
920 * arguments. Returns 0 on success, -EBUSY if it can't fit.
921 * Existing children of the resource are assumed to be immutable.
923 int adjust_resource(struct resource
*res
, resource_size_t start
,
924 resource_size_t size
)
928 write_lock(&resource_lock
);
929 result
= __adjust_resource(res
, start
, size
);
930 write_unlock(&resource_lock
);
933 EXPORT_SYMBOL(adjust_resource
);
935 static void __init
__reserve_region_with_split(struct resource
*root
,
936 resource_size_t start
, resource_size_t end
,
939 struct resource
*parent
= root
;
940 struct resource
*conflict
;
941 struct resource
*res
= alloc_resource(GFP_ATOMIC
);
942 struct resource
*next_res
= NULL
;
950 res
->flags
= IORESOURCE_BUSY
;
954 conflict
= __request_resource(parent
, res
);
963 /* conflict covered whole area */
964 if (conflict
->start
<= res
->start
&&
965 conflict
->end
>= res
->end
) {
971 /* failed, split and try again */
972 if (conflict
->start
> res
->start
) {
974 res
->end
= conflict
->start
- 1;
975 if (conflict
->end
< end
) {
976 next_res
= alloc_resource(GFP_ATOMIC
);
981 next_res
->name
= name
;
982 next_res
->start
= conflict
->end
+ 1;
984 next_res
->flags
= IORESOURCE_BUSY
;
987 res
->start
= conflict
->end
+ 1;
993 void __init
reserve_region_with_split(struct resource
*root
,
994 resource_size_t start
, resource_size_t end
,
999 write_lock(&resource_lock
);
1000 if (root
->start
> start
|| root
->end
< end
) {
1001 pr_err("requested range [0x%llx-0x%llx] not in root %pr\n",
1002 (unsigned long long)start
, (unsigned long long)end
,
1004 if (start
> root
->end
|| end
< root
->start
)
1007 if (end
> root
->end
)
1009 if (start
< root
->start
)
1010 start
= root
->start
;
1011 pr_err("fixing request to [0x%llx-0x%llx]\n",
1012 (unsigned long long)start
,
1013 (unsigned long long)end
);
1018 __reserve_region_with_split(root
, start
, end
, name
);
1019 write_unlock(&resource_lock
);
1023 * resource_alignment - calculate resource's alignment
1024 * @res: resource pointer
1026 * Returns alignment on success, 0 (invalid alignment) on failure.
1028 resource_size_t
resource_alignment(struct resource
*res
)
1030 switch (res
->flags
& (IORESOURCE_SIZEALIGN
| IORESOURCE_STARTALIGN
)) {
1031 case IORESOURCE_SIZEALIGN
:
1032 return resource_size(res
);
1033 case IORESOURCE_STARTALIGN
:
1041 * This is compatibility stuff for IO resources.
1043 * Note how this, unlike the above, knows about
1044 * the IO flag meanings (busy etc).
1046 * request_region creates a new busy region.
1048 * release_region releases a matching busy region.
1051 static DECLARE_WAIT_QUEUE_HEAD(muxed_resource_wait
);
1054 * __request_region - create a new busy resource region
1055 * @parent: parent resource descriptor
1056 * @start: resource start address
1057 * @n: resource region size
1058 * @name: reserving caller's ID string
1059 * @flags: IO resource flags
1061 struct resource
* __request_region(struct resource
*parent
,
1062 resource_size_t start
, resource_size_t n
,
1063 const char *name
, int flags
)
1065 DECLARE_WAITQUEUE(wait
, current
);
1066 struct resource
*res
= alloc_resource(GFP_KERNEL
);
1073 res
->end
= start
+ n
- 1;
1074 res
->flags
= resource_type(parent
);
1075 res
->flags
|= IORESOURCE_BUSY
| flags
;
1077 write_lock(&resource_lock
);
1080 struct resource
*conflict
;
1082 conflict
= __request_resource(parent
, res
);
1085 if (conflict
!= parent
) {
1086 if (!(conflict
->flags
& IORESOURCE_BUSY
)) {
1091 if (conflict
->flags
& flags
& IORESOURCE_MUXED
) {
1092 add_wait_queue(&muxed_resource_wait
, &wait
);
1093 write_unlock(&resource_lock
);
1094 set_current_state(TASK_UNINTERRUPTIBLE
);
1096 remove_wait_queue(&muxed_resource_wait
, &wait
);
1097 write_lock(&resource_lock
);
1100 /* Uhhuh, that didn't work out.. */
1105 write_unlock(&resource_lock
);
1108 EXPORT_SYMBOL(__request_region
);
1111 * __release_region - release a previously reserved resource region
1112 * @parent: parent resource descriptor
1113 * @start: resource start address
1114 * @n: resource region size
1116 * The described resource region must match a currently busy region.
1118 void __release_region(struct resource
*parent
, resource_size_t start
,
1121 struct resource
**p
;
1122 resource_size_t end
;
1125 end
= start
+ n
- 1;
1127 write_lock(&resource_lock
);
1130 struct resource
*res
= *p
;
1134 if (res
->start
<= start
&& res
->end
>= end
) {
1135 if (!(res
->flags
& IORESOURCE_BUSY
)) {
1139 if (res
->start
!= start
|| res
->end
!= end
)
1142 write_unlock(&resource_lock
);
1143 if (res
->flags
& IORESOURCE_MUXED
)
1144 wake_up(&muxed_resource_wait
);
1151 write_unlock(&resource_lock
);
1153 printk(KERN_WARNING
"Trying to free nonexistent resource "
1154 "<%016llx-%016llx>\n", (unsigned long long)start
,
1155 (unsigned long long)end
);
1157 EXPORT_SYMBOL(__release_region
);
1159 #ifdef CONFIG_MEMORY_HOTREMOVE
1161 * release_mem_region_adjustable - release a previously reserved memory region
1162 * @parent: parent resource descriptor
1163 * @start: resource start address
1164 * @size: resource region size
1166 * This interface is intended for memory hot-delete. The requested region
1167 * is released from a currently busy memory resource. The requested region
1168 * must either match exactly or fit into a single busy resource entry. In
1169 * the latter case, the remaining resource is adjusted accordingly.
1170 * Existing children of the busy memory resource must be immutable in the
1174 * - Additional release conditions, such as overlapping region, can be
1175 * supported after they are confirmed as valid cases.
1176 * - When a busy memory resource gets split into two entries, the code
1177 * assumes that all children remain in the lower address entry for
1178 * simplicity. Enhance this logic when necessary.
1180 int release_mem_region_adjustable(struct resource
*parent
,
1181 resource_size_t start
, resource_size_t size
)
1183 struct resource
**p
;
1184 struct resource
*res
;
1185 struct resource
*new_res
;
1186 resource_size_t end
;
1189 end
= start
+ size
- 1;
1190 if ((start
< parent
->start
) || (end
> parent
->end
))
1193 /* The alloc_resource() result gets checked later */
1194 new_res
= alloc_resource(GFP_KERNEL
);
1197 write_lock(&resource_lock
);
1199 while ((res
= *p
)) {
1200 if (res
->start
>= end
)
1203 /* look for the next resource if it does not fit into */
1204 if (res
->start
> start
|| res
->end
< end
) {
1209 if (!(res
->flags
& IORESOURCE_MEM
))
1212 if (!(res
->flags
& IORESOURCE_BUSY
)) {
1217 /* found the target resource; let's adjust accordingly */
1218 if (res
->start
== start
&& res
->end
== end
) {
1219 /* free the whole entry */
1223 } else if (res
->start
== start
&& res
->end
!= end
) {
1224 /* adjust the start */
1225 ret
= __adjust_resource(res
, end
+ 1,
1227 } else if (res
->start
!= start
&& res
->end
== end
) {
1228 /* adjust the end */
1229 ret
= __adjust_resource(res
, res
->start
,
1230 start
- res
->start
);
1232 /* split into two entries */
1237 new_res
->name
= res
->name
;
1238 new_res
->start
= end
+ 1;
1239 new_res
->end
= res
->end
;
1240 new_res
->flags
= res
->flags
;
1241 new_res
->parent
= res
->parent
;
1242 new_res
->sibling
= res
->sibling
;
1243 new_res
->child
= NULL
;
1245 ret
= __adjust_resource(res
, res
->start
,
1246 start
- res
->start
);
1249 res
->sibling
= new_res
;
1256 write_unlock(&resource_lock
);
1257 free_resource(new_res
);
1260 #endif /* CONFIG_MEMORY_HOTREMOVE */
1263 * Managed region resource
1265 static void devm_resource_release(struct device
*dev
, void *ptr
)
1267 struct resource
**r
= ptr
;
1269 release_resource(*r
);
1273 * devm_request_resource() - request and reserve an I/O or memory resource
1274 * @dev: device for which to request the resource
1275 * @root: root of the resource tree from which to request the resource
1276 * @new: descriptor of the resource to request
1278 * This is a device-managed version of request_resource(). There is usually
1279 * no need to release resources requested by this function explicitly since
1280 * that will be taken care of when the device is unbound from its driver.
1281 * If for some reason the resource needs to be released explicitly, because
1282 * of ordering issues for example, drivers must call devm_release_resource()
1283 * rather than the regular release_resource().
1285 * When a conflict is detected between any existing resources and the newly
1286 * requested resource, an error message will be printed.
1288 * Returns 0 on success or a negative error code on failure.
1290 int devm_request_resource(struct device
*dev
, struct resource
*root
,
1291 struct resource
*new)
1293 struct resource
*conflict
, **ptr
;
1295 ptr
= devres_alloc(devm_resource_release
, sizeof(*ptr
), GFP_KERNEL
);
1301 conflict
= request_resource_conflict(root
, new);
1303 dev_err(dev
, "resource collision: %pR conflicts with %s %pR\n",
1304 new, conflict
->name
, conflict
);
1309 devres_add(dev
, ptr
);
1312 EXPORT_SYMBOL(devm_request_resource
);
1314 static int devm_resource_match(struct device
*dev
, void *res
, void *data
)
1316 struct resource
**ptr
= res
;
1318 return *ptr
== data
;
1322 * devm_release_resource() - release a previously requested resource
1323 * @dev: device for which to release the resource
1324 * @new: descriptor of the resource to release
1326 * Releases a resource previously requested using devm_request_resource().
1328 void devm_release_resource(struct device
*dev
, struct resource
*new)
1330 WARN_ON(devres_release(dev
, devm_resource_release
, devm_resource_match
,
1333 EXPORT_SYMBOL(devm_release_resource
);
1335 struct region_devres
{
1336 struct resource
*parent
;
1337 resource_size_t start
;
1341 static void devm_region_release(struct device
*dev
, void *res
)
1343 struct region_devres
*this = res
;
1345 __release_region(this->parent
, this->start
, this->n
);
1348 static int devm_region_match(struct device
*dev
, void *res
, void *match_data
)
1350 struct region_devres
*this = res
, *match
= match_data
;
1352 return this->parent
== match
->parent
&&
1353 this->start
== match
->start
&& this->n
== match
->n
;
1356 struct resource
* __devm_request_region(struct device
*dev
,
1357 struct resource
*parent
, resource_size_t start
,
1358 resource_size_t n
, const char *name
)
1360 struct region_devres
*dr
= NULL
;
1361 struct resource
*res
;
1363 dr
= devres_alloc(devm_region_release
, sizeof(struct region_devres
),
1368 dr
->parent
= parent
;
1372 res
= __request_region(parent
, start
, n
, name
, 0);
1374 devres_add(dev
, dr
);
1380 EXPORT_SYMBOL(__devm_request_region
);
1382 void __devm_release_region(struct device
*dev
, struct resource
*parent
,
1383 resource_size_t start
, resource_size_t n
)
1385 struct region_devres match_data
= { parent
, start
, n
};
1387 __release_region(parent
, start
, n
);
1388 WARN_ON(devres_destroy(dev
, devm_region_release
, devm_region_match
,
1391 EXPORT_SYMBOL(__devm_release_region
);
1394 * Called from init/main.c to reserve IO ports.
1396 #define MAXRESERVE 4
1397 static int __init
reserve_setup(char *str
)
1399 static int reserved
;
1400 static struct resource reserve
[MAXRESERVE
];
1403 unsigned int io_start
, io_num
;
1406 if (get_option (&str
, &io_start
) != 2)
1408 if (get_option (&str
, &io_num
) == 0)
1410 if (x
< MAXRESERVE
) {
1411 struct resource
*res
= reserve
+ x
;
1412 res
->name
= "reserved";
1413 res
->start
= io_start
;
1414 res
->end
= io_start
+ io_num
- 1;
1415 res
->flags
= IORESOURCE_BUSY
;
1417 if (request_resource(res
->start
>= 0x10000 ? &iomem_resource
: &ioport_resource
, res
) == 0)
1424 __setup("reserve=", reserve_setup
);
1427 * Check if the requested addr and size spans more than any slot in the
1428 * iomem resource tree.
1430 int iomem_map_sanity_check(resource_size_t addr
, unsigned long size
)
1432 struct resource
*p
= &iomem_resource
;
1436 read_lock(&resource_lock
);
1437 for (p
= p
->child
; p
; p
= r_next(NULL
, p
, &l
)) {
1439 * We can probably skip the resources without
1440 * IORESOURCE_IO attribute?
1442 if (p
->start
>= addr
+ size
)
1446 if (PFN_DOWN(p
->start
) <= PFN_DOWN(addr
) &&
1447 PFN_DOWN(p
->end
) >= PFN_DOWN(addr
+ size
- 1))
1450 * if a resource is "BUSY", it's not a hardware resource
1451 * but a driver mapping of such a resource; we don't want
1452 * to warn for those; some drivers legitimately map only
1453 * partial hardware resources. (example: vesafb)
1455 if (p
->flags
& IORESOURCE_BUSY
)
1458 printk(KERN_WARNING
"resource sanity check: requesting [mem %#010llx-%#010llx], which spans more than %s %pR\n",
1459 (unsigned long long)addr
,
1460 (unsigned long long)(addr
+ size
- 1),
1465 read_unlock(&resource_lock
);
1470 #ifdef CONFIG_STRICT_DEVMEM
1471 static int strict_iomem_checks
= 1;
1473 static int strict_iomem_checks
;
1477 * check if an address is reserved in the iomem resource tree
1478 * returns 1 if reserved, 0 if not reserved.
1480 int iomem_is_exclusive(u64 addr
)
1482 struct resource
*p
= &iomem_resource
;
1485 int size
= PAGE_SIZE
;
1487 if (!strict_iomem_checks
)
1490 addr
= addr
& PAGE_MASK
;
1492 read_lock(&resource_lock
);
1493 for (p
= p
->child
; p
; p
= r_next(NULL
, p
, &l
)) {
1495 * We can probably skip the resources without
1496 * IORESOURCE_IO attribute?
1498 if (p
->start
>= addr
+ size
)
1502 if (p
->flags
& IORESOURCE_BUSY
&&
1503 p
->flags
& IORESOURCE_EXCLUSIVE
) {
1508 read_unlock(&resource_lock
);
1513 struct resource_entry
*resource_list_create_entry(struct resource
*res
,
1516 struct resource_entry
*entry
;
1518 entry
= kzalloc(sizeof(*entry
) + extra_size
, GFP_KERNEL
);
1520 INIT_LIST_HEAD(&entry
->node
);
1521 entry
->res
= res
? res
: &entry
->__res
;
1526 EXPORT_SYMBOL(resource_list_create_entry
);
1528 void resource_list_free(struct list_head
*head
)
1530 struct resource_entry
*entry
, *tmp
;
1532 list_for_each_entry_safe(entry
, tmp
, head
, node
)
1533 resource_list_destroy_entry(entry
);
1535 EXPORT_SYMBOL(resource_list_free
);
1537 static int __init
strict_iomem(char *str
)
1539 if (strstr(str
, "relaxed"))
1540 strict_iomem_checks
= 0;
1541 if (strstr(str
, "strict"))
1542 strict_iomem_checks
= 1;
1546 __setup("iomem=", strict_iomem
);