blob: 48e995ff74658cbe28ae5bdac862b64b8fe373fc [file] [log] [blame]
b.liue9582032025-04-17 19:18:16 +08001// SPDX-License-Identifier: GPL-2.0-only
2/*
3 * linux/kernel/resource.c
4 *
5 * Copyright (C) 1999 Linus Torvalds
6 * Copyright (C) 1999 Martin Mares <mj@ucw.cz>
7 *
8 * Arbitrary resource management.
9 */
10
11#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
12
13#include <linux/export.h>
14#include <linux/errno.h>
15#include <linux/ioport.h>
16#include <linux/init.h>
17#include <linux/slab.h>
18#include <linux/spinlock.h>
19#include <linux/fs.h>
20#include <linux/proc_fs.h>
21#include <linux/sched.h>
22#include <linux/seq_file.h>
23#include <linux/device.h>
24#include <linux/pfn.h>
25#include <linux/mm.h>
26#include <linux/resource_ext.h>
27#include <asm/io.h>
28
29
30struct resource ioport_resource = {
31 .name = "PCI IO",
32 .start = 0,
33 .end = IO_SPACE_LIMIT,
34 .flags = IORESOURCE_IO,
35};
36EXPORT_SYMBOL(ioport_resource);
37
38struct resource iomem_resource = {
39 .name = "PCI mem",
40 .start = 0,
41 .end = -1,
42 .flags = IORESOURCE_MEM,
43};
44EXPORT_SYMBOL(iomem_resource);
45
46/* constraints to be met while allocating resources */
47struct resource_constraint {
48 resource_size_t min, max, align;
49 resource_size_t (*alignf)(void *, const struct resource *,
50 resource_size_t, resource_size_t);
51 void *alignf_data;
52};
53
54static DEFINE_RWLOCK(resource_lock);
55
56/*
57 * For memory hotplug, there is no way to free resource entries allocated
58 * by boot mem after the system is up. So for reusing the resource entry
59 * we need to remember the resource.
60 */
61static struct resource *bootmem_resource_free;
62static DEFINE_SPINLOCK(bootmem_resource_lock);
63
64static struct resource *next_resource(struct resource *p, bool sibling_only)
65{
66 /* Caller wants to traverse through siblings only */
67 if (sibling_only)
68 return p->sibling;
69
70 if (p->child)
71 return p->child;
72 while (!p->sibling && p->parent)
73 p = p->parent;
74 return p->sibling;
75}
76
77static void *r_next(struct seq_file *m, void *v, loff_t *pos)
78{
79 struct resource *p = v;
80 (*pos)++;
81 return (void *)next_resource(p, false);
82}
83
84#ifdef CONFIG_PROC_FS
85
86enum { MAX_IORES_LEVEL = 5 };
87
88static void *r_start(struct seq_file *m, loff_t *pos)
89 __acquires(resource_lock)
90{
91 struct resource *p = PDE_DATA(file_inode(m->file));
92 loff_t l = 0;
93 read_lock(&resource_lock);
94 for (p = p->child; p && l < *pos; p = r_next(m, p, &l))
95 ;
96 return p;
97}
98
99static void r_stop(struct seq_file *m, void *v)
100 __releases(resource_lock)
101{
102 read_unlock(&resource_lock);
103}
104
105static int r_show(struct seq_file *m, void *v)
106{
107 struct resource *root = PDE_DATA(file_inode(m->file));
108 struct resource *r = v, *p;
109 unsigned long long start, end;
110 int width = root->end < 0x10000 ? 4 : 8;
111 int depth;
112
113 for (depth = 0, p = r; depth < MAX_IORES_LEVEL; depth++, p = p->parent)
114 if (p->parent == root)
115 break;
116
117 if (file_ns_capable(m->file, &init_user_ns, CAP_SYS_ADMIN)) {
118 start = r->start;
119 end = r->end;
120 } else {
121 start = end = 0;
122 }
123
124 seq_printf(m, "%*s%0*llx-%0*llx : %s\n",
125 depth * 2, "",
126 width, start,
127 width, end,
128 r->name ? r->name : "<BAD>");
129 return 0;
130}
131
132static const struct seq_operations resource_op = {
133 .start = r_start,
134 .next = r_next,
135 .stop = r_stop,
136 .show = r_show,
137};
138
139static int __init ioresources_init(void)
140{
141 proc_create_seq_data("ioports", 0, NULL, &resource_op,
142 &ioport_resource);
143 proc_create_seq_data("iomem", 0, NULL, &resource_op, &iomem_resource);
144 return 0;
145}
146__initcall(ioresources_init);
147
148#endif /* CONFIG_PROC_FS */
149
150static void free_resource(struct resource *res)
151{
152 if (!res)
153 return;
154
155 if (!PageSlab(virt_to_head_page(res))) {
156 spin_lock(&bootmem_resource_lock);
157 res->sibling = bootmem_resource_free;
158 bootmem_resource_free = res;
159 spin_unlock(&bootmem_resource_lock);
160 } else {
161 kfree(res);
162 }
163}
164
165static struct resource *alloc_resource(gfp_t flags)
166{
167 struct resource *res = NULL;
168
169 spin_lock(&bootmem_resource_lock);
170 if (bootmem_resource_free) {
171 res = bootmem_resource_free;
172 bootmem_resource_free = res->sibling;
173 }
174 spin_unlock(&bootmem_resource_lock);
175
176 if (res)
177 memset(res, 0, sizeof(struct resource));
178 else
179 res = kzalloc(sizeof(struct resource), flags);
180
181 return res;
182}
183
184/* Return the conflict entry if you can't request it */
185static struct resource * __request_resource(struct resource *root, struct resource *new)
186{
187 resource_size_t start = new->start;
188 resource_size_t end = new->end;
189 struct resource *tmp, **p;
190
191 if (end < start)
192 return root;
193 if (start < root->start)
194 return root;
195 if (end > root->end)
196 return root;
197 p = &root->child;
198 for (;;) {
199 tmp = *p;
200 if (!tmp || tmp->start > end) {
201 new->sibling = tmp;
202 *p = new;
203 new->parent = root;
204 return NULL;
205 }
206 p = &tmp->sibling;
207 if (tmp->end < start)
208 continue;
209 return tmp;
210 }
211}
212
213static int __release_resource(struct resource *old, bool release_child)
214{
215 struct resource *tmp, **p, *chd;
216
217 p = &old->parent->child;
218 for (;;) {
219 tmp = *p;
220 if (!tmp)
221 break;
222 if (tmp == old) {
223 if (release_child || !(tmp->child)) {
224 *p = tmp->sibling;
225 } else {
226 for (chd = tmp->child;; chd = chd->sibling) {
227 chd->parent = tmp->parent;
228 if (!(chd->sibling))
229 break;
230 }
231 *p = tmp->child;
232 chd->sibling = tmp->sibling;
233 }
234 old->parent = NULL;
235 return 0;
236 }
237 p = &tmp->sibling;
238 }
239 return -EINVAL;
240}
241
242static void __release_child_resources(struct resource *r)
243{
244 struct resource *tmp, *p;
245 resource_size_t size;
246
247 p = r->child;
248 r->child = NULL;
249 while (p) {
250 tmp = p;
251 p = p->sibling;
252
253 tmp->parent = NULL;
254 tmp->sibling = NULL;
255 __release_child_resources(tmp);
256
257 printk(KERN_DEBUG "release child resource %pR\n", tmp);
258 /* need to restore size, and keep flags */
259 size = resource_size(tmp);
260 tmp->start = 0;
261 tmp->end = size - 1;
262 }
263}
264
265void release_child_resources(struct resource *r)
266{
267 write_lock(&resource_lock);
268 __release_child_resources(r);
269 write_unlock(&resource_lock);
270}
271
272/**
273 * request_resource_conflict - request and reserve an I/O or memory resource
274 * @root: root resource descriptor
275 * @new: resource descriptor desired by caller
276 *
277 * Returns 0 for success, conflict resource on error.
278 */
279struct resource *request_resource_conflict(struct resource *root, struct resource *new)
280{
281 struct resource *conflict;
282
283 write_lock(&resource_lock);
284 conflict = __request_resource(root, new);
285 write_unlock(&resource_lock);
286 return conflict;
287}
288
289/**
290 * request_resource - request and reserve an I/O or memory resource
291 * @root: root resource descriptor
292 * @new: resource descriptor desired by caller
293 *
294 * Returns 0 for success, negative error code on error.
295 */
296int request_resource(struct resource *root, struct resource *new)
297{
298 struct resource *conflict;
299
300 conflict = request_resource_conflict(root, new);
301 return conflict ? -EBUSY : 0;
302}
303
304EXPORT_SYMBOL(request_resource);
305
306/**
307 * release_resource - release a previously reserved resource
308 * @old: resource pointer
309 */
310int release_resource(struct resource *old)
311{
312 int retval;
313
314 write_lock(&resource_lock);
315 retval = __release_resource(old, true);
316 write_unlock(&resource_lock);
317 return retval;
318}
319
320EXPORT_SYMBOL(release_resource);
321
322/**
323 * Finds the lowest iomem resource that covers part of [@start..@end]. The
324 * caller must specify @start, @end, @flags, and @desc (which may be
325 * IORES_DESC_NONE).
326 *
327 * If a resource is found, returns 0 and @*res is overwritten with the part
328 * of the resource that's within [@start..@end]; if none is found, returns
329 * -ENODEV. Returns -EINVAL for invalid parameters.
330 *
331 * This function walks the whole tree and not just first level children
332 * unless @first_lvl is true.
333 *
334 * @start: start address of the resource searched for
335 * @end: end address of same resource
336 * @flags: flags which the resource must have
337 * @desc: descriptor the resource must have
338 * @first_lvl: walk only the first level children, if set
339 * @res: return ptr, if resource found
340 */
341static int find_next_iomem_res(resource_size_t start, resource_size_t end,
342 unsigned long flags, unsigned long desc,
343 bool first_lvl, struct resource *res)
344{
345 bool siblings_only = true;
346 struct resource *p;
347
348 if (!res)
349 return -EINVAL;
350
351 if (start >= end)
352 return -EINVAL;
353
354 read_lock(&resource_lock);
355
356 for (p = iomem_resource.child; p; p = next_resource(p, siblings_only)) {
357 /* If we passed the resource we are looking for, stop */
358 if (p->start > end) {
359 p = NULL;
360 break;
361 }
362
363 /* Skip until we find a range that matches what we look for */
364 if (p->end < start)
365 continue;
366
367 /*
368 * Now that we found a range that matches what we look for,
369 * check the flags and the descriptor. If we were not asked to
370 * use only the first level, start looking at children as well.
371 */
372 siblings_only = first_lvl;
373
374 if ((p->flags & flags) != flags)
375 continue;
376 if ((desc != IORES_DESC_NONE) && (desc != p->desc))
377 continue;
378
379 /* Found a match, break */
380 break;
381 }
382
383 if (p) {
384 /* copy data */
385 res->start = max(start, p->start);
386 res->end = min(end, p->end);
387 res->flags = p->flags;
388 res->desc = p->desc;
389 }
390
391 read_unlock(&resource_lock);
392 return p ? 0 : -ENODEV;
393}
394
395static int __walk_iomem_res_desc(resource_size_t start, resource_size_t end,
396 unsigned long flags, unsigned long desc,
397 bool first_lvl, void *arg,
398 int (*func)(struct resource *, void *))
399{
400 struct resource res;
401 int ret = -EINVAL;
402
403 while (start < end &&
404 !find_next_iomem_res(start, end, flags, desc, first_lvl, &res)) {
405 ret = (*func)(&res, arg);
406 if (ret)
407 break;
408
409 start = res.end + 1;
410 }
411
412 return ret;
413}
414
415/**
416 * Walks through iomem resources and calls func() with matching resource
417 * ranges. This walks through whole tree and not just first level children.
418 * All the memory ranges which overlap start,end and also match flags and
419 * desc are valid candidates.
420 *
421 * @desc: I/O resource descriptor. Use IORES_DESC_NONE to skip @desc check.
422 * @flags: I/O resource flags
423 * @start: start addr
424 * @end: end addr
425 * @arg: function argument for the callback @func
426 * @func: callback function that is called for each qualifying resource area
427 *
428 * NOTE: For a new descriptor search, define a new IORES_DESC in
429 * <linux/ioport.h> and set it in 'desc' of a target resource entry.
430 */
431int walk_iomem_res_desc(unsigned long desc, unsigned long flags, u64 start,
432 u64 end, void *arg, int (*func)(struct resource *, void *))
433{
434 return __walk_iomem_res_desc(start, end, flags, desc, false, arg, func);
435}
436EXPORT_SYMBOL_GPL(walk_iomem_res_desc);
437
438/*
439 * This function calls the @func callback against all memory ranges of type
440 * System RAM which are marked as IORESOURCE_SYSTEM_RAM and IORESOUCE_BUSY.
441 * Now, this function is only for System RAM, it deals with full ranges and
442 * not PFNs. If resources are not PFN-aligned, dealing with PFNs can truncate
443 * ranges.
444 */
445int walk_system_ram_res(u64 start, u64 end, void *arg,
446 int (*func)(struct resource *, void *))
447{
448 unsigned long flags = IORESOURCE_SYSTEM_RAM | IORESOURCE_BUSY;
449
450 return __walk_iomem_res_desc(start, end, flags, IORES_DESC_NONE, true,
451 arg, func);
452}
453
454/*
455 * This function calls the @func callback against all memory ranges, which
456 * are ranges marked as IORESOURCE_MEM and IORESOUCE_BUSY.
457 */
458int walk_mem_res(u64 start, u64 end, void *arg,
459 int (*func)(struct resource *, void *))
460{
461 unsigned long flags = IORESOURCE_MEM | IORESOURCE_BUSY;
462
463 return __walk_iomem_res_desc(start, end, flags, IORES_DESC_NONE, true,
464 arg, func);
465}
466
467/*
468 * This function calls the @func callback against all memory ranges of type
469 * System RAM which are marked as IORESOURCE_SYSTEM_RAM and IORESOUCE_BUSY.
470 * It is to be used only for System RAM.
471 *
472 * This will find System RAM ranges that are children of top-level resources
473 * in addition to top-level System RAM resources.
474 */
475int walk_system_ram_range(unsigned long start_pfn, unsigned long nr_pages,
476 void *arg, int (*func)(unsigned long, unsigned long, void *))
477{
478 resource_size_t start, end;
479 unsigned long flags;
480 struct resource res;
481 unsigned long pfn, end_pfn;
482 int ret = -EINVAL;
483
484 start = (u64) start_pfn << PAGE_SHIFT;
485 end = ((u64)(start_pfn + nr_pages) << PAGE_SHIFT) - 1;
486 flags = IORESOURCE_SYSTEM_RAM | IORESOURCE_BUSY;
487 while (start < end &&
488 !find_next_iomem_res(start, end, flags, IORES_DESC_NONE,
489 false, &res)) {
490 pfn = PFN_UP(res.start);
491 end_pfn = PFN_DOWN(res.end + 1);
492 if (end_pfn > pfn)
493 ret = (*func)(pfn, end_pfn - pfn, arg);
494 if (ret)
495 break;
496 start = res.end + 1;
497 }
498 return ret;
499}
500
501static int __is_ram(unsigned long pfn, unsigned long nr_pages, void *arg)
502{
503 return 1;
504}
505
506/*
507 * This generic page_is_ram() returns true if specified address is
508 * registered as System RAM in iomem_resource list.
509 */
510int __weak page_is_ram(unsigned long pfn)
511{
512 return walk_system_ram_range(pfn, 1, NULL, __is_ram) == 1;
513}
514EXPORT_SYMBOL_GPL(page_is_ram);
515
516/**
517 * region_intersects() - determine intersection of region with known resources
518 * @start: region start address
519 * @size: size of region
520 * @flags: flags of resource (in iomem_resource)
521 * @desc: descriptor of resource (in iomem_resource) or IORES_DESC_NONE
522 *
523 * Check if the specified region partially overlaps or fully eclipses a
524 * resource identified by @flags and @desc (optional with IORES_DESC_NONE).
525 * Return REGION_DISJOINT if the region does not overlap @flags/@desc,
526 * return REGION_MIXED if the region overlaps @flags/@desc and another
527 * resource, and return REGION_INTERSECTS if the region overlaps @flags/@desc
528 * and no other defined resource. Note that REGION_INTERSECTS is also
529 * returned in the case when the specified region overlaps RAM and undefined
530 * memory holes.
531 *
532 * region_intersect() is used by memory remapping functions to ensure
533 * the user is not remapping RAM and is a vast speed up over walking
534 * through the resource table page by page.
535 */
536int region_intersects(resource_size_t start, size_t size, unsigned long flags,
537 unsigned long desc)
538{
539 resource_size_t ostart, oend;
540 int type = 0; int other = 0;
541 struct resource *p, *dp;
542 bool is_type, covered;
543 struct resource res;
544
545 res.start = start;
546 res.end = start + size - 1;
547
548 read_lock(&resource_lock);
549 for (p = iomem_resource.child; p ; p = p->sibling) {
550 if (!resource_overlaps(p, &res))
551 continue;
552 is_type = (p->flags & flags) == flags &&
553 (desc == IORES_DESC_NONE || desc == p->desc);
554 if (is_type) {
555 type++;
556 continue;
557 }
558 /*
559 * Continue to search in descendant resources as if the
560 * matched descendant resources cover some ranges of 'p'.
561 *
562 * |------------- "CXL Window 0" ------------|
563 * |-- "System RAM" --|
564 *
565 * will behave similar as the following fake resource
566 * tree when searching "System RAM".
567 *
568 * |-- "System RAM" --||-- "CXL Window 0a" --|
569 */
570 covered = false;
571 ostart = max(res.start, p->start);
572 oend = min(res.end, p->end);
573 for (dp = p->child; dp; dp = next_resource(dp, false)) {
574 if (!resource_overlaps(dp, &res))
575 continue;
576 is_type = (dp->flags & flags) == flags &&
577 (desc == IORES_DESC_NONE || desc == dp->desc);
578 if (is_type) {
579 type++;
580 /*
581 * Range from 'ostart' to 'dp->start'
582 * isn't covered by matched resource.
583 */
584 if (dp->start > ostart)
585 break;
586 if (dp->end >= oend) {
587 covered = true;
588 break;
589 }
590 /* Remove covered range */
591 ostart = max(ostart, dp->end + 1);
592 }
593 }
594 if (!covered)
595 other++;
596 }
597 read_unlock(&resource_lock);
598
599 if (other == 0)
600 return type ? REGION_INTERSECTS : REGION_DISJOINT;
601
602 if (type)
603 return REGION_MIXED;
604
605 return REGION_DISJOINT;
606}
607EXPORT_SYMBOL_GPL(region_intersects);
608
609void __weak arch_remove_reservations(struct resource *avail)
610{
611}
612
613static resource_size_t simple_align_resource(void *data,
614 const struct resource *avail,
615 resource_size_t size,
616 resource_size_t align)
617{
618 return avail->start;
619}
620
621static void resource_clip(struct resource *res, resource_size_t min,
622 resource_size_t max)
623{
624 if (res->start < min)
625 res->start = min;
626 if (res->end > max)
627 res->end = max;
628}
629
630/*
631 * Find empty slot in the resource tree with the given range and
632 * alignment constraints
633 */
634static int __find_resource(struct resource *root, struct resource *old,
635 struct resource *new,
636 resource_size_t size,
637 struct resource_constraint *constraint)
638{
639 struct resource *this = root->child;
640 struct resource tmp = *new, avail, alloc;
641
642 tmp.start = root->start;
643 /*
644 * Skip past an allocated resource that starts at 0, since the assignment
645 * of this->start - 1 to tmp->end below would cause an underflow.
646 */
647 if (this && this->start == root->start) {
648 tmp.start = (this == old) ? old->start : this->end + 1;
649 this = this->sibling;
650 }
651 for(;;) {
652 if (this)
653 tmp.end = (this == old) ? this->end : this->start - 1;
654 else
655 tmp.end = root->end;
656
657 if (tmp.end < tmp.start)
658 goto next;
659
660 resource_clip(&tmp, constraint->min, constraint->max);
661 arch_remove_reservations(&tmp);
662
663 /* Check for overflow after ALIGN() */
664 avail.start = ALIGN(tmp.start, constraint->align);
665 avail.end = tmp.end;
666 avail.flags = new->flags & ~IORESOURCE_UNSET;
667 if (avail.start >= tmp.start) {
668 alloc.flags = avail.flags;
669 alloc.start = constraint->alignf(constraint->alignf_data, &avail,
670 size, constraint->align);
671 alloc.end = alloc.start + size - 1;
672 if (alloc.start <= alloc.end &&
673 resource_contains(&avail, &alloc)) {
674 new->start = alloc.start;
675 new->end = alloc.end;
676 return 0;
677 }
678 }
679
680next: if (!this || this->end == root->end)
681 break;
682
683 if (this != old)
684 tmp.start = this->end + 1;
685 this = this->sibling;
686 }
687 return -EBUSY;
688}
689
690/*
691 * Find empty slot in the resource tree given range and alignment.
692 */
693static int find_resource(struct resource *root, struct resource *new,
694 resource_size_t size,
695 struct resource_constraint *constraint)
696{
697 return __find_resource(root, NULL, new, size, constraint);
698}
699
700/**
701 * reallocate_resource - allocate a slot in the resource tree given range & alignment.
702 * The resource will be relocated if the new size cannot be reallocated in the
703 * current location.
704 *
705 * @root: root resource descriptor
706 * @old: resource descriptor desired by caller
707 * @newsize: new size of the resource descriptor
708 * @constraint: the size and alignment constraints to be met.
709 */
710static int reallocate_resource(struct resource *root, struct resource *old,
711 resource_size_t newsize,
712 struct resource_constraint *constraint)
713{
714 int err=0;
715 struct resource new = *old;
716 struct resource *conflict;
717
718 write_lock(&resource_lock);
719
720 if ((err = __find_resource(root, old, &new, newsize, constraint)))
721 goto out;
722
723 if (resource_contains(&new, old)) {
724 old->start = new.start;
725 old->end = new.end;
726 goto out;
727 }
728
729 if (old->child) {
730 err = -EBUSY;
731 goto out;
732 }
733
734 if (resource_contains(old, &new)) {
735 old->start = new.start;
736 old->end = new.end;
737 } else {
738 __release_resource(old, true);
739 *old = new;
740 conflict = __request_resource(root, old);
741 BUG_ON(conflict);
742 }
743out:
744 write_unlock(&resource_lock);
745 return err;
746}
747
748
749/**
750 * allocate_resource - allocate empty slot in the resource tree given range & alignment.
751 * The resource will be reallocated with a new size if it was already allocated
752 * @root: root resource descriptor
753 * @new: resource descriptor desired by caller
754 * @size: requested resource region size
755 * @min: minimum boundary to allocate
756 * @max: maximum boundary to allocate
757 * @align: alignment requested, in bytes
758 * @alignf: alignment function, optional, called if not NULL
759 * @alignf_data: arbitrary data to pass to the @alignf function
760 */
761int allocate_resource(struct resource *root, struct resource *new,
762 resource_size_t size, resource_size_t min,
763 resource_size_t max, resource_size_t align,
764 resource_size_t (*alignf)(void *,
765 const struct resource *,
766 resource_size_t,
767 resource_size_t),
768 void *alignf_data)
769{
770 int err;
771 struct resource_constraint constraint;
772
773 if (!alignf)
774 alignf = simple_align_resource;
775
776 constraint.min = min;
777 constraint.max = max;
778 constraint.align = align;
779 constraint.alignf = alignf;
780 constraint.alignf_data = alignf_data;
781
782 if ( new->parent ) {
783 /* resource is already allocated, try reallocating with
784 the new constraints */
785 return reallocate_resource(root, new, size, &constraint);
786 }
787
788 write_lock(&resource_lock);
789 err = find_resource(root, new, size, &constraint);
790 if (err >= 0 && __request_resource(root, new))
791 err = -EBUSY;
792 write_unlock(&resource_lock);
793 return err;
794}
795
796EXPORT_SYMBOL(allocate_resource);
797
798/**
799 * lookup_resource - find an existing resource by a resource start address
800 * @root: root resource descriptor
801 * @start: resource start address
802 *
803 * Returns a pointer to the resource if found, NULL otherwise
804 */
805struct resource *lookup_resource(struct resource *root, resource_size_t start)
806{
807 struct resource *res;
808
809 read_lock(&resource_lock);
810 for (res = root->child; res; res = res->sibling) {
811 if (res->start == start)
812 break;
813 }
814 read_unlock(&resource_lock);
815
816 return res;
817}
818
819/*
820 * Insert a resource into the resource tree. If successful, return NULL,
821 * otherwise return the conflicting resource (compare to __request_resource())
822 */
823static struct resource * __insert_resource(struct resource *parent, struct resource *new)
824{
825 struct resource *first, *next;
826
827 for (;; parent = first) {
828 first = __request_resource(parent, new);
829 if (!first)
830 return first;
831
832 if (first == parent)
833 return first;
834 if (WARN_ON(first == new)) /* duplicated insertion */
835 return first;
836
837 if ((first->start > new->start) || (first->end < new->end))
838 break;
839 if ((first->start == new->start) && (first->end == new->end))
840 break;
841 }
842
843 for (next = first; ; next = next->sibling) {
844 /* Partial overlap? Bad, and unfixable */
845 if (next->start < new->start || next->end > new->end)
846 return next;
847 if (!next->sibling)
848 break;
849 if (next->sibling->start > new->end)
850 break;
851 }
852
853 new->parent = parent;
854 new->sibling = next->sibling;
855 new->child = first;
856
857 next->sibling = NULL;
858 for (next = first; next; next = next->sibling)
859 next->parent = new;
860
861 if (parent->child == first) {
862 parent->child = new;
863 } else {
864 next = parent->child;
865 while (next->sibling != first)
866 next = next->sibling;
867 next->sibling = new;
868 }
869 return NULL;
870}
871
872/**
873 * insert_resource_conflict - Inserts resource in the resource tree
874 * @parent: parent of the new resource
875 * @new: new resource to insert
876 *
877 * Returns 0 on success, conflict resource if the resource can't be inserted.
878 *
879 * This function is equivalent to request_resource_conflict when no conflict
880 * happens. If a conflict happens, and the conflicting resources
881 * entirely fit within the range of the new resource, then the new
882 * resource is inserted and the conflicting resources become children of
883 * the new resource.
884 *
885 * This function is intended for producers of resources, such as FW modules
886 * and bus drivers.
887 */
888struct resource *insert_resource_conflict(struct resource *parent, struct resource *new)
889{
890 struct resource *conflict;
891
892 write_lock(&resource_lock);
893 conflict = __insert_resource(parent, new);
894 write_unlock(&resource_lock);
895 return conflict;
896}
897
898/**
899 * insert_resource - Inserts a resource in the resource tree
900 * @parent: parent of the new resource
901 * @new: new resource to insert
902 *
903 * Returns 0 on success, -EBUSY if the resource can't be inserted.
904 *
905 * This function is intended for producers of resources, such as FW modules
906 * and bus drivers.
907 */
908int insert_resource(struct resource *parent, struct resource *new)
909{
910 struct resource *conflict;
911
912 conflict = insert_resource_conflict(parent, new);
913 return conflict ? -EBUSY : 0;
914}
915EXPORT_SYMBOL_GPL(insert_resource);
916
917/**
918 * insert_resource_expand_to_fit - Insert a resource into the resource tree
919 * @root: root resource descriptor
920 * @new: new resource to insert
921 *
922 * Insert a resource into the resource tree, possibly expanding it in order
923 * to make it encompass any conflicting resources.
924 */
925void insert_resource_expand_to_fit(struct resource *root, struct resource *new)
926{
927 if (new->parent)
928 return;
929
930 write_lock(&resource_lock);
931 for (;;) {
932 struct resource *conflict;
933
934 conflict = __insert_resource(root, new);
935 if (!conflict)
936 break;
937 if (conflict == root)
938 break;
939
940 /* Ok, expand resource to cover the conflict, then try again .. */
941 if (conflict->start < new->start)
942 new->start = conflict->start;
943 if (conflict->end > new->end)
944 new->end = conflict->end;
945
946 printk("Expanded resource %s due to conflict with %s\n", new->name, conflict->name);
947 }
948 write_unlock(&resource_lock);
949}
950
951/**
952 * remove_resource - Remove a resource in the resource tree
953 * @old: resource to remove
954 *
955 * Returns 0 on success, -EINVAL if the resource is not valid.
956 *
957 * This function removes a resource previously inserted by insert_resource()
958 * or insert_resource_conflict(), and moves the children (if any) up to
959 * where they were before. insert_resource() and insert_resource_conflict()
960 * insert a new resource, and move any conflicting resources down to the
961 * children of the new resource.
962 *
963 * insert_resource(), insert_resource_conflict() and remove_resource() are
964 * intended for producers of resources, such as FW modules and bus drivers.
965 */
966int remove_resource(struct resource *old)
967{
968 int retval;
969
970 write_lock(&resource_lock);
971 retval = __release_resource(old, false);
972 write_unlock(&resource_lock);
973 return retval;
974}
975EXPORT_SYMBOL_GPL(remove_resource);
976
977static int __adjust_resource(struct resource *res, resource_size_t start,
978 resource_size_t size)
979{
980 struct resource *tmp, *parent = res->parent;
981 resource_size_t end = start + size - 1;
982 int result = -EBUSY;
983
984 if (!parent)
985 goto skip;
986
987 if ((start < parent->start) || (end > parent->end))
988 goto out;
989
990 if (res->sibling && (res->sibling->start <= end))
991 goto out;
992
993 tmp = parent->child;
994 if (tmp != res) {
995 while (tmp->sibling != res)
996 tmp = tmp->sibling;
997 if (start <= tmp->end)
998 goto out;
999 }
1000
1001skip:
1002 for (tmp = res->child; tmp; tmp = tmp->sibling)
1003 if ((tmp->start < start) || (tmp->end > end))
1004 goto out;
1005
1006 res->start = start;
1007 res->end = end;
1008 result = 0;
1009
1010 out:
1011 return result;
1012}
1013
1014/**
1015 * adjust_resource - modify a resource's start and size
1016 * @res: resource to modify
1017 * @start: new start value
1018 * @size: new size
1019 *
1020 * Given an existing resource, change its start and size to match the
1021 * arguments. Returns 0 on success, -EBUSY if it can't fit.
1022 * Existing children of the resource are assumed to be immutable.
1023 */
1024int adjust_resource(struct resource *res, resource_size_t start,
1025 resource_size_t size)
1026{
1027 int result;
1028
1029 write_lock(&resource_lock);
1030 result = __adjust_resource(res, start, size);
1031 write_unlock(&resource_lock);
1032 return result;
1033}
1034EXPORT_SYMBOL(adjust_resource);
1035
1036static void __init
1037__reserve_region_with_split(struct resource *root, resource_size_t start,
1038 resource_size_t end, const char *name)
1039{
1040 struct resource *parent = root;
1041 struct resource *conflict;
1042 struct resource *res = alloc_resource(GFP_ATOMIC);
1043 struct resource *next_res = NULL;
1044 int type = resource_type(root);
1045
1046 if (!res)
1047 return;
1048
1049 res->name = name;
1050 res->start = start;
1051 res->end = end;
1052 res->flags = type | IORESOURCE_BUSY;
1053 res->desc = IORES_DESC_NONE;
1054
1055 while (1) {
1056
1057 conflict = __request_resource(parent, res);
1058 if (!conflict) {
1059 if (!next_res)
1060 break;
1061 res = next_res;
1062 next_res = NULL;
1063 continue;
1064 }
1065
1066 /* conflict covered whole area */
1067 if (conflict->start <= res->start &&
1068 conflict->end >= res->end) {
1069 free_resource(res);
1070 WARN_ON(next_res);
1071 break;
1072 }
1073
1074 /* failed, split and try again */
1075 if (conflict->start > res->start) {
1076 end = res->end;
1077 res->end = conflict->start - 1;
1078 if (conflict->end < end) {
1079 next_res = alloc_resource(GFP_ATOMIC);
1080 if (!next_res) {
1081 free_resource(res);
1082 break;
1083 }
1084 next_res->name = name;
1085 next_res->start = conflict->end + 1;
1086 next_res->end = end;
1087 next_res->flags = type | IORESOURCE_BUSY;
1088 next_res->desc = IORES_DESC_NONE;
1089 }
1090 } else {
1091 res->start = conflict->end + 1;
1092 }
1093 }
1094
1095}
1096
1097void __init
1098reserve_region_with_split(struct resource *root, resource_size_t start,
1099 resource_size_t end, const char *name)
1100{
1101 int abort = 0;
1102
1103 write_lock(&resource_lock);
1104 if (root->start > start || root->end < end) {
1105 pr_err("requested range [0x%llx-0x%llx] not in root %pr\n",
1106 (unsigned long long)start, (unsigned long long)end,
1107 root);
1108 if (start > root->end || end < root->start)
1109 abort = 1;
1110 else {
1111 if (end > root->end)
1112 end = root->end;
1113 if (start < root->start)
1114 start = root->start;
1115 pr_err("fixing request to [0x%llx-0x%llx]\n",
1116 (unsigned long long)start,
1117 (unsigned long long)end);
1118 }
1119 dump_stack();
1120 }
1121 if (!abort)
1122 __reserve_region_with_split(root, start, end, name);
1123 write_unlock(&resource_lock);
1124}
1125
1126/**
1127 * resource_alignment - calculate resource's alignment
1128 * @res: resource pointer
1129 *
1130 * Returns alignment on success, 0 (invalid alignment) on failure.
1131 */
1132resource_size_t resource_alignment(struct resource *res)
1133{
1134 switch (res->flags & (IORESOURCE_SIZEALIGN | IORESOURCE_STARTALIGN)) {
1135 case IORESOURCE_SIZEALIGN:
1136 return resource_size(res);
1137 case IORESOURCE_STARTALIGN:
1138 return res->start;
1139 default:
1140 return 0;
1141 }
1142}
1143
1144/*
1145 * This is compatibility stuff for IO resources.
1146 *
1147 * Note how this, unlike the above, knows about
1148 * the IO flag meanings (busy etc).
1149 *
1150 * request_region creates a new busy region.
1151 *
1152 * release_region releases a matching busy region.
1153 */
1154
1155static DECLARE_WAIT_QUEUE_HEAD(muxed_resource_wait);
1156
1157/**
1158 * __request_region - create a new busy resource region
1159 * @parent: parent resource descriptor
1160 * @start: resource start address
1161 * @n: resource region size
1162 * @name: reserving caller's ID string
1163 * @flags: IO resource flags
1164 */
1165struct resource * __request_region(struct resource *parent,
1166 resource_size_t start, resource_size_t n,
1167 const char *name, int flags)
1168{
1169 DECLARE_WAITQUEUE(wait, current);
1170 struct resource *res = alloc_resource(GFP_KERNEL);
1171 struct resource *orig_parent = parent;
1172
1173 if (!res)
1174 return NULL;
1175
1176 res->name = name;
1177 res->start = start;
1178 res->end = start + n - 1;
1179
1180 write_lock(&resource_lock);
1181
1182 for (;;) {
1183 struct resource *conflict;
1184
1185 res->flags = resource_type(parent) | resource_ext_type(parent);
1186 res->flags |= IORESOURCE_BUSY | flags;
1187 res->desc = parent->desc;
1188
1189 conflict = __request_resource(parent, res);
1190 if (!conflict)
1191 break;
1192 /*
1193 * mm/hmm.c reserves physical addresses which then
1194 * become unavailable to other users. Conflicts are
1195 * not expected. Warn to aid debugging if encountered.
1196 */
1197 if (conflict->desc == IORES_DESC_DEVICE_PRIVATE_MEMORY) {
1198 pr_warn("Unaddressable device %s %pR conflicts with %pR",
1199 conflict->name, conflict, res);
1200 }
1201 if (conflict != parent) {
1202 if (!(conflict->flags & IORESOURCE_BUSY)) {
1203 parent = conflict;
1204 continue;
1205 }
1206 }
1207 if (conflict->flags & flags & IORESOURCE_MUXED) {
1208 add_wait_queue(&muxed_resource_wait, &wait);
1209 write_unlock(&resource_lock);
1210 set_current_state(TASK_UNINTERRUPTIBLE);
1211 schedule();
1212 remove_wait_queue(&muxed_resource_wait, &wait);
1213 write_lock(&resource_lock);
1214 continue;
1215 }
1216 /* Uhhuh, that didn't work out.. */
1217 free_resource(res);
1218 res = NULL;
1219 break;
1220 }
1221 write_unlock(&resource_lock);
1222
1223 if (res && orig_parent == &iomem_resource)
1224 revoke_devmem(res);
1225
1226 return res;
1227}
1228EXPORT_SYMBOL(__request_region);
1229
1230/**
1231 * __release_region - release a previously reserved resource region
1232 * @parent: parent resource descriptor
1233 * @start: resource start address
1234 * @n: resource region size
1235 *
1236 * The described resource region must match a currently busy region.
1237 */
1238void __release_region(struct resource *parent, resource_size_t start,
1239 resource_size_t n)
1240{
1241 struct resource **p;
1242 resource_size_t end;
1243
1244 p = &parent->child;
1245 end = start + n - 1;
1246
1247 write_lock(&resource_lock);
1248
1249 for (;;) {
1250 struct resource *res = *p;
1251
1252 if (!res)
1253 break;
1254 if (res->start <= start && res->end >= end) {
1255 if (!(res->flags & IORESOURCE_BUSY)) {
1256 p = &res->child;
1257 continue;
1258 }
1259 if (res->start != start || res->end != end)
1260 break;
1261 *p = res->sibling;
1262 write_unlock(&resource_lock);
1263 if (res->flags & IORESOURCE_MUXED)
1264 wake_up(&muxed_resource_wait);
1265 free_resource(res);
1266 return;
1267 }
1268 p = &res->sibling;
1269 }
1270
1271 write_unlock(&resource_lock);
1272
1273 printk(KERN_WARNING "Trying to free nonexistent resource "
1274 "<%016llx-%016llx>\n", (unsigned long long)start,
1275 (unsigned long long)end);
1276}
1277EXPORT_SYMBOL(__release_region);
1278
1279#ifdef CONFIG_MEMORY_HOTREMOVE
1280/**
1281 * release_mem_region_adjustable - release a previously reserved memory region
1282 * @parent: parent resource descriptor
1283 * @start: resource start address
1284 * @size: resource region size
1285 *
1286 * This interface is intended for memory hot-delete. The requested region
1287 * is released from a currently busy memory resource. The requested region
1288 * must either match exactly or fit into a single busy resource entry. In
1289 * the latter case, the remaining resource is adjusted accordingly.
1290 * Existing children of the busy memory resource must be immutable in the
1291 * request.
1292 *
1293 * Note:
1294 * - Additional release conditions, such as overlapping region, can be
1295 * supported after they are confirmed as valid cases.
1296 * - When a busy memory resource gets split into two entries, the code
1297 * assumes that all children remain in the lower address entry for
1298 * simplicity. Enhance this logic when necessary.
1299 */
1300int release_mem_region_adjustable(struct resource *parent,
1301 resource_size_t start, resource_size_t size)
1302{
1303 struct resource **p;
1304 struct resource *res;
1305 struct resource *new_res;
1306 resource_size_t end;
1307 int ret = -EINVAL;
1308
1309 end = start + size - 1;
1310 if ((start < parent->start) || (end > parent->end))
1311 return ret;
1312
1313 /* The alloc_resource() result gets checked later */
1314 new_res = alloc_resource(GFP_KERNEL);
1315
1316 p = &parent->child;
1317 write_lock(&resource_lock);
1318
1319 while ((res = *p)) {
1320 if (res->start >= end)
1321 break;
1322
1323 /* look for the next resource if it does not fit into */
1324 if (res->start > start || res->end < end) {
1325 p = &res->sibling;
1326 continue;
1327 }
1328
1329 /*
1330 * All memory regions added from memory-hotplug path have the
1331 * flag IORESOURCE_SYSTEM_RAM. If the resource does not have
1332 * this flag, we know that we are dealing with a resource coming
1333 * from HMM/devm. HMM/devm use another mechanism to add/release
1334 * a resource. This goes via devm_request_mem_region and
1335 * devm_release_mem_region.
1336 * HMM/devm take care to release their resources when they want,
1337 * so if we are dealing with them, let us just back off here.
1338 */
1339 if (!(res->flags & IORESOURCE_SYSRAM)) {
1340 ret = 0;
1341 break;
1342 }
1343
1344 if (!(res->flags & IORESOURCE_MEM))
1345 break;
1346
1347 if (!(res->flags & IORESOURCE_BUSY)) {
1348 p = &res->child;
1349 continue;
1350 }
1351
1352 /* found the target resource; let's adjust accordingly */
1353 if (res->start == start && res->end == end) {
1354 /* free the whole entry */
1355 *p = res->sibling;
1356 free_resource(res);
1357 ret = 0;
1358 } else if (res->start == start && res->end != end) {
1359 /* adjust the start */
1360 ret = __adjust_resource(res, end + 1,
1361 res->end - end);
1362 } else if (res->start != start && res->end == end) {
1363 /* adjust the end */
1364 ret = __adjust_resource(res, res->start,
1365 start - res->start);
1366 } else {
1367 /* split into two entries */
1368 if (!new_res) {
1369 ret = -ENOMEM;
1370 break;
1371 }
1372 new_res->name = res->name;
1373 new_res->start = end + 1;
1374 new_res->end = res->end;
1375 new_res->flags = res->flags;
1376 new_res->desc = res->desc;
1377 new_res->parent = res->parent;
1378 new_res->sibling = res->sibling;
1379 new_res->child = NULL;
1380
1381 ret = __adjust_resource(res, res->start,
1382 start - res->start);
1383 if (ret)
1384 break;
1385 res->sibling = new_res;
1386 new_res = NULL;
1387 }
1388
1389 break;
1390 }
1391
1392 write_unlock(&resource_lock);
1393 free_resource(new_res);
1394 return ret;
1395}
1396#endif /* CONFIG_MEMORY_HOTREMOVE */
1397
1398/*
1399 * Managed region resource
1400 */
1401static void devm_resource_release(struct device *dev, void *ptr)
1402{
1403 struct resource **r = ptr;
1404
1405 release_resource(*r);
1406}
1407
1408/**
1409 * devm_request_resource() - request and reserve an I/O or memory resource
1410 * @dev: device for which to request the resource
1411 * @root: root of the resource tree from which to request the resource
1412 * @new: descriptor of the resource to request
1413 *
1414 * This is a device-managed version of request_resource(). There is usually
1415 * no need to release resources requested by this function explicitly since
1416 * that will be taken care of when the device is unbound from its driver.
1417 * If for some reason the resource needs to be released explicitly, because
1418 * of ordering issues for example, drivers must call devm_release_resource()
1419 * rather than the regular release_resource().
1420 *
1421 * When a conflict is detected between any existing resources and the newly
1422 * requested resource, an error message will be printed.
1423 *
1424 * Returns 0 on success or a negative error code on failure.
1425 */
1426int devm_request_resource(struct device *dev, struct resource *root,
1427 struct resource *new)
1428{
1429 struct resource *conflict, **ptr;
1430
1431 ptr = devres_alloc(devm_resource_release, sizeof(*ptr), GFP_KERNEL);
1432 if (!ptr)
1433 return -ENOMEM;
1434
1435 *ptr = new;
1436
1437 conflict = request_resource_conflict(root, new);
1438 if (conflict) {
1439 dev_err(dev, "resource collision: %pR conflicts with %s %pR\n",
1440 new, conflict->name, conflict);
1441 devres_free(ptr);
1442 return -EBUSY;
1443 }
1444
1445 devres_add(dev, ptr);
1446 return 0;
1447}
1448EXPORT_SYMBOL(devm_request_resource);
1449
1450static int devm_resource_match(struct device *dev, void *res, void *data)
1451{
1452 struct resource **ptr = res;
1453
1454 return *ptr == data;
1455}
1456
1457/**
1458 * devm_release_resource() - release a previously requested resource
1459 * @dev: device for which to release the resource
1460 * @new: descriptor of the resource to release
1461 *
1462 * Releases a resource previously requested using devm_request_resource().
1463 */
1464void devm_release_resource(struct device *dev, struct resource *new)
1465{
1466 WARN_ON(devres_release(dev, devm_resource_release, devm_resource_match,
1467 new));
1468}
1469EXPORT_SYMBOL(devm_release_resource);
1470
1471struct region_devres {
1472 struct resource *parent;
1473 resource_size_t start;
1474 resource_size_t n;
1475};
1476
1477static void devm_region_release(struct device *dev, void *res)
1478{
1479 struct region_devres *this = res;
1480
1481 __release_region(this->parent, this->start, this->n);
1482}
1483
1484static int devm_region_match(struct device *dev, void *res, void *match_data)
1485{
1486 struct region_devres *this = res, *match = match_data;
1487
1488 return this->parent == match->parent &&
1489 this->start == match->start && this->n == match->n;
1490}
1491
1492struct resource *
1493__devm_request_region(struct device *dev, struct resource *parent,
1494 resource_size_t start, resource_size_t n, const char *name)
1495{
1496 struct region_devres *dr = NULL;
1497 struct resource *res;
1498
1499 dr = devres_alloc(devm_region_release, sizeof(struct region_devres),
1500 GFP_KERNEL);
1501 if (!dr)
1502 return NULL;
1503
1504 dr->parent = parent;
1505 dr->start = start;
1506 dr->n = n;
1507
1508 res = __request_region(parent, start, n, name, 0);
1509 if (res)
1510 devres_add(dev, dr);
1511 else
1512 devres_free(dr);
1513
1514 return res;
1515}
1516EXPORT_SYMBOL(__devm_request_region);
1517
1518void __devm_release_region(struct device *dev, struct resource *parent,
1519 resource_size_t start, resource_size_t n)
1520{
1521 struct region_devres match_data = { parent, start, n };
1522
1523 __release_region(parent, start, n);
1524 WARN_ON(devres_destroy(dev, devm_region_release, devm_region_match,
1525 &match_data));
1526}
1527EXPORT_SYMBOL(__devm_release_region);
1528
1529/*
1530 * Reserve I/O ports or memory based on "reserve=" kernel parameter.
1531 */
1532#define MAXRESERVE 4
1533static int __init reserve_setup(char *str)
1534{
1535 static int reserved;
1536 static struct resource reserve[MAXRESERVE];
1537
1538 for (;;) {
1539 unsigned int io_start, io_num;
1540 int x = reserved;
1541 struct resource *parent;
1542
1543 if (get_option(&str, &io_start) != 2)
1544 break;
1545 if (get_option(&str, &io_num) == 0)
1546 break;
1547 if (x < MAXRESERVE) {
1548 struct resource *res = reserve + x;
1549
1550 /*
1551 * If the region starts below 0x10000, we assume it's
1552 * I/O port space; otherwise assume it's memory.
1553 */
1554 if (io_start < 0x10000) {
1555 res->flags = IORESOURCE_IO;
1556 parent = &ioport_resource;
1557 } else {
1558 res->flags = IORESOURCE_MEM;
1559 parent = &iomem_resource;
1560 }
1561 res->name = "reserved";
1562 res->start = io_start;
1563 res->end = io_start + io_num - 1;
1564 res->flags |= IORESOURCE_BUSY;
1565 res->desc = IORES_DESC_NONE;
1566 res->child = NULL;
1567 if (request_resource(parent, res) == 0)
1568 reserved = x+1;
1569 }
1570 }
1571 return 1;
1572}
1573__setup("reserve=", reserve_setup);
1574
1575/*
1576 * Check if the requested addr and size spans more than any slot in the
1577 * iomem resource tree.
1578 */
1579int iomem_map_sanity_check(resource_size_t addr, unsigned long size)
1580{
1581 struct resource *p = &iomem_resource;
1582 int err = 0;
1583 loff_t l;
1584
1585 read_lock(&resource_lock);
1586 for (p = p->child; p ; p = r_next(NULL, p, &l)) {
1587 /*
1588 * We can probably skip the resources without
1589 * IORESOURCE_IO attribute?
1590 */
1591 if (p->start >= addr + size)
1592 continue;
1593 if (p->end < addr)
1594 continue;
1595 if (PFN_DOWN(p->start) <= PFN_DOWN(addr) &&
1596 PFN_DOWN(p->end) >= PFN_DOWN(addr + size - 1))
1597 continue;
1598 /*
1599 * if a resource is "BUSY", it's not a hardware resource
1600 * but a driver mapping of such a resource; we don't want
1601 * to warn for those; some drivers legitimately map only
1602 * partial hardware resources. (example: vesafb)
1603 */
1604 if (p->flags & IORESOURCE_BUSY)
1605 continue;
1606
1607 printk(KERN_WARNING "resource sanity check: requesting [mem %#010llx-%#010llx], which spans more than %s %pR\n",
1608 (unsigned long long)addr,
1609 (unsigned long long)(addr + size - 1),
1610 p->name, p);
1611 err = -1;
1612 break;
1613 }
1614 read_unlock(&resource_lock);
1615
1616 return err;
1617}
1618
1619#ifdef CONFIG_STRICT_DEVMEM
1620static int strict_iomem_checks = 1;
1621#else
1622static int strict_iomem_checks;
1623#endif
1624
1625/*
1626 * check if an address is reserved in the iomem resource tree
1627 * returns true if reserved, false if not reserved.
1628 */
1629bool iomem_is_exclusive(u64 addr)
1630{
1631 struct resource *p = &iomem_resource;
1632 bool err = false;
1633 loff_t l;
1634 int size = PAGE_SIZE;
1635
1636 if (!strict_iomem_checks)
1637 return false;
1638
1639 addr = addr & PAGE_MASK;
1640
1641 read_lock(&resource_lock);
1642 for (p = p->child; p ; p = r_next(NULL, p, &l)) {
1643 /*
1644 * We can probably skip the resources without
1645 * IORESOURCE_IO attribute?
1646 */
1647 if (p->start >= addr + size)
1648 break;
1649 if (p->end < addr)
1650 continue;
1651 /*
1652 * A resource is exclusive if IORESOURCE_EXCLUSIVE is set
1653 * or CONFIG_IO_STRICT_DEVMEM is enabled and the
1654 * resource is busy.
1655 */
1656 if ((p->flags & IORESOURCE_BUSY) == 0)
1657 continue;
1658 if (IS_ENABLED(CONFIG_IO_STRICT_DEVMEM)
1659 || p->flags & IORESOURCE_EXCLUSIVE) {
1660 err = true;
1661 break;
1662 }
1663 }
1664 read_unlock(&resource_lock);
1665
1666 return err;
1667}
1668
1669struct resource_entry *resource_list_create_entry(struct resource *res,
1670 size_t extra_size)
1671{
1672 struct resource_entry *entry;
1673
1674 entry = kzalloc(sizeof(*entry) + extra_size, GFP_KERNEL);
1675 if (entry) {
1676 INIT_LIST_HEAD(&entry->node);
1677 entry->res = res ? res : &entry->__res;
1678 }
1679
1680 return entry;
1681}
1682EXPORT_SYMBOL(resource_list_create_entry);
1683
1684void resource_list_free(struct list_head *head)
1685{
1686 struct resource_entry *entry, *tmp;
1687
1688 list_for_each_entry_safe(entry, tmp, head, node)
1689 resource_list_destroy_entry(entry);
1690}
1691EXPORT_SYMBOL(resource_list_free);
1692
1693#ifdef CONFIG_DEVICE_PRIVATE
1694static struct resource *__request_free_mem_region(struct device *dev,
1695 struct resource *base, unsigned long size, const char *name)
1696{
1697 resource_size_t end, addr;
1698 struct resource *res;
1699
1700 size = ALIGN(size, 1UL << PA_SECTION_SHIFT);
1701 end = min_t(unsigned long, base->end, (1UL << MAX_PHYSMEM_BITS) - 1);
1702 addr = end - size + 1UL;
1703
1704 for (; addr > size && addr >= base->start; addr -= size) {
1705 if (region_intersects(addr, size, 0, IORES_DESC_NONE) !=
1706 REGION_DISJOINT)
1707 continue;
1708
1709 if (dev)
1710 res = devm_request_mem_region(dev, addr, size, name);
1711 else
1712 res = request_mem_region(addr, size, name);
1713 if (!res)
1714 return ERR_PTR(-ENOMEM);
1715 res->desc = IORES_DESC_DEVICE_PRIVATE_MEMORY;
1716 return res;
1717 }
1718
1719 return ERR_PTR(-ERANGE);
1720}
1721
1722/**
1723 * devm_request_free_mem_region - find free region for device private memory
1724 *
1725 * @dev: device struct to bind the resource to
1726 * @size: size in bytes of the device memory to add
1727 * @base: resource tree to look in
1728 *
1729 * This function tries to find an empty range of physical address big enough to
1730 * contain the new resource, so that it can later be hotplugged as ZONE_DEVICE
1731 * memory, which in turn allocates struct pages.
1732 */
1733struct resource *devm_request_free_mem_region(struct device *dev,
1734 struct resource *base, unsigned long size)
1735{
1736 return __request_free_mem_region(dev, base, size, dev_name(dev));
1737}
1738EXPORT_SYMBOL_GPL(devm_request_free_mem_region);
1739
1740struct resource *request_free_mem_region(struct resource *base,
1741 unsigned long size, const char *name)
1742{
1743 return __request_free_mem_region(NULL, base, size, name);
1744}
1745EXPORT_SYMBOL_GPL(request_free_mem_region);
1746
1747#endif /* CONFIG_DEVICE_PRIVATE */
1748
1749static int __init strict_iomem(char *str)
1750{
1751 if (strstr(str, "relaxed"))
1752 strict_iomem_checks = 0;
1753 if (strstr(str, "strict"))
1754 strict_iomem_checks = 1;
1755 return 1;
1756}
1757
1758__setup("iomem=", strict_iomem);