resource.c 52.3 KB
Newer Older
1
// SPDX-License-Identifier: GPL-2.0-only
Linus Torvalds's avatar
Linus Torvalds committed
2 3 4 5 6 7 8 9 10
/*
 *	linux/kernel/resource.c
 *
 * Copyright (C) 1999	Linus Torvalds
 * Copyright (C) 1999	Martin Mares <mj@ucw.cz>
 *
 * Arbitrary resource management.
 */

11 12
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt

13
#include <linux/export.h>
Linus Torvalds's avatar
Linus Torvalds committed
14 15 16 17 18 19 20
#include <linux/errno.h>
#include <linux/ioport.h>
#include <linux/init.h>
#include <linux/slab.h>
#include <linux/spinlock.h>
#include <linux/fs.h>
#include <linux/proc_fs.h>
21
#include <linux/pseudo_fs.h>
22
#include <linux/sched.h>
Linus Torvalds's avatar
Linus Torvalds committed
23
#include <linux/seq_file.h>
24
#include <linux/device.h>
25
#include <linux/pfn.h>
26
#include <linux/mm.h>
27
#include <linux/mount.h>
28
#include <linux/resource_ext.h>
29
#include <uapi/linux/magic.h>
30 31
#include <linux/string.h>
#include <linux/vmalloc.h>
Linus Torvalds's avatar
Linus Torvalds committed
32 33 34 35 36
#include <asm/io.h>


struct resource ioport_resource = {
	.name	= "PCI IO",
37
	.start	= 0,
Linus Torvalds's avatar
Linus Torvalds committed
38 39 40 41 42 43 44
	.end	= IO_SPACE_LIMIT,
	.flags	= IORESOURCE_IO,
};
EXPORT_SYMBOL(ioport_resource);

struct resource iomem_resource = {
	.name	= "PCI mem",
45 46
	.start	= 0,
	.end	= -1,
Linus Torvalds's avatar
Linus Torvalds committed
47 48 49 50
	.flags	= IORESOURCE_MEM,
};
EXPORT_SYMBOL(iomem_resource);

51 52 53 54 55 56 57 58
/* constraints to be met while allocating resources */
struct resource_constraint {
	resource_size_t min, max, align;
	resource_size_t (*alignf)(void *, const struct resource *,
			resource_size_t, resource_size_t);
	void *alignf_data;
};

Linus Torvalds's avatar
Linus Torvalds committed
59 60
static DEFINE_RWLOCK(resource_lock);

61
static struct resource *next_resource(struct resource *p, bool skip_children)
Linus Torvalds's avatar
Linus Torvalds committed
62
{
63
	if (!skip_children && p->child)
Linus Torvalds's avatar
Linus Torvalds committed
64 65 66 67 68 69
		return p->child;
	while (!p->sibling && p->parent)
		p = p->parent;
	return p->sibling;
}

70
#define for_each_resource(_root, _p, _skip_children) \
71
	for ((_p) = (_root)->child; (_p); (_p) = next_resource(_p, _skip_children))
72

73 74 75 76
#ifdef CONFIG_PROC_FS

enum { MAX_IORES_LEVEL = 5 };

Linus Torvalds's avatar
Linus Torvalds committed
77 78 79
static void *r_start(struct seq_file *m, loff_t *pos)
	__acquires(resource_lock)
{
80 81 82 83
	struct resource *root = pde_data(file_inode(m->file));
	struct resource *p;
	loff_t l = *pos;

Linus Torvalds's avatar
Linus Torvalds committed
84
	read_lock(&resource_lock);
85 86 87 88 89
	for_each_resource(root, p, false) {
		if (l-- == 0)
			break;
	}

Linus Torvalds's avatar
Linus Torvalds committed
90 91 92
	return p;
}

93 94 95
static void *r_next(struct seq_file *m, void *v, loff_t *pos)
{
	struct resource *p = v;
96

97
	(*pos)++;
98 99

	return (void *)next_resource(p, false);
100 101
}

Linus Torvalds's avatar
Linus Torvalds committed
102 103 104 105 106 107 108 109
static void r_stop(struct seq_file *m, void *v)
	__releases(resource_lock)
{
	read_unlock(&resource_lock);
}

static int r_show(struct seq_file *m, void *v)
{
110
	struct resource *root = pde_data(file_inode(m->file));
Linus Torvalds's avatar
Linus Torvalds committed
111
	struct resource *r = v, *p;
112
	unsigned long long start, end;
Linus Torvalds's avatar
Linus Torvalds committed
113 114 115 116 117 118
	int width = root->end < 0x10000 ? 4 : 8;
	int depth;

	for (depth = 0, p = r; depth < MAX_IORES_LEVEL; depth++, p = p->parent)
		if (p->parent == root)
			break;
119 120 121 122 123 124 125 126

	if (file_ns_capable(m->file, &init_user_ns, CAP_SYS_ADMIN)) {
		start = r->start;
		end = r->end;
	} else {
		start = end = 0;
	}

127
	seq_printf(m, "%*s%0*llx-%0*llx : %s\n",
Linus Torvalds's avatar
Linus Torvalds committed
128
			depth * 2, "",
129 130
			width, start,
			width, end,
Linus Torvalds's avatar
Linus Torvalds committed
131 132 133 134
			r->name ? r->name : "<BAD>");
	return 0;
}

135
static const struct seq_operations resource_op = {
Linus Torvalds's avatar
Linus Torvalds committed
136 137 138 139 140 141 142 143
	.start	= r_start,
	.next	= r_next,
	.stop	= r_stop,
	.show	= r_show,
};

static int __init ioresources_init(void)
{
144 145 146
	proc_create_seq_data("ioports", 0, NULL, &resource_op,
			&ioport_resource);
	proc_create_seq_data("iomem", 0, NULL, &resource_op, &iomem_resource);
Linus Torvalds's avatar
Linus Torvalds committed
147 148 149 150 151 152
	return 0;
}
__initcall(ioresources_init);

#endif /* CONFIG_PROC_FS */

153 154
static void free_resource(struct resource *res)
{
155 156 157 158 159 160 161
	/**
	 * If the resource was allocated using memblock early during boot
	 * we'll leak it here: we can only return full pages back to the
	 * buddy and trying to be smart and reusing them eventually in
	 * alloc_resource() overcomplicates resource handling.
	 */
	if (res && PageSlab(virt_to_head_page(res)))
162 163 164 165 166
		kfree(res);
}

static struct resource *alloc_resource(gfp_t flags)
{
167
	return kzalloc(sizeof(struct resource), flags);
168 169
}

Linus Torvalds's avatar
Linus Torvalds committed
170 171 172
/* Return the conflict entry if you can't request it */
static struct resource * __request_resource(struct resource *root, struct resource *new)
{
173 174
	resource_size_t start = new->start;
	resource_size_t end = new->end;
Linus Torvalds's avatar
Linus Torvalds committed
175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198
	struct resource *tmp, **p;

	if (end < start)
		return root;
	if (start < root->start)
		return root;
	if (end > root->end)
		return root;
	p = &root->child;
	for (;;) {
		tmp = *p;
		if (!tmp || tmp->start > end) {
			new->sibling = tmp;
			*p = new;
			new->parent = root;
			return NULL;
		}
		p = &tmp->sibling;
		if (tmp->end < start)
			continue;
		return tmp;
	}
}

199
static int __release_resource(struct resource *old, bool release_child)
Linus Torvalds's avatar
Linus Torvalds committed
200
{
201
	struct resource *tmp, **p, *chd;
Linus Torvalds's avatar
Linus Torvalds committed
202 203 204 205 206 207 208

	p = &old->parent->child;
	for (;;) {
		tmp = *p;
		if (!tmp)
			break;
		if (tmp == old) {
209 210 211 212 213 214 215 216 217 218 219
			if (release_child || !(tmp->child)) {
				*p = tmp->sibling;
			} else {
				for (chd = tmp->child;; chd = chd->sibling) {
					chd->parent = tmp->parent;
					if (!(chd->sibling))
						break;
				}
				*p = tmp->child;
				chd->sibling = tmp->sibling;
			}
Linus Torvalds's avatar
Linus Torvalds committed
220 221 222 223 224 225 226 227
			old->parent = NULL;
			return 0;
		}
		p = &tmp->sibling;
	}
	return -EINVAL;
}

228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257
static void __release_child_resources(struct resource *r)
{
	struct resource *tmp, *p;
	resource_size_t size;

	p = r->child;
	r->child = NULL;
	while (p) {
		tmp = p;
		p = p->sibling;

		tmp->parent = NULL;
		tmp->sibling = NULL;
		__release_child_resources(tmp);

		printk(KERN_DEBUG "release child resource %pR\n", tmp);
		/* need to restore size, and keep flags */
		size = resource_size(tmp);
		tmp->start = 0;
		tmp->end = size - 1;
	}
}

void release_child_resources(struct resource *r)
{
	write_lock(&resource_lock);
	__release_child_resources(r);
	write_unlock(&resource_lock);
}

