blob: b589dda910b30cf98b07943c828e6b5573a2d962 [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{
Christoph Hellwig4e292a92018-04-11 11:52:39 +020090 struct resource *p = PDE_DATA(file_inode(m->file));
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 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{
Christoph Hellwig4e292a92018-04-11 11:52:39 +0200106 struct resource *root = PDE_DATA(file_inode(m->file));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 struct resource *r = v, *p;
Linus Torvalds51d7b122016-04-14 12:05:37 -0700108 unsigned long long start, end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 int width = root->end < 0x10000 ? 4 : 8;
110 int depth;
111
112 for (depth = 0, p = r; depth < MAX_IORES_LEVEL; depth++, p = p->parent)
113 if (p->parent == root)
114 break;
Linus Torvalds51d7b122016-04-14 12:05:37 -0700115
116 if (file_ns_capable(m->file, &init_user_ns, CAP_SYS_ADMIN)) {
117 start = r->start;
118 end = r->end;
119 } else {
120 start = end = 0;
121 }
122
Greg Kroah-Hartman685143ac2006-06-12 15:18:31 -0700123 seq_printf(m, "%*s%0*llx-%0*llx : %s\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 depth * 2, "",
Linus Torvalds51d7b122016-04-14 12:05:37 -0700125 width, start,
126 width, end,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 r->name ? r->name : "<BAD>");
128 return 0;
129}
130
Helge Deller15ad7cd2006-12-06 20:40:36 -0800131static const struct seq_operations resource_op = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 .start = r_start,
133 .next = r_next,
134 .stop = r_stop,
135 .show = r_show,
136};
137
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138static int __init ioresources_init(void)
139{
Christoph Hellwig4e292a92018-04-11 11:52:39 +0200140 proc_create_seq_data("ioports", 0, NULL, &resource_op,
141 &ioport_resource);
142 proc_create_seq_data("iomem", 0, NULL, &resource_op, &iomem_resource);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 return 0;
144}
145__initcall(ioresources_init);
146
147#endif /* CONFIG_PROC_FS */
148
Yasuaki Ishimatsuebff7d82013-04-29 15:08:56 -0700149static void free_resource(struct resource *res)
150{
151 if (!res)
152 return;
153
154 if (!PageSlab(virt_to_head_page(res))) {
155 spin_lock(&bootmem_resource_lock);
156 res->sibling = bootmem_resource_free;
157 bootmem_resource_free = res;
158 spin_unlock(&bootmem_resource_lock);
159 } else {
160 kfree(res);
161 }
162}
163
164static struct resource *alloc_resource(gfp_t flags)
165{
166 struct resource *res = NULL;
167
168 spin_lock(&bootmem_resource_lock);
169 if (bootmem_resource_free) {
170 res = bootmem_resource_free;
171 bootmem_resource_free = res->sibling;
172 }
173 spin_unlock(&bootmem_resource_lock);
174
175 if (res)
176 memset(res, 0, sizeof(struct resource));
177 else
178 res = kzalloc(sizeof(struct resource), flags);
179
180 return res;
181}
182
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183/* Return the conflict entry if you can't request it */
184static struct resource * __request_resource(struct resource *root, struct resource *new)
185{
Greg Kroah-Hartmand75fc8b2006-06-12 16:09:23 -0700186 resource_size_t start = new->start;
187 resource_size_t end = new->end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 struct resource *tmp, **p;
189
190 if (end < start)
191 return root;
192 if (start < root->start)
193 return root;
194 if (end > root->end)
195 return root;
196 p = &root->child;
197 for (;;) {
198 tmp = *p;
199 if (!tmp || tmp->start > end) {
200 new->sibling = tmp;
201 *p = new;
202 new->parent = root;
203 return NULL;
204 }
205 p = &tmp->sibling;
206 if (tmp->end < start)
207 continue;
208 return tmp;
209 }
210}
211
Toshi Kaniff3cc952016-03-09 12:47:04 -0700212static int __release_resource(struct resource *old, bool release_child)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213{
Toshi Kaniff3cc952016-03-09 12:47:04 -0700214 struct resource *tmp, **p, *chd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215
216 p = &old->parent->child;
217 for (;;) {
218 tmp = *p;
219 if (!tmp)
220 break;
221 if (tmp == old) {
Toshi Kaniff3cc952016-03-09 12:47:04 -0700222 if (release_child || !(tmp->child)) {
223 *p = tmp->sibling;
224 } else {
225 for (chd = tmp->child;; chd = chd->sibling) {
226 chd->parent = tmp->parent;
227 if (!(chd->sibling))
228 break;
229 }
230 *p = tmp->child;
231 chd->sibling = tmp->sibling;
232 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 old->parent = NULL;
234 return 0;
235 }
236 p = &tmp->sibling;
237 }
238 return -EINVAL;
239}
240
Yinghai Lu5eeec0e2009-12-22 15:02:22 -0800241static void __release_child_resources(struct resource *r)
242{
243 struct resource *tmp, *p;
244 resource_size_t size;
245
246 p = r->child;
247 r->child = NULL;
248 while (p) {
249 tmp = p;
250 p = p->sibling;
251
252 tmp->parent = NULL;
253 tmp->sibling = NULL;
254 __release_child_resources(tmp);
255
256 printk(KERN_DEBUG "release child resource %pR\n", tmp);
257 /* need to restore size, and keep flags */
258 size = resource_size(tmp);
259 tmp->start = 0;
260 tmp->end = size - 1;
261 }
262}
263
264void release_child_resources(struct resource *r)
265{
266 write_lock(&resource_lock);
267 __release_child_resources(r);
268 write_unlock(&resource_lock);
269}
270
Randy Dunlape1ca66d1b2006-10-03 01:13:51 -0700271/**
Bjorn Helgaas66f12072010-03-11 17:01:09 -0700272 * request_resource_conflict - request and reserve an I/O or memory resource
273 * @root: root resource descriptor
274 * @new: resource descriptor desired by caller
275 *
276 * Returns 0 for success, conflict resource on error.
277 */
278struct resource *request_resource_conflict(struct resource *root, struct resource *new)
279{
280 struct resource *conflict;
281
282 write_lock(&resource_lock);
283 conflict = __request_resource(root, new);
284 write_unlock(&resource_lock);
285 return conflict;
286}
287
288/**
Randy Dunlape1ca66d1b2006-10-03 01:13:51 -0700289 * request_resource - request and reserve an I/O or memory resource
290 * @root: root resource descriptor
291 * @new: resource descriptor desired by caller
292 *
293 * Returns 0 for success, negative error code on error.
294 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295int request_resource(struct resource *root, struct resource *new)
296{
297 struct resource *conflict;
298
Bjorn Helgaas66f12072010-03-11 17:01:09 -0700299 conflict = request_resource_conflict(root, new);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 return conflict ? -EBUSY : 0;
301}
302
303EXPORT_SYMBOL(request_resource);
304
Randy Dunlape1ca66d1b2006-10-03 01:13:51 -0700305/**
Randy Dunlape1ca66d1b2006-10-03 01:13:51 -0700306 * release_resource - release a previously reserved resource
307 * @old: resource pointer
308 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309int release_resource(struct resource *old)
310{
311 int retval;
312
313 write_lock(&resource_lock);
Toshi Kaniff3cc952016-03-09 12:47:04 -0700314 retval = __release_resource(old, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 write_unlock(&resource_lock);
316 return retval;
317}
318
319EXPORT_SYMBOL(release_resource);
320
KAMEZAWA Hiroyuki2842f112006-06-27 02:53:36 -0700321/*
Toshi Kani3f336472016-01-26 21:57:29 +0100322 * Finds the lowest iomem resource existing within [res->start.res->end).
323 * The caller must specify res->start, res->end, res->flags, and optionally
Toshi Kania8fc4252016-01-26 21:57:32 +0100324 * desc. If found, returns 0, res is overwritten, if not found, returns -1.
Toshi Kani3f336472016-01-26 21:57:29 +0100325 * This function walks the whole tree and not just first level children until
326 * and unless first_level_children_only is true.
KAMEZAWA Hiroyuki2842f112006-06-27 02:53:36 -0700327 */
Toshi Kani3f336472016-01-26 21:57:29 +0100328static int find_next_iomem_res(struct resource *res, unsigned long desc,
Toshi Kania8fc4252016-01-26 21:57:32 +0100329 bool first_level_children_only)
KAMEZAWA Hiroyuki2842f112006-06-27 02:53:36 -0700330{
331 resource_size_t start, end;
332 struct resource *p;
Vivek Goyal8c86e702014-08-08 14:25:50 -0700333 bool sibling_only = false;
KAMEZAWA Hiroyuki2842f112006-06-27 02:53:36 -0700334
335 BUG_ON(!res);
336
337 start = res->start;
338 end = res->end;
KAMEZAWA Hiroyuki58c1b5b2006-08-05 12:15:01 -0700339 BUG_ON(start >= end);
KAMEZAWA Hiroyuki2842f112006-06-27 02:53:36 -0700340
Vivek Goyal800df622014-08-29 15:18:29 -0700341 if (first_level_children_only)
342 sibling_only = true;
343
KAMEZAWA Hiroyuki2842f112006-06-27 02:53:36 -0700344 read_lock(&resource_lock);
Vivek Goyal8c86e702014-08-08 14:25:50 -0700345
Vivek Goyal800df622014-08-29 15:18:29 -0700346 for (p = iomem_resource.child; p; p = next_resource(p, sibling_only)) {
Toshi Kania3650d52016-01-26 21:57:18 +0100347 if ((p->flags & res->flags) != res->flags)
KAMEZAWA Hiroyuki2842f112006-06-27 02:53:36 -0700348 continue;
Toshi Kani3f336472016-01-26 21:57:29 +0100349 if ((desc != IORES_DESC_NONE) && (desc != p->desc))
350 continue;
KAMEZAWA Hiroyuki2842f112006-06-27 02:53:36 -0700351 if (p->start > end) {
352 p = NULL;
353 break;
354 }
KAMEZAWA Hiroyuki58c1b5b2006-08-05 12:15:01 -0700355 if ((p->end >= start) && (p->start < end))
KAMEZAWA Hiroyuki2842f112006-06-27 02:53:36 -0700356 break;
357 }
Vivek Goyal8c86e702014-08-08 14:25:50 -0700358
KAMEZAWA Hiroyuki2842f112006-06-27 02:53:36 -0700359 read_unlock(&resource_lock);
360 if (!p)
361 return -1;
362 /* copy data */
KAMEZAWA Hiroyuki0f04ab52006-08-05 12:14:59 -0700363 if (res->start < p->start)
364 res->start = p->start;
365 if (res->end > p->end)
366 res->end = p->end;
Tom Lendacky0e4c12b2017-10-20 09:30:52 -0500367 res->flags = p->flags;
368 res->desc = p->desc;
KAMEZAWA Hiroyuki2842f112006-06-27 02:53:36 -0700369 return 0;
370}
KAMEZAWA Hiroyuki908eedc2009-09-22 16:45:46 -0700371
Tom Lendacky4ac2aed2017-10-20 09:30:50 -0500372static int __walk_iomem_res_desc(struct resource *res, unsigned long desc,
373 bool first_level_children_only,
Tom Lendacky1d2e7332017-10-20 09:30:51 -0500374 void *arg,
375 int (*func)(struct resource *, void *))
Tom Lendacky4ac2aed2017-10-20 09:30:50 -0500376{
377 u64 orig_end = res->end;
378 int ret = -1;
379
380 while ((res->start < res->end) &&
381 !find_next_iomem_res(res, desc, first_level_children_only)) {
Tom Lendacky1d2e7332017-10-20 09:30:51 -0500382 ret = (*func)(res, arg);
Tom Lendacky4ac2aed2017-10-20 09:30:50 -0500383 if (ret)
384 break;
385
386 res->start = res->end + 1;
387 res->end = orig_end;
388 }
389
390 return ret;
391}
392
KAMEZAWA Hiroyuki908eedc2009-09-22 16:45:46 -0700393/*
Vivek Goyal8c86e702014-08-08 14:25:50 -0700394 * Walks through iomem resources and calls func() with matching resource
395 * ranges. This walks through whole tree and not just first level children.
396 * All the memory ranges which overlap start,end and also match flags and
Toshi Kani3f336472016-01-26 21:57:29 +0100397 * desc are valid candidates.
398 *
399 * @desc: I/O resource descriptor. Use IORES_DESC_NONE to skip @desc check.
400 * @flags: I/O resource flags
401 * @start: start addr
402 * @end: end addr
403 *
404 * NOTE: For a new descriptor search, define a new IORES_DESC in
405 * <linux/ioport.h> and set it in 'desc' of a target resource entry.
406 */
407int walk_iomem_res_desc(unsigned long desc, unsigned long flags, u64 start,
Tom Lendacky1d2e7332017-10-20 09:30:51 -0500408 u64 end, void *arg, int (*func)(struct resource *, void *))
Toshi Kani3f336472016-01-26 21:57:29 +0100409{
410 struct resource res;
Toshi Kani3f336472016-01-26 21:57:29 +0100411
412 res.start = start;
413 res.end = end;
414 res.flags = flags;
Toshi Kani3f336472016-01-26 21:57:29 +0100415
Tom Lendacky4ac2aed2017-10-20 09:30:50 -0500416 return __walk_iomem_res_desc(&res, desc, false, arg, func);
Toshi Kani3f336472016-01-26 21:57:29 +0100417}
418
419/*
Toshi Kanibd7e6cb2016-01-26 21:57:26 +0100420 * This function calls the @func callback against all memory ranges of type
421 * System RAM which are marked as IORESOURCE_SYSTEM_RAM and IORESOUCE_BUSY.
422 * Now, this function is only for System RAM, it deals with full ranges and
423 * not PFNs. If resources are not PFN-aligned, dealing with PFNs can truncate
424 * ranges.
Vivek Goyal8c86e702014-08-08 14:25:50 -0700425 */
426int walk_system_ram_res(u64 start, u64 end, void *arg,
Tom Lendacky1d2e7332017-10-20 09:30:51 -0500427 int (*func)(struct resource *, void *))
Vivek Goyal8c86e702014-08-08 14:25:50 -0700428{
429 struct resource res;
Vivek Goyal8c86e702014-08-08 14:25:50 -0700430
431 res.start = start;
432 res.end = end;
Toshi Kanibd7e6cb2016-01-26 21:57:26 +0100433 res.flags = IORESOURCE_SYSTEM_RAM | IORESOURCE_BUSY;
Tom Lendacky4ac2aed2017-10-20 09:30:50 -0500434
435 return __walk_iomem_res_desc(&res, IORES_DESC_NONE, true,
436 arg, func);
Vivek Goyal8c86e702014-08-08 14:25:50 -0700437}
438
Tom Lendacky0e4c12b2017-10-20 09:30:52 -0500439/*
440 * This function calls the @func callback against all memory ranges, which
441 * are ranges marked as IORESOURCE_MEM and IORESOUCE_BUSY.
442 */
443int walk_mem_res(u64 start, u64 end, void *arg,
444 int (*func)(struct resource *, void *))
445{
446 struct resource res;
447
448 res.start = start;
449 res.end = end;
450 res.flags = IORESOURCE_MEM | IORESOURCE_BUSY;
451
452 return __walk_iomem_res_desc(&res, IORES_DESC_NONE, true,
453 arg, func);
454}
455
Vivek Goyal8c86e702014-08-08 14:25:50 -0700456#if !defined(CONFIG_ARCH_HAS_WALK_MEMORY)
457
458/*
Toshi Kanibd7e6cb2016-01-26 21:57:26 +0100459 * This function calls the @func callback against all memory ranges of type
460 * System RAM which are marked as IORESOURCE_SYSTEM_RAM and IORESOUCE_BUSY.
461 * It is to be used only for System RAM.
KAMEZAWA Hiroyuki908eedc2009-09-22 16:45:46 -0700462 */
463int walk_system_ram_range(unsigned long start_pfn, unsigned long nr_pages,
464 void *arg, int (*func)(unsigned long, unsigned long, void *))
KAMEZAWA Hiroyuki75884fb2007-10-16 01:26:10 -0700465{
466 struct resource res;
Wu Fengguang37b99dd2010-03-01 21:55:51 +0800467 unsigned long pfn, end_pfn;
KAMEZAWA Hiroyuki75884fb2007-10-16 01:26:10 -0700468 u64 orig_end;
469 int ret = -1;
KAMEZAWA Hiroyuki908eedc2009-09-22 16:45:46 -0700470
KAMEZAWA Hiroyuki75884fb2007-10-16 01:26:10 -0700471 res.start = (u64) start_pfn << PAGE_SHIFT;
472 res.end = ((u64)(start_pfn + nr_pages) << PAGE_SHIFT) - 1;
Toshi Kanibd7e6cb2016-01-26 21:57:26 +0100473 res.flags = IORESOURCE_SYSTEM_RAM | IORESOURCE_BUSY;
KAMEZAWA Hiroyuki75884fb2007-10-16 01:26:10 -0700474 orig_end = res.end;
KAMEZAWA Hiroyuki908eedc2009-09-22 16:45:46 -0700475 while ((res.start < res.end) &&
Toshi Kania8fc4252016-01-26 21:57:32 +0100476 (find_next_iomem_res(&res, IORES_DESC_NONE, true) >= 0)) {
Wu Fengguang37b99dd2010-03-01 21:55:51 +0800477 pfn = (res.start + PAGE_SIZE - 1) >> PAGE_SHIFT;
478 end_pfn = (res.end + 1) >> PAGE_SHIFT;
479 if (end_pfn > pfn)
H. Peter Anvinf4149662010-03-02 11:21:09 -0800480 ret = (*func)(pfn, end_pfn - pfn, arg);
KAMEZAWA Hiroyuki75884fb2007-10-16 01:26:10 -0700481 if (ret)
482 break;
483 res.start = res.end + 1;
484 res.end = orig_end;
485 }
486 return ret;
487}
488
KAMEZAWA Hiroyuki2842f112006-06-27 02:53:36 -0700489#endif
490
Wu Fengguang61ef2482010-01-22 16:16:19 +0800491static int __is_ram(unsigned long pfn, unsigned long nr_pages, void *arg)
492{
493 return 1;
494}
Tom Lendacky4ac2aed2017-10-20 09:30:50 -0500495
Wu Fengguang61ef2482010-01-22 16:16:19 +0800496/*
497 * This generic page_is_ram() returns true if specified address is
Toshi Kanibd7e6cb2016-01-26 21:57:26 +0100498 * registered as System RAM in iomem_resource list.
Wu Fengguang61ef2482010-01-22 16:16:19 +0800499 */
Andrew Mortone5273002010-01-26 16:31:19 -0800500int __weak page_is_ram(unsigned long pfn)
Wu Fengguang61ef2482010-01-22 16:16:19 +0800501{
502 return walk_system_ram_range(pfn, 1, NULL, __is_ram) == 1;
503}
Chen Gongc5a13032013-06-06 15:20:51 -0700504EXPORT_SYMBOL_GPL(page_is_ram);
Wu Fengguang61ef2482010-01-22 16:16:19 +0800505
Dan Williams124fe202015-08-10 23:07:05 -0400506/**
507 * region_intersects() - determine intersection of region with known resources
508 * @start: region start address
509 * @size: size of region
Toshi Kani1c29f252016-01-26 21:57:28 +0100510 * @flags: flags of resource (in iomem_resource)
511 * @desc: descriptor of resource (in iomem_resource) or IORES_DESC_NONE
Mike Travis67cf13c2014-10-13 15:54:03 -0700512 *
Dan Williams124fe202015-08-10 23:07:05 -0400513 * Check if the specified region partially overlaps or fully eclipses a
Toshi Kani1c29f252016-01-26 21:57:28 +0100514 * resource identified by @flags and @desc (optional with IORES_DESC_NONE).
515 * Return REGION_DISJOINT if the region does not overlap @flags/@desc,
516 * return REGION_MIXED if the region overlaps @flags/@desc and another
517 * resource, and return REGION_INTERSECTS if the region overlaps @flags/@desc
518 * and no other defined resource. Note that REGION_INTERSECTS is also
519 * returned in the case when the specified region overlaps RAM and undefined
520 * memory holes.
Dan Williams124fe202015-08-10 23:07:05 -0400521 *
522 * region_intersect() is used by memory remapping functions to ensure
523 * the user is not remapping RAM and is a vast speed up over walking
524 * through the resource table page by page.
Mike Travis67cf13c2014-10-13 15:54:03 -0700525 */
Toshi Kani1c29f252016-01-26 21:57:28 +0100526int region_intersects(resource_size_t start, size_t size, unsigned long flags,
527 unsigned long desc)
Mike Travis67cf13c2014-10-13 15:54:03 -0700528{
Dan Williams124fe202015-08-10 23:07:05 -0400529 resource_size_t end = start + size - 1;
530 int type = 0; int other = 0;
531 struct resource *p;
Mike Travis67cf13c2014-10-13 15:54:03 -0700532
533 read_lock(&resource_lock);
534 for (p = iomem_resource.child; p ; p = p->sibling) {
Toshi Kani1c29f252016-01-26 21:57:28 +0100535 bool is_type = (((p->flags & flags) == flags) &&
536 ((desc == IORES_DESC_NONE) ||
537 (desc == p->desc)));
Mike Travis67cf13c2014-10-13 15:54:03 -0700538
Dan Williams124fe202015-08-10 23:07:05 -0400539 if (start >= p->start && start <= p->end)
540 is_type ? type++ : other++;
541 if (end >= p->start && end <= p->end)
542 is_type ? type++ : other++;
543 if (p->start >= start && p->end <= end)
544 is_type ? type++ : other++;
Mike Travis67cf13c2014-10-13 15:54:03 -0700545 }
546 read_unlock(&resource_lock);
Dan Williams124fe202015-08-10 23:07:05 -0400547
548 if (other == 0)
549 return type ? REGION_INTERSECTS : REGION_DISJOINT;
550
551 if (type)
552 return REGION_MIXED;
553
554 return REGION_DISJOINT;
Mike Travis67cf13c2014-10-13 15:54:03 -0700555}
Toshi Kani1c29f252016-01-26 21:57:28 +0100556EXPORT_SYMBOL_GPL(region_intersects);
Mike Travis67cf13c2014-10-13 15:54:03 -0700557
Bjorn Helgaasfcb11912010-12-16 10:38:46 -0700558void __weak arch_remove_reservations(struct resource *avail)
559{
560}
561
Bjorn Helgaasa9cea012010-10-26 15:41:13 -0600562static resource_size_t simple_align_resource(void *data,
563 const struct resource *avail,
564 resource_size_t size,
565 resource_size_t align)
566{
567 return avail->start;
568}
569
Bjorn Helgaas5d6b1fa2010-10-26 15:41:18 -0600570static void resource_clip(struct resource *res, resource_size_t min,
571 resource_size_t max)
572{
573 if (res->start < min)
574 res->start = min;
575 if (res->end > max)
576 res->end = max;
577}
578
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579/*
Ram Pai23c570a2011-07-05 23:44:30 -0700580 * Find empty slot in the resource tree with the given range and
581 * alignment constraints
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 */
Ram Pai23c570a2011-07-05 23:44:30 -0700583static int __find_resource(struct resource *root, struct resource *old,
584 struct resource *new,
585 resource_size_t size,
586 struct resource_constraint *constraint)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587{
588 struct resource *this = root->child;
Bjorn Helgaasa1862e32010-10-26 15:41:28 -0600589 struct resource tmp = *new, avail, alloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590
Dominik Brodowski0e2c8b82009-12-20 10:50:02 +0100591 tmp.start = root->start;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 /*
Bjorn Helgaasc0f5ac542010-12-16 10:38:41 -0700593 * Skip past an allocated resource that starts at 0, since the assignment
594 * of this->start - 1 to tmp->end below would cause an underflow.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 */
Ram Pai23c570a2011-07-05 23:44:30 -0700596 if (this && this->start == root->start) {
597 tmp.start = (this == old) ? old->start : this->end + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 this = this->sibling;
599 }
Bjorn Helgaasc0f5ac542010-12-16 10:38:41 -0700600 for(;;) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 if (this)
Ram Pai23c570a2011-07-05 23:44:30 -0700602 tmp.end = (this == old) ? this->end : this->start - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 else
Dominik Brodowski0e2c8b82009-12-20 10:50:02 +0100604 tmp.end = root->end;
Bjorn Helgaas5d6b1fa2010-10-26 15:41:18 -0600605
Ram Pai47ea91b2011-09-22 15:48:58 +0800606 if (tmp.end < tmp.start)
607 goto next;
608
Ram Pai23c570a2011-07-05 23:44:30 -0700609 resource_clip(&tmp, constraint->min, constraint->max);
Bjorn Helgaasfcb11912010-12-16 10:38:46 -0700610 arch_remove_reservations(&tmp);
Bjorn Helgaasa9cea012010-10-26 15:41:13 -0600611
Bjorn Helgaasa1862e32010-10-26 15:41:28 -0600612 /* Check for overflow after ALIGN() */
Ram Pai23c570a2011-07-05 23:44:30 -0700613 avail.start = ALIGN(tmp.start, constraint->align);
Bjorn Helgaasa1862e32010-10-26 15:41:28 -0600614 avail.end = tmp.end;
Bjorn Helgaas5edb93b2014-02-04 19:32:28 -0800615 avail.flags = new->flags & ~IORESOURCE_UNSET;
Bjorn Helgaasa1862e32010-10-26 15:41:28 -0600616 if (avail.start >= tmp.start) {
Bjorn Helgaas5edb93b2014-02-04 19:32:28 -0800617 alloc.flags = avail.flags;
Ram Pai23c570a2011-07-05 23:44:30 -0700618 alloc.start = constraint->alignf(constraint->alignf_data, &avail,
619 size, constraint->align);
Bjorn Helgaasa1862e32010-10-26 15:41:28 -0600620 alloc.end = alloc.start + size - 1;
Takashi Iwai60bb83b2018-04-13 15:35:13 -0700621 if (alloc.start <= alloc.end &&
622 resource_contains(&avail, &alloc)) {
Bjorn Helgaasa1862e32010-10-26 15:41:28 -0600623 new->start = alloc.start;
624 new->end = alloc.end;
625 return 0;
626 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 }
Ram Pai47ea91b2011-09-22 15:48:58 +0800628
629next: if (!this || this->end == root->end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 break;
Ram Pai47ea91b2011-09-22 15:48:58 +0800631
Ram Pai23c570a2011-07-05 23:44:30 -0700632 if (this != old)
633 tmp.start = this->end + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 this = this->sibling;
635 }
636 return -EBUSY;
637}
638
Ram Pai23c570a2011-07-05 23:44:30 -0700639/*
640 * Find empty slot in the resource tree given range and alignment.
641 */
642static int find_resource(struct resource *root, struct resource *new,
643 resource_size_t size,
644 struct resource_constraint *constraint)
645{
646 return __find_resource(root, NULL, new, size, constraint);
647}
648
Randy Dunlape1ca66d1b2006-10-03 01:13:51 -0700649/**
Ram Pai23c570a2011-07-05 23:44:30 -0700650 * reallocate_resource - allocate a slot in the resource tree given range & alignment.
651 * The resource will be relocated if the new size cannot be reallocated in the
652 * current location.
653 *
654 * @root: root resource descriptor
655 * @old: resource descriptor desired by caller
656 * @newsize: new size of the resource descriptor
657 * @constraint: the size and alignment constraints to be met.
658 */
Daeseok Youn28ab49f2014-04-03 14:48:36 -0700659static int reallocate_resource(struct resource *root, struct resource *old,
Ram Pai23c570a2011-07-05 23:44:30 -0700660 resource_size_t newsize,
661 struct resource_constraint *constraint)
662{
663 int err=0;
664 struct resource new = *old;
665 struct resource *conflict;
666
667 write_lock(&resource_lock);
668
669 if ((err = __find_resource(root, old, &new, newsize, constraint)))
670 goto out;
671
672 if (resource_contains(&new, old)) {
673 old->start = new.start;
674 old->end = new.end;
675 goto out;
676 }
677
678 if (old->child) {
679 err = -EBUSY;
680 goto out;
681 }
682
683 if (resource_contains(old, &new)) {
684 old->start = new.start;
685 old->end = new.end;
686 } else {
Toshi Kaniff3cc952016-03-09 12:47:04 -0700687 __release_resource(old, true);
Ram Pai23c570a2011-07-05 23:44:30 -0700688 *old = new;
689 conflict = __request_resource(root, old);
690 BUG_ON(conflict);
691 }
692out:
693 write_unlock(&resource_lock);
694 return err;
695}
696
697
698/**
699 * allocate_resource - allocate empty slot in the resource tree given range & alignment.
700 * The resource will be reallocated with a new size if it was already allocated
Randy Dunlape1ca66d1b2006-10-03 01:13:51 -0700701 * @root: root resource descriptor
702 * @new: resource descriptor desired by caller
703 * @size: requested resource region size
Wei Yangee5e5682012-05-31 16:26:05 -0700704 * @min: minimum boundary to allocate
705 * @max: maximum boundary to allocate
Randy Dunlape1ca66d1b2006-10-03 01:13:51 -0700706 * @align: alignment requested, in bytes
707 * @alignf: alignment function, optional, called if not NULL
708 * @alignf_data: arbitrary data to pass to the @alignf function
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 */
710int allocate_resource(struct resource *root, struct resource *new,
Greg Kroah-Hartmand75fc8b2006-06-12 16:09:23 -0700711 resource_size_t size, resource_size_t min,
712 resource_size_t max, resource_size_t align,
Dominik Brodowskib26b2d42010-01-01 17:40:49 +0100713 resource_size_t (*alignf)(void *,
Dominik Brodowski3b7a17f2010-01-01 17:40:50 +0100714 const struct resource *,
Dominik Brodowskib26b2d42010-01-01 17:40:49 +0100715 resource_size_t,
716 resource_size_t),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 void *alignf_data)
718{
719 int err;
Ram Pai23c570a2011-07-05 23:44:30 -0700720 struct resource_constraint constraint;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721
Bjorn Helgaasa9cea012010-10-26 15:41:13 -0600722 if (!alignf)
723 alignf = simple_align_resource;
724
Ram Pai23c570a2011-07-05 23:44:30 -0700725 constraint.min = min;
726 constraint.max = max;
727 constraint.align = align;
728 constraint.alignf = alignf;
729 constraint.alignf_data = alignf_data;
730
731 if ( new->parent ) {
732 /* resource is already allocated, try reallocating with
733 the new constraints */
734 return reallocate_resource(root, new, size, &constraint);
735 }
736
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 write_lock(&resource_lock);
Ram Pai23c570a2011-07-05 23:44:30 -0700738 err = find_resource(root, new, size, &constraint);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 if (err >= 0 && __request_resource(root, new))
740 err = -EBUSY;
741 write_unlock(&resource_lock);
742 return err;
743}
744
745EXPORT_SYMBOL(allocate_resource);
746
Geert Uytterhoeven1c388912011-05-07 20:53:16 +0200747/**
748 * lookup_resource - find an existing resource by a resource start address
749 * @root: root resource descriptor
750 * @start: resource start address
751 *
752 * Returns a pointer to the resource if found, NULL otherwise
753 */
754struct resource *lookup_resource(struct resource *root, resource_size_t start)
755{
756 struct resource *res;
757
758 read_lock(&resource_lock);
759 for (res = root->child; res; res = res->sibling) {
760 if (res->start == start)
761 break;
762 }
763 read_unlock(&resource_lock);
764
765 return res;
766}
767
Linus Torvaldsbef69ea2008-08-29 20:18:31 -0700768/*
769 * Insert a resource into the resource tree. If successful, return NULL,
770 * otherwise return the conflicting resource (compare to __request_resource())
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 */
Linus Torvaldsbef69ea2008-08-29 20:18:31 -0700772static struct resource * __insert_resource(struct resource *parent, struct resource *new)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 struct resource *first, *next;
775
Matthew Wilcoxd33b6fb2006-06-30 02:31:24 -0700776 for (;; parent = first) {
Matthew Wilcoxd33b6fb2006-06-30 02:31:24 -0700777 first = __request_resource(parent, new);
778 if (!first)
Linus Torvaldsbef69ea2008-08-29 20:18:31 -0700779 return first;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780
Matthew Wilcoxd33b6fb2006-06-30 02:31:24 -0700781 if (first == parent)
Linus Torvaldsbef69ea2008-08-29 20:18:31 -0700782 return first;
Huang Shijie5de1cb22010-10-27 15:34:52 -0700783 if (WARN_ON(first == new)) /* duplicated insertion */
784 return first;
Matthew Wilcoxd33b6fb2006-06-30 02:31:24 -0700785
786 if ((first->start > new->start) || (first->end < new->end))
787 break;
788 if ((first->start == new->start) && (first->end == new->end))
789 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 }
791
792 for (next = first; ; next = next->sibling) {
793 /* Partial overlap? Bad, and unfixable */
794 if (next->start < new->start || next->end > new->end)
Linus Torvaldsbef69ea2008-08-29 20:18:31 -0700795 return next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 if (!next->sibling)
797 break;
798 if (next->sibling->start > new->end)
799 break;
800 }
801
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 new->parent = parent;
803 new->sibling = next->sibling;
804 new->child = first;
805
806 next->sibling = NULL;
807 for (next = first; next; next = next->sibling)
808 next->parent = new;
809
810 if (parent->child == first) {
811 parent->child = new;
812 } else {
813 next = parent->child;
814 while (next->sibling != first)
815 next = next->sibling;
816 next->sibling = new;
817 }
Linus Torvaldsbef69ea2008-08-29 20:18:31 -0700818 return NULL;
819}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820
Linus Torvaldsbef69ea2008-08-29 20:18:31 -0700821/**
Bjorn Helgaas66f12072010-03-11 17:01:09 -0700822 * insert_resource_conflict - Inserts resource in the resource tree
Linus Torvaldsbef69ea2008-08-29 20:18:31 -0700823 * @parent: parent of the new resource
824 * @new: new resource to insert
825 *
Bjorn Helgaas66f12072010-03-11 17:01:09 -0700826 * Returns 0 on success, conflict resource if the resource can't be inserted.
Linus Torvaldsbef69ea2008-08-29 20:18:31 -0700827 *
Bjorn Helgaas66f12072010-03-11 17:01:09 -0700828 * This function is equivalent to request_resource_conflict when no conflict
Linus Torvaldsbef69ea2008-08-29 20:18:31 -0700829 * happens. If a conflict happens, and the conflicting resources
830 * entirely fit within the range of the new resource, then the new
831 * resource is inserted and the conflicting resources become children of
832 * the new resource.
Toshi Kaniff3cc952016-03-09 12:47:04 -0700833 *
834 * This function is intended for producers of resources, such as FW modules
835 * and bus drivers.
Linus Torvaldsbef69ea2008-08-29 20:18:31 -0700836 */
Bjorn Helgaas66f12072010-03-11 17:01:09 -0700837struct resource *insert_resource_conflict(struct resource *parent, struct resource *new)
Linus Torvaldsbef69ea2008-08-29 20:18:31 -0700838{
839 struct resource *conflict;
840
841 write_lock(&resource_lock);
842 conflict = __insert_resource(parent, new);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 write_unlock(&resource_lock);
Bjorn Helgaas66f12072010-03-11 17:01:09 -0700844 return conflict;
845}
846
847/**
848 * insert_resource - Inserts a resource in the resource tree
849 * @parent: parent of the new resource
850 * @new: new resource to insert
851 *
852 * Returns 0 on success, -EBUSY if the resource can't be inserted.
Toshi Kaniff3cc952016-03-09 12:47:04 -0700853 *
854 * This function is intended for producers of resources, such as FW modules
855 * and bus drivers.
Bjorn Helgaas66f12072010-03-11 17:01:09 -0700856 */
857int insert_resource(struct resource *parent, struct resource *new)
858{
859 struct resource *conflict;
860
861 conflict = insert_resource_conflict(parent, new);
Linus Torvaldsbef69ea2008-08-29 20:18:31 -0700862 return conflict ? -EBUSY : 0;
863}
Toshi Kani8095d0f2016-03-09 12:47:05 -0700864EXPORT_SYMBOL_GPL(insert_resource);
Linus Torvaldsbef69ea2008-08-29 20:18:31 -0700865
866/**
867 * insert_resource_expand_to_fit - Insert a resource into the resource tree
Randy Dunlap6781f4a2008-08-31 20:31:55 -0700868 * @root: root resource descriptor
Linus Torvaldsbef69ea2008-08-29 20:18:31 -0700869 * @new: new resource to insert
870 *
871 * Insert a resource into the resource tree, possibly expanding it in order
872 * to make it encompass any conflicting resources.
873 */
874void insert_resource_expand_to_fit(struct resource *root, struct resource *new)
875{
876 if (new->parent)
877 return;
878
879 write_lock(&resource_lock);
880 for (;;) {
881 struct resource *conflict;
882
883 conflict = __insert_resource(root, new);
884 if (!conflict)
885 break;
886 if (conflict == root)
887 break;
888
889 /* Ok, expand resource to cover the conflict, then try again .. */
890 if (conflict->start < new->start)
891 new->start = conflict->start;
892 if (conflict->end > new->end)
893 new->end = conflict->end;
894
895 printk("Expanded resource %s due to conflict with %s\n", new->name, conflict->name);
896 }
897 write_unlock(&resource_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898}
899
Toshi Kaniff3cc952016-03-09 12:47:04 -0700900/**
901 * remove_resource - Remove a resource in the resource tree
902 * @old: resource to remove
903 *
904 * Returns 0 on success, -EINVAL if the resource is not valid.
905 *
906 * This function removes a resource previously inserted by insert_resource()
907 * or insert_resource_conflict(), and moves the children (if any) up to
908 * where they were before. insert_resource() and insert_resource_conflict()
909 * insert a new resource, and move any conflicting resources down to the
910 * children of the new resource.
911 *
912 * insert_resource(), insert_resource_conflict() and remove_resource() are
913 * intended for producers of resources, such as FW modules and bus drivers.
914 */
915int remove_resource(struct resource *old)
916{
917 int retval;
918
919 write_lock(&resource_lock);
920 retval = __release_resource(old, false);
921 write_unlock(&resource_lock);
922 return retval;
923}
Toshi Kani8095d0f2016-03-09 12:47:05 -0700924EXPORT_SYMBOL_GPL(remove_resource);
Toshi Kaniff3cc952016-03-09 12:47:04 -0700925
Toshi Kaniae8e3a92013-04-29 15:08:17 -0700926static int __adjust_resource(struct resource *res, resource_size_t start,
927 resource_size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928{
929 struct resource *tmp, *parent = res->parent;
Greg Kroah-Hartmand75fc8b2006-06-12 16:09:23 -0700930 resource_size_t end = start + size - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 int result = -EBUSY;
932
Yinghai Lu82ec90e2012-05-17 18:51:11 -0700933 if (!parent)
934 goto skip;
935
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 if ((start < parent->start) || (end > parent->end))
937 goto out;
938
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 if (res->sibling && (res->sibling->start <= end))
940 goto out;
941
942 tmp = parent->child;
943 if (tmp != res) {
944 while (tmp->sibling != res)
945 tmp = tmp->sibling;
946 if (start <= tmp->end)
947 goto out;
948 }
949
Yinghai Lu82ec90e2012-05-17 18:51:11 -0700950skip:
951 for (tmp = res->child; tmp; tmp = tmp->sibling)
952 if ((tmp->start < start) || (tmp->end > end))
953 goto out;
954
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 res->start = start;
956 res->end = end;
957 result = 0;
958
959 out:
Toshi Kaniae8e3a92013-04-29 15:08:17 -0700960 return result;
961}
962
963/**
964 * adjust_resource - modify a resource's start and size
965 * @res: resource to modify
966 * @start: new start value
967 * @size: new size
968 *
969 * Given an existing resource, change its start and size to match the
970 * arguments. Returns 0 on success, -EBUSY if it can't fit.
971 * Existing children of the resource are assumed to be immutable.
972 */
973int adjust_resource(struct resource *res, resource_size_t start,
974 resource_size_t size)
975{
976 int result;
977
978 write_lock(&resource_lock);
979 result = __adjust_resource(res, start, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 write_unlock(&resource_lock);
981 return result;
982}
Cong Wang24105742012-02-03 21:42:39 +0800983EXPORT_SYMBOL(adjust_resource);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984
Yinghai Lu268364a2008-09-04 21:02:44 +0200985static void __init __reserve_region_with_split(struct resource *root,
986 resource_size_t start, resource_size_t end,
987 const char *name)
988{
989 struct resource *parent = root;
990 struct resource *conflict;
Yasuaki Ishimatsuebff7d82013-04-29 15:08:56 -0700991 struct resource *res = alloc_resource(GFP_ATOMIC);
T Makphaibulchoke4965f562012-10-04 17:16:55 -0700992 struct resource *next_res = NULL;
Bjorn Helgaasf37e2332017-12-01 14:07:18 -0600993 int type = resource_type(root);
Yinghai Lu268364a2008-09-04 21:02:44 +0200994
995 if (!res)
996 return;
997
998 res->name = name;
999 res->start = start;
1000 res->end = end;
Bjorn Helgaasf37e2332017-12-01 14:07:18 -06001001 res->flags = type | IORESOURCE_BUSY;
Toshi Kani43ee4932016-01-26 21:57:19 +01001002 res->desc = IORES_DESC_NONE;
Yinghai Lu268364a2008-09-04 21:02:44 +02001003
T Makphaibulchoke4965f562012-10-04 17:16:55 -07001004 while (1) {
Yinghai Lu268364a2008-09-04 21:02:44 +02001005
T Makphaibulchoke4965f562012-10-04 17:16:55 -07001006 conflict = __request_resource(parent, res);
1007 if (!conflict) {
1008 if (!next_res)
1009 break;
1010 res = next_res;
1011 next_res = NULL;
1012 continue;
1013 }
Yinghai Lu268364a2008-09-04 21:02:44 +02001014
T Makphaibulchoke4965f562012-10-04 17:16:55 -07001015 /* conflict covered whole area */
1016 if (conflict->start <= res->start &&
1017 conflict->end >= res->end) {
Yasuaki Ishimatsuebff7d82013-04-29 15:08:56 -07001018 free_resource(res);
T Makphaibulchoke4965f562012-10-04 17:16:55 -07001019 WARN_ON(next_res);
1020 break;
1021 }
Yinghai Lu268364a2008-09-04 21:02:44 +02001022
T Makphaibulchoke4965f562012-10-04 17:16:55 -07001023 /* failed, split and try again */
1024 if (conflict->start > res->start) {
1025 end = res->end;
1026 res->end = conflict->start - 1;
1027 if (conflict->end < end) {
Yasuaki Ishimatsuebff7d82013-04-29 15:08:56 -07001028 next_res = alloc_resource(GFP_ATOMIC);
T Makphaibulchoke4965f562012-10-04 17:16:55 -07001029 if (!next_res) {
Yasuaki Ishimatsuebff7d82013-04-29 15:08:56 -07001030 free_resource(res);
T Makphaibulchoke4965f562012-10-04 17:16:55 -07001031 break;
1032 }
1033 next_res->name = name;
1034 next_res->start = conflict->end + 1;
1035 next_res->end = end;
Bjorn Helgaasf37e2332017-12-01 14:07:18 -06001036 next_res->flags = type | IORESOURCE_BUSY;
Toshi Kani43ee4932016-01-26 21:57:19 +01001037 next_res->desc = IORES_DESC_NONE;
T Makphaibulchoke4965f562012-10-04 17:16:55 -07001038 }
1039 } else {
1040 res->start = conflict->end + 1;
1041 }
1042 }
1043
Yinghai Lu268364a2008-09-04 21:02:44 +02001044}
1045
Paul Mundtbea92112008-10-22 19:31:11 +09001046void __init reserve_region_with_split(struct resource *root,
Yinghai Lu268364a2008-09-04 21:02:44 +02001047 resource_size_t start, resource_size_t end,
1048 const char *name)
1049{
Octavian Purdila65fed8f2012-07-30 14:42:58 -07001050 int abort = 0;
1051
Yinghai Lu268364a2008-09-04 21:02:44 +02001052 write_lock(&resource_lock);
Octavian Purdila65fed8f2012-07-30 14:42:58 -07001053 if (root->start > start || root->end < end) {
1054 pr_err("requested range [0x%llx-0x%llx] not in root %pr\n",
1055 (unsigned long long)start, (unsigned long long)end,
1056 root);
1057 if (start > root->end || end < root->start)
1058 abort = 1;
1059 else {
1060 if (end > root->end)
1061 end = root->end;
1062 if (start < root->start)
1063 start = root->start;
1064 pr_err("fixing request to [0x%llx-0x%llx]\n",
1065 (unsigned long long)start,
1066 (unsigned long long)end);
1067 }
1068 dump_stack();
1069 }
1070 if (!abort)
1071 __reserve_region_with_split(root, start, end, name);
Yinghai Lu268364a2008-09-04 21:02:44 +02001072 write_unlock(&resource_lock);
1073}
1074
Ivan Kokshaysky88452562008-03-30 19:50:14 +04001075/**
1076 * resource_alignment - calculate resource's alignment
1077 * @res: resource pointer
1078 *
1079 * Returns alignment on success, 0 (invalid alignment) on failure.
1080 */
1081resource_size_t resource_alignment(struct resource *res)
1082{
1083 switch (res->flags & (IORESOURCE_SIZEALIGN | IORESOURCE_STARTALIGN)) {
1084 case IORESOURCE_SIZEALIGN:
Magnus Damm1a4e5642008-07-29 22:32:57 -07001085 return resource_size(res);
Ivan Kokshaysky88452562008-03-30 19:50:14 +04001086 case IORESOURCE_STARTALIGN:
1087 return res->start;
1088 default:
1089 return 0;
1090 }
1091}
1092
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093/*
1094 * This is compatibility stuff for IO resources.
1095 *
1096 * Note how this, unlike the above, knows about
1097 * the IO flag meanings (busy etc).
1098 *
Randy Dunlape1ca66d1b2006-10-03 01:13:51 -07001099 * request_region creates a new busy region.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 *
Randy Dunlape1ca66d1b2006-10-03 01:13:51 -07001101 * release_region releases a matching busy region.
1102 */
1103
Alan Cox8b6d0432010-03-29 19:38:00 +02001104static DECLARE_WAIT_QUEUE_HEAD(muxed_resource_wait);
1105
Randy Dunlape1ca66d1b2006-10-03 01:13:51 -07001106/**
1107 * __request_region - create a new busy resource region
1108 * @parent: parent resource descriptor
1109 * @start: resource start address
1110 * @n: resource region size
1111 * @name: reserving caller's ID string
Randy Dunlap6ae301e2009-01-15 13:51:01 -08001112 * @flags: IO resource flags
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 */
Greg Kroah-Hartmand75fc8b2006-06-12 16:09:23 -07001114struct resource * __request_region(struct resource *parent,
1115 resource_size_t start, resource_size_t n,
Arjan van de Vene8de1482008-10-22 19:55:31 -07001116 const char *name, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117{
Alan Cox8b6d0432010-03-29 19:38:00 +02001118 DECLARE_WAITQUEUE(wait, current);
Yasuaki Ishimatsuebff7d82013-04-29 15:08:56 -07001119 struct resource *res = alloc_resource(GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120
Bjorn Helgaasc26ec882008-10-15 22:05:14 -07001121 if (!res)
1122 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123
Bjorn Helgaasc26ec882008-10-15 22:05:14 -07001124 res->name = name;
1125 res->start = start;
1126 res->end = start + n - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127
Bjorn Helgaasc26ec882008-10-15 22:05:14 -07001128 write_lock(&resource_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129
Bjorn Helgaasc26ec882008-10-15 22:05:14 -07001130 for (;;) {
1131 struct resource *conflict;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132
Toshi Kani4e0d8f7e2016-03-09 12:47:03 -07001133 res->flags = resource_type(parent) | resource_ext_type(parent);
1134 res->flags |= IORESOURCE_BUSY | flags;
1135 res->desc = parent->desc;
1136
Bjorn Helgaasc26ec882008-10-15 22:05:14 -07001137 conflict = __request_resource(parent, res);
1138 if (!conflict)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 break;
Bjorn Helgaasc26ec882008-10-15 22:05:14 -07001140 if (conflict != parent) {
Simon Guinot59ceeaa2015-09-10 00:15:18 +02001141 if (!(conflict->flags & IORESOURCE_BUSY)) {
1142 parent = conflict;
Bjorn Helgaasc26ec882008-10-15 22:05:14 -07001143 continue;
Simon Guinot59ceeaa2015-09-10 00:15:18 +02001144 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 }
Alan Cox8b6d0432010-03-29 19:38:00 +02001146 if (conflict->flags & flags & IORESOURCE_MUXED) {
1147 add_wait_queue(&muxed_resource_wait, &wait);
1148 write_unlock(&resource_lock);
1149 set_current_state(TASK_UNINTERRUPTIBLE);
1150 schedule();
1151 remove_wait_queue(&muxed_resource_wait, &wait);
1152 write_lock(&resource_lock);
1153 continue;
1154 }
Bjorn Helgaasc26ec882008-10-15 22:05:14 -07001155 /* Uhhuh, that didn't work out.. */
Yasuaki Ishimatsuebff7d82013-04-29 15:08:56 -07001156 free_resource(res);
Bjorn Helgaasc26ec882008-10-15 22:05:14 -07001157 res = NULL;
1158 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 }
Bjorn Helgaasc26ec882008-10-15 22:05:14 -07001160 write_unlock(&resource_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 return res;
1162}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163EXPORT_SYMBOL(__request_region);
1164
Randy Dunlape1ca66d1b2006-10-03 01:13:51 -07001165/**
Randy Dunlape1ca66d1b2006-10-03 01:13:51 -07001166 * __release_region - release a previously reserved resource region
1167 * @parent: parent resource descriptor
1168 * @start: resource start address
1169 * @n: resource region size
1170 *
1171 * The described resource region must match a currently busy region.
1172 */
Greg Kroah-Hartmand75fc8b2006-06-12 16:09:23 -07001173void __release_region(struct resource *parent, resource_size_t start,
1174 resource_size_t n)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175{
1176 struct resource **p;
Greg Kroah-Hartmand75fc8b2006-06-12 16:09:23 -07001177 resource_size_t end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178
1179 p = &parent->child;
1180 end = start + n - 1;
1181
1182 write_lock(&resource_lock);
1183
1184 for (;;) {
1185 struct resource *res = *p;
1186
1187 if (!res)
1188 break;
1189 if (res->start <= start && res->end >= end) {
1190 if (!(res->flags & IORESOURCE_BUSY)) {
1191 p = &res->child;
1192 continue;
1193 }
1194 if (res->start != start || res->end != end)
1195 break;
1196 *p = res->sibling;
1197 write_unlock(&resource_lock);
Alan Cox8b6d0432010-03-29 19:38:00 +02001198 if (res->flags & IORESOURCE_MUXED)
1199 wake_up(&muxed_resource_wait);
Yasuaki Ishimatsuebff7d82013-04-29 15:08:56 -07001200 free_resource(res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 return;
1202 }
1203 p = &res->sibling;
1204 }
1205
1206 write_unlock(&resource_lock);
1207
Greg Kroah-Hartman685143ac2006-06-12 15:18:31 -07001208 printk(KERN_WARNING "Trying to free nonexistent resource "
1209 "<%016llx-%016llx>\n", (unsigned long long)start,
1210 (unsigned long long)end);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212EXPORT_SYMBOL(__release_region);
1213
Toshi Kani825f7872013-04-29 15:08:19 -07001214#ifdef CONFIG_MEMORY_HOTREMOVE
1215/**
1216 * release_mem_region_adjustable - release a previously reserved memory region
1217 * @parent: parent resource descriptor
1218 * @start: resource start address
1219 * @size: resource region size
1220 *
1221 * This interface is intended for memory hot-delete. The requested region
1222 * is released from a currently busy memory resource. The requested region
1223 * must either match exactly or fit into a single busy resource entry. In
1224 * the latter case, the remaining resource is adjusted accordingly.
1225 * Existing children of the busy memory resource must be immutable in the
1226 * request.
1227 *
1228 * Note:
1229 * - Additional release conditions, such as overlapping region, can be
1230 * supported after they are confirmed as valid cases.
1231 * - When a busy memory resource gets split into two entries, the code
1232 * assumes that all children remain in the lower address entry for
1233 * simplicity. Enhance this logic when necessary.
1234 */
1235int release_mem_region_adjustable(struct resource *parent,
1236 resource_size_t start, resource_size_t size)
1237{
1238 struct resource **p;
1239 struct resource *res;
1240 struct resource *new_res;
1241 resource_size_t end;
1242 int ret = -EINVAL;
1243
1244 end = start + size - 1;
1245 if ((start < parent->start) || (end > parent->end))
1246 return ret;
1247
Yasuaki Ishimatsuebff7d82013-04-29 15:08:56 -07001248 /* The alloc_resource() result gets checked later */
1249 new_res = alloc_resource(GFP_KERNEL);
Toshi Kani825f7872013-04-29 15:08:19 -07001250
1251 p = &parent->child;
1252 write_lock(&resource_lock);
1253
1254 while ((res = *p)) {
1255 if (res->start >= end)
1256 break;
1257
1258 /* look for the next resource if it does not fit into */
1259 if (res->start > start || res->end < end) {
1260 p = &res->sibling;
1261 continue;
1262 }
1263
1264 if (!(res->flags & IORESOURCE_MEM))
1265 break;
1266
1267 if (!(res->flags & IORESOURCE_BUSY)) {
1268 p = &res->child;
1269 continue;
1270 }
1271
1272 /* found the target resource; let's adjust accordingly */
1273 if (res->start == start && res->end == end) {
1274 /* free the whole entry */
1275 *p = res->sibling;
Yasuaki Ishimatsuebff7d82013-04-29 15:08:56 -07001276 free_resource(res);
Toshi Kani825f7872013-04-29 15:08:19 -07001277 ret = 0;
1278 } else if (res->start == start && res->end != end) {
1279 /* adjust the start */
1280 ret = __adjust_resource(res, end + 1,
1281 res->end - end);
1282 } else if (res->start != start && res->end == end) {
1283 /* adjust the end */
1284 ret = __adjust_resource(res, res->start,
1285 start - res->start);
1286 } else {
1287 /* split into two entries */
1288 if (!new_res) {
1289 ret = -ENOMEM;
1290 break;
1291 }
1292 new_res->name = res->name;
1293 new_res->start = end + 1;
1294 new_res->end = res->end;
1295 new_res->flags = res->flags;
Toshi Kani43ee4932016-01-26 21:57:19 +01001296 new_res->desc = res->desc;
Toshi Kani825f7872013-04-29 15:08:19 -07001297 new_res->parent = res->parent;
1298 new_res->sibling = res->sibling;
1299 new_res->child = NULL;
1300
1301 ret = __adjust_resource(res, res->start,
1302 start - res->start);
1303 if (ret)
1304 break;
1305 res->sibling = new_res;
1306 new_res = NULL;
1307 }
1308
1309 break;
1310 }
1311
1312 write_unlock(&resource_lock);
Yasuaki Ishimatsuebff7d82013-04-29 15:08:56 -07001313 free_resource(new_res);
Toshi Kani825f7872013-04-29 15:08:19 -07001314 return ret;
1315}
1316#endif /* CONFIG_MEMORY_HOTREMOVE */
1317
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318/*
Tejun Heo9ac78492007-01-20 16:00:26 +09001319 * Managed region resource
1320 */
Thierry Reding8d388212014-08-01 14:15:10 +02001321static void devm_resource_release(struct device *dev, void *ptr)
1322{
1323 struct resource **r = ptr;
1324
1325 release_resource(*r);
1326}
1327
1328/**
1329 * devm_request_resource() - request and reserve an I/O or memory resource
1330 * @dev: device for which to request the resource
1331 * @root: root of the resource tree from which to request the resource
1332 * @new: descriptor of the resource to request
1333 *
1334 * This is a device-managed version of request_resource(). There is usually
1335 * no need to release resources requested by this function explicitly since
1336 * that will be taken care of when the device is unbound from its driver.
1337 * If for some reason the resource needs to be released explicitly, because
1338 * of ordering issues for example, drivers must call devm_release_resource()
1339 * rather than the regular release_resource().
1340 *
1341 * When a conflict is detected between any existing resources and the newly
1342 * requested resource, an error message will be printed.
1343 *
1344 * Returns 0 on success or a negative error code on failure.
1345 */
1346int devm_request_resource(struct device *dev, struct resource *root,
1347 struct resource *new)
1348{
1349 struct resource *conflict, **ptr;
1350
1351 ptr = devres_alloc(devm_resource_release, sizeof(*ptr), GFP_KERNEL);
1352 if (!ptr)
1353 return -ENOMEM;
1354
1355 *ptr = new;
1356
1357 conflict = request_resource_conflict(root, new);
1358 if (conflict) {
1359 dev_err(dev, "resource collision: %pR conflicts with %s %pR\n",
1360 new, conflict->name, conflict);
1361 devres_free(ptr);
1362 return -EBUSY;
1363 }
1364
1365 devres_add(dev, ptr);
1366 return 0;
1367}
1368EXPORT_SYMBOL(devm_request_resource);
1369
1370static int devm_resource_match(struct device *dev, void *res, void *data)
1371{
1372 struct resource **ptr = res;
1373
1374 return *ptr == data;
1375}
1376
1377/**
1378 * devm_release_resource() - release a previously requested resource
1379 * @dev: device for which to release the resource
1380 * @new: descriptor of the resource to release
1381 *
1382 * Releases a resource previously requested using devm_request_resource().
1383 */
1384void devm_release_resource(struct device *dev, struct resource *new)
1385{
1386 WARN_ON(devres_release(dev, devm_resource_release, devm_resource_match,
1387 new));
1388}
1389EXPORT_SYMBOL(devm_release_resource);
1390
Tejun Heo9ac78492007-01-20 16:00:26 +09001391struct region_devres {
1392 struct resource *parent;
1393 resource_size_t start;
1394 resource_size_t n;
1395};
1396
1397static void devm_region_release(struct device *dev, void *res)
1398{
1399 struct region_devres *this = res;
1400
1401 __release_region(this->parent, this->start, this->n);
1402}
1403
1404static int devm_region_match(struct device *dev, void *res, void *match_data)
1405{
1406 struct region_devres *this = res, *match = match_data;
1407
1408 return this->parent == match->parent &&
1409 this->start == match->start && this->n == match->n;
1410}
1411
1412struct resource * __devm_request_region(struct device *dev,
1413 struct resource *parent, resource_size_t start,
1414 resource_size_t n, const char *name)
1415{
1416 struct region_devres *dr = NULL;
1417 struct resource *res;
1418
1419 dr = devres_alloc(devm_region_release, sizeof(struct region_devres),
1420 GFP_KERNEL);
1421 if (!dr)
1422 return NULL;
1423
1424 dr->parent = parent;
1425 dr->start = start;
1426 dr->n = n;
1427
Arjan van de Vene8de1482008-10-22 19:55:31 -07001428 res = __request_region(parent, start, n, name, 0);
Tejun Heo9ac78492007-01-20 16:00:26 +09001429 if (res)
1430 devres_add(dev, dr);
1431 else
1432 devres_free(dr);
1433
1434 return res;
1435}
1436EXPORT_SYMBOL(__devm_request_region);
1437
1438void __devm_release_region(struct device *dev, struct resource *parent,
1439 resource_size_t start, resource_size_t n)
1440{
1441 struct region_devres match_data = { parent, start, n };
1442
1443 __release_region(parent, start, n);
1444 WARN_ON(devres_destroy(dev, devm_region_release, devm_region_match,
1445 &match_data));
1446}
1447EXPORT_SYMBOL(__devm_release_region);
1448
1449/*
Bjorn Helgaasffd2e8d2017-12-01 11:50:33 -06001450 * Reserve I/O ports or memory based on "reserve=" kernel parameter.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 */
1452#define MAXRESERVE 4
1453static int __init reserve_setup(char *str)
1454{
1455 static int reserved;
1456 static struct resource reserve[MAXRESERVE];
1457
1458 for (;;) {
Zhang Rui8bc1ad72009-06-30 11:41:31 -07001459 unsigned int io_start, io_num;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460 int x = reserved;
Bjorn Helgaasffd2e8d2017-12-01 11:50:33 -06001461 struct resource *parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462
Bjorn Helgaasffd2e8d2017-12-01 11:50:33 -06001463 if (get_option(&str, &io_start) != 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464 break;
Bjorn Helgaasffd2e8d2017-12-01 11:50:33 -06001465 if (get_option(&str, &io_num) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 break;
1467 if (x < MAXRESERVE) {
1468 struct resource *res = reserve + x;
Bjorn Helgaasffd2e8d2017-12-01 11:50:33 -06001469
1470 /*
1471 * If the region starts below 0x10000, we assume it's
1472 * I/O port space; otherwise assume it's memory.
1473 */
1474 if (io_start < 0x10000) {
1475 res->flags = IORESOURCE_IO;
1476 parent = &ioport_resource;
1477 } else {
1478 res->flags = IORESOURCE_MEM;
1479 parent = &iomem_resource;
1480 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481 res->name = "reserved";
1482 res->start = io_start;
1483 res->end = io_start + io_num - 1;
Bjorn Helgaasffd2e8d2017-12-01 11:50:33 -06001484 res->flags |= IORESOURCE_BUSY;
Toshi Kani43ee4932016-01-26 21:57:19 +01001485 res->desc = IORES_DESC_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486 res->child = NULL;
Bjorn Helgaasffd2e8d2017-12-01 11:50:33 -06001487 if (request_resource(parent, res) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488 reserved = x+1;
1489 }
1490 }
1491 return 1;
1492}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493__setup("reserve=", reserve_setup);
Suresh Siddha379daf62008-09-25 18:43:34 -07001494
1495/*
1496 * Check if the requested addr and size spans more than any slot in the
1497 * iomem resource tree.
1498 */
1499int iomem_map_sanity_check(resource_size_t addr, unsigned long size)
1500{
1501 struct resource *p = &iomem_resource;
1502 int err = 0;
1503 loff_t l;
1504
1505 read_lock(&resource_lock);
1506 for (p = p->child; p ; p = r_next(NULL, p, &l)) {
1507 /*
1508 * We can probably skip the resources without
1509 * IORESOURCE_IO attribute?
1510 */
1511 if (p->start >= addr + size)
1512 continue;
1513 if (p->end < addr)
1514 continue;
Suresh Siddhad68612b2008-10-28 11:45:42 -07001515 if (PFN_DOWN(p->start) <= PFN_DOWN(addr) &&
1516 PFN_DOWN(p->end) >= PFN_DOWN(addr + size - 1))
Suresh Siddha379daf62008-09-25 18:43:34 -07001517 continue;
Arjan van de Ven3ac526692008-12-13 09:15:27 -08001518 /*
1519 * if a resource is "BUSY", it's not a hardware resource
1520 * but a driver mapping of such a resource; we don't want
1521 * to warn for those; some drivers legitimately map only
1522 * partial hardware resources. (example: vesafb)
1523 */
1524 if (p->flags & IORESOURCE_BUSY)
1525 continue;
1526
Bjorn Helgaase4c72962014-04-14 15:38:11 -06001527 printk(KERN_WARNING "resource sanity check: requesting [mem %#010llx-%#010llx], which spans more than %s %pR\n",
Ingo Molnar13eb8372008-09-26 10:10:12 +02001528 (unsigned long long)addr,
1529 (unsigned long long)(addr + size - 1),
Bjorn Helgaase4c72962014-04-14 15:38:11 -06001530 p->name, p);
Suresh Siddha379daf62008-09-25 18:43:34 -07001531 err = -1;
1532 break;
1533 }
1534 read_unlock(&resource_lock);
1535
1536 return err;
1537}
Arjan van de Vene8de1482008-10-22 19:55:31 -07001538
1539#ifdef CONFIG_STRICT_DEVMEM
1540static int strict_iomem_checks = 1;
1541#else
1542static int strict_iomem_checks;
1543#endif
1544
1545/*
1546 * check if an address is reserved in the iomem resource tree
Yaowei Bai9825b452018-02-06 15:41:28 -08001547 * returns true if reserved, false if not reserved.
Arjan van de Vene8de1482008-10-22 19:55:31 -07001548 */
Yaowei Bai9825b452018-02-06 15:41:28 -08001549bool iomem_is_exclusive(u64 addr)
Arjan van de Vene8de1482008-10-22 19:55:31 -07001550{
1551 struct resource *p = &iomem_resource;
Yaowei Bai9825b452018-02-06 15:41:28 -08001552 bool err = false;
Arjan van de Vene8de1482008-10-22 19:55:31 -07001553 loff_t l;
1554 int size = PAGE_SIZE;
1555
1556 if (!strict_iomem_checks)
Yaowei Bai9825b452018-02-06 15:41:28 -08001557 return false;
Arjan van de Vene8de1482008-10-22 19:55:31 -07001558
1559 addr = addr & PAGE_MASK;
1560
1561 read_lock(&resource_lock);
1562 for (p = p->child; p ; p = r_next(NULL, p, &l)) {
1563 /*
1564 * We can probably skip the resources without
1565 * IORESOURCE_IO attribute?
1566 */
1567 if (p->start >= addr + size)
1568 break;
1569 if (p->end < addr)
1570 continue;
Dan Williams90a545e2015-11-23 15:49:03 -08001571 /*
1572 * A resource is exclusive if IORESOURCE_EXCLUSIVE is set
1573 * or CONFIG_IO_STRICT_DEVMEM is enabled and the
1574 * resource is busy.
1575 */
1576 if ((p->flags & IORESOURCE_BUSY) == 0)
1577 continue;
1578 if (IS_ENABLED(CONFIG_IO_STRICT_DEVMEM)
1579 || p->flags & IORESOURCE_EXCLUSIVE) {
Yaowei Bai9825b452018-02-06 15:41:28 -08001580 err = true;
Arjan van de Vene8de1482008-10-22 19:55:31 -07001581 break;
1582 }
1583 }
1584 read_unlock(&resource_lock);
1585
1586 return err;
1587}
1588
Jiang Liu90e97822015-02-05 13:44:43 +08001589struct resource_entry *resource_list_create_entry(struct resource *res,
1590 size_t extra_size)
1591{
1592 struct resource_entry *entry;
1593
1594 entry = kzalloc(sizeof(*entry) + extra_size, GFP_KERNEL);
1595 if (entry) {
1596 INIT_LIST_HEAD(&entry->node);
1597 entry->res = res ? res : &entry->__res;
1598 }
1599
1600 return entry;
1601}
1602EXPORT_SYMBOL(resource_list_create_entry);
1603
1604void resource_list_free(struct list_head *head)
1605{
1606 struct resource_entry *entry, *tmp;
1607
1608 list_for_each_entry_safe(entry, tmp, head, node)
1609 resource_list_destroy_entry(entry);
1610}
1611EXPORT_SYMBOL(resource_list_free);
1612
Arjan van de Vene8de1482008-10-22 19:55:31 -07001613static int __init strict_iomem(char *str)
1614{
1615 if (strstr(str, "relaxed"))
1616 strict_iomem_checks = 0;
1617 if (strstr(str, "strict"))
1618 strict_iomem_checks = 1;
1619 return 1;
1620}
1621
1622__setup("iomem=", strict_iomem);