GRU driver: minor updates
[linux-2.6-block.git] / kernel / resource.c
CommitLineData
1da177e4
LT
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
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>
18#include <linux/seq_file.h>
9ac7849e 19#include <linux/device.h>
1da177e4
LT
20#include <asm/io.h>
21
22
23struct resource ioport_resource = {
24 .name = "PCI IO",
6550e07f 25 .start = 0,
1da177e4
LT
26 .end = IO_SPACE_LIMIT,
27 .flags = IORESOURCE_IO,
28};
1da177e4
LT
29EXPORT_SYMBOL(ioport_resource);
30
31struct resource iomem_resource = {
32 .name = "PCI mem",
6550e07f
GKH
33 .start = 0,
34 .end = -1,
1da177e4
LT
35 .flags = IORESOURCE_MEM,
36};
1da177e4
LT
37EXPORT_SYMBOL(iomem_resource);
38
39static DEFINE_RWLOCK(resource_lock);
40
41#ifdef CONFIG_PROC_FS
42
43enum { MAX_IORES_LEVEL = 5 };
44
45static void *r_next(struct seq_file *m, void *v, loff_t *pos)
46{
47 struct resource *p = v;
48 (*pos)++;
49 if (p->child)
50 return p->child;
51 while (!p->sibling && p->parent)
52 p = p->parent;
53 return p->sibling;
54}
55
56static 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
67static void r_stop(struct seq_file *m, void *v)
68 __releases(resource_lock)
69{
70 read_unlock(&resource_lock);
71}
72
73static 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;
685143ac 83 seq_printf(m, "%*s%0*llx-%0*llx : %s\n",
1da177e4 84 depth * 2, "",
685143ac
GKH
85 width, (unsigned long long) r->start,
86 width, (unsigned long long) r->end,
1da177e4
LT
87 r->name ? r->name : "<BAD>");
88 return 0;
89}
90
15ad7cdc 91static const struct seq_operations resource_op = {
1da177e4
LT
92 .start = r_start,
93 .next = r_next,
94 .stop = r_stop,
95 .show = r_show,
96};
97
98static 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
108static 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
15ad7cdc 118static const struct file_operations proc_ioports_operations = {
1da177e4
LT
119 .open = ioports_open,
120 .read = seq_read,
121 .llseek = seq_lseek,
122 .release = seq_release,
123};
124
15ad7cdc 125static const struct file_operations proc_iomem_operations = {
1da177e4
LT
126 .open = iomem_open,
127 .read = seq_read,
128 .llseek = seq_lseek,
129 .release = seq_release,
130};
131
132static int __init ioresources_init(void)
133{
c33fff0a
DL
134 proc_create("ioports", 0, NULL, &proc_ioports_operations);
135 proc_create("iomem", 0, NULL, &proc_iomem_operations);
1da177e4
LT
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 */
143static struct resource * __request_resource(struct resource *root, struct resource *new)
144{
d75fc8bb
GKH
145 resource_size_t start = new->start;
146 resource_size_t end = new->end;
1da177e4
LT
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
171static 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
e1ca66d1
RD
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 */
1da177e4
LT
197int 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
207EXPORT_SYMBOL(request_resource);
208
e1ca66d1
RD
209/**
210 * release_resource - release a previously reserved resource
211 * @old: resource pointer
212 */
1da177e4
LT
213int 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
223EXPORT_SYMBOL(release_resource);
224
a99824f3 225#if defined(CONFIG_MEMORY_HOTPLUG) && !defined(CONFIG_ARCH_HAS_WALK_MEMORY)
2842f114
KH
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 */
75884fb1 231static int find_next_system_ram(struct resource *res)
2842f114
KH
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;
58c1b5b0 240 BUG_ON(start >= end);
2842f114
KH
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 }
58c1b5b0 251 if ((p->end >= start) && (p->start < end))
2842f114
KH
252 break;
253 }
254 read_unlock(&resource_lock);
255 if (!p)
256 return -1;
257 /* copy data */
0f04ab5e
KH
258 if (res->start < p->start)
259 res->start = p->start;
260 if (res->end > p->end)
261 res->end = p->end;
2842f114
KH
262 return 0;
263}
75884fb1
KH
264int
265walk_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;
887c3cb1 274 res.flags = IORESOURCE_MEM | IORESOURCE_BUSY;
75884fb1
KH
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
2842f114
KH
288#endif
289
1da177e4
LT
290/*
291 * Find empty slot in the resource tree given range and alignment.
292 */
293static int find_resource(struct resource *root, struct resource *new,
d75fc8bb
GKH
294 resource_size_t size, resource_size_t min,
295 resource_size_t max, resource_size_t align,
1da177e4 296 void (*alignf)(void *, struct resource *,
d75fc8bb 297 resource_size_t, resource_size_t),
1da177e4
LT
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;
8c0e33c1 320 new->start = ALIGN(new->start, align);
1da177e4
LT
321 if (alignf)
322 alignf(alignf_data, new, size, align);
b52402c7 323 if (new->start < new->end && new->end - new->start >= size - 1) {
1da177e4
LT
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
e1ca66d1
RD
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
1da177e4
LT
345 */
346int allocate_resource(struct resource *root, struct resource *new,
d75fc8bb
GKH
347 resource_size_t size, resource_size_t min,
348 resource_size_t max, resource_size_t align,
1da177e4 349 void (*alignf)(void *, struct resource *,
d75fc8bb 350 resource_size_t, resource_size_t),
1da177e4
LT
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
363EXPORT_SYMBOL(allocate_resource);
364
bef69ea0
LT
365/*
366 * Insert a resource into the resource tree. If successful, return NULL,
367 * otherwise return the conflicting resource (compare to __request_resource())
1da177e4 368 */
bef69ea0 369static struct resource * __insert_resource(struct resource *parent, struct resource *new)
1da177e4 370{
1da177e4
LT
371 struct resource *first, *next;
372
d33b6fba 373 for (;; parent = first) {
d33b6fba
MW
374 first = __request_resource(parent, new);
375 if (!first)
bef69ea0 376 return first;
d33b6fba 377
d33b6fba 378 if (first == parent)
bef69ea0 379 return first;
d33b6fba
MW
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;
1da177e4
LT
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)
bef69ea0 390 return next;
1da177e4
LT
391 if (!next->sibling)
392 break;
393 if (next->sibling->start > new->end)
394 break;
395 }
396
1da177e4
LT
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 }
bef69ea0
LT
413 return NULL;
414}
1da177e4 415
bef69ea0
LT
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 */
429int 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);
435 write_unlock(&resource_lock);
436 return conflict ? -EBUSY : 0;
437}
438
439/**
440 * insert_resource_expand_to_fit - Insert a resource into the resource tree
6781f4ae 441 * @root: root resource descriptor
bef69ea0
LT
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 */
447void 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 }
1da177e4 470 write_unlock(&resource_lock);
1da177e4
LT
471}
472
e1ca66d1
RD
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 *
1da177e4 479 * Given an existing resource, change its start and size to match the
e1ca66d1
RD
480 * arguments. Returns 0 on success, -EBUSY if it can't fit.
481 * Existing children of the resource are assumed to be immutable.
1da177e4 482 */
d75fc8bb 483int adjust_resource(struct resource *res, resource_size_t start, resource_size_t size)
1da177e4
LT
484{
485 struct resource *tmp, *parent = res->parent;
d75fc8bb 486 resource_size_t end = start + size - 1;
1da177e4
LT
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
268364a0
YL
519static 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) {
552 printk(KERN_DEBUG " __reserve_region_with_split: (%s) [%llx, %llx], res: (%s) [%llx, %llx]\n",
553 conflict->name, conflict->start, conflict->end,
554 name, start, end);
555
556 /* failed, split and try again */
557
558 /* conflict coverred whole area */
559 if (conflict->start <= start && conflict->end >= end)
560 return;
561
562 if (conflict->start > start)
563 __reserve_region_with_split(root, start, conflict->start-1, name);
564 if (!(conflict->flags & IORESOURCE_BUSY)) {
565 resource_size_t common_start, common_end;
566
567 common_start = max(conflict->start, start);
568 common_end = min(conflict->end, end);
569 if (common_start < common_end)
570 __reserve_region_with_split(root, common_start, common_end, name);
571 }
572 if (conflict->end < end)
573 __reserve_region_with_split(root, conflict->end+1, end, name);
574 }
575
576}
577
578void reserve_region_with_split(struct resource *root,
579 resource_size_t start, resource_size_t end,
580 const char *name)
581{
582 write_lock(&resource_lock);
583 __reserve_region_with_split(root, start, end, name);
584 write_unlock(&resource_lock);
585}
586
1da177e4
LT
587EXPORT_SYMBOL(adjust_resource);
588
88452565
IK
589/**
590 * resource_alignment - calculate resource's alignment
591 * @res: resource pointer
592 *
593 * Returns alignment on success, 0 (invalid alignment) on failure.
594 */
595resource_size_t resource_alignment(struct resource *res)
596{
597 switch (res->flags & (IORESOURCE_SIZEALIGN | IORESOURCE_STARTALIGN)) {
598 case IORESOURCE_SIZEALIGN:
1a4e564b 599 return resource_size(res);
88452565
IK
600 case IORESOURCE_STARTALIGN:
601 return res->start;
602 default:
603 return 0;
604 }
605}
606
1da177e4
LT
607/*
608 * This is compatibility stuff for IO resources.
609 *
610 * Note how this, unlike the above, knows about
611 * the IO flag meanings (busy etc).
612 *
e1ca66d1 613 * request_region creates a new busy region.
1da177e4 614 *
e1ca66d1 615 * check_region returns non-zero if the area is already busy.
1da177e4 616 *
e1ca66d1
RD
617 * release_region releases a matching busy region.
618 */
619
620/**
621 * __request_region - create a new busy resource region
622 * @parent: parent resource descriptor
623 * @start: resource start address
624 * @n: resource region size
625 * @name: reserving caller's ID string
1da177e4 626 */
d75fc8bb
GKH
627struct resource * __request_region(struct resource *parent,
628 resource_size_t start, resource_size_t n,
629 const char *name)
1da177e4 630{
dd392710 631 struct resource *res = kzalloc(sizeof(*res), GFP_KERNEL);
1da177e4
LT
632
633 if (res) {
1da177e4
LT
634 res->name = name;
635 res->start = start;
636 res->end = start + n - 1;
637 res->flags = IORESOURCE_BUSY;
638
639 write_lock(&resource_lock);
640
641 for (;;) {
642 struct resource *conflict;
643
644 conflict = __request_resource(parent, res);
645 if (!conflict)
646 break;
647 if (conflict != parent) {
648 parent = conflict;
649 if (!(conflict->flags & IORESOURCE_BUSY))
650 continue;
651 }
652
653 /* Uhhuh, that didn't work out.. */
654 kfree(res);
655 res = NULL;
656 break;
657 }
658 write_unlock(&resource_lock);
659 }
660 return res;
661}
1da177e4
LT
662EXPORT_SYMBOL(__request_region);
663
e1ca66d1
RD
664/**
665 * __check_region - check if a resource region is busy or free
666 * @parent: parent resource descriptor
667 * @start: resource start address
668 * @n: resource region size
669 *
670 * Returns 0 if the region is free at the moment it is checked,
671 * returns %-EBUSY if the region is busy.
672 *
673 * NOTE:
674 * This function is deprecated because its use is racy.
675 * Even if it returns 0, a subsequent call to request_region()
676 * may fail because another driver etc. just allocated the region.
677 * Do NOT use it. It will be removed from the kernel.
678 */
d75fc8bb
GKH
679int __check_region(struct resource *parent, resource_size_t start,
680 resource_size_t n)
1da177e4
LT
681{
682 struct resource * res;
683
684 res = __request_region(parent, start, n, "check-region");
685 if (!res)
686 return -EBUSY;
687
688 release_resource(res);
689 kfree(res);
690 return 0;
691}
1da177e4
LT
692EXPORT_SYMBOL(__check_region);
693
e1ca66d1
RD
694/**
695 * __release_region - release a previously reserved resource region
696 * @parent: parent resource descriptor
697 * @start: resource start address
698 * @n: resource region size
699 *
700 * The described resource region must match a currently busy region.
701 */
d75fc8bb
GKH
702void __release_region(struct resource *parent, resource_size_t start,
703 resource_size_t n)
1da177e4
LT
704{
705 struct resource **p;
d75fc8bb 706 resource_size_t end;
1da177e4
LT
707
708 p = &parent->child;
709 end = start + n - 1;
710
711 write_lock(&resource_lock);
712
713 for (;;) {
714 struct resource *res = *p;
715
716 if (!res)
717 break;
718 if (res->start <= start && res->end >= end) {
719 if (!(res->flags & IORESOURCE_BUSY)) {
720 p = &res->child;
721 continue;
722 }
723 if (res->start != start || res->end != end)
724 break;
725 *p = res->sibling;
726 write_unlock(&resource_lock);
727 kfree(res);
728 return;
729 }
730 p = &res->sibling;
731 }
732
733 write_unlock(&resource_lock);
734
685143ac
GKH
735 printk(KERN_WARNING "Trying to free nonexistent resource "
736 "<%016llx-%016llx>\n", (unsigned long long)start,
737 (unsigned long long)end);
1da177e4 738}
1da177e4
LT
739EXPORT_SYMBOL(__release_region);
740
9ac7849e
TH
741/*
742 * Managed region resource
743 */
744struct region_devres {
745 struct resource *parent;
746 resource_size_t start;
747 resource_size_t n;
748};
749
750static void devm_region_release(struct device *dev, void *res)
751{
752 struct region_devres *this = res;
753
754 __release_region(this->parent, this->start, this->n);
755}
756
757static int devm_region_match(struct device *dev, void *res, void *match_data)
758{
759 struct region_devres *this = res, *match = match_data;
760
761 return this->parent == match->parent &&
762 this->start == match->start && this->n == match->n;
763}
764
765struct resource * __devm_request_region(struct device *dev,
766 struct resource *parent, resource_size_t start,
767 resource_size_t n, const char *name)
768{
769 struct region_devres *dr = NULL;
770 struct resource *res;
771
772 dr = devres_alloc(devm_region_release, sizeof(struct region_devres),
773 GFP_KERNEL);
774 if (!dr)
775 return NULL;
776
777 dr->parent = parent;
778 dr->start = start;
779 dr->n = n;
780
781 res = __request_region(parent, start, n, name);
782 if (res)
783 devres_add(dev, dr);
784 else
785 devres_free(dr);
786
787 return res;
788}
789EXPORT_SYMBOL(__devm_request_region);
790
791void __devm_release_region(struct device *dev, struct resource *parent,
792 resource_size_t start, resource_size_t n)
793{
794 struct region_devres match_data = { parent, start, n };
795
796 __release_region(parent, start, n);
797 WARN_ON(devres_destroy(dev, devm_region_release, devm_region_match,
798 &match_data));
799}
800EXPORT_SYMBOL(__devm_release_region);
801
1da177e4
LT
802/*
803 * Called from init/main.c to reserve IO ports.
804 */
805#define MAXRESERVE 4
806static int __init reserve_setup(char *str)
807{
808 static int reserved;
809 static struct resource reserve[MAXRESERVE];
810
811 for (;;) {
812 int io_start, io_num;
813 int x = reserved;
814
815 if (get_option (&str, &io_start) != 2)
816 break;
817 if (get_option (&str, &io_num) == 0)
818 break;
819 if (x < MAXRESERVE) {
820 struct resource *res = reserve + x;
821 res->name = "reserved";
822 res->start = io_start;
823 res->end = io_start + io_num - 1;
824 res->flags = IORESOURCE_BUSY;
825 res->child = NULL;
826 if (request_resource(res->start >= 0x10000 ? &iomem_resource : &ioport_resource, res) == 0)
827 reserved = x+1;
828 }
829 }
830 return 1;
831}
832
833__setup("reserve=", reserve_setup);