258
/**
259
 * request_resource_conflict - request and reserve an I/O or memory resource
260 261 262
 * @root: root resource descriptor
 * @new: resource descriptor desired by caller
 *
263
 * Returns 0 for success, conflict resource on error.
264
 */
265
struct resource *request_resource_conflict(struct resource *root, struct resource *new)
Linus Torvalds's avatar
Linus Torvalds committed
266 267 268 269 270 271
{
	struct resource *conflict;

	write_lock(&resource_lock);
	conflict = __request_resource(root, new);
	write_unlock(&resource_lock);
272 273 274 275 276 277 278 279 280 281 282 283 284 285 286
	return conflict;
}

/**
 * request_resource - request and reserve an I/O or memory resource
 * @root: root resource descriptor
 * @new: resource descriptor desired by caller
 *
 * Returns 0 for success, negative error code on error.
 */
int request_resource(struct resource *root, struct resource *new)
{
	struct resource *conflict;

	conflict = request_resource_conflict(root, new);
Linus Torvalds's avatar
Linus Torvalds committed
287 288 289 290 291
	return conflict ? -EBUSY : 0;
}

EXPORT_SYMBOL(request_resource);

292 293 294 295
/**
 * release_resource - release a previously reserved resource
 * @old: resource pointer
 */
Linus Torvalds's avatar
Linus Torvalds committed
296 297 298 299 300
int release_resource(struct resource *old)
{
	int retval;

	write_lock(&resource_lock);
301
	retval = __release_resource(old, true);
Linus Torvalds's avatar
Linus Torvalds committed
302 303 304 305 306 307
	write_unlock(&resource_lock);
	return retval;
}

EXPORT_SYMBOL(release_resource);

308
/**
309 310
 * find_next_iomem_res - Finds the lowest iomem resource that covers part of
 *			 [@start..@end].
311
 *
312 313
 * If a resource is found, returns 0 and @*res is overwritten with the part
 * of the resource that's within [@start..@end]; if none is found, returns
314
 * -ENODEV.  Returns -EINVAL for invalid parameters.
315
 *
316 317 318 319 320
 * @start:	start address of the resource searched for
 * @end:	end address of same resource
 * @flags:	flags which the resource must have
 * @desc:	descriptor the resource must have
 * @res:	return ptr, if resource found
321 322 323
 *
 * The caller must specify @start, @end, @flags, and @desc
 * (which may be IORES_DESC_NONE).
324
 */
325 326
static int find_next_iomem_res(resource_size_t start, resource_size_t end,
			       unsigned long flags, unsigned long desc,
327
			       struct resource *res)
328 329 330
{
	struct resource *p;

331 332
	if (!res)
		return -EINVAL;
333

334 335
	if (start >= end)
		return -EINVAL;
336

337 338
	read_lock(&resource_lock);

339
	for_each_resource(&iomem_resource, p, false) {
340
		/* If we passed the resource we are looking for, stop */
341 342 343 344
		if (p->start > end) {
			p = NULL;
			break;
		}
345 346 347 348 349 350 351 352 353 354 355 356

		/* Skip until we find a range that matches what we look for */
		if (p->end < start)
			continue;

		if ((p->flags & flags) != flags)
			continue;
		if ((desc != IORES_DESC_NONE) && (desc != p->desc))
			continue;

		/* Found a match, break */
		break;
357
	}
358

359 360
	if (p) {
		/* copy data */
361 362 363 364 365 366 367
		*res = (struct resource) {
			.start = max(start, p->start),
			.end = min(end, p->end),
			.flags = p->flags,
			.desc = p->desc,
			.parent = p->parent,
		};
368 369
	}

370
	read_unlock(&resource_lock);
371
	return p ? 0 : -ENODEV;
372
}
KAMEZAWA Hiroyuki's avatar
KAMEZAWA Hiroyuki committed
373

374 375
static int __walk_iomem_res_desc(resource_size_t start, resource_size_t end,
				 unsigned long flags, unsigned long desc,
376
				 void *arg,
377
				 int (*func)(struct resource *, void *))
378
{
379
	struct resource res;
380
	int ret = -EINVAL;
381

382
	while (start < end &&
383
	       !find_next_iomem_res(start, end, flags, desc, &res)) {
384
		ret = (*func)(&res, arg);
385 386 387
		if (ret)
			break;

388
		start = res.end + 1;
389 390 391 392 393
	}

	return ret;
}

394
/**
395 396 397
 * walk_iomem_res_desc - Walks through iomem resources and calls func()
 *			 with matching resource ranges.
 * *
398 399 400 401
 * @desc: I/O resource descriptor. Use IORES_DESC_NONE to skip @desc check.
 * @flags: I/O resource flags
 * @start: start addr
 * @end: end addr
402 403
 * @arg: function argument for the callback @func
 * @func: callback function that is called for each qualifying resource area
404
 *
405 406 407
 * All the memory ranges which overlap start,end and also match flags and
 * desc are valid candidates.
 *
408 409 410 411
 * NOTE: For a new descriptor search, define a new IORES_DESC in
 * <linux/ioport.h> and set it in 'desc' of a target resource entry.
 */
int walk_iomem_res_desc(unsigned long desc, unsigned long flags, u64 start,
412
		u64 end, void *arg, int (*func)(struct resource *, void *))
413
{
414
	return __walk_iomem_res_desc(start, end, flags, desc, arg, func);
415
}
416
EXPORT_SYMBOL_GPL(walk_iomem_res_desc);
417

418
/*
419 420 421 422 423
 * This function calls the @func callback against all memory ranges of type
 * System RAM which are marked as IORESOURCE_SYSTEM_RAM and IORESOUCE_BUSY.
 * Now, this function is only for System RAM, it deals with full ranges and
 * not PFNs. If resources are not PFN-aligned, dealing with PFNs can truncate
 * ranges.
424 425
 */
int walk_system_ram_res(u64 start, u64 end, void *arg,
426
			int (*func)(struct resource *, void *))
427
{
428
	unsigned long flags = IORESOURCE_SYSTEM_RAM | IORESOURCE_BUSY;
429

430 431
	return __walk_iomem_res_desc(start, end, flags, IORES_DESC_NONE, arg,
				     func);
432 433
}

434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488
/*
 * This function, being a variant of walk_system_ram_res(), calls the @func
 * callback against all memory ranges of type System RAM which are marked as
 * IORESOURCE_SYSTEM_RAM and IORESOUCE_BUSY in reversed order, i.e., from
 * higher to lower.
 */
int walk_system_ram_res_rev(u64 start, u64 end, void *arg,
				int (*func)(struct resource *, void *))
{
	struct resource res, *rams;
	int rams_size = 16, i;
	unsigned long flags;
	int ret = -1;

	/* create a list */
	rams = kvcalloc(rams_size, sizeof(struct resource), GFP_KERNEL);
	if (!rams)
		return ret;

	flags = IORESOURCE_SYSTEM_RAM | IORESOURCE_BUSY;
	i = 0;
	while ((start < end) &&
		(!find_next_iomem_res(start, end, flags, IORES_DESC_NONE, &res))) {
		if (i >= rams_size) {
			/* re-alloc */
			struct resource *rams_new;

			rams_new = kvrealloc(rams, rams_size * sizeof(struct resource),
					     (rams_size + 16) * sizeof(struct resource),
					     GFP_KERNEL);
			if (!rams_new)
				goto out;

			rams = rams_new;
			rams_size += 16;
		}

		rams[i].start = res.start;
		rams[i++].end = res.end;

		start = res.end + 1;
	}

	/* go reverse */
	for (i--; i >= 0; i--) {
		ret = (*func)(&rams[i], arg);
		if (ret)
			break;
	}

out:
	kvfree(rams);
	return ret;
}

489 490 491 492 493 494 495
/*
 * This function calls the @func callback against all memory ranges, which
 * are ranges marked as IORESOURCE_MEM and IORESOUCE_BUSY.
 */
int walk_mem_res(u64 start, u64 end, void *arg,
		 int (*func)(struct resource *, void *))
{
496
	unsigned long flags = IORESOURCE_MEM | IORESOURCE_BUSY;
497

498 499
	return __walk_iomem_res_desc(start, end, flags, IORES_DESC_NONE, arg,
				     func);
500 501
}

KAMEZAWA Hiroyuki's avatar
KAMEZAWA Hiroyuki committed
502
/*
503 504 505
 * This function calls the @func callback against all memory ranges of type
 * System RAM which are marked as IORESOURCE_SYSTEM_RAM and IORESOUCE_BUSY.
 * It is to be used only for System RAM.
KAMEZAWA Hiroyuki's avatar
KAMEZAWA Hiroyuki committed
506 507
 */
int walk_system_ram_range(unsigned long start_pfn, unsigned long nr_pages,
508
			  void *arg, int (*func)(unsigned long, unsigned long, void *))
