blob: 37ed2fcb8246098ff4a70634d8a6267a26091e25 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/kernel/resource.c
3 *
4 * Copyright (C) 1999 Linus Torvalds
5 * Copyright (C) 1999 Martin Mares <mj@ucw.cz>
6 *
7 * Arbitrary resource management.
8 */
9
Octavian Purdila65fed8f2012-07-30 14:42:58 -070010#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
11
Paul Gortmaker9984de12011-05-23 14:51:41 -040012#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/errno.h>
14#include <linux/ioport.h>
15#include <linux/init.h>
16#include <linux/slab.h>
17#include <linux/spinlock.h>
18#include <linux/fs.h>
19#include <linux/proc_fs.h>
Alan Cox8b6d0432010-03-29 19:38:00 +020020#include <linux/sched.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <linux/seq_file.h>
Tejun Heo9ac78492007-01-20 16:00:26 +090022#include <linux/device.h>
Suresh Siddhad68612b2008-10-28 11:45:42 -070023#include <linux/pfn.h>
Yasuaki Ishimatsuebff7d82013-04-29 15:08:56 -070024#include <linux/mm.h>
Jiang Liu90e97822015-02-05 13:44:43 +080025#include <linux/resource_ext.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <asm/io.h>
27
28
29struct resource ioport_resource = {
30 .name = "PCI IO",
Greg Kroah-Hartman6550e072006-06-12 17:11:31 -070031 .start = 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -070032 .end = IO_SPACE_LIMIT,
33 .flags = IORESOURCE_IO,
34};
Linus Torvalds1da177e2005-04-16 15:20:36 -070035EXPORT_SYMBOL(ioport_resource);
36
37struct resource iomem_resource = {
38 .name = "PCI mem",
Greg Kroah-Hartman6550e072006-06-12 17:11:31 -070039 .start = 0,
40 .end = -1,
Linus Torvalds1da177e2005-04-16 15:20:36 -070041 .flags = IORESOURCE_MEM,
42};
Linus Torvalds1da177e2005-04-16 15:20:36 -070043EXPORT_SYMBOL(iomem_resource);
44
Ram Pai23c570a2011-07-05 23:44:30 -070045/* constraints to be met while allocating resources */
46struct resource_constraint {
47 resource_size_t min, max, align;
48 resource_size_t (*alignf)(void *, const struct resource *,
49 resource_size_t, resource_size_t);
50 void *alignf_data;
51};
52
Linus Torvalds1da177e2005-04-16 15:20:36 -070053static DEFINE_RWLOCK(resource_lock);
54
Yasuaki Ishimatsuebff7d82013-04-29 15:08:56 -070055/*
56 * For memory hotplug, there is no way to free resource entries allocated
57 * by boot mem after the system is up. So for reusing the resource entry
58 * we need to remember the resource.
59 */
60static struct resource *bootmem_resource_free;
61static DEFINE_SPINLOCK(bootmem_resource_lock);
62
Vivek Goyal8c86e702014-08-08 14:25:50 -070063static struct resource *next_resource(struct resource *p, bool sibling_only)
Linus Torvalds1da177e2005-04-16 15:20:36 -070064{
Vivek Goyal8c86e702014-08-08 14:25:50 -070065 /* Caller wants to traverse through siblings only */
66 if (sibling_only)
67 return p->sibling;
68
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 if (p->child)
70 return p->child;
71 while (!p->sibling && p->parent)
72 p = p->parent;
73 return p->sibling;
74}
75
Vivek Goyal8c86e702014-08-08 14:25:50 -070076static void *r_next(struct seq_file *m, void *v, loff_t *pos)
77{
78 struct resource *p = v;
79 (*pos)++;
80 return (void *)next_resource(p, false);
81}
82
Ingo Molnar13eb8372008-09-26 10:10:12 +020083#ifdef CONFIG_PROC_FS
84
85enum { MAX_IORES_LEVEL = 5 };
86
Linus Torvalds1da177e2005-04-16 15:20:36 -070087static void *r_start(struct seq_file *m, loff_t *pos)
88 __acquires(resource_lock)
89{
90 struct resource *p = m->private;
91 loff_t l = 0;
92 read_lock(&resource_lock);
93 for (p = p->child; p && l < *pos; p = r_next(m, p, &l))
94 ;
95 return p;
96}
97
98static void r_stop(struct seq_file *m, void *v)
99 __releases(resource_lock)
100{
101 read_unlock(&resource_lock);
102}
103
104static int r_show(struct seq_file *m, void *v)
105{
106 struct resource *root = m->private;
107 struct resource *r = v, *p;
108 int width = root->end < 0x10000 ? 4 : 8;
109 int depth;
110
111 for (depth = 0, p = r; depth < MAX_IORES_LEVEL; depth++, p = p->parent)
112 if (p->parent == root)
113 break;
Greg Kroah-Hartman685143ac2006-06-12 15:18:31 -0700114 seq_printf(m, "%*s%0*llx-%0*llx : %s\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 depth * 2, "",
Greg Kroah-Hartman685143ac2006-06-12 15:18:31 -0700116 width, (unsigned long long) r->start,
117 width, (unsigned long long) r->end,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 r->name ? r->name : "<BAD>");
119 return 0;
120}
121
Helge Deller15ad7cd2006-12-06 20:40:36 -0800122static const struct seq_operations resource_op = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 .start = r_start,
124 .next = r_next,
125 .stop = r_stop,
126 .show = r_show,
127};
128
129static int ioports_open(struct inode *inode, struct file *file)
130{
131 int res = seq_open(file, &resource_op);
132 if (!res) {
133 struct seq_file *m = file->private_data;
134 m->private = &ioport_resource;
135 }
136 return res;
137}
138
139static int iomem_open(struct inode *inode, struct file *file)
140{
141 int res = seq_open(file, &resource_op);
142 if (!res) {
143 struct seq_file *m = file->private_data;
144 m->private = &iomem_resource;
145 }
146 return res;
147}
148
Helge Deller15ad7cd2006-12-06 20:40:36 -0800149static const struct file_operations proc_ioports_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 .open = ioports_open,
151 .read = seq_read,
152 .llseek = seq_lseek,
153 .release = seq_release,
154};
155
Helge Deller15ad7cd2006-12-06 20:40:36 -0800156static const struct file_operations proc_iomem_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 .open = iomem_open,
158 .read = seq_read,
159 .llseek = seq_lseek,
160 .release = seq_release,
161};
162
163static int __init ioresources_init(void)
164{
Denis V. Lunevc33fff02008-04-29 01:02:31 -0700165 proc_create("ioports", 0, NULL, &proc_ioports_operations);
166 proc_create("iomem", 0, NULL, &proc_iomem_operations);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 return 0;
168}
169__initcall(ioresources_init);
170
171#endif /* CONFIG_PROC_FS */
172
Yasuaki Ishimatsuebff7d82013-04-29 15:08:56 -0700173static void free_resource(struct resource *res)
174{
175 if (!res)
176 return;
177
178 if (!PageSlab(virt_to_head_page(res))) {
179 spin_lock(&bootmem_resource_lock);
180 res->sibling = bootmem_resource_free;
181 bootmem_resource_free = res;
182 spin_unlock(&bootmem_resource_lock);
183 } else {
184 kfree(res);
185 }
186}
187
188static struct resource *alloc_resource(gfp_t flags)
189{
190 struct resource *res = NULL;
191
192 spin_lock(&bootmem_resource_lock);
193 if (bootmem_resource_free) {
194 res = bootmem_resource_free;
195 bootmem_resource_free = res->sibling;
196 }
197 spin_unlock(&bootmem_resource_lock);
198
199 if (res)
200 memset(res, 0, sizeof(struct resource));
201 else
202 res = kzalloc(sizeof(struct resource), flags);
203
204 return res;
205}
206
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207/* Return the conflict entry if you can't request it */
208static struct resource * __request_resource(struct resource *root, struct resource *new)
209{
Greg Kroah-Hartmand75fc8b2006-06-12 16:09:23 -0700210 resource_size_t start = new->start;
211 resource_size_t end = new->end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 struct resource *tmp, **p;
213
214 if (end < start)
215 return root;
216 if (start < root->start)
217 return root;
218 if (end > root->end)
219 return root;
220 p = &root->child;
221 for (;;) {
222 tmp = *p;
223 if (!tmp || tmp->start > end) {
224 new->sibling = tmp;
225 *p = new;
226 new->parent = root;
227 return NULL;
228 }
229 p = &tmp->sibling;
230 if (tmp->end < start)
231 continue;
232 return tmp;
233 }
234}
235
236static int __release_resource(struct resource *old)
237{
238 struct resource *tmp, **p;
239
240 p = &old->parent->child;
241 for (;;) {
242 tmp = *p;
243 if (!tmp)
244 break;
245 if (tmp == old) {
246 *p = tmp->sibling;
247 old->parent = NULL;
248 return 0;
249 }
250 p = &tmp->sibling;
251 }
252 return -EINVAL;
253}
254
Yinghai Lu5eeec0e2009-12-22 15:02:22 -0800255static void __release_child_resources(struct resource *r)
256{
257 struct resource *tmp, *p;
258 resource_size_t size;
259
260 p = r->child;
261 r->child = NULL;
262 while (p) {
263 tmp = p;
264 p = p->sibling;
265
266 tmp->parent = NULL;
267 tmp->sibling = NULL;
268 __release_child_resources(tmp);
269
270 printk(KERN_DEBUG "release child resource %pR\n", tmp);
271 /* need to restore size, and keep flags */
272 size = resource_size(tmp);
273 tmp->start = 0;
274 tmp->end = size - 1;
275 }
276}
277
278void release_child_resources(struct resource *r)
279{
280 write_lock(&resource_lock);
281 __release_child_resources(r);
282 write_unlock(&resource_lock);
283}
284
Randy Dunlape1ca66d1b2006-10-03 01:13:51 -0700285/**
Bjorn Helgaas66f12072010-03-11 17:01:09 -0700286 * request_resource_conflict - request and reserve an I/O or memory resource
287 * @root: root resource descriptor
288 * @new: resource descriptor desired by caller
289 *
290 * Returns 0 for success, conflict resource on error.
291 */
292struct resource *request_resource_conflict(struct resource *root, struct resource *new)
293{
294 struct resource *conflict;
295
296 write_lock(&resource_lock);
297 conflict = __request_resource(root, new);
298 write_unlock(&resource_lock);
299 return conflict;
300}
301
302/**
Randy Dunlape1ca66d1b2006-10-03 01:13:51 -0700303 * request_resource - request and reserve an I/O or memory resource
304 * @root: root resource descriptor
305 * @new: resource descriptor desired by caller
306 *
307 * Returns 0 for success, negative error code on error.
308 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309int request_resource(struct resource *root, struct resource *new)
310{
311 struct resource *conflict;
312
Bjorn Helgaas66f12072010-03-11 17:01:09 -0700313 conflict = request_resource_conflict(root, new);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 return conflict ? -EBUSY : 0;
315}
316
317EXPORT_SYMBOL(request_resource);
318
Randy Dunlape1ca66d1b2006-10-03 01:13:51 -0700319/**
Randy Dunlape1ca66d1b2006-10-03 01:13:51 -0700320 * release_resource - release a previously reserved resource
321 * @old: resource pointer
322 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323int release_resource(struct resource *old)
324{
325 int retval;
326
327 write_lock(&resource_lock);
328 retval = __release_resource(old);
329 write_unlock(&resource_lock);
330 return retval;
331}
332
333EXPORT_SYMBOL(release_resource);
334
KAMEZAWA Hiroyuki2842f112006-06-27 02:53:36 -0700335/*
Toshi Kani3f336472016-01-26 21:57:29 +0100336 * Finds the lowest iomem resource existing within [res->start.res->end).
337 * The caller must specify res->start, res->end, res->flags, and optionally
338 * desc and "name". If found, returns 0, res is overwritten, if not found,
339 * returns -1.
340 * This function walks the whole tree and not just first level children until
341 * and unless first_level_children_only is true.
KAMEZAWA Hiroyuki2842f112006-06-27 02:53:36 -0700342 */
Toshi Kani3f336472016-01-26 21:57:29 +0100343static int find_next_iomem_res(struct resource *res, unsigned long desc,
344 char *name, bool first_level_children_only)
KAMEZAWA Hiroyuki2842f112006-06-27 02:53:36 -0700345{
346 resource_size_t start, end;
347 struct resource *p;
Vivek Goyal8c86e702014-08-08 14:25:50 -0700348 bool sibling_only = false;
KAMEZAWA Hiroyuki2842f112006-06-27 02:53:36 -0700349
350 BUG_ON(!res);
351
352 start = res->start;
353 end = res->end;
KAMEZAWA Hiroyuki58c1b5b2006-08-05 12:15:01 -0700354 BUG_ON(start >= end);
KAMEZAWA Hiroyuki2842f112006-06-27 02:53:36 -0700355
Vivek Goyal800df622014-08-29 15:18:29 -0700356 if (first_level_children_only)
357 sibling_only = true;
358
KAMEZAWA Hiroyuki2842f112006-06-27 02:53:36 -0700359 read_lock(&resource_lock);
Vivek Goyal8c86e702014-08-08 14:25:50 -0700360
Vivek Goyal800df622014-08-29 15:18:29 -0700361 for (p = iomem_resource.child; p; p = next_resource(p, sibling_only)) {
Toshi Kania3650d52016-01-26 21:57:18 +0100362 if ((p->flags & res->flags) != res->flags)
KAMEZAWA Hiroyuki2842f112006-06-27 02:53:36 -0700363 continue;
Toshi Kani3f336472016-01-26 21:57:29 +0100364 if ((desc != IORES_DESC_NONE) && (desc != p->desc))
365 continue;
KAMEZAWA Hiroyuki908eedc2009-09-22 16:45:46 -0700366 if (name && strcmp(p->name, name))
367 continue;
KAMEZAWA Hiroyuki2842f112006-06-27 02:53:36 -0700368 if (p->start > end) {
369 p = NULL;
370 break;
371 }
KAMEZAWA Hiroyuki58c1b5b2006-08-05 12:15:01 -0700372 if ((p->end >= start) && (p->start < end))
KAMEZAWA Hiroyuki2842f112006-06-27 02:53:36 -0700373 break;
374 }
Vivek Goyal8c86e702014-08-08 14:25:50 -0700375
KAMEZAWA Hiroyuki2842f112006-06-27 02:53:36 -0700376 read_unlock(&resource_lock);
377 if (!p)
378 return -1;
379 /* copy data */
KAMEZAWA Hiroyuki0f04ab52006-08-05 12:14:59 -0700380 if (res->start < p->start)
381 res->start = p->start;
382 if (res->end > p->end)
383 res->end = p->end;
KAMEZAWA Hiroyuki2842f112006-06-27 02:53:36 -0700384 return 0;
385}
KAMEZAWA Hiroyuki908eedc2009-09-22 16:45:46 -0700386
387/*
Vivek Goyal8c86e702014-08-08 14:25:50 -0700388 * Walks through iomem resources and calls func() with matching resource
389 * ranges. This walks through whole tree and not just first level children.
390 * All the memory ranges which overlap start,end and also match flags and
Toshi Kani3f336472016-01-26 21:57:29 +0100391 * desc are valid candidates.
392 *
393 * @desc: I/O resource descriptor. Use IORES_DESC_NONE to skip @desc check.
394 * @flags: I/O resource flags
395 * @start: start addr
396 * @end: end addr
397 *
398 * NOTE: For a new descriptor search, define a new IORES_DESC in
399 * <linux/ioport.h> and set it in 'desc' of a target resource entry.
400 */
401int walk_iomem_res_desc(unsigned long desc, unsigned long flags, u64 start,
402 u64 end, void *arg, int (*func)(u64, u64, void *))
403{
404 struct resource res;
405 u64 orig_end;
406 int ret = -1;
407
408 res.start = start;
409 res.end = end;
410 res.flags = flags;
411 orig_end = res.end;
412
413 while ((res.start < res.end) &&
414 (!find_next_iomem_res(&res, desc, NULL, false))) {
415
416 ret = (*func)(res.start, res.end, arg);
417 if (ret)
418 break;
419
420 res.start = res.end + 1;
421 res.end = orig_end;
422 }
423
424 return ret;
425}
426
427/*
428 * Walks through iomem resources and calls @func with matching resource
429 * ranges. This walks the whole tree and not just first level children.
430 * All the memory ranges which overlap start,end and also match flags and
Vivek Goyal8c86e702014-08-08 14:25:50 -0700431 * name are valid candidates.
432 *
433 * @name: name of resource
434 * @flags: resource flags
435 * @start: start addr
436 * @end: end addr
Toshi Kani3f336472016-01-26 21:57:29 +0100437 *
438 * NOTE: This function is deprecated and should not be used in new code.
439 * Use walk_iomem_res_desc(), instead.
Vivek Goyal8c86e702014-08-08 14:25:50 -0700440 */
441int walk_iomem_res(char *name, unsigned long flags, u64 start, u64 end,
442 void *arg, int (*func)(u64, u64, void *))
443{
444 struct resource res;
445 u64 orig_end;
446 int ret = -1;
447
448 res.start = start;
449 res.end = end;
450 res.flags = flags;
451 orig_end = res.end;
452 while ((res.start < res.end) &&
Toshi Kani3f336472016-01-26 21:57:29 +0100453 (!find_next_iomem_res(&res, IORES_DESC_NONE, name, false))) {
Vivek Goyal8c86e702014-08-08 14:25:50 -0700454 ret = (*func)(res.start, res.end, arg);
455 if (ret)
456 break;
457 res.start = res.end + 1;
458 res.end = orig_end;
459 }
460 return ret;
461}
462
463/*
Toshi Kanibd7e6cb2016-01-26 21:57:26 +0100464 * This function calls the @func callback against all memory ranges of type
465 * System RAM which are marked as IORESOURCE_SYSTEM_RAM and IORESOUCE_BUSY.
466 * Now, this function is only for System RAM, it deals with full ranges and
467 * not PFNs. If resources are not PFN-aligned, dealing with PFNs can truncate
468 * ranges.
Vivek Goyal8c86e702014-08-08 14:25:50 -0700469 */
470int walk_system_ram_res(u64 start, u64 end, void *arg,
471 int (*func)(u64, u64, void *))
472{
473 struct resource res;
474 u64 orig_end;
475 int ret = -1;
476
477 res.start = start;
478 res.end = end;
Toshi Kanibd7e6cb2016-01-26 21:57:26 +0100479 res.flags = IORESOURCE_SYSTEM_RAM | IORESOURCE_BUSY;
Vivek Goyal8c86e702014-08-08 14:25:50 -0700480 orig_end = res.end;
481 while ((res.start < res.end) &&
Toshi Kani3f336472016-01-26 21:57:29 +0100482 (!find_next_iomem_res(&res, IORES_DESC_NONE, NULL, true))) {
Vivek Goyal8c86e702014-08-08 14:25:50 -0700483 ret = (*func)(res.start, res.end, arg);
484 if (ret)
485 break;
486 res.start = res.end + 1;
487 res.end = orig_end;
488 }
489 return ret;
490}
491
492#if !defined(CONFIG_ARCH_HAS_WALK_MEMORY)
493
494/*
Toshi Kanibd7e6cb2016-01-26 21:57:26 +0100495 * This function calls the @func callback against all memory ranges of type
496 * System RAM which are marked as IORESOURCE_SYSTEM_RAM and IORESOUCE_BUSY.
497 * It is to be used only for System RAM.
KAMEZAWA Hiroyuki908eedc2009-09-22 16:45:46 -0700498 */
499int walk_system_ram_range(unsigned long start_pfn, unsigned long nr_pages,
500 void *arg, int (*func)(unsigned long, unsigned long, void *))
KAMEZAWA Hiroyuki75884fb2007-10-16 01:26:10 -0700501{
502 struct resource res;
Wu Fengguang37b99dd2010-03-01 21:55:51 +0800503 unsigned long pfn, end_pfn;
KAMEZAWA Hiroyuki75884fb2007-10-16 01:26:10 -0700504 u64 orig_end;
505 int ret = -1;
KAMEZAWA Hiroyuki908eedc2009-09-22 16:45:46 -0700506
KAMEZAWA Hiroyuki75884fb2007-10-16 01:26:10 -0700507 res.start = (u64) start_pfn << PAGE_SHIFT;
508 res.end = ((u64)(start_pfn + nr_pages) << PAGE_SHIFT) - 1;
Toshi Kanibd7e6cb2016-01-26 21:57:26 +0100509 res.flags = IORESOURCE_SYSTEM_RAM | IORESOURCE_BUSY;
KAMEZAWA Hiroyuki75884fb2007-10-16 01:26:10 -0700510 orig_end = res.end;
KAMEZAWA Hiroyuki908eedc2009-09-22 16:45:46 -0700511 while ((res.start < res.end) &&
Toshi Kani3f336472016-01-26 21:57:29 +0100512 (find_next_iomem_res(&res, IORES_DESC_NONE, NULL, true) >= 0)) {
Wu Fengguang37b99dd2010-03-01 21:55:51 +0800513 pfn = (res.start + PAGE_SIZE - 1) >> PAGE_SHIFT;
514 end_pfn = (res.end + 1) >> PAGE_SHIFT;
515 if (end_pfn > pfn)
H. Peter Anvinf4149662010-03-02 11:21:09 -0800516 ret = (*func)(pfn, end_pfn - pfn, arg);
KAMEZAWA Hiroyuki75884fb2007-10-16 01:26:10 -0700517 if (ret)
518 break;
519 res.start = res.end + 1;
520 res.end = orig_end;
521 }
522 return ret;
523}
524
KAMEZAWA Hiroyuki2842f112006-06-27 02:53:36 -0700525#endif
526
Wu Fengguang61ef2482010-01-22 16:16:19 +0800527static int __is_ram(unsigned long pfn, unsigned long nr_pages, void *arg)
528{
529 return 1;
530}
531/*
532 * This generic page_is_ram() returns true if specified address is
Toshi Kanibd7e6cb2016-01-26 21:57:26 +0100533 * registered as System RAM in iomem_resource list.
Wu Fengguang61ef2482010-01-22 16:16:19 +0800534 */
Andrew Mortone5273002010-01-26 16:31:19 -0800535int __weak page_is_ram(unsigned long pfn)
Wu Fengguang61ef2482010-01-22 16:16:19 +0800536{
537 return walk_system_ram_range(pfn, 1, NULL, __is_ram) == 1;
538}
Chen Gongc5a13032013-06-06 15:20:51 -0700539EXPORT_SYMBOL_GPL(page_is_ram);
Wu Fengguang61ef2482010-01-22 16:16:19 +0800540
Dan Williams124fe202015-08-10 23:07:05 -0400541/**
542 * region_intersects() - determine intersection of region with known resources
543 * @start: region start address
544 * @size: size of region
Toshi Kani1c29f252016-01-26 21:57:28 +0100545 * @flags: flags of resource (in iomem_resource)
546 * @desc: descriptor of resource (in iomem_resource) or IORES_DESC_NONE
Mike Travis67cf13c2014-10-13 15:54:03 -0700547 *
Dan Williams124fe202015-08-10 23:07:05 -0400548 * Check if the specified region partially overlaps or fully eclipses a
Toshi Kani1c29f252016-01-26 21:57:28 +0100549 * resource identified by @flags and @desc (optional with IORES_DESC_NONE).
550 * Return REGION_DISJOINT if the region does not overlap @flags/@desc,
551 * return REGION_MIXED if the region overlaps @flags/@desc and another
552 * resource, and return REGION_INTERSECTS if the region overlaps @flags/@desc
553 * and no other defined resource. Note that REGION_INTERSECTS is also
554 * returned in the case when the specified region overlaps RAM and undefined
555 * memory holes.
Dan Williams124fe202015-08-10 23:07:05 -0400556 *
557 * region_intersect() is used by memory remapping functions to ensure
558 * the user is not remapping RAM and is a vast speed up over walking
559 * through the resource table page by page.
Mike Travis67cf13c2014-10-13 15:54:03 -0700560 */
Toshi Kani1c29f252016-01-26 21:57:28 +0100561int region_intersects(resource_size_t start, size_t size, unsigned long flags,
562 unsigned long desc)
Mike Travis67cf13c2014-10-13 15:54:03 -0700563{
Dan Williams124fe202015-08-10 23:07:05 -0400564 resource_size_t end = start + size - 1;
565 int type = 0; int other = 0;
566 struct resource *p;
Mike Travis67cf13c2014-10-13 15:54:03 -0700567
568 read_lock(&resource_lock);
569 for (p = iomem_resource.child; p ; p = p->sibling) {
Toshi Kani1c29f252016-01-26 21:57:28 +0100570 bool is_type = (((p->flags & flags) == flags) &&
571 ((desc == IORES_DESC_NONE) ||
572 (desc == p->desc)));
Mike Travis67cf13c2014-10-13 15:54:03 -0700573
Dan Williams124fe202015-08-10 23:07:05 -0400574 if (start >= p->start && start <= p->end)
575 is_type ? type++ : other++;
576 if (end >= p->start && end <= p->end)
577 is_type ? type++ : other++;
578 if (p->start >= start && p->end <= end)
579 is_type ? type++ : other++;
Mike Travis67cf13c2014-10-13 15:54:03 -0700580 }
581 read_unlock(&resource_lock);
Dan Williams124fe202015-08-10 23:07:05 -0400582
583 if (other == 0)
584 return type ? REGION_INTERSECTS : REGION_DISJOINT;
585
586 if (type)
587 return REGION_MIXED;
588
589 return REGION_DISJOINT;
Mike Travis67cf13c2014-10-13 15:54:03 -0700590}
Toshi Kani1c29f252016-01-26 21:57:28 +0100591EXPORT_SYMBOL_GPL(region_intersects);
Mike Travis67cf13c2014-10-13 15:54:03 -0700592
Bjorn Helgaasfcb11912010-12-16 10:38:46 -0700593void __weak arch_remove_reservations(struct resource *avail)
594{
595}
596
Bjorn Helgaasa9cea012010-10-26 15:41:13 -0600597static resource_size_t simple_align_resource(void *data,
598 const struct resource *avail,
599 resource_size_t size,
600 resource_size_t align)
601{
602 return avail->start;
603}
604
Bjorn Helgaas5d6b1fa2010-10-26 15:41:18 -0600605static void resource_clip(struct resource *res, resource_size_t min,
606 resource_size_t max)
607{
608 if (res->start < min)
609 res->start = min;
610 if (res->end > max)
611 res->end = max;
612}
613
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614/*
Ram Pai23c570a2011-07-05 23:44:30 -0700615 * Find empty slot in the resource tree with the given range and
616 * alignment constraints
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 */
Ram Pai23c570a2011-07-05 23:44:30 -0700618static int __find_resource(struct resource *root, struct resource *old,
619 struct resource *new,
620 resource_size_t size,
621 struct resource_constraint *constraint)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622{
623 struct resource *this = root->child;
Bjorn Helgaasa1862e32010-10-26 15:41:28 -0600624 struct resource tmp = *new, avail, alloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625
Dominik Brodowski0e2c8b82009-12-20 10:50:02 +0100626 tmp.start = root->start;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 /*
Bjorn Helgaasc0f5ac52010-12-16 10:38:41 -0700628 * Skip past an allocated resource that starts at 0, since the assignment
629 * of this->start - 1 to tmp->end below would cause an underflow.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 */
Ram Pai23c570a2011-07-05 23:44:30 -0700631 if (this && this->start == root->start) {
632 tmp.start = (this == old) ? old->start : this->end + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 this = this->sibling;
634 }
Bjorn Helgaasc0f5ac52010-12-16 10:38:41 -0700635 for(;;) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 if (this)
Ram Pai23c570a2011-07-05 23:44:30 -0700637 tmp.end = (this == old) ? this->end : this->start - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 else
Dominik Brodowski0e2c8b82009-12-20 10:50:02 +0100639 tmp.end = root->end;
Bjorn Helgaas5d6b1fa2010-10-26 15:41:18 -0600640
Ram Pai47ea91b2011-09-22 15:48:58 +0800641 if (tmp.end < tmp.start)
642 goto next;
643
Ram Pai23c570a2011-07-05 23:44:30 -0700644 resource_clip(&tmp, constraint->min, constraint->max);
Bjorn Helgaasfcb11912010-12-16 10:38:46 -0700645 arch_remove_reservations(&tmp);
Bjorn Helgaasa9cea012010-10-26 15:41:13 -0600646
Bjorn Helgaasa1862e32010-10-26 15:41:28 -0600647 /* Check for overflow after ALIGN() */
Ram Pai23c570a2011-07-05 23:44:30 -0700648 avail.start = ALIGN(tmp.start, constraint->align);
Bjorn Helgaasa1862e32010-10-26 15:41:28 -0600649 avail.end = tmp.end;
Bjorn Helgaas5edb93b2014-02-04 19:32:28 -0800650 avail.flags = new->flags & ~IORESOURCE_UNSET;
Bjorn Helgaasa1862e32010-10-26 15:41:28 -0600651 if (avail.start >= tmp.start) {
Bjorn Helgaas5edb93b2014-02-04 19:32:28 -0800652 alloc.flags = avail.flags;
Ram Pai23c570a2011-07-05 23:44:30 -0700653 alloc.start = constraint->alignf(constraint->alignf_data, &avail,
654 size, constraint->align);
Bjorn Helgaasa1862e32010-10-26 15:41:28 -0600655 alloc.end = alloc.start + size - 1;
656 if (resource_contains(&avail, &alloc)) {
657 new->start = alloc.start;
658 new->end = alloc.end;
659 return 0;
660 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 }
Ram Pai47ea91b2011-09-22 15:48:58 +0800662
663next: if (!this || this->end == root->end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 break;
Ram Pai47ea91b2011-09-22 15:48:58 +0800665
Ram Pai23c570a2011-07-05 23:44:30 -0700666 if (this != old)
667 tmp.start = this->end + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 this = this->sibling;
669 }
670 return -EBUSY;
671}
672
Ram Pai23c570a2011-07-05 23:44:30 -0700673/*
674 * Find empty slot in the resource tree given range and alignment.
675 */
676static int find_resource(struct resource *root, struct resource *new,
677 resource_size_t size,
678 struct resource_constraint *constraint)
679{
680 return __find_resource(root, NULL, new, size, constraint);
681}
682
Randy Dunlape1ca66d1b2006-10-03 01:13:51 -0700683/**
Ram Pai23c570a2011-07-05 23:44:30 -0700684 * reallocate_resource - allocate a slot in the resource tree given range & alignment.
685 * The resource will be relocated if the new size cannot be reallocated in the
686 * current location.
687 *
688 * @root: root resource descriptor
689 * @old: resource descriptor desired by caller
690 * @newsize: new size of the resource descriptor
691 * @constraint: the size and alignment constraints to be met.
692 */
Daeseok Youn28ab49f2014-04-03 14:48:36 -0700693static int reallocate_resource(struct resource *root, struct resource *old,
Ram Pai23c570a2011-07-05 23:44:30 -0700694 resource_size_t newsize,
695 struct resource_constraint *constraint)
696{
697 int err=0;
698 struct resource new = *old;
699 struct resource *conflict;
700
701 write_lock(&resource_lock);
702
703 if ((err = __find_resource(root, old, &new, newsize, constraint)))
704 goto out;
705
706 if (resource_contains(&new, old)) {
707 old->start = new.start;
708 old->end = new.end;
709 goto out;
710 }
711
712 if (old->child) {
713 err = -EBUSY;
714 goto out;
715 }
716
717 if (resource_contains(old, &new)) {
718 old->start = new.start;
719 old->end = new.end;
720 } else {
721 __release_resource(old);
722 *old = new;
723 conflict = __request_resource(root, old);
724 BUG_ON(conflict);
725 }
726out:
727 write_unlock(&resource_lock);
728 return err;
729}
730
731
732/**
733 * allocate_resource - allocate empty slot in the resource tree given range & alignment.
734 * The resource will be reallocated with a new size if it was already allocated
Randy Dunlape1ca66d1b2006-10-03 01:13:51 -0700735 * @root: root resource descriptor
736 * @new: resource descriptor desired by caller
737 * @size: requested resource region size
Wei Yangee5e5682012-05-31 16:26:05 -0700738 * @min: minimum boundary to allocate
739 * @max: maximum boundary to allocate
Randy Dunlape1ca66d1b2006-10-03 01:13:51 -0700740 * @align: alignment requested, in bytes
741 * @alignf: alignment function, optional, called if not NULL
742 * @alignf_data: arbitrary data to pass to the @alignf function
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 */
744int allocate_resource(struct resource *root, struct resource *new,
Greg Kroah-Hartmand75fc8b2006-06-12 16:09:23 -0700745 resource_size_t size, resource_size_t min,
746 resource_size_t max, resource_size_t align,
Dominik Brodowskib26b2d42010-01-01 17:40:49 +0100747 resource_size_t (*alignf)(void *,
Dominik Brodowski3b7a17f2010-01-01 17:40:50 +0100748 const struct resource *,
Dominik Brodowskib26b2d42010-01-01 17:40:49 +0100749 resource_size_t,
750 resource_size_t),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 void *alignf_data)
752{
753 int err;
Ram Pai23c570a2011-07-05 23:44:30 -0700754 struct resource_constraint constraint;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755
Bjorn Helgaasa9cea012010-10-26 15:41:13 -0600756 if (!alignf)
757 alignf = simple_align_resource;
758
Ram Pai23c570a2011-07-05 23:44:30 -0700759 constraint.min = min;
760 constraint.max = max;
761 constraint.align = align;
762 constraint.alignf = alignf;
763 constraint.alignf_data = alignf_data;
764
765 if ( new->parent ) {
766 /* resource is already allocated, try reallocating with
767 the new constraints */
768 return reallocate_resource(root, new, size, &constraint);
769 }
770
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 write_lock(&resource_lock);
Ram Pai23c570a2011-07-05 23:44:30 -0700772 err = find_resource(root, new, size, &constraint);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 if (err >= 0 && __request_resource(root, new))
774 err = -EBUSY;
775 write_unlock(&resource_lock);
776 return err;
777}
778
779EXPORT_SYMBOL(allocate_resource);
780
Geert Uytterhoeven1c388912011-05-07 20:53:16 +0200781/**
782 * lookup_resource - find an existing resource by a resource start address
783 * @root: root resource descriptor
784 * @start: resource start address
785 *
786 * Returns a pointer to the resource if found, NULL otherwise
787 */
788struct resource *lookup_resource(struct resource *root, resource_size_t start)
789{
790 struct resource *res;
791
792 read_lock(&resource_lock);
793 for (res = root->child; res; res = res->sibling) {
794 if (res->start == start)
795 break;
796 }
797 read_unlock(&resource_lock);
798
799 return res;
800}
801
Linus Torvaldsbef69ea2008-08-29 20:18:31 -0700802/*
803 * Insert a resource into the resource tree. If successful, return NULL,
804 * otherwise return the conflicting resource (compare to __request_resource())
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 */
Linus Torvaldsbef69ea2008-08-29 20:18:31 -0700806static struct resource * __insert_resource(struct resource *parent, struct resource *new)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 struct resource *first, *next;
809
Matthew Wilcoxd33b6fb2006-06-30 02:31:24 -0700810 for (;; parent = first) {
Matthew Wilcoxd33b6fb2006-06-30 02:31:24 -0700811 first = __request_resource(parent, new);
812 if (!first)
Linus Torvaldsbef69ea2008-08-29 20:18:31 -0700813 return first;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814
Matthew Wilcoxd33b6fb2006-06-30 02:31:24 -0700815 if (first == parent)
Linus Torvaldsbef69ea2008-08-29 20:18:31 -0700816 return first;
Huang Shijie5de1cb22010-10-27 15:34:52 -0700817 if (WARN_ON(first == new)) /* duplicated insertion */
818 return first;
Matthew Wilcoxd33b6fb2006-06-30 02:31:24 -0700819
820 if ((first->start > new->start) || (first->end < new->end))
821 break;
822 if ((first->start == new->start) && (first->end == new->end))
823 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 }
825
826 for (next = first; ; next = next->sibling) {
827 /* Partial overlap? Bad, and unfixable */
828 if (next->start < new->start || next->end > new->end)
Linus Torvaldsbef69ea2008-08-29 20:18:31 -0700829 return next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 if (!next->sibling)
831 break;
832 if (next->sibling->start > new->end)
833 break;
834 }
835
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 new->parent = parent;
837 new->sibling = next->sibling;
838 new->child = first;
839
840 next->sibling = NULL;
841 for (next = first; next; next = next->sibling)
842 next->parent = new;
843
844 if (parent->child == first) {
845 parent->child = new;
846 } else {
847 next = parent->child;
848 while (next->sibling != first)
849 next = next->sibling;
850 next->sibling = new;
851 }
Linus Torvaldsbef69ea2008-08-29 20:18:31 -0700852 return NULL;
853}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854
Linus Torvaldsbef69ea2008-08-29 20:18:31 -0700855/**
Bjorn Helgaas66f12072010-03-11 17:01:09 -0700856 * insert_resource_conflict - Inserts resource in the resource tree
Linus Torvaldsbef69ea2008-08-29 20:18:31 -0700857 * @parent: parent of the new resource
858 * @new: new resource to insert
859 *
Bjorn Helgaas66f12072010-03-11 17:01:09 -0700860 * Returns 0 on success, conflict resource if the resource can't be inserted.
Linus Torvaldsbef69ea2008-08-29 20:18:31 -0700861 *
Bjorn Helgaas66f12072010-03-11 17:01:09 -0700862 * This function is equivalent to request_resource_conflict when no conflict
Linus Torvaldsbef69ea2008-08-29 20:18:31 -0700863 * happens. If a conflict happens, and the conflicting resources
864 * entirely fit within the range of the new resource, then the new
865 * resource is inserted and the conflicting resources become children of
866 * the new resource.
867 */
Bjorn Helgaas66f12072010-03-11 17:01:09 -0700868struct resource *insert_resource_conflict(struct resource *parent, struct resource *new)
Linus Torvaldsbef69ea2008-08-29 20:18:31 -0700869{
870 struct resource *conflict;
871
872 write_lock(&resource_lock);
873 conflict = __insert_resource(parent, new);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 write_unlock(&resource_lock);
Bjorn Helgaas66f12072010-03-11 17:01:09 -0700875 return conflict;
876}
877
878/**
879 * insert_resource - Inserts a resource in the resource tree
880 * @parent: parent of the new resource
881 * @new: new resource to insert
882 *
883 * Returns 0 on success, -EBUSY if the resource can't be inserted.
884 */
885int insert_resource(struct resource *parent, struct resource *new)
886{
887 struct resource *conflict;
888
889 conflict = insert_resource_conflict(parent, new);
Linus Torvaldsbef69ea2008-08-29 20:18:31 -0700890 return conflict ? -EBUSY : 0;
891}
892
893/**
894 * insert_resource_expand_to_fit - Insert a resource into the resource tree
Randy Dunlap6781f4a2008-08-31 20:31:55 -0700895 * @root: root resource descriptor
Linus Torvaldsbef69ea2008-08-29 20:18:31 -0700896 * @new: new resource to insert
897 *
898 * Insert a resource into the resource tree, possibly expanding it in order
899 * to make it encompass any conflicting resources.
900 */
901void insert_resource_expand_to_fit(struct resource *root, struct resource *new)
902{
903 if (new->parent)
904 return;
905
906 write_lock(&resource_lock);
907 for (;;) {
908 struct resource *conflict;
909
910 conflict = __insert_resource(root, new);
911 if (!conflict)
912 break;
913 if (conflict == root)
914 break;
915
916 /* Ok, expand resource to cover the conflict, then try again .. */
917 if (conflict->start < new->start)
918 new->start = conflict->start;
919 if (conflict->end > new->end)
920 new->end = conflict->end;
921
922 printk("Expanded resource %s due to conflict with %s\n", new->name, conflict->name);
923 }
924 write_unlock(&resource_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925}
926
Toshi Kaniae8e3a92013-04-29 15:08:17 -0700927static int __adjust_resource(struct resource *res, resource_size_t start,
928 resource_size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929{
930 struct resource *tmp, *parent = res->parent;
Greg Kroah-Hartmand75fc8b2006-06-12 16:09:23 -0700931 resource_size_t end = start + size - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 int result = -EBUSY;
933
Yinghai Lu82ec90e2012-05-17 18:51:11 -0700934 if (!parent)
935 goto skip;
936
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 if ((start < parent->start) || (end > parent->end))
938 goto out;
939
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 if (res->sibling && (res->sibling->start <= end))
941 goto out;
942
943 tmp = parent->child;
944 if (tmp != res) {
945 while (tmp->sibling != res)
946 tmp = tmp->sibling;
947 if (start <= tmp->end)
948 goto out;
949 }
950
Yinghai Lu82ec90e2012-05-17 18:51:11 -0700951skip:
952 for (tmp = res->child; tmp; tmp = tmp->sibling)
953 if ((tmp->start < start) || (tmp->end > end))
954 goto out;
955
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 res->start = start;
957 res->end = end;
958 result = 0;
959
960 out:
Toshi Kaniae8e3a92013-04-29 15:08:17 -0700961 return result;
962}
963
964/**
965 * adjust_resource - modify a resource's start and size
966 * @res: resource to modify
967 * @start: new start value
968 * @size: new size
969 *
970 * Given an existing resource, change its start and size to match the
971 * arguments. Returns 0 on success, -EBUSY if it can't fit.
972 * Existing children of the resource are assumed to be immutable.
973 */
974int adjust_resource(struct resource *res, resource_size_t start,
975 resource_size_t size)
976{
977 int result;
978
979 write_lock(&resource_lock);
980 result = __adjust_resource(res, start, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 write_unlock(&resource_lock);
982 return result;
983}
Cong Wang24105742012-02-03 21:42:39 +0800984EXPORT_SYMBOL(adjust_resource);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985
Yinghai Lu268364a2008-09-04 21:02:44 +0200986static void __init __reserve_region_with_split(struct resource *root,
987 resource_size_t start, resource_size_t end,
988 const char *name)
989{
990 struct resource *parent = root;
991 struct resource *conflict;
Yasuaki Ishimatsuebff7d82013-04-29 15:08:56 -0700992 struct resource *res = alloc_resource(GFP_ATOMIC);
T Makphaibulchoke4965f562012-10-04 17:16:55 -0700993 struct resource *next_res = NULL;
Yinghai Lu268364a2008-09-04 21:02:44 +0200994
995 if (!res)
996 return;
997
998 res->name = name;
999 res->start = start;
1000 res->end = end;
1001 res->flags = IORESOURCE_BUSY;
Toshi Kani43ee4932016-01-26 21:57:19 +01001002 res->desc = IORES_DESC_NONE;
Yinghai Lu268364a2008-09-04 21:02:44 +02001003
T Makphaibulchoke4965f562012-10-04 17:16:55 -07001004 while (1) {
Yinghai Lu268364a2008-09-04 21:02:44 +02001005
T Makphaibulchoke4965f562012-10-04 17:16:55 -07001006 conflict = __request_resource(parent, res);
1007 if (!conflict) {
1008 if (!next_res)
1009 break;
1010 res = next_res;
1011 next_res = NULL;
1012 continue;
1013 }
Yinghai Lu268364a2008-09-04 21:02:44 +02001014
T Makphaibulchoke4965f562012-10-04 17:16:55 -07001015 /* conflict covered whole area */
1016 if (conflict->start <= res->start &&
1017 conflict->end >= res->end) {
Yasuaki Ishimatsuebff7d82013-04-29 15:08:56 -07001018 free_resource(res);
T Makphaibulchoke4965f562012-10-04 17:16:55 -07001019 WARN_ON(next_res);
1020 break;
1021 }
Yinghai Lu268364a2008-09-04 21:02:44 +02001022
T Makphaibulchoke4965f562012-10-04 17:16:55 -07001023 /* failed, split and try again */
1024 if (conflict->start > res->start) {
1025 end = res->end;
1026 res->end = conflict->start - 1;
1027 if (conflict->end < end) {
Yasuaki Ishimatsuebff7d82013-04-29 15:08:56 -07001028 next_res = alloc_resource(GFP_ATOMIC);
T Makphaibulchoke4965f562012-10-04 17:16:55 -07001029 if (!next_res) {
Yasuaki Ishimatsuebff7d82013-04-29 15:08:56 -07001030 free_resource(res);
T Makphaibulchoke4965f562012-10-04 17:16:55 -07001031 break;
1032 }
1033 next_res->name = name;
1034 next_res->start = conflict->end + 1;
1035 next_res->end = end;
1036 next_res->flags = IORESOURCE_BUSY;
Toshi Kani43ee4932016-01-26 21:57:19 +01001037 next_res->desc = IORES_DESC_NONE;
T Makphaibulchoke4965f562012-10-04 17:16:55 -07001038 }
1039 } else {
1040 res->start = conflict->end + 1;
1041 }
1042 }
1043
Yinghai Lu268364a2008-09-04 21:02:44 +02001044}
1045
Paul Mundtbea92112008-10-22 19:31:11 +09001046void __init reserve_region_with_split(struct resource *root,
Yinghai Lu268364a2008-09-04 21:02:44 +02001047 resource_size_t start, resource_size_t end,
1048 const char *name)
1049{
Octavian Purdila65fed8f2012-07-30 14:42:58 -07001050 int abort = 0;
1051
Yinghai Lu268364a2008-09-04 21:02:44 +02001052 write_lock(&resource_lock);
Octavian Purdila65fed8f2012-07-30 14:42:58 -07001053 if (root->start > start || root->end < end) {
1054 pr_err("requested range [0x%llx-0x%llx] not in root %pr\n",
1055 (unsigned long long)start, (unsigned long long)end,
1056 root);
1057 if (start > root->end || end < root->start)
1058 abort = 1;
1059 else {
1060 if (end > root->end)
1061 end = root->end;
1062 if (start < root->start)
1063 start = root->start;
1064 pr_err("fixing request to [0x%llx-0x%llx]\n",
1065 (unsigned long long)start,
1066 (unsigned long long)end);
1067 }
1068 dump_stack();
1069 }
1070 if (!abort)
1071 __reserve_region_with_split(root, start, end, name);
Yinghai Lu268364a2008-09-04 21:02:44 +02001072 write_unlock(&resource_lock);
1073}
1074
Ivan Kokshaysky88452562008-03-30 19:50:14 +04001075/**
1076 * resource_alignment - calculate resource's alignment
1077 * @res: resource pointer
1078 *
1079 * Returns alignment on success, 0 (invalid alignment) on failure.
1080 */
1081resource_size_t resource_alignment(struct resource *res)
1082{
1083 switch (res->flags & (IORESOURCE_SIZEALIGN | IORESOURCE_STARTALIGN)) {
1084 case IORESOURCE_SIZEALIGN:
Magnus Damm1a4e5642008-07-29 22:32:57 -07001085 return resource_size(res);
Ivan Kokshaysky88452562008-03-30 19:50:14 +04001086 case IORESOURCE_STARTALIGN:
1087 return res->start;
1088 default:
1089 return 0;
1090 }
1091}
1092
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093/*
1094 * This is compatibility stuff for IO resources.
1095 *
1096 * Note how this, unlike the above, knows about
1097 * the IO flag meanings (busy etc).
1098 *
Randy Dunlape1ca66d1b2006-10-03 01:13:51 -07001099 * request_region creates a new busy region.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 *
Randy Dunlape1ca66d1b2006-10-03 01:13:51 -07001101 * release_region releases a matching busy region.
1102 */
1103
Alan Cox8b6d0432010-03-29 19:38:00 +02001104static DECLARE_WAIT_QUEUE_HEAD(muxed_resource_wait);
1105
Randy Dunlape1ca66d1b2006-10-03 01:13:51 -07001106/**
1107 * __request_region - create a new busy resource region
1108 * @parent: parent resource descriptor
1109 * @start: resource start address
1110 * @n: resource region size
1111 * @name: reserving caller's ID string
Randy Dunlap6ae301e2009-01-15 13:51:01 -08001112 * @flags: IO resource flags
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 */
Greg Kroah-Hartmand75fc8b2006-06-12 16:09:23 -07001114struct resource * __request_region(struct resource *parent,
1115 resource_size_t start, resource_size_t n,
Arjan van de Vene8de1482008-10-22 19:55:31 -07001116 const char *name, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117{
Alan Cox8b6d0432010-03-29 19:38:00 +02001118 DECLARE_WAITQUEUE(wait, current);
Yasuaki Ishimatsuebff7d82013-04-29 15:08:56 -07001119 struct resource *res = alloc_resource(GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120
Bjorn Helgaasc26ec882008-10-15 22:05:14 -07001121 if (!res)
1122 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123
Bjorn Helgaasc26ec882008-10-15 22:05:14 -07001124 res->name = name;
1125 res->start = start;
1126 res->end = start + n - 1;
Toshi Kania3650d52016-01-26 21:57:18 +01001127 res->flags = resource_type(parent) | resource_ext_type(parent);
Bjorn Helgaas6404e882014-03-07 09:22:19 -07001128 res->flags |= IORESOURCE_BUSY | flags;
Toshi Kani43ee4932016-01-26 21:57:19 +01001129 res->desc = IORES_DESC_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130
Bjorn Helgaasc26ec882008-10-15 22:05:14 -07001131 write_lock(&resource_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132
Bjorn Helgaasc26ec882008-10-15 22:05:14 -07001133 for (;;) {
1134 struct resource *conflict;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135
Bjorn Helgaasc26ec882008-10-15 22:05:14 -07001136 conflict = __request_resource(parent, res);
1137 if (!conflict)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138 break;
Bjorn Helgaasc26ec882008-10-15 22:05:14 -07001139 if (conflict != parent) {
1140 parent = conflict;
1141 if (!(conflict->flags & IORESOURCE_BUSY))
1142 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143 }
Alan Cox8b6d0432010-03-29 19:38:00 +02001144 if (conflict->flags & flags & IORESOURCE_MUXED) {
1145 add_wait_queue(&muxed_resource_wait, &wait);
1146 write_unlock(&resource_lock);
1147 set_current_state(TASK_UNINTERRUPTIBLE);
1148 schedule();
1149 remove_wait_queue(&muxed_resource_wait, &wait);
1150 write_lock(&resource_lock);
1151 continue;
1152 }
Bjorn Helgaasc26ec882008-10-15 22:05:14 -07001153 /* Uhhuh, that didn't work out.. */
Yasuaki Ishimatsuebff7d82013-04-29 15:08:56 -07001154 free_resource(res);
Bjorn Helgaasc26ec882008-10-15 22:05:14 -07001155 res = NULL;
1156 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157 }
Bjorn Helgaasc26ec882008-10-15 22:05:14 -07001158 write_unlock(&resource_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 return res;
1160}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161EXPORT_SYMBOL(__request_region);
1162
Randy Dunlape1ca66d1b2006-10-03 01:13:51 -07001163/**
Randy Dunlape1ca66d1b2006-10-03 01:13:51 -07001164 * __release_region - release a previously reserved resource region
1165 * @parent: parent resource descriptor
1166 * @start: resource start address
1167 * @n: resource region size
1168 *
1169 * The described resource region must match a currently busy region.
1170 */
Greg Kroah-Hartmand75fc8b2006-06-12 16:09:23 -07001171void __release_region(struct resource *parent, resource_size_t start,
1172 resource_size_t n)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173{
1174 struct resource **p;
Greg Kroah-Hartmand75fc8b2006-06-12 16:09:23 -07001175 resource_size_t end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176
1177 p = &parent->child;
1178 end = start + n - 1;
1179
1180 write_lock(&resource_lock);
1181
1182 for (;;) {
1183 struct resource *res = *p;
1184
1185 if (!res)
1186 break;
1187 if (res->start <= start && res->end >= end) {
1188 if (!(res->flags & IORESOURCE_BUSY)) {
1189 p = &res->child;
1190 continue;
1191 }
1192 if (res->start != start || res->end != end)
1193 break;
1194 *p = res->sibling;
1195 write_unlock(&resource_lock);
Alan Cox8b6d0432010-03-29 19:38:00 +02001196 if (res->flags & IORESOURCE_MUXED)
1197 wake_up(&muxed_resource_wait);
Yasuaki Ishimatsuebff7d82013-04-29 15:08:56 -07001198 free_resource(res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199 return;
1200 }
1201 p = &res->sibling;
1202 }
1203
1204 write_unlock(&resource_lock);
1205
Greg Kroah-Hartman685143ac2006-06-12 15:18:31 -07001206 printk(KERN_WARNING "Trying to free nonexistent resource "
1207 "<%016llx-%016llx>\n", (unsigned long long)start,
1208 (unsigned long long)end);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210EXPORT_SYMBOL(__release_region);
1211
Toshi Kani825f7872013-04-29 15:08:19 -07001212#ifdef CONFIG_MEMORY_HOTREMOVE
1213/**
1214 * release_mem_region_adjustable - release a previously reserved memory region
1215 * @parent: parent resource descriptor
1216 * @start: resource start address
1217 * @size: resource region size
1218 *
1219 * This interface is intended for memory hot-delete. The requested region
1220 * is released from a currently busy memory resource. The requested region
1221 * must either match exactly or fit into a single busy resource entry. In
1222 * the latter case, the remaining resource is adjusted accordingly.
1223 * Existing children of the busy memory resource must be immutable in the
1224 * request.
1225 *
1226 * Note:
1227 * - Additional release conditions, such as overlapping region, can be
1228 * supported after they are confirmed as valid cases.
1229 * - When a busy memory resource gets split into two entries, the code
1230 * assumes that all children remain in the lower address entry for
1231 * simplicity. Enhance this logic when necessary.
1232 */
1233int release_mem_region_adjustable(struct resource *parent,
1234 resource_size_t start, resource_size_t size)
1235{
1236 struct resource **p;
1237 struct resource *res;
1238 struct resource *new_res;
1239 resource_size_t end;
1240 int ret = -EINVAL;
1241
1242 end = start + size - 1;
1243 if ((start < parent->start) || (end > parent->end))
1244 return ret;
1245
Yasuaki Ishimatsuebff7d82013-04-29 15:08:56 -07001246 /* The alloc_resource() result gets checked later */
1247 new_res = alloc_resource(GFP_KERNEL);
Toshi Kani825f7872013-04-29 15:08:19 -07001248
1249 p = &parent->child;
1250 write_lock(&resource_lock);
1251
1252 while ((res = *p)) {
1253 if (res->start >= end)
1254 break;
1255
1256 /* look for the next resource if it does not fit into */
1257 if (res->start > start || res->end < end) {
1258 p = &res->sibling;
1259 continue;
1260 }
1261
1262 if (!(res->flags & IORESOURCE_MEM))
1263 break;
1264
1265 if (!(res->flags & IORESOURCE_BUSY)) {
1266 p = &res->child;
1267 continue;
1268 }
1269
1270 /* found the target resource; let's adjust accordingly */
1271 if (res->start == start && res->end == end) {
1272 /* free the whole entry */
1273 *p = res->sibling;
Yasuaki Ishimatsuebff7d82013-04-29 15:08:56 -07001274 free_resource(res);
Toshi Kani825f7872013-04-29 15:08:19 -07001275 ret = 0;
1276 } else if (res->start == start && res->end != end) {
1277 /* adjust the start */
1278 ret = __adjust_resource(res, end + 1,
1279 res->end - end);
1280 } else if (res->start != start && res->end == end) {
1281 /* adjust the end */
1282 ret = __adjust_resource(res, res->start,
1283 start - res->start);
1284 } else {
1285 /* split into two entries */
1286 if (!new_res) {
1287 ret = -ENOMEM;
1288 break;
1289 }
1290 new_res->name = res->name;
1291 new_res->start = end + 1;
1292 new_res->end = res->end;
1293 new_res->flags = res->flags;
Toshi Kani43ee4932016-01-26 21:57:19 +01001294 new_res->desc = res->desc;
Toshi Kani825f7872013-04-29 15:08:19 -07001295 new_res->parent = res->parent;
1296 new_res->sibling = res->sibling;
1297 new_res->child = NULL;
1298
1299 ret = __adjust_resource(res, res->start,
1300 start - res->start);
1301 if (ret)
1302 break;
1303 res->sibling = new_res;
1304 new_res = NULL;
1305 }
1306
1307 break;
1308 }
1309
1310 write_unlock(&resource_lock);
Yasuaki Ishimatsuebff7d82013-04-29 15:08:56 -07001311 free_resource(new_res);
Toshi Kani825f7872013-04-29 15:08:19 -07001312 return ret;
1313}
1314#endif /* CONFIG_MEMORY_HOTREMOVE */
1315
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316/*
Tejun Heo9ac78492007-01-20 16:00:26 +09001317 * Managed region resource
1318 */
Thierry Reding8d388212014-08-01 14:15:10 +02001319static void devm_resource_release(struct device *dev, void *ptr)
1320{
1321 struct resource **r = ptr;
1322
1323 release_resource(*r);
1324}
1325
1326/**
1327 * devm_request_resource() - request and reserve an I/O or memory resource
1328 * @dev: device for which to request the resource
1329 * @root: root of the resource tree from which to request the resource
1330 * @new: descriptor of the resource to request
1331 *
1332 * This is a device-managed version of request_resource(). There is usually
1333 * no need to release resources requested by this function explicitly since
1334 * that will be taken care of when the device is unbound from its driver.
1335 * If for some reason the resource needs to be released explicitly, because
1336 * of ordering issues for example, drivers must call devm_release_resource()
1337 * rather than the regular release_resource().
1338 *
1339 * When a conflict is detected between any existing resources and the newly
1340 * requested resource, an error message will be printed.
1341 *
1342 * Returns 0 on success or a negative error code on failure.
1343 */
1344int devm_request_resource(struct device *dev, struct resource *root,
1345 struct resource *new)
1346{
1347 struct resource *conflict, **ptr;
1348
1349 ptr = devres_alloc(devm_resource_release, sizeof(*ptr), GFP_KERNEL);
1350 if (!ptr)
1351 return -ENOMEM;
1352
1353 *ptr = new;
1354
1355 conflict = request_resource_conflict(root, new);
1356 if (conflict) {
1357 dev_err(dev, "resource collision: %pR conflicts with %s %pR\n",
1358 new, conflict->name, conflict);
1359 devres_free(ptr);
1360 return -EBUSY;
1361 }
1362
1363 devres_add(dev, ptr);
1364 return 0;
1365}
1366EXPORT_SYMBOL(devm_request_resource);
1367
1368static int devm_resource_match(struct device *dev, void *res, void *data)
1369{
1370 struct resource **ptr = res;
1371
1372 return *ptr == data;
1373}
1374
1375/**
1376 * devm_release_resource() - release a previously requested resource
1377 * @dev: device for which to release the resource
1378 * @new: descriptor of the resource to release
1379 *
1380 * Releases a resource previously requested using devm_request_resource().
1381 */
1382void devm_release_resource(struct device *dev, struct resource *new)
1383{
1384 WARN_ON(devres_release(dev, devm_resource_release, devm_resource_match,
1385 new));
1386}
1387EXPORT_SYMBOL(devm_release_resource);
1388
Tejun Heo9ac78492007-01-20 16:00:26 +09001389struct region_devres {
1390 struct resource *parent;
1391 resource_size_t start;
1392 resource_size_t n;
1393};
1394
1395static void devm_region_release(struct device *dev, void *res)
1396{
1397 struct region_devres *this = res;
1398
1399 __release_region(this->parent, this->start, this->n);
1400}
1401
1402static int devm_region_match(struct device *dev, void *res, void *match_data)
1403{
1404 struct region_devres *this = res, *match = match_data;
1405
1406 return this->parent == match->parent &&
1407 this->start == match->start && this->n == match->n;
1408}
1409
1410struct resource * __devm_request_region(struct device *dev,
1411 struct resource *parent, resource_size_t start,
1412 resource_size_t n, const char *name)
1413{
1414 struct region_devres *dr = NULL;
1415 struct resource *res;
1416
1417 dr = devres_alloc(devm_region_release, sizeof(struct region_devres),
1418 GFP_KERNEL);
1419 if (!dr)
1420 return NULL;
1421
1422 dr->parent = parent;
1423 dr->start = start;
1424 dr->n = n;
1425
Arjan van de Vene8de1482008-10-22 19:55:31 -07001426 res = __request_region(parent, start, n, name, 0);
Tejun Heo9ac78492007-01-20 16:00:26 +09001427 if (res)
1428 devres_add(dev, dr);
1429 else
1430 devres_free(dr);
1431
1432 return res;
1433}
1434EXPORT_SYMBOL(__devm_request_region);
1435
1436void __devm_release_region(struct device *dev, struct resource *parent,
1437 resource_size_t start, resource_size_t n)
1438{
1439 struct region_devres match_data = { parent, start, n };
1440
1441 __release_region(parent, start, n);
1442 WARN_ON(devres_destroy(dev, devm_region_release, devm_region_match,
1443 &match_data));
1444}
1445EXPORT_SYMBOL(__devm_release_region);
1446
1447/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448 * Called from init/main.c to reserve IO ports.
1449 */
1450#define MAXRESERVE 4
1451static int __init reserve_setup(char *str)
1452{
1453 static int reserved;
1454 static struct resource reserve[MAXRESERVE];
1455
1456 for (;;) {
Zhang Rui8bc1ad72009-06-30 11:41:31 -07001457 unsigned int io_start, io_num;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458 int x = reserved;
1459
1460 if (get_option (&str, &io_start) != 2)
1461 break;
1462 if (get_option (&str, &io_num) == 0)
1463 break;
1464 if (x < MAXRESERVE) {
1465 struct resource *res = reserve + x;
1466 res->name = "reserved";
1467 res->start = io_start;
1468 res->end = io_start + io_num - 1;
1469 res->flags = IORESOURCE_BUSY;
Toshi Kani43ee4932016-01-26 21:57:19 +01001470 res->desc = IORES_DESC_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471 res->child = NULL;
1472 if (request_resource(res->start >= 0x10000 ? &iomem_resource : &ioport_resource, res) == 0)
1473 reserved = x+1;
1474 }
1475 }
1476 return 1;
1477}
1478
1479__setup("reserve=", reserve_setup);
Suresh Siddha379daf62008-09-25 18:43:34 -07001480
1481/*
1482 * Check if the requested addr and size spans more than any slot in the
1483 * iomem resource tree.
1484 */
1485int iomem_map_sanity_check(resource_size_t addr, unsigned long size)
1486{
1487 struct resource *p = &iomem_resource;
1488 int err = 0;
1489 loff_t l;
1490
1491 read_lock(&resource_lock);
1492 for (p = p->child; p ; p = r_next(NULL, p, &l)) {
1493 /*
1494 * We can probably skip the resources without
1495 * IORESOURCE_IO attribute?
1496 */
1497 if (p->start >= addr + size)
1498 continue;
1499 if (p->end < addr)
1500 continue;
Suresh Siddhad68612b2008-10-28 11:45:42 -07001501 if (PFN_DOWN(p->start) <= PFN_DOWN(addr) &&
1502 PFN_DOWN(p->end) >= PFN_DOWN(addr + size - 1))
Suresh Siddha379daf62008-09-25 18:43:34 -07001503 continue;
Arjan van de Ven3ac52662008-12-13 09:15:27 -08001504 /*
1505 * if a resource is "BUSY", it's not a hardware resource
1506 * but a driver mapping of such a resource; we don't want
1507 * to warn for those; some drivers legitimately map only
1508 * partial hardware resources. (example: vesafb)
1509 */
1510 if (p->flags & IORESOURCE_BUSY)
1511 continue;
1512
Bjorn Helgaase4c72962014-04-14 15:38:11 -06001513 printk(KERN_WARNING "resource sanity check: requesting [mem %#010llx-%#010llx], which spans more than %s %pR\n",
Ingo Molnar13eb8372008-09-26 10:10:12 +02001514 (unsigned long long)addr,
1515 (unsigned long long)(addr + size - 1),
Bjorn Helgaase4c72962014-04-14 15:38:11 -06001516 p->name, p);
Suresh Siddha379daf62008-09-25 18:43:34 -07001517 err = -1;
1518 break;
1519 }
1520 read_unlock(&resource_lock);
1521
1522 return err;
1523}
Arjan van de Vene8de1482008-10-22 19:55:31 -07001524
1525#ifdef CONFIG_STRICT_DEVMEM
1526static int strict_iomem_checks = 1;
1527#else
1528static int strict_iomem_checks;
1529#endif
1530
1531/*
1532 * check if an address is reserved in the iomem resource tree
1533 * returns 1 if reserved, 0 if not reserved.
1534 */
1535int iomem_is_exclusive(u64 addr)
1536{
1537 struct resource *p = &iomem_resource;
1538 int err = 0;
1539 loff_t l;
1540 int size = PAGE_SIZE;
1541
1542 if (!strict_iomem_checks)
1543 return 0;
1544
1545 addr = addr & PAGE_MASK;
1546
1547 read_lock(&resource_lock);
1548 for (p = p->child; p ; p = r_next(NULL, p, &l)) {
1549 /*
1550 * We can probably skip the resources without
1551 * IORESOURCE_IO attribute?
1552 */
1553 if (p->start >= addr + size)
1554 break;
1555 if (p->end < addr)
1556 continue;
Dan Williams90a545e2015-11-23 15:49:03 -08001557 /*
1558 * A resource is exclusive if IORESOURCE_EXCLUSIVE is set
1559 * or CONFIG_IO_STRICT_DEVMEM is enabled and the
1560 * resource is busy.
1561 */
1562 if ((p->flags & IORESOURCE_BUSY) == 0)
1563 continue;
1564 if (IS_ENABLED(CONFIG_IO_STRICT_DEVMEM)
1565 || p->flags & IORESOURCE_EXCLUSIVE) {
Arjan van de Vene8de1482008-10-22 19:55:31 -07001566 err = 1;
1567 break;
1568 }
1569 }
1570 read_unlock(&resource_lock);
1571
1572 return err;
1573}
1574
Jiang Liu90e97822015-02-05 13:44:43 +08001575struct resource_entry *resource_list_create_entry(struct resource *res,
1576 size_t extra_size)
1577{
1578 struct resource_entry *entry;
1579
1580 entry = kzalloc(sizeof(*entry) + extra_size, GFP_KERNEL);
1581 if (entry) {
1582 INIT_LIST_HEAD(&entry->node);
1583 entry->res = res ? res : &entry->__res;
1584 }
1585
1586 return entry;
1587}
1588EXPORT_SYMBOL(resource_list_create_entry);
1589
1590void resource_list_free(struct list_head *head)
1591{
1592 struct resource_entry *entry, *tmp;
1593
1594 list_for_each_entry_safe(entry, tmp, head, node)
1595 resource_list_destroy_entry(entry);
1596}
1597EXPORT_SYMBOL(resource_list_free);
1598
Arjan van de Vene8de1482008-10-22 19:55:31 -07001599static int __init strict_iomem(char *str)
1600{
1601 if (strstr(str, "relaxed"))
1602 strict_iomem_checks = 0;
1603 if (strstr(str, "strict"))
1604 strict_iomem_checks = 1;
1605 return 1;
1606}
1607
1608__setup("iomem=", strict_iomem);