Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 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 Purdila | 65fed8f | 2012-07-30 14:42:58 -0700 | [diff] [blame] | 10 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
| 11 | |
Paul Gortmaker | 9984de1 | 2011-05-23 14:51:41 -0400 | [diff] [blame] | 12 | #include <linux/export.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | #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 Cox | 8b6d043 | 2010-03-29 19:38:00 +0200 | [diff] [blame] | 20 | #include <linux/sched.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | #include <linux/seq_file.h> |
Tejun Heo | 9ac7849 | 2007-01-20 16:00:26 +0900 | [diff] [blame] | 22 | #include <linux/device.h> |
Suresh Siddha | d68612b | 2008-10-28 11:45:42 -0700 | [diff] [blame] | 23 | #include <linux/pfn.h> |
Yasuaki Ishimatsu | ebff7d8 | 2013-04-29 15:08:56 -0700 | [diff] [blame] | 24 | #include <linux/mm.h> |
Jiang Liu | 90e9782 | 2015-02-05 13:44:43 +0800 | [diff] [blame] | 25 | #include <linux/resource_ext.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | #include <asm/io.h> |
| 27 | |
| 28 | |
| 29 | struct resource ioport_resource = { |
| 30 | .name = "PCI IO", |
Greg Kroah-Hartman | 6550e07 | 2006-06-12 17:11:31 -0700 | [diff] [blame] | 31 | .start = 0, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | .end = IO_SPACE_LIMIT, |
| 33 | .flags = IORESOURCE_IO, |
| 34 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | EXPORT_SYMBOL(ioport_resource); |
| 36 | |
| 37 | struct resource iomem_resource = { |
| 38 | .name = "PCI mem", |
Greg Kroah-Hartman | 6550e07 | 2006-06-12 17:11:31 -0700 | [diff] [blame] | 39 | .start = 0, |
| 40 | .end = -1, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | .flags = IORESOURCE_MEM, |
| 42 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | EXPORT_SYMBOL(iomem_resource); |
| 44 | |
Ram Pai | 23c570a | 2011-07-05 23:44:30 -0700 | [diff] [blame] | 45 | /* constraints to be met while allocating resources */ |
| 46 | struct 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | static DEFINE_RWLOCK(resource_lock); |
| 54 | |
Yasuaki Ishimatsu | ebff7d8 | 2013-04-29 15:08:56 -0700 | [diff] [blame] | 55 | /* |
| 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 | */ |
| 60 | static struct resource *bootmem_resource_free; |
| 61 | static DEFINE_SPINLOCK(bootmem_resource_lock); |
| 62 | |
Vivek Goyal | 8c86e70 | 2014-08-08 14:25:50 -0700 | [diff] [blame] | 63 | static struct resource *next_resource(struct resource *p, bool sibling_only) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 | { |
Vivek Goyal | 8c86e70 | 2014-08-08 14:25:50 -0700 | [diff] [blame] | 65 | /* Caller wants to traverse through siblings only */ |
| 66 | if (sibling_only) |
| 67 | return p->sibling; |
| 68 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 | if (p->child) |
| 70 | return p->child; |
| 71 | while (!p->sibling && p->parent) |
| 72 | p = p->parent; |
| 73 | return p->sibling; |
| 74 | } |
| 75 | |
Vivek Goyal | 8c86e70 | 2014-08-08 14:25:50 -0700 | [diff] [blame] | 76 | static 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 Molnar | 13eb837 | 2008-09-26 10:10:12 +0200 | [diff] [blame] | 83 | #ifdef CONFIG_PROC_FS |
| 84 | |
| 85 | enum { MAX_IORES_LEVEL = 5 }; |
| 86 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 | static void *r_start(struct seq_file *m, loff_t *pos) |
| 88 | __acquires(resource_lock) |
| 89 | { |
| 90 | struct resource *p = m->private; |
| 91 | loff_t l = 0; |
| 92 | read_lock(&resource_lock); |
| 93 | for (p = p->child; p && l < *pos; p = r_next(m, p, &l)) |
| 94 | ; |
| 95 | return p; |
| 96 | } |
| 97 | |
| 98 | static void r_stop(struct seq_file *m, void *v) |
| 99 | __releases(resource_lock) |
| 100 | { |
| 101 | read_unlock(&resource_lock); |
| 102 | } |
| 103 | |
| 104 | static int r_show(struct seq_file *m, void *v) |
| 105 | { |
| 106 | struct resource *root = m->private; |
| 107 | struct resource *r = v, *p; |
| 108 | int width = root->end < 0x10000 ? 4 : 8; |
| 109 | int depth; |
| 110 | |
| 111 | for (depth = 0, p = r; depth < MAX_IORES_LEVEL; depth++, p = p->parent) |
| 112 | if (p->parent == root) |
| 113 | break; |
Greg Kroah-Hartman | 685143ac | 2006-06-12 15:18:31 -0700 | [diff] [blame] | 114 | seq_printf(m, "%*s%0*llx-%0*llx : %s\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 115 | depth * 2, "", |
Greg Kroah-Hartman | 685143ac | 2006-06-12 15:18:31 -0700 | [diff] [blame] | 116 | width, (unsigned long long) r->start, |
| 117 | width, (unsigned long long) r->end, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | r->name ? r->name : "<BAD>"); |
| 119 | return 0; |
| 120 | } |
| 121 | |
Helge Deller | 15ad7cd | 2006-12-06 20:40:36 -0800 | [diff] [blame] | 122 | static const struct seq_operations resource_op = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 123 | .start = r_start, |
| 124 | .next = r_next, |
| 125 | .stop = r_stop, |
| 126 | .show = r_show, |
| 127 | }; |
| 128 | |
| 129 | static int ioports_open(struct inode *inode, struct file *file) |
| 130 | { |
| 131 | int res = seq_open(file, &resource_op); |
| 132 | if (!res) { |
| 133 | struct seq_file *m = file->private_data; |
| 134 | m->private = &ioport_resource; |
| 135 | } |
| 136 | return res; |
| 137 | } |
| 138 | |
| 139 | static int iomem_open(struct inode *inode, struct file *file) |
| 140 | { |
| 141 | int res = seq_open(file, &resource_op); |
| 142 | if (!res) { |
| 143 | struct seq_file *m = file->private_data; |
| 144 | m->private = &iomem_resource; |
| 145 | } |
| 146 | return res; |
| 147 | } |
| 148 | |
Helge Deller | 15ad7cd | 2006-12-06 20:40:36 -0800 | [diff] [blame] | 149 | static const struct file_operations proc_ioports_operations = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 150 | .open = ioports_open, |
| 151 | .read = seq_read, |
| 152 | .llseek = seq_lseek, |
| 153 | .release = seq_release, |
| 154 | }; |
| 155 | |
Helge Deller | 15ad7cd | 2006-12-06 20:40:36 -0800 | [diff] [blame] | 156 | static const struct file_operations proc_iomem_operations = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 157 | .open = iomem_open, |
| 158 | .read = seq_read, |
| 159 | .llseek = seq_lseek, |
| 160 | .release = seq_release, |
| 161 | }; |
| 162 | |
| 163 | static int __init ioresources_init(void) |
| 164 | { |
Denis V. Lunev | c33fff0 | 2008-04-29 01:02:31 -0700 | [diff] [blame] | 165 | proc_create("ioports", 0, NULL, &proc_ioports_operations); |
| 166 | proc_create("iomem", 0, NULL, &proc_iomem_operations); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 167 | return 0; |
| 168 | } |
| 169 | __initcall(ioresources_init); |
| 170 | |
| 171 | #endif /* CONFIG_PROC_FS */ |
| 172 | |
Yasuaki Ishimatsu | ebff7d8 | 2013-04-29 15:08:56 -0700 | [diff] [blame] | 173 | static void free_resource(struct resource *res) |
| 174 | { |
| 175 | if (!res) |
| 176 | return; |
| 177 | |
| 178 | if (!PageSlab(virt_to_head_page(res))) { |
| 179 | spin_lock(&bootmem_resource_lock); |
| 180 | res->sibling = bootmem_resource_free; |
| 181 | bootmem_resource_free = res; |
| 182 | spin_unlock(&bootmem_resource_lock); |
| 183 | } else { |
| 184 | kfree(res); |
| 185 | } |
| 186 | } |
| 187 | |
| 188 | static struct resource *alloc_resource(gfp_t flags) |
| 189 | { |
| 190 | struct resource *res = NULL; |
| 191 | |
| 192 | spin_lock(&bootmem_resource_lock); |
| 193 | if (bootmem_resource_free) { |
| 194 | res = bootmem_resource_free; |
| 195 | bootmem_resource_free = res->sibling; |
| 196 | } |
| 197 | spin_unlock(&bootmem_resource_lock); |
| 198 | |
| 199 | if (res) |
| 200 | memset(res, 0, sizeof(struct resource)); |
| 201 | else |
| 202 | res = kzalloc(sizeof(struct resource), flags); |
| 203 | |
| 204 | return res; |
| 205 | } |
| 206 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 207 | /* Return the conflict entry if you can't request it */ |
| 208 | static struct resource * __request_resource(struct resource *root, struct resource *new) |
| 209 | { |
Greg Kroah-Hartman | d75fc8b | 2006-06-12 16:09:23 -0700 | [diff] [blame] | 210 | resource_size_t start = new->start; |
| 211 | resource_size_t end = new->end; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 212 | struct resource *tmp, **p; |
| 213 | |
| 214 | if (end < start) |
| 215 | return root; |
| 216 | if (start < root->start) |
| 217 | return root; |
| 218 | if (end > root->end) |
| 219 | return root; |
| 220 | p = &root->child; |
| 221 | for (;;) { |
| 222 | tmp = *p; |
| 223 | if (!tmp || tmp->start > end) { |
| 224 | new->sibling = tmp; |
| 225 | *p = new; |
| 226 | new->parent = root; |
| 227 | return NULL; |
| 228 | } |
| 229 | p = &tmp->sibling; |
| 230 | if (tmp->end < start) |
| 231 | continue; |
| 232 | return tmp; |
| 233 | } |
| 234 | } |
| 235 | |
| 236 | static int __release_resource(struct resource *old) |
| 237 | { |
| 238 | struct resource *tmp, **p; |
| 239 | |
| 240 | p = &old->parent->child; |
| 241 | for (;;) { |
| 242 | tmp = *p; |
| 243 | if (!tmp) |
| 244 | break; |
| 245 | if (tmp == old) { |
| 246 | *p = tmp->sibling; |
| 247 | old->parent = NULL; |
| 248 | return 0; |
| 249 | } |
| 250 | p = &tmp->sibling; |
| 251 | } |
| 252 | return -EINVAL; |
| 253 | } |
| 254 | |
Yinghai Lu | 5eeec0e | 2009-12-22 15:02:22 -0800 | [diff] [blame] | 255 | static void __release_child_resources(struct resource *r) |
| 256 | { |
| 257 | struct resource *tmp, *p; |
| 258 | resource_size_t size; |
| 259 | |
| 260 | p = r->child; |
| 261 | r->child = NULL; |
| 262 | while (p) { |
| 263 | tmp = p; |
| 264 | p = p->sibling; |
| 265 | |
| 266 | tmp->parent = NULL; |
| 267 | tmp->sibling = NULL; |
| 268 | __release_child_resources(tmp); |
| 269 | |
| 270 | printk(KERN_DEBUG "release child resource %pR\n", tmp); |
| 271 | /* need to restore size, and keep flags */ |
| 272 | size = resource_size(tmp); |
| 273 | tmp->start = 0; |
| 274 | tmp->end = size - 1; |
| 275 | } |
| 276 | } |
| 277 | |
| 278 | void release_child_resources(struct resource *r) |
| 279 | { |
| 280 | write_lock(&resource_lock); |
| 281 | __release_child_resources(r); |
| 282 | write_unlock(&resource_lock); |
| 283 | } |
| 284 | |
Randy Dunlap | e1ca66d1b | 2006-10-03 01:13:51 -0700 | [diff] [blame] | 285 | /** |
Bjorn Helgaas | 66f1207 | 2010-03-11 17:01:09 -0700 | [diff] [blame] | 286 | * request_resource_conflict - request and reserve an I/O or memory resource |
| 287 | * @root: root resource descriptor |
| 288 | * @new: resource descriptor desired by caller |
| 289 | * |
| 290 | * Returns 0 for success, conflict resource on error. |
| 291 | */ |
| 292 | struct resource *request_resource_conflict(struct resource *root, struct resource *new) |
| 293 | { |
| 294 | struct resource *conflict; |
| 295 | |
| 296 | write_lock(&resource_lock); |
| 297 | conflict = __request_resource(root, new); |
| 298 | write_unlock(&resource_lock); |
| 299 | return conflict; |
| 300 | } |
| 301 | |
| 302 | /** |
Randy Dunlap | e1ca66d1b | 2006-10-03 01:13:51 -0700 | [diff] [blame] | 303 | * request_resource - request and reserve an I/O or memory resource |
| 304 | * @root: root resource descriptor |
| 305 | * @new: resource descriptor desired by caller |
| 306 | * |
| 307 | * Returns 0 for success, negative error code on error. |
| 308 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 309 | int request_resource(struct resource *root, struct resource *new) |
| 310 | { |
| 311 | struct resource *conflict; |
| 312 | |
Bjorn Helgaas | 66f1207 | 2010-03-11 17:01:09 -0700 | [diff] [blame] | 313 | conflict = request_resource_conflict(root, new); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 314 | return conflict ? -EBUSY : 0; |
| 315 | } |
| 316 | |
| 317 | EXPORT_SYMBOL(request_resource); |
| 318 | |
Randy Dunlap | e1ca66d1b | 2006-10-03 01:13:51 -0700 | [diff] [blame] | 319 | /** |
Randy Dunlap | e1ca66d1b | 2006-10-03 01:13:51 -0700 | [diff] [blame] | 320 | * release_resource - release a previously reserved resource |
| 321 | * @old: resource pointer |
| 322 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 323 | int release_resource(struct resource *old) |
| 324 | { |
| 325 | int retval; |
| 326 | |
| 327 | write_lock(&resource_lock); |
| 328 | retval = __release_resource(old); |
| 329 | write_unlock(&resource_lock); |
| 330 | return retval; |
| 331 | } |
| 332 | |
| 333 | EXPORT_SYMBOL(release_resource); |
| 334 | |
KAMEZAWA Hiroyuki | 2842f11 | 2006-06-27 02:53:36 -0700 | [diff] [blame] | 335 | /* |
Vivek Goyal | 8c86e70 | 2014-08-08 14:25:50 -0700 | [diff] [blame] | 336 | * Finds the lowest iomem reosurce exists with-in [res->start.res->end) |
KAMEZAWA Hiroyuki | 908eedc | 2009-09-22 16:45:46 -0700 | [diff] [blame] | 337 | * the caller must specify res->start, res->end, res->flags and "name". |
KAMEZAWA Hiroyuki | 2842f11 | 2006-06-27 02:53:36 -0700 | [diff] [blame] | 338 | * If found, returns 0, res is overwritten, if not found, returns -1. |
Vivek Goyal | 8c86e70 | 2014-08-08 14:25:50 -0700 | [diff] [blame] | 339 | * This walks through whole tree and not just first level children |
| 340 | * until and unless first_level_children_only is true. |
KAMEZAWA Hiroyuki | 2842f11 | 2006-06-27 02:53:36 -0700 | [diff] [blame] | 341 | */ |
Vivek Goyal | 8c86e70 | 2014-08-08 14:25:50 -0700 | [diff] [blame] | 342 | static int find_next_iomem_res(struct resource *res, char *name, |
| 343 | bool first_level_children_only) |
KAMEZAWA Hiroyuki | 2842f11 | 2006-06-27 02:53:36 -0700 | [diff] [blame] | 344 | { |
| 345 | resource_size_t start, end; |
| 346 | struct resource *p; |
Vivek Goyal | 8c86e70 | 2014-08-08 14:25:50 -0700 | [diff] [blame] | 347 | bool sibling_only = false; |
KAMEZAWA Hiroyuki | 2842f11 | 2006-06-27 02:53:36 -0700 | [diff] [blame] | 348 | |
| 349 | BUG_ON(!res); |
| 350 | |
| 351 | start = res->start; |
| 352 | end = res->end; |
KAMEZAWA Hiroyuki | 58c1b5b | 2006-08-05 12:15:01 -0700 | [diff] [blame] | 353 | BUG_ON(start >= end); |
KAMEZAWA Hiroyuki | 2842f11 | 2006-06-27 02:53:36 -0700 | [diff] [blame] | 354 | |
Vivek Goyal | 800df62 | 2014-08-29 15:18:29 -0700 | [diff] [blame] | 355 | if (first_level_children_only) |
| 356 | sibling_only = true; |
| 357 | |
KAMEZAWA Hiroyuki | 2842f11 | 2006-06-27 02:53:36 -0700 | [diff] [blame] | 358 | read_lock(&resource_lock); |
Vivek Goyal | 8c86e70 | 2014-08-08 14:25:50 -0700 | [diff] [blame] | 359 | |
Vivek Goyal | 800df62 | 2014-08-29 15:18:29 -0700 | [diff] [blame] | 360 | for (p = iomem_resource.child; p; p = next_resource(p, sibling_only)) { |
Toshi Kani | a3650d5 | 2016-01-26 21:57:18 +0100 | [diff] [blame] | 361 | if ((p->flags & res->flags) != res->flags) |
KAMEZAWA Hiroyuki | 2842f11 | 2006-06-27 02:53:36 -0700 | [diff] [blame] | 362 | continue; |
KAMEZAWA Hiroyuki | 908eedc | 2009-09-22 16:45:46 -0700 | [diff] [blame] | 363 | if (name && strcmp(p->name, name)) |
| 364 | continue; |
KAMEZAWA Hiroyuki | 2842f11 | 2006-06-27 02:53:36 -0700 | [diff] [blame] | 365 | if (p->start > end) { |
| 366 | p = NULL; |
| 367 | break; |
| 368 | } |
KAMEZAWA Hiroyuki | 58c1b5b | 2006-08-05 12:15:01 -0700 | [diff] [blame] | 369 | if ((p->end >= start) && (p->start < end)) |
KAMEZAWA Hiroyuki | 2842f11 | 2006-06-27 02:53:36 -0700 | [diff] [blame] | 370 | break; |
| 371 | } |
Vivek Goyal | 8c86e70 | 2014-08-08 14:25:50 -0700 | [diff] [blame] | 372 | |
KAMEZAWA Hiroyuki | 2842f11 | 2006-06-27 02:53:36 -0700 | [diff] [blame] | 373 | read_unlock(&resource_lock); |
| 374 | if (!p) |
| 375 | return -1; |
| 376 | /* copy data */ |
KAMEZAWA Hiroyuki | 0f04ab5 | 2006-08-05 12:14:59 -0700 | [diff] [blame] | 377 | if (res->start < p->start) |
| 378 | res->start = p->start; |
| 379 | if (res->end > p->end) |
| 380 | res->end = p->end; |
KAMEZAWA Hiroyuki | 2842f11 | 2006-06-27 02:53:36 -0700 | [diff] [blame] | 381 | return 0; |
| 382 | } |
KAMEZAWA Hiroyuki | 908eedc | 2009-09-22 16:45:46 -0700 | [diff] [blame] | 383 | |
| 384 | /* |
Vivek Goyal | 8c86e70 | 2014-08-08 14:25:50 -0700 | [diff] [blame] | 385 | * Walks through iomem resources and calls func() with matching resource |
| 386 | * ranges. This walks through whole tree and not just first level children. |
| 387 | * All the memory ranges which overlap start,end and also match flags and |
| 388 | * name are valid candidates. |
| 389 | * |
| 390 | * @name: name of resource |
| 391 | * @flags: resource flags |
| 392 | * @start: start addr |
| 393 | * @end: end addr |
| 394 | */ |
| 395 | int walk_iomem_res(char *name, unsigned long flags, u64 start, u64 end, |
| 396 | void *arg, int (*func)(u64, u64, void *)) |
| 397 | { |
| 398 | struct resource res; |
| 399 | u64 orig_end; |
| 400 | int ret = -1; |
| 401 | |
| 402 | res.start = start; |
| 403 | res.end = end; |
| 404 | res.flags = flags; |
| 405 | orig_end = res.end; |
| 406 | while ((res.start < res.end) && |
| 407 | (!find_next_iomem_res(&res, name, false))) { |
| 408 | ret = (*func)(res.start, res.end, arg); |
| 409 | if (ret) |
| 410 | break; |
| 411 | res.start = res.end + 1; |
| 412 | res.end = orig_end; |
| 413 | } |
| 414 | return ret; |
| 415 | } |
| 416 | |
| 417 | /* |
Toshi Kani | bd7e6cb | 2016-01-26 21:57:26 +0100 | [diff] [blame] | 418 | * This function calls the @func callback against all memory ranges of type |
| 419 | * System RAM which are marked as IORESOURCE_SYSTEM_RAM and IORESOUCE_BUSY. |
| 420 | * Now, this function is only for System RAM, it deals with full ranges and |
| 421 | * not PFNs. If resources are not PFN-aligned, dealing with PFNs can truncate |
| 422 | * ranges. |
Vivek Goyal | 8c86e70 | 2014-08-08 14:25:50 -0700 | [diff] [blame] | 423 | */ |
| 424 | int walk_system_ram_res(u64 start, u64 end, void *arg, |
| 425 | int (*func)(u64, u64, void *)) |
| 426 | { |
| 427 | struct resource res; |
| 428 | u64 orig_end; |
| 429 | int ret = -1; |
| 430 | |
| 431 | res.start = start; |
| 432 | res.end = end; |
Toshi Kani | bd7e6cb | 2016-01-26 21:57:26 +0100 | [diff] [blame] | 433 | res.flags = IORESOURCE_SYSTEM_RAM | IORESOURCE_BUSY; |
Vivek Goyal | 8c86e70 | 2014-08-08 14:25:50 -0700 | [diff] [blame] | 434 | orig_end = res.end; |
| 435 | while ((res.start < res.end) && |
Toshi Kani | bd7e6cb | 2016-01-26 21:57:26 +0100 | [diff] [blame] | 436 | (!find_next_iomem_res(&res, NULL, true))) { |
Vivek Goyal | 8c86e70 | 2014-08-08 14:25:50 -0700 | [diff] [blame] | 437 | ret = (*func)(res.start, res.end, arg); |
| 438 | if (ret) |
| 439 | break; |
| 440 | res.start = res.end + 1; |
| 441 | res.end = orig_end; |
| 442 | } |
| 443 | return ret; |
| 444 | } |
| 445 | |
| 446 | #if !defined(CONFIG_ARCH_HAS_WALK_MEMORY) |
| 447 | |
| 448 | /* |
Toshi Kani | bd7e6cb | 2016-01-26 21:57:26 +0100 | [diff] [blame] | 449 | * This function calls the @func callback against all memory ranges of type |
| 450 | * System RAM which are marked as IORESOURCE_SYSTEM_RAM and IORESOUCE_BUSY. |
| 451 | * It is to be used only for System RAM. |
KAMEZAWA Hiroyuki | 908eedc | 2009-09-22 16:45:46 -0700 | [diff] [blame] | 452 | */ |
| 453 | int walk_system_ram_range(unsigned long start_pfn, unsigned long nr_pages, |
| 454 | void *arg, int (*func)(unsigned long, unsigned long, void *)) |
KAMEZAWA Hiroyuki | 75884fb | 2007-10-16 01:26:10 -0700 | [diff] [blame] | 455 | { |
| 456 | struct resource res; |
Wu Fengguang | 37b99dd | 2010-03-01 21:55:51 +0800 | [diff] [blame] | 457 | unsigned long pfn, end_pfn; |
KAMEZAWA Hiroyuki | 75884fb | 2007-10-16 01:26:10 -0700 | [diff] [blame] | 458 | u64 orig_end; |
| 459 | int ret = -1; |
KAMEZAWA Hiroyuki | 908eedc | 2009-09-22 16:45:46 -0700 | [diff] [blame] | 460 | |
KAMEZAWA Hiroyuki | 75884fb | 2007-10-16 01:26:10 -0700 | [diff] [blame] | 461 | res.start = (u64) start_pfn << PAGE_SHIFT; |
| 462 | res.end = ((u64)(start_pfn + nr_pages) << PAGE_SHIFT) - 1; |
Toshi Kani | bd7e6cb | 2016-01-26 21:57:26 +0100 | [diff] [blame] | 463 | res.flags = IORESOURCE_SYSTEM_RAM | IORESOURCE_BUSY; |
KAMEZAWA Hiroyuki | 75884fb | 2007-10-16 01:26:10 -0700 | [diff] [blame] | 464 | orig_end = res.end; |
KAMEZAWA Hiroyuki | 908eedc | 2009-09-22 16:45:46 -0700 | [diff] [blame] | 465 | while ((res.start < res.end) && |
Toshi Kani | bd7e6cb | 2016-01-26 21:57:26 +0100 | [diff] [blame] | 466 | (find_next_iomem_res(&res, NULL, true) >= 0)) { |
Wu Fengguang | 37b99dd | 2010-03-01 21:55:51 +0800 | [diff] [blame] | 467 | pfn = (res.start + PAGE_SIZE - 1) >> PAGE_SHIFT; |
| 468 | end_pfn = (res.end + 1) >> PAGE_SHIFT; |
| 469 | if (end_pfn > pfn) |
H. Peter Anvin | f414966 | 2010-03-02 11:21:09 -0800 | [diff] [blame] | 470 | ret = (*func)(pfn, end_pfn - pfn, arg); |
KAMEZAWA Hiroyuki | 75884fb | 2007-10-16 01:26:10 -0700 | [diff] [blame] | 471 | if (ret) |
| 472 | break; |
| 473 | res.start = res.end + 1; |
| 474 | res.end = orig_end; |
| 475 | } |
| 476 | return ret; |
| 477 | } |
| 478 | |
KAMEZAWA Hiroyuki | 2842f11 | 2006-06-27 02:53:36 -0700 | [diff] [blame] | 479 | #endif |
| 480 | |
Wu Fengguang | 61ef248 | 2010-01-22 16:16:19 +0800 | [diff] [blame] | 481 | static int __is_ram(unsigned long pfn, unsigned long nr_pages, void *arg) |
| 482 | { |
| 483 | return 1; |
| 484 | } |
| 485 | /* |
| 486 | * This generic page_is_ram() returns true if specified address is |
Toshi Kani | bd7e6cb | 2016-01-26 21:57:26 +0100 | [diff] [blame] | 487 | * registered as System RAM in iomem_resource list. |
Wu Fengguang | 61ef248 | 2010-01-22 16:16:19 +0800 | [diff] [blame] | 488 | */ |
Andrew Morton | e527300 | 2010-01-26 16:31:19 -0800 | [diff] [blame] | 489 | int __weak page_is_ram(unsigned long pfn) |
Wu Fengguang | 61ef248 | 2010-01-22 16:16:19 +0800 | [diff] [blame] | 490 | { |
| 491 | return walk_system_ram_range(pfn, 1, NULL, __is_ram) == 1; |
| 492 | } |
Chen Gong | c5a1303 | 2013-06-06 15:20:51 -0700 | [diff] [blame] | 493 | EXPORT_SYMBOL_GPL(page_is_ram); |
Wu Fengguang | 61ef248 | 2010-01-22 16:16:19 +0800 | [diff] [blame] | 494 | |
Dan Williams | 124fe20 | 2015-08-10 23:07:05 -0400 | [diff] [blame] | 495 | /** |
| 496 | * region_intersects() - determine intersection of region with known resources |
| 497 | * @start: region start address |
| 498 | * @size: size of region |
Toshi Kani | 1c29f25 | 2016-01-26 21:57:28 +0100 | [diff] [blame^] | 499 | * @flags: flags of resource (in iomem_resource) |
| 500 | * @desc: descriptor of resource (in iomem_resource) or IORES_DESC_NONE |
Mike Travis | 67cf13c | 2014-10-13 15:54:03 -0700 | [diff] [blame] | 501 | * |
Dan Williams | 124fe20 | 2015-08-10 23:07:05 -0400 | [diff] [blame] | 502 | * Check if the specified region partially overlaps or fully eclipses a |
Toshi Kani | 1c29f25 | 2016-01-26 21:57:28 +0100 | [diff] [blame^] | 503 | * resource identified by @flags and @desc (optional with IORES_DESC_NONE). |
| 504 | * Return REGION_DISJOINT if the region does not overlap @flags/@desc, |
| 505 | * return REGION_MIXED if the region overlaps @flags/@desc and another |
| 506 | * resource, and return REGION_INTERSECTS if the region overlaps @flags/@desc |
| 507 | * and no other defined resource. Note that REGION_INTERSECTS is also |
| 508 | * returned in the case when the specified region overlaps RAM and undefined |
| 509 | * memory holes. |
Dan Williams | 124fe20 | 2015-08-10 23:07:05 -0400 | [diff] [blame] | 510 | * |
| 511 | * region_intersect() is used by memory remapping functions to ensure |
| 512 | * the user is not remapping RAM and is a vast speed up over walking |
| 513 | * through the resource table page by page. |
Mike Travis | 67cf13c | 2014-10-13 15:54:03 -0700 | [diff] [blame] | 514 | */ |
Toshi Kani | 1c29f25 | 2016-01-26 21:57:28 +0100 | [diff] [blame^] | 515 | int region_intersects(resource_size_t start, size_t size, unsigned long flags, |
| 516 | unsigned long desc) |
Mike Travis | 67cf13c | 2014-10-13 15:54:03 -0700 | [diff] [blame] | 517 | { |
Dan Williams | 124fe20 | 2015-08-10 23:07:05 -0400 | [diff] [blame] | 518 | resource_size_t end = start + size - 1; |
| 519 | int type = 0; int other = 0; |
| 520 | struct resource *p; |
Mike Travis | 67cf13c | 2014-10-13 15:54:03 -0700 | [diff] [blame] | 521 | |
| 522 | read_lock(&resource_lock); |
| 523 | for (p = iomem_resource.child; p ; p = p->sibling) { |
Toshi Kani | 1c29f25 | 2016-01-26 21:57:28 +0100 | [diff] [blame^] | 524 | bool is_type = (((p->flags & flags) == flags) && |
| 525 | ((desc == IORES_DESC_NONE) || |
| 526 | (desc == p->desc))); |
Mike Travis | 67cf13c | 2014-10-13 15:54:03 -0700 | [diff] [blame] | 527 | |
Dan Williams | 124fe20 | 2015-08-10 23:07:05 -0400 | [diff] [blame] | 528 | if (start >= p->start && start <= p->end) |
| 529 | is_type ? type++ : other++; |
| 530 | if (end >= p->start && end <= p->end) |
| 531 | is_type ? type++ : other++; |
| 532 | if (p->start >= start && p->end <= end) |
| 533 | is_type ? type++ : other++; |
Mike Travis | 67cf13c | 2014-10-13 15:54:03 -0700 | [diff] [blame] | 534 | } |
| 535 | read_unlock(&resource_lock); |
Dan Williams | 124fe20 | 2015-08-10 23:07:05 -0400 | [diff] [blame] | 536 | |
| 537 | if (other == 0) |
| 538 | return type ? REGION_INTERSECTS : REGION_DISJOINT; |
| 539 | |
| 540 | if (type) |
| 541 | return REGION_MIXED; |
| 542 | |
| 543 | return REGION_DISJOINT; |
Mike Travis | 67cf13c | 2014-10-13 15:54:03 -0700 | [diff] [blame] | 544 | } |
Toshi Kani | 1c29f25 | 2016-01-26 21:57:28 +0100 | [diff] [blame^] | 545 | EXPORT_SYMBOL_GPL(region_intersects); |
Mike Travis | 67cf13c | 2014-10-13 15:54:03 -0700 | [diff] [blame] | 546 | |
Bjorn Helgaas | fcb1191 | 2010-12-16 10:38:46 -0700 | [diff] [blame] | 547 | void __weak arch_remove_reservations(struct resource *avail) |
| 548 | { |
| 549 | } |
| 550 | |
Bjorn Helgaas | a9cea01 | 2010-10-26 15:41:13 -0600 | [diff] [blame] | 551 | static resource_size_t simple_align_resource(void *data, |
| 552 | const struct resource *avail, |
| 553 | resource_size_t size, |
| 554 | resource_size_t align) |
| 555 | { |
| 556 | return avail->start; |
| 557 | } |
| 558 | |
Bjorn Helgaas | 5d6b1fa | 2010-10-26 15:41:18 -0600 | [diff] [blame] | 559 | static void resource_clip(struct resource *res, resource_size_t min, |
| 560 | resource_size_t max) |
| 561 | { |
| 562 | if (res->start < min) |
| 563 | res->start = min; |
| 564 | if (res->end > max) |
| 565 | res->end = max; |
| 566 | } |
| 567 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 568 | /* |
Ram Pai | 23c570a | 2011-07-05 23:44:30 -0700 | [diff] [blame] | 569 | * Find empty slot in the resource tree with the given range and |
| 570 | * alignment constraints |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 571 | */ |
Ram Pai | 23c570a | 2011-07-05 23:44:30 -0700 | [diff] [blame] | 572 | static int __find_resource(struct resource *root, struct resource *old, |
| 573 | struct resource *new, |
| 574 | resource_size_t size, |
| 575 | struct resource_constraint *constraint) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 576 | { |
| 577 | struct resource *this = root->child; |
Bjorn Helgaas | a1862e3 | 2010-10-26 15:41:28 -0600 | [diff] [blame] | 578 | struct resource tmp = *new, avail, alloc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 579 | |
Dominik Brodowski | 0e2c8b8 | 2009-12-20 10:50:02 +0100 | [diff] [blame] | 580 | tmp.start = root->start; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 581 | /* |
Bjorn Helgaas | c0f5ac5 | 2010-12-16 10:38:41 -0700 | [diff] [blame] | 582 | * Skip past an allocated resource that starts at 0, since the assignment |
| 583 | * of this->start - 1 to tmp->end below would cause an underflow. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 584 | */ |
Ram Pai | 23c570a | 2011-07-05 23:44:30 -0700 | [diff] [blame] | 585 | if (this && this->start == root->start) { |
| 586 | tmp.start = (this == old) ? old->start : this->end + 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 587 | this = this->sibling; |
| 588 | } |
Bjorn Helgaas | c0f5ac5 | 2010-12-16 10:38:41 -0700 | [diff] [blame] | 589 | for(;;) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 590 | if (this) |
Ram Pai | 23c570a | 2011-07-05 23:44:30 -0700 | [diff] [blame] | 591 | tmp.end = (this == old) ? this->end : this->start - 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 592 | else |
Dominik Brodowski | 0e2c8b8 | 2009-12-20 10:50:02 +0100 | [diff] [blame] | 593 | tmp.end = root->end; |
Bjorn Helgaas | 5d6b1fa | 2010-10-26 15:41:18 -0600 | [diff] [blame] | 594 | |
Ram Pai | 47ea91b | 2011-09-22 15:48:58 +0800 | [diff] [blame] | 595 | if (tmp.end < tmp.start) |
| 596 | goto next; |
| 597 | |
Ram Pai | 23c570a | 2011-07-05 23:44:30 -0700 | [diff] [blame] | 598 | resource_clip(&tmp, constraint->min, constraint->max); |
Bjorn Helgaas | fcb1191 | 2010-12-16 10:38:46 -0700 | [diff] [blame] | 599 | arch_remove_reservations(&tmp); |
Bjorn Helgaas | a9cea01 | 2010-10-26 15:41:13 -0600 | [diff] [blame] | 600 | |
Bjorn Helgaas | a1862e3 | 2010-10-26 15:41:28 -0600 | [diff] [blame] | 601 | /* Check for overflow after ALIGN() */ |
Ram Pai | 23c570a | 2011-07-05 23:44:30 -0700 | [diff] [blame] | 602 | avail.start = ALIGN(tmp.start, constraint->align); |
Bjorn Helgaas | a1862e3 | 2010-10-26 15:41:28 -0600 | [diff] [blame] | 603 | avail.end = tmp.end; |
Bjorn Helgaas | 5edb93b | 2014-02-04 19:32:28 -0800 | [diff] [blame] | 604 | avail.flags = new->flags & ~IORESOURCE_UNSET; |
Bjorn Helgaas | a1862e3 | 2010-10-26 15:41:28 -0600 | [diff] [blame] | 605 | if (avail.start >= tmp.start) { |
Bjorn Helgaas | 5edb93b | 2014-02-04 19:32:28 -0800 | [diff] [blame] | 606 | alloc.flags = avail.flags; |
Ram Pai | 23c570a | 2011-07-05 23:44:30 -0700 | [diff] [blame] | 607 | alloc.start = constraint->alignf(constraint->alignf_data, &avail, |
| 608 | size, constraint->align); |
Bjorn Helgaas | a1862e3 | 2010-10-26 15:41:28 -0600 | [diff] [blame] | 609 | alloc.end = alloc.start + size - 1; |
| 610 | if (resource_contains(&avail, &alloc)) { |
| 611 | new->start = alloc.start; |
| 612 | new->end = alloc.end; |
| 613 | return 0; |
| 614 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 615 | } |
Ram Pai | 47ea91b | 2011-09-22 15:48:58 +0800 | [diff] [blame] | 616 | |
| 617 | next: if (!this || this->end == root->end) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 618 | break; |
Ram Pai | 47ea91b | 2011-09-22 15:48:58 +0800 | [diff] [blame] | 619 | |
Ram Pai | 23c570a | 2011-07-05 23:44:30 -0700 | [diff] [blame] | 620 | if (this != old) |
| 621 | tmp.start = this->end + 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 622 | this = this->sibling; |
| 623 | } |
| 624 | return -EBUSY; |
| 625 | } |
| 626 | |
Ram Pai | 23c570a | 2011-07-05 23:44:30 -0700 | [diff] [blame] | 627 | /* |
| 628 | * Find empty slot in the resource tree given range and alignment. |
| 629 | */ |
| 630 | static int find_resource(struct resource *root, struct resource *new, |
| 631 | resource_size_t size, |
| 632 | struct resource_constraint *constraint) |
| 633 | { |
| 634 | return __find_resource(root, NULL, new, size, constraint); |
| 635 | } |
| 636 | |
Randy Dunlap | e1ca66d1b | 2006-10-03 01:13:51 -0700 | [diff] [blame] | 637 | /** |
Ram Pai | 23c570a | 2011-07-05 23:44:30 -0700 | [diff] [blame] | 638 | * reallocate_resource - allocate a slot in the resource tree given range & alignment. |
| 639 | * The resource will be relocated if the new size cannot be reallocated in the |
| 640 | * current location. |
| 641 | * |
| 642 | * @root: root resource descriptor |
| 643 | * @old: resource descriptor desired by caller |
| 644 | * @newsize: new size of the resource descriptor |
| 645 | * @constraint: the size and alignment constraints to be met. |
| 646 | */ |
Daeseok Youn | 28ab49f | 2014-04-03 14:48:36 -0700 | [diff] [blame] | 647 | static int reallocate_resource(struct resource *root, struct resource *old, |
Ram Pai | 23c570a | 2011-07-05 23:44:30 -0700 | [diff] [blame] | 648 | resource_size_t newsize, |
| 649 | struct resource_constraint *constraint) |
| 650 | { |
| 651 | int err=0; |
| 652 | struct resource new = *old; |
| 653 | struct resource *conflict; |
| 654 | |
| 655 | write_lock(&resource_lock); |
| 656 | |
| 657 | if ((err = __find_resource(root, old, &new, newsize, constraint))) |
| 658 | goto out; |
| 659 | |
| 660 | if (resource_contains(&new, old)) { |
| 661 | old->start = new.start; |
| 662 | old->end = new.end; |
| 663 | goto out; |
| 664 | } |
| 665 | |
| 666 | if (old->child) { |
| 667 | err = -EBUSY; |
| 668 | goto out; |
| 669 | } |
| 670 | |
| 671 | if (resource_contains(old, &new)) { |
| 672 | old->start = new.start; |
| 673 | old->end = new.end; |
| 674 | } else { |
| 675 | __release_resource(old); |
| 676 | *old = new; |
| 677 | conflict = __request_resource(root, old); |
| 678 | BUG_ON(conflict); |
| 679 | } |
| 680 | out: |
| 681 | write_unlock(&resource_lock); |
| 682 | return err; |
| 683 | } |
| 684 | |
| 685 | |
| 686 | /** |
| 687 | * allocate_resource - allocate empty slot in the resource tree given range & alignment. |
| 688 | * The resource will be reallocated with a new size if it was already allocated |
Randy Dunlap | e1ca66d1b | 2006-10-03 01:13:51 -0700 | [diff] [blame] | 689 | * @root: root resource descriptor |
| 690 | * @new: resource descriptor desired by caller |
| 691 | * @size: requested resource region size |
Wei Yang | ee5e568 | 2012-05-31 16:26:05 -0700 | [diff] [blame] | 692 | * @min: minimum boundary to allocate |
| 693 | * @max: maximum boundary to allocate |
Randy Dunlap | e1ca66d1b | 2006-10-03 01:13:51 -0700 | [diff] [blame] | 694 | * @align: alignment requested, in bytes |
| 695 | * @alignf: alignment function, optional, called if not NULL |
| 696 | * @alignf_data: arbitrary data to pass to the @alignf function |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 697 | */ |
| 698 | int allocate_resource(struct resource *root, struct resource *new, |
Greg Kroah-Hartman | d75fc8b | 2006-06-12 16:09:23 -0700 | [diff] [blame] | 699 | resource_size_t size, resource_size_t min, |
| 700 | resource_size_t max, resource_size_t align, |
Dominik Brodowski | b26b2d4 | 2010-01-01 17:40:49 +0100 | [diff] [blame] | 701 | resource_size_t (*alignf)(void *, |
Dominik Brodowski | 3b7a17f | 2010-01-01 17:40:50 +0100 | [diff] [blame] | 702 | const struct resource *, |
Dominik Brodowski | b26b2d4 | 2010-01-01 17:40:49 +0100 | [diff] [blame] | 703 | resource_size_t, |
| 704 | resource_size_t), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 705 | void *alignf_data) |
| 706 | { |
| 707 | int err; |
Ram Pai | 23c570a | 2011-07-05 23:44:30 -0700 | [diff] [blame] | 708 | struct resource_constraint constraint; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 709 | |
Bjorn Helgaas | a9cea01 | 2010-10-26 15:41:13 -0600 | [diff] [blame] | 710 | if (!alignf) |
| 711 | alignf = simple_align_resource; |
| 712 | |
Ram Pai | 23c570a | 2011-07-05 23:44:30 -0700 | [diff] [blame] | 713 | constraint.min = min; |
| 714 | constraint.max = max; |
| 715 | constraint.align = align; |
| 716 | constraint.alignf = alignf; |
| 717 | constraint.alignf_data = alignf_data; |
| 718 | |
| 719 | if ( new->parent ) { |
| 720 | /* resource is already allocated, try reallocating with |
| 721 | the new constraints */ |
| 722 | return reallocate_resource(root, new, size, &constraint); |
| 723 | } |
| 724 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 725 | write_lock(&resource_lock); |
Ram Pai | 23c570a | 2011-07-05 23:44:30 -0700 | [diff] [blame] | 726 | err = find_resource(root, new, size, &constraint); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 727 | if (err >= 0 && __request_resource(root, new)) |
| 728 | err = -EBUSY; |
| 729 | write_unlock(&resource_lock); |
| 730 | return err; |
| 731 | } |
| 732 | |
| 733 | EXPORT_SYMBOL(allocate_resource); |
| 734 | |
Geert Uytterhoeven | 1c38891 | 2011-05-07 20:53:16 +0200 | [diff] [blame] | 735 | /** |
| 736 | * lookup_resource - find an existing resource by a resource start address |
| 737 | * @root: root resource descriptor |
| 738 | * @start: resource start address |
| 739 | * |
| 740 | * Returns a pointer to the resource if found, NULL otherwise |
| 741 | */ |
| 742 | struct resource *lookup_resource(struct resource *root, resource_size_t start) |
| 743 | { |
| 744 | struct resource *res; |
| 745 | |
| 746 | read_lock(&resource_lock); |
| 747 | for (res = root->child; res; res = res->sibling) { |
| 748 | if (res->start == start) |
| 749 | break; |
| 750 | } |
| 751 | read_unlock(&resource_lock); |
| 752 | |
| 753 | return res; |
| 754 | } |
| 755 | |
Linus Torvalds | bef69ea | 2008-08-29 20:18:31 -0700 | [diff] [blame] | 756 | /* |
| 757 | * Insert a resource into the resource tree. If successful, return NULL, |
| 758 | * otherwise return the conflicting resource (compare to __request_resource()) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 759 | */ |
Linus Torvalds | bef69ea | 2008-08-29 20:18:31 -0700 | [diff] [blame] | 760 | static struct resource * __insert_resource(struct resource *parent, struct resource *new) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 761 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 762 | struct resource *first, *next; |
| 763 | |
Matthew Wilcox | d33b6fb | 2006-06-30 02:31:24 -0700 | [diff] [blame] | 764 | for (;; parent = first) { |
Matthew Wilcox | d33b6fb | 2006-06-30 02:31:24 -0700 | [diff] [blame] | 765 | first = __request_resource(parent, new); |
| 766 | if (!first) |
Linus Torvalds | bef69ea | 2008-08-29 20:18:31 -0700 | [diff] [blame] | 767 | return first; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 768 | |
Matthew Wilcox | d33b6fb | 2006-06-30 02:31:24 -0700 | [diff] [blame] | 769 | if (first == parent) |
Linus Torvalds | bef69ea | 2008-08-29 20:18:31 -0700 | [diff] [blame] | 770 | return first; |
Huang Shijie | 5de1cb2 | 2010-10-27 15:34:52 -0700 | [diff] [blame] | 771 | if (WARN_ON(first == new)) /* duplicated insertion */ |
| 772 | return first; |
Matthew Wilcox | d33b6fb | 2006-06-30 02:31:24 -0700 | [diff] [blame] | 773 | |
| 774 | if ((first->start > new->start) || (first->end < new->end)) |
| 775 | break; |
| 776 | if ((first->start == new->start) && (first->end == new->end)) |
| 777 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 778 | } |
| 779 | |
| 780 | for (next = first; ; next = next->sibling) { |
| 781 | /* Partial overlap? Bad, and unfixable */ |
| 782 | if (next->start < new->start || next->end > new->end) |
Linus Torvalds | bef69ea | 2008-08-29 20:18:31 -0700 | [diff] [blame] | 783 | return next; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 784 | if (!next->sibling) |
| 785 | break; |
| 786 | if (next->sibling->start > new->end) |
| 787 | break; |
| 788 | } |
| 789 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 790 | new->parent = parent; |
| 791 | new->sibling = next->sibling; |
| 792 | new->child = first; |
| 793 | |
| 794 | next->sibling = NULL; |
| 795 | for (next = first; next; next = next->sibling) |
| 796 | next->parent = new; |
| 797 | |
| 798 | if (parent->child == first) { |
| 799 | parent->child = new; |
| 800 | } else { |
| 801 | next = parent->child; |
| 802 | while (next->sibling != first) |
| 803 | next = next->sibling; |
| 804 | next->sibling = new; |
| 805 | } |
Linus Torvalds | bef69ea | 2008-08-29 20:18:31 -0700 | [diff] [blame] | 806 | return NULL; |
| 807 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 808 | |
Linus Torvalds | bef69ea | 2008-08-29 20:18:31 -0700 | [diff] [blame] | 809 | /** |
Bjorn Helgaas | 66f1207 | 2010-03-11 17:01:09 -0700 | [diff] [blame] | 810 | * insert_resource_conflict - Inserts resource in the resource tree |
Linus Torvalds | bef69ea | 2008-08-29 20:18:31 -0700 | [diff] [blame] | 811 | * @parent: parent of the new resource |
| 812 | * @new: new resource to insert |
| 813 | * |
Bjorn Helgaas | 66f1207 | 2010-03-11 17:01:09 -0700 | [diff] [blame] | 814 | * Returns 0 on success, conflict resource if the resource can't be inserted. |
Linus Torvalds | bef69ea | 2008-08-29 20:18:31 -0700 | [diff] [blame] | 815 | * |
Bjorn Helgaas | 66f1207 | 2010-03-11 17:01:09 -0700 | [diff] [blame] | 816 | * This function is equivalent to request_resource_conflict when no conflict |
Linus Torvalds | bef69ea | 2008-08-29 20:18:31 -0700 | [diff] [blame] | 817 | * happens. If a conflict happens, and the conflicting resources |
| 818 | * entirely fit within the range of the new resource, then the new |
| 819 | * resource is inserted and the conflicting resources become children of |
| 820 | * the new resource. |
| 821 | */ |
Bjorn Helgaas | 66f1207 | 2010-03-11 17:01:09 -0700 | [diff] [blame] | 822 | struct resource *insert_resource_conflict(struct resource *parent, struct resource *new) |
Linus Torvalds | bef69ea | 2008-08-29 20:18:31 -0700 | [diff] [blame] | 823 | { |
| 824 | struct resource *conflict; |
| 825 | |
| 826 | write_lock(&resource_lock); |
| 827 | conflict = __insert_resource(parent, new); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 828 | write_unlock(&resource_lock); |
Bjorn Helgaas | 66f1207 | 2010-03-11 17:01:09 -0700 | [diff] [blame] | 829 | return conflict; |
| 830 | } |
| 831 | |
| 832 | /** |
| 833 | * insert_resource - Inserts a resource in the resource tree |
| 834 | * @parent: parent of the new resource |
| 835 | * @new: new resource to insert |
| 836 | * |
| 837 | * Returns 0 on success, -EBUSY if the resource can't be inserted. |
| 838 | */ |
| 839 | int insert_resource(struct resource *parent, struct resource *new) |
| 840 | { |
| 841 | struct resource *conflict; |
| 842 | |
| 843 | conflict = insert_resource_conflict(parent, new); |
Linus Torvalds | bef69ea | 2008-08-29 20:18:31 -0700 | [diff] [blame] | 844 | return conflict ? -EBUSY : 0; |
| 845 | } |
| 846 | |
| 847 | /** |
| 848 | * insert_resource_expand_to_fit - Insert a resource into the resource tree |
Randy Dunlap | 6781f4a | 2008-08-31 20:31:55 -0700 | [diff] [blame] | 849 | * @root: root resource descriptor |
Linus Torvalds | bef69ea | 2008-08-29 20:18:31 -0700 | [diff] [blame] | 850 | * @new: new resource to insert |
| 851 | * |
| 852 | * Insert a resource into the resource tree, possibly expanding it in order |
| 853 | * to make it encompass any conflicting resources. |
| 854 | */ |
| 855 | void insert_resource_expand_to_fit(struct resource *root, struct resource *new) |
| 856 | { |
| 857 | if (new->parent) |
| 858 | return; |
| 859 | |
| 860 | write_lock(&resource_lock); |
| 861 | for (;;) { |
| 862 | struct resource *conflict; |
| 863 | |
| 864 | conflict = __insert_resource(root, new); |
| 865 | if (!conflict) |
| 866 | break; |
| 867 | if (conflict == root) |
| 868 | break; |
| 869 | |
| 870 | /* Ok, expand resource to cover the conflict, then try again .. */ |
| 871 | if (conflict->start < new->start) |
| 872 | new->start = conflict->start; |
| 873 | if (conflict->end > new->end) |
| 874 | new->end = conflict->end; |
| 875 | |
| 876 | printk("Expanded resource %s due to conflict with %s\n", new->name, conflict->name); |
| 877 | } |
| 878 | write_unlock(&resource_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 879 | } |
| 880 | |
Toshi Kani | ae8e3a9 | 2013-04-29 15:08:17 -0700 | [diff] [blame] | 881 | static int __adjust_resource(struct resource *res, resource_size_t start, |
| 882 | resource_size_t size) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 883 | { |
| 884 | struct resource *tmp, *parent = res->parent; |
Greg Kroah-Hartman | d75fc8b | 2006-06-12 16:09:23 -0700 | [diff] [blame] | 885 | resource_size_t end = start + size - 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 886 | int result = -EBUSY; |
| 887 | |
Yinghai Lu | 82ec90e | 2012-05-17 18:51:11 -0700 | [diff] [blame] | 888 | if (!parent) |
| 889 | goto skip; |
| 890 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 891 | if ((start < parent->start) || (end > parent->end)) |
| 892 | goto out; |
| 893 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 894 | if (res->sibling && (res->sibling->start <= end)) |
| 895 | goto out; |
| 896 | |
| 897 | tmp = parent->child; |
| 898 | if (tmp != res) { |
| 899 | while (tmp->sibling != res) |
| 900 | tmp = tmp->sibling; |
| 901 | if (start <= tmp->end) |
| 902 | goto out; |
| 903 | } |
| 904 | |
Yinghai Lu | 82ec90e | 2012-05-17 18:51:11 -0700 | [diff] [blame] | 905 | skip: |
| 906 | for (tmp = res->child; tmp; tmp = tmp->sibling) |
| 907 | if ((tmp->start < start) || (tmp->end > end)) |
| 908 | goto out; |
| 909 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 910 | res->start = start; |
| 911 | res->end = end; |
| 912 | result = 0; |
| 913 | |
| 914 | out: |
Toshi Kani | ae8e3a9 | 2013-04-29 15:08:17 -0700 | [diff] [blame] | 915 | return result; |
| 916 | } |
| 917 | |
| 918 | /** |
| 919 | * adjust_resource - modify a resource's start and size |
| 920 | * @res: resource to modify |
| 921 | * @start: new start value |
| 922 | * @size: new size |
| 923 | * |
| 924 | * Given an existing resource, change its start and size to match the |
| 925 | * arguments. Returns 0 on success, -EBUSY if it can't fit. |
| 926 | * Existing children of the resource are assumed to be immutable. |
| 927 | */ |
| 928 | int adjust_resource(struct resource *res, resource_size_t start, |
| 929 | resource_size_t size) |
| 930 | { |
| 931 | int result; |
| 932 | |
| 933 | write_lock(&resource_lock); |
| 934 | result = __adjust_resource(res, start, size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 935 | write_unlock(&resource_lock); |
| 936 | return result; |
| 937 | } |
Cong Wang | 2410574 | 2012-02-03 21:42:39 +0800 | [diff] [blame] | 938 | EXPORT_SYMBOL(adjust_resource); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 939 | |
Yinghai Lu | 268364a | 2008-09-04 21:02:44 +0200 | [diff] [blame] | 940 | static void __init __reserve_region_with_split(struct resource *root, |
| 941 | resource_size_t start, resource_size_t end, |
| 942 | const char *name) |
| 943 | { |
| 944 | struct resource *parent = root; |
| 945 | struct resource *conflict; |
Yasuaki Ishimatsu | ebff7d8 | 2013-04-29 15:08:56 -0700 | [diff] [blame] | 946 | struct resource *res = alloc_resource(GFP_ATOMIC); |
T Makphaibulchoke | 4965f56 | 2012-10-04 17:16:55 -0700 | [diff] [blame] | 947 | struct resource *next_res = NULL; |
Yinghai Lu | 268364a | 2008-09-04 21:02:44 +0200 | [diff] [blame] | 948 | |
| 949 | if (!res) |
| 950 | return; |
| 951 | |
| 952 | res->name = name; |
| 953 | res->start = start; |
| 954 | res->end = end; |
| 955 | res->flags = IORESOURCE_BUSY; |
Toshi Kani | 43ee493 | 2016-01-26 21:57:19 +0100 | [diff] [blame] | 956 | res->desc = IORES_DESC_NONE; |
Yinghai Lu | 268364a | 2008-09-04 21:02:44 +0200 | [diff] [blame] | 957 | |
T Makphaibulchoke | 4965f56 | 2012-10-04 17:16:55 -0700 | [diff] [blame] | 958 | while (1) { |
Yinghai Lu | 268364a | 2008-09-04 21:02:44 +0200 | [diff] [blame] | 959 | |
T Makphaibulchoke | 4965f56 | 2012-10-04 17:16:55 -0700 | [diff] [blame] | 960 | conflict = __request_resource(parent, res); |
| 961 | if (!conflict) { |
| 962 | if (!next_res) |
| 963 | break; |
| 964 | res = next_res; |
| 965 | next_res = NULL; |
| 966 | continue; |
| 967 | } |
Yinghai Lu | 268364a | 2008-09-04 21:02:44 +0200 | [diff] [blame] | 968 | |
T Makphaibulchoke | 4965f56 | 2012-10-04 17:16:55 -0700 | [diff] [blame] | 969 | /* conflict covered whole area */ |
| 970 | if (conflict->start <= res->start && |
| 971 | conflict->end >= res->end) { |
Yasuaki Ishimatsu | ebff7d8 | 2013-04-29 15:08:56 -0700 | [diff] [blame] | 972 | free_resource(res); |
T Makphaibulchoke | 4965f56 | 2012-10-04 17:16:55 -0700 | [diff] [blame] | 973 | WARN_ON(next_res); |
| 974 | break; |
| 975 | } |
Yinghai Lu | 268364a | 2008-09-04 21:02:44 +0200 | [diff] [blame] | 976 | |
T Makphaibulchoke | 4965f56 | 2012-10-04 17:16:55 -0700 | [diff] [blame] | 977 | /* failed, split and try again */ |
| 978 | if (conflict->start > res->start) { |
| 979 | end = res->end; |
| 980 | res->end = conflict->start - 1; |
| 981 | if (conflict->end < end) { |
Yasuaki Ishimatsu | ebff7d8 | 2013-04-29 15:08:56 -0700 | [diff] [blame] | 982 | next_res = alloc_resource(GFP_ATOMIC); |
T Makphaibulchoke | 4965f56 | 2012-10-04 17:16:55 -0700 | [diff] [blame] | 983 | if (!next_res) { |
Yasuaki Ishimatsu | ebff7d8 | 2013-04-29 15:08:56 -0700 | [diff] [blame] | 984 | free_resource(res); |
T Makphaibulchoke | 4965f56 | 2012-10-04 17:16:55 -0700 | [diff] [blame] | 985 | break; |
| 986 | } |
| 987 | next_res->name = name; |
| 988 | next_res->start = conflict->end + 1; |
| 989 | next_res->end = end; |
| 990 | next_res->flags = IORESOURCE_BUSY; |
Toshi Kani | 43ee493 | 2016-01-26 21:57:19 +0100 | [diff] [blame] | 991 | next_res->desc = IORES_DESC_NONE; |
T Makphaibulchoke | 4965f56 | 2012-10-04 17:16:55 -0700 | [diff] [blame] | 992 | } |
| 993 | } else { |
| 994 | res->start = conflict->end + 1; |
| 995 | } |
| 996 | } |
| 997 | |
Yinghai Lu | 268364a | 2008-09-04 21:02:44 +0200 | [diff] [blame] | 998 | } |
| 999 | |
Paul Mundt | bea9211 | 2008-10-22 19:31:11 +0900 | [diff] [blame] | 1000 | void __init reserve_region_with_split(struct resource *root, |
Yinghai Lu | 268364a | 2008-09-04 21:02:44 +0200 | [diff] [blame] | 1001 | resource_size_t start, resource_size_t end, |
| 1002 | const char *name) |
| 1003 | { |
Octavian Purdila | 65fed8f | 2012-07-30 14:42:58 -0700 | [diff] [blame] | 1004 | int abort = 0; |
| 1005 | |
Yinghai Lu | 268364a | 2008-09-04 21:02:44 +0200 | [diff] [blame] | 1006 | write_lock(&resource_lock); |
Octavian Purdila | 65fed8f | 2012-07-30 14:42:58 -0700 | [diff] [blame] | 1007 | if (root->start > start || root->end < end) { |
| 1008 | pr_err("requested range [0x%llx-0x%llx] not in root %pr\n", |
| 1009 | (unsigned long long)start, (unsigned long long)end, |
| 1010 | root); |
| 1011 | if (start > root->end || end < root->start) |
| 1012 | abort = 1; |
| 1013 | else { |
| 1014 | if (end > root->end) |
| 1015 | end = root->end; |
| 1016 | if (start < root->start) |
| 1017 | start = root->start; |
| 1018 | pr_err("fixing request to [0x%llx-0x%llx]\n", |
| 1019 | (unsigned long long)start, |
| 1020 | (unsigned long long)end); |
| 1021 | } |
| 1022 | dump_stack(); |
| 1023 | } |
| 1024 | if (!abort) |
| 1025 | __reserve_region_with_split(root, start, end, name); |
Yinghai Lu | 268364a | 2008-09-04 21:02:44 +0200 | [diff] [blame] | 1026 | write_unlock(&resource_lock); |
| 1027 | } |
| 1028 | |
Ivan Kokshaysky | 8845256 | 2008-03-30 19:50:14 +0400 | [diff] [blame] | 1029 | /** |
| 1030 | * resource_alignment - calculate resource's alignment |
| 1031 | * @res: resource pointer |
| 1032 | * |
| 1033 | * Returns alignment on success, 0 (invalid alignment) on failure. |
| 1034 | */ |
| 1035 | resource_size_t resource_alignment(struct resource *res) |
| 1036 | { |
| 1037 | switch (res->flags & (IORESOURCE_SIZEALIGN | IORESOURCE_STARTALIGN)) { |
| 1038 | case IORESOURCE_SIZEALIGN: |
Magnus Damm | 1a4e564 | 2008-07-29 22:32:57 -0700 | [diff] [blame] | 1039 | return resource_size(res); |
Ivan Kokshaysky | 8845256 | 2008-03-30 19:50:14 +0400 | [diff] [blame] | 1040 | case IORESOURCE_STARTALIGN: |
| 1041 | return res->start; |
| 1042 | default: |
| 1043 | return 0; |
| 1044 | } |
| 1045 | } |
| 1046 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1047 | /* |
| 1048 | * This is compatibility stuff for IO resources. |
| 1049 | * |
| 1050 | * Note how this, unlike the above, knows about |
| 1051 | * the IO flag meanings (busy etc). |
| 1052 | * |
Randy Dunlap | e1ca66d1b | 2006-10-03 01:13:51 -0700 | [diff] [blame] | 1053 | * request_region creates a new busy region. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1054 | * |
Randy Dunlap | e1ca66d1b | 2006-10-03 01:13:51 -0700 | [diff] [blame] | 1055 | * release_region releases a matching busy region. |
| 1056 | */ |
| 1057 | |
Alan Cox | 8b6d043 | 2010-03-29 19:38:00 +0200 | [diff] [blame] | 1058 | static DECLARE_WAIT_QUEUE_HEAD(muxed_resource_wait); |
| 1059 | |
Randy Dunlap | e1ca66d1b | 2006-10-03 01:13:51 -0700 | [diff] [blame] | 1060 | /** |
| 1061 | * __request_region - create a new busy resource region |
| 1062 | * @parent: parent resource descriptor |
| 1063 | * @start: resource start address |
| 1064 | * @n: resource region size |
| 1065 | * @name: reserving caller's ID string |
Randy Dunlap | 6ae301e | 2009-01-15 13:51:01 -0800 | [diff] [blame] | 1066 | * @flags: IO resource flags |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1067 | */ |
Greg Kroah-Hartman | d75fc8b | 2006-06-12 16:09:23 -0700 | [diff] [blame] | 1068 | struct resource * __request_region(struct resource *parent, |
| 1069 | resource_size_t start, resource_size_t n, |
Arjan van de Ven | e8de148 | 2008-10-22 19:55:31 -0700 | [diff] [blame] | 1070 | const char *name, int flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1071 | { |
Alan Cox | 8b6d043 | 2010-03-29 19:38:00 +0200 | [diff] [blame] | 1072 | DECLARE_WAITQUEUE(wait, current); |
Yasuaki Ishimatsu | ebff7d8 | 2013-04-29 15:08:56 -0700 | [diff] [blame] | 1073 | struct resource *res = alloc_resource(GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1074 | |
Bjorn Helgaas | c26ec88 | 2008-10-15 22:05:14 -0700 | [diff] [blame] | 1075 | if (!res) |
| 1076 | return NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1077 | |
Bjorn Helgaas | c26ec88 | 2008-10-15 22:05:14 -0700 | [diff] [blame] | 1078 | res->name = name; |
| 1079 | res->start = start; |
| 1080 | res->end = start + n - 1; |
Toshi Kani | a3650d5 | 2016-01-26 21:57:18 +0100 | [diff] [blame] | 1081 | res->flags = resource_type(parent) | resource_ext_type(parent); |
Bjorn Helgaas | 6404e88 | 2014-03-07 09:22:19 -0700 | [diff] [blame] | 1082 | res->flags |= IORESOURCE_BUSY | flags; |
Toshi Kani | 43ee493 | 2016-01-26 21:57:19 +0100 | [diff] [blame] | 1083 | res->desc = IORES_DESC_NONE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1084 | |
Bjorn Helgaas | c26ec88 | 2008-10-15 22:05:14 -0700 | [diff] [blame] | 1085 | write_lock(&resource_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1086 | |
Bjorn Helgaas | c26ec88 | 2008-10-15 22:05:14 -0700 | [diff] [blame] | 1087 | for (;;) { |
| 1088 | struct resource *conflict; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1089 | |
Bjorn Helgaas | c26ec88 | 2008-10-15 22:05:14 -0700 | [diff] [blame] | 1090 | conflict = __request_resource(parent, res); |
| 1091 | if (!conflict) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1092 | break; |
Bjorn Helgaas | c26ec88 | 2008-10-15 22:05:14 -0700 | [diff] [blame] | 1093 | if (conflict != parent) { |
| 1094 | parent = conflict; |
| 1095 | if (!(conflict->flags & IORESOURCE_BUSY)) |
| 1096 | continue; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1097 | } |
Alan Cox | 8b6d043 | 2010-03-29 19:38:00 +0200 | [diff] [blame] | 1098 | if (conflict->flags & flags & IORESOURCE_MUXED) { |
| 1099 | add_wait_queue(&muxed_resource_wait, &wait); |
| 1100 | write_unlock(&resource_lock); |
| 1101 | set_current_state(TASK_UNINTERRUPTIBLE); |
| 1102 | schedule(); |
| 1103 | remove_wait_queue(&muxed_resource_wait, &wait); |
| 1104 | write_lock(&resource_lock); |
| 1105 | continue; |
| 1106 | } |
Bjorn Helgaas | c26ec88 | 2008-10-15 22:05:14 -0700 | [diff] [blame] | 1107 | /* Uhhuh, that didn't work out.. */ |
Yasuaki Ishimatsu | ebff7d8 | 2013-04-29 15:08:56 -0700 | [diff] [blame] | 1108 | free_resource(res); |
Bjorn Helgaas | c26ec88 | 2008-10-15 22:05:14 -0700 | [diff] [blame] | 1109 | res = NULL; |
| 1110 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1111 | } |
Bjorn Helgaas | c26ec88 | 2008-10-15 22:05:14 -0700 | [diff] [blame] | 1112 | write_unlock(&resource_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1113 | return res; |
| 1114 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1115 | EXPORT_SYMBOL(__request_region); |
| 1116 | |
Randy Dunlap | e1ca66d1b | 2006-10-03 01:13:51 -0700 | [diff] [blame] | 1117 | /** |
Randy Dunlap | e1ca66d1b | 2006-10-03 01:13:51 -0700 | [diff] [blame] | 1118 | * __release_region - release a previously reserved resource region |
| 1119 | * @parent: parent resource descriptor |
| 1120 | * @start: resource start address |
| 1121 | * @n: resource region size |
| 1122 | * |
| 1123 | * The described resource region must match a currently busy region. |
| 1124 | */ |
Greg Kroah-Hartman | d75fc8b | 2006-06-12 16:09:23 -0700 | [diff] [blame] | 1125 | void __release_region(struct resource *parent, resource_size_t start, |
| 1126 | resource_size_t n) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1127 | { |
| 1128 | struct resource **p; |
Greg Kroah-Hartman | d75fc8b | 2006-06-12 16:09:23 -0700 | [diff] [blame] | 1129 | resource_size_t end; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1130 | |
| 1131 | p = &parent->child; |
| 1132 | end = start + n - 1; |
| 1133 | |
| 1134 | write_lock(&resource_lock); |
| 1135 | |
| 1136 | for (;;) { |
| 1137 | struct resource *res = *p; |
| 1138 | |
| 1139 | if (!res) |
| 1140 | break; |
| 1141 | if (res->start <= start && res->end >= end) { |
| 1142 | if (!(res->flags & IORESOURCE_BUSY)) { |
| 1143 | p = &res->child; |
| 1144 | continue; |
| 1145 | } |
| 1146 | if (res->start != start || res->end != end) |
| 1147 | break; |
| 1148 | *p = res->sibling; |
| 1149 | write_unlock(&resource_lock); |
Alan Cox | 8b6d043 | 2010-03-29 19:38:00 +0200 | [diff] [blame] | 1150 | if (res->flags & IORESOURCE_MUXED) |
| 1151 | wake_up(&muxed_resource_wait); |
Yasuaki Ishimatsu | ebff7d8 | 2013-04-29 15:08:56 -0700 | [diff] [blame] | 1152 | free_resource(res); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1153 | return; |
| 1154 | } |
| 1155 | p = &res->sibling; |
| 1156 | } |
| 1157 | |
| 1158 | write_unlock(&resource_lock); |
| 1159 | |
Greg Kroah-Hartman | 685143ac | 2006-06-12 15:18:31 -0700 | [diff] [blame] | 1160 | printk(KERN_WARNING "Trying to free nonexistent resource " |
| 1161 | "<%016llx-%016llx>\n", (unsigned long long)start, |
| 1162 | (unsigned long long)end); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1163 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1164 | EXPORT_SYMBOL(__release_region); |
| 1165 | |
Toshi Kani | 825f787 | 2013-04-29 15:08:19 -0700 | [diff] [blame] | 1166 | #ifdef CONFIG_MEMORY_HOTREMOVE |
| 1167 | /** |
| 1168 | * release_mem_region_adjustable - release a previously reserved memory region |
| 1169 | * @parent: parent resource descriptor |
| 1170 | * @start: resource start address |
| 1171 | * @size: resource region size |
| 1172 | * |
| 1173 | * This interface is intended for memory hot-delete. The requested region |
| 1174 | * is released from a currently busy memory resource. The requested region |
| 1175 | * must either match exactly or fit into a single busy resource entry. In |
| 1176 | * the latter case, the remaining resource is adjusted accordingly. |
| 1177 | * Existing children of the busy memory resource must be immutable in the |
| 1178 | * request. |
| 1179 | * |
| 1180 | * Note: |
| 1181 | * - Additional release conditions, such as overlapping region, can be |
| 1182 | * supported after they are confirmed as valid cases. |
| 1183 | * - When a busy memory resource gets split into two entries, the code |
| 1184 | * assumes that all children remain in the lower address entry for |
| 1185 | * simplicity. Enhance this logic when necessary. |
| 1186 | */ |
| 1187 | int release_mem_region_adjustable(struct resource *parent, |
| 1188 | resource_size_t start, resource_size_t size) |
| 1189 | { |
| 1190 | struct resource **p; |
| 1191 | struct resource *res; |
| 1192 | struct resource *new_res; |
| 1193 | resource_size_t end; |
| 1194 | int ret = -EINVAL; |
| 1195 | |
| 1196 | end = start + size - 1; |
| 1197 | if ((start < parent->start) || (end > parent->end)) |
| 1198 | return ret; |
| 1199 | |
Yasuaki Ishimatsu | ebff7d8 | 2013-04-29 15:08:56 -0700 | [diff] [blame] | 1200 | /* The alloc_resource() result gets checked later */ |
| 1201 | new_res = alloc_resource(GFP_KERNEL); |
Toshi Kani | 825f787 | 2013-04-29 15:08:19 -0700 | [diff] [blame] | 1202 | |
| 1203 | p = &parent->child; |
| 1204 | write_lock(&resource_lock); |
| 1205 | |
| 1206 | while ((res = *p)) { |
| 1207 | if (res->start >= end) |
| 1208 | break; |
| 1209 | |
| 1210 | /* look for the next resource if it does not fit into */ |
| 1211 | if (res->start > start || res->end < end) { |
| 1212 | p = &res->sibling; |
| 1213 | continue; |
| 1214 | } |
| 1215 | |
| 1216 | if (!(res->flags & IORESOURCE_MEM)) |
| 1217 | break; |
| 1218 | |
| 1219 | if (!(res->flags & IORESOURCE_BUSY)) { |
| 1220 | p = &res->child; |
| 1221 | continue; |
| 1222 | } |
| 1223 | |
| 1224 | /* found the target resource; let's adjust accordingly */ |
| 1225 | if (res->start == start && res->end == end) { |
| 1226 | /* free the whole entry */ |
| 1227 | *p = res->sibling; |
Yasuaki Ishimatsu | ebff7d8 | 2013-04-29 15:08:56 -0700 | [diff] [blame] | 1228 | free_resource(res); |
Toshi Kani | 825f787 | 2013-04-29 15:08:19 -0700 | [diff] [blame] | 1229 | ret = 0; |
| 1230 | } else if (res->start == start && res->end != end) { |
| 1231 | /* adjust the start */ |
| 1232 | ret = __adjust_resource(res, end + 1, |
| 1233 | res->end - end); |
| 1234 | } else if (res->start != start && res->end == end) { |
| 1235 | /* adjust the end */ |
| 1236 | ret = __adjust_resource(res, res->start, |
| 1237 | start - res->start); |
| 1238 | } else { |
| 1239 | /* split into two entries */ |
| 1240 | if (!new_res) { |
| 1241 | ret = -ENOMEM; |
| 1242 | break; |
| 1243 | } |
| 1244 | new_res->name = res->name; |
| 1245 | new_res->start = end + 1; |
| 1246 | new_res->end = res->end; |
| 1247 | new_res->flags = res->flags; |
Toshi Kani | 43ee493 | 2016-01-26 21:57:19 +0100 | [diff] [blame] | 1248 | new_res->desc = res->desc; |
Toshi Kani | 825f787 | 2013-04-29 15:08:19 -0700 | [diff] [blame] | 1249 | new_res->parent = res->parent; |
| 1250 | new_res->sibling = res->sibling; |
| 1251 | new_res->child = NULL; |
| 1252 | |
| 1253 | ret = __adjust_resource(res, res->start, |
| 1254 | start - res->start); |
| 1255 | if (ret) |
| 1256 | break; |
| 1257 | res->sibling = new_res; |
| 1258 | new_res = NULL; |
| 1259 | } |
| 1260 | |
| 1261 | break; |
| 1262 | } |
| 1263 | |
| 1264 | write_unlock(&resource_lock); |
Yasuaki Ishimatsu | ebff7d8 | 2013-04-29 15:08:56 -0700 | [diff] [blame] | 1265 | free_resource(new_res); |
Toshi Kani | 825f787 | 2013-04-29 15:08:19 -0700 | [diff] [blame] | 1266 | return ret; |
| 1267 | } |
| 1268 | #endif /* CONFIG_MEMORY_HOTREMOVE */ |
| 1269 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1270 | /* |
Tejun Heo | 9ac7849 | 2007-01-20 16:00:26 +0900 | [diff] [blame] | 1271 | * Managed region resource |
| 1272 | */ |
Thierry Reding | 8d38821 | 2014-08-01 14:15:10 +0200 | [diff] [blame] | 1273 | static void devm_resource_release(struct device *dev, void *ptr) |
| 1274 | { |
| 1275 | struct resource **r = ptr; |
| 1276 | |
| 1277 | release_resource(*r); |
| 1278 | } |
| 1279 | |
| 1280 | /** |
| 1281 | * devm_request_resource() - request and reserve an I/O or memory resource |
| 1282 | * @dev: device for which to request the resource |
| 1283 | * @root: root of the resource tree from which to request the resource |
| 1284 | * @new: descriptor of the resource to request |
| 1285 | * |
| 1286 | * This is a device-managed version of request_resource(). There is usually |
| 1287 | * no need to release resources requested by this function explicitly since |
| 1288 | * that will be taken care of when the device is unbound from its driver. |
| 1289 | * If for some reason the resource needs to be released explicitly, because |
| 1290 | * of ordering issues for example, drivers must call devm_release_resource() |
| 1291 | * rather than the regular release_resource(). |
| 1292 | * |
| 1293 | * When a conflict is detected between any existing resources and the newly |
| 1294 | * requested resource, an error message will be printed. |
| 1295 | * |
| 1296 | * Returns 0 on success or a negative error code on failure. |
| 1297 | */ |
| 1298 | int devm_request_resource(struct device *dev, struct resource *root, |
| 1299 | struct resource *new) |
| 1300 | { |
| 1301 | struct resource *conflict, **ptr; |
| 1302 | |
| 1303 | ptr = devres_alloc(devm_resource_release, sizeof(*ptr), GFP_KERNEL); |
| 1304 | if (!ptr) |
| 1305 | return -ENOMEM; |
| 1306 | |
| 1307 | *ptr = new; |
| 1308 | |
| 1309 | conflict = request_resource_conflict(root, new); |
| 1310 | if (conflict) { |
| 1311 | dev_err(dev, "resource collision: %pR conflicts with %s %pR\n", |
| 1312 | new, conflict->name, conflict); |
| 1313 | devres_free(ptr); |
| 1314 | return -EBUSY; |
| 1315 | } |
| 1316 | |
| 1317 | devres_add(dev, ptr); |
| 1318 | return 0; |
| 1319 | } |
| 1320 | EXPORT_SYMBOL(devm_request_resource); |
| 1321 | |
| 1322 | static int devm_resource_match(struct device *dev, void *res, void *data) |
| 1323 | { |
| 1324 | struct resource **ptr = res; |
| 1325 | |
| 1326 | return *ptr == data; |
| 1327 | } |
| 1328 | |
| 1329 | /** |
| 1330 | * devm_release_resource() - release a previously requested resource |
| 1331 | * @dev: device for which to release the resource |
| 1332 | * @new: descriptor of the resource to release |
| 1333 | * |
| 1334 | * Releases a resource previously requested using devm_request_resource(). |
| 1335 | */ |
| 1336 | void devm_release_resource(struct device *dev, struct resource *new) |
| 1337 | { |
| 1338 | WARN_ON(devres_release(dev, devm_resource_release, devm_resource_match, |
| 1339 | new)); |
| 1340 | } |
| 1341 | EXPORT_SYMBOL(devm_release_resource); |
| 1342 | |
Tejun Heo | 9ac7849 | 2007-01-20 16:00:26 +0900 | [diff] [blame] | 1343 | struct region_devres { |
| 1344 | struct resource *parent; |
| 1345 | resource_size_t start; |
| 1346 | resource_size_t n; |
| 1347 | }; |
| 1348 | |
| 1349 | static void devm_region_release(struct device *dev, void *res) |
| 1350 | { |
| 1351 | struct region_devres *this = res; |
| 1352 | |
| 1353 | __release_region(this->parent, this->start, this->n); |
| 1354 | } |
| 1355 | |
| 1356 | static int devm_region_match(struct device *dev, void *res, void *match_data) |
| 1357 | { |
| 1358 | struct region_devres *this = res, *match = match_data; |
| 1359 | |
| 1360 | return this->parent == match->parent && |
| 1361 | this->start == match->start && this->n == match->n; |
| 1362 | } |
| 1363 | |
| 1364 | struct resource * __devm_request_region(struct device *dev, |
| 1365 | struct resource *parent, resource_size_t start, |
| 1366 | resource_size_t n, const char *name) |
| 1367 | { |
| 1368 | struct region_devres *dr = NULL; |
| 1369 | struct resource *res; |
| 1370 | |
| 1371 | dr = devres_alloc(devm_region_release, sizeof(struct region_devres), |
| 1372 | GFP_KERNEL); |
| 1373 | if (!dr) |
| 1374 | return NULL; |
| 1375 | |
| 1376 | dr->parent = parent; |
| 1377 | dr->start = start; |
| 1378 | dr->n = n; |
| 1379 | |
Arjan van de Ven | e8de148 | 2008-10-22 19:55:31 -0700 | [diff] [blame] | 1380 | res = __request_region(parent, start, n, name, 0); |
Tejun Heo | 9ac7849 | 2007-01-20 16:00:26 +0900 | [diff] [blame] | 1381 | if (res) |
| 1382 | devres_add(dev, dr); |
| 1383 | else |
| 1384 | devres_free(dr); |
| 1385 | |
| 1386 | return res; |
| 1387 | } |
| 1388 | EXPORT_SYMBOL(__devm_request_region); |
| 1389 | |
| 1390 | void __devm_release_region(struct device *dev, struct resource *parent, |
| 1391 | resource_size_t start, resource_size_t n) |
| 1392 | { |
| 1393 | struct region_devres match_data = { parent, start, n }; |
| 1394 | |
| 1395 | __release_region(parent, start, n); |
| 1396 | WARN_ON(devres_destroy(dev, devm_region_release, devm_region_match, |
| 1397 | &match_data)); |
| 1398 | } |
| 1399 | EXPORT_SYMBOL(__devm_release_region); |
| 1400 | |
| 1401 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1402 | * Called from init/main.c to reserve IO ports. |
| 1403 | */ |
| 1404 | #define MAXRESERVE 4 |
| 1405 | static int __init reserve_setup(char *str) |
| 1406 | { |
| 1407 | static int reserved; |
| 1408 | static struct resource reserve[MAXRESERVE]; |
| 1409 | |
| 1410 | for (;;) { |
Zhang Rui | 8bc1ad7 | 2009-06-30 11:41:31 -0700 | [diff] [blame] | 1411 | unsigned int io_start, io_num; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1412 | int x = reserved; |
| 1413 | |
| 1414 | if (get_option (&str, &io_start) != 2) |
| 1415 | break; |
| 1416 | if (get_option (&str, &io_num) == 0) |
| 1417 | break; |
| 1418 | if (x < MAXRESERVE) { |
| 1419 | struct resource *res = reserve + x; |
| 1420 | res->name = "reserved"; |
| 1421 | res->start = io_start; |
| 1422 | res->end = io_start + io_num - 1; |
| 1423 | res->flags = IORESOURCE_BUSY; |
Toshi Kani | 43ee493 | 2016-01-26 21:57:19 +0100 | [diff] [blame] | 1424 | res->desc = IORES_DESC_NONE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1425 | res->child = NULL; |
| 1426 | if (request_resource(res->start >= 0x10000 ? &iomem_resource : &ioport_resource, res) == 0) |
| 1427 | reserved = x+1; |
| 1428 | } |
| 1429 | } |
| 1430 | return 1; |
| 1431 | } |
| 1432 | |
| 1433 | __setup("reserve=", reserve_setup); |
Suresh Siddha | 379daf6 | 2008-09-25 18:43:34 -0700 | [diff] [blame] | 1434 | |
| 1435 | /* |
| 1436 | * Check if the requested addr and size spans more than any slot in the |
| 1437 | * iomem resource tree. |
| 1438 | */ |
| 1439 | int iomem_map_sanity_check(resource_size_t addr, unsigned long size) |
| 1440 | { |
| 1441 | struct resource *p = &iomem_resource; |
| 1442 | int err = 0; |
| 1443 | loff_t l; |
| 1444 | |
| 1445 | read_lock(&resource_lock); |
| 1446 | for (p = p->child; p ; p = r_next(NULL, p, &l)) { |
| 1447 | /* |
| 1448 | * We can probably skip the resources without |
| 1449 | * IORESOURCE_IO attribute? |
| 1450 | */ |
| 1451 | if (p->start >= addr + size) |
| 1452 | continue; |
| 1453 | if (p->end < addr) |
| 1454 | continue; |
Suresh Siddha | d68612b | 2008-10-28 11:45:42 -0700 | [diff] [blame] | 1455 | if (PFN_DOWN(p->start) <= PFN_DOWN(addr) && |
| 1456 | PFN_DOWN(p->end) >= PFN_DOWN(addr + size - 1)) |
Suresh Siddha | 379daf6 | 2008-09-25 18:43:34 -0700 | [diff] [blame] | 1457 | continue; |
Arjan van de Ven | 3ac5266 | 2008-12-13 09:15:27 -0800 | [diff] [blame] | 1458 | /* |
| 1459 | * if a resource is "BUSY", it's not a hardware resource |
| 1460 | * but a driver mapping of such a resource; we don't want |
| 1461 | * to warn for those; some drivers legitimately map only |
| 1462 | * partial hardware resources. (example: vesafb) |
| 1463 | */ |
| 1464 | if (p->flags & IORESOURCE_BUSY) |
| 1465 | continue; |
| 1466 | |
Bjorn Helgaas | e4c7296 | 2014-04-14 15:38:11 -0600 | [diff] [blame] | 1467 | printk(KERN_WARNING "resource sanity check: requesting [mem %#010llx-%#010llx], which spans more than %s %pR\n", |
Ingo Molnar | 13eb837 | 2008-09-26 10:10:12 +0200 | [diff] [blame] | 1468 | (unsigned long long)addr, |
| 1469 | (unsigned long long)(addr + size - 1), |
Bjorn Helgaas | e4c7296 | 2014-04-14 15:38:11 -0600 | [diff] [blame] | 1470 | p->name, p); |
Suresh Siddha | 379daf6 | 2008-09-25 18:43:34 -0700 | [diff] [blame] | 1471 | err = -1; |
| 1472 | break; |
| 1473 | } |
| 1474 | read_unlock(&resource_lock); |
| 1475 | |
| 1476 | return err; |
| 1477 | } |
Arjan van de Ven | e8de148 | 2008-10-22 19:55:31 -0700 | [diff] [blame] | 1478 | |
| 1479 | #ifdef CONFIG_STRICT_DEVMEM |
| 1480 | static int strict_iomem_checks = 1; |
| 1481 | #else |
| 1482 | static int strict_iomem_checks; |
| 1483 | #endif |
| 1484 | |
| 1485 | /* |
| 1486 | * check if an address is reserved in the iomem resource tree |
| 1487 | * returns 1 if reserved, 0 if not reserved. |
| 1488 | */ |
| 1489 | int iomem_is_exclusive(u64 addr) |
| 1490 | { |
| 1491 | struct resource *p = &iomem_resource; |
| 1492 | int err = 0; |
| 1493 | loff_t l; |
| 1494 | int size = PAGE_SIZE; |
| 1495 | |
| 1496 | if (!strict_iomem_checks) |
| 1497 | return 0; |
| 1498 | |
| 1499 | addr = addr & PAGE_MASK; |
| 1500 | |
| 1501 | read_lock(&resource_lock); |
| 1502 | for (p = p->child; p ; p = r_next(NULL, p, &l)) { |
| 1503 | /* |
| 1504 | * We can probably skip the resources without |
| 1505 | * IORESOURCE_IO attribute? |
| 1506 | */ |
| 1507 | if (p->start >= addr + size) |
| 1508 | break; |
| 1509 | if (p->end < addr) |
| 1510 | continue; |
Dan Williams | 90a545e | 2015-11-23 15:49:03 -0800 | [diff] [blame] | 1511 | /* |
| 1512 | * A resource is exclusive if IORESOURCE_EXCLUSIVE is set |
| 1513 | * or CONFIG_IO_STRICT_DEVMEM is enabled and the |
| 1514 | * resource is busy. |
| 1515 | */ |
| 1516 | if ((p->flags & IORESOURCE_BUSY) == 0) |
| 1517 | continue; |
| 1518 | if (IS_ENABLED(CONFIG_IO_STRICT_DEVMEM) |
| 1519 | || p->flags & IORESOURCE_EXCLUSIVE) { |
Arjan van de Ven | e8de148 | 2008-10-22 19:55:31 -0700 | [diff] [blame] | 1520 | err = 1; |
| 1521 | break; |
| 1522 | } |
| 1523 | } |
| 1524 | read_unlock(&resource_lock); |
| 1525 | |
| 1526 | return err; |
| 1527 | } |
| 1528 | |
Jiang Liu | 90e9782 | 2015-02-05 13:44:43 +0800 | [diff] [blame] | 1529 | struct resource_entry *resource_list_create_entry(struct resource *res, |
| 1530 | size_t extra_size) |
| 1531 | { |
| 1532 | struct resource_entry *entry; |
| 1533 | |
| 1534 | entry = kzalloc(sizeof(*entry) + extra_size, GFP_KERNEL); |
| 1535 | if (entry) { |
| 1536 | INIT_LIST_HEAD(&entry->node); |
| 1537 | entry->res = res ? res : &entry->__res; |
| 1538 | } |
| 1539 | |
| 1540 | return entry; |
| 1541 | } |
| 1542 | EXPORT_SYMBOL(resource_list_create_entry); |
| 1543 | |
| 1544 | void resource_list_free(struct list_head *head) |
| 1545 | { |
| 1546 | struct resource_entry *entry, *tmp; |
| 1547 | |
| 1548 | list_for_each_entry_safe(entry, tmp, head, node) |
| 1549 | resource_list_destroy_entry(entry); |
| 1550 | } |
| 1551 | EXPORT_SYMBOL(resource_list_free); |
| 1552 | |
Arjan van de Ven | e8de148 | 2008-10-22 19:55:31 -0700 | [diff] [blame] | 1553 | static int __init strict_iomem(char *str) |
| 1554 | { |
| 1555 | if (strstr(str, "relaxed")) |
| 1556 | strict_iomem_checks = 0; |
| 1557 | if (strstr(str, "strict")) |
| 1558 | strict_iomem_checks = 1; |
| 1559 | return 1; |
| 1560 | } |
| 1561 | |
| 1562 | __setup("iomem=", strict_iomem); |