509
{
510 511
	resource_size_t start, end;
	unsigned long flags;
512
	struct resource res;
513
	unsigned long pfn, end_pfn;
514
	int ret = -EINVAL;
KAMEZAWA Hiroyuki's avatar
KAMEZAWA Hiroyuki committed
515

516 517 518 519
	start = (u64) start_pfn << PAGE_SHIFT;
	end = ((u64)(start_pfn + nr_pages) << PAGE_SHIFT) - 1;
	flags = IORESOURCE_SYSTEM_RAM | IORESOURCE_BUSY;
	while (start < end &&
520
	       !find_next_iomem_res(start, end, flags, IORES_DESC_NONE, &res)) {
521 522
		pfn = PFN_UP(res.start);
		end_pfn = PFN_DOWN(res.end + 1);
523
		if (end_pfn > pfn)
524
			ret = (*func)(pfn, end_pfn - pfn, arg);
525 526
		if (ret)
			break;
527
		start = res.end + 1;
528 529 530 531
	}
	return ret;
}

532 533 534 535
static int __is_ram(unsigned long pfn, unsigned long nr_pages, void *arg)
{
	return 1;
}
536

537 538
/*
 * This generic page_is_ram() returns true if specified address is
539
 * registered as System RAM in iomem_resource list.
540
 */
541
int __weak page_is_ram(unsigned long pfn)
542 543 544
{
	return walk_system_ram_range(pfn, 1, NULL, __is_ram) == 1;
}
545
EXPORT_SYMBOL_GPL(page_is_ram);
546

547 548 549
static int __region_intersects(struct resource *parent, resource_size_t start,
			       size_t size, unsigned long flags,
			       unsigned long desc)
550 551 552 553 554 555 556 557
{
	struct resource res;
	int type = 0; int other = 0;
	struct resource *p;

	res.start = start;
	res.end = start + size - 1;

558
	for (p = parent->child; p ; p = p->sibling) {
559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575
		bool is_type = (((p->flags & flags) == flags) &&
				((desc == IORES_DESC_NONE) ||
				 (desc == p->desc)));

		if (resource_overlaps(p, &res))
			is_type ? type++ : other++;
	}

	if (type == 0)
		return REGION_DISJOINT;

	if (other == 0)
		return REGION_INTERSECTS;

	return REGION_MIXED;
}

576 577 578 579
/**
 * region_intersects() - determine intersection of region with known resources
 * @start: region start address
 * @size: size of region
580 581
 * @flags: flags of resource (in iomem_resource)
 * @desc: descriptor of resource (in iomem_resource) or IORES_DESC_NONE
582
 *
583
 * Check if the specified region partially overlaps or fully eclipses a
584 585 586 587 588 589 590
 * resource identified by @flags and @desc (optional with IORES_DESC_NONE).
 * Return REGION_DISJOINT if the region does not overlap @flags/@desc,
 * return REGION_MIXED if the region overlaps @flags/@desc and another
 * resource, and return REGION_INTERSECTS if the region overlaps @flags/@desc
 * and no other defined resource. Note that REGION_INTERSECTS is also
 * returned in the case when the specified region overlaps RAM and undefined
 * memory holes.
591 592 593 594
 *
 * region_intersect() is used by memory remapping functions to ensure
 * the user is not remapping RAM and is a vast speed up over walking
 * through the resource table page by page.
595
 */
596 597
int region_intersects(resource_size_t start, size_t size, unsigned long flags,
		      unsigned long desc)
598
{
599
	int ret;
600

601
	read_lock(&resource_lock);
602
	ret = __region_intersects(&iomem_resource, start, size, flags, desc);
603
	read_unlock(&resource_lock);
604

605
	return ret;
606
}
607
EXPORT_SYMBOL_GPL(region_intersects);
608

609 610 611 612
void __weak arch_remove_reservations(struct resource *avail)
{
}

613 614 615 616 617 618 619 620
static resource_size_t simple_align_resource(void *data,
					     const struct resource *avail,
					     resource_size_t size,
					     resource_size_t align)
{
	return avail->start;
}

621 622 623 624 625 626 627 628 629
static void resource_clip(struct resource *res, resource_size_t min,
			  resource_size_t max)
{
	if (res->start < min)
		res->start = min;
	if (res->end > max)
		res->end = max;
}

Linus Torvalds's avatar
Linus Torvalds committed
630
/*
631
 * Find empty space in the resource tree with the given range and
632
 * alignment constraints
Linus Torvalds's avatar
Linus Torvalds committed
633
 */
634 635 636
static int __find_resource_space(struct resource *root, struct resource *old,
				 struct resource *new, resource_size_t size,
				 struct resource_constraint *constraint)
Linus Torvalds's avatar
Linus Torvalds committed
637 638
{
	struct resource *this = root->child;
639
	struct resource tmp = *new, avail, alloc;
Linus Torvalds's avatar
Linus Torvalds committed
640

641
	tmp.start = root->start;
Linus Torvalds's avatar
Linus Torvalds committed
642
	/*
643 644
	 * Skip past an allocated resource that starts at 0, since the assignment
	 * of this->start - 1 to tmp->end below would cause an underflow.
Linus Torvalds's avatar
Linus Torvalds committed
645
	 */
646 647
	if (this && this->start == root->start) {
		tmp.start = (this == old) ? old->start : this->end + 1;
Linus Torvalds's avatar
Linus Torvalds committed
648 649
		this = this->sibling;
	}
650
	for(;;) {
Linus Torvalds's avatar
Linus Torvalds committed
651
		if (this)
652
			tmp.end = (this == old) ?  this->end : this->start - 1;
Linus Torvalds's avatar
Linus Torvalds committed
653
		else
654
			tmp.end = root->end;
655

656 657 658
		if (tmp.end < tmp.start)
			goto next;

659
		resource_clip(&tmp, constraint->min, constraint->max);
660
		arch_remove_reservations(&tmp);
661

662
		/* Check for overflow after ALIGN() */
663
		avail.start = ALIGN(tmp.start, constraint->align);
664
		avail.end = tmp.end;
665
		avail.flags = new->flags & ~IORESOURCE_UNSET;
666
		if (avail.start >= tmp.start) {
667
			alloc.flags = avail.flags;
668 669
			alloc.start = constraint->alignf(constraint->alignf_data, &avail,
					size, constraint->align);
670
			alloc.end = alloc.start + size - 1;
671 672
			if (alloc.start <= alloc.end &&
			    resource_contains(&avail, &alloc)) {
673 674 675 676
				new->start = alloc.start;
				new->end = alloc.end;
				return 0;
			}
Linus Torvalds's avatar
Linus Torvalds committed
677
		}
678 679

next:		if (!this || this->end == root->end)
Linus Torvalds's avatar
Linus Torvalds committed
680
			break;
681

682 683
		if (this != old)
			tmp.start = this->end + 1;
Linus Torvalds's avatar
Linus Torvalds committed
684 685 686 687 688
		this = this->sibling;
	}
	return -EBUSY;
}

689
/*
690
 * Find empty space in the resource tree given range and alignment.
691
 */
692 693 694
static int find_resource_space(struct resource *root, struct resource *new,
			       resource_size_t size,
			       struct resource_constraint *constraint)
695
{
696
	return  __find_resource_space(root, NULL, new, size, constraint);
697 698
}

699
/**
700 701 702 703 704 705 706 707 708
 * reallocate_resource - allocate a slot in the resource tree given range & alignment.
 *	The resource will be relocated if the new size cannot be reallocated in the
 *	current location.
 *
 * @root: root resource descriptor
 * @old:  resource descriptor desired by caller
 * @newsize: new size of the resource descriptor
 * @constraint: the size and alignment constraints to be met.
 */
709
static int reallocate_resource(struct resource *root, struct resource *old,
710 711
			       resource_size_t newsize,
			       struct resource_constraint *constraint)
712 713 714 715 716 717 718
{
	int err=0;
	struct resource new = *old;
	struct resource *conflict;

	write_lock(&resource_lock);

719
	if ((err = __find_resource_space(root, old, &new, newsize, constraint)))
720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736
		goto out;

	if (resource_contains(&new, old)) {
		old->start = new.start;
		old->end = new.end;
		goto out;
	}

	if (old->child) {
		err = -EBUSY;
		goto out;
	}

	if (resource_contains(old, &new)) {
		old->start = new.start;
		old->end = new.end;
	} else {
737
		__release_resource(old, true);
738 739 740 741 742 743 744 745 746 747 748 749 750
		*old = new;
		conflict = __request_resource(root, old);
		BUG_ON(conflict);
	}
out:
	write_unlock(&resource_lock);
	return err;
}


/**
 * allocate_resource - allocate empty slot in the resource tree given range & alignment.
 * 	The resource will be reallocated with a new size if it was already allocated
751 752 753
 * @root: root resource descriptor
 * @new: resource descriptor desired by caller
 * @size: requested resource region size
754 755
 * @min: minimum boundary to allocate
 * @max: maximum boundary to allocate
756 757 758
 * @align: alignment requested, in bytes
 * @alignf: alignment function, optional, called if not NULL
 * @alignf_data: arbitrary data to pass to the @alignf function
Linus Torvalds's avatar
Linus Torvalds committed
759 760
 */
