blob: 96afc80274873e6c2219b5aeb3f5c40447ce78f9 [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 Dunlape1ca66d2006-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 Dunlape1ca66d2006-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 Dunlape1ca66d2006-10-03 01:13:51 -0700319/**
Randy Dunlape1ca66d2006-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/*
Vivek Goyal8c86e702014-08-08 14:25:50 -0700336 * Finds the lowest iomem reosurce exists with-in [res->start.res->end)
KAMEZAWA Hiroyuki908eedc2009-09-22 16:45:46 -0700337 * the caller must specify res->start, res->end, res->flags and "name".
KAMEZAWA Hiroyuki2842f112006-06-27 02:53:36 -0700338 * If found, returns 0, res is overwritten, if not found, returns -1.
Vivek Goyal8c86e702014-08-08 14:25:50 -0700339 * This walks through whole tree and not just first level children
340 * until and unless first_level_children_only is true.
KAMEZAWA Hiroyuki2842f112006-06-27 02:53:36 -0700341 */
Vivek Goyal8c86e702014-08-08 14:25:50 -0700342static int find_next_iomem_res(struct resource *res, char *name,
343 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;
KAMEZAWA Hiroyuki908eedc2009-09-22 16:45:46 -0700363 if (name && strcmp(p->name, name))
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
388 * name are valid candidates.
389 *
390 * @name: name of resource
391 * @flags: resource flags
392 * @start: start addr
393 * @end: end addr
394 */
395int walk_iomem_res(char *name, unsigned long flags, u64 start, u64 end,
396 void *arg, int (*func)(u64, u64, void *))
397{
398 struct resource res;
399 u64 orig_end;
400 int ret = -1;
401
402 res.start = start;
403 res.end = end;
404 res.flags = flags;
405 orig_end = res.end;
406 while ((res.start < res.end) &&
407 (!find_next_iomem_res(&res, name, false))) {
408 ret = (*func)(res.start, res.end, arg);
409 if (ret)
410 break;
411 res.start = res.end + 1;
412 res.end = orig_end;
413 }
414 return ret;
415}
416
417/*
418 * This function calls callback against all memory range of "System RAM"
419 * which are marked as IORESOURCE_MEM and IORESOUCE_BUSY.
420 * Now, this function is only for "System RAM". This function deals with
421 * full ranges and not pfn. If resources are not pfn aligned, dealing
422 * with pfn can truncate ranges.
423 */
424int walk_system_ram_res(u64 start, u64 end, void *arg,
425 int (*func)(u64, u64, void *))
426{
427 struct resource res;
428 u64 orig_end;
429 int ret = -1;
430
431 res.start = start;
432 res.end = end;
433 res.flags = IORESOURCE_MEM | IORESOURCE_BUSY;
434 orig_end = res.end;
435 while ((res.start < res.end) &&
436 (!find_next_iomem_res(&res, "System RAM", true))) {
437 ret = (*func)(res.start, res.end, arg);
438 if (ret)
439 break;
440 res.start = res.end + 1;
441 res.end = orig_end;
442 }
443 return ret;
444}
445
446#if !defined(CONFIG_ARCH_HAS_WALK_MEMORY)
447
448/*
KAMEZAWA Hiroyuki908eedc2009-09-22 16:45:46 -0700449 * This function calls callback against all memory range of "System RAM"
450 * which are marked as IORESOURCE_MEM and IORESOUCE_BUSY.
451 * Now, this function is only for "System RAM".
452 */
453int walk_system_ram_range(unsigned long start_pfn, unsigned long nr_pages,
454 void *arg, int (*func)(unsigned long, unsigned long, void *))
KAMEZAWA Hiroyuki75884fb12007-10-16 01:26:10 -0700455{
456 struct resource res;
Wu Fengguang37b99dd2010-03-01 21:55:51 +0800457 unsigned long pfn, end_pfn;
KAMEZAWA Hiroyuki75884fb12007-10-16 01:26:10 -0700458 u64 orig_end;
459 int ret = -1;
KAMEZAWA Hiroyuki908eedc2009-09-22 16:45:46 -0700460
KAMEZAWA Hiroyuki75884fb12007-10-16 01:26:10 -0700461 res.start = (u64) start_pfn << PAGE_SHIFT;
462 res.end = ((u64)(start_pfn + nr_pages) << PAGE_SHIFT) - 1;
Yasunori Goto887c3cb2007-11-14 16:59:20 -0800463 res.flags = IORESOURCE_MEM | IORESOURCE_BUSY;
KAMEZAWA Hiroyuki75884fb12007-10-16 01:26:10 -0700464 orig_end = res.end;
KAMEZAWA Hiroyuki908eedc2009-09-22 16:45:46 -0700465 while ((res.start < res.end) &&
Vivek Goyal8c86e702014-08-08 14:25:50 -0700466 (find_next_iomem_res(&res, "System RAM", true) >= 0)) {
Wu Fengguang37b99dd2010-03-01 21:55:51 +0800467 pfn = (res.start + PAGE_SIZE - 1) >> PAGE_SHIFT;
468 end_pfn = (res.end + 1) >> PAGE_SHIFT;
469 if (end_pfn > pfn)
H. Peter Anvinf4149662010-03-02 11:21:09 -0800470 ret = (*func)(pfn, end_pfn - pfn, arg);
KAMEZAWA Hiroyuki75884fb12007-10-16 01:26:10 -0700471 if (ret)
472 break;
473 res.start = res.end + 1;
474 res.end = orig_end;
475 }
476 return ret;
477}
478
KAMEZAWA Hiroyuki2842f112006-06-27 02:53:36 -0700479#endif
480
Wu Fengguang61ef2482010-01-22 16:16:19 +0800481static int __is_ram(unsigned long pfn, unsigned long nr_pages, void *arg)
482{
483 return 1;
484}
485/*
486 * This generic page_is_ram() returns true if specified address is
487 * registered as "System RAM" in iomem_resource list.
488 */
Andrew Mortone5273002010-01-26 16:31:19 -0800489int __weak page_is_ram(unsigned long pfn)
Wu Fengguang61ef2482010-01-22 16:16:19 +0800490{
491 return walk_system_ram_range(pfn, 1, NULL, __is_ram) == 1;
492}
Chen Gongc5a13032013-06-06 15:20:51 -0700493EXPORT_SYMBOL_GPL(page_is_ram);
Wu Fengguang61ef2482010-01-22 16:16:19 +0800494
Dan Williams124fe202015-08-10 23:07:05 -0400495/**
496 * region_intersects() - determine intersection of region with known resources
497 * @start: region start address
498 * @size: size of region
499 * @name: name of resource (in iomem_resource)
Mike Travis67cf13c2014-10-13 15:54:03 -0700500 *
Dan Williams124fe202015-08-10 23:07:05 -0400501 * Check if the specified region partially overlaps or fully eclipses a
502 * resource identified by @name. Return REGION_DISJOINT if the region
503 * does not overlap @name, return REGION_MIXED if the region overlaps
504 * @type and another resource, and return REGION_INTERSECTS if the
505 * region overlaps @type and no other defined resource. Note, that
506 * REGION_INTERSECTS is also returned in the case when the specified
507 * region overlaps RAM and undefined memory holes.
508 *
509 * region_intersect() is used by memory remapping functions to ensure
510 * the user is not remapping RAM and is a vast speed up over walking
511 * through the resource table page by page.
Mike Travis67cf13c2014-10-13 15:54:03 -0700512 */
Dan Williams124fe202015-08-10 23:07:05 -0400513int region_intersects(resource_size_t start, size_t size, const char *name)
Mike Travis67cf13c2014-10-13 15:54:03 -0700514{
Toshi Kani8c38de92015-07-16 17:23:16 -0600515 unsigned long flags = IORESOURCE_MEM | IORESOURCE_BUSY;
Dan Williams124fe202015-08-10 23:07:05 -0400516 resource_size_t end = start + size - 1;
517 int type = 0; int other = 0;
518 struct resource *p;
Mike Travis67cf13c2014-10-13 15:54:03 -0700519
520 read_lock(&resource_lock);
521 for (p = iomem_resource.child; p ; p = p->sibling) {
Toshi Kania3650d52016-01-26 21:57:18 +0100522 bool is_type = strcmp(p->name, name) == 0 &&
523 ((p->flags & flags) == flags);
Mike Travis67cf13c2014-10-13 15:54:03 -0700524
Dan Williams124fe202015-08-10 23:07:05 -0400525 if (start >= p->start && start <= p->end)
526 is_type ? type++ : other++;
527 if (end >= p->start && end <= p->end)
528 is_type ? type++ : other++;
529 if (p->start >= start && p->end <= end)
530 is_type ? type++ : other++;
Mike Travis67cf13c2014-10-13 15:54:03 -0700531 }
532 read_unlock(&resource_lock);
Dan Williams124fe202015-08-10 23:07:05 -0400533
534 if (other == 0)
535 return type ? REGION_INTERSECTS : REGION_DISJOINT;
536
537 if (type)
538 return REGION_MIXED;
539
540 return REGION_DISJOINT;
Mike Travis67cf13c2014-10-13 15:54:03 -0700541}
542
Bjorn Helgaasfcb11912010-12-16 10:38:46 -0700543void __weak arch_remove_reservations(struct resource *avail)
544{
545}
546
Bjorn Helgaasa9cea012010-10-26 15:41:13 -0600547static resource_size_t simple_align_resource(void *data,
548 const struct resource *avail,
549 resource_size_t size,
550 resource_size_t align)
551{
552 return avail->start;
553}
554
Bjorn Helgaas5d6b1fa2010-10-26 15:41:18 -0600555static void resource_clip(struct resource *res, resource_size_t min,
556 resource_size_t max)
557{
558 if (res->start < min)
559 res->start = min;
560 if (res->end > max)
561 res->end = max;
562}
563
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564/*
Ram Pai23c570a2011-07-05 23:44:30 -0700565 * Find empty slot in the resource tree with the given range and
566 * alignment constraints
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 */
Ram Pai23c570a2011-07-05 23:44:30 -0700568static int __find_resource(struct resource *root, struct resource *old,
569 struct resource *new,
570 resource_size_t size,
571 struct resource_constraint *constraint)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572{
573 struct resource *this = root->child;
Bjorn Helgaasa1862e32010-10-26 15:41:28 -0600574 struct resource tmp = *new, avail, alloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575
Dominik Brodowski0e2c8b82009-12-20 10:50:02 +0100576 tmp.start = root->start;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 /*
Bjorn Helgaasc0f5ac52010-12-16 10:38:41 -0700578 * Skip past an allocated resource that starts at 0, since the assignment
579 * of this->start - 1 to tmp->end below would cause an underflow.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 */
Ram Pai23c570a2011-07-05 23:44:30 -0700581 if (this && this->start == root->start) {
582 tmp.start = (this == old) ? old->start : this->end + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 this = this->sibling;
584 }
Bjorn Helgaasc0f5ac52010-12-16 10:38:41 -0700585 for(;;) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 if (this)
Ram Pai23c570a2011-07-05 23:44:30 -0700587 tmp.end = (this == old) ? this->end : this->start - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 else
Dominik Brodowski0e2c8b82009-12-20 10:50:02 +0100589 tmp.end = root->end;
Bjorn Helgaas5d6b1fa2010-10-26 15:41:18 -0600590
Ram Pai47ea91b2011-09-22 15:48:58 +0800591 if (tmp.end < tmp.start)
592 goto next;
593
Ram Pai23c570a2011-07-05 23:44:30 -0700594 resource_clip(&tmp, constraint->min, constraint->max);
Bjorn Helgaasfcb11912010-12-16 10:38:46 -0700595 arch_remove_reservations(&tmp);
Bjorn Helgaasa9cea012010-10-26 15:41:13 -0600596
Bjorn Helgaasa1862e32010-10-26 15:41:28 -0600597 /* Check for overflow after ALIGN() */
Ram Pai23c570a2011-07-05 23:44:30 -0700598 avail.start = ALIGN(tmp.start, constraint->align);
Bjorn Helgaasa1862e32010-10-26 15:41:28 -0600599 avail.end = tmp.end;
Bjorn Helgaas5edb93b2014-02-04 19:32:28 -0800600 avail.flags = new->flags & ~IORESOURCE_UNSET;
Bjorn Helgaasa1862e32010-10-26 15:41:28 -0600601 if (avail.start >= tmp.start) {
Bjorn Helgaas5edb93b2014-02-04 19:32:28 -0800602 alloc.flags = avail.flags;
Ram Pai23c570a2011-07-05 23:44:30 -0700603 alloc.start = constraint->alignf(constraint->alignf_data, &avail,
604 size, constraint->align);
Bjorn Helgaasa1862e32010-10-26 15:41:28 -0600605 alloc.end = alloc.start + size - 1;
606 if (resource_contains(&avail, &alloc)) {
607 new->start = alloc.start;
608 new->end = alloc.end;
609 return 0;
610 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 }
Ram Pai47ea91b2011-09-22 15:48:58 +0800612
613next: if (!this || this->end == root->end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 break;
Ram Pai47ea91b2011-09-22 15:48:58 +0800615
Ram Pai23c570a2011-07-05 23:44:30 -0700616 if (this != old)
617 tmp.start = this->end + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 this = this->sibling;
619 }
620 return -EBUSY;
621}
622
Ram Pai23c570a2011-07-05 23:44:30 -0700623/*
624 * Find empty slot in the resource tree given range and alignment.
625 */
626static int find_resource(struct resource *root, struct resource *new,
627 resource_size_t size,
628 struct resource_constraint *constraint)
629{
630 return __find_resource(root, NULL, new, size, constraint);
631}
632
Randy Dunlape1ca66d2006-10-03 01:13:51 -0700633/**
Ram Pai23c570a2011-07-05 23:44:30 -0700634 * reallocate_resource - allocate a slot in the resource tree given range & alignment.
635 * The resource will be relocated if the new size cannot be reallocated in the
636 * current location.
637 *
638 * @root: root resource descriptor
639 * @old: resource descriptor desired by caller
640 * @newsize: new size of the resource descriptor
641 * @constraint: the size and alignment constraints to be met.
642 */
Daeseok Youn28ab49f2014-04-03 14:48:36 -0700643static int reallocate_resource(struct resource *root, struct resource *old,
Ram Pai23c570a2011-07-05 23:44:30 -0700644 resource_size_t newsize,
645 struct resource_constraint *constraint)
646{
647 int err=0;
648 struct resource new = *old;
649 struct resource *conflict;
650
651 write_lock(&resource_lock);
652
653 if ((err = __find_resource(root, old, &new, newsize, constraint)))
654 goto out;
655
656 if (resource_contains(&new, old)) {
657 old->start = new.start;
658 old->end = new.end;
659 goto out;
660 }
661
662 if (old->child) {
663 err = -EBUSY;
664 goto out;
665 }
666
667 if (resource_contains(old, &new)) {
668 old->start = new.start;
669 old->end = new.end;
670 } else {
671 __release_resource(old);
672 *old = new;
673 conflict = __request_resource(root, old);
674 BUG_ON(conflict);
675 }
676out:
677 write_unlock(&resource_lock);
678 return err;
679}
680
681
682/**
683 * allocate_resource - allocate empty slot in the resource tree given range & alignment.
684 * The resource will be reallocated with a new size if it was already allocated
Randy Dunlape1ca66d2006-10-03 01:13:51 -0700685 * @root: root resource descriptor
686 * @new: resource descriptor desired by caller
687 * @size: requested resource region size
Wei Yangee5e5682012-05-31 16:26:05 -0700688 * @min: minimum boundary to allocate
689 * @max: maximum boundary to allocate
Randy Dunlape1ca66d2006-10-03 01:13:51 -0700690 * @align: alignment requested, in bytes
691 * @alignf: alignment function, optional, called if not NULL
692 * @alignf_data: arbitrary data to pass to the @alignf function
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 */
694int allocate_resource(struct resource *root, struct resource *new,
Greg Kroah-Hartmand75fc8b2006-06-12 16:09:23 -0700695 resource_size_t size, resource_size_t min,
696 resource_size_t max, resource_size_t align,
Dominik Brodowskib26b2d42010-01-01 17:40:49 +0100697 resource_size_t (*alignf)(void *,
Dominik Brodowski3b7a17f2010-01-01 17:40:50 +0100698 const struct resource *,
Dominik Brodowskib26b2d42010-01-01 17:40:49 +0100699 resource_size_t,
700 resource_size_t),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 void *alignf_data)
702{
703 int err;
Ram Pai23c570a2011-07-05 23:44:30 -0700704 struct resource_constraint constraint;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705
Bjorn Helgaasa9cea012010-10-26 15:41:13 -0600706 if (!alignf)
707 alignf = simple_align_resource;
708
Ram Pai23c570a2011-07-05 23:44:30 -0700709 constraint.min = min;
710 constraint.max = max;
711 constraint.align = align;
712 constraint.alignf = alignf;
713 constraint.alignf_data = alignf_data;
714
715 if ( new->parent ) {
716 /* resource is already allocated, try reallocating with
717 the new constraints */
718 return reallocate_resource(root, new, size, &constraint);
719 }
720
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 write_lock(&resource_lock);
Ram Pai23c570a2011-07-05 23:44:30 -0700722 err = find_resource(root, new, size, &constraint);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 if (err >= 0 && __request_resource(root, new))
724 err = -EBUSY;
725 write_unlock(&resource_lock);
726 return err;
727}
728
729EXPORT_SYMBOL(allocate_resource);
730
Geert Uytterhoeven1c388912011-05-07 20:53:16 +0200731/**
732 * lookup_resource - find an existing resource by a resource start address
733 * @root: root resource descriptor
734 * @start: resource start address
735 *
736 * Returns a pointer to the resource if found, NULL otherwise
737 */
738struct resource *lookup_resource(struct resource *root, resource_size_t start)
739{
740 struct resource *res;
741
742 read_lock(&resource_lock);
743 for (res = root->child; res; res = res->sibling) {
744 if (res->start == start)
745 break;
746 }
747 read_unlock(&resource_lock);
748
749 return res;
750}
751
Linus Torvaldsbef69ea2008-08-29 20:18:31 -0700752/*
753 * Insert a resource into the resource tree. If successful, return NULL,
754 * otherwise return the conflicting resource (compare to __request_resource())
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 */
Linus Torvaldsbef69ea2008-08-29 20:18:31 -0700756static struct resource * __insert_resource(struct resource *parent, struct resource *new)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 struct resource *first, *next;
759
Matthew Wilcoxd33b6fb2006-06-30 02:31:24 -0700760 for (;; parent = first) {
Matthew Wilcoxd33b6fb2006-06-30 02:31:24 -0700761 first = __request_resource(parent, new);
762 if (!first)
Linus Torvaldsbef69ea2008-08-29 20:18:31 -0700763 return first;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764
Matthew Wilcoxd33b6fb2006-06-30 02:31:24 -0700765 if (first == parent)
Linus Torvaldsbef69ea2008-08-29 20:18:31 -0700766 return first;
Huang Shijie5de1cb22010-10-27 15:34:52 -0700767 if (WARN_ON(first == new)) /* duplicated insertion */
768 return first;
Matthew Wilcoxd33b6fb2006-06-30 02:31:24 -0700769
770 if ((first->start > new->start) || (first->end < new->end))
771 break;
772 if ((first->start == new->start) && (first->end == new->end))
773 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 }
775
776 for (next = first; ; next = next->sibling) {
777 /* Partial overlap? Bad, and unfixable */
778 if (next->start < new->start || next->end > new->end)
Linus Torvaldsbef69ea2008-08-29 20:18:31 -0700779 return next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 if (!next->sibling)
781 break;
782 if (next->sibling->start > new->end)
783 break;
784 }
785
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 new->parent = parent;
787 new->sibling = next->sibling;
788 new->child = first;
789
790 next->sibling = NULL;
791 for (next = first; next; next = next->sibling)
792 next->parent = new;
793
794 if (parent->child == first) {
795 parent->child = new;
796 } else {
797 next = parent->child;
798 while (next->sibling != first)
799 next = next->sibling;
800 next->sibling = new;
801 }
Linus Torvaldsbef69ea2008-08-29 20:18:31 -0700802 return NULL;
803}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804
Linus Torvaldsbef69ea2008-08-29 20:18:31 -0700805/**
Bjorn Helgaas66f12072010-03-11 17:01:09 -0700806 * insert_resource_conflict - Inserts resource in the resource tree
Linus Torvaldsbef69ea2008-08-29 20:18:31 -0700807 * @parent: parent of the new resource
808 * @new: new resource to insert
809 *
Bjorn Helgaas66f12072010-03-11 17:01:09 -0700810 * Returns 0 on success, conflict resource if the resource can't be inserted.
Linus Torvaldsbef69ea2008-08-29 20:18:31 -0700811 *
Bjorn Helgaas66f12072010-03-11 17:01:09 -0700812 * This function is equivalent to request_resource_conflict when no conflict
Linus Torvaldsbef69ea2008-08-29 20:18:31 -0700813 * happens. If a conflict happens, and the conflicting resources
814 * entirely fit within the range of the new resource, then the new
815 * resource is inserted and the conflicting resources become children of
816 * the new resource.
817 */
Bjorn Helgaas66f12072010-03-11 17:01:09 -0700818struct resource *insert_resource_conflict(struct resource *parent, struct resource *new)
Linus Torvaldsbef69ea2008-08-29 20:18:31 -0700819{
820 struct resource *conflict;
821
822 write_lock(&resource_lock);
823 conflict = __insert_resource(parent, new);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 write_unlock(&resource_lock);
Bjorn Helgaas66f12072010-03-11 17:01:09 -0700825 return conflict;
826}
827
828/**
829 * insert_resource - Inserts a resource in the resource tree
830 * @parent: parent of the new resource
831 * @new: new resource to insert
832 *
833 * Returns 0 on success, -EBUSY if the resource can't be inserted.
834 */
835int insert_resource(struct resource *parent, struct resource *new)
836{
837 struct resource *conflict;
838
839 conflict = insert_resource_conflict(parent, new);
Linus Torvaldsbef69ea2008-08-29 20:18:31 -0700840 return conflict ? -EBUSY : 0;
841}
842
843/**
844 * insert_resource_expand_to_fit - Insert a resource into the resource tree
Randy Dunlap6781f4a2008-08-31 20:31:55 -0700845 * @root: root resource descriptor
Linus Torvaldsbef69ea2008-08-29 20:18:31 -0700846 * @new: new resource to insert
847 *
848 * Insert a resource into the resource tree, possibly expanding it in order
849 * to make it encompass any conflicting resources.
850 */
851void insert_resource_expand_to_fit(struct resource *root, struct resource *new)
852{
853 if (new->parent)
854 return;
855
856 write_lock(&resource_lock);
857 for (;;) {
858 struct resource *conflict;
859
860 conflict = __insert_resource(root, new);
861 if (!conflict)
862 break;
863 if (conflict == root)
864 break;
865
866 /* Ok, expand resource to cover the conflict, then try again .. */
867 if (conflict->start < new->start)
868 new->start = conflict->start;
869 if (conflict->end > new->end)
870 new->end = conflict->end;
871
872 printk("Expanded resource %s due to conflict with %s\n", new->name, conflict->name);
873 }
874 write_unlock(&resource_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875}
876
Toshi Kaniae8e3a92013-04-29 15:08:17 -0700877static int __adjust_resource(struct resource *res, resource_size_t start,
878 resource_size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879{
880 struct resource *tmp, *parent = res->parent;
Greg Kroah-Hartmand75fc8b2006-06-12 16:09:23 -0700881 resource_size_t end = start + size - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 int result = -EBUSY;
883
Yinghai Lu82ec90e2012-05-17 18:51:11 -0700884 if (!parent)
885 goto skip;
886
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 if ((start < parent->start) || (end > parent->end))
888 goto out;
889
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 if (res->sibling && (res->sibling->start <= end))
891 goto out;
892
893 tmp = parent->child;
894 if (tmp != res) {
895 while (tmp->sibling != res)
896 tmp = tmp->sibling;
897 if (start <= tmp->end)
898 goto out;
899 }
900
Yinghai Lu82ec90e2012-05-17 18:51:11 -0700901skip:
902 for (tmp = res->child; tmp; tmp = tmp->sibling)
903 if ((tmp->start < start) || (tmp->end > end))
904 goto out;
905
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 res->start = start;
907 res->end = end;
908 result = 0;
909
910 out:
Toshi Kaniae8e3a92013-04-29 15:08:17 -0700911 return result;
912}
913
914/**
915 * adjust_resource - modify a resource's start and size
916 * @res: resource to modify
917 * @start: new start value
918 * @size: new size
919 *
920 * Given an existing resource, change its start and size to match the
921 * arguments. Returns 0 on success, -EBUSY if it can't fit.
922 * Existing children of the resource are assumed to be immutable.
923 */
924int adjust_resource(struct resource *res, resource_size_t start,
925 resource_size_t size)
926{
927 int result;
928
929 write_lock(&resource_lock);
930 result = __adjust_resource(res, start, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 write_unlock(&resource_lock);
932 return result;
933}
Cong Wang24105742012-02-03 21:42:39 +0800934EXPORT_SYMBOL(adjust_resource);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935
Yinghai Lu268364a2008-09-04 21:02:44 +0200936static void __init __reserve_region_with_split(struct resource *root,
937 resource_size_t start, resource_size_t end,
938 const char *name)
939{
940 struct resource *parent = root;
941 struct resource *conflict;
Yasuaki Ishimatsuebff7d82013-04-29 15:08:56 -0700942 struct resource *res = alloc_resource(GFP_ATOMIC);
T Makphaibulchoke4965f562012-10-04 17:16:55 -0700943 struct resource *next_res = NULL;
Yinghai Lu268364a2008-09-04 21:02:44 +0200944
945 if (!res)
946 return;
947
948 res->name = name;
949 res->start = start;
950 res->end = end;
951 res->flags = IORESOURCE_BUSY;
952
T Makphaibulchoke4965f562012-10-04 17:16:55 -0700953 while (1) {
Yinghai Lu268364a2008-09-04 21:02:44 +0200954
T Makphaibulchoke4965f562012-10-04 17:16:55 -0700955 conflict = __request_resource(parent, res);
956 if (!conflict) {
957 if (!next_res)
958 break;
959 res = next_res;
960 next_res = NULL;
961 continue;
962 }
Yinghai Lu268364a2008-09-04 21:02:44 +0200963
T Makphaibulchoke4965f562012-10-04 17:16:55 -0700964 /* conflict covered whole area */
965 if (conflict->start <= res->start &&
966 conflict->end >= res->end) {
Yasuaki Ishimatsuebff7d82013-04-29 15:08:56 -0700967 free_resource(res);
T Makphaibulchoke4965f562012-10-04 17:16:55 -0700968 WARN_ON(next_res);
969 break;
970 }
Yinghai Lu268364a2008-09-04 21:02:44 +0200971
T Makphaibulchoke4965f562012-10-04 17:16:55 -0700972 /* failed, split and try again */
973 if (conflict->start > res->start) {
974 end = res->end;
975 res->end = conflict->start - 1;
976 if (conflict->end < end) {
Yasuaki Ishimatsuebff7d82013-04-29 15:08:56 -0700977 next_res = alloc_resource(GFP_ATOMIC);
T Makphaibulchoke4965f562012-10-04 17:16:55 -0700978 if (!next_res) {
Yasuaki Ishimatsuebff7d82013-04-29 15:08:56 -0700979 free_resource(res);
T Makphaibulchoke4965f562012-10-04 17:16:55 -0700980 break;
981 }
982 next_res->name = name;
983 next_res->start = conflict->end + 1;
984 next_res->end = end;
985 next_res->flags = IORESOURCE_BUSY;
986 }
987 } else {
988 res->start = conflict->end + 1;
989 }
990 }
991
Yinghai Lu268364a2008-09-04 21:02:44 +0200992}
993
Paul Mundtbea92112008-10-22 19:31:11 +0900994void __init reserve_region_with_split(struct resource *root,
Yinghai Lu268364a2008-09-04 21:02:44 +0200995 resource_size_t start, resource_size_t end,
996 const char *name)
997{
Octavian Purdila65fed8f2012-07-30 14:42:58 -0700998 int abort = 0;
999
Yinghai Lu268364a2008-09-04 21:02:44 +02001000 write_lock(&resource_lock);
Octavian Purdila65fed8f2012-07-30 14:42:58 -07001001 if (root->start > start || root->end < end) {
1002 pr_err("requested range [0x%llx-0x%llx] not in root %pr\n",
1003 (unsigned long long)start, (unsigned long long)end,
1004 root);
1005 if (start > root->end || end < root->start)
1006 abort = 1;
1007 else {
1008 if (end > root->end)
1009 end = root->end;
1010 if (start < root->start)
1011 start = root->start;
1012 pr_err("fixing request to [0x%llx-0x%llx]\n",
1013 (unsigned long long)start,
1014 (unsigned long long)end);
1015 }
1016 dump_stack();
1017 }
1018 if (!abort)
1019 __reserve_region_with_split(root, start, end, name);
Yinghai Lu268364a2008-09-04 21:02:44 +02001020 write_unlock(&resource_lock);
1021}
1022
Ivan Kokshaysky88452562008-03-30 19:50:14 +04001023/**
1024 * resource_alignment - calculate resource's alignment
1025 * @res: resource pointer
1026 *
1027 * Returns alignment on success, 0 (invalid alignment) on failure.
1028 */
1029resource_size_t resource_alignment(struct resource *res)
1030{
1031 switch (res->flags & (IORESOURCE_SIZEALIGN | IORESOURCE_STARTALIGN)) {
1032 case IORESOURCE_SIZEALIGN:
Magnus Damm1a4e5642008-07-29 22:32:57 -07001033 return resource_size(res);
Ivan Kokshaysky88452562008-03-30 19:50:14 +04001034 case IORESOURCE_STARTALIGN:
1035 return res->start;
1036 default:
1037 return 0;
1038 }
1039}
1040
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041/*
1042 * This is compatibility stuff for IO resources.
1043 *
1044 * Note how this, unlike the above, knows about
1045 * the IO flag meanings (busy etc).
1046 *
Randy Dunlape1ca66d2006-10-03 01:13:51 -07001047 * request_region creates a new busy region.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 *
Randy Dunlape1ca66d2006-10-03 01:13:51 -07001049 * release_region releases a matching busy region.
1050 */
1051
Alan Cox8b6d0432010-03-29 19:38:00 +02001052static DECLARE_WAIT_QUEUE_HEAD(muxed_resource_wait);
1053
Randy Dunlape1ca66d2006-10-03 01:13:51 -07001054/**
1055 * __request_region - create a new busy resource region
1056 * @parent: parent resource descriptor
1057 * @start: resource start address
1058 * @n: resource region size
1059 * @name: reserving caller's ID string
Randy Dunlap6ae301e2009-01-15 13:51:01 -08001060 * @flags: IO resource flags
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 */
Greg Kroah-Hartmand75fc8b2006-06-12 16:09:23 -07001062struct resource * __request_region(struct resource *parent,
1063 resource_size_t start, resource_size_t n,
Arjan van de Vene8de1482008-10-22 19:55:31 -07001064 const char *name, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065{
Alan Cox8b6d0432010-03-29 19:38:00 +02001066 DECLARE_WAITQUEUE(wait, current);
Yasuaki Ishimatsuebff7d82013-04-29 15:08:56 -07001067 struct resource *res = alloc_resource(GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068
Bjorn Helgaasc26ec882008-10-15 22:05:14 -07001069 if (!res)
1070 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071
Bjorn Helgaasc26ec882008-10-15 22:05:14 -07001072 res->name = name;
1073 res->start = start;
1074 res->end = start + n - 1;
Toshi Kania3650d52016-01-26 21:57:18 +01001075 res->flags = resource_type(parent) | resource_ext_type(parent);
Bjorn Helgaas6404e882014-03-07 09:22:19 -07001076 res->flags |= IORESOURCE_BUSY | flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077
Bjorn Helgaasc26ec882008-10-15 22:05:14 -07001078 write_lock(&resource_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079
Bjorn Helgaasc26ec882008-10-15 22:05:14 -07001080 for (;;) {
1081 struct resource *conflict;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082
Bjorn Helgaasc26ec882008-10-15 22:05:14 -07001083 conflict = __request_resource(parent, res);
1084 if (!conflict)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 break;
Bjorn Helgaasc26ec882008-10-15 22:05:14 -07001086 if (conflict != parent) {
1087 parent = conflict;
1088 if (!(conflict->flags & IORESOURCE_BUSY))
1089 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 }
Alan Cox8b6d0432010-03-29 19:38:00 +02001091 if (conflict->flags & flags & IORESOURCE_MUXED) {
1092 add_wait_queue(&muxed_resource_wait, &wait);
1093 write_unlock(&resource_lock);
1094 set_current_state(TASK_UNINTERRUPTIBLE);
1095 schedule();
1096 remove_wait_queue(&muxed_resource_wait, &wait);
1097 write_lock(&resource_lock);
1098 continue;
1099 }
Bjorn Helgaasc26ec882008-10-15 22:05:14 -07001100 /* Uhhuh, that didn't work out.. */
Yasuaki Ishimatsuebff7d82013-04-29 15:08:56 -07001101 free_resource(res);
Bjorn Helgaasc26ec882008-10-15 22:05:14 -07001102 res = NULL;
1103 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 }
Bjorn Helgaasc26ec882008-10-15 22:05:14 -07001105 write_unlock(&resource_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106 return res;
1107}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108EXPORT_SYMBOL(__request_region);
1109
Randy Dunlape1ca66d2006-10-03 01:13:51 -07001110/**
Randy Dunlape1ca66d2006-10-03 01:13:51 -07001111 * __release_region - release a previously reserved resource region
1112 * @parent: parent resource descriptor
1113 * @start: resource start address
1114 * @n: resource region size
1115 *
1116 * The described resource region must match a currently busy region.
1117 */
Greg Kroah-Hartmand75fc8b2006-06-12 16:09:23 -07001118void __release_region(struct resource *parent, resource_size_t start,
1119 resource_size_t n)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120{
1121 struct resource **p;
Greg Kroah-Hartmand75fc8b2006-06-12 16:09:23 -07001122 resource_size_t end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123
1124 p = &parent->child;
1125 end = start + n - 1;
1126
1127 write_lock(&resource_lock);
1128
1129 for (;;) {
1130 struct resource *res = *p;
1131
1132 if (!res)
1133 break;
1134 if (res->start <= start && res->end >= end) {
1135 if (!(res->flags & IORESOURCE_BUSY)) {
1136 p = &res->child;
1137 continue;
1138 }
1139 if (res->start != start || res->end != end)
1140 break;
1141 *p = res->sibling;
1142 write_unlock(&resource_lock);
Alan Cox8b6d0432010-03-29 19:38:00 +02001143 if (res->flags & IORESOURCE_MUXED)
1144 wake_up(&muxed_resource_wait);
Yasuaki Ishimatsuebff7d82013-04-29 15:08:56 -07001145 free_resource(res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 return;
1147 }
1148 p = &res->sibling;
1149 }
1150
1151 write_unlock(&resource_lock);
1152
Greg Kroah-Hartman685143ac2006-06-12 15:18:31 -07001153 printk(KERN_WARNING "Trying to free nonexistent resource "
1154 "<%016llx-%016llx>\n", (unsigned long long)start,
1155 (unsigned long long)end);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157EXPORT_SYMBOL(__release_region);
1158
Toshi Kani825f7872013-04-29 15:08:19 -07001159#ifdef CONFIG_MEMORY_HOTREMOVE
1160/**
1161 * release_mem_region_adjustable - release a previously reserved memory region
1162 * @parent: parent resource descriptor
1163 * @start: resource start address
1164 * @size: resource region size
1165 *
1166 * This interface is intended for memory hot-delete. The requested region
1167 * is released from a currently busy memory resource. The requested region
1168 * must either match exactly or fit into a single busy resource entry. In
1169 * the latter case, the remaining resource is adjusted accordingly.
1170 * Existing children of the busy memory resource must be immutable in the
1171 * request.
1172 *
1173 * Note:
1174 * - Additional release conditions, such as overlapping region, can be
1175 * supported after they are confirmed as valid cases.
1176 * - When a busy memory resource gets split into two entries, the code
1177 * assumes that all children remain in the lower address entry for
1178 * simplicity. Enhance this logic when necessary.
1179 */
1180int release_mem_region_adjustable(struct resource *parent,
1181 resource_size_t start, resource_size_t size)
1182{
1183 struct resource **p;
1184 struct resource *res;
1185 struct resource *new_res;
1186 resource_size_t end;
1187 int ret = -EINVAL;
1188
1189 end = start + size - 1;
1190 if ((start < parent->start) || (end > parent->end))
1191 return ret;
1192
Yasuaki Ishimatsuebff7d82013-04-29 15:08:56 -07001193 /* The alloc_resource() result gets checked later */
1194 new_res = alloc_resource(GFP_KERNEL);
Toshi Kani825f7872013-04-29 15:08:19 -07001195
1196 p = &parent->child;
1197 write_lock(&resource_lock);
1198
1199 while ((res = *p)) {
1200 if (res->start >= end)
1201 break;
1202
1203 /* look for the next resource if it does not fit into */
1204 if (res->start > start || res->end < end) {
1205 p = &res->sibling;
1206 continue;
1207 }
1208
1209 if (!(res->flags & IORESOURCE_MEM))
1210 break;
1211
1212 if (!(res->flags & IORESOURCE_BUSY)) {
1213 p = &res->child;
1214 continue;
1215 }
1216
1217 /* found the target resource; let's adjust accordingly */
1218 if (res->start == start && res->end == end) {
1219 /* free the whole entry */
1220 *p = res->sibling;
Yasuaki Ishimatsuebff7d82013-04-29 15:08:56 -07001221 free_resource(res);
Toshi Kani825f7872013-04-29 15:08:19 -07001222 ret = 0;
1223 } else if (res->start == start && res->end != end) {
1224 /* adjust the start */
1225 ret = __adjust_resource(res, end + 1,
1226 res->end - end);
1227 } else if (res->start != start && res->end == end) {
1228 /* adjust the end */
1229 ret = __adjust_resource(res, res->start,
1230 start - res->start);
1231 } else {
1232 /* split into two entries */
1233 if (!new_res) {
1234 ret = -ENOMEM;
1235 break;
1236 }
1237 new_res->name = res->name;
1238 new_res->start = end + 1;
1239 new_res->end = res->end;
1240 new_res->flags = res->flags;
1241 new_res->parent = res->parent;
1242 new_res->sibling = res->sibling;
1243 new_res->child = NULL;
1244
1245 ret = __adjust_resource(res, res->start,
1246 start - res->start);
1247 if (ret)
1248 break;
1249 res->sibling = new_res;
1250 new_res = NULL;
1251 }
1252
1253 break;
1254 }
1255
1256 write_unlock(&resource_lock);
Yasuaki Ishimatsuebff7d82013-04-29 15:08:56 -07001257 free_resource(new_res);
Toshi Kani825f7872013-04-29 15:08:19 -07001258 return ret;
1259}
1260#endif /* CONFIG_MEMORY_HOTREMOVE */
1261
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262/*
Tejun Heo9ac78492007-01-20 16:00:26 +09001263 * Managed region resource
1264 */
Thierry Reding8d388212014-08-01 14:15:10 +02001265static void devm_resource_release(struct device *dev, void *ptr)
1266{
1267 struct resource **r = ptr;
1268
1269 release_resource(*r);
1270}
1271
1272/**
1273 * devm_request_resource() - request and reserve an I/O or memory resource
1274 * @dev: device for which to request the resource
1275 * @root: root of the resource tree from which to request the resource
1276 * @new: descriptor of the resource to request
1277 *
1278 * This is a device-managed version of request_resource(). There is usually
1279 * no need to release resources requested by this function explicitly since
1280 * that will be taken care of when the device is unbound from its driver.
1281 * If for some reason the resource needs to be released explicitly, because
1282 * of ordering issues for example, drivers must call devm_release_resource()
1283 * rather than the regular release_resource().
1284 *
1285 * When a conflict is detected between any existing resources and the newly
1286 * requested resource, an error message will be printed.
1287 *
1288 * Returns 0 on success or a negative error code on failure.
1289 */
1290int devm_request_resource(struct device *dev, struct resource *root,
1291 struct resource *new)
1292{
1293 struct resource *conflict, **ptr;
1294
1295 ptr = devres_alloc(devm_resource_release, sizeof(*ptr), GFP_KERNEL);
1296 if (!ptr)
1297 return -ENOMEM;
1298
1299 *ptr = new;
1300
1301 conflict = request_resource_conflict(root, new);
1302 if (conflict) {
1303 dev_err(dev, "resource collision: %pR conflicts with %s %pR\n",
1304 new, conflict->name, conflict);
1305 devres_free(ptr);
1306 return -EBUSY;
1307 }
1308
1309 devres_add(dev, ptr);
1310 return 0;
1311}
1312EXPORT_SYMBOL(devm_request_resource);
1313
1314static int devm_resource_match(struct device *dev, void *res, void *data)
1315{
1316 struct resource **ptr = res;
1317
1318 return *ptr == data;
1319}
1320
1321/**
1322 * devm_release_resource() - release a previously requested resource
1323 * @dev: device for which to release the resource
1324 * @new: descriptor of the resource to release
1325 *
1326 * Releases a resource previously requested using devm_request_resource().
1327 */
1328void devm_release_resource(struct device *dev, struct resource *new)
1329{
1330 WARN_ON(devres_release(dev, devm_resource_release, devm_resource_match,
1331 new));
1332}
1333EXPORT_SYMBOL(devm_release_resource);
1334
Tejun Heo9ac78492007-01-20 16:00:26 +09001335struct region_devres {
1336 struct resource *parent;
1337 resource_size_t start;
1338 resource_size_t n;
1339};
1340
1341static void devm_region_release(struct device *dev, void *res)
1342{
1343 struct region_devres *this = res;
1344
1345 __release_region(this->parent, this->start, this->n);
1346}
1347
1348static int devm_region_match(struct device *dev, void *res, void *match_data)
1349{
1350 struct region_devres *this = res, *match = match_data;
1351
1352 return this->parent == match->parent &&
1353 this->start == match->start && this->n == match->n;
1354}
1355
1356struct resource * __devm_request_region(struct device *dev,
1357 struct resource *parent, resource_size_t start,
1358 resource_size_t n, const char *name)
1359{
1360 struct region_devres *dr = NULL;
1361 struct resource *res;
1362
1363 dr = devres_alloc(devm_region_release, sizeof(struct region_devres),
1364 GFP_KERNEL);
1365 if (!dr)
1366 return NULL;
1367
1368 dr->parent = parent;
1369 dr->start = start;
1370 dr->n = n;
1371
Arjan van de Vene8de1482008-10-22 19:55:31 -07001372 res = __request_region(parent, start, n, name, 0);
Tejun Heo9ac78492007-01-20 16:00:26 +09001373 if (res)
1374 devres_add(dev, dr);
1375 else
1376 devres_free(dr);
1377
1378 return res;
1379}
1380EXPORT_SYMBOL(__devm_request_region);
1381
1382void __devm_release_region(struct device *dev, struct resource *parent,
1383 resource_size_t start, resource_size_t n)
1384{
1385 struct region_devres match_data = { parent, start, n };
1386
1387 __release_region(parent, start, n);
1388 WARN_ON(devres_destroy(dev, devm_region_release, devm_region_match,
1389 &match_data));
1390}
1391EXPORT_SYMBOL(__devm_release_region);
1392
1393/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394 * Called from init/main.c to reserve IO ports.
1395 */
1396#define MAXRESERVE 4
1397static int __init reserve_setup(char *str)
1398{
1399 static int reserved;
1400 static struct resource reserve[MAXRESERVE];
1401
1402 for (;;) {
Zhang Rui8bc1ad72009-06-30 11:41:31 -07001403 unsigned int io_start, io_num;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404 int x = reserved;
1405
1406 if (get_option (&str, &io_start) != 2)
1407 break;
1408 if (get_option (&str, &io_num) == 0)
1409 break;
1410 if (x < MAXRESERVE) {
1411 struct resource *res = reserve + x;
1412 res->name = "reserved";
1413 res->start = io_start;
1414 res->end = io_start + io_num - 1;
1415 res->flags = IORESOURCE_BUSY;
1416 res->child = NULL;
1417 if (request_resource(res->start >= 0x10000 ? &iomem_resource : &ioport_resource, res) == 0)
1418 reserved = x+1;
1419 }
1420 }
1421 return 1;
1422}
1423
1424__setup("reserve=", reserve_setup);
Suresh Siddha379daf62008-09-25 18:43:34 -07001425
1426/*
1427 * Check if the requested addr and size spans more than any slot in the
1428 * iomem resource tree.
1429 */
1430int iomem_map_sanity_check(resource_size_t addr, unsigned long size)
1431{
1432 struct resource *p = &iomem_resource;
1433 int err = 0;
1434 loff_t l;
1435
1436 read_lock(&resource_lock);
1437 for (p = p->child; p ; p = r_next(NULL, p, &l)) {
1438 /*
1439 * We can probably skip the resources without
1440 * IORESOURCE_IO attribute?
1441 */
1442 if (p->start >= addr + size)
1443 continue;
1444 if (p->end < addr)
1445 continue;
Suresh Siddhad68612b2008-10-28 11:45:42 -07001446 if (PFN_DOWN(p->start) <= PFN_DOWN(addr) &&
1447 PFN_DOWN(p->end) >= PFN_DOWN(addr + size - 1))
Suresh Siddha379daf62008-09-25 18:43:34 -07001448 continue;
Arjan van de Ven3ac52662008-12-13 09:15:27 -08001449 /*
1450 * if a resource is "BUSY", it's not a hardware resource
1451 * but a driver mapping of such a resource; we don't want
1452 * to warn for those; some drivers legitimately map only
1453 * partial hardware resources. (example: vesafb)
1454 */
1455 if (p->flags & IORESOURCE_BUSY)
1456 continue;
1457
Bjorn Helgaase4c72962014-04-14 15:38:11 -06001458 printk(KERN_WARNING "resource sanity check: requesting [mem %#010llx-%#010llx], which spans more than %s %pR\n",
Ingo Molnar13eb8372008-09-26 10:10:12 +02001459 (unsigned long long)addr,
1460 (unsigned long long)(addr + size - 1),
Bjorn Helgaase4c72962014-04-14 15:38:11 -06001461 p->name, p);
Suresh Siddha379daf62008-09-25 18:43:34 -07001462 err = -1;
1463 break;
1464 }
1465 read_unlock(&resource_lock);
1466
1467 return err;
1468}
Arjan van de Vene8de1482008-10-22 19:55:31 -07001469
1470#ifdef CONFIG_STRICT_DEVMEM
1471static int strict_iomem_checks = 1;
1472#else
1473static int strict_iomem_checks;
1474#endif
1475
1476/*
1477 * check if an address is reserved in the iomem resource tree
1478 * returns 1 if reserved, 0 if not reserved.
1479 */
1480int iomem_is_exclusive(u64 addr)
1481{
1482 struct resource *p = &iomem_resource;
1483 int err = 0;
1484 loff_t l;
1485 int size = PAGE_SIZE;
1486
1487 if (!strict_iomem_checks)
1488 return 0;
1489
1490 addr = addr & PAGE_MASK;
1491
1492 read_lock(&resource_lock);
1493 for (p = p->child; p ; p = r_next(NULL, p, &l)) {
1494 /*
1495 * We can probably skip the resources without
1496 * IORESOURCE_IO attribute?
1497 */
1498 if (p->start >= addr + size)
1499 break;
1500 if (p->end < addr)
1501 continue;
Dan Williams90a545e2015-11-23 15:49:03 -08001502 /*
1503 * A resource is exclusive if IORESOURCE_EXCLUSIVE is set
1504 * or CONFIG_IO_STRICT_DEVMEM is enabled and the
1505 * resource is busy.
1506 */
1507 if ((p->flags & IORESOURCE_BUSY) == 0)
1508 continue;
1509 if (IS_ENABLED(CONFIG_IO_STRICT_DEVMEM)
1510 || p->flags & IORESOURCE_EXCLUSIVE) {
Arjan van de Vene8de1482008-10-22 19:55:31 -07001511 err = 1;
1512 break;
1513 }
1514 }
1515 read_unlock(&resource_lock);
1516
1517 return err;
1518}
1519
Jiang Liu90e97822015-02-05 13:44:43 +08001520struct resource_entry *resource_list_create_entry(struct resource *res,
1521 size_t extra_size)
1522{
1523 struct resource_entry *entry;
1524
1525 entry = kzalloc(sizeof(*entry) + extra_size, GFP_KERNEL);
1526 if (entry) {
1527 INIT_LIST_HEAD(&entry->node);
1528 entry->res = res ? res : &entry->__res;
1529 }
1530
1531 return entry;
1532}
1533EXPORT_SYMBOL(resource_list_create_entry);
1534
1535void resource_list_free(struct list_head *head)
1536{
1537 struct resource_entry *entry, *tmp;
1538
1539 list_for_each_entry_safe(entry, tmp, head, node)
1540 resource_list_destroy_entry(entry);
1541}
1542EXPORT_SYMBOL(resource_list_free);
1543
Arjan van de Vene8de1482008-10-22 19:55:31 -07001544static int __init strict_iomem(char *str)
1545{
1546 if (strstr(str, "relaxed"))
1547 strict_iomem_checks = 0;
1548 if (strstr(str, "strict"))
1549 strict_iomem_checks = 1;
1550 return 1;
1551}
1552
1553__setup("iomem=", strict_iomem);