| 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 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10 | #include <linux/module.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | #include <linux/errno.h> | 
|  | 12 | #include <linux/ioport.h> | 
|  | 13 | #include <linux/init.h> | 
|  | 14 | #include <linux/slab.h> | 
|  | 15 | #include <linux/spinlock.h> | 
|  | 16 | #include <linux/fs.h> | 
|  | 17 | #include <linux/proc_fs.h> | 
|  | 18 | #include <linux/seq_file.h> | 
| Tejun Heo | 9ac7849 | 2007-01-20 16:00:26 +0900 | [diff] [blame] | 19 | #include <linux/device.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | #include <asm/io.h> | 
|  | 21 |  | 
|  | 22 |  | 
|  | 23 | struct resource ioport_resource = { | 
|  | 24 | .name	= "PCI IO", | 
| Greg Kroah-Hartman | 6550e07 | 2006-06-12 17:11:31 -0700 | [diff] [blame] | 25 | .start	= 0, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | .end	= IO_SPACE_LIMIT, | 
|  | 27 | .flags	= IORESOURCE_IO, | 
|  | 28 | }; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | EXPORT_SYMBOL(ioport_resource); | 
|  | 30 |  | 
|  | 31 | struct resource iomem_resource = { | 
|  | 32 | .name	= "PCI mem", | 
| Greg Kroah-Hartman | 6550e07 | 2006-06-12 17:11:31 -0700 | [diff] [blame] | 33 | .start	= 0, | 
|  | 34 | .end	= -1, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | .flags	= IORESOURCE_MEM, | 
|  | 36 | }; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | EXPORT_SYMBOL(iomem_resource); | 
|  | 38 |  | 
|  | 39 | static DEFINE_RWLOCK(resource_lock); | 
|  | 40 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | static void *r_next(struct seq_file *m, void *v, loff_t *pos) | 
|  | 42 | { | 
|  | 43 | struct resource *p = v; | 
|  | 44 | (*pos)++; | 
|  | 45 | if (p->child) | 
|  | 46 | return p->child; | 
|  | 47 | while (!p->sibling && p->parent) | 
|  | 48 | p = p->parent; | 
|  | 49 | return p->sibling; | 
|  | 50 | } | 
|  | 51 |  | 
| Ingo Molnar | 13eb837 | 2008-09-26 10:10:12 +0200 | [diff] [blame] | 52 | #ifdef CONFIG_PROC_FS | 
|  | 53 |  | 
|  | 54 | enum { MAX_IORES_LEVEL = 5 }; | 
|  | 55 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | static void *r_start(struct seq_file *m, loff_t *pos) | 
|  | 57 | __acquires(resource_lock) | 
|  | 58 | { | 
|  | 59 | struct resource *p = m->private; | 
|  | 60 | loff_t l = 0; | 
|  | 61 | read_lock(&resource_lock); | 
|  | 62 | for (p = p->child; p && l < *pos; p = r_next(m, p, &l)) | 
|  | 63 | ; | 
|  | 64 | return p; | 
|  | 65 | } | 
|  | 66 |  | 
|  | 67 | static void r_stop(struct seq_file *m, void *v) | 
|  | 68 | __releases(resource_lock) | 
|  | 69 | { | 
|  | 70 | read_unlock(&resource_lock); | 
|  | 71 | } | 
|  | 72 |  | 
|  | 73 | static int r_show(struct seq_file *m, void *v) | 
|  | 74 | { | 
|  | 75 | struct resource *root = m->private; | 
|  | 76 | struct resource *r = v, *p; | 
|  | 77 | int width = root->end < 0x10000 ? 4 : 8; | 
|  | 78 | int depth; | 
|  | 79 |  | 
|  | 80 | for (depth = 0, p = r; depth < MAX_IORES_LEVEL; depth++, p = p->parent) | 
|  | 81 | if (p->parent == root) | 
|  | 82 | break; | 
| Greg Kroah-Hartman | 685143a | 2006-06-12 15:18:31 -0700 | [diff] [blame] | 83 | seq_printf(m, "%*s%0*llx-%0*llx : %s\n", | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 84 | depth * 2, "", | 
| Greg Kroah-Hartman | 685143a | 2006-06-12 15:18:31 -0700 | [diff] [blame] | 85 | width, (unsigned long long) r->start, | 
|  | 86 | width, (unsigned long long) r->end, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 | r->name ? r->name : "<BAD>"); | 
|  | 88 | return 0; | 
|  | 89 | } | 
|  | 90 |  | 
| Helge Deller | 15ad7cd | 2006-12-06 20:40:36 -0800 | [diff] [blame] | 91 | static const struct seq_operations resource_op = { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 92 | .start	= r_start, | 
|  | 93 | .next	= r_next, | 
|  | 94 | .stop	= r_stop, | 
|  | 95 | .show	= r_show, | 
|  | 96 | }; | 
|  | 97 |  | 
|  | 98 | static int ioports_open(struct inode *inode, struct file *file) | 
|  | 99 | { | 
|  | 100 | int res = seq_open(file, &resource_op); | 
|  | 101 | if (!res) { | 
|  | 102 | struct seq_file *m = file->private_data; | 
|  | 103 | m->private = &ioport_resource; | 
|  | 104 | } | 
|  | 105 | return res; | 
|  | 106 | } | 
|  | 107 |  | 
|  | 108 | static int iomem_open(struct inode *inode, struct file *file) | 
|  | 109 | { | 
|  | 110 | int res = seq_open(file, &resource_op); | 
|  | 111 | if (!res) { | 
|  | 112 | struct seq_file *m = file->private_data; | 
|  | 113 | m->private = &iomem_resource; | 
|  | 114 | } | 
|  | 115 | return res; | 
|  | 116 | } | 
|  | 117 |  | 
| Helge Deller | 15ad7cd | 2006-12-06 20:40:36 -0800 | [diff] [blame] | 118 | static const struct file_operations proc_ioports_operations = { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 119 | .open		= ioports_open, | 
|  | 120 | .read		= seq_read, | 
|  | 121 | .llseek		= seq_lseek, | 
|  | 122 | .release	= seq_release, | 
|  | 123 | }; | 
|  | 124 |  | 
| Helge Deller | 15ad7cd | 2006-12-06 20:40:36 -0800 | [diff] [blame] | 125 | static const struct file_operations proc_iomem_operations = { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 126 | .open		= iomem_open, | 
|  | 127 | .read		= seq_read, | 
|  | 128 | .llseek		= seq_lseek, | 
|  | 129 | .release	= seq_release, | 
|  | 130 | }; | 
|  | 131 |  | 
|  | 132 | static int __init ioresources_init(void) | 
|  | 133 | { | 
| Denis V. Lunev | c33fff0 | 2008-04-29 01:02:31 -0700 | [diff] [blame] | 134 | proc_create("ioports", 0, NULL, &proc_ioports_operations); | 
|  | 135 | proc_create("iomem", 0, NULL, &proc_iomem_operations); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 136 | return 0; | 
|  | 137 | } | 
|  | 138 | __initcall(ioresources_init); | 
|  | 139 |  | 
|  | 140 | #endif /* CONFIG_PROC_FS */ | 
|  | 141 |  | 
|  | 142 | /* Return the conflict entry if you can't request it */ | 
|  | 143 | static struct resource * __request_resource(struct resource *root, struct resource *new) | 
|  | 144 | { | 
| Greg Kroah-Hartman | d75fc8b | 2006-06-12 16:09:23 -0700 | [diff] [blame] | 145 | resource_size_t start = new->start; | 
|  | 146 | resource_size_t end = new->end; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 147 | struct resource *tmp, **p; | 
|  | 148 |  | 
|  | 149 | if (end < start) | 
|  | 150 | return root; | 
|  | 151 | if (start < root->start) | 
|  | 152 | return root; | 
|  | 153 | if (end > root->end) | 
|  | 154 | return root; | 
|  | 155 | p = &root->child; | 
|  | 156 | for (;;) { | 
|  | 157 | tmp = *p; | 
|  | 158 | if (!tmp || tmp->start > end) { | 
|  | 159 | new->sibling = tmp; | 
|  | 160 | *p = new; | 
|  | 161 | new->parent = root; | 
|  | 162 | return NULL; | 
|  | 163 | } | 
|  | 164 | p = &tmp->sibling; | 
|  | 165 | if (tmp->end < start) | 
|  | 166 | continue; | 
|  | 167 | return tmp; | 
|  | 168 | } | 
|  | 169 | } | 
|  | 170 |  | 
|  | 171 | static int __release_resource(struct resource *old) | 
|  | 172 | { | 
|  | 173 | struct resource *tmp, **p; | 
|  | 174 |  | 
|  | 175 | p = &old->parent->child; | 
|  | 176 | for (;;) { | 
|  | 177 | tmp = *p; | 
|  | 178 | if (!tmp) | 
|  | 179 | break; | 
|  | 180 | if (tmp == old) { | 
|  | 181 | *p = tmp->sibling; | 
|  | 182 | old->parent = NULL; | 
|  | 183 | return 0; | 
|  | 184 | } | 
|  | 185 | p = &tmp->sibling; | 
|  | 186 | } | 
|  | 187 | return -EINVAL; | 
|  | 188 | } | 
|  | 189 |  | 
| Randy Dunlap | e1ca66d | 2006-10-03 01:13:51 -0700 | [diff] [blame] | 190 | /** | 
|  | 191 | * request_resource - request and reserve an I/O or memory resource | 
|  | 192 | * @root: root resource descriptor | 
|  | 193 | * @new: resource descriptor desired by caller | 
|  | 194 | * | 
|  | 195 | * Returns 0 for success, negative error code on error. | 
|  | 196 | */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 197 | int request_resource(struct resource *root, struct resource *new) | 
|  | 198 | { | 
|  | 199 | struct resource *conflict; | 
|  | 200 |  | 
|  | 201 | write_lock(&resource_lock); | 
|  | 202 | conflict = __request_resource(root, new); | 
|  | 203 | write_unlock(&resource_lock); | 
|  | 204 | return conflict ? -EBUSY : 0; | 
|  | 205 | } | 
|  | 206 |  | 
|  | 207 | EXPORT_SYMBOL(request_resource); | 
|  | 208 |  | 
| Randy Dunlap | e1ca66d | 2006-10-03 01:13:51 -0700 | [diff] [blame] | 209 | /** | 
| Randy Dunlap | e1ca66d | 2006-10-03 01:13:51 -0700 | [diff] [blame] | 210 | * release_resource - release a previously reserved resource | 
|  | 211 | * @old: resource pointer | 
|  | 212 | */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 213 | int release_resource(struct resource *old) | 
|  | 214 | { | 
|  | 215 | int retval; | 
|  | 216 |  | 
|  | 217 | write_lock(&resource_lock); | 
|  | 218 | retval = __release_resource(old); | 
|  | 219 | write_unlock(&resource_lock); | 
|  | 220 | return retval; | 
|  | 221 | } | 
|  | 222 |  | 
|  | 223 | EXPORT_SYMBOL(release_resource); | 
|  | 224 |  | 
| Badari Pulavarty | a99824f | 2008-02-05 00:10:18 -0800 | [diff] [blame] | 225 | #if defined(CONFIG_MEMORY_HOTPLUG) && !defined(CONFIG_ARCH_HAS_WALK_MEMORY) | 
| KAMEZAWA Hiroyuki | 2842f11 | 2006-06-27 02:53:36 -0700 | [diff] [blame] | 226 | /* | 
|  | 227 | * Finds the lowest memory reosurce exists within [res->start.res->end) | 
|  | 228 | * the caller must specify res->start, res->end, res->flags. | 
|  | 229 | * If found, returns 0, res is overwritten, if not found, returns -1. | 
|  | 230 | */ | 
| KAMEZAWA Hiroyuki | 75884fb | 2007-10-16 01:26:10 -0700 | [diff] [blame] | 231 | static int find_next_system_ram(struct resource *res) | 
| KAMEZAWA Hiroyuki | 2842f11 | 2006-06-27 02:53:36 -0700 | [diff] [blame] | 232 | { | 
|  | 233 | resource_size_t start, end; | 
|  | 234 | struct resource *p; | 
|  | 235 |  | 
|  | 236 | BUG_ON(!res); | 
|  | 237 |  | 
|  | 238 | start = res->start; | 
|  | 239 | end = res->end; | 
| KAMEZAWA Hiroyuki | 58c1b5b | 2006-08-05 12:15:01 -0700 | [diff] [blame] | 240 | BUG_ON(start >= end); | 
| KAMEZAWA Hiroyuki | 2842f11 | 2006-06-27 02:53:36 -0700 | [diff] [blame] | 241 |  | 
|  | 242 | read_lock(&resource_lock); | 
|  | 243 | for (p = iomem_resource.child; p ; p = p->sibling) { | 
|  | 244 | /* system ram is just marked as IORESOURCE_MEM */ | 
|  | 245 | if (p->flags != res->flags) | 
|  | 246 | continue; | 
|  | 247 | if (p->start > end) { | 
|  | 248 | p = NULL; | 
|  | 249 | break; | 
|  | 250 | } | 
| KAMEZAWA Hiroyuki | 58c1b5b | 2006-08-05 12:15:01 -0700 | [diff] [blame] | 251 | if ((p->end >= start) && (p->start < end)) | 
| KAMEZAWA Hiroyuki | 2842f11 | 2006-06-27 02:53:36 -0700 | [diff] [blame] | 252 | break; | 
|  | 253 | } | 
|  | 254 | read_unlock(&resource_lock); | 
|  | 255 | if (!p) | 
|  | 256 | return -1; | 
|  | 257 | /* copy data */ | 
| KAMEZAWA Hiroyuki | 0f04ab5 | 2006-08-05 12:14:59 -0700 | [diff] [blame] | 258 | if (res->start < p->start) | 
|  | 259 | res->start = p->start; | 
|  | 260 | if (res->end > p->end) | 
|  | 261 | res->end = p->end; | 
| KAMEZAWA Hiroyuki | 2842f11 | 2006-06-27 02:53:36 -0700 | [diff] [blame] | 262 | return 0; | 
|  | 263 | } | 
| KAMEZAWA Hiroyuki | 75884fb | 2007-10-16 01:26:10 -0700 | [diff] [blame] | 264 | int | 
|  | 265 | walk_memory_resource(unsigned long start_pfn, unsigned long nr_pages, void *arg, | 
|  | 266 | int (*func)(unsigned long, unsigned long, void *)) | 
|  | 267 | { | 
|  | 268 | struct resource res; | 
|  | 269 | unsigned long pfn, len; | 
|  | 270 | u64 orig_end; | 
|  | 271 | int ret = -1; | 
|  | 272 | res.start = (u64) start_pfn << PAGE_SHIFT; | 
|  | 273 | res.end = ((u64)(start_pfn + nr_pages) << PAGE_SHIFT) - 1; | 
| Yasunori Goto | 887c3cb | 2007-11-14 16:59:20 -0800 | [diff] [blame] | 274 | res.flags = IORESOURCE_MEM | IORESOURCE_BUSY; | 
| KAMEZAWA Hiroyuki | 75884fb | 2007-10-16 01:26:10 -0700 | [diff] [blame] | 275 | orig_end = res.end; | 
|  | 276 | while ((res.start < res.end) && (find_next_system_ram(&res) >= 0)) { | 
|  | 277 | pfn = (unsigned long)(res.start >> PAGE_SHIFT); | 
|  | 278 | len = (unsigned long)((res.end + 1 - res.start) >> PAGE_SHIFT); | 
|  | 279 | ret = (*func)(pfn, len, arg); | 
|  | 280 | if (ret) | 
|  | 281 | break; | 
|  | 282 | res.start = res.end + 1; | 
|  | 283 | res.end = orig_end; | 
|  | 284 | } | 
|  | 285 | return ret; | 
|  | 286 | } | 
|  | 287 |  | 
| KAMEZAWA Hiroyuki | 2842f11 | 2006-06-27 02:53:36 -0700 | [diff] [blame] | 288 | #endif | 
|  | 289 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 290 | /* | 
|  | 291 | * Find empty slot in the resource tree given range and alignment. | 
|  | 292 | */ | 
|  | 293 | static int find_resource(struct resource *root, struct resource *new, | 
| Greg Kroah-Hartman | d75fc8b | 2006-06-12 16:09:23 -0700 | [diff] [blame] | 294 | resource_size_t size, resource_size_t min, | 
|  | 295 | resource_size_t max, resource_size_t align, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 296 | void (*alignf)(void *, struct resource *, | 
| Greg Kroah-Hartman | d75fc8b | 2006-06-12 16:09:23 -0700 | [diff] [blame] | 297 | resource_size_t, resource_size_t), | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 298 | void *alignf_data) | 
|  | 299 | { | 
|  | 300 | struct resource *this = root->child; | 
|  | 301 |  | 
|  | 302 | new->start = root->start; | 
|  | 303 | /* | 
|  | 304 | * Skip past an allocated resource that starts at 0, since the assignment | 
|  | 305 | * of this->start - 1 to new->end below would cause an underflow. | 
|  | 306 | */ | 
|  | 307 | if (this && this->start == 0) { | 
|  | 308 | new->start = this->end + 1; | 
|  | 309 | this = this->sibling; | 
|  | 310 | } | 
|  | 311 | for(;;) { | 
|  | 312 | if (this) | 
|  | 313 | new->end = this->start - 1; | 
|  | 314 | else | 
|  | 315 | new->end = root->end; | 
|  | 316 | if (new->start < min) | 
|  | 317 | new->start = min; | 
|  | 318 | if (new->end > max) | 
|  | 319 | new->end = max; | 
| Nick Wilson | 8c0e33c | 2005-06-25 14:59:00 -0700 | [diff] [blame] | 320 | new->start = ALIGN(new->start, align); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 321 | if (alignf) | 
|  | 322 | alignf(alignf_data, new, size, align); | 
| Lennert Buytenhek | b52402c | 2005-04-16 15:25:58 -0700 | [diff] [blame] | 323 | if (new->start < new->end && new->end - new->start >= size - 1) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 324 | new->end = new->start + size - 1; | 
|  | 325 | return 0; | 
|  | 326 | } | 
|  | 327 | if (!this) | 
|  | 328 | break; | 
|  | 329 | new->start = this->end + 1; | 
|  | 330 | this = this->sibling; | 
|  | 331 | } | 
|  | 332 | return -EBUSY; | 
|  | 333 | } | 
|  | 334 |  | 
| Randy Dunlap | e1ca66d | 2006-10-03 01:13:51 -0700 | [diff] [blame] | 335 | /** | 
|  | 336 | * allocate_resource - allocate empty slot in the resource tree given range & alignment | 
|  | 337 | * @root: root resource descriptor | 
|  | 338 | * @new: resource descriptor desired by caller | 
|  | 339 | * @size: requested resource region size | 
|  | 340 | * @min: minimum size to allocate | 
|  | 341 | * @max: maximum size to allocate | 
|  | 342 | * @align: alignment requested, in bytes | 
|  | 343 | * @alignf: alignment function, optional, called if not NULL | 
|  | 344 | * @alignf_data: arbitrary data to pass to the @alignf function | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 345 | */ | 
|  | 346 | int allocate_resource(struct resource *root, struct resource *new, | 
| Greg Kroah-Hartman | d75fc8b | 2006-06-12 16:09:23 -0700 | [diff] [blame] | 347 | resource_size_t size, resource_size_t min, | 
|  | 348 | resource_size_t max, resource_size_t align, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 349 | void (*alignf)(void *, struct resource *, | 
| Greg Kroah-Hartman | d75fc8b | 2006-06-12 16:09:23 -0700 | [diff] [blame] | 350 | resource_size_t, resource_size_t), | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 351 | void *alignf_data) | 
|  | 352 | { | 
|  | 353 | int err; | 
|  | 354 |  | 
|  | 355 | write_lock(&resource_lock); | 
|  | 356 | err = find_resource(root, new, size, min, max, align, alignf, alignf_data); | 
|  | 357 | if (err >= 0 && __request_resource(root, new)) | 
|  | 358 | err = -EBUSY; | 
|  | 359 | write_unlock(&resource_lock); | 
|  | 360 | return err; | 
|  | 361 | } | 
|  | 362 |  | 
|  | 363 | EXPORT_SYMBOL(allocate_resource); | 
|  | 364 |  | 
| Linus Torvalds | bef69ea | 2008-08-29 20:18:31 -0700 | [diff] [blame] | 365 | /* | 
|  | 366 | * Insert a resource into the resource tree. If successful, return NULL, | 
|  | 367 | * otherwise return the conflicting resource (compare to __request_resource()) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 368 | */ | 
| Linus Torvalds | bef69ea | 2008-08-29 20:18:31 -0700 | [diff] [blame] | 369 | static struct resource * __insert_resource(struct resource *parent, struct resource *new) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 370 | { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 371 | struct resource *first, *next; | 
|  | 372 |  | 
| Matthew Wilcox | d33b6fb | 2006-06-30 02:31:24 -0700 | [diff] [blame] | 373 | for (;; parent = first) { | 
| Matthew Wilcox | d33b6fb | 2006-06-30 02:31:24 -0700 | [diff] [blame] | 374 | first = __request_resource(parent, new); | 
|  | 375 | if (!first) | 
| Linus Torvalds | bef69ea | 2008-08-29 20:18:31 -0700 | [diff] [blame] | 376 | return first; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 377 |  | 
| Matthew Wilcox | d33b6fb | 2006-06-30 02:31:24 -0700 | [diff] [blame] | 378 | if (first == parent) | 
| Linus Torvalds | bef69ea | 2008-08-29 20:18:31 -0700 | [diff] [blame] | 379 | return first; | 
| Matthew Wilcox | d33b6fb | 2006-06-30 02:31:24 -0700 | [diff] [blame] | 380 |  | 
|  | 381 | if ((first->start > new->start) || (first->end < new->end)) | 
|  | 382 | break; | 
|  | 383 | if ((first->start == new->start) && (first->end == new->end)) | 
|  | 384 | break; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 385 | } | 
|  | 386 |  | 
|  | 387 | for (next = first; ; next = next->sibling) { | 
|  | 388 | /* Partial overlap? Bad, and unfixable */ | 
|  | 389 | if (next->start < new->start || next->end > new->end) | 
| Linus Torvalds | bef69ea | 2008-08-29 20:18:31 -0700 | [diff] [blame] | 390 | return next; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 391 | if (!next->sibling) | 
|  | 392 | break; | 
|  | 393 | if (next->sibling->start > new->end) | 
|  | 394 | break; | 
|  | 395 | } | 
|  | 396 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 397 | new->parent = parent; | 
|  | 398 | new->sibling = next->sibling; | 
|  | 399 | new->child = first; | 
|  | 400 |  | 
|  | 401 | next->sibling = NULL; | 
|  | 402 | for (next = first; next; next = next->sibling) | 
|  | 403 | next->parent = new; | 
|  | 404 |  | 
|  | 405 | if (parent->child == first) { | 
|  | 406 | parent->child = new; | 
|  | 407 | } else { | 
|  | 408 | next = parent->child; | 
|  | 409 | while (next->sibling != first) | 
|  | 410 | next = next->sibling; | 
|  | 411 | next->sibling = new; | 
|  | 412 | } | 
| Linus Torvalds | bef69ea | 2008-08-29 20:18:31 -0700 | [diff] [blame] | 413 | return NULL; | 
|  | 414 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 415 |  | 
| Linus Torvalds | bef69ea | 2008-08-29 20:18:31 -0700 | [diff] [blame] | 416 | /** | 
|  | 417 | * insert_resource - Inserts a resource in the resource tree | 
|  | 418 | * @parent: parent of the new resource | 
|  | 419 | * @new: new resource to insert | 
|  | 420 | * | 
|  | 421 | * Returns 0 on success, -EBUSY if the resource can't be inserted. | 
|  | 422 | * | 
|  | 423 | * This function is equivalent to request_resource when no conflict | 
|  | 424 | * happens. If a conflict happens, and the conflicting resources | 
|  | 425 | * entirely fit within the range of the new resource, then the new | 
|  | 426 | * resource is inserted and the conflicting resources become children of | 
|  | 427 | * the new resource. | 
|  | 428 | */ | 
|  | 429 | int insert_resource(struct resource *parent, struct resource *new) | 
|  | 430 | { | 
|  | 431 | struct resource *conflict; | 
|  | 432 |  | 
|  | 433 | write_lock(&resource_lock); | 
|  | 434 | conflict = __insert_resource(parent, new); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 435 | write_unlock(&resource_lock); | 
| Linus Torvalds | bef69ea | 2008-08-29 20:18:31 -0700 | [diff] [blame] | 436 | return conflict ? -EBUSY : 0; | 
|  | 437 | } | 
|  | 438 |  | 
|  | 439 | /** | 
|  | 440 | * insert_resource_expand_to_fit - Insert a resource into the resource tree | 
| Randy Dunlap | 6781f4a | 2008-08-31 20:31:55 -0700 | [diff] [blame] | 441 | * @root: root resource descriptor | 
| Linus Torvalds | bef69ea | 2008-08-29 20:18:31 -0700 | [diff] [blame] | 442 | * @new: new resource to insert | 
|  | 443 | * | 
|  | 444 | * Insert a resource into the resource tree, possibly expanding it in order | 
|  | 445 | * to make it encompass any conflicting resources. | 
|  | 446 | */ | 
|  | 447 | void insert_resource_expand_to_fit(struct resource *root, struct resource *new) | 
|  | 448 | { | 
|  | 449 | if (new->parent) | 
|  | 450 | return; | 
|  | 451 |  | 
|  | 452 | write_lock(&resource_lock); | 
|  | 453 | for (;;) { | 
|  | 454 | struct resource *conflict; | 
|  | 455 |  | 
|  | 456 | conflict = __insert_resource(root, new); | 
|  | 457 | if (!conflict) | 
|  | 458 | break; | 
|  | 459 | if (conflict == root) | 
|  | 460 | break; | 
|  | 461 |  | 
|  | 462 | /* Ok, expand resource to cover the conflict, then try again .. */ | 
|  | 463 | if (conflict->start < new->start) | 
|  | 464 | new->start = conflict->start; | 
|  | 465 | if (conflict->end > new->end) | 
|  | 466 | new->end = conflict->end; | 
|  | 467 |  | 
|  | 468 | printk("Expanded resource %s due to conflict with %s\n", new->name, conflict->name); | 
|  | 469 | } | 
|  | 470 | write_unlock(&resource_lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 471 | } | 
|  | 472 |  | 
| Randy Dunlap | e1ca66d | 2006-10-03 01:13:51 -0700 | [diff] [blame] | 473 | /** | 
|  | 474 | * adjust_resource - modify a resource's start and size | 
|  | 475 | * @res: resource to modify | 
|  | 476 | * @start: new start value | 
|  | 477 | * @size: new size | 
|  | 478 | * | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 479 | * Given an existing resource, change its start and size to match the | 
| Randy Dunlap | e1ca66d | 2006-10-03 01:13:51 -0700 | [diff] [blame] | 480 | * arguments.  Returns 0 on success, -EBUSY if it can't fit. | 
|  | 481 | * Existing children of the resource are assumed to be immutable. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 482 | */ | 
| Greg Kroah-Hartman | d75fc8b | 2006-06-12 16:09:23 -0700 | [diff] [blame] | 483 | int adjust_resource(struct resource *res, resource_size_t start, resource_size_t size) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 484 | { | 
|  | 485 | struct resource *tmp, *parent = res->parent; | 
| Greg Kroah-Hartman | d75fc8b | 2006-06-12 16:09:23 -0700 | [diff] [blame] | 486 | resource_size_t end = start + size - 1; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 487 | int result = -EBUSY; | 
|  | 488 |  | 
|  | 489 | write_lock(&resource_lock); | 
|  | 490 |  | 
|  | 491 | if ((start < parent->start) || (end > parent->end)) | 
|  | 492 | goto out; | 
|  | 493 |  | 
|  | 494 | for (tmp = res->child; tmp; tmp = tmp->sibling) { | 
|  | 495 | if ((tmp->start < start) || (tmp->end > end)) | 
|  | 496 | goto out; | 
|  | 497 | } | 
|  | 498 |  | 
|  | 499 | if (res->sibling && (res->sibling->start <= end)) | 
|  | 500 | goto out; | 
|  | 501 |  | 
|  | 502 | tmp = parent->child; | 
|  | 503 | if (tmp != res) { | 
|  | 504 | while (tmp->sibling != res) | 
|  | 505 | tmp = tmp->sibling; | 
|  | 506 | if (start <= tmp->end) | 
|  | 507 | goto out; | 
|  | 508 | } | 
|  | 509 |  | 
|  | 510 | res->start = start; | 
|  | 511 | res->end = end; | 
|  | 512 | result = 0; | 
|  | 513 |  | 
|  | 514 | out: | 
|  | 515 | write_unlock(&resource_lock); | 
|  | 516 | return result; | 
|  | 517 | } | 
|  | 518 |  | 
| Yinghai Lu | 268364a | 2008-09-04 21:02:44 +0200 | [diff] [blame] | 519 | static void __init __reserve_region_with_split(struct resource *root, | 
|  | 520 | resource_size_t start, resource_size_t end, | 
|  | 521 | const char *name) | 
|  | 522 | { | 
|  | 523 | struct resource *parent = root; | 
|  | 524 | struct resource *conflict; | 
|  | 525 | struct resource *res = kzalloc(sizeof(*res), GFP_KERNEL); | 
|  | 526 |  | 
|  | 527 | if (!res) | 
|  | 528 | return; | 
|  | 529 |  | 
|  | 530 | res->name = name; | 
|  | 531 | res->start = start; | 
|  | 532 | res->end = end; | 
|  | 533 | res->flags = IORESOURCE_BUSY; | 
|  | 534 |  | 
|  | 535 | for (;;) { | 
|  | 536 | conflict = __request_resource(parent, res); | 
|  | 537 | if (!conflict) | 
|  | 538 | break; | 
|  | 539 | if (conflict != parent) { | 
|  | 540 | parent = conflict; | 
|  | 541 | if (!(conflict->flags & IORESOURCE_BUSY)) | 
|  | 542 | continue; | 
|  | 543 | } | 
|  | 544 |  | 
|  | 545 | /* Uhhuh, that didn't work out.. */ | 
|  | 546 | kfree(res); | 
|  | 547 | res = NULL; | 
|  | 548 | break; | 
|  | 549 | } | 
|  | 550 |  | 
|  | 551 | if (!res) { | 
| Yinghai Lu | 268364a | 2008-09-04 21:02:44 +0200 | [diff] [blame] | 552 | /* failed, split and try again */ | 
|  | 553 |  | 
| Ingo Molnar | 1cf44ba | 2008-09-04 21:26:06 +0200 | [diff] [blame] | 554 | /* conflict covered whole area */ | 
| Yinghai Lu | 268364a | 2008-09-04 21:02:44 +0200 | [diff] [blame] | 555 | if (conflict->start <= start && conflict->end >= end) | 
|  | 556 | return; | 
|  | 557 |  | 
|  | 558 | if (conflict->start > start) | 
|  | 559 | __reserve_region_with_split(root, start, conflict->start-1, name); | 
|  | 560 | if (!(conflict->flags & IORESOURCE_BUSY)) { | 
|  | 561 | resource_size_t common_start, common_end; | 
|  | 562 |  | 
|  | 563 | common_start = max(conflict->start, start); | 
|  | 564 | common_end = min(conflict->end, end); | 
|  | 565 | if (common_start < common_end) | 
|  | 566 | __reserve_region_with_split(root, common_start, common_end, name); | 
|  | 567 | } | 
|  | 568 | if (conflict->end < end) | 
|  | 569 | __reserve_region_with_split(root, conflict->end+1, end, name); | 
|  | 570 | } | 
|  | 571 |  | 
|  | 572 | } | 
|  | 573 |  | 
|  | 574 | void reserve_region_with_split(struct resource *root, | 
|  | 575 | resource_size_t start, resource_size_t end, | 
|  | 576 | const char *name) | 
|  | 577 | { | 
|  | 578 | write_lock(&resource_lock); | 
|  | 579 | __reserve_region_with_split(root, start, end, name); | 
|  | 580 | write_unlock(&resource_lock); | 
|  | 581 | } | 
|  | 582 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 583 | EXPORT_SYMBOL(adjust_resource); | 
|  | 584 |  | 
| Ivan Kokshaysky | 8845256 | 2008-03-30 19:50:14 +0400 | [diff] [blame] | 585 | /** | 
|  | 586 | * resource_alignment - calculate resource's alignment | 
|  | 587 | * @res: resource pointer | 
|  | 588 | * | 
|  | 589 | * Returns alignment on success, 0 (invalid alignment) on failure. | 
|  | 590 | */ | 
|  | 591 | resource_size_t resource_alignment(struct resource *res) | 
|  | 592 | { | 
|  | 593 | switch (res->flags & (IORESOURCE_SIZEALIGN | IORESOURCE_STARTALIGN)) { | 
|  | 594 | case IORESOURCE_SIZEALIGN: | 
| Magnus Damm | 1a4e564 | 2008-07-29 22:32:57 -0700 | [diff] [blame] | 595 | return resource_size(res); | 
| Ivan Kokshaysky | 8845256 | 2008-03-30 19:50:14 +0400 | [diff] [blame] | 596 | case IORESOURCE_STARTALIGN: | 
|  | 597 | return res->start; | 
|  | 598 | default: | 
|  | 599 | return 0; | 
|  | 600 | } | 
|  | 601 | } | 
|  | 602 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 603 | /* | 
|  | 604 | * This is compatibility stuff for IO resources. | 
|  | 605 | * | 
|  | 606 | * Note how this, unlike the above, knows about | 
|  | 607 | * the IO flag meanings (busy etc). | 
|  | 608 | * | 
| Randy Dunlap | e1ca66d | 2006-10-03 01:13:51 -0700 | [diff] [blame] | 609 | * request_region creates a new busy region. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 610 | * | 
| Randy Dunlap | e1ca66d | 2006-10-03 01:13:51 -0700 | [diff] [blame] | 611 | * check_region returns non-zero if the area is already busy. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 612 | * | 
| Randy Dunlap | e1ca66d | 2006-10-03 01:13:51 -0700 | [diff] [blame] | 613 | * release_region releases a matching busy region. | 
|  | 614 | */ | 
|  | 615 |  | 
|  | 616 | /** | 
|  | 617 | * __request_region - create a new busy resource region | 
|  | 618 | * @parent: parent resource descriptor | 
|  | 619 | * @start: resource start address | 
|  | 620 | * @n: resource region size | 
|  | 621 | * @name: reserving caller's ID string | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 622 | */ | 
| Greg Kroah-Hartman | d75fc8b | 2006-06-12 16:09:23 -0700 | [diff] [blame] | 623 | struct resource * __request_region(struct resource *parent, | 
|  | 624 | resource_size_t start, resource_size_t n, | 
|  | 625 | const char *name) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 626 | { | 
| Pekka J Enberg | dd39271 | 2005-09-06 15:18:31 -0700 | [diff] [blame] | 627 | struct resource *res = kzalloc(sizeof(*res), GFP_KERNEL); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 628 |  | 
| Bjorn Helgaas | c26ec88 | 2008-10-15 22:05:14 -0700 | [diff] [blame] | 629 | if (!res) | 
|  | 630 | return NULL; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 631 |  | 
| Bjorn Helgaas | c26ec88 | 2008-10-15 22:05:14 -0700 | [diff] [blame] | 632 | res->name = name; | 
|  | 633 | res->start = start; | 
|  | 634 | res->end = start + n - 1; | 
|  | 635 | res->flags = IORESOURCE_BUSY; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 636 |  | 
| Bjorn Helgaas | c26ec88 | 2008-10-15 22:05:14 -0700 | [diff] [blame] | 637 | write_lock(&resource_lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 638 |  | 
| Bjorn Helgaas | c26ec88 | 2008-10-15 22:05:14 -0700 | [diff] [blame] | 639 | for (;;) { | 
|  | 640 | struct resource *conflict; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 641 |  | 
| Bjorn Helgaas | c26ec88 | 2008-10-15 22:05:14 -0700 | [diff] [blame] | 642 | conflict = __request_resource(parent, res); | 
|  | 643 | if (!conflict) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 644 | break; | 
| Bjorn Helgaas | c26ec88 | 2008-10-15 22:05:14 -0700 | [diff] [blame] | 645 | if (conflict != parent) { | 
|  | 646 | parent = conflict; | 
|  | 647 | if (!(conflict->flags & IORESOURCE_BUSY)) | 
|  | 648 | continue; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 649 | } | 
| Bjorn Helgaas | c26ec88 | 2008-10-15 22:05:14 -0700 | [diff] [blame] | 650 |  | 
|  | 651 | /* Uhhuh, that didn't work out.. */ | 
|  | 652 | kfree(res); | 
|  | 653 | res = NULL; | 
|  | 654 | break; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 655 | } | 
| Bjorn Helgaas | c26ec88 | 2008-10-15 22:05:14 -0700 | [diff] [blame] | 656 | write_unlock(&resource_lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 657 | return res; | 
|  | 658 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 659 | EXPORT_SYMBOL(__request_region); | 
|  | 660 |  | 
| Randy Dunlap | e1ca66d | 2006-10-03 01:13:51 -0700 | [diff] [blame] | 661 | /** | 
|  | 662 | * __check_region - check if a resource region is busy or free | 
|  | 663 | * @parent: parent resource descriptor | 
|  | 664 | * @start: resource start address | 
|  | 665 | * @n: resource region size | 
|  | 666 | * | 
|  | 667 | * Returns 0 if the region is free at the moment it is checked, | 
|  | 668 | * returns %-EBUSY if the region is busy. | 
|  | 669 | * | 
|  | 670 | * NOTE: | 
|  | 671 | * This function is deprecated because its use is racy. | 
|  | 672 | * Even if it returns 0, a subsequent call to request_region() | 
|  | 673 | * may fail because another driver etc. just allocated the region. | 
|  | 674 | * Do NOT use it.  It will be removed from the kernel. | 
|  | 675 | */ | 
| Greg Kroah-Hartman | d75fc8b | 2006-06-12 16:09:23 -0700 | [diff] [blame] | 676 | int __check_region(struct resource *parent, resource_size_t start, | 
|  | 677 | resource_size_t n) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 678 | { | 
|  | 679 | struct resource * res; | 
|  | 680 |  | 
|  | 681 | res = __request_region(parent, start, n, "check-region"); | 
|  | 682 | if (!res) | 
|  | 683 | return -EBUSY; | 
|  | 684 |  | 
|  | 685 | release_resource(res); | 
|  | 686 | kfree(res); | 
|  | 687 | return 0; | 
|  | 688 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 689 | EXPORT_SYMBOL(__check_region); | 
|  | 690 |  | 
| Randy Dunlap | e1ca66d | 2006-10-03 01:13:51 -0700 | [diff] [blame] | 691 | /** | 
|  | 692 | * __release_region - release a previously reserved resource region | 
|  | 693 | * @parent: parent resource descriptor | 
|  | 694 | * @start: resource start address | 
|  | 695 | * @n: resource region size | 
|  | 696 | * | 
|  | 697 | * The described resource region must match a currently busy region. | 
|  | 698 | */ | 
| Greg Kroah-Hartman | d75fc8b | 2006-06-12 16:09:23 -0700 | [diff] [blame] | 699 | void __release_region(struct resource *parent, resource_size_t start, | 
|  | 700 | resource_size_t n) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 701 | { | 
|  | 702 | struct resource **p; | 
| Greg Kroah-Hartman | d75fc8b | 2006-06-12 16:09:23 -0700 | [diff] [blame] | 703 | resource_size_t end; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 704 |  | 
|  | 705 | p = &parent->child; | 
|  | 706 | end = start + n - 1; | 
|  | 707 |  | 
|  | 708 | write_lock(&resource_lock); | 
|  | 709 |  | 
|  | 710 | for (;;) { | 
|  | 711 | struct resource *res = *p; | 
|  | 712 |  | 
|  | 713 | if (!res) | 
|  | 714 | break; | 
|  | 715 | if (res->start <= start && res->end >= end) { | 
|  | 716 | if (!(res->flags & IORESOURCE_BUSY)) { | 
|  | 717 | p = &res->child; | 
|  | 718 | continue; | 
|  | 719 | } | 
|  | 720 | if (res->start != start || res->end != end) | 
|  | 721 | break; | 
|  | 722 | *p = res->sibling; | 
|  | 723 | write_unlock(&resource_lock); | 
|  | 724 | kfree(res); | 
|  | 725 | return; | 
|  | 726 | } | 
|  | 727 | p = &res->sibling; | 
|  | 728 | } | 
|  | 729 |  | 
|  | 730 | write_unlock(&resource_lock); | 
|  | 731 |  | 
| Greg Kroah-Hartman | 685143a | 2006-06-12 15:18:31 -0700 | [diff] [blame] | 732 | printk(KERN_WARNING "Trying to free nonexistent resource " | 
|  | 733 | "<%016llx-%016llx>\n", (unsigned long long)start, | 
|  | 734 | (unsigned long long)end); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 735 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 736 | EXPORT_SYMBOL(__release_region); | 
|  | 737 |  | 
|  | 738 | /* | 
| Tejun Heo | 9ac7849 | 2007-01-20 16:00:26 +0900 | [diff] [blame] | 739 | * Managed region resource | 
|  | 740 | */ | 
|  | 741 | struct region_devres { | 
|  | 742 | struct resource *parent; | 
|  | 743 | resource_size_t start; | 
|  | 744 | resource_size_t n; | 
|  | 745 | }; | 
|  | 746 |  | 
|  | 747 | static void devm_region_release(struct device *dev, void *res) | 
|  | 748 | { | 
|  | 749 | struct region_devres *this = res; | 
|  | 750 |  | 
|  | 751 | __release_region(this->parent, this->start, this->n); | 
|  | 752 | } | 
|  | 753 |  | 
|  | 754 | static int devm_region_match(struct device *dev, void *res, void *match_data) | 
|  | 755 | { | 
|  | 756 | struct region_devres *this = res, *match = match_data; | 
|  | 757 |  | 
|  | 758 | return this->parent == match->parent && | 
|  | 759 | this->start == match->start && this->n == match->n; | 
|  | 760 | } | 
|  | 761 |  | 
|  | 762 | struct resource * __devm_request_region(struct device *dev, | 
|  | 763 | struct resource *parent, resource_size_t start, | 
|  | 764 | resource_size_t n, const char *name) | 
|  | 765 | { | 
|  | 766 | struct region_devres *dr = NULL; | 
|  | 767 | struct resource *res; | 
|  | 768 |  | 
|  | 769 | dr = devres_alloc(devm_region_release, sizeof(struct region_devres), | 
|  | 770 | GFP_KERNEL); | 
|  | 771 | if (!dr) | 
|  | 772 | return NULL; | 
|  | 773 |  | 
|  | 774 | dr->parent = parent; | 
|  | 775 | dr->start = start; | 
|  | 776 | dr->n = n; | 
|  | 777 |  | 
|  | 778 | res = __request_region(parent, start, n, name); | 
|  | 779 | if (res) | 
|  | 780 | devres_add(dev, dr); | 
|  | 781 | else | 
|  | 782 | devres_free(dr); | 
|  | 783 |  | 
|  | 784 | return res; | 
|  | 785 | } | 
|  | 786 | EXPORT_SYMBOL(__devm_request_region); | 
|  | 787 |  | 
|  | 788 | void __devm_release_region(struct device *dev, struct resource *parent, | 
|  | 789 | resource_size_t start, resource_size_t n) | 
|  | 790 | { | 
|  | 791 | struct region_devres match_data = { parent, start, n }; | 
|  | 792 |  | 
|  | 793 | __release_region(parent, start, n); | 
|  | 794 | WARN_ON(devres_destroy(dev, devm_region_release, devm_region_match, | 
|  | 795 | &match_data)); | 
|  | 796 | } | 
|  | 797 | EXPORT_SYMBOL(__devm_release_region); | 
|  | 798 |  | 
|  | 799 | /* | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 800 | * Called from init/main.c to reserve IO ports. | 
|  | 801 | */ | 
|  | 802 | #define MAXRESERVE 4 | 
|  | 803 | static int __init reserve_setup(char *str) | 
|  | 804 | { | 
|  | 805 | static int reserved; | 
|  | 806 | static struct resource reserve[MAXRESERVE]; | 
|  | 807 |  | 
|  | 808 | for (;;) { | 
|  | 809 | int io_start, io_num; | 
|  | 810 | int x = reserved; | 
|  | 811 |  | 
|  | 812 | if (get_option (&str, &io_start) != 2) | 
|  | 813 | break; | 
|  | 814 | if (get_option (&str, &io_num)   == 0) | 
|  | 815 | break; | 
|  | 816 | if (x < MAXRESERVE) { | 
|  | 817 | struct resource *res = reserve + x; | 
|  | 818 | res->name = "reserved"; | 
|  | 819 | res->start = io_start; | 
|  | 820 | res->end = io_start + io_num - 1; | 
|  | 821 | res->flags = IORESOURCE_BUSY; | 
|  | 822 | res->child = NULL; | 
|  | 823 | if (request_resource(res->start >= 0x10000 ? &iomem_resource : &ioport_resource, res) == 0) | 
|  | 824 | reserved = x+1; | 
|  | 825 | } | 
|  | 826 | } | 
|  | 827 | return 1; | 
|  | 828 | } | 
|  | 829 |  | 
|  | 830 | __setup("reserve=", reserve_setup); | 
| Suresh Siddha | 379daf6 | 2008-09-25 18:43:34 -0700 | [diff] [blame] | 831 |  | 
|  | 832 | /* | 
|  | 833 | * Check if the requested addr and size spans more than any slot in the | 
|  | 834 | * iomem resource tree. | 
|  | 835 | */ | 
|  | 836 | int iomem_map_sanity_check(resource_size_t addr, unsigned long size) | 
|  | 837 | { | 
|  | 838 | struct resource *p = &iomem_resource; | 
|  | 839 | int err = 0; | 
|  | 840 | loff_t l; | 
|  | 841 |  | 
|  | 842 | read_lock(&resource_lock); | 
|  | 843 | for (p = p->child; p ; p = r_next(NULL, p, &l)) { | 
|  | 844 | /* | 
|  | 845 | * We can probably skip the resources without | 
|  | 846 | * IORESOURCE_IO attribute? | 
|  | 847 | */ | 
|  | 848 | if (p->start >= addr + size) | 
|  | 849 | continue; | 
|  | 850 | if (p->end < addr) | 
|  | 851 | continue; | 
|  | 852 | if (p->start <= addr && (p->end >= addr + size - 1)) | 
|  | 853 | continue; | 
|  | 854 | printk(KERN_WARNING "resource map sanity check conflict: " | 
|  | 855 | "0x%llx 0x%llx 0x%llx 0x%llx %s\n", | 
| Ingo Molnar | 13eb837 | 2008-09-26 10:10:12 +0200 | [diff] [blame] | 856 | (unsigned long long)addr, | 
|  | 857 | (unsigned long long)(addr + size - 1), | 
|  | 858 | (unsigned long long)p->start, | 
|  | 859 | (unsigned long long)p->end, | 
|  | 860 | p->name); | 
| Suresh Siddha | 379daf6 | 2008-09-25 18:43:34 -0700 | [diff] [blame] | 861 | err = -1; | 
|  | 862 | break; | 
|  | 863 | } | 
|  | 864 | read_unlock(&resource_lock); | 
|  | 865 |  | 
|  | 866 | return err; | 
|  | 867 | } |