int allocate_resource(struct resource *root, struct resource *new,
761 762
		      resource_size_t size, resource_size_t min,
		      resource_size_t max, resource_size_t align,
763
		      resource_size_t (*alignf)(void *,
764
						const struct resource *,
765 766
						resource_size_t,
						resource_size_t),
Linus Torvalds's avatar
Linus Torvalds committed
767 768 769
		      void *alignf_data)
{
	int err;
770
	struct resource_constraint constraint;
Linus Torvalds's avatar
Linus Torvalds committed
771

772 773 774
	if (!alignf)
		alignf = simple_align_resource;

775 776 777 778 779 780 781 782 783 784 785 786
	constraint.min = min;
	constraint.max = max;
	constraint.align = align;
	constraint.alignf = alignf;
	constraint.alignf_data = alignf_data;

	if ( new->parent ) {
		/* resource is already allocated, try reallocating with
		   the new constraints */
		return reallocate_resource(root, new, size, &constraint);
	}

Linus Torvalds's avatar
Linus Torvalds committed
787
	write_lock(&resource_lock);
788
	err = find_resource_space(root, new, size, &constraint);
Linus Torvalds's avatar
Linus Torvalds committed
789 790 791 792 793 794 795 796
	if (err >= 0 && __request_resource(root, new))
		err = -EBUSY;
	write_unlock(&resource_lock);
	return err;
}

EXPORT_SYMBOL(allocate_resource);

797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817
/**
 * lookup_resource - find an existing resource by a resource start address
 * @root: root resource descriptor
 * @start: resource start address
 *
 * Returns a pointer to the resource if found, NULL otherwise
 */
struct resource *lookup_resource(struct resource *root, resource_size_t start)
{
	struct resource *res;

	read_lock(&resource_lock);
	for (res = root->child; res; res = res->sibling) {
		if (res->start == start)
			break;
	}
	read_unlock(&resource_lock);

	return res;
}

818 819 820
/*
 * Insert a resource into the resource tree. If successful, return NULL,
 * otherwise return the conflicting resource (compare to __request_resource())
Linus Torvalds's avatar
Linus Torvalds committed
821
 */
822
static struct resource * __insert_resource(struct resource *parent, struct resource *new)
Linus Torvalds's avatar
Linus Torvalds committed
823 824 825
{
	struct resource *first, *next;

826 827 828
	for (;; parent = first) {
		first = __request_resource(parent, new);
		if (!first)
829
			return first;
830 831

		if (first == parent)
832
			return first;
833 834
		if (WARN_ON(first == new))	/* duplicated insertion */
			return first;
835 836 837 838 839

		if ((first->start > new->start) || (first->end < new->end))
			break;
		if ((first->start == new->start) && (first->end == new->end))
			break;
Linus Torvalds's avatar
Linus Torvalds committed
840 841 842 843 844
	}

	for (next = first; ; next = next->sibling) {
		/* Partial overlap? Bad, and unfixable */
		if (next->start < new->start || next->end > new->end)
845
			return next;
Linus Torvalds's avatar
Linus Torvalds committed
846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867
		if (!next->sibling)
			break;
		if (next->sibling->start > new->end)
			break;
	}

	new->parent = parent;
	new->sibling = next->sibling;
	new->child = first;

	next->sibling = NULL;
	for (next = first; next; next = next->sibling)
		next->parent = new;

	if (parent->child == first) {
		parent->child = new;
	} else {
		next = parent->child;
		while (next->sibling != first)
			next = next->sibling;
		next->sibling = new;
	}
868 869
	return NULL;
}
Linus Torvalds's avatar
Linus Torvalds committed
870

871
/**
872
 * insert_resource_conflict - Inserts resource in the resource tree
873 874 875
 * @parent: parent of the new resource
 * @new: new resource to insert
 *
876
 * Returns 0 on success, conflict resource if the resource can't be inserted.
877
 *
878
 * This function is equivalent to request_resource_conflict when no conflict
879 880 881 882
 * happens. If a conflict happens, and the conflicting resources
 * entirely fit within the range of the new resource, then the new
 * resource is inserted and the conflicting resources become children of
 * the new resource.
883 884 885
 *
 * This function is intended for producers of resources, such as FW modules
 * and bus drivers.
886
 */
887
struct resource *insert_resource_conflict(struct resource *parent, struct resource *new)
888 889 890 891 892 893
{
	struct resource *conflict;

	write_lock(&resource_lock);
	conflict = __insert_resource(parent, new);
	write_unlock(&resource_lock);
894 895 896 897 898 899 900 901 902
	return conflict;
}

/**
 * insert_resource - Inserts a resource in the resource tree
 * @parent: parent of the new resource
 * @new: new resource to insert
 *
 * Returns 0 on success, -EBUSY if the resource can't be inserted.
903 904 905
 *
 * This function is intended for producers of resources, such as FW modules
 * and bus drivers.
906 907 908 909 910 911
 */
int insert_resource(struct resource *parent, struct resource *new)
{
	struct resource *conflict;

	conflict = insert_resource_conflict(parent, new);
912 913
	return conflict ? -EBUSY : 0;
}
914
EXPORT_SYMBOL_GPL(insert_resource);
915 916 917

/**
 * insert_resource_expand_to_fit - Insert a resource into the resource tree
918
 * @root: root resource descriptor
919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944
 * @new: new resource to insert
 *
 * Insert a resource into the resource tree, possibly expanding it in order
 * to make it encompass any conflicting resources.
 */
void insert_resource_expand_to_fit(struct resource *root, struct resource *new)
{
	if (new->parent)
		return;

	write_lock(&resource_lock);
	for (;;) {
		struct resource *conflict;

		conflict = __insert_resource(root, new);
		if (!conflict)
			break;
		if (conflict == root)
			break;

		/* Ok, expand resource to cover the conflict, then try again .. */
		if (conflict->start < new->start)
			new->start = conflict->start;
		if (conflict->end > new->end)
			new->end = conflict->end;

945
		pr_info("Expanded resource %s due to conflict with %s\n", new->name, conflict->name);
946
	}
Linus Torvalds's avatar
Linus Torvalds committed
947 948
	write_unlock(&resource_lock);
}
949 950 951 952 953 954 955
/*
 * Not for general consumption, only early boot memory map parsing, PCI
 * resource discovery, and late discovery of CXL resources are expected
 * to use this interface. The former are built-in and only the latter,
 * CXL, is a module.
 */
EXPORT_SYMBOL_NS_GPL(insert_resource_expand_to_fit, CXL);
Linus Torvalds's avatar
Linus Torvalds committed
956

957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980
/**
 * remove_resource - Remove a resource in the resource tree
 * @old: resource to remove
 *
 * Returns 0 on success, -EINVAL if the resource is not valid.
 *
 * This function removes a resource previously inserted by insert_resource()
 * or insert_resource_conflict(), and moves the children (if any) up to
 * where they were before.  insert_resource() and insert_resource_conflict()
 * insert a new resource, and move any conflicting resources down to the
 * children of the new resource.
 *
 * insert_resource(), insert_resource_conflict() and remove_resource() are
 * intended for producers of resources, such as FW modules and bus drivers.
 */
int remove_resource(struct resource *old)
{
	int retval;

	write_lock(&resource_lock);
	retval = __release_resource(old, false);
	write_unlock(&resource_lock);
	return retval;
}
981
EXPORT_SYMBOL_GPL(remove_resource);
982

983 984
static int __adjust_resource(struct resource *res, resource_size_t start,
				resource_size_t size)
Linus Torvalds's avatar
Linus Torvalds committed
985 986
{
	struct resource *tmp, *parent = res->parent;
987
	resource_size_t end = start + size - 1;
Linus Torvalds's avatar
Linus Torvalds committed
988 989
	int result = -EBUSY;

990 991 992
	if (!parent)
		goto skip;

Linus Torvalds's avatar
Linus Torvalds committed
993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006
	if ((start < parent->start) || (end > parent->end))
		goto out;

	if (res->sibling && (res->sibling->start <= end))
		goto out;

	tmp = parent->child;
	if (tmp != res) {
		while (tmp->sibling != res)
			tmp = tmp->sibling;
		if (start <= tmp->end)
			goto out;
	}

1007 1008 1009 1010 1011
skip:
	for (tmp = res->child; tmp; tmp = tmp->sibling)
		if ((tmp->start < start) || (tmp->end > end))
			goto out;

Linus Torvalds's avatar
Linus Torvalds committed
1012 1013 1014 1015 1016
	res->start = start;
	res->end = end;
	result = 0;

 out:
1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030
	return result;
}

