blob: da14b8d092961bf5680bf06004f980ad1ec43859 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <asm/io.h>
26
27
28struct resource ioport_resource = {
29 .name = "PCI IO",
Greg Kroah-Hartman6550e072006-06-12 17:11:31 -070030 .start = 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -070031 .end = IO_SPACE_LIMIT,
32 .flags = IORESOURCE_IO,
33};
Linus Torvalds1da177e2005-04-16 15:20:36 -070034EXPORT_SYMBOL(ioport_resource);
35
36struct resource iomem_resource = {
37 .name = "PCI mem",
Greg Kroah-Hartman6550e072006-06-12 17:11:31 -070038 .start = 0,
39 .end = -1,
Linus Torvalds1da177e2005-04-16 15:20:36 -070040 .flags = IORESOURCE_MEM,
41};
Linus Torvalds1da177e2005-04-16 15:20:36 -070042EXPORT_SYMBOL(iomem_resource);
43
Ram Pai23c570a2011-07-05 23:44:30 -070044/* constraints to be met while allocating resources */
45struct resource_constraint {
46 resource_size_t min, max, align;
47 resource_size_t (*alignf)(void *, const struct resource *,
48 resource_size_t, resource_size_t);
49 void *alignf_data;
50};
51
Linus Torvalds1da177e2005-04-16 15:20:36 -070052static DEFINE_RWLOCK(resource_lock);
53
Yasuaki Ishimatsuebff7d82013-04-29 15:08:56 -070054/*
55 * For memory hotplug, there is no way to free resource entries allocated
56 * by boot mem after the system is up. So for reusing the resource entry
57 * we need to remember the resource.
58 */
59static struct resource *bootmem_resource_free;
60static DEFINE_SPINLOCK(bootmem_resource_lock);
61
Vivek Goyal8c86e702014-08-08 14:25:50 -070062static struct resource *next_resource(struct resource *p, bool sibling_only)
Linus Torvalds1da177e2005-04-16 15:20:36 -070063{
Vivek Goyal8c86e702014-08-08 14:25:50 -070064 /* Caller wants to traverse through siblings only */
65 if (sibling_only)
66 return p->sibling;
67
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 if (p->child)
69 return p->child;
70 while (!p->sibling && p->parent)
71 p = p->parent;
72 return p->sibling;
73}
74
Vivek Goyal8c86e702014-08-08 14:25:50 -070075static void *r_next(struct seq_file *m, void *v, loff_t *pos)
76{
77 struct resource *p = v;
78 (*pos)++;
79 return (void *)next_resource(p, false);
80}
81
Ingo Molnar13eb8372008-09-26 10:10:12 +020082#ifdef CONFIG_PROC_FS
83
84enum { MAX_IORES_LEVEL = 5 };
85
Linus Torvalds1da177e2005-04-16 15:20:36 -070086static void *r_start(struct seq_file *m, loff_t *pos)
87 __acquires(resource_lock)
88{
89 struct resource *p = m->private;
90 loff_t l = 0;
91 read_lock(&resource_lock);
92 for (p = p->child; p && l < *pos; p = r_next(m, p, &l))
93 ;
94 return p;
95}
96
97static void r_stop(struct seq_file *m, void *v)
98 __releases(resource_lock)
99{
100 read_unlock(&resource_lock);
101}
102
103static int r_show(struct seq_file *m, void *v)
104{
105 struct resource *root = m->private;
106 struct resource *r = v, *p;
107 int width = root->end < 0x10000 ? 4 : 8;
108 int depth;
109
110 for (depth = 0, p = r; depth < MAX_IORES_LEVEL; depth++, p = p->parent)
111 if (p->parent == root)
112 break;
Greg Kroah-Hartman685143ac2006-06-12 15:18:31 -0700113 seq_printf(m, "%*s%0*llx-%0*llx : %s\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 depth * 2, "",
Greg Kroah-Hartman685143ac2006-06-12 15:18:31 -0700115 width, (unsigned long long) r->start,
116 width, (unsigned long long) r->end,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 r->name ? r->name : "<BAD>");
118 return 0;
119}
120
Helge Deller15ad7cd2006-12-06 20:40:36 -0800121static const struct seq_operations resource_op = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 .start = r_start,
123 .next = r_next,
124 .stop = r_stop,
125 .show = r_show,
126};
127
128static int ioports_open(struct inode *inode, struct file *file)
129{
130 int res = seq_open(file, &resource_op);
131 if (!res) {
132 struct seq_file *m = file->private_data;
133 m->private = &ioport_resource;
134 }
135 return res;
136}
137
138static int iomem_open(struct inode *inode, struct file *file)
139{
140 int res = seq_open(file, &resource_op);
141 if (!res) {
142 struct seq_file *m = file->private_data;
143 m->private = &iomem_resource;
144 }
145 return res;
146}
147
Helge Deller15ad7cd2006-12-06 20:40:36 -0800148static const struct file_operations proc_ioports_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 .open = ioports_open,
150 .read = seq_read,
151 .llseek = seq_lseek,
152 .release = seq_release,
153};
154
Helge Deller15ad7cd2006-12-06 20:40:36 -0800155static const struct file_operations proc_iomem_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 .open = iomem_open,
157 .read = seq_read,
158 .llseek = seq_lseek,
159 .release = seq_release,
160};
161
162static int __init ioresources_init(void)
163{
Denis V. Lunevc33fff02008-04-29 01:02:31 -0700164 proc_create("ioports", 0, NULL, &proc_ioports_operations);
165 proc_create("iomem", 0, NULL, &proc_iomem_operations);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 return 0;
167}
168__initcall(ioresources_init);
169
170#endif /* CONFIG_PROC_FS */
171
Yasuaki Ishimatsuebff7d82013-04-29 15:08:56 -0700172static void free_resource(struct resource *res)
173{
174 if (!res)
175 return;
176
177 if (!PageSlab(virt_to_head_page(res))) {
178 spin_lock(&bootmem_resource_lock);
179 res->sibling = bootmem_resource_free;
180 bootmem_resource_free = res;
181 spin_unlock(&bootmem_resource_lock);
182 } else {
183 kfree(res);
184 }
185}
186
187static struct resource *alloc_resource(gfp_t flags)
188{
189 struct resource *res = NULL;
190
191 spin_lock(&bootmem_resource_lock);
192 if (bootmem_resource_free) {
193 res = bootmem_resource_free;
194 bootmem_resource_free = res->sibling;
195 }
196 spin_unlock(&bootmem_resource_lock);
197
198 if (res)
199 memset(res, 0, sizeof(struct resource));
200 else
201 res = kzalloc(sizeof(struct resource), flags);
202
203 return res;
204}
205
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206/* Return the conflict entry if you can't request it */
207static struct resource * __request_resource(struct resource *root, struct resource *new)
208{
Greg Kroah-Hartmand75fc8b2006-06-12 16:09:23 -0700209 resource_size_t start = new->start;
210 resource_size_t end = new->end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 struct resource *tmp, **p;
212
213 if (end < start)
214 return root;
215 if (start < root->start)
216 return root;
217 if (end > root->end)
218 return root;
219 p = &root->child;
220 for (;;) {
221 tmp = *p;
222 if (!tmp || tmp->start > end) {
223 new->sibling = tmp;
224 *p = new;
225 new->parent = root;
226 return NULL;
227 }
228 p = &tmp->sibling;
229 if (tmp->end < start)
230 continue;
231 return tmp;
232 }
233}
234
235static int __release_resource(struct resource *old)
236{
237 struct resource *tmp, **p;
238
239 p = &old->parent->child;
240 for (;;) {
241 tmp = *p;
242 if (!tmp)
243 break;
244 if (tmp == old) {
245 *p = tmp->sibling;
246 old->parent = NULL;
247 return 0;
248 }
249 p = &tmp->sibling;
250 }
251 return -EINVAL;
252}
253
Yinghai Lu5eeec0e2009-12-22 15:02:22 -0800254static void __release_child_resources(struct resource *r)
255{
256 struct resource *tmp, *p;
257 resource_size_t size;
258
259 p = r->child;
260 r->child = NULL;
261 while (p) {
262 tmp = p;
263 p = p->sibling;
264
265 tmp->parent = NULL;
266 tmp->sibling = NULL;
267 __release_child_resources(tmp);
268
269 printk(KERN_DEBUG "release child resource %pR\n", tmp);
270 /* need to restore size, and keep flags */
271 size = resource_size(tmp);
272 tmp->start = 0;
273 tmp->end = size - 1;
274 }
275}
276
277void release_child_resources(struct resource *r)
278{
279 write_lock(&resource_lock);
280 __release_child_resources(r);
281 write_unlock(&resource_lock);
282}
283
Randy Dunlape1ca66d1b2006-10-03 01:13:51 -0700284/**
Bjorn Helgaas66f12072010-03-11 17:01:09 -0700285 * request_resource_conflict - request and reserve an I/O or memory resource
286 * @root: root resource descriptor
287 * @new: resource descriptor desired by caller
288 *
289 * Returns 0 for success, conflict resource on error.
290 */
291struct resource *request_resource_conflict(struct resource *root, struct resource *new)
292{
293 struct resource *conflict;
294
295 write_lock(&resource_lock);
296 conflict = __request_resource(root, new);
297 write_unlock(&resource_lock);
298 return conflict;
299}
300
301/**
Randy Dunlape1ca66d1b2006-10-03 01:13:51 -0700302 * request_resource - request and reserve an I/O or memory resource
303 * @root: root resource descriptor
304 * @new: resource descriptor desired by caller
305 *
306 * Returns 0 for success, negative error code on error.
307 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308int request_resource(struct resource *root, struct resource *new)
309{
310 struct resource *conflict;
311
Bjorn Helgaas66f12072010-03-11 17:01:09 -0700312 conflict = request_resource_conflict(root, new);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 return conflict ? -EBUSY : 0;
314}
315
316EXPORT_SYMBOL(request_resource);
317
Randy Dunlape1ca66d1b2006-10-03 01:13:51 -0700318/**
Randy Dunlape1ca66d1b2006-10-03 01:13:51 -0700319 * release_resource - release a previously reserved resource
320 * @old: resource pointer
321 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322int release_resource(struct resource *old)
323{
324 int retval;
325
326 write_lock(&resource_lock);
327 retval = __release_resource(old);
328 write_unlock(&resource_lock);
329 return retval;
330}
331
332EXPORT_SYMBOL(release_resource);
333
KAMEZAWA Hiroyuki2842f112006-06-27 02:53:36 -0700334/*
Vivek Goyal8c86e702014-08-08 14:25:50 -0700335 * Finds the lowest iomem reosurce exists with-in [res->start.res->end)
KAMEZAWA Hiroyuki908eedc2009-09-22 16:45:46 -0700336 * the caller must specify res->start, res->end, res->flags and "name".
KAMEZAWA Hiroyuki2842f112006-06-27 02:53:36 -0700337 * If found, returns 0, res is overwritten, if not found, returns -1.
Vivek Goyal8c86e702014-08-08 14:25:50 -0700338 * This walks through whole tree and not just first level children
339 * until and unless first_level_children_only is true.
KAMEZAWA Hiroyuki2842f112006-06-27 02:53:36 -0700340 */
Vivek Goyal8c86e702014-08-08 14:25:50 -0700341static int find_next_iomem_res(struct resource *res, char *name,
342 bool first_level_children_only)
KAMEZAWA Hiroyuki2842f112006-06-27 02:53:36 -0700343{
344 resource_size_t start, end;
345 struct resource *p;
Vivek Goyal8c86e702014-08-08 14:25:50 -0700346 bool sibling_only = false;
KAMEZAWA Hiroyuki2842f112006-06-27 02:53:36 -0700347
348 BUG_ON(!res);
349
350 start = res->start;
351 end = res->end;
KAMEZAWA Hiroyuki58c1b5b2006-08-05 12:15:01 -0700352 BUG_ON(start >= end);
KAMEZAWA Hiroyuki2842f112006-06-27 02:53:36 -0700353
354 read_lock(&resource_lock);
Vivek Goyal8c86e702014-08-08 14:25:50 -0700355
356 if (first_level_children_only) {
357 p = iomem_resource.child;
358 sibling_only = true;
359 } else
360 p = &iomem_resource;
361
362 while ((p = next_resource(p, sibling_only))) {
KAMEZAWA Hiroyuki2842f112006-06-27 02:53:36 -0700363 if (p->flags != res->flags)
364 continue;
KAMEZAWA Hiroyuki908eedc2009-09-22 16:45:46 -0700365 if (name && strcmp(p->name, name))
366 continue;
KAMEZAWA Hiroyuki2842f112006-06-27 02:53:36 -0700367 if (p->start > end) {
368 p = NULL;
369 break;
370 }
KAMEZAWA Hiroyuki58c1b5b2006-08-05 12:15:01 -0700371 if ((p->end >= start) && (p->start < end))
KAMEZAWA Hiroyuki2842f112006-06-27 02:53:36 -0700372 break;
373 }
Vivek Goyal8c86e702014-08-08 14:25:50 -0700374
KAMEZAWA Hiroyuki2842f112006-06-27 02:53:36 -0700375 read_unlock(&resource_lock);
376 if (!p)
377 return -1;
378 /* copy data */
KAMEZAWA Hiroyuki0f04ab52006-08-05 12:14:59 -0700379 if (res->start < p->start)
380 res->start = p->start;
381 if (res->end > p->end)
382 res->end = p->end;
KAMEZAWA Hiroyuki2842f112006-06-27 02:53:36 -0700383 return 0;
384}
KAMEZAWA Hiroyuki908eedc2009-09-22 16:45:46 -0700385
386/*
Vivek Goyal8c86e702014-08-08 14:25:50 -0700387 * Walks through iomem resources and calls func() with matching resource
388 * ranges. This walks through whole tree and not just first level children.
389 * All the memory ranges which overlap start,end and also match flags and
390 * name are valid candidates.
391 *
392 * @name: name of resource
393 * @flags: resource flags
394 * @start: start addr
395 * @end: end addr
396 */
397int walk_iomem_res(char *name, unsigned long flags, u64 start, u64 end,
398 void *arg, int (*func)(u64, u64, void *))
399{
400 struct resource res;
401 u64 orig_end;
402 int ret = -1;
403
404 res.start = start;
405 res.end = end;
406 res.flags = flags;
407 orig_end = res.end;
408 while ((res.start < res.end) &&
409 (!find_next_iomem_res(&res, name, false))) {
410 ret = (*func)(res.start, res.end, arg);
411 if (ret)
412 break;
413 res.start = res.end + 1;
414 res.end = orig_end;
415 }
416 return ret;
417}
418
419/*
420 * This function calls callback against all memory range of "System RAM"
421 * which are marked as IORESOURCE_MEM and IORESOUCE_BUSY.
422 * Now, this function is only for "System RAM". This function deals with
423 * full ranges and not pfn. If resources are not pfn aligned, dealing
424 * with pfn can truncate ranges.
425 */
426int walk_system_ram_res(u64 start, u64 end, void *arg,
427 int (*func)(u64, u64, void *))
428{
429 struct resource res;
430 u64 orig_end;
431 int ret = -1;
432
433 res.start = start;
434 res.end = end;
435 res.flags = IORESOURCE_MEM | IORESOURCE_BUSY;
436 orig_end = res.end;
437 while ((res.start < res.end) &&
438 (!find_next_iomem_res(&res, "System RAM", true))) {
439 ret = (*func)(res.start, res.end, arg);
440 if (ret)
441 break;
442 res.start = res.end + 1;
443 res.end = orig_end;
444 }
445 return ret;
446}
447
448#if !defined(CONFIG_ARCH_HAS_WALK_MEMORY)
449
450/*
KAMEZAWA Hiroyuki908eedc2009-09-22 16:45:46 -0700451 * This function calls callback against all memory range of "System RAM"
452 * which are marked as IORESOURCE_MEM and IORESOUCE_BUSY.
453 * Now, this function is only for "System RAM".
454 */
455int walk_system_ram_range(unsigned long start_pfn, unsigned long nr_pages,
456 void *arg, int (*func)(unsigned long, unsigned long, void *))
KAMEZAWA Hiroyuki75884fb2007-10-16 01:26:10 -0700457{
458 struct resource res;
Wu Fengguang37b99dd2010-03-01 21:55:51 +0800459 unsigned long pfn, end_pfn;
KAMEZAWA Hiroyuki75884fb2007-10-16 01:26:10 -0700460 u64 orig_end;
461 int ret = -1;
KAMEZAWA Hiroyuki908eedc2009-09-22 16:45:46 -0700462
KAMEZAWA Hiroyuki75884fb2007-10-16 01:26:10 -0700463 res.start = (u64) start_pfn << PAGE_SHIFT;
464 res.end = ((u64)(start_pfn + nr_pages) << PAGE_SHIFT) - 1;
Yasunori Goto887c3cb2007-11-14 16:59:20 -0800465 res.flags = IORESOURCE_MEM | IORESOURCE_BUSY;
KAMEZAWA Hiroyuki75884fb2007-10-16 01:26:10 -0700466 orig_end = res.end;
KAMEZAWA Hiroyuki908eedc2009-09-22 16:45:46 -0700467 while ((res.start < res.end) &&
Vivek Goyal8c86e702014-08-08 14:25:50 -0700468 (find_next_iomem_res(&res, "System RAM", true) >= 0)) {
Wu Fengguang37b99dd2010-03-01 21:55:51 +0800469 pfn = (res.start + PAGE_SIZE - 1) >> PAGE_SHIFT;
470 end_pfn = (res.end + 1) >> PAGE_SHIFT;
471 if (end_pfn > pfn)
H. Peter Anvinf4149662010-03-02 11:21:09 -0800472 ret = (*func)(pfn, end_pfn - pfn, arg);
KAMEZAWA Hiroyuki75884fb2007-10-16 01:26:10 -0700473 if (ret)
474 break;
475 res.start = res.end + 1;
476 res.end = orig_end;
477 }
478 return ret;
479}
480
KAMEZAWA Hiroyuki2842f112006-06-27 02:53:36 -0700481#endif
482
Wu Fengguang61ef2482010-01-22 16:16:19 +0800483static int __is_ram(unsigned long pfn, unsigned long nr_pages, void *arg)
484{
485 return 1;
486}
487/*
488 * This generic page_is_ram() returns true if specified address is
489 * registered as "System RAM" in iomem_resource list.
490 */
Andrew Mortone5273002010-01-26 16:31:19 -0800491int __weak page_is_ram(unsigned long pfn)
Wu Fengguang61ef2482010-01-22 16:16:19 +0800492{
493 return walk_system_ram_range(pfn, 1, NULL, __is_ram) == 1;
494}
Chen Gongc5a13032013-06-06 15:20:51 -0700495EXPORT_SYMBOL_GPL(page_is_ram);
Wu Fengguang61ef2482010-01-22 16:16:19 +0800496
Bjorn Helgaasfcb11912010-12-16 10:38:46 -0700497void __weak arch_remove_reservations(struct resource *avail)
498{
499}
500
Bjorn Helgaasa9cea012010-10-26 15:41:13 -0600501static resource_size_t simple_align_resource(void *data,
502 const struct resource *avail,
503 resource_size_t size,
504 resource_size_t align)
505{
506 return avail->start;
507}
508
Bjorn Helgaas5d6b1fa2010-10-26 15:41:18 -0600509static void resource_clip(struct resource *res, resource_size_t min,
510 resource_size_t max)
511{
512 if (res->start < min)
513 res->start = min;
514 if (res->end > max)
515 res->end = max;
516}
517
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518/*
Ram Pai23c570a2011-07-05 23:44:30 -0700519 * Find empty slot in the resource tree with the given range and
520 * alignment constraints
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 */
Ram Pai23c570a2011-07-05 23:44:30 -0700522static int __find_resource(struct resource *root, struct resource *old,
523 struct resource *new,
524 resource_size_t size,
525 struct resource_constraint *constraint)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526{
527 struct resource *this = root->child;
Bjorn Helgaasa1862e32010-10-26 15:41:28 -0600528 struct resource tmp = *new, avail, alloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529
Dominik Brodowski0e2c8b82009-12-20 10:50:02 +0100530 tmp.start = root->start;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 /*
Bjorn Helgaasc0f5ac52010-12-16 10:38:41 -0700532 * Skip past an allocated resource that starts at 0, since the assignment
533 * of this->start - 1 to tmp->end below would cause an underflow.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 */
Ram Pai23c570a2011-07-05 23:44:30 -0700535 if (this && this->start == root->start) {
536 tmp.start = (this == old) ? old->start : this->end + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 this = this->sibling;
538 }
Bjorn Helgaasc0f5ac52010-12-16 10:38:41 -0700539 for(;;) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 if (this)
Ram Pai23c570a2011-07-05 23:44:30 -0700541 tmp.end = (this == old) ? this->end : this->start - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 else
Dominik Brodowski0e2c8b82009-12-20 10:50:02 +0100543 tmp.end = root->end;
Bjorn Helgaas5d6b1fa2010-10-26 15:41:18 -0600544
Ram Pai47ea91b2011-09-22 15:48:58 +0800545 if (tmp.end < tmp.start)
546 goto next;
547
Ram Pai23c570a2011-07-05 23:44:30 -0700548 resource_clip(&tmp, constraint->min, constraint->max);
Bjorn Helgaasfcb11912010-12-16 10:38:46 -0700549 arch_remove_reservations(&tmp);
Bjorn Helgaasa9cea012010-10-26 15:41:13 -0600550
Bjorn Helgaasa1862e32010-10-26 15:41:28 -0600551 /* Check for overflow after ALIGN() */
Ram Pai23c570a2011-07-05 23:44:30 -0700552 avail.start = ALIGN(tmp.start, constraint->align);
Bjorn Helgaasa1862e32010-10-26 15:41:28 -0600553 avail.end = tmp.end;
Bjorn Helgaas5edb93b2014-02-04 19:32:28 -0800554 avail.flags = new->flags & ~IORESOURCE_UNSET;
Bjorn Helgaasa1862e32010-10-26 15:41:28 -0600555 if (avail.start >= tmp.start) {
Bjorn Helgaas5edb93b2014-02-04 19:32:28 -0800556 alloc.flags = avail.flags;
Ram Pai23c570a2011-07-05 23:44:30 -0700557 alloc.start = constraint->alignf(constraint->alignf_data, &avail,
558 size, constraint->align);
Bjorn Helgaasa1862e32010-10-26 15:41:28 -0600559 alloc.end = alloc.start + size - 1;
560 if (resource_contains(&avail, &alloc)) {
561 new->start = alloc.start;
562 new->end = alloc.end;
563 return 0;
564 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 }
Ram Pai47ea91b2011-09-22 15:48:58 +0800566
567next: if (!this || this->end == root->end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 break;
Ram Pai47ea91b2011-09-22 15:48:58 +0800569
Ram Pai23c570a2011-07-05 23:44:30 -0700570 if (this != old)
571 tmp.start = this->end + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 this = this->sibling;
573 }
574 return -EBUSY;
575}
576
Ram Pai23c570a2011-07-05 23:44:30 -0700577/*
578 * Find empty slot in the resource tree given range and alignment.
579 */
580static int find_resource(struct resource *root, struct resource *new,
581 resource_size_t size,
582 struct resource_constraint *constraint)
583{
584 return __find_resource(root, NULL, new, size, constraint);
585}
586
Randy Dunlape1ca66d1b2006-10-03 01:13:51 -0700587/**
Ram Pai23c570a2011-07-05 23:44:30 -0700588 * reallocate_resource - allocate a slot in the resource tree given range & alignment.
589 * The resource will be relocated if the new size cannot be reallocated in the
590 * current location.
591 *
592 * @root: root resource descriptor
593 * @old: resource descriptor desired by caller
594 * @newsize: new size of the resource descriptor
595 * @constraint: the size and alignment constraints to be met.
596 */
Daeseok Youn28ab49f2014-04-03 14:48:36 -0700597static int reallocate_resource(struct resource *root, struct resource *old,
Ram Pai23c570a2011-07-05 23:44:30 -0700598 resource_size_t newsize,
599 struct resource_constraint *constraint)
600{
601 int err=0;
602 struct resource new = *old;
603 struct resource *conflict;
604
605 write_lock(&resource_lock);
606
607 if ((err = __find_resource(root, old, &new, newsize, constraint)))
608 goto out;
609
610 if (resource_contains(&new, old)) {
611 old->start = new.start;
612 old->end = new.end;
613 goto out;
614 }
615
616 if (old->child) {
617 err = -EBUSY;
618 goto out;
619 }
620
621 if (resource_contains(old, &new)) {
622 old->start = new.start;
623 old->end = new.end;
624 } else {
625 __release_resource(old);
626 *old = new;
627 conflict = __request_resource(root, old);
628 BUG_ON(conflict);
629 }
630out:
631 write_unlock(&resource_lock);
632 return err;
633}
634
635
636/**
637 * allocate_resource - allocate empty slot in the resource tree given range & alignment.
638 * The resource will be reallocated with a new size if it was already allocated
Randy Dunlape1ca66d1b2006-10-03 01:13:51 -0700639 * @root: root resource descriptor
640 * @new: resource descriptor desired by caller
641 * @size: requested resource region size
Wei Yangee5e5682012-05-31 16:26:05 -0700642 * @min: minimum boundary to allocate
643 * @max: maximum boundary to allocate
Randy Dunlape1ca66d1b2006-10-03 01:13:51 -0700644 * @align: alignment requested, in bytes
645 * @alignf: alignment function, optional, called if not NULL
646 * @alignf_data: arbitrary data to pass to the @alignf function
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 */
648int allocate_resource(struct resource *root, struct resource *new,
Greg Kroah-Hartmand75fc8b2006-06-12 16:09:23 -0700649 resource_size_t size, resource_size_t min,
650 resource_size_t max, resource_size_t align,
Dominik Brodowskib26b2d42010-01-01 17:40:49 +0100651 resource_size_t (*alignf)(void *,
Dominik Brodowski3b7a17f2010-01-01 17:40:50 +0100652 const struct resource *,
Dominik Brodowskib26b2d42010-01-01 17:40:49 +0100653 resource_size_t,
654 resource_size_t),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 void *alignf_data)
656{
657 int err;
Ram Pai23c570a2011-07-05 23:44:30 -0700658 struct resource_constraint constraint;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659
Bjorn Helgaasa9cea012010-10-26 15:41:13 -0600660 if (!alignf)
661 alignf = simple_align_resource;
662
Ram Pai23c570a2011-07-05 23:44:30 -0700663 constraint.min = min;
664 constraint.max = max;
665 constraint.align = align;
666 constraint.alignf = alignf;
667 constraint.alignf_data = alignf_data;
668
669 if ( new->parent ) {
670 /* resource is already allocated, try reallocating with
671 the new constraints */
672 return reallocate_resource(root, new, size, &constraint);
673 }
674
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 write_lock(&resource_lock);
Ram Pai23c570a2011-07-05 23:44:30 -0700676 err = find_resource(root, new, size, &constraint);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 if (err >= 0 && __request_resource(root, new))
678 err = -EBUSY;
679 write_unlock(&resource_lock);
680 return err;
681}
682
683EXPORT_SYMBOL(allocate_resource);
684
Geert Uytterhoeven1c388912011-05-07 20:53:16 +0200685/**
686 * lookup_resource - find an existing resource by a resource start address
687 * @root: root resource descriptor
688 * @start: resource start address
689 *
690 * Returns a pointer to the resource if found, NULL otherwise
691 */
692struct resource *lookup_resource(struct resource *root, resource_size_t start)
693{
694 struct resource *res;
695
696 read_lock(&resource_lock);
697 for (res = root->child; res; res = res->sibling) {
698 if (res->start == start)
699 break;
700 }
701 read_unlock(&resource_lock);
702
703 return res;
704}
705
Linus Torvaldsbef69ea2008-08-29 20:18:31 -0700706/*
707 * Insert a resource into the resource tree. If successful, return NULL,
708 * otherwise return the conflicting resource (compare to __request_resource())
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 */
Linus Torvaldsbef69ea2008-08-29 20:18:31 -0700710static struct resource * __insert_resource(struct resource *parent, struct resource *new)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 struct resource *first, *next;
713
Matthew Wilcoxd33b6fb2006-06-30 02:31:24 -0700714 for (;; parent = first) {
Matthew Wilcoxd33b6fb2006-06-30 02:31:24 -0700715 first = __request_resource(parent, new);
716 if (!first)
Linus Torvaldsbef69ea2008-08-29 20:18:31 -0700717 return first;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718
Matthew Wilcoxd33b6fb2006-06-30 02:31:24 -0700719 if (first == parent)
Linus Torvaldsbef69ea2008-08-29 20:18:31 -0700720 return first;
Huang Shijie5de1cb22010-10-27 15:34:52 -0700721 if (WARN_ON(first == new)) /* duplicated insertion */
722 return first;
Matthew Wilcoxd33b6fb2006-06-30 02:31:24 -0700723
724 if ((first->start > new->start) || (first->end < new->end))
725 break;
726 if ((first->start == new->start) && (first->end == new->end))
727 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 }
729
730 for (next = first; ; next = next->sibling) {
731 /* Partial overlap? Bad, and unfixable */
732 if (next->start < new->start || next->end > new->end)
Linus Torvaldsbef69ea2008-08-29 20:18:31 -0700733 return next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 if (!next->sibling)
735 break;
736 if (next->sibling->start > new->end)
737 break;
738 }
739
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 new->parent = parent;
741 new->sibling = next->sibling;
742 new->child = first;
743
744 next->sibling = NULL;
745 for (next = first; next; next = next->sibling)
746 next->parent = new;
747
748 if (parent->child == first) {
749 parent->child = new;
750 } else {
751 next = parent->child;
752 while (next->sibling != first)
753 next = next->sibling;
754 next->sibling = new;
755 }
Linus Torvaldsbef69ea2008-08-29 20:18:31 -0700756 return NULL;
757}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758
Linus Torvaldsbef69ea2008-08-29 20:18:31 -0700759/**
Bjorn Helgaas66f12072010-03-11 17:01:09 -0700760 * insert_resource_conflict - Inserts resource in the resource tree
Linus Torvaldsbef69ea2008-08-29 20:18:31 -0700761 * @parent: parent of the new resource
762 * @new: new resource to insert
763 *
Bjorn Helgaas66f12072010-03-11 17:01:09 -0700764 * Returns 0 on success, conflict resource if the resource can't be inserted.
Linus Torvaldsbef69ea2008-08-29 20:18:31 -0700765 *
Bjorn Helgaas66f12072010-03-11 17:01:09 -0700766 * This function is equivalent to request_resource_conflict when no conflict
Linus Torvaldsbef69ea2008-08-29 20:18:31 -0700767 * happens. If a conflict happens, and the conflicting resources
768 * entirely fit within the range of the new resource, then the new
769 * resource is inserted and the conflicting resources become children of
770 * the new resource.
771 */
Bjorn Helgaas66f12072010-03-11 17:01:09 -0700772struct resource *insert_resource_conflict(struct resource *parent, struct resource *new)
Linus Torvaldsbef69ea2008-08-29 20:18:31 -0700773{
774 struct resource *conflict;
775
776 write_lock(&resource_lock);
777 conflict = __insert_resource(parent, new);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 write_unlock(&resource_lock);
Bjorn Helgaas66f12072010-03-11 17:01:09 -0700779 return conflict;
780}
781
782/**
783 * insert_resource - Inserts a resource in the resource tree
784 * @parent: parent of the new resource
785 * @new: new resource to insert
786 *
787 * Returns 0 on success, -EBUSY if the resource can't be inserted.
788 */
789int insert_resource(struct resource *parent, struct resource *new)
790{
791 struct resource *conflict;
792
793 conflict = insert_resource_conflict(parent, new);
Linus Torvaldsbef69ea2008-08-29 20:18:31 -0700794 return conflict ? -EBUSY : 0;
795}
796
797/**
798 * insert_resource_expand_to_fit - Insert a resource into the resource tree
Randy Dunlap6781f4a2008-08-31 20:31:55 -0700799 * @root: root resource descriptor
Linus Torvaldsbef69ea2008-08-29 20:18:31 -0700800 * @new: new resource to insert
801 *
802 * Insert a resource into the resource tree, possibly expanding it in order
803 * to make it encompass any conflicting resources.
804 */
805void insert_resource_expand_to_fit(struct resource *root, struct resource *new)
806{
807 if (new->parent)
808 return;
809
810 write_lock(&resource_lock);
811 for (;;) {
812 struct resource *conflict;
813
814 conflict = __insert_resource(root, new);
815 if (!conflict)
816 break;
817 if (conflict == root)
818 break;
819
820 /* Ok, expand resource to cover the conflict, then try again .. */
821 if (conflict->start < new->start)
822 new->start = conflict->start;
823 if (conflict->end > new->end)
824 new->end = conflict->end;
825
826 printk("Expanded resource %s due to conflict with %s\n", new->name, conflict->name);
827 }
828 write_unlock(&resource_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829}
830
Toshi Kaniae8e3a92013-04-29 15:08:17 -0700831static int __adjust_resource(struct resource *res, resource_size_t start,
832 resource_size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833{
834 struct resource *tmp, *parent = res->parent;
Greg Kroah-Hartmand75fc8b2006-06-12 16:09:23 -0700835 resource_size_t end = start + size - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 int result = -EBUSY;
837
Yinghai Lu82ec90e2012-05-17 18:51:11 -0700838 if (!parent)
839 goto skip;
840
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 if ((start < parent->start) || (end > parent->end))
842 goto out;
843
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 if (res->sibling && (res->sibling->start <= end))
845 goto out;
846
847 tmp = parent->child;
848 if (tmp != res) {
849 while (tmp->sibling != res)
850 tmp = tmp->sibling;
851 if (start <= tmp->end)
852 goto out;
853 }
854
Yinghai Lu82ec90e2012-05-17 18:51:11 -0700855skip:
856 for (tmp = res->child; tmp; tmp = tmp->sibling)
857 if ((tmp->start < start) || (tmp->end > end))
858 goto out;
859
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 res->start = start;
861 res->end = end;
862 result = 0;
863
864 out:
Toshi Kaniae8e3a92013-04-29 15:08:17 -0700865 return result;
866}
867
868/**
869 * adjust_resource - modify a resource's start and size
870 * @res: resource to modify
871 * @start: new start value
872 * @size: new size
873 *
874 * Given an existing resource, change its start and size to match the
875 * arguments. Returns 0 on success, -EBUSY if it can't fit.
876 * Existing children of the resource are assumed to be immutable.
877 */
878int adjust_resource(struct resource *res, resource_size_t start,
879 resource_size_t size)
880{
881 int result;
882
883 write_lock(&resource_lock);
884 result = __adjust_resource(res, start, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 write_unlock(&resource_lock);
886 return result;
887}
Cong Wang24105742012-02-03 21:42:39 +0800888EXPORT_SYMBOL(adjust_resource);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889
Yinghai Lu268364a2008-09-04 21:02:44 +0200890static void __init __reserve_region_with_split(struct resource *root,
891 resource_size_t start, resource_size_t end,
892 const char *name)
893{
894 struct resource *parent = root;
895 struct resource *conflict;
Yasuaki Ishimatsuebff7d82013-04-29 15:08:56 -0700896 struct resource *res = alloc_resource(GFP_ATOMIC);
T Makphaibulchoke4965f562012-10-04 17:16:55 -0700897 struct resource *next_res = NULL;
Yinghai Lu268364a2008-09-04 21:02:44 +0200898
899 if (!res)
900 return;
901
902 res->name = name;
903 res->start = start;
904 res->end = end;
905 res->flags = IORESOURCE_BUSY;
906
T Makphaibulchoke4965f562012-10-04 17:16:55 -0700907 while (1) {
Yinghai Lu268364a2008-09-04 21:02:44 +0200908
T Makphaibulchoke4965f562012-10-04 17:16:55 -0700909 conflict = __request_resource(parent, res);
910 if (!conflict) {
911 if (!next_res)
912 break;
913 res = next_res;
914 next_res = NULL;
915 continue;
916 }
Yinghai Lu268364a2008-09-04 21:02:44 +0200917
T Makphaibulchoke4965f562012-10-04 17:16:55 -0700918 /* conflict covered whole area */
919 if (conflict->start <= res->start &&
920 conflict->end >= res->end) {
Yasuaki Ishimatsuebff7d82013-04-29 15:08:56 -0700921 free_resource(res);
T Makphaibulchoke4965f562012-10-04 17:16:55 -0700922 WARN_ON(next_res);
923 break;
924 }
Yinghai Lu268364a2008-09-04 21:02:44 +0200925
T Makphaibulchoke4965f562012-10-04 17:16:55 -0700926 /* failed, split and try again */
927 if (conflict->start > res->start) {
928 end = res->end;
929 res->end = conflict->start - 1;
930 if (conflict->end < end) {
Yasuaki Ishimatsuebff7d82013-04-29 15:08:56 -0700931 next_res = alloc_resource(GFP_ATOMIC);
T Makphaibulchoke4965f562012-10-04 17:16:55 -0700932 if (!next_res) {
Yasuaki Ishimatsuebff7d82013-04-29 15:08:56 -0700933 free_resource(res);
T Makphaibulchoke4965f562012-10-04 17:16:55 -0700934 break;
935 }
936 next_res->name = name;
937 next_res->start = conflict->end + 1;
938 next_res->end = end;
939 next_res->flags = IORESOURCE_BUSY;
940 }
941 } else {
942 res->start = conflict->end + 1;
943 }
944 }
945
Yinghai Lu268364a2008-09-04 21:02:44 +0200946}
947
Paul Mundtbea92112008-10-22 19:31:11 +0900948void __init reserve_region_with_split(struct resource *root,
Yinghai Lu268364a2008-09-04 21:02:44 +0200949 resource_size_t start, resource_size_t end,
950 const char *name)
951{
Octavian Purdila65fed8f2012-07-30 14:42:58 -0700952 int abort = 0;
953
Yinghai Lu268364a2008-09-04 21:02:44 +0200954 write_lock(&resource_lock);
Octavian Purdila65fed8f2012-07-30 14:42:58 -0700955 if (root->start > start || root->end < end) {
956 pr_err("requested range [0x%llx-0x%llx] not in root %pr\n",
957 (unsigned long long)start, (unsigned long long)end,
958 root);
959 if (start > root->end || end < root->start)
960 abort = 1;
961 else {
962 if (end > root->end)
963 end = root->end;
964 if (start < root->start)
965 start = root->start;
966 pr_err("fixing request to [0x%llx-0x%llx]\n",
967 (unsigned long long)start,
968 (unsigned long long)end);
969 }
970 dump_stack();
971 }
972 if (!abort)
973 __reserve_region_with_split(root, start, end, name);
Yinghai Lu268364a2008-09-04 21:02:44 +0200974 write_unlock(&resource_lock);
975}
976
Ivan Kokshaysky88452562008-03-30 19:50:14 +0400977/**
978 * resource_alignment - calculate resource's alignment
979 * @res: resource pointer
980 *
981 * Returns alignment on success, 0 (invalid alignment) on failure.
982 */
983resource_size_t resource_alignment(struct resource *res)
984{
985 switch (res->flags & (IORESOURCE_SIZEALIGN | IORESOURCE_STARTALIGN)) {
986 case IORESOURCE_SIZEALIGN:
Magnus Damm1a4e5642008-07-29 22:32:57 -0700987 return resource_size(res);
Ivan Kokshaysky88452562008-03-30 19:50:14 +0400988 case IORESOURCE_STARTALIGN:
989 return res->start;
990 default:
991 return 0;
992 }
993}
994
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995/*
996 * This is compatibility stuff for IO resources.
997 *
998 * Note how this, unlike the above, knows about
999 * the IO flag meanings (busy etc).
1000 *
Randy Dunlape1ca66d1b2006-10-03 01:13:51 -07001001 * request_region creates a new busy region.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 *
Randy Dunlape1ca66d1b2006-10-03 01:13:51 -07001003 * check_region returns non-zero if the area is already busy.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 *
Randy Dunlape1ca66d1b2006-10-03 01:13:51 -07001005 * release_region releases a matching busy region.
1006 */
1007
Alan Cox8b6d0432010-03-29 19:38:00 +02001008static DECLARE_WAIT_QUEUE_HEAD(muxed_resource_wait);
1009
Randy Dunlape1ca66d1b2006-10-03 01:13:51 -07001010/**
1011 * __request_region - create a new busy resource region
1012 * @parent: parent resource descriptor
1013 * @start: resource start address
1014 * @n: resource region size
1015 * @name: reserving caller's ID string
Randy Dunlap6ae301e2009-01-15 13:51:01 -08001016 * @flags: IO resource flags
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 */
Greg Kroah-Hartmand75fc8b2006-06-12 16:09:23 -07001018struct resource * __request_region(struct resource *parent,
1019 resource_size_t start, resource_size_t n,
Arjan van de Vene8de1482008-10-22 19:55:31 -07001020 const char *name, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021{
Alan Cox8b6d0432010-03-29 19:38:00 +02001022 DECLARE_WAITQUEUE(wait, current);
Yasuaki Ishimatsuebff7d82013-04-29 15:08:56 -07001023 struct resource *res = alloc_resource(GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024
Bjorn Helgaasc26ec882008-10-15 22:05:14 -07001025 if (!res)
1026 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027
Bjorn Helgaasc26ec882008-10-15 22:05:14 -07001028 res->name = name;
1029 res->start = start;
1030 res->end = start + n - 1;
Bjorn Helgaas6404e882014-03-07 09:22:19 -07001031 res->flags = resource_type(parent);
1032 res->flags |= IORESOURCE_BUSY | flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033
Bjorn Helgaasc26ec882008-10-15 22:05:14 -07001034 write_lock(&resource_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035
Bjorn Helgaasc26ec882008-10-15 22:05:14 -07001036 for (;;) {
1037 struct resource *conflict;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038
Bjorn Helgaasc26ec882008-10-15 22:05:14 -07001039 conflict = __request_resource(parent, res);
1040 if (!conflict)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 break;
Bjorn Helgaasc26ec882008-10-15 22:05:14 -07001042 if (conflict != parent) {
1043 parent = conflict;
1044 if (!(conflict->flags & IORESOURCE_BUSY))
1045 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 }
Alan Cox8b6d0432010-03-29 19:38:00 +02001047 if (conflict->flags & flags & IORESOURCE_MUXED) {
1048 add_wait_queue(&muxed_resource_wait, &wait);
1049 write_unlock(&resource_lock);
1050 set_current_state(TASK_UNINTERRUPTIBLE);
1051 schedule();
1052 remove_wait_queue(&muxed_resource_wait, &wait);
1053 write_lock(&resource_lock);
1054 continue;
1055 }
Bjorn Helgaasc26ec882008-10-15 22:05:14 -07001056 /* Uhhuh, that didn't work out.. */
Yasuaki Ishimatsuebff7d82013-04-29 15:08:56 -07001057 free_resource(res);
Bjorn Helgaasc26ec882008-10-15 22:05:14 -07001058 res = NULL;
1059 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 }
Bjorn Helgaasc26ec882008-10-15 22:05:14 -07001061 write_unlock(&resource_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 return res;
1063}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064EXPORT_SYMBOL(__request_region);
1065
Randy Dunlape1ca66d1b2006-10-03 01:13:51 -07001066/**
1067 * __check_region - check if a resource region is busy or free
1068 * @parent: parent resource descriptor
1069 * @start: resource start address
1070 * @n: resource region size
1071 *
1072 * Returns 0 if the region is free at the moment it is checked,
1073 * returns %-EBUSY if the region is busy.
1074 *
1075 * NOTE:
1076 * This function is deprecated because its use is racy.
1077 * Even if it returns 0, a subsequent call to request_region()
1078 * may fail because another driver etc. just allocated the region.
1079 * Do NOT use it. It will be removed from the kernel.
1080 */
Greg Kroah-Hartmand75fc8b2006-06-12 16:09:23 -07001081int __check_region(struct resource *parent, resource_size_t start,
1082 resource_size_t n)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083{
1084 struct resource * res;
1085
Arjan van de Vene8de1482008-10-22 19:55:31 -07001086 res = __request_region(parent, start, n, "check-region", 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087 if (!res)
1088 return -EBUSY;
1089
1090 release_resource(res);
Yasuaki Ishimatsuebff7d82013-04-29 15:08:56 -07001091 free_resource(res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 return 0;
1093}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094EXPORT_SYMBOL(__check_region);
1095
Randy Dunlape1ca66d1b2006-10-03 01:13:51 -07001096/**
1097 * __release_region - release a previously reserved resource region
1098 * @parent: parent resource descriptor
1099 * @start: resource start address
1100 * @n: resource region size
1101 *
1102 * The described resource region must match a currently busy region.
1103 */
Greg Kroah-Hartmand75fc8b2006-06-12 16:09:23 -07001104void __release_region(struct resource *parent, resource_size_t start,
1105 resource_size_t n)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106{
1107 struct resource **p;
Greg Kroah-Hartmand75fc8b2006-06-12 16:09:23 -07001108 resource_size_t end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109
1110 p = &parent->child;
1111 end = start + n - 1;
1112
1113 write_lock(&resource_lock);
1114
1115 for (;;) {
1116 struct resource *res = *p;
1117
1118 if (!res)
1119 break;
1120 if (res->start <= start && res->end >= end) {
1121 if (!(res->flags & IORESOURCE_BUSY)) {
1122 p = &res->child;
1123 continue;
1124 }
1125 if (res->start != start || res->end != end)
1126 break;
1127 *p = res->sibling;
1128 write_unlock(&resource_lock);
Alan Cox8b6d0432010-03-29 19:38:00 +02001129 if (res->flags & IORESOURCE_MUXED)
1130 wake_up(&muxed_resource_wait);
Yasuaki Ishimatsuebff7d82013-04-29 15:08:56 -07001131 free_resource(res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132 return;
1133 }
1134 p = &res->sibling;
1135 }
1136
1137 write_unlock(&resource_lock);
1138
Greg Kroah-Hartman685143ac2006-06-12 15:18:31 -07001139 printk(KERN_WARNING "Trying to free nonexistent resource "
1140 "<%016llx-%016llx>\n", (unsigned long long)start,
1141 (unsigned long long)end);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143EXPORT_SYMBOL(__release_region);
1144
Toshi Kani825f7872013-04-29 15:08:19 -07001145#ifdef CONFIG_MEMORY_HOTREMOVE
1146/**
1147 * release_mem_region_adjustable - release a previously reserved memory region
1148 * @parent: parent resource descriptor
1149 * @start: resource start address
1150 * @size: resource region size
1151 *
1152 * This interface is intended for memory hot-delete. The requested region
1153 * is released from a currently busy memory resource. The requested region
1154 * must either match exactly or fit into a single busy resource entry. In
1155 * the latter case, the remaining resource is adjusted accordingly.
1156 * Existing children of the busy memory resource must be immutable in the
1157 * request.
1158 *
1159 * Note:
1160 * - Additional release conditions, such as overlapping region, can be
1161 * supported after they are confirmed as valid cases.
1162 * - When a busy memory resource gets split into two entries, the code
1163 * assumes that all children remain in the lower address entry for
1164 * simplicity. Enhance this logic when necessary.
1165 */
1166int release_mem_region_adjustable(struct resource *parent,
1167 resource_size_t start, resource_size_t size)
1168{
1169 struct resource **p;
1170 struct resource *res;
1171 struct resource *new_res;
1172 resource_size_t end;
1173 int ret = -EINVAL;
1174
1175 end = start + size - 1;
1176 if ((start < parent->start) || (end > parent->end))
1177 return ret;
1178
Yasuaki Ishimatsuebff7d82013-04-29 15:08:56 -07001179 /* The alloc_resource() result gets checked later */
1180 new_res = alloc_resource(GFP_KERNEL);
Toshi Kani825f7872013-04-29 15:08:19 -07001181
1182 p = &parent->child;
1183 write_lock(&resource_lock);
1184
1185 while ((res = *p)) {
1186 if (res->start >= end)
1187 break;
1188
1189 /* look for the next resource if it does not fit into */
1190 if (res->start > start || res->end < end) {
1191 p = &res->sibling;
1192 continue;
1193 }
1194
1195 if (!(res->flags & IORESOURCE_MEM))
1196 break;
1197
1198 if (!(res->flags & IORESOURCE_BUSY)) {
1199 p = &res->child;
1200 continue;
1201 }
1202
1203 /* found the target resource; let's adjust accordingly */
1204 if (res->start == start && res->end == end) {
1205 /* free the whole entry */
1206 *p = res->sibling;
Yasuaki Ishimatsuebff7d82013-04-29 15:08:56 -07001207 free_resource(res);
Toshi Kani825f7872013-04-29 15:08:19 -07001208 ret = 0;
1209 } else if (res->start == start && res->end != end) {
1210 /* adjust the start */
1211 ret = __adjust_resource(res, end + 1,
1212 res->end - end);
1213 } else if (res->start != start && res->end == end) {
1214 /* adjust the end */
1215 ret = __adjust_resource(res, res->start,
1216 start - res->start);
1217 } else {
1218 /* split into two entries */
1219 if (!new_res) {
1220 ret = -ENOMEM;
1221 break;
1222 }
1223 new_res->name = res->name;
1224 new_res->start = end + 1;
1225 new_res->end = res->end;
1226 new_res->flags = res->flags;
1227 new_res->parent = res->parent;
1228 new_res->sibling = res->sibling;
1229 new_res->child = NULL;
1230
1231 ret = __adjust_resource(res, res->start,
1232 start - res->start);
1233 if (ret)
1234 break;
1235 res->sibling = new_res;
1236 new_res = NULL;
1237 }
1238
1239 break;
1240 }
1241
1242 write_unlock(&resource_lock);
Yasuaki Ishimatsuebff7d82013-04-29 15:08:56 -07001243 free_resource(new_res);
Toshi Kani825f7872013-04-29 15:08:19 -07001244 return ret;
1245}
1246#endif /* CONFIG_MEMORY_HOTREMOVE */
1247
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248/*
Tejun Heo9ac78492007-01-20 16:00:26 +09001249 * Managed region resource
1250 */
1251struct region_devres {
1252 struct resource *parent;
1253 resource_size_t start;
1254 resource_size_t n;
1255};
1256
1257static void devm_region_release(struct device *dev, void *res)
1258{
1259 struct region_devres *this = res;
1260
1261 __release_region(this->parent, this->start, this->n);
1262}
1263
1264static int devm_region_match(struct device *dev, void *res, void *match_data)
1265{
1266 struct region_devres *this = res, *match = match_data;
1267
1268 return this->parent == match->parent &&
1269 this->start == match->start && this->n == match->n;
1270}
1271
1272struct resource * __devm_request_region(struct device *dev,
1273 struct resource *parent, resource_size_t start,
1274 resource_size_t n, const char *name)
1275{
1276 struct region_devres *dr = NULL;
1277 struct resource *res;
1278
1279 dr = devres_alloc(devm_region_release, sizeof(struct region_devres),
1280 GFP_KERNEL);
1281 if (!dr)
1282 return NULL;
1283
1284 dr->parent = parent;
1285 dr->start = start;
1286 dr->n = n;
1287
Arjan van de Vene8de1482008-10-22 19:55:31 -07001288 res = __request_region(parent, start, n, name, 0);
Tejun Heo9ac78492007-01-20 16:00:26 +09001289 if (res)
1290 devres_add(dev, dr);
1291 else
1292 devres_free(dr);
1293
1294 return res;
1295}
1296EXPORT_SYMBOL(__devm_request_region);
1297
1298void __devm_release_region(struct device *dev, struct resource *parent,
1299 resource_size_t start, resource_size_t n)
1300{
1301 struct region_devres match_data = { parent, start, n };
1302
1303 __release_region(parent, start, n);
1304 WARN_ON(devres_destroy(dev, devm_region_release, devm_region_match,
1305 &match_data));
1306}
1307EXPORT_SYMBOL(__devm_release_region);
1308
1309/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 * Called from init/main.c to reserve IO ports.
1311 */
1312#define MAXRESERVE 4
1313static int __init reserve_setup(char *str)
1314{
1315 static int reserved;
1316 static struct resource reserve[MAXRESERVE];
1317
1318 for (;;) {
Zhang Rui8bc1ad72009-06-30 11:41:31 -07001319 unsigned int io_start, io_num;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320 int x = reserved;
1321
1322 if (get_option (&str, &io_start) != 2)
1323 break;
1324 if (get_option (&str, &io_num) == 0)
1325 break;
1326 if (x < MAXRESERVE) {
1327 struct resource *res = reserve + x;
1328 res->name = "reserved";
1329 res->start = io_start;
1330 res->end = io_start + io_num - 1;
1331 res->flags = IORESOURCE_BUSY;
1332 res->child = NULL;
1333 if (request_resource(res->start >= 0x10000 ? &iomem_resource : &ioport_resource, res) == 0)
1334 reserved = x+1;
1335 }
1336 }
1337 return 1;
1338}
1339
1340__setup("reserve=", reserve_setup);
Suresh Siddha379daf62008-09-25 18:43:34 -07001341
1342/*
1343 * Check if the requested addr and size spans more than any slot in the
1344 * iomem resource tree.
1345 */
1346int iomem_map_sanity_check(resource_size_t addr, unsigned long size)
1347{
1348 struct resource *p = &iomem_resource;
1349 int err = 0;
1350 loff_t l;
1351
1352 read_lock(&resource_lock);
1353 for (p = p->child; p ; p = r_next(NULL, p, &l)) {
1354 /*
1355 * We can probably skip the resources without
1356 * IORESOURCE_IO attribute?
1357 */
1358 if (p->start >= addr + size)
1359 continue;
1360 if (p->end < addr)
1361 continue;
Suresh Siddhad68612b2008-10-28 11:45:42 -07001362 if (PFN_DOWN(p->start) <= PFN_DOWN(addr) &&
1363 PFN_DOWN(p->end) >= PFN_DOWN(addr + size - 1))
Suresh Siddha379daf62008-09-25 18:43:34 -07001364 continue;
Arjan van de Ven3ac52662008-12-13 09:15:27 -08001365 /*
1366 * if a resource is "BUSY", it's not a hardware resource
1367 * but a driver mapping of such a resource; we don't want
1368 * to warn for those; some drivers legitimately map only
1369 * partial hardware resources. (example: vesafb)
1370 */
1371 if (p->flags & IORESOURCE_BUSY)
1372 continue;
1373
Bjorn Helgaase4c72962014-04-14 15:38:11 -06001374 printk(KERN_WARNING "resource sanity check: requesting [mem %#010llx-%#010llx], which spans more than %s %pR\n",
Ingo Molnar13eb8372008-09-26 10:10:12 +02001375 (unsigned long long)addr,
1376 (unsigned long long)(addr + size - 1),
Bjorn Helgaase4c72962014-04-14 15:38:11 -06001377 p->name, p);
Suresh Siddha379daf62008-09-25 18:43:34 -07001378 err = -1;
1379 break;
1380 }
1381 read_unlock(&resource_lock);
1382
1383 return err;
1384}
Arjan van de Vene8de1482008-10-22 19:55:31 -07001385
1386#ifdef CONFIG_STRICT_DEVMEM
1387static int strict_iomem_checks = 1;
1388#else
1389static int strict_iomem_checks;
1390#endif
1391
1392/*
1393 * check if an address is reserved in the iomem resource tree
1394 * returns 1 if reserved, 0 if not reserved.
1395 */
1396int iomem_is_exclusive(u64 addr)
1397{
1398 struct resource *p = &iomem_resource;
1399 int err = 0;
1400 loff_t l;
1401 int size = PAGE_SIZE;
1402
1403 if (!strict_iomem_checks)
1404 return 0;
1405
1406 addr = addr & PAGE_MASK;
1407
1408 read_lock(&resource_lock);
1409 for (p = p->child; p ; p = r_next(NULL, p, &l)) {
1410 /*
1411 * We can probably skip the resources without
1412 * IORESOURCE_IO attribute?
1413 */
1414 if (p->start >= addr + size)
1415 break;
1416 if (p->end < addr)
1417 continue;
1418 if (p->flags & IORESOURCE_BUSY &&
1419 p->flags & IORESOURCE_EXCLUSIVE) {
1420 err = 1;
1421 break;
1422 }
1423 }
1424 read_unlock(&resource_lock);
1425
1426 return err;
1427}
1428
1429static int __init strict_iomem(char *str)
1430{
1431 if (strstr(str, "relaxed"))
1432 strict_iomem_checks = 0;
1433 if (strstr(str, "strict"))
1434 strict_iomem_checks = 1;
1435 return 1;
1436}
1437
1438__setup("iomem=", strict_iomem);