]>
Commit | Line | Data |
---|---|---|
1da177e4 LT |
1 | /* |
2 | * linux/kernel/resource.c | |
3 | * | |
4 | * Copyright (C) 1999 Linus Torvalds | |
5 | * Copyright (C) 1999 Martin Mares <[email protected]> | |
6 | * | |
7 | * Arbitrary resource management. | |
8 | */ | |
9 | ||
1da177e4 | 10 | #include <linux/module.h> |
1da177e4 LT |
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> | |
8b6d043b | 18 | #include <linux/sched.h> |
1da177e4 | 19 | #include <linux/seq_file.h> |
9ac7849e | 20 | #include <linux/device.h> |
d68612b2 | 21 | #include <linux/pfn.h> |
1da177e4 LT |
22 | #include <asm/io.h> |
23 | ||
24 | ||
25 | struct resource ioport_resource = { | |
26 | .name = "PCI IO", | |
6550e07f | 27 | .start = 0, |
1da177e4 LT |
28 | .end = IO_SPACE_LIMIT, |
29 | .flags = IORESOURCE_IO, | |
30 | }; | |
1da177e4 LT |
31 | EXPORT_SYMBOL(ioport_resource); |
32 | ||
33 | struct resource iomem_resource = { | |
34 | .name = "PCI mem", | |
6550e07f GKH |
35 | .start = 0, |
36 | .end = -1, | |
1da177e4 LT |
37 | .flags = IORESOURCE_MEM, |
38 | }; | |
1da177e4 LT |
39 | EXPORT_SYMBOL(iomem_resource); |
40 | ||
41 | static DEFINE_RWLOCK(resource_lock); | |
42 | ||
e7f8567d BH |
43 | /* |
44 | * By default, we allocate free space bottom-up. The architecture can request | |
45 | * top-down by clearing this flag. The user can override the architecture's | |
46 | * choice with the "resource_alloc_from_bottom" kernel boot option, but that | |
47 | * should only be a debugging tool. | |
48 | */ | |
49 | int resource_alloc_from_bottom = 1; | |
50 | ||
51 | static __init int setup_alloc_from_bottom(char *s) | |
52 | { | |
53 | printk(KERN_INFO | |
54 | "resource: allocating from bottom-up; please report a bug\n"); | |
55 | resource_alloc_from_bottom = 1; | |
56 | return 0; | |
57 | } | |
58 | early_param("resource_alloc_from_bottom", setup_alloc_from_bottom); | |
59 | ||
1da177e4 LT |
60 | static void *r_next(struct seq_file *m, void *v, loff_t *pos) |
61 | { | |
62 | struct resource *p = v; | |
63 | (*pos)++; | |
64 | if (p->child) | |
65 | return p->child; | |
66 | while (!p->sibling && p->parent) | |
67 | p = p->parent; | |
68 | return p->sibling; | |
69 | } | |
70 | ||
13eb8375 IM |
71 | #ifdef CONFIG_PROC_FS |
72 | ||
73 | enum { MAX_IORES_LEVEL = 5 }; | |
74 | ||
1da177e4 LT |
75 | static void *r_start(struct seq_file *m, loff_t *pos) |
76 | __acquires(resource_lock) | |
77 | { | |
78 | struct resource *p = m->private; | |
79 | loff_t l = 0; | |
80 | read_lock(&resource_lock); | |
81 | for (p = p->child; p && l < *pos; p = r_next(m, p, &l)) | |
82 | ; | |
83 | return p; | |
84 | } | |
85 | ||
86 | static void r_stop(struct seq_file *m, void *v) | |
87 | __releases(resource_lock) | |
88 | { | |
89 | read_unlock(&resource_lock); | |
90 | } | |
91 | ||
92 | static int r_show(struct seq_file *m, void *v) | |
93 | { | |
94 | struct resource *root = m->private; | |
95 | struct resource *r = v, *p; | |
96 | int width = root->end < 0x10000 ? 4 : 8; | |
97 | int depth; | |
98 | ||
99 | for (depth = 0, p = r; depth < MAX_IORES_LEVEL; depth++, p = p->parent) | |
100 | if (p->parent == root) | |
101 | break; | |
685143ac | 102 | seq_printf(m, "%*s%0*llx-%0*llx : %s\n", |
1da177e4 | 103 | depth * 2, "", |
685143ac GKH |
104 | width, (unsigned long long) r->start, |
105 | width, (unsigned long long) r->end, | |
1da177e4 LT |
106 | r->name ? r->name : "<BAD>"); |
107 | return 0; | |
108 | } | |
109 | ||
15ad7cdc | 110 | static const struct seq_operations resource_op = { |
1da177e4 LT |
111 | .start = r_start, |
112 | .next = r_next, | |
113 | .stop = r_stop, | |
114 | .show = r_show, | |
115 | }; | |
116 | ||
117 | static int ioports_open(struct inode *inode, struct file *file) | |
118 | { | |
119 | int res = seq_open(file, &resource_op); | |
120 | if (!res) { | |
121 | struct seq_file *m = file->private_data; | |
122 | m->private = &ioport_resource; | |
123 | } | |
124 | return res; | |
125 | } | |
126 | ||
127 | static int iomem_open(struct inode *inode, struct file *file) | |
128 | { | |
129 | int res = seq_open(file, &resource_op); | |
130 | if (!res) { | |
131 | struct seq_file *m = file->private_data; | |
132 | m->private = &iomem_resource; | |
133 | } | |
134 | return res; | |
135 | } | |
136 | ||
15ad7cdc | 137 | static const struct file_operations proc_ioports_operations = { |
1da177e4 LT |
138 | .open = ioports_open, |
139 | .read = seq_read, | |
140 | .llseek = seq_lseek, | |
141 | .release = seq_release, | |
142 | }; | |
143 | ||
15ad7cdc | 144 | static const struct file_operations proc_iomem_operations = { |
1da177e4 LT |
145 | .open = iomem_open, |
146 | .read = seq_read, | |
147 | .llseek = seq_lseek, | |
148 | .release = seq_release, | |
149 | }; | |
150 | ||
151 | static int __init ioresources_init(void) | |
152 | { | |
c33fff0a DL |
153 | proc_create("ioports", 0, NULL, &proc_ioports_operations); |
154 | proc_create("iomem", 0, NULL, &proc_iomem_operations); | |
1da177e4 LT |
155 | return 0; |
156 | } | |
157 | __initcall(ioresources_init); | |
158 | ||
159 | #endif /* CONFIG_PROC_FS */ | |
160 | ||
161 | /* Return the conflict entry if you can't request it */ | |
162 | static struct resource * __request_resource(struct resource *root, struct resource *new) | |
163 | { | |
d75fc8bb GKH |
164 | resource_size_t start = new->start; |
165 | resource_size_t end = new->end; | |
1da177e4 LT |
166 | struct resource *tmp, **p; |
167 | ||
168 | if (end < start) | |
169 | return root; | |
170 | if (start < root->start) | |
171 | return root; | |
172 | if (end > root->end) | |
173 | return root; | |
174 | p = &root->child; | |
175 | for (;;) { | |
176 | tmp = *p; | |
177 | if (!tmp || tmp->start > end) { | |
178 | new->sibling = tmp; | |
179 | *p = new; | |
180 | new->parent = root; | |
181 | return NULL; | |
182 | } | |
183 | p = &tmp->sibling; | |
184 | if (tmp->end < start) | |
185 | continue; | |
186 | return tmp; | |
187 | } | |
188 | } | |
189 | ||
190 | static int __release_resource(struct resource *old) | |
191 | { | |
192 | struct resource *tmp, **p; | |
193 | ||
194 | p = &old->parent->child; | |
195 | for (;;) { | |
196 | tmp = *p; | |
197 | if (!tmp) | |
198 | break; | |
199 | if (tmp == old) { | |
200 | *p = tmp->sibling; | |
201 | old->parent = NULL; | |
202 | return 0; | |
203 | } | |
204 | p = &tmp->sibling; | |
205 | } | |
206 | return -EINVAL; | |
207 | } | |
208 | ||
5eeec0ec YL |
209 | static void __release_child_resources(struct resource *r) |
210 | { | |
211 | struct resource *tmp, *p; | |
212 | resource_size_t size; | |
213 | ||
214 | p = r->child; | |
215 | r->child = NULL; | |
216 | while (p) { | |
217 | tmp = p; | |
218 | p = p->sibling; | |
219 | ||
220 | tmp->parent = NULL; | |
221 | tmp->sibling = NULL; | |
222 | __release_child_resources(tmp); | |
223 | ||
224 | printk(KERN_DEBUG "release child resource %pR\n", tmp); | |
225 | /* need to restore size, and keep flags */ | |
226 | size = resource_size(tmp); | |
227 | tmp->start = 0; | |
228 | tmp->end = size - 1; | |
229 | } | |
230 | } | |
231 | ||
232 | void release_child_resources(struct resource *r) | |
233 | { | |
234 | write_lock(&resource_lock); | |
235 | __release_child_resources(r); | |
236 | write_unlock(&resource_lock); | |
237 | } | |
238 | ||
e1ca66d1 | 239 | /** |
66f1207b | 240 | * request_resource_conflict - request and reserve an I/O or memory resource |
e1ca66d1 RD |
241 | * @root: root resource descriptor |
242 | * @new: resource descriptor desired by caller | |
243 | * | |
66f1207b | 244 | * Returns 0 for success, conflict resource on error. |
e1ca66d1 | 245 | */ |
66f1207b | 246 | struct resource *request_resource_conflict(struct resource *root, struct resource *new) |
1da177e4 LT |
247 | { |
248 | struct resource *conflict; | |
249 | ||
250 | write_lock(&resource_lock); | |
251 | conflict = __request_resource(root, new); | |
252 | write_unlock(&resource_lock); | |
66f1207b BH |
253 | return conflict; |
254 | } | |
255 | ||
256 | /** | |
257 | * request_resource - request and reserve an I/O or memory resource | |
258 | * @root: root resource descriptor | |
259 | * @new: resource descriptor desired by caller | |
260 | * | |
261 | * Returns 0 for success, negative error code on error. | |
262 | */ | |
263 | int request_resource(struct resource *root, struct resource *new) | |
264 | { | |
265 | struct resource *conflict; | |
266 | ||
267 | conflict = request_resource_conflict(root, new); | |
1da177e4 LT |
268 | return conflict ? -EBUSY : 0; |
269 | } | |
270 | ||
271 | EXPORT_SYMBOL(request_resource); | |
272 | ||
e1ca66d1 RD |
273 | /** |
274 | * release_resource - release a previously reserved resource | |
275 | * @old: resource pointer | |
276 | */ | |
1da177e4 LT |
277 | int release_resource(struct resource *old) |
278 | { | |
279 | int retval; | |
280 | ||
281 | write_lock(&resource_lock); | |
282 | retval = __release_resource(old); | |
283 | write_unlock(&resource_lock); | |
284 | return retval; | |
285 | } | |
286 | ||
287 | EXPORT_SYMBOL(release_resource); | |
288 | ||
908eedc6 | 289 | #if !defined(CONFIG_ARCH_HAS_WALK_MEMORY) |
2842f114 KH |
290 | /* |
291 | * Finds the lowest memory reosurce exists within [res->start.res->end) | |
908eedc6 | 292 | * the caller must specify res->start, res->end, res->flags and "name". |
2842f114 KH |
293 | * If found, returns 0, res is overwritten, if not found, returns -1. |
294 | */ | |
908eedc6 | 295 | static int find_next_system_ram(struct resource *res, char *name) |
2842f114 KH |
296 | { |
297 | resource_size_t start, end; | |
298 | struct resource *p; | |
299 | ||
300 | BUG_ON(!res); | |
301 | ||
302 | start = res->start; | |
303 | end = res->end; | |
58c1b5b0 | 304 | BUG_ON(start >= end); |
2842f114 KH |
305 | |
306 | read_lock(&resource_lock); | |
307 | for (p = iomem_resource.child; p ; p = p->sibling) { | |
308 | /* system ram is just marked as IORESOURCE_MEM */ | |
309 | if (p->flags != res->flags) | |
310 | continue; | |
908eedc6 KH |
311 | if (name && strcmp(p->name, name)) |
312 | continue; | |
2842f114 KH |
313 | if (p->start > end) { |
314 | p = NULL; | |
315 | break; | |
316 | } | |
58c1b5b0 | 317 | if ((p->end >= start) && (p->start < end)) |
2842f114 KH |
318 | break; |
319 | } | |
320 | read_unlock(&resource_lock); | |
321 | if (!p) | |
322 | return -1; | |
323 | /* copy data */ | |
0f04ab5e KH |
324 | if (res->start < p->start) |
325 | res->start = p->start; | |
326 | if (res->end > p->end) | |
327 | res->end = p->end; | |
2842f114 KH |
328 | return 0; |
329 | } | |
908eedc6 KH |
330 | |
331 | /* | |
332 | * This function calls callback against all memory range of "System RAM" | |
333 | * which are marked as IORESOURCE_MEM and IORESOUCE_BUSY. | |
334 | * Now, this function is only for "System RAM". | |
335 | */ | |
336 | int walk_system_ram_range(unsigned long start_pfn, unsigned long nr_pages, | |
337 | void *arg, int (*func)(unsigned long, unsigned long, void *)) | |
75884fb1 KH |
338 | { |
339 | struct resource res; | |
37b99dd5 | 340 | unsigned long pfn, end_pfn; |
75884fb1 KH |
341 | u64 orig_end; |
342 | int ret = -1; | |
908eedc6 | 343 | |
75884fb1 KH |
344 | res.start = (u64) start_pfn << PAGE_SHIFT; |
345 | res.end = ((u64)(start_pfn + nr_pages) << PAGE_SHIFT) - 1; | |
887c3cb1 | 346 | res.flags = IORESOURCE_MEM | IORESOURCE_BUSY; |
75884fb1 | 347 | orig_end = res.end; |
908eedc6 KH |
348 | while ((res.start < res.end) && |
349 | (find_next_system_ram(&res, "System RAM") >= 0)) { | |
37b99dd5 WF |
350 | pfn = (res.start + PAGE_SIZE - 1) >> PAGE_SHIFT; |
351 | end_pfn = (res.end + 1) >> PAGE_SHIFT; | |
352 | if (end_pfn > pfn) | |
f4149660 | 353 | ret = (*func)(pfn, end_pfn - pfn, arg); |
75884fb1 KH |
354 | if (ret) |
355 | break; | |
356 | res.start = res.end + 1; | |
357 | res.end = orig_end; | |
358 | } | |
359 | return ret; | |
360 | } | |
361 | ||
2842f114 KH |
362 | #endif |
363 | ||
61ef2489 WF |
364 | static int __is_ram(unsigned long pfn, unsigned long nr_pages, void *arg) |
365 | { | |
366 | return 1; | |
367 | } | |
368 | /* | |
369 | * This generic page_is_ram() returns true if specified address is | |
370 | * registered as "System RAM" in iomem_resource list. | |
371 | */ | |
e5273007 | 372 | int __weak page_is_ram(unsigned long pfn) |
61ef2489 WF |
373 | { |
374 | return walk_system_ram_range(pfn, 1, NULL, __is_ram) == 1; | |
375 | } | |
376 | ||
a9cea017 BH |
377 | static resource_size_t simple_align_resource(void *data, |
378 | const struct resource *avail, | |
379 | resource_size_t size, | |
380 | resource_size_t align) | |
381 | { | |
382 | return avail->start; | |
383 | } | |
384 | ||
5d6b1fa3 BH |
385 | static void resource_clip(struct resource *res, resource_size_t min, |
386 | resource_size_t max) | |
387 | { | |
388 | if (res->start < min) | |
389 | res->start = min; | |
390 | if (res->end > max) | |
391 | res->end = max; | |
392 | } | |
393 | ||
6909ba14 BH |
394 | static bool resource_contains(struct resource *res1, struct resource *res2) |
395 | { | |
396 | return res1->start <= res2->start && res1->end >= res2->end; | |
397 | } | |
398 | ||
e7f8567d BH |
399 | /* |
400 | * Find the resource before "child" in the sibling list of "root" children. | |
401 | */ | |
402 | static struct resource *find_sibling_prev(struct resource *root, struct resource *child) | |
403 | { | |
404 | struct resource *this; | |
405 | ||
406 | for (this = root->child; this; this = this->sibling) | |
407 | if (this->sibling == child) | |
408 | return this; | |
409 | ||
410 | return NULL; | |
411 | } | |
412 | ||
1da177e4 LT |
413 | /* |
414 | * Find empty slot in the resource tree given range and alignment. | |
e7f8567d BH |
415 | * This version allocates from the end of the root resource first. |
416 | */ | |
417 | static int find_resource_from_top(struct resource *root, struct resource *new, | |
418 | resource_size_t size, resource_size_t min, | |
419 | resource_size_t max, resource_size_t align, | |
420 | resource_size_t (*alignf)(void *, | |
421 | const struct resource *, | |
422 | resource_size_t, | |
423 | resource_size_t), | |
424 | void *alignf_data) | |
425 | { | |
426 | struct resource *this; | |
427 | struct resource tmp, avail, alloc; | |
428 | ||
429 | tmp.start = root->end; | |
430 | tmp.end = root->end; | |
431 | ||
432 | this = find_sibling_prev(root, NULL); | |
433 | for (;;) { | |
434 | if (this) { | |
435 | if (this->end < root->end) | |
436 | tmp.start = this->end + 1; | |
437 | } else | |
438 | tmp.start = root->start; | |
439 | ||
440 | resource_clip(&tmp, min, max); | |
441 | ||
442 | /* Check for overflow after ALIGN() */ | |
443 | avail = *new; | |
444 | avail.start = ALIGN(tmp.start, align); | |
445 | avail.end = tmp.end; | |
446 | if (avail.start >= tmp.start) { | |
447 | alloc.start = alignf(alignf_data, &avail, size, align); | |
448 | alloc.end = alloc.start + size - 1; | |
449 | if (resource_contains(&avail, &alloc)) { | |
450 | new->start = alloc.start; | |
451 | new->end = alloc.end; | |
452 | return 0; | |
453 | } | |
454 | } | |
455 | ||
456 | if (!this || this->start == root->start) | |
457 | break; | |
458 | ||
459 | tmp.end = this->start - 1; | |
460 | this = find_sibling_prev(root, this); | |
461 | } | |
462 | return -EBUSY; | |
463 | } | |
464 | ||
1da177e4 LT |
465 | /* |
466 | * Find empty slot in the resource tree given range and alignment. | |
e7f8567d | 467 | * This version allocates from the beginning of the root resource first. |
1da177e4 LT |
468 | */ |
469 | static int find_resource(struct resource *root, struct resource *new, | |
d75fc8bb GKH |
470 | resource_size_t size, resource_size_t min, |
471 | resource_size_t max, resource_size_t align, | |
b26b2d49 | 472 | resource_size_t (*alignf)(void *, |
3b7a17fc | 473 | const struct resource *, |
b26b2d49 DB |
474 | resource_size_t, |
475 | resource_size_t), | |
1da177e4 LT |
476 | void *alignf_data) |
477 | { | |
478 | struct resource *this = root->child; | |
a1862e31 | 479 | struct resource tmp = *new, avail, alloc; |
1da177e4 | 480 | |
0e2c8b8f | 481 | tmp.start = root->start; |
1da177e4 | 482 | /* |
e7f8567d BH |
483 | * Skip past an allocated resource that starts at 0, since the |
484 | * assignment of this->start - 1 to tmp->end below would cause an | |
485 | * underflow. | |
1da177e4 LT |
486 | */ |
487 | if (this && this->start == 0) { | |
0e2c8b8f | 488 | tmp.start = this->end + 1; |
1da177e4 LT |
489 | this = this->sibling; |
490 | } | |
e7f8567d | 491 | for (;;) { |
1da177e4 | 492 | if (this) |
0e2c8b8f | 493 | tmp.end = this->start - 1; |
1da177e4 | 494 | else |
0e2c8b8f | 495 | tmp.end = root->end; |
5d6b1fa3 BH |
496 | |
497 | resource_clip(&tmp, min, max); | |
a9cea017 | 498 | |
a1862e31 BH |
499 | /* Check for overflow after ALIGN() */ |
500 | avail = *new; | |
501 | avail.start = ALIGN(tmp.start, align); | |
502 | avail.end = tmp.end; | |
503 | if (avail.start >= tmp.start) { | |
504 | alloc.start = alignf(alignf_data, &avail, size, align); | |
505 | alloc.end = alloc.start + size - 1; | |
506 | if (resource_contains(&avail, &alloc)) { | |
507 | new->start = alloc.start; | |
508 | new->end = alloc.end; | |
509 | return 0; | |
510 | } | |
1da177e4 | 511 | } |
e7f8567d | 512 | |
1da177e4 LT |
513 | if (!this) |
514 | break; | |
e7f8567d | 515 | |
0e2c8b8f | 516 | tmp.start = this->end + 1; |
1da177e4 LT |
517 | this = this->sibling; |
518 | } | |
519 | return -EBUSY; | |
520 | } | |
521 | ||
e1ca66d1 RD |
522 | /** |
523 | * allocate_resource - allocate empty slot in the resource tree given range & alignment | |
524 | * @root: root resource descriptor | |
525 | * @new: resource descriptor desired by caller | |
526 | * @size: requested resource region size | |
527 | * @min: minimum size to allocate | |
528 | * @max: maximum size to allocate | |
529 | * @align: alignment requested, in bytes | |
530 | * @alignf: alignment function, optional, called if not NULL | |
531 | * @alignf_data: arbitrary data to pass to the @alignf function | |
1da177e4 LT |
532 | */ |
533 | int allocate_resource(struct resource *root, struct resource *new, | |
d75fc8bb GKH |
534 | resource_size_t size, resource_size_t min, |
535 | resource_size_t max, resource_size_t align, | |
b26b2d49 | 536 | resource_size_t (*alignf)(void *, |
3b7a17fc | 537 | const struct resource *, |
b26b2d49 DB |
538 | resource_size_t, |
539 | resource_size_t), | |
1da177e4 LT |
540 | void *alignf_data) |
541 | { | |
542 | int err; | |
543 | ||
a9cea017 BH |
544 | if (!alignf) |
545 | alignf = simple_align_resource; | |
546 | ||
1da177e4 | 547 | write_lock(&resource_lock); |
e7f8567d BH |
548 | if (resource_alloc_from_bottom) |
549 | err = find_resource(root, new, size, min, max, align, alignf, alignf_data); | |
550 | else | |
551 | err = find_resource_from_top(root, new, size, min, max, align, alignf, alignf_data); | |
1da177e4 LT |
552 | if (err >= 0 && __request_resource(root, new)) |
553 | err = -EBUSY; | |
554 | write_unlock(&resource_lock); | |
555 | return err; | |
556 | } | |
557 | ||
558 | EXPORT_SYMBOL(allocate_resource); | |
559 | ||
bef69ea0 LT |
560 | /* |
561 | * Insert a resource into the resource tree. If successful, return NULL, | |
562 | * otherwise return the conflicting resource (compare to __request_resource()) | |
1da177e4 | 563 | */ |
bef69ea0 | 564 | static struct resource * __insert_resource(struct resource *parent, struct resource *new) |
1da177e4 | 565 | { |
1da177e4 LT |
566 | struct resource *first, *next; |
567 | ||
d33b6fba | 568 | for (;; parent = first) { |
d33b6fba MW |
569 | first = __request_resource(parent, new); |
570 | if (!first) | |
bef69ea0 | 571 | return first; |
d33b6fba | 572 | |
d33b6fba | 573 | if (first == parent) |
bef69ea0 | 574 | return first; |
5de1cb2d HS |
575 | if (WARN_ON(first == new)) /* duplicated insertion */ |
576 | return first; | |
d33b6fba MW |
577 | |
578 | if ((first->start > new->start) || (first->end < new->end)) | |
579 | break; | |
580 | if ((first->start == new->start) && (first->end == new->end)) | |
581 | break; | |
1da177e4 LT |
582 | } |
583 | ||
584 | for (next = first; ; next = next->sibling) { | |
585 | /* Partial overlap? Bad, and unfixable */ | |
586 | if (next->start < new->start || next->end > new->end) | |
bef69ea0 | 587 | return next; |
1da177e4 LT |
588 | if (!next->sibling) |
589 | break; | |
590 | if (next->sibling->start > new->end) | |
591 | break; | |
592 | } | |
593 | ||
1da177e4 LT |
594 | new->parent = parent; |
595 | new->sibling = next->sibling; | |
596 | new->child = first; | |
597 | ||
598 | next->sibling = NULL; | |
599 | for (next = first; next; next = next->sibling) | |
600 | next->parent = new; | |
601 | ||
602 | if (parent->child == first) { | |
603 | parent->child = new; | |
604 | } else { | |
605 | next = parent->child; | |
606 | while (next->sibling != first) | |
607 | next = next->sibling; | |
608 | next->sibling = new; | |
609 | } | |
bef69ea0 LT |
610 | return NULL; |
611 | } | |
1da177e4 | 612 | |
bef69ea0 | 613 | /** |
66f1207b | 614 | * insert_resource_conflict - Inserts resource in the resource tree |
bef69ea0 LT |
615 | * @parent: parent of the new resource |
616 | * @new: new resource to insert | |
617 | * | |
66f1207b | 618 | * Returns 0 on success, conflict resource if the resource can't be inserted. |
bef69ea0 | 619 | * |
66f1207b | 620 | * This function is equivalent to request_resource_conflict when no conflict |
bef69ea0 LT |
621 | * happens. If a conflict happens, and the conflicting resources |
622 | * entirely fit within the range of the new resource, then the new | |
623 | * resource is inserted and the conflicting resources become children of | |
624 | * the new resource. | |
625 | */ | |
66f1207b | 626 | struct resource *insert_resource_conflict(struct resource *parent, struct resource *new) |
bef69ea0 LT |
627 | { |
628 | struct resource *conflict; | |
629 | ||
630 | write_lock(&resource_lock); | |
631 | conflict = __insert_resource(parent, new); | |
632 | write_unlock(&resource_lock); | |
66f1207b BH |
633 | return conflict; |
634 | } | |
635 | ||
636 | /** | |
637 | * insert_resource - Inserts a resource in the resource tree | |
638 | * @parent: parent of the new resource | |
639 | * @new: new resource to insert | |
640 | * | |
641 | * Returns 0 on success, -EBUSY if the resource can't be inserted. | |
642 | */ | |
643 | int insert_resource(struct resource *parent, struct resource *new) | |
644 | { | |
645 | struct resource *conflict; | |
646 | ||
647 | conflict = insert_resource_conflict(parent, new); | |
bef69ea0 LT |
648 | return conflict ? -EBUSY : 0; |
649 | } | |
650 | ||
651 | /** | |
652 | * insert_resource_expand_to_fit - Insert a resource into the resource tree | |
6781f4ae | 653 | * @root: root resource descriptor |
bef69ea0 LT |
654 | * @new: new resource to insert |
655 | * | |
656 | * Insert a resource into the resource tree, possibly expanding it in order | |
657 | * to make it encompass any conflicting resources. | |
658 | */ | |
659 | void insert_resource_expand_to_fit(struct resource *root, struct resource *new) | |
660 | { | |
661 | if (new->parent) | |
662 | return; | |
663 | ||
664 | write_lock(&resource_lock); | |
665 | for (;;) { | |
666 | struct resource *conflict; | |
667 | ||
668 | conflict = __insert_resource(root, new); | |
669 | if (!conflict) | |
670 | break; | |
671 | if (conflict == root) | |
672 | break; | |
673 | ||
674 | /* Ok, expand resource to cover the conflict, then try again .. */ | |
675 | if (conflict->start < new->start) | |
676 | new->start = conflict->start; | |
677 | if (conflict->end > new->end) | |
678 | new->end = conflict->end; | |
679 | ||
680 | printk("Expanded resource %s due to conflict with %s\n", new->name, conflict->name); | |
681 | } | |
1da177e4 | 682 | write_unlock(&resource_lock); |
1da177e4 LT |
683 | } |
684 | ||
e1ca66d1 RD |
685 | /** |
686 | * adjust_resource - modify a resource's start and size | |
687 | * @res: resource to modify | |
688 | * @start: new start value | |
689 | * @size: new size | |
690 | * | |
1da177e4 | 691 | * Given an existing resource, change its start and size to match the |
e1ca66d1 RD |
692 | * arguments. Returns 0 on success, -EBUSY if it can't fit. |
693 | * Existing children of the resource are assumed to be immutable. | |
1da177e4 | 694 | */ |
d75fc8bb | 695 | int adjust_resource(struct resource *res, resource_size_t start, resource_size_t size) |
1da177e4 LT |
696 | { |
697 | struct resource *tmp, *parent = res->parent; | |
d75fc8bb | 698 | resource_size_t end = start + size - 1; |
1da177e4 LT |
699 | int result = -EBUSY; |
700 | ||
701 | write_lock(&resource_lock); | |
702 | ||
703 | if ((start < parent->start) || (end > parent->end)) | |
704 | goto out; | |
705 | ||
706 | for (tmp = res->child; tmp; tmp = tmp->sibling) { | |
707 | if ((tmp->start < start) || (tmp->end > end)) | |
708 | goto out; | |
709 | } | |
710 | ||
711 | if (res->sibling && (res->sibling->start <= end)) | |
712 | goto out; | |
713 | ||
714 | tmp = parent->child; | |
715 | if (tmp != res) { | |
716 | while (tmp->sibling != res) | |
717 | tmp = tmp->sibling; | |
718 | if (start <= tmp->end) | |
719 | goto out; | |
720 | } | |
721 | ||
722 | res->start = start; | |
723 | res->end = end; | |
724 | result = 0; | |
725 | ||
726 | out: | |
727 | write_unlock(&resource_lock); | |
728 | return result; | |
729 | } | |
730 | ||
268364a0 YL |
731 | static void __init __reserve_region_with_split(struct resource *root, |
732 | resource_size_t start, resource_size_t end, | |
733 | const char *name) | |
734 | { | |
735 | struct resource *parent = root; | |
736 | struct resource *conflict; | |
42c02023 | 737 | struct resource *res = kzalloc(sizeof(*res), GFP_ATOMIC); |
268364a0 YL |
738 | |
739 | if (!res) | |
740 | return; | |
741 | ||
742 | res->name = name; | |
743 | res->start = start; | |
744 | res->end = end; | |
745 | res->flags = IORESOURCE_BUSY; | |
746 | ||
ff54250a LT |
747 | conflict = __request_resource(parent, res); |
748 | if (!conflict) | |
749 | return; | |
268364a0 | 750 | |
ff54250a LT |
751 | /* failed, split and try again */ |
752 | kfree(res); | |
268364a0 | 753 | |
ff54250a LT |
754 | /* conflict covered whole area */ |
755 | if (conflict->start <= start && conflict->end >= end) | |
756 | return; | |
268364a0 | 757 | |
ff54250a LT |
758 | if (conflict->start > start) |
759 | __reserve_region_with_split(root, start, conflict->start-1, name); | |
760 | if (conflict->end < end) | |
761 | __reserve_region_with_split(root, conflict->end+1, end, name); | |
268364a0 YL |
762 | } |
763 | ||
bea92112 | 764 | void __init reserve_region_with_split(struct resource *root, |
268364a0 YL |
765 | resource_size_t start, resource_size_t end, |
766 | const char *name) | |
767 | { | |
768 | write_lock(&resource_lock); | |
769 | __reserve_region_with_split(root, start, end, name); | |
770 | write_unlock(&resource_lock); | |
771 | } | |
772 | ||
1da177e4 LT |
773 | EXPORT_SYMBOL(adjust_resource); |
774 | ||
88452565 IK |
775 | /** |
776 | * resource_alignment - calculate resource's alignment | |
777 | * @res: resource pointer | |
778 | * | |
779 | * Returns alignment on success, 0 (invalid alignment) on failure. | |
780 | */ | |
781 | resource_size_t resource_alignment(struct resource *res) | |
782 | { | |
783 | switch (res->flags & (IORESOURCE_SIZEALIGN | IORESOURCE_STARTALIGN)) { | |
784 | case IORESOURCE_SIZEALIGN: | |
1a4e564b | 785 | return resource_size(res); |
88452565 IK |
786 | case IORESOURCE_STARTALIGN: |
787 | return res->start; | |
788 | default: | |
789 | return 0; | |
790 | } | |
791 | } | |
792 | ||
1da177e4 LT |
793 | /* |
794 | * This is compatibility stuff for IO resources. | |
795 | * | |
796 | * Note how this, unlike the above, knows about | |
797 | * the IO flag meanings (busy etc). | |
798 | * | |
e1ca66d1 | 799 | * request_region creates a new busy region. |
1da177e4 | 800 | * |
e1ca66d1 | 801 | * check_region returns non-zero if the area is already busy. |
1da177e4 | 802 | * |
e1ca66d1 RD |
803 | * release_region releases a matching busy region. |
804 | */ | |
805 | ||
8b6d043b AC |
806 | static DECLARE_WAIT_QUEUE_HEAD(muxed_resource_wait); |
807 | ||
e1ca66d1 RD |
808 | /** |
809 | * __request_region - create a new busy resource region | |
810 | * @parent: parent resource descriptor | |
811 | * @start: resource start address | |
812 | * @n: resource region size | |
813 | * @name: reserving caller's ID string | |
6ae301e8 | 814 | * @flags: IO resource flags |
1da177e4 | 815 | */ |
d75fc8bb GKH |
816 | struct resource * __request_region(struct resource *parent, |
817 | resource_size_t start, resource_size_t n, | |
e8de1481 | 818 | const char *name, int flags) |
1da177e4 | 819 | { |
8b6d043b | 820 | DECLARE_WAITQUEUE(wait, current); |
dd392710 | 821 | struct resource *res = kzalloc(sizeof(*res), GFP_KERNEL); |
1da177e4 | 822 | |
c26ec88e BH |
823 | if (!res) |
824 | return NULL; | |
825 | ||
826 | res->name = name; | |
827 | res->start = start; | |
828 | res->end = start + n - 1; | |
829 | res->flags = IORESOURCE_BUSY; | |
e8de1481 | 830 | res->flags |= flags; |
c26ec88e BH |
831 | |
832 | write_lock(&resource_lock); | |
833 | ||
834 | for (;;) { | |
835 | struct resource *conflict; | |
836 | ||
837 | conflict = __request_resource(parent, res); | |
838 | if (!conflict) | |
1da177e4 | 839 | break; |
c26ec88e BH |
840 | if (conflict != parent) { |
841 | parent = conflict; | |
842 | if (!(conflict->flags & IORESOURCE_BUSY)) | |
843 | continue; | |
1da177e4 | 844 | } |
8b6d043b AC |
845 | if (conflict->flags & flags & IORESOURCE_MUXED) { |
846 | add_wait_queue(&muxed_resource_wait, &wait); | |
847 | write_unlock(&resource_lock); | |
848 | set_current_state(TASK_UNINTERRUPTIBLE); | |
849 | schedule(); | |
850 | remove_wait_queue(&muxed_resource_wait, &wait); | |
851 | write_lock(&resource_lock); | |
852 | continue; | |
853 | } | |
c26ec88e BH |
854 | /* Uhhuh, that didn't work out.. */ |
855 | kfree(res); | |
856 | res = NULL; | |
857 | break; | |
1da177e4 | 858 | } |
c26ec88e | 859 | write_unlock(&resource_lock); |
1da177e4 LT |
860 | return res; |
861 | } | |
1da177e4 LT |
862 | EXPORT_SYMBOL(__request_region); |
863 | ||
e1ca66d1 RD |
864 | /** |
865 | * __check_region - check if a resource region is busy or free | |
866 | * @parent: parent resource descriptor | |
867 | * @start: resource start address | |
868 | * @n: resource region size | |
869 | * | |
870 | * Returns 0 if the region is free at the moment it is checked, | |
871 | * returns %-EBUSY if the region is busy. | |
872 | * | |
873 | * NOTE: | |
874 | * This function is deprecated because its use is racy. | |
875 | * Even if it returns 0, a subsequent call to request_region() | |
876 | * may fail because another driver etc. just allocated the region. | |
877 | * Do NOT use it. It will be removed from the kernel. | |
878 | */ | |
d75fc8bb GKH |
879 | int __check_region(struct resource *parent, resource_size_t start, |
880 | resource_size_t n) | |
1da177e4 LT |
881 | { |
882 | struct resource * res; | |
883 | ||
e8de1481 | 884 | res = __request_region(parent, start, n, "check-region", 0); |
1da177e4 LT |
885 | if (!res) |
886 | return -EBUSY; | |
887 | ||
888 | release_resource(res); | |
889 | kfree(res); | |
890 | return 0; | |
891 | } | |
1da177e4 LT |
892 | EXPORT_SYMBOL(__check_region); |
893 | ||
e1ca66d1 RD |
894 | /** |
895 | * __release_region - release a previously reserved resource region | |
896 | * @parent: parent resource descriptor | |
897 | * @start: resource start address | |
898 | * @n: resource region size | |
899 | * | |
900 | * The described resource region must match a currently busy region. | |
901 | */ | |
d75fc8bb GKH |
902 | void __release_region(struct resource *parent, resource_size_t start, |
903 | resource_size_t n) | |
1da177e4 LT |
904 | { |
905 | struct resource **p; | |
d75fc8bb | 906 | resource_size_t end; |
1da177e4 LT |
907 | |
908 | p = &parent->child; | |
909 | end = start + n - 1; | |
910 | ||
911 | write_lock(&resource_lock); | |
912 | ||
913 | for (;;) { | |
914 | struct resource *res = *p; | |
915 | ||
916 | if (!res) | |
917 | break; | |
918 | if (res->start <= start && res->end >= end) { | |
919 | if (!(res->flags & IORESOURCE_BUSY)) { | |
920 | p = &res->child; | |
921 | continue; | |
922 | } | |
923 | if (res->start != start || res->end != end) | |
924 | break; | |
925 | *p = res->sibling; | |
926 | write_unlock(&resource_lock); | |
8b6d043b AC |
927 | if (res->flags & IORESOURCE_MUXED) |
928 | wake_up(&muxed_resource_wait); | |
1da177e4 LT |
929 | kfree(res); |
930 | return; | |
931 | } | |
932 | p = &res->sibling; | |
933 | } | |
934 | ||
935 | write_unlock(&resource_lock); | |
936 | ||
685143ac GKH |
937 | printk(KERN_WARNING "Trying to free nonexistent resource " |
938 | "<%016llx-%016llx>\n", (unsigned long long)start, | |
939 | (unsigned long long)end); | |
1da177e4 | 940 | } |
1da177e4 LT |
941 | EXPORT_SYMBOL(__release_region); |
942 | ||
9ac7849e TH |
943 | /* |
944 | * Managed region resource | |
945 | */ | |
946 | struct region_devres { | |
947 | struct resource *parent; | |
948 | resource_size_t start; | |
949 | resource_size_t n; | |
950 | }; | |
951 | ||
952 | static void devm_region_release(struct device *dev, void *res) | |
953 | { | |
954 | struct region_devres *this = res; | |
955 | ||
956 | __release_region(this->parent, this->start, this->n); | |
957 | } | |
958 | ||
959 | static int devm_region_match(struct device *dev, void *res, void *match_data) | |
960 | { | |
961 | struct region_devres *this = res, *match = match_data; | |
962 | ||
963 | return this->parent == match->parent && | |
964 | this->start == match->start && this->n == match->n; | |
965 | } | |
966 | ||
967 | struct resource * __devm_request_region(struct device *dev, | |
968 | struct resource *parent, resource_size_t start, | |
969 | resource_size_t n, const char *name) | |
970 | { | |
971 | struct region_devres *dr = NULL; | |
972 | struct resource *res; | |
973 | ||
974 | dr = devres_alloc(devm_region_release, sizeof(struct region_devres), | |
975 | GFP_KERNEL); | |
976 | if (!dr) | |
977 | return NULL; | |
978 | ||
979 | dr->parent = parent; | |
980 | dr->start = start; | |
981 | dr->n = n; | |
982 | ||
e8de1481 | 983 | res = __request_region(parent, start, n, name, 0); |
9ac7849e TH |
984 | if (res) |
985 | devres_add(dev, dr); | |
986 | else | |
987 | devres_free(dr); | |
988 | ||
989 | return res; | |
990 | } | |
991 | EXPORT_SYMBOL(__devm_request_region); | |
992 | ||
993 | void __devm_release_region(struct device *dev, struct resource *parent, | |
994 | resource_size_t start, resource_size_t n) | |
995 | { | |
996 | struct region_devres match_data = { parent, start, n }; | |
997 | ||
998 | __release_region(parent, start, n); | |
999 | WARN_ON(devres_destroy(dev, devm_region_release, devm_region_match, | |
1000 | &match_data)); | |
1001 | } | |
1002 | EXPORT_SYMBOL(__devm_release_region); | |
1003 | ||
1da177e4 LT |
1004 | /* |
1005 | * Called from init/main.c to reserve IO ports. | |
1006 | */ | |
1007 | #define MAXRESERVE 4 | |
1008 | static int __init reserve_setup(char *str) | |
1009 | { | |
1010 | static int reserved; | |
1011 | static struct resource reserve[MAXRESERVE]; | |
1012 | ||
1013 | for (;;) { | |
8bc1ad7d | 1014 | unsigned int io_start, io_num; |
1da177e4 LT |
1015 | int x = reserved; |
1016 | ||
1017 | if (get_option (&str, &io_start) != 2) | |
1018 | break; | |
1019 | if (get_option (&str, &io_num) == 0) | |
1020 | break; | |
1021 | if (x < MAXRESERVE) { | |
1022 | struct resource *res = reserve + x; | |
1023 | res->name = "reserved"; | |
1024 | res->start = io_start; | |
1025 | res->end = io_start + io_num - 1; | |
1026 | res->flags = IORESOURCE_BUSY; | |
1027 | res->child = NULL; | |
1028 | if (request_resource(res->start >= 0x10000 ? &iomem_resource : &ioport_resource, res) == 0) | |
1029 | reserved = x+1; | |
1030 | } | |
1031 | } | |
1032 | return 1; | |
1033 | } | |
1034 | ||
1035 | __setup("reserve=", reserve_setup); | |
379daf62 SS |
1036 | |
1037 | /* | |
1038 | * Check if the requested addr and size spans more than any slot in the | |
1039 | * iomem resource tree. | |
1040 | */ | |
1041 | int iomem_map_sanity_check(resource_size_t addr, unsigned long size) | |
1042 | { | |
1043 | struct resource *p = &iomem_resource; | |
1044 | int err = 0; | |
1045 | loff_t l; | |
1046 | ||
1047 | read_lock(&resource_lock); | |
1048 | for (p = p->child; p ; p = r_next(NULL, p, &l)) { | |
1049 | /* | |
1050 | * We can probably skip the resources without | |
1051 | * IORESOURCE_IO attribute? | |
1052 | */ | |
1053 | if (p->start >= addr + size) | |
1054 | continue; | |
1055 | if (p->end < addr) | |
1056 | continue; | |
d68612b2 SS |
1057 | if (PFN_DOWN(p->start) <= PFN_DOWN(addr) && |
1058 | PFN_DOWN(p->end) >= PFN_DOWN(addr + size - 1)) | |
379daf62 | 1059 | continue; |
3ac52669 AV |
1060 | /* |
1061 | * if a resource is "BUSY", it's not a hardware resource | |
1062 | * but a driver mapping of such a resource; we don't want | |
1063 | * to warn for those; some drivers legitimately map only | |
1064 | * partial hardware resources. (example: vesafb) | |
1065 | */ | |
1066 | if (p->flags & IORESOURCE_BUSY) | |
1067 | continue; | |
1068 | ||
379daf62 SS |
1069 | printk(KERN_WARNING "resource map sanity check conflict: " |
1070 | "0x%llx 0x%llx 0x%llx 0x%llx %s\n", | |
13eb8375 IM |
1071 | (unsigned long long)addr, |
1072 | (unsigned long long)(addr + size - 1), | |
1073 | (unsigned long long)p->start, | |
1074 | (unsigned long long)p->end, | |
1075 | p->name); | |
379daf62 SS |
1076 | err = -1; |
1077 | break; | |
1078 | } | |
1079 | read_unlock(&resource_lock); | |
1080 | ||
1081 | return err; | |
1082 | } | |
e8de1481 AV |
1083 | |
1084 | #ifdef CONFIG_STRICT_DEVMEM | |
1085 | static int strict_iomem_checks = 1; | |
1086 | #else | |
1087 | static int strict_iomem_checks; | |
1088 | #endif | |
1089 | ||
1090 | /* | |
1091 | * check if an address is reserved in the iomem resource tree | |
1092 | * returns 1 if reserved, 0 if not reserved. | |
1093 | */ | |
1094 | int iomem_is_exclusive(u64 addr) | |
1095 | { | |
1096 | struct resource *p = &iomem_resource; | |
1097 | int err = 0; | |
1098 | loff_t l; | |
1099 | int size = PAGE_SIZE; | |
1100 | ||
1101 | if (!strict_iomem_checks) | |
1102 | return 0; | |
1103 | ||
1104 | addr = addr & PAGE_MASK; | |
1105 | ||
1106 | read_lock(&resource_lock); | |
1107 | for (p = p->child; p ; p = r_next(NULL, p, &l)) { | |
1108 | /* | |
1109 | * We can probably skip the resources without | |
1110 | * IORESOURCE_IO attribute? | |
1111 | */ | |
1112 | if (p->start >= addr + size) | |
1113 | break; | |
1114 | if (p->end < addr) | |
1115 | continue; | |
1116 | if (p->flags & IORESOURCE_BUSY && | |
1117 | p->flags & IORESOURCE_EXCLUSIVE) { | |
1118 | err = 1; | |
1119 | break; | |
1120 | } | |
1121 | } | |
1122 | read_unlock(&resource_lock); | |
1123 | ||
1124 | return err; | |
1125 | } | |
1126 | ||
1127 | static int __init strict_iomem(char *str) | |
1128 | { | |
1129 | if (strstr(str, "relaxed")) | |
1130 | strict_iomem_checks = 0; | |
1131 | if (strstr(str, "strict")) | |
1132 | strict_iomem_checks = 1; | |
1133 | return 1; | |
1134 | } | |
1135 | ||
1136 | __setup("iomem=", strict_iomem); |