/**
 * adjust_resource - modify a resource's start and size
 * @res: resource to modify
 * @start: new start value
 * @size: new size
 *
 * Given an existing resource, change its start and size to match the
 * arguments.  Returns 0 on success, -EBUSY if it can't fit.
 * Existing children of the resource are assumed to be immutable.
 */
int adjust_resource(struct resource *res, resource_size_t start,
1031
		    resource_size_t size)
1032 1033 1034 1035 1036
{
	int result;

	write_lock(&resource_lock);
	result = __adjust_resource(res, start, size);
Linus Torvalds's avatar
Linus Torvalds committed
1037 1038 1039
	write_unlock(&resource_lock);
	return result;
}
1040
EXPORT_SYMBOL(adjust_resource);
Linus Torvalds's avatar
Linus Torvalds committed
1041

1042 1043 1044
static void __init
__reserve_region_with_split(struct resource *root, resource_size_t start,
			    resource_size_t end, const char *name)
1045 1046 1047
{
	struct resource *parent = root;
	struct resource *conflict;
1048
	struct resource *res = alloc_resource(GFP_ATOMIC);
1049
	struct resource *next_res = NULL;
1050
	int type = resource_type(root);
1051 1052 1053 1054 1055 1056 1057

	if (!res)
		return;

	res->name = name;
	res->start = start;
	res->end = end;
1058
	res->flags = type | IORESOURCE_BUSY;
1059
	res->desc = IORES_DESC_NONE;
1060

1061
	while (1) {
1062

1063 1064 1065 1066 1067 1068 1069 1070
		conflict = __request_resource(parent, res);
		if (!conflict) {
			if (!next_res)
				break;
			res = next_res;
			next_res = NULL;
			continue;
		}
1071

1072 1073 1074
		/* conflict covered whole area */
		if (conflict->start <= res->start &&
				conflict->end >= res->end) {
1075
			free_resource(res);
1076 1077 1078 1079 1080 1081 1082 1083 1084
			WARN_ON(next_res);
			break;
		}

		/* failed, split and try again */
		if (conflict->start > res->start) {
			end = res->end;
			res->end = conflict->start - 1;
			if (conflict->end < end) {
1085
				next_res = alloc_resource(GFP_ATOMIC);
1086
				if (!next_res) {
1087
					free_resource(res);
1088 1089 1090 1091 1092
					break;
				}
				next_res->name = name;
				next_res->start = conflict->end + 1;
				next_res->end = end;
1093
				next_res->flags = type | IORESOURCE_BUSY;
1094
				next_res->desc = IORES_DESC_NONE;
1095 1096 1097 1098 1099
			}
		} else {
			res->start = conflict->end + 1;
		}
	}
1100 1101 1102

}

1103 1104 1105
void __init
reserve_region_with_split(struct resource *root, resource_size_t start,
			  resource_size_t end, const char *name)
1106
{
1107 1108
	int abort = 0;

1109
	write_lock(&resource_lock);
1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128
	if (root->start > start || root->end < end) {
		pr_err("requested range [0x%llx-0x%llx] not in root %pr\n",
		       (unsigned long long)start, (unsigned long long)end,
		       root);
		if (start > root->end || end < root->start)
			abort = 1;
		else {
			if (end > root->end)
				end = root->end;
			if (start < root->start)
				start = root->start;
			pr_err("fixing request to [0x%llx-0x%llx]\n",
			       (unsigned long long)start,
			       (unsigned long long)end);
		}
		dump_stack();
	}
	if (!abort)
		__reserve_region_with_split(root, start, end, name);
1129 1130 1131
	write_unlock(&resource_lock);
}

1132 1133 1134 1135 1136 1137 1138 1139 1140 1141
/**
 * resource_alignment - calculate resource's alignment
 * @res: resource pointer
 *
 * Returns alignment on success, 0 (invalid alignment) on failure.
 */
resource_size_t resource_alignment(struct resource *res)
{
	switch (res->flags & (IORESOURCE_SIZEALIGN | IORESOURCE_STARTALIGN)) {
	case IORESOURCE_SIZEALIGN:
Magnus Damm's avatar
Magnus Damm committed
1142
		return resource_size(res);
1143 1144 1145 1146 1147 1148 1149
	case IORESOURCE_STARTALIGN:
		return res->start;
	default:
		return 0;
	}
}

Linus Torvalds's avatar
Linus Torvalds committed
1150 1151 1152 1153 1154 1155
/*
 * This is compatibility stuff for IO resources.
 *
 * Note how this, unlike the above, knows about
 * the IO flag meanings (busy etc).
 *
1156
 * request_region creates a new busy region.
Linus Torvalds's avatar
Linus Torvalds committed
1157
 *
1158 1159 1160
 * release_region releases a matching busy region.
 */

1161 1162
static DECLARE_WAIT_QUEUE_HEAD(muxed_resource_wait);

1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211
static struct inode *iomem_inode;

#ifdef CONFIG_IO_STRICT_DEVMEM
static void revoke_iomem(struct resource *res)
{
	/* pairs with smp_store_release() in iomem_init_inode() */
	struct inode *inode = smp_load_acquire(&iomem_inode);

	/*
	 * Check that the initialization has completed. Losing the race
	 * is ok because it means drivers are claiming resources before
	 * the fs_initcall level of init and prevent iomem_get_mapping users
	 * from establishing mappings.
	 */
	if (!inode)
		return;

	/*
	 * The expectation is that the driver has successfully marked
	 * the resource busy by this point, so devmem_is_allowed()
	 * should start returning false, however for performance this
	 * does not iterate the entire resource range.
	 */
	if (devmem_is_allowed(PHYS_PFN(res->start)) &&
	    devmem_is_allowed(PHYS_PFN(res->end))) {
		/*
		 * *cringe* iomem=relaxed says "go ahead, what's the
		 * worst that can happen?"
		 */
		return;
	}

	unmap_mapping_range(inode->i_mapping, res->start, resource_size(res), 1);
}
#else
static void revoke_iomem(struct resource *res) {}
#endif

struct address_space *iomem_get_mapping(void)
{
	/*
	 * This function is only called from file open paths, hence guaranteed
	 * that fs_initcalls have completed and no need to check for NULL. But
	 * since revoke_iomem can be called before the initcall we still need
	 * the barrier to appease checkers.
	 */
	return smp_load_acquire(&iomem_inode)->i_mapping;
}

1212
static int __request_region_locked(struct resource *res, struct resource *parent,
1213
				   resource_size_t start, resource_size_t n,
1214
				   const char *name, int flags)
Linus Torvalds's avatar
Linus Torvalds committed
1215
{
1216
	DECLARE_WAITQUEUE(wait, current);
1217 1218 1219 1220 1221 1222 1223 1224

	res->name = name;
	res->start = start;
	res->end = start + n - 1;

	for (;;) {
		struct resource *conflict;

1225 1226 1227 1228
		res->flags = resource_type(parent) | resource_ext_type(parent);
		res->flags |= IORESOURCE_BUSY | flags;
		res->desc = parent->desc;

1229 1230
		conflict = __request_resource(parent, res);
		if (!conflict)
Linus Torvalds's avatar
Linus Torvalds committed
1231
			break;
1232 1233 1234 1235 1236 1237 1238 1239 1240
		/*
		 * mm/hmm.c reserves physical addresses which then
		 * become unavailable to other users.  Conflicts are
		 * not expected.  Warn to aid debugging if encountered.
		 */
		if (conflict->desc == IORES_DESC_DEVICE_PRIVATE_MEMORY) {
			pr_warn("Unaddressable device %s %pR conflicts with %pR",
				conflict->name, conflict, res);
		}
1241
		if (conflict != parent) {
1242 1243
			if (!(conflict->flags & IORESOURCE_BUSY)) {
				parent = conflict;
1244
				continue;
1245
			}
Linus Torvalds's avatar
Linus Torvalds committed
1246
		}
1247 1248 1249 1250 1251 1252 1253 1254 1255
		if (conflict->flags & flags & IORESOURCE_MUXED) {
			add_wait_queue(&muxed_resource_wait, &wait);
			write_unlock(&resource_lock);
			set_current_state(TASK_UNINTERRUPTIBLE);
			schedule();
			remove_wait_queue(&muxed_resource_wait, &wait);
			write_lock(&resource_lock);
			continue;
		}
1256
		/* Uhhuh, that didn't work out.. */
1257
		return -EBUSY;
Linus Torvalds's avatar
Linus Torvalds committed
1258
	}
1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282

	return 0;
}

/**
 * __request_region - create a new busy resource region
 * @parent: parent resource descriptor
 * @start: resource start address
 * @n: resource region size
 * @name: reserving caller's ID string
 * @flags: IO resource flags
 */
struct resource *__request_region(struct resource *parent,
				  resource_size_t start, resource_size_t n,
				  const char *name, int flags)
{
	struct resource *res = alloc_resource(GFP_KERNEL);
	int ret;

	if (!res)
		return NULL;

	write_lock(&resource_lock);
	ret = __request_region_locked(res, parent, start, n, name, flags);
1283
	write_unlock(&resource_lock);
1284

1285 1286 1287 1288 1289 1290
	if (ret) {
		free_resource(res);
		return NULL;
	}

	if (parent == &iomem_resource)
1291
		revoke_iomem(res);
1292

Linus Torvalds's avatar
Linus Torvalds committed
1293 1294 1295 1296
	return res;
}
EXPORT_SYMBOL(__request_region);

1297 1298 1299 1300 1301 1302 1303 1304
/**
 * __release_region - release a previously reserved resource region
 * @parent: parent resource descriptor
 * @start: resource start address
 * @n: resource region size
 *
 * The described resource region must match a currently busy region.
 */
1305
void __release_region(struct resource *parent, resource_size_t start,
1306
		      resource_size_t n)
Linus Torvalds's avatar
Linus Torvalds committed
1307 1308
{
	struct resource **p;
1309
	resource_size_t end;
Linus Torvalds's avatar
Linus Torvalds committed
1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329

	p = &parent->child;
	end = start + n - 1;

	write_lock(&resource_lock);

	for (;;) {
		struct resource *res = *p;

		if (!res)
			break;
		if (res->start <= start && res->end >= end) {
			if (!(res->flags & IORESOURCE_BUSY)) {
				p = &res->child;
				continue;
			}
			if (res->start != start || res->end != end)
				break;
			*p = res->sibling;
			write_unlock(&resource_lock);
1330 1331
			if (res->flags & IORESOURCE_MUXED)
				wake_up(&muxed_resource_wait);
1332
			free_resource(res);
Linus Torvalds's avatar
Linus Torvalds committed
1333 1334 1335 1336 1337 1338 1339
			return;
		}
		p = &res->sibling;
	}

	write_unlock(&resource_lock);

1340
	pr_warn("Trying to free nonexistent resource <%pa-%pa>\n", &start, &end);
Linus Torvalds's avatar
Linus Torvalds committed
1341 1342 1343
}
EXPORT_SYMBOL(__release_region);

1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363
#ifdef CONFIG_MEMORY_HOTREMOVE
/**
 * release_mem_region_adjustable - release a previously reserved memory region
 * @start: resource start address
 * @size: resource region size
 *
 * This interface is intended for memory hot-delete.  The requested region
 * is released from a currently busy memory resource.  The requested region
 * must either match exactly or fit into a single busy resource entry.  In
 * the latter case, the remaining resource is adjusted accordingly.
 * Existing children of the busy memory resource must be immutable in the
 * request.
 *
 * Note:
 * - Additional release conditions, such as overlapping region, can be
 *   supported after they are confirmed as valid cases.
 * - When a busy memory resource gets split into two entries, the code
 *   assumes that all children remain in the lower address entry for
 *   simplicity.  Enhance this logic when necessary.
 */
1364
void release_mem_region_adjustable(resource_size_t start, resource_size_t size)
1365
{
1366
	struct resource *parent = &iomem_resource;
1367 1368
	struct resource *new_res = NULL;
	bool alloc_nofail = false;
1369 1370 1371 1372 1373
	struct resource **p;
	struct resource *res;
	resource_size_t end;

	end = start + size - 1;
1374 1375
	if (WARN_ON_ONCE((start < parent->start) || (end > parent->end)))
		return;
1376

1377 1378 1379 1380 1381 1382 1383 1384 1385
	/*
	 * We free up quite a lot of memory on memory hotunplug (esp., memap),
	 * just before releasing the region. This is highly unlikely to
	 * fail - let's play save and make it never fail as the caller cannot
	 * perform any error handling (e.g., trying to re-add memory will fail
	 * similarly).
	 */
retry:
	new_res = alloc_resource(GFP_KERNEL | (alloc_nofail ? __GFP_NOFAIL : 0));
1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411

	p = &parent->child;
	write_lock(&resource_lock);

	while ((res = *p)) {
		if (res->start >= end)
			break;

		/* look for the next resource if it does not fit into */
		if (res->start > start || res->end < end) {
			p = &res->sibling;
			continue;
		}

		if (!(res->flags & IORESOURCE_MEM))
			break;

		if (!(res->flags & IORESOURCE_BUSY)) {
			p = &res->child;
			continue;
		}

		/* found the target resource; let's adjust accordingly */
		if (res->start == start && res->end == end) {
			/* free the whole entry */
			*p = res->sibling;
1412
			free_resource(res);
1413 1414
		} else if (res->start == start && res->end != end) {
			/* adjust the start */
1415 1416
			WARN_ON_ONCE(__adjust_resource(res, end + 1,
						       res->end - end));
1417 1418
		} else if (res->start != start && res->end == end) {
			/* adjust the end */
1419 1420
			WARN_ON_ONCE(__adjust_resource(res, res->start,
						       start - res->start));
1421
		} else {
1422
			/* split into two entries - we need a new resource */
1423
			if (!new_res) {
1424 1425 1426 1427 1428 1429
				new_res = alloc_resource(GFP_ATOMIC);
				if (!new_res) {
					alloc_nofail = true;
					write_unlock(&resource_lock);
					goto retry;
				}
1430 1431 1432 1433 1434
			}
			new_res->name = res->name;
			new_res->start = end + 1;
			new_res->end = res->end;
			new_res->flags = res->flags;
1435
			new_res->desc = res->desc;
1436 1437 1438 1439
			new_res->parent = res->parent;
			new_res->sibling = res->sibling;
			new_res->child = NULL;

1440 1441
			if (WARN_ON_ONCE(__adjust_resource(res, res->start,
							   start - res->start)))
1442 1443 1444 1445 1446 1447 1448 1449 1450
				break;
			res->sibling = new_res;
			new_res = NULL;
		}

		break;
	}

	write_unlock(&resource_lock);
1451
	free_resource(new_res);
1452 1453 1454
}
#endif	/* CONFIG_MEMORY_HOTREMOVE */

1455 1456 1457 1458 1459 1460 1461 1462 1463 1464
#ifdef CONFIG_MEMORY_HOTPLUG
static bool system_ram_resources_mergeable(struct resource *r1,
					   struct resource *r2)
{
	/* We assume either r1 or r2 is IORESOURCE_SYSRAM_MERGEABLE. */
	return r1->flags == r2->flags && r1->end + 1 == r2->start &&
	       r1->name == r2->name && r1->desc == r2->desc &&
	       !r1->child && !r2->child;
}

1465
/**
1466
 * merge_system_ram_resource - mark the System RAM resource mergeable and try to
1467
 *	merge it with adjacent, mergeable resources
1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514
 * @res: resource descriptor
 *
 * This interface is intended for memory hotplug, whereby lots of contiguous
 * system ram resources are added (e.g., via add_memory*()) by a driver, and
 * the actual resource boundaries are not of interest (e.g., it might be
 * relevant for DIMMs). Only resources that are marked mergeable, that have the
 * same parent, and that don't have any children are considered. All mergeable
 * resources must be immutable during the request.
 *
 * Note:
 * - The caller has to make sure that no pointers to resources that are
 *   marked mergeable are used anymore after this call - the resource might
 *   be freed and the pointer might be stale!
 * - release_mem_region_adjustable() will split on demand on memory hotunplug
 */
void merge_system_ram_resource(struct resource *res)
{
	const unsigned long flags = IORESOURCE_SYSTEM_RAM | IORESOURCE_BUSY;
	struct resource *cur;

	if (WARN_ON_ONCE((res->flags & flags) != flags))
		return;

	write_lock(&resource_lock);
	res->flags |= IORESOURCE_SYSRAM_MERGEABLE;

	/* Try to merge with next item in the list. */
	cur = res->sibling;
	if (cur && system_ram_resources_mergeable(res, cur)) {
		res->end = cur->end;
		res->sibling = cur->sibling;
		free_resource(cur);
	}

	/* Try to merge with previous item in the list. */
	cur = res->parent->child;
	while (cur && cur->sibling != res)
		cur = cur->sibling;
	if (cur && system_ram_resources_mergeable(cur, res)) {
		cur->end = res->end;
		cur->sibling = res->sibling;
		free_resource(res);
	}
	write_unlock(&resource_lock);
}
#endif	/* CONFIG_MEMORY_HOTPLUG */

1515 1516 1517
/*
 * Managed region resource
 */
1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587
static void devm_resource_release(struct device *dev, void *ptr)
{
	struct resource **r = ptr;

	release_resource(*r);
}

/**
 * devm_request_resource() - request and reserve an I/O or memory resource
 * @dev: device for which to request the resource
 * @root: root of the resource tree from which to request the resource
 * @new: descriptor of the resource to request
 *
 * This is a device-managed version of request_resource(). There is usually
 * no need to release resources requested by this function explicitly since
 * that will be taken care of when the device is unbound from its driver.
 * If for some reason the resource needs to be released explicitly, because
 * of ordering issues for example, drivers must call devm_release_resource()
 * rather than the regular release_resource().
 *
 * When a conflict is detected between any existing resources and the newly
 * requested resource, an error message will be printed.
 *
 * Returns 0 on success or a negative error code on failure.
 */
int devm_request_resource(struct device *dev, struct resource *root,
			  struct resource *new)
{
	struct resource *conflict, **ptr;

	ptr = devres_alloc(devm_resource_release, sizeof(*ptr), GFP_KERNEL);
	if (!ptr)
		return -ENOMEM;

	*ptr = new;

	conflict = request_resource_conflict(root, new);
	if (conflict) {
		dev_err(dev, "resource collision: %pR conflicts with %s %pR\n",
			new, conflict->name, conflict);
		devres_free(ptr);
		return -EBUSY;
	}

	devres_add(dev, ptr);
	return 0;
}
EXPORT_SYMBOL(devm_request_resource);

static int devm_resource_match(struct device *dev, void *res, void *data)
{
	struct resource **ptr = res;

	return *ptr == data;
}

/**
 * devm_release_resource() - release a previously requested resource
 * @dev: device for which to release the resource
 * @new: descriptor of the resource to release
 *
 * Releases a resource previously requested using devm_request_resource().
 */
void devm_release_resource(struct device *dev, struct resource *new)
{
	WARN_ON(devres_release(dev, devm_resource_release, devm_resource_match,
			       new));
}
EXPORT_SYMBOL(devm_release_resource);

1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608
struct region_devres {
	struct resource *parent;
	resource_size_t start;
	resource_size_t n;
};

static void devm_region_release(struct device *dev, void *res)
{
	struct region_devres *this = res;

	__release_region(this->parent, this->start, this->n);
}

static int devm_region_match(struct device *dev, void *res, void *match_data)
{
	struct region_devres *this = res, *match = match_data;

	return this->parent == match->parent &&
		this->start == match->start && this->n == match->n;
}

1609 1610 1611
struct resource *
__devm_request_region(struct device *dev, struct resource *parent,
		      resource_size_t start, resource_size_t n, const char *name)
1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624
{
	struct region_devres *dr = NULL;
	struct resource *res;

	dr = devres_alloc(devm_region_release, sizeof(struct region_devres),
			  GFP_KERNEL);
	if (!dr)
		return NULL;

	dr->parent = parent;
	dr->start = start;
	dr->n = n;

1625
	res = __request_region(parent, start, n, name, 0);
1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645
	if (res)
		devres_add(dev, dr);
	else
		devres_free(dr);

	return res;
}
EXPORT_SYMBOL(__devm_request_region);

void __devm_release_region(struct device *dev, struct resource *parent,
			   resource_size_t start, resource_size_t n)
{
	struct region_devres match_data = { parent, start, n };

	__release_region(parent, start, n);
	WARN_ON(devres_destroy(dev, devm_region_release, devm_region_match,
			       &match_data));
}
EXPORT_SYMBOL(__devm_release_region);

Linus Torvalds's avatar
Linus Torvalds committed
1646
/*
1647
 * Reserve I/O ports or memory based on "reserve=" kernel parameter.
Linus Torvalds's avatar
Linus Torvalds committed
1648 1649 1650 1651 1652 1653 1654 1655
 */
#define MAXRESERVE 4
static int __init reserve_setup(char *str)
{
	static int reserved;
	static struct resource reserve[MAXRESERVE];

	for (;;) {
1656
		unsigned int io_start, io_num;
Linus Torvalds's avatar
Linus Torvalds committed
1657
		int x = reserved;
1658
		struct resource *parent;
Linus Torvalds's avatar
Linus Torvalds committed
1659

1660
		if (get_option(&str, &io_start) != 2)
Linus Torvalds's avatar
Linus Torvalds committed
1661
			break;
1662
		if (get_option(&str, &io_num) == 0)
Linus Torvalds's avatar
Linus Torvalds committed
1663 1664 1665
			break;
		if (x < MAXRESERVE) {
			struct resource *res = reserve + x;
1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677

			/*
			 * If the region starts below 0x10000, we assume it's
			 * I/O port space; otherwise assume it's memory.
			 */
			if (io_start < 0x10000) {
				res->flags = IORESOURCE_IO;
				parent = &ioport_resource;
			} else {
				res->flags = IORESOURCE_MEM;
				parent = &iomem_resource;
			}
Linus Torvalds's avatar
Linus Torvalds committed
1678 1679 1680
			res->name = "reserved";
			res->start = io_start;
			res->end = io_start + io_num - 1;
1681
			res->flags |= IORESOURCE_BUSY;
1682
			res->desc = IORES_DESC_NONE;
Linus Torvalds's avatar
Linus Torvalds committed
1683
			res->child = NULL;
1684
			if (request_resource(parent, res) == 0)
Linus Torvalds's avatar
Linus Torvalds committed
1685 1686 1687 1688 1689 1690
				reserved = x+1;
		}
	}
	return 1;
}
__setup("reserve=", reserve_setup);
1691 1692 1693 1694 1695 1696 1697

/*
 * Check if the requested addr and size spans more than any slot in the
 * iomem resource tree.
 */
int iomem_map_sanity_check(resource_size_t addr, unsigned long size)
{
1698
	resource_size_t end = addr + size - 1;
1699
	struct resource *p;
1700 1701 1702
	int err = 0;

	read_lock(&resource_lock);
1703
	for_each_resource(&iomem_resource, p, false) {
1704 1705 1706 1707
		/*
		 * We can probably skip the resources without
		 * IORESOURCE_IO attribute?
		 */
1708
		if (p->start > end)
1709 1710 1711
			continue;
		if (p->end < addr)
			continue;
1712
		if (PFN_DOWN(p->start) <= PFN_DOWN(addr) &&
1713
		    PFN_DOWN(p->end) >= PFN_DOWN(end))
1714
			continue;
1715 1716 1717 1718 1719 1720 1721 1722 1723
		/*
		 * if a resource is "BUSY", it's not a hardware resource
		 * but a driver mapping of such a resource; we don't want
		 * to warn for those; some drivers legitimately map only
		 * partial hardware resources. (example: vesafb)
		 */
		if (p->flags & IORESOURCE_BUSY)
			continue;

1724 1725
		pr_warn("resource sanity check: requesting [mem %pa-%pa], which spans more than %s %pR\n",
			&addr, &end, p->name, p);
1726 1727 1728 1729 1730 1731 1732
		err = -1;
		break;
	}
	read_unlock(&resource_lock);

	return err;
}
1733 1734 1735 1736 1737 1738 1739 1740

#ifdef CONFIG_STRICT_DEVMEM
static int strict_iomem_checks = 1;
#else
static int strict_iomem_checks;
#endif

/*
1741 1742 1743 1744
 * Check if an address is exclusive to the kernel and must not be mapped to
 * user space, for example, via /dev/mem.
 *
 * Returns true if exclusive to the kernel, otherwise returns false.
1745
 */
1746
bool resource_is_exclusive(struct resource *root, u64 addr, resource_size_t size)
1747
{
1748 1749
	const unsigned int exclusive_system_ram = IORESOURCE_SYSTEM_RAM |
						  IORESOURCE_EXCLUSIVE;
1750 1751
	bool skip_children = false, err = false;
	struct resource *p;
1752 1753

	read_lock(&resource_lock);
1754
	for_each_resource(root, p, skip_children) {
1755 1756
		if (p->start >= addr + size)
			break;
1757 1758
		if (p->end < addr) {
			skip_children = true;
1759
			continue;
1760 1761 1762
		}
		skip_children = false;

1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774
		/*
		 * IORESOURCE_SYSTEM_RAM resources are exclusive if
		 * IORESOURCE_EXCLUSIVE is set, even if they
		 * are not busy and even if "iomem=relaxed" is set. The
		 * responsible driver dynamically adds/removes system RAM within
		 * such an area and uncontrolled access is dangerous.
		 */
		if ((p->flags & exclusive_system_ram) == exclusive_system_ram) {
			err = true;
			break;
		}

1775 1776 1777 1778 1779
		/*
		 * A resource is exclusive if IORESOURCE_EXCLUSIVE is set
		 * or CONFIG_IO_STRICT_DEVMEM is enabled and the
		 * resource is busy.
		 */
1780
		if (!strict_iomem_checks || !(p->flags & IORESOURCE_BUSY))
1781 1782 1783
			continue;
		if (IS_ENABLED(CONFIG_IO_STRICT_DEVMEM)
				|| p->flags & IORESOURCE_EXCLUSIVE) {
1784
			err = true;
1785 1786 1787 1788 1789 1790 1791 1792
			break;
		}
	}
	read_unlock(&resource_lock);

	return err;
}

1793 1794 1795 1796 1797 1798
bool iomem_is_exclusive(u64 addr)
{
	return resource_is_exclusive(&iomem_resource, addr & PAGE_MASK,
				     PAGE_SIZE);
}

1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822
struct resource_entry *resource_list_create_entry(struct resource *res,
						  size_t extra_size)
{
	struct resource_entry *entry;

	entry = kzalloc(sizeof(*entry) + extra_size, GFP_KERNEL);
	if (entry) {
		INIT_LIST_HEAD(&entry->node);
		entry->res = res ? res : &entry->__res;
	}

	return entry;
}
EXPORT_SYMBOL(resource_list_create_entry);

void resource_list_free(struct list_head *head)
{
	struct resource_entry *entry, *tmp;

	list_for_each_entry_safe(entry, tmp, head, node)
		resource_list_destroy_entry(entry);
}
EXPORT_SYMBOL(resource_list_free);

1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877
#ifdef CONFIG_GET_FREE_REGION
#define GFR_DESCENDING		(1UL << 0)
#define GFR_REQUEST_REGION	(1UL << 1)
#define GFR_DEFAULT_ALIGN (1UL << PA_SECTION_SHIFT)

static resource_size_t gfr_start(struct resource *base, resource_size_t size,
				 resource_size_t align, unsigned long flags)
{
	if (flags & GFR_DESCENDING) {
		resource_size_t end;

		end = min_t(resource_size_t, base->end,
			    (1ULL << MAX_PHYSMEM_BITS) - 1);
		return end - size + 1;
	}

	return ALIGN(base->start, align);
}

static bool gfr_continue(struct resource *base, resource_size_t addr,
			 resource_size_t size, unsigned long flags)
{
	if (flags & GFR_DESCENDING)
		return addr > size && addr >= base->start;
	/*
	 * In the ascend case be careful that the last increment by
	 * @size did not wrap 0.
	 */
	return addr > addr - size &&
	       addr <= min_t(resource_size_t, base->end,
			     (1ULL << MAX_PHYSMEM_BITS) - 1);
}

static resource_size_t gfr_next(resource_size_t addr, resource_size_t size,
				unsigned long flags)
{
	if (flags & GFR_DESCENDING)
		return addr - size;
	return addr + size;
}

static void remove_free_mem_region(void *_res)
{
	struct resource *res = _res;

	if (res->parent)
		remove_resource(res);
	free_resource(res);
}

static struct resource *
get_free_mem_region(struct device *dev, struct resource *base,
		    resource_size_t size, const unsigned long align,
		    const char *name, const unsigned long desc,
		    const unsigned long flags)
1878
{
1879
	resource_size_t addr;
1880
	struct resource *res;
1881
	struct region_devres *dr = NULL;
1882

1883
	size = ALIGN(size, align);
1884

1885 1886 1887 1888
	res = alloc_resource(GFP_KERNEL);
	if (!res)
		return ERR_PTR(-ENOMEM);

1889
	if (dev && (flags & GFR_REQUEST_REGION)) {
1890 1891 1892 1893 1894 1895
		dr = devres_alloc(devm_region_release,
				sizeof(struct region_devres), GFP_KERNEL);
		if (!dr) {
			free_resource(res);
			return ERR_PTR(-ENOMEM);
		}
1896 1897 1898
	} else if (dev) {
		if (devm_add_action_or_reset(dev, remove_free_mem_region, res))
			return ERR_PTR(-ENOMEM);
1899 1900 1901
	}

	write_lock(&resource_lock);
1902
	for (addr = gfr_start(base, size, align, flags);
1903 1904
	     gfr_continue(base, addr, align, flags);
	     addr = gfr_next(addr, align, flags)) {
1905 1906
		if (__region_intersects(base, addr, size, 0, IORES_DESC_NONE) !=
		    REGION_DISJOINT)
1907 1908
			continue;

1909 1910 1911 1912
		if (flags & GFR_REQUEST_REGION) {
			if (__request_region_locked(res, &iomem_resource, addr,
						    size, name, 0))
				break;
1913

1914 1915 1916 1917 1918 1919
			if (dev) {
				dr->parent = &iomem_resource;
				dr->start = addr;
				dr->n = size;
				devres_add(dev, dr);
			}
1920

1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945
			res->desc = desc;
			write_unlock(&resource_lock);


			/*
			 * A driver is claiming this region so revoke any
			 * mappings.
			 */
			revoke_iomem(res);
		} else {
			res->start = addr;
			res->end = addr + size - 1;
			res->name = name;
			res->desc = desc;
			res->flags = IORESOURCE_MEM;

			/*
			 * Only succeed if the resource hosts an exclusive
			 * range after the insert
			 */
			if (__insert_resource(base, res) || res->child)
				break;

			write_unlock(&resource_lock);
		}
1946

1947 1948
		return res;
	}
1949 1950
	write_unlock(&resource_lock);

1951 1952
	if (flags & GFR_REQUEST_REGION) {
		free_resource(res);
1953
		devres_free(dr);
1954 1955
	} else if (dev)
		devm_release_action(dev, remove_free_mem_region, res);
1956 1957 1958

	return ERR_PTR(-ERANGE);
}
1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973

/**
 * devm_request_free_mem_region - find free region for device private memory
 *
 * @dev: device struct to bind the resource to
 * @size: size in bytes of the device memory to add
 * @base: resource tree to look in
 *
 * This function tries to find an empty range of physical address big enough to
 * contain the new resource, so that it can later be hotplugged as ZONE_DEVICE
 * memory, which in turn allocates struct pages.
 */
struct resource *devm_request_free_mem_region(struct device *dev,
		struct resource *base, unsigned long size)
{
1974 1975 1976 1977 1978
	unsigned long flags = GFR_DESCENDING | GFR_REQUEST_REGION;

	return get_free_mem_region(dev, base, size, GFR_DEFAULT_ALIGN,
				   dev_name(dev),
				   IORES_DESC_DEVICE_PRIVATE_MEMORY, flags);
1979
}
1980
EXPORT_SYMBOL_GPL(devm_request_free_mem_region);
1981 1982 1983 1984

struct resource *request_free_mem_region(struct resource *base,
		unsigned long size, const char *name)
{
1985 1986 1987 1988
	unsigned long flags = GFR_DESCENDING | GFR_REQUEST_REGION;

	return get_free_mem_region(NULL, base, size, GFR_DEFAULT_ALIGN, name,
				   IORES_DESC_DEVICE_PRIVATE_MEMORY, flags);
1989 1990 1991
}
EXPORT_SYMBOL_GPL(request_free_mem_region);

1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015
/**
 * alloc_free_mem_region - find a free region relative to @base
 * @base: resource that will parent the new resource
 * @size: size in bytes of memory to allocate from @base
 * @align: alignment requirements for the allocation
 * @name: resource name
 *
 * Buses like CXL, that can dynamically instantiate new memory regions,
 * need a method to allocate physical address space for those regions.
 * Allocate and insert a new resource to cover a free, unclaimed by a
 * descendant of @base, range in the span of @base.
 */
struct resource *alloc_free_mem_region(struct resource *base,
				       unsigned long size, unsigned long align,
				       const char *name)
{
	/* Default of ascending direction and insert resource */
	unsigned long flags = 0;

	return get_free_mem_region(NULL, base, size, align, name,
				   IORES_DESC_NONE, flags);
}
EXPORT_SYMBOL_NS_GPL(alloc_free_mem_region, CXL);
#endif /* CONFIG_GET_FREE_REGION */
2016

2017 2018 2019 2020 2021 2022 2023 2024 2025
static int __init strict_iomem(char *str)
{
	if (strstr(str, "relaxed"))
		strict_iomem_checks = 0;
	if (strstr(str, "strict"))
		strict_iomem_checks = 1;
	return 1;
}

2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069
static int iomem_fs_init_fs_context(struct fs_context *fc)
{
	return init_pseudo(fc, DEVMEM_MAGIC) ? 0 : -ENOMEM;
}

static struct file_system_type iomem_fs_type = {
	.name		= "iomem",
	.owner		= THIS_MODULE,
	.init_fs_context = iomem_fs_init_fs_context,
	.kill_sb	= kill_anon_super,
};

static int __init iomem_init_inode(void)
{
	static struct vfsmount *iomem_vfs_mount;
	static int iomem_fs_cnt;
	struct inode *inode;
	int rc;

	rc = simple_pin_fs(&iomem_fs_type, &iomem_vfs_mount, &iomem_fs_cnt);
	if (rc < 0) {
		pr_err("Cannot mount iomem pseudo filesystem: %d\n", rc);
		return rc;
	}

	inode = alloc_anon_inode(iomem_vfs_mount->mnt_sb);
	if (IS_ERR(inode)) {
		rc = PTR_ERR(inode);
		pr_err("Cannot allocate inode for iomem: %d\n", rc);
		simple_release_fs(&iomem_vfs_mount, &iomem_fs_cnt);
		return rc;
	}

	/*
	 * Publish iomem revocation inode initialized.
	 * Pairs with smp_load_acquire() in revoke_iomem().
	 */
	smp_store_release(&iomem_inode, inode);

	return 0;
}

fs_initcall(iomem_init_inode);

2070
__setup("iomem=", strict_iomem);