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