blob: 5a56e8f24058961b499d7da21de80dedf8071709 [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
Toshi Kania8fc4252016-01-26 21:57:32 +0100338 * desc. If found, returns 0, res is overwritten, if not found, returns -1.
Toshi Kani3f336472016-01-26 21:57:29 +0100339 * This function walks the whole tree and not just first level children until
340 * and unless first_level_children_only is true.
KAMEZAWA Hiroyuki2842f112006-06-27 02:53:36 -0700341 */
Toshi Kani3f336472016-01-26 21:57:29 +0100342static int find_next_iomem_res(struct resource *res, unsigned long desc,
Toshi Kania8fc4252016-01-26 21:57:32 +0100343 bool first_level_children_only)
KAMEZAWA Hiroyuki2842f112006-06-27 02:53:36 -0700344{
345 resource_size_t start, end;
346 struct resource *p;
Vivek Goyal8c86e702014-08-08 14:25:50 -0700347 bool sibling_only = false;
KAMEZAWA Hiroyuki2842f112006-06-27 02:53:36 -0700348
349 BUG_ON(!res);
350
351 start = res->start;
352 end = res->end;
KAMEZAWA Hiroyuki58c1b5b2006-08-05 12:15:01 -0700353 BUG_ON(start >= end);
KAMEZAWA Hiroyuki2842f112006-06-27 02:53:36 -0700354
Vivek Goyal800df622014-08-29 15:18:29 -0700355 if (first_level_children_only)
356 sibling_only = true;
357
KAMEZAWA Hiroyuki2842f112006-06-27 02:53:36 -0700358 read_lock(&resource_lock);
Vivek Goyal8c86e702014-08-08 14:25:50 -0700359
Vivek Goyal800df622014-08-29 15:18:29 -0700360 for (p = iomem_resource.child; p; p = next_resource(p, sibling_only)) {
Toshi Kania3650d52016-01-26 21:57:18 +0100361 if ((p->flags & res->flags) != res->flags)
KAMEZAWA Hiroyuki2842f112006-06-27 02:53:36 -0700362 continue;
Toshi Kani3f336472016-01-26 21:57:29 +0100363 if ((desc != IORES_DESC_NONE) && (desc != p->desc))
364 continue;
KAMEZAWA Hiroyuki2842f112006-06-27 02:53:36 -0700365 if (p->start > end) {
366 p = NULL;
367 break;
368 }
KAMEZAWA Hiroyuki58c1b5b2006-08-05 12:15:01 -0700369 if ((p->end >= start) && (p->start < end))
KAMEZAWA Hiroyuki2842f112006-06-27 02:53:36 -0700370 break;
371 }
Vivek Goyal8c86e702014-08-08 14:25:50 -0700372
KAMEZAWA Hiroyuki2842f112006-06-27 02:53:36 -0700373 read_unlock(&resource_lock);
374 if (!p)
375 return -1;
376 /* copy data */
KAMEZAWA Hiroyuki0f04ab52006-08-05 12:14:59 -0700377 if (res->start < p->start)
378 res->start = p->start;
379 if (res->end > p->end)
380 res->end = p->end;
KAMEZAWA Hiroyuki2842f112006-06-27 02:53:36 -0700381 return 0;
382}
KAMEZAWA Hiroyuki908eedc2009-09-22 16:45:46 -0700383
384/*
Vivek Goyal8c86e702014-08-08 14:25:50 -0700385 * Walks through iomem resources and calls func() with matching resource
386 * ranges. This walks through whole tree and not just first level children.
387 * All the memory ranges which overlap start,end and also match flags and
Toshi Kani3f336472016-01-26 21:57:29 +0100388 * desc are valid candidates.
389 *
390 * @desc: I/O resource descriptor. Use IORES_DESC_NONE to skip @desc check.
391 * @flags: I/O resource flags
392 * @start: start addr
393 * @end: end addr
394 *
395 * NOTE: For a new descriptor search, define a new IORES_DESC in
396 * <linux/ioport.h> and set it in 'desc' of a target resource entry.
397 */
398int walk_iomem_res_desc(unsigned long desc, unsigned long flags, u64 start,
399 u64 end, void *arg, int (*func)(u64, u64, void *))
400{
401 struct resource res;
402 u64 orig_end;
403 int ret = -1;
404
405 res.start = start;
406 res.end = end;
407 res.flags = flags;
408 orig_end = res.end;
409
410 while ((res.start < res.end) &&
Toshi Kania8fc4252016-01-26 21:57:32 +0100411 (!find_next_iomem_res(&res, desc, false))) {
Toshi Kani3f336472016-01-26 21:57:29 +0100412
413 ret = (*func)(res.start, res.end, arg);
414 if (ret)
415 break;
416
417 res.start = res.end + 1;
418 res.end = orig_end;
419 }
420
421 return ret;
422}
423
424/*
Toshi Kanibd7e6cb2016-01-26 21:57:26 +0100425 * This function calls the @func callback against all memory ranges of type
426 * System RAM which are marked as IORESOURCE_SYSTEM_RAM and IORESOUCE_BUSY.
427 * Now, this function is only for System RAM, it deals with full ranges and
428 * not PFNs. If resources are not PFN-aligned, dealing with PFNs can truncate
429 * ranges.
Vivek Goyal8c86e702014-08-08 14:25:50 -0700430 */
431int walk_system_ram_res(u64 start, u64 end, void *arg,
432 int (*func)(u64, u64, void *))
433{
434 struct resource res;
435 u64 orig_end;
436 int ret = -1;
437
438 res.start = start;
439 res.end = end;
Toshi Kanibd7e6cb2016-01-26 21:57:26 +0100440 res.flags = IORESOURCE_SYSTEM_RAM | IORESOURCE_BUSY;
Vivek Goyal8c86e702014-08-08 14:25:50 -0700441 orig_end = res.end;
442 while ((res.start < res.end) &&
Toshi Kania8fc4252016-01-26 21:57:32 +0100443 (!find_next_iomem_res(&res, IORES_DESC_NONE, true))) {
Vivek Goyal8c86e702014-08-08 14:25:50 -0700444 ret = (*func)(res.start, res.end, arg);
445 if (ret)
446 break;
447 res.start = res.end + 1;
448 res.end = orig_end;
449 }
450 return ret;
451}
452
453#if !defined(CONFIG_ARCH_HAS_WALK_MEMORY)
454
455/*
Toshi Kanibd7e6cb2016-01-26 21:57:26 +0100456 * This function calls the @func callback against all memory ranges of type
457 * System RAM which are marked as IORESOURCE_SYSTEM_RAM and IORESOUCE_BUSY.
458 * It is to be used only for System RAM.
KAMEZAWA Hiroyuki908eedc2009-09-22 16:45:46 -0700459 */
460int walk_system_ram_range(unsigned long start_pfn, unsigned long nr_pages,
461 void *arg, int (*func)(unsigned long, unsigned long, void *))
KAMEZAWA Hiroyuki75884fb2007-10-16 01:26:10 -0700462{
463 struct resource res;
Wu Fengguang37b99dd2010-03-01 21:55:51 +0800464 unsigned long pfn, end_pfn;
KAMEZAWA Hiroyuki75884fb2007-10-16 01:26:10 -0700465 u64 orig_end;
466 int ret = -1;
KAMEZAWA Hiroyuki908eedc2009-09-22 16:45:46 -0700467
KAMEZAWA Hiroyuki75884fb2007-10-16 01:26:10 -0700468 res.start = (u64) start_pfn << PAGE_SHIFT;
469 res.end = ((u64)(start_pfn + nr_pages) << PAGE_SHIFT) - 1;
Toshi Kanibd7e6cb2016-01-26 21:57:26 +0100470 res.flags = IORESOURCE_SYSTEM_RAM | IORESOURCE_BUSY;
KAMEZAWA Hiroyuki75884fb2007-10-16 01:26:10 -0700471 orig_end = res.end;
KAMEZAWA Hiroyuki908eedc2009-09-22 16:45:46 -0700472 while ((res.start < res.end) &&
Toshi Kania8fc4252016-01-26 21:57:32 +0100473 (find_next_iomem_res(&res, IORES_DESC_NONE, true) >= 0)) {
Wu Fengguang37b99dd2010-03-01 21:55:51 +0800474 pfn = (res.start + PAGE_SIZE - 1) >> PAGE_SHIFT;
475 end_pfn = (res.end + 1) >> PAGE_SHIFT;
476 if (end_pfn > pfn)
H. Peter Anvinf4149662010-03-02 11:21:09 -0800477 ret = (*func)(pfn, end_pfn - pfn, arg);
KAMEZAWA Hiroyuki75884fb2007-10-16 01:26:10 -0700478 if (ret)
479 break;
480 res.start = res.end + 1;
481 res.end = orig_end;
482 }
483 return ret;
484}
485
KAMEZAWA Hiroyuki2842f112006-06-27 02:53:36 -0700486#endif
487
Wu Fengguang61ef2482010-01-22 16:16:19 +0800488static int __is_ram(unsigned long pfn, unsigned long nr_pages, void *arg)
489{
490 return 1;
491}
492/*
493 * This generic page_is_ram() returns true if specified address is
Toshi Kanibd7e6cb2016-01-26 21:57:26 +0100494 * registered as System RAM in iomem_resource list.
Wu Fengguang61ef2482010-01-22 16:16:19 +0800495 */
Andrew Mortone5273002010-01-26 16:31:19 -0800496int __weak page_is_ram(unsigned long pfn)
Wu Fengguang61ef2482010-01-22 16:16:19 +0800497{
498 return walk_system_ram_range(pfn, 1, NULL, __is_ram) == 1;
499}
Chen Gongc5a13032013-06-06 15:20:51 -0700500EXPORT_SYMBOL_GPL(page_is_ram);
Wu Fengguang61ef2482010-01-22 16:16:19 +0800501
Dan Williams124fe202015-08-10 23:07:05 -0400502/**
503 * region_intersects() - determine intersection of region with known resources
504 * @start: region start address
505 * @size: size of region
Toshi Kani1c29f252016-01-26 21:57:28 +0100506 * @flags: flags of resource (in iomem_resource)
507 * @desc: descriptor of resource (in iomem_resource) or IORES_DESC_NONE
Mike Travis67cf13c2014-10-13 15:54:03 -0700508 *
Dan Williams124fe202015-08-10 23:07:05 -0400509 * Check if the specified region partially overlaps or fully eclipses a
Toshi Kani1c29f252016-01-26 21:57:28 +0100510 * resource identified by @flags and @desc (optional with IORES_DESC_NONE).
511 * Return REGION_DISJOINT if the region does not overlap @flags/@desc,
512 * return REGION_MIXED if the region overlaps @flags/@desc and another
513 * resource, and return REGION_INTERSECTS if the region overlaps @flags/@desc
514 * and no other defined resource. Note that REGION_INTERSECTS is also
515 * returned in the case when the specified region overlaps RAM and undefined
516 * memory holes.
Dan Williams124fe202015-08-10 23:07:05 -0400517 *
518 * region_intersect() is used by memory remapping functions to ensure
519 * the user is not remapping RAM and is a vast speed up over walking
520 * through the resource table page by page.
Mike Travis67cf13c2014-10-13 15:54:03 -0700521 */
Toshi Kani1c29f252016-01-26 21:57:28 +0100522int region_intersects(resource_size_t start, size_t size, unsigned long flags,
523 unsigned long desc)
Mike Travis67cf13c2014-10-13 15:54:03 -0700524{
Dan Williams124fe202015-08-10 23:07:05 -0400525 resource_size_t end = start + size - 1;
526 int type = 0; int other = 0;
527 struct resource *p;
Mike Travis67cf13c2014-10-13 15:54:03 -0700528
529 read_lock(&resource_lock);
530 for (p = iomem_resource.child; p ; p = p->sibling) {
Toshi Kani1c29f252016-01-26 21:57:28 +0100531 bool is_type = (((p->flags & flags) == flags) &&
532 ((desc == IORES_DESC_NONE) ||
533 (desc == p->desc)));
Mike Travis67cf13c2014-10-13 15:54:03 -0700534
Dan Williams124fe202015-08-10 23:07:05 -0400535 if (start >= p->start && start <= p->end)
536 is_type ? type++ : other++;
537 if (end >= p->start && end <= p->end)
538 is_type ? type++ : other++;
539 if (p->start >= start && p->end <= end)
540 is_type ? type++ : other++;
Mike Travis67cf13c2014-10-13 15:54:03 -0700541 }
542 read_unlock(&resource_lock);
Dan Williams124fe202015-08-10 23:07:05 -0400543
544 if (other == 0)
545 return type ? REGION_INTERSECTS : REGION_DISJOINT;
546
547 if (type)
548 return REGION_MIXED;
549
550 return REGION_DISJOINT;
Mike Travis67cf13c2014-10-13 15:54:03 -0700551}
Toshi Kani1c29f252016-01-26 21:57:28 +0100552EXPORT_SYMBOL_GPL(region_intersects);
Mike Travis67cf13c2014-10-13 15:54:03 -0700553
Bjorn Helgaasfcb11912010-12-16 10:38:46 -0700554void __weak arch_remove_reservations(struct resource *avail)
555{
556}
557
Bjorn Helgaasa9cea012010-10-26 15:41:13 -0600558static resource_size_t simple_align_resource(void *data,
559 const struct resource *avail,
560 resource_size_t size,
561 resource_size_t align)
562{
563 return avail->start;
564}
565
Bjorn Helgaas5d6b1fa2010-10-26 15:41:18 -0600566static void resource_clip(struct resource *res, resource_size_t min,
567 resource_size_t max)
568{
569 if (res->start < min)
570 res->start = min;
571 if (res->end > max)
572 res->end = max;
573}
574
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575/*
Ram Pai23c570a2011-07-05 23:44:30 -0700576 * Find empty slot in the resource tree with the given range and
577 * alignment constraints
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 */
Ram Pai23c570a2011-07-05 23:44:30 -0700579static int __find_resource(struct resource *root, struct resource *old,
580 struct resource *new,
581 resource_size_t size,
582 struct resource_constraint *constraint)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583{
584 struct resource *this = root->child;
Bjorn Helgaasa1862e32010-10-26 15:41:28 -0600585 struct resource tmp = *new, avail, alloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586
Dominik Brodowski0e2c8b82009-12-20 10:50:02 +0100587 tmp.start = root->start;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 /*
Bjorn Helgaasc0f5ac542010-12-16 10:38:41 -0700589 * Skip past an allocated resource that starts at 0, since the assignment
590 * of this->start - 1 to tmp->end below would cause an underflow.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 */
Ram Pai23c570a2011-07-05 23:44:30 -0700592 if (this && this->start == root->start) {
593 tmp.start = (this == old) ? old->start : this->end + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 this = this->sibling;
595 }
Bjorn Helgaasc0f5ac542010-12-16 10:38:41 -0700596 for(;;) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 if (this)
Ram Pai23c570a2011-07-05 23:44:30 -0700598 tmp.end = (this == old) ? this->end : this->start - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 else
Dominik Brodowski0e2c8b82009-12-20 10:50:02 +0100600 tmp.end = root->end;
Bjorn Helgaas5d6b1fa2010-10-26 15:41:18 -0600601
Ram Pai47ea91b2011-09-22 15:48:58 +0800602 if (tmp.end < tmp.start)
603 goto next;
604
Ram Pai23c570a2011-07-05 23:44:30 -0700605 resource_clip(&tmp, constraint->min, constraint->max);
Bjorn Helgaasfcb11912010-12-16 10:38:46 -0700606 arch_remove_reservations(&tmp);
Bjorn Helgaasa9cea012010-10-26 15:41:13 -0600607
Bjorn Helgaasa1862e32010-10-26 15:41:28 -0600608 /* Check for overflow after ALIGN() */
Ram Pai23c570a2011-07-05 23:44:30 -0700609 avail.start = ALIGN(tmp.start, constraint->align);
Bjorn Helgaasa1862e32010-10-26 15:41:28 -0600610 avail.end = tmp.end;
Bjorn Helgaas5edb93b2014-02-04 19:32:28 -0800611 avail.flags = new->flags & ~IORESOURCE_UNSET;
Bjorn Helgaasa1862e32010-10-26 15:41:28 -0600612 if (avail.start >= tmp.start) {
Bjorn Helgaas5edb93b2014-02-04 19:32:28 -0800613 alloc.flags = avail.flags;
Ram Pai23c570a2011-07-05 23:44:30 -0700614 alloc.start = constraint->alignf(constraint->alignf_data, &avail,
615 size, constraint->align);
Bjorn Helgaasa1862e32010-10-26 15:41:28 -0600616 alloc.end = alloc.start + size - 1;
617 if (resource_contains(&avail, &alloc)) {
618 new->start = alloc.start;
619 new->end = alloc.end;
620 return 0;
621 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 }
Ram Pai47ea91b2011-09-22 15:48:58 +0800623
624next: if (!this || this->end == root->end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 break;
Ram Pai47ea91b2011-09-22 15:48:58 +0800626
Ram Pai23c570a2011-07-05 23:44:30 -0700627 if (this != old)
628 tmp.start = this->end + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 this = this->sibling;
630 }
631 return -EBUSY;
632}
633
Ram Pai23c570a2011-07-05 23:44:30 -0700634/*
635 * Find empty slot in the resource tree given range and alignment.
636 */
637static int find_resource(struct resource *root, struct resource *new,
638 resource_size_t size,
639 struct resource_constraint *constraint)
640{
641 return __find_resource(root, NULL, new, size, constraint);
642}
643
Randy Dunlape1ca66d1b2006-10-03 01:13:51 -0700644/**
Ram Pai23c570a2011-07-05 23:44:30 -0700645 * reallocate_resource - allocate a slot in the resource tree given range & alignment.
646 * The resource will be relocated if the new size cannot be reallocated in the
647 * current location.
648 *
649 * @root: root resource descriptor
650 * @old: resource descriptor desired by caller
651 * @newsize: new size of the resource descriptor
652 * @constraint: the size and alignment constraints to be met.
653 */
Daeseok Youn28ab49f2014-04-03 14:48:36 -0700654static int reallocate_resource(struct resource *root, struct resource *old,
Ram Pai23c570a2011-07-05 23:44:30 -0700655 resource_size_t newsize,
656 struct resource_constraint *constraint)
657{
658 int err=0;
659 struct resource new = *old;
660 struct resource *conflict;
661
662 write_lock(&resource_lock);
663
664 if ((err = __find_resource(root, old, &new, newsize, constraint)))
665 goto out;
666
667 if (resource_contains(&new, old)) {
668 old->start = new.start;
669 old->end = new.end;
670 goto out;
671 }
672
673 if (old->child) {
674 err = -EBUSY;
675 goto out;
676 }
677
678 if (resource_contains(old, &new)) {
679 old->start = new.start;
680 old->end = new.end;
681 } else {
682 __release_resource(old);
683 *old = new;
684 conflict = __request_resource(root, old);
685 BUG_ON(conflict);
686 }
687out:
688 write_unlock(&resource_lock);
689 return err;
690}
691
692
693/**
694 * allocate_resource - allocate empty slot in the resource tree given range & alignment.
695 * The resource will be reallocated with a new size if it was already allocated
Randy Dunlape1ca66d1b2006-10-03 01:13:51 -0700696 * @root: root resource descriptor
697 * @new: resource descriptor desired by caller
698 * @size: requested resource region size
Wei Yangee5e5682012-05-31 16:26:05 -0700699 * @min: minimum boundary to allocate
700 * @max: maximum boundary to allocate
Randy Dunlape1ca66d1b2006-10-03 01:13:51 -0700701 * @align: alignment requested, in bytes
702 * @alignf: alignment function, optional, called if not NULL
703 * @alignf_data: arbitrary data to pass to the @alignf function
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 */
705int allocate_resource(struct resource *root, struct resource *new,
Greg Kroah-Hartmand75fc8b2006-06-12 16:09:23 -0700706 resource_size_t size, resource_size_t min,
707 resource_size_t max, resource_size_t align,
Dominik Brodowskib26b2d42010-01-01 17:40:49 +0100708 resource_size_t (*alignf)(void *,
Dominik Brodowski3b7a17f2010-01-01 17:40:50 +0100709 const struct resource *,
Dominik Brodowskib26b2d42010-01-01 17:40:49 +0100710 resource_size_t,
711 resource_size_t),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 void *alignf_data)
713{
714 int err;
Ram Pai23c570a2011-07-05 23:44:30 -0700715 struct resource_constraint constraint;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716
Bjorn Helgaasa9cea012010-10-26 15:41:13 -0600717 if (!alignf)
718 alignf = simple_align_resource;
719
Ram Pai23c570a2011-07-05 23:44:30 -0700720 constraint.min = min;
721 constraint.max = max;
722 constraint.align = align;
723 constraint.alignf = alignf;
724 constraint.alignf_data = alignf_data;
725
726 if ( new->parent ) {
727 /* resource is already allocated, try reallocating with
728 the new constraints */
729 return reallocate_resource(root, new, size, &constraint);
730 }
731
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 write_lock(&resource_lock);
Ram Pai23c570a2011-07-05 23:44:30 -0700733 err = find_resource(root, new, size, &constraint);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 if (err >= 0 && __request_resource(root, new))
735 err = -EBUSY;
736 write_unlock(&resource_lock);
737 return err;
738}
739
740EXPORT_SYMBOL(allocate_resource);
741
Geert Uytterhoeven1c388912011-05-07 20:53:16 +0200742/**
743 * lookup_resource - find an existing resource by a resource start address
744 * @root: root resource descriptor
745 * @start: resource start address
746 *
747 * Returns a pointer to the resource if found, NULL otherwise
748 */
749struct resource *lookup_resource(struct resource *root, resource_size_t start)
750{
751 struct resource *res;
752
753 read_lock(&resource_lock);
754 for (res = root->child; res; res = res->sibling) {
755 if (res->start == start)
756 break;
757 }
758 read_unlock(&resource_lock);
759
760 return res;
761}
762
Linus Torvaldsbef69ea2008-08-29 20:18:31 -0700763/*
764 * Insert a resource into the resource tree. If successful, return NULL,
765 * otherwise return the conflicting resource (compare to __request_resource())
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 */
Linus Torvaldsbef69ea2008-08-29 20:18:31 -0700767static struct resource * __insert_resource(struct resource *parent, struct resource *new)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 struct resource *first, *next;
770
Matthew Wilcoxd33b6fb2006-06-30 02:31:24 -0700771 for (;; parent = first) {
Matthew Wilcoxd33b6fb2006-06-30 02:31:24 -0700772 first = __request_resource(parent, new);
773 if (!first)
Linus Torvaldsbef69ea2008-08-29 20:18:31 -0700774 return first;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775
Matthew Wilcoxd33b6fb2006-06-30 02:31:24 -0700776 if (first == parent)
Linus Torvaldsbef69ea2008-08-29 20:18:31 -0700777 return first;
Huang Shijie5de1cb22010-10-27 15:34:52 -0700778 if (WARN_ON(first == new)) /* duplicated insertion */
779 return first;
Matthew Wilcoxd33b6fb2006-06-30 02:31:24 -0700780
781 if ((first->start > new->start) || (first->end < new->end))
782 break;
783 if ((first->start == new->start) && (first->end == new->end))
784 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 }
786
787 for (next = first; ; next = next->sibling) {
788 /* Partial overlap? Bad, and unfixable */
789 if (next->start < new->start || next->end > new->end)
Linus Torvaldsbef69ea2008-08-29 20:18:31 -0700790 return next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 if (!next->sibling)
792 break;
793 if (next->sibling->start > new->end)
794 break;
795 }
796
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 new->parent = parent;
798 new->sibling = next->sibling;
799 new->child = first;
800
801 next->sibling = NULL;
802 for (next = first; next; next = next->sibling)
803 next->parent = new;
804
805 if (parent->child == first) {
806 parent->child = new;
807 } else {
808 next = parent->child;
809 while (next->sibling != first)
810 next = next->sibling;
811 next->sibling = new;
812 }
Linus Torvaldsbef69ea2008-08-29 20:18:31 -0700813 return NULL;
814}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815
Linus Torvaldsbef69ea2008-08-29 20:18:31 -0700816/**
Bjorn Helgaas66f12072010-03-11 17:01:09 -0700817 * insert_resource_conflict - Inserts resource in the resource tree
Linus Torvaldsbef69ea2008-08-29 20:18:31 -0700818 * @parent: parent of the new resource
819 * @new: new resource to insert
820 *
Bjorn Helgaas66f12072010-03-11 17:01:09 -0700821 * Returns 0 on success, conflict resource if the resource can't be inserted.
Linus Torvaldsbef69ea2008-08-29 20:18:31 -0700822 *
Bjorn Helgaas66f12072010-03-11 17:01:09 -0700823 * This function is equivalent to request_resource_conflict when no conflict
Linus Torvaldsbef69ea2008-08-29 20:18:31 -0700824 * happens. If a conflict happens, and the conflicting resources
825 * entirely fit within the range of the new resource, then the new
826 * resource is inserted and the conflicting resources become children of
827 * the new resource.
828 */
Bjorn Helgaas66f12072010-03-11 17:01:09 -0700829struct resource *insert_resource_conflict(struct resource *parent, struct resource *new)
Linus Torvaldsbef69ea2008-08-29 20:18:31 -0700830{
831 struct resource *conflict;
832
833 write_lock(&resource_lock);
834 conflict = __insert_resource(parent, new);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 write_unlock(&resource_lock);
Bjorn Helgaas66f12072010-03-11 17:01:09 -0700836 return conflict;
837}
838
839/**
840 * insert_resource - Inserts a resource in the resource tree
841 * @parent: parent of the new resource
842 * @new: new resource to insert
843 *
844 * Returns 0 on success, -EBUSY if the resource can't be inserted.
845 */
846int insert_resource(struct resource *parent, struct resource *new)
847{
848 struct resource *conflict;
849
850 conflict = insert_resource_conflict(parent, new);
Linus Torvaldsbef69ea2008-08-29 20:18:31 -0700851 return conflict ? -EBUSY : 0;
852}
853
854/**
855 * insert_resource_expand_to_fit - Insert a resource into the resource tree
Randy Dunlap6781f4a2008-08-31 20:31:55 -0700856 * @root: root resource descriptor
Linus Torvaldsbef69ea2008-08-29 20:18:31 -0700857 * @new: new resource to insert
858 *
859 * Insert a resource into the resource tree, possibly expanding it in order
860 * to make it encompass any conflicting resources.
861 */
862void insert_resource_expand_to_fit(struct resource *root, struct resource *new)
863{
864 if (new->parent)
865 return;
866
867 write_lock(&resource_lock);
868 for (;;) {
869 struct resource *conflict;
870
871 conflict = __insert_resource(root, new);
872 if (!conflict)
873 break;
874 if (conflict == root)
875 break;
876
877 /* Ok, expand resource to cover the conflict, then try again .. */
878 if (conflict->start < new->start)
879 new->start = conflict->start;
880 if (conflict->end > new->end)
881 new->end = conflict->end;
882
883 printk("Expanded resource %s due to conflict with %s\n", new->name, conflict->name);
884 }
885 write_unlock(&resource_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886}
887
Toshi Kaniae8e3a92013-04-29 15:08:17 -0700888static int __adjust_resource(struct resource *res, resource_size_t start,
889 resource_size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890{
891 struct resource *tmp, *parent = res->parent;
Greg Kroah-Hartmand75fc8b2006-06-12 16:09:23 -0700892 resource_size_t end = start + size - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 int result = -EBUSY;
894
Yinghai Lu82ec90e2012-05-17 18:51:11 -0700895 if (!parent)
896 goto skip;
897
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 if ((start < parent->start) || (end > parent->end))
899 goto out;
900
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 if (res->sibling && (res->sibling->start <= end))
902 goto out;
903
904 tmp = parent->child;
905 if (tmp != res) {
906 while (tmp->sibling != res)
907 tmp = tmp->sibling;
908 if (start <= tmp->end)
909 goto out;
910 }
911
Yinghai Lu82ec90e2012-05-17 18:51:11 -0700912skip:
913 for (tmp = res->child; tmp; tmp = tmp->sibling)
914 if ((tmp->start < start) || (tmp->end > end))
915 goto out;
916
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 res->start = start;
918 res->end = end;
919 result = 0;
920
921 out:
Toshi Kaniae8e3a92013-04-29 15:08:17 -0700922 return result;
923}
924
925/**
926 * adjust_resource - modify a resource's start and size
927 * @res: resource to modify
928 * @start: new start value
929 * @size: new size
930 *
931 * Given an existing resource, change its start and size to match the
932 * arguments. Returns 0 on success, -EBUSY if it can't fit.
933 * Existing children of the resource are assumed to be immutable.
934 */
935int adjust_resource(struct resource *res, resource_size_t start,
936 resource_size_t size)
937{
938 int result;
939
940 write_lock(&resource_lock);
941 result = __adjust_resource(res, start, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 write_unlock(&resource_lock);
943 return result;
944}
Cong Wang24105742012-02-03 21:42:39 +0800945EXPORT_SYMBOL(adjust_resource);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946
Yinghai Lu268364a2008-09-04 21:02:44 +0200947static void __init __reserve_region_with_split(struct resource *root,
948 resource_size_t start, resource_size_t end,
949 const char *name)
950{
951 struct resource *parent = root;
952 struct resource *conflict;
Yasuaki Ishimatsuebff7d82013-04-29 15:08:56 -0700953 struct resource *res = alloc_resource(GFP_ATOMIC);
T Makphaibulchoke4965f562012-10-04 17:16:55 -0700954 struct resource *next_res = NULL;
Yinghai Lu268364a2008-09-04 21:02:44 +0200955
956 if (!res)
957 return;
958
959 res->name = name;
960 res->start = start;
961 res->end = end;
962 res->flags = IORESOURCE_BUSY;
Toshi Kani43ee4932016-01-26 21:57:19 +0100963 res->desc = IORES_DESC_NONE;
Yinghai Lu268364a2008-09-04 21:02:44 +0200964
T Makphaibulchoke4965f562012-10-04 17:16:55 -0700965 while (1) {
Yinghai Lu268364a2008-09-04 21:02:44 +0200966
T Makphaibulchoke4965f562012-10-04 17:16:55 -0700967 conflict = __request_resource(parent, res);
968 if (!conflict) {
969 if (!next_res)
970 break;
971 res = next_res;
972 next_res = NULL;
973 continue;
974 }
Yinghai Lu268364a2008-09-04 21:02:44 +0200975
T Makphaibulchoke4965f562012-10-04 17:16:55 -0700976 /* conflict covered whole area */
977 if (conflict->start <= res->start &&
978 conflict->end >= res->end) {
Yasuaki Ishimatsuebff7d82013-04-29 15:08:56 -0700979 free_resource(res);
T Makphaibulchoke4965f562012-10-04 17:16:55 -0700980 WARN_ON(next_res);
981 break;
982 }
Yinghai Lu268364a2008-09-04 21:02:44 +0200983
T Makphaibulchoke4965f562012-10-04 17:16:55 -0700984 /* failed, split and try again */
985 if (conflict->start > res->start) {
986 end = res->end;
987 res->end = conflict->start - 1;
988 if (conflict->end < end) {
Yasuaki Ishimatsuebff7d82013-04-29 15:08:56 -0700989 next_res = alloc_resource(GFP_ATOMIC);
T Makphaibulchoke4965f562012-10-04 17:16:55 -0700990 if (!next_res) {
Yasuaki Ishimatsuebff7d82013-04-29 15:08:56 -0700991 free_resource(res);
T Makphaibulchoke4965f562012-10-04 17:16:55 -0700992 break;
993 }
994 next_res->name = name;
995 next_res->start = conflict->end + 1;
996 next_res->end = end;
997 next_res->flags = IORESOURCE_BUSY;
Toshi Kani43ee4932016-01-26 21:57:19 +0100998 next_res->desc = IORES_DESC_NONE;
T Makphaibulchoke4965f562012-10-04 17:16:55 -0700999 }
1000 } else {
1001 res->start = conflict->end + 1;
1002 }
1003 }
1004
Yinghai Lu268364a2008-09-04 21:02:44 +02001005}
1006
Paul Mundtbea92112008-10-22 19:31:11 +09001007void __init reserve_region_with_split(struct resource *root,
Yinghai Lu268364a2008-09-04 21:02:44 +02001008 resource_size_t start, resource_size_t end,
1009 const char *name)
1010{
Octavian Purdila65fed8f2012-07-30 14:42:58 -07001011 int abort = 0;
1012
Yinghai Lu268364a2008-09-04 21:02:44 +02001013 write_lock(&resource_lock);
Octavian Purdila65fed8f2012-07-30 14:42:58 -07001014 if (root->start > start || root->end < end) {
1015 pr_err("requested range [0x%llx-0x%llx] not in root %pr\n",
1016 (unsigned long long)start, (unsigned long long)end,
1017 root);
1018 if (start > root->end || end < root->start)
1019 abort = 1;
1020 else {
1021 if (end > root->end)
1022 end = root->end;
1023 if (start < root->start)
1024 start = root->start;
1025 pr_err("fixing request to [0x%llx-0x%llx]\n",
1026 (unsigned long long)start,
1027 (unsigned long long)end);
1028 }
1029 dump_stack();
1030 }
1031 if (!abort)
1032 __reserve_region_with_split(root, start, end, name);
Yinghai Lu268364a2008-09-04 21:02:44 +02001033 write_unlock(&resource_lock);
1034}
1035
Ivan Kokshaysky88452562008-03-30 19:50:14 +04001036/**
1037 * resource_alignment - calculate resource's alignment
1038 * @res: resource pointer
1039 *
1040 * Returns alignment on success, 0 (invalid alignment) on failure.
1041 */
1042resource_size_t resource_alignment(struct resource *res)
1043{
1044 switch (res->flags & (IORESOURCE_SIZEALIGN | IORESOURCE_STARTALIGN)) {
1045 case IORESOURCE_SIZEALIGN:
Magnus Damm1a4e5642008-07-29 22:32:57 -07001046 return resource_size(res);
Ivan Kokshaysky88452562008-03-30 19:50:14 +04001047 case IORESOURCE_STARTALIGN:
1048 return res->start;
1049 default:
1050 return 0;
1051 }
1052}
1053
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054/*
1055 * This is compatibility stuff for IO resources.
1056 *
1057 * Note how this, unlike the above, knows about
1058 * the IO flag meanings (busy etc).
1059 *
Randy Dunlape1ca66d1b2006-10-03 01:13:51 -07001060 * request_region creates a new busy region.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 *
Randy Dunlape1ca66d1b2006-10-03 01:13:51 -07001062 * release_region releases a matching busy region.
1063 */
1064
Alan Cox8b6d0432010-03-29 19:38:00 +02001065static DECLARE_WAIT_QUEUE_HEAD(muxed_resource_wait);
1066
Randy Dunlape1ca66d1b2006-10-03 01:13:51 -07001067/**
1068 * __request_region - create a new busy resource region
1069 * @parent: parent resource descriptor
1070 * @start: resource start address
1071 * @n: resource region size
1072 * @name: reserving caller's ID string
Randy Dunlap6ae301e2009-01-15 13:51:01 -08001073 * @flags: IO resource flags
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 */
Greg Kroah-Hartmand75fc8b2006-06-12 16:09:23 -07001075struct resource * __request_region(struct resource *parent,
1076 resource_size_t start, resource_size_t n,
Arjan van de Vene8de1482008-10-22 19:55:31 -07001077 const char *name, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078{
Alan Cox8b6d0432010-03-29 19:38:00 +02001079 DECLARE_WAITQUEUE(wait, current);
Yasuaki Ishimatsuebff7d82013-04-29 15:08:56 -07001080 struct resource *res = alloc_resource(GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081
Bjorn Helgaasc26ec882008-10-15 22:05:14 -07001082 if (!res)
1083 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084
Bjorn Helgaasc26ec882008-10-15 22:05:14 -07001085 res->name = name;
1086 res->start = start;
1087 res->end = start + n - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088
Bjorn Helgaasc26ec882008-10-15 22:05:14 -07001089 write_lock(&resource_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090
Bjorn Helgaasc26ec882008-10-15 22:05:14 -07001091 for (;;) {
1092 struct resource *conflict;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093
Toshi Kani4e0d8f7e2016-03-09 12:47:03 -07001094 res->flags = resource_type(parent) | resource_ext_type(parent);
1095 res->flags |= IORESOURCE_BUSY | flags;
1096 res->desc = parent->desc;
1097
Bjorn Helgaasc26ec882008-10-15 22:05:14 -07001098 conflict = __request_resource(parent, res);
1099 if (!conflict)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 break;
Bjorn Helgaasc26ec882008-10-15 22:05:14 -07001101 if (conflict != parent) {
Simon Guinot59ceeaa2015-09-10 00:15:18 +02001102 if (!(conflict->flags & IORESOURCE_BUSY)) {
1103 parent = conflict;
Bjorn Helgaasc26ec882008-10-15 22:05:14 -07001104 continue;
Simon Guinot59ceeaa2015-09-10 00:15:18 +02001105 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106 }
Alan Cox8b6d0432010-03-29 19:38:00 +02001107 if (conflict->flags & flags & IORESOURCE_MUXED) {
1108 add_wait_queue(&muxed_resource_wait, &wait);
1109 write_unlock(&resource_lock);
1110 set_current_state(TASK_UNINTERRUPTIBLE);
1111 schedule();
1112 remove_wait_queue(&muxed_resource_wait, &wait);
1113 write_lock(&resource_lock);
1114 continue;
1115 }
Bjorn Helgaasc26ec882008-10-15 22:05:14 -07001116 /* Uhhuh, that didn't work out.. */
Yasuaki Ishimatsuebff7d82013-04-29 15:08:56 -07001117 free_resource(res);
Bjorn Helgaasc26ec882008-10-15 22:05:14 -07001118 res = NULL;
1119 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 }
Bjorn Helgaasc26ec882008-10-15 22:05:14 -07001121 write_unlock(&resource_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 return res;
1123}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124EXPORT_SYMBOL(__request_region);
1125
Randy Dunlape1ca66d1b2006-10-03 01:13:51 -07001126/**
Randy Dunlape1ca66d1b2006-10-03 01:13:51 -07001127 * __release_region - release a previously reserved resource region
1128 * @parent: parent resource descriptor
1129 * @start: resource start address
1130 * @n: resource region size
1131 *
1132 * The described resource region must match a currently busy region.
1133 */
Greg Kroah-Hartmand75fc8b2006-06-12 16:09:23 -07001134void __release_region(struct resource *parent, resource_size_t start,
1135 resource_size_t n)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136{
1137 struct resource **p;
Greg Kroah-Hartmand75fc8b2006-06-12 16:09:23 -07001138 resource_size_t end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139
1140 p = &parent->child;
1141 end = start + n - 1;
1142
1143 write_lock(&resource_lock);
1144
1145 for (;;) {
1146 struct resource *res = *p;
1147
1148 if (!res)
1149 break;
1150 if (res->start <= start && res->end >= end) {
1151 if (!(res->flags & IORESOURCE_BUSY)) {
1152 p = &res->child;
1153 continue;
1154 }
1155 if (res->start != start || res->end != end)
1156 break;
1157 *p = res->sibling;
1158 write_unlock(&resource_lock);
Alan Cox8b6d0432010-03-29 19:38:00 +02001159 if (res->flags & IORESOURCE_MUXED)
1160 wake_up(&muxed_resource_wait);
Yasuaki Ishimatsuebff7d82013-04-29 15:08:56 -07001161 free_resource(res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 return;
1163 }
1164 p = &res->sibling;
1165 }
1166
1167 write_unlock(&resource_lock);
1168
Greg Kroah-Hartman685143ac2006-06-12 15:18:31 -07001169 printk(KERN_WARNING "Trying to free nonexistent resource "
1170 "<%016llx-%016llx>\n", (unsigned long long)start,
1171 (unsigned long long)end);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173EXPORT_SYMBOL(__release_region);
1174
Toshi Kani825f7872013-04-29 15:08:19 -07001175#ifdef CONFIG_MEMORY_HOTREMOVE
1176/**
1177 * release_mem_region_adjustable - release a previously reserved memory region
1178 * @parent: parent resource descriptor
1179 * @start: resource start address
1180 * @size: resource region size
1181 *
1182 * This interface is intended for memory hot-delete. The requested region
1183 * is released from a currently busy memory resource. The requested region
1184 * must either match exactly or fit into a single busy resource entry. In
1185 * the latter case, the remaining resource is adjusted accordingly.
1186 * Existing children of the busy memory resource must be immutable in the
1187 * request.
1188 *
1189 * Note:
1190 * - Additional release conditions, such as overlapping region, can be
1191 * supported after they are confirmed as valid cases.
1192 * - When a busy memory resource gets split into two entries, the code
1193 * assumes that all children remain in the lower address entry for
1194 * simplicity. Enhance this logic when necessary.
1195 */
1196int release_mem_region_adjustable(struct resource *parent,
1197 resource_size_t start, resource_size_t size)
1198{
1199 struct resource **p;
1200 struct resource *res;
1201 struct resource *new_res;
1202 resource_size_t end;
1203 int ret = -EINVAL;
1204
1205 end = start + size - 1;
1206 if ((start < parent->start) || (end > parent->end))
1207 return ret;
1208
Yasuaki Ishimatsuebff7d82013-04-29 15:08:56 -07001209 /* The alloc_resource() result gets checked later */
1210 new_res = alloc_resource(GFP_KERNEL);
Toshi Kani825f7872013-04-29 15:08:19 -07001211
1212 p = &parent->child;
1213 write_lock(&resource_lock);
1214
1215 while ((res = *p)) {
1216 if (res->start >= end)
1217 break;
1218
1219 /* look for the next resource if it does not fit into */
1220 if (res->start > start || res->end < end) {
1221 p = &res->sibling;
1222 continue;
1223 }
1224
1225 if (!(res->flags & IORESOURCE_MEM))
1226 break;
1227
1228 if (!(res->flags & IORESOURCE_BUSY)) {
1229 p = &res->child;
1230 continue;
1231 }
1232
1233 /* found the target resource; let's adjust accordingly */
1234 if (res->start == start && res->end == end) {
1235 /* free the whole entry */
1236 *p = res->sibling;
Yasuaki Ishimatsuebff7d82013-04-29 15:08:56 -07001237 free_resource(res);
Toshi Kani825f7872013-04-29 15:08:19 -07001238 ret = 0;
1239 } else if (res->start == start && res->end != end) {
1240 /* adjust the start */
1241 ret = __adjust_resource(res, end + 1,
1242 res->end - end);
1243 } else if (res->start != start && res->end == end) {
1244 /* adjust the end */
1245 ret = __adjust_resource(res, res->start,
1246 start - res->start);
1247 } else {
1248 /* split into two entries */
1249 if (!new_res) {
1250 ret = -ENOMEM;
1251 break;
1252 }
1253 new_res->name = res->name;
1254 new_res->start = end + 1;
1255 new_res->end = res->end;
1256 new_res->flags = res->flags;
Toshi Kani43ee4932016-01-26 21:57:19 +01001257 new_res->desc = res->desc;
Toshi Kani825f7872013-04-29 15:08:19 -07001258 new_res->parent = res->parent;
1259 new_res->sibling = res->sibling;
1260 new_res->child = NULL;
1261
1262 ret = __adjust_resource(res, res->start,
1263 start - res->start);
1264 if (ret)
1265 break;
1266 res->sibling = new_res;
1267 new_res = NULL;
1268 }
1269
1270 break;
1271 }
1272
1273 write_unlock(&resource_lock);
Yasuaki Ishimatsuebff7d82013-04-29 15:08:56 -07001274 free_resource(new_res);
Toshi Kani825f7872013-04-29 15:08:19 -07001275 return ret;
1276}
1277#endif /* CONFIG_MEMORY_HOTREMOVE */
1278
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279/*
Tejun Heo9ac78492007-01-20 16:00:26 +09001280 * Managed region resource
1281 */
Thierry Reding8d388212014-08-01 14:15:10 +02001282static void devm_resource_release(struct device *dev, void *ptr)
1283{
1284 struct resource **r = ptr;
1285
1286 release_resource(*r);
1287}
1288
1289/**
1290 * devm_request_resource() - request and reserve an I/O or memory resource
1291 * @dev: device for which to request the resource
1292 * @root: root of the resource tree from which to request the resource
1293 * @new: descriptor of the resource to request
1294 *
1295 * This is a device-managed version of request_resource(). There is usually
1296 * no need to release resources requested by this function explicitly since
1297 * that will be taken care of when the device is unbound from its driver.
1298 * If for some reason the resource needs to be released explicitly, because
1299 * of ordering issues for example, drivers must call devm_release_resource()
1300 * rather than the regular release_resource().
1301 *
1302 * When a conflict is detected between any existing resources and the newly
1303 * requested resource, an error message will be printed.
1304 *
1305 * Returns 0 on success or a negative error code on failure.
1306 */
1307int devm_request_resource(struct device *dev, struct resource *root,
1308 struct resource *new)
1309{
1310 struct resource *conflict, **ptr;
1311
1312 ptr = devres_alloc(devm_resource_release, sizeof(*ptr), GFP_KERNEL);
1313 if (!ptr)
1314 return -ENOMEM;
1315
1316 *ptr = new;
1317
1318 conflict = request_resource_conflict(root, new);
1319 if (conflict) {
1320 dev_err(dev, "resource collision: %pR conflicts with %s %pR\n",
1321 new, conflict->name, conflict);
1322 devres_free(ptr);
1323 return -EBUSY;
1324 }
1325
1326 devres_add(dev, ptr);
1327 return 0;
1328}
1329EXPORT_SYMBOL(devm_request_resource);
1330
1331static int devm_resource_match(struct device *dev, void *res, void *data)
1332{
1333 struct resource **ptr = res;
1334
1335 return *ptr == data;
1336}
1337
1338/**
1339 * devm_release_resource() - release a previously requested resource
1340 * @dev: device for which to release the resource
1341 * @new: descriptor of the resource to release
1342 *
1343 * Releases a resource previously requested using devm_request_resource().
1344 */
1345void devm_release_resource(struct device *dev, struct resource *new)
1346{
1347 WARN_ON(devres_release(dev, devm_resource_release, devm_resource_match,
1348 new));
1349}
1350EXPORT_SYMBOL(devm_release_resource);
1351
Tejun Heo9ac78492007-01-20 16:00:26 +09001352struct region_devres {
1353 struct resource *parent;
1354 resource_size_t start;
1355 resource_size_t n;
1356};
1357
1358static void devm_region_release(struct device *dev, void *res)
1359{
1360 struct region_devres *this = res;
1361
1362 __release_region(this->parent, this->start, this->n);
1363}
1364
1365static int devm_region_match(struct device *dev, void *res, void *match_data)
1366{
1367 struct region_devres *this = res, *match = match_data;
1368
1369 return this->parent == match->parent &&
1370 this->start == match->start && this->n == match->n;
1371}
1372
1373struct resource * __devm_request_region(struct device *dev,
1374 struct resource *parent, resource_size_t start,
1375 resource_size_t n, const char *name)
1376{
1377 struct region_devres *dr = NULL;
1378 struct resource *res;
1379
1380 dr = devres_alloc(devm_region_release, sizeof(struct region_devres),
1381 GFP_KERNEL);
1382 if (!dr)
1383 return NULL;
1384
1385 dr->parent = parent;
1386 dr->start = start;
1387 dr->n = n;
1388
Arjan van de Vene8de1482008-10-22 19:55:31 -07001389 res = __request_region(parent, start, n, name, 0);
Tejun Heo9ac78492007-01-20 16:00:26 +09001390 if (res)
1391 devres_add(dev, dr);
1392 else
1393 devres_free(dr);
1394
1395 return res;
1396}
1397EXPORT_SYMBOL(__devm_request_region);
1398
1399void __devm_release_region(struct device *dev, struct resource *parent,
1400 resource_size_t start, resource_size_t n)
1401{
1402 struct region_devres match_data = { parent, start, n };
1403
1404 __release_region(parent, start, n);
1405 WARN_ON(devres_destroy(dev, devm_region_release, devm_region_match,
1406 &match_data));
1407}
1408EXPORT_SYMBOL(__devm_release_region);
1409
1410/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411 * Called from init/main.c to reserve IO ports.
1412 */
1413#define MAXRESERVE 4
1414static int __init reserve_setup(char *str)
1415{
1416 static int reserved;
1417 static struct resource reserve[MAXRESERVE];
1418
1419 for (;;) {
Zhang Rui8bc1ad72009-06-30 11:41:31 -07001420 unsigned int io_start, io_num;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421 int x = reserved;
1422
1423 if (get_option (&str, &io_start) != 2)
1424 break;
1425 if (get_option (&str, &io_num) == 0)
1426 break;
1427 if (x < MAXRESERVE) {
1428 struct resource *res = reserve + x;
1429 res->name = "reserved";
1430 res->start = io_start;
1431 res->end = io_start + io_num - 1;
1432 res->flags = IORESOURCE_BUSY;
Toshi Kani43ee4932016-01-26 21:57:19 +01001433 res->desc = IORES_DESC_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434 res->child = NULL;
1435 if (request_resource(res->start >= 0x10000 ? &iomem_resource : &ioport_resource, res) == 0)
1436 reserved = x+1;
1437 }
1438 }
1439 return 1;
1440}
1441
1442__setup("reserve=", reserve_setup);
Suresh Siddha379daf62008-09-25 18:43:34 -07001443
1444/*
1445 * Check if the requested addr and size spans more than any slot in the
1446 * iomem resource tree.
1447 */
1448int iomem_map_sanity_check(resource_size_t addr, unsigned long size)
1449{
1450 struct resource *p = &iomem_resource;
1451 int err = 0;
1452 loff_t l;
1453
1454 read_lock(&resource_lock);
1455 for (p = p->child; p ; p = r_next(NULL, p, &l)) {
1456 /*
1457 * We can probably skip the resources without
1458 * IORESOURCE_IO attribute?
1459 */
1460 if (p->start >= addr + size)
1461 continue;
1462 if (p->end < addr)
1463 continue;
Suresh Siddhad68612b2008-10-28 11:45:42 -07001464 if (PFN_DOWN(p->start) <= PFN_DOWN(addr) &&
1465 PFN_DOWN(p->end) >= PFN_DOWN(addr + size - 1))
Suresh Siddha379daf62008-09-25 18:43:34 -07001466 continue;
Arjan van de Ven3ac526692008-12-13 09:15:27 -08001467 /*
1468 * if a resource is "BUSY", it's not a hardware resource
1469 * but a driver mapping of such a resource; we don't want
1470 * to warn for those; some drivers legitimately map only
1471 * partial hardware resources. (example: vesafb)
1472 */
1473 if (p->flags & IORESOURCE_BUSY)
1474 continue;
1475
Bjorn Helgaase4c72962014-04-14 15:38:11 -06001476 printk(KERN_WARNING "resource sanity check: requesting [mem %#010llx-%#010llx], which spans more than %s %pR\n",
Ingo Molnar13eb8372008-09-26 10:10:12 +02001477 (unsigned long long)addr,
1478 (unsigned long long)(addr + size - 1),
Bjorn Helgaase4c72962014-04-14 15:38:11 -06001479 p->name, p);
Suresh Siddha379daf62008-09-25 18:43:34 -07001480 err = -1;
1481 break;
1482 }
1483 read_unlock(&resource_lock);
1484
1485 return err;
1486}
Arjan van de Vene8de1482008-10-22 19:55:31 -07001487
1488#ifdef CONFIG_STRICT_DEVMEM
1489static int strict_iomem_checks = 1;
1490#else
1491static int strict_iomem_checks;
1492#endif
1493
1494/*
1495 * check if an address is reserved in the iomem resource tree
1496 * returns 1 if reserved, 0 if not reserved.
1497 */
1498int iomem_is_exclusive(u64 addr)
1499{
1500 struct resource *p = &iomem_resource;
1501 int err = 0;
1502 loff_t l;
1503 int size = PAGE_SIZE;
1504
1505 if (!strict_iomem_checks)
1506 return 0;
1507
1508 addr = addr & PAGE_MASK;
1509
1510 read_lock(&resource_lock);
1511 for (p = p->child; p ; p = r_next(NULL, p, &l)) {
1512 /*
1513 * We can probably skip the resources without
1514 * IORESOURCE_IO attribute?
1515 */
1516 if (p->start >= addr + size)
1517 break;
1518 if (p->end < addr)
1519 continue;
Dan Williams90a545e2015-11-23 15:49:03 -08001520 /*
1521 * A resource is exclusive if IORESOURCE_EXCLUSIVE is set
1522 * or CONFIG_IO_STRICT_DEVMEM is enabled and the
1523 * resource is busy.
1524 */
1525 if ((p->flags & IORESOURCE_BUSY) == 0)
1526 continue;
1527 if (IS_ENABLED(CONFIG_IO_STRICT_DEVMEM)
1528 || p->flags & IORESOURCE_EXCLUSIVE) {
Arjan van de Vene8de1482008-10-22 19:55:31 -07001529 err = 1;
1530 break;
1531 }
1532 }
1533 read_unlock(&resource_lock);
1534
1535 return err;
1536}
1537
Jiang Liu90e97822015-02-05 13:44:43 +08001538struct resource_entry *resource_list_create_entry(struct resource *res,
1539 size_t extra_size)
1540{
1541 struct resource_entry *entry;
1542
1543 entry = kzalloc(sizeof(*entry) + extra_size, GFP_KERNEL);
1544 if (entry) {
1545 INIT_LIST_HEAD(&entry->node);
1546 entry->res = res ? res : &entry->__res;
1547 }
1548
1549 return entry;
1550}
1551EXPORT_SYMBOL(resource_list_create_entry);
1552
1553void resource_list_free(struct list_head *head)
1554{
1555 struct resource_entry *entry, *tmp;
1556
1557 list_for_each_entry_safe(entry, tmp, head, node)
1558 resource_list_destroy_entry(entry);
1559}
1560EXPORT_SYMBOL(resource_list_free);
1561
Arjan van de Vene8de1482008-10-22 19:55:31 -07001562static int __init strict_iomem(char *str)
1563{
1564 if (strstr(str, "relaxed"))
1565 strict_iomem_checks = 0;
1566 if (strstr(str, "strict"))
1567 strict_iomem_checks = 1;
1568 return 1;
1569}
1570
1571__setup("iomem=", strict_iomem);