pfn_devs.c 20.8 KB
Newer Older
1
// SPDX-License-Identifier: GPL-2.0-only
2
/*
3
 * Copyright(c) 2013-2016 Intel Corporation. All rights reserved.
4
 */
5
#include <linux/memremap.h>
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
#include <linux/blkdev.h>
#include <linux/device.h>
#include <linux/genhd.h>
#include <linux/sizes.h>
#include <linux/slab.h>
#include <linux/fs.h>
#include <linux/mm.h>
#include "nd-core.h"
#include "pfn.h"
#include "nd.h"

static void nd_pfn_release(struct device *dev)
{
	struct nd_region *nd_region = to_nd_region(dev->parent);
	struct nd_pfn *nd_pfn = to_nd_pfn(dev);

22
	dev_dbg(dev, "trace\n");
23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
	nd_detach_ndns(&nd_pfn->dev, &nd_pfn->ndns);
	ida_simple_remove(&nd_region->pfn_ida, nd_pfn->id);
	kfree(nd_pfn->uuid);
	kfree(nd_pfn);
}

static struct device_type nd_pfn_device_type = {
	.name = "nd_pfn",
	.release = nd_pfn_release,
};

bool is_nd_pfn(struct device *dev)
{
	return dev ? dev->type == &nd_pfn_device_type : false;
}
EXPORT_SYMBOL(is_nd_pfn);

struct nd_pfn *to_nd_pfn(struct device *dev)
{
	struct nd_pfn *nd_pfn = container_of(dev, struct nd_pfn, dev);

	WARN_ON(!is_nd_pfn(dev));
	return nd_pfn;
}
EXPORT_SYMBOL(to_nd_pfn);

static ssize_t mode_show(struct device *dev,
		struct device_attribute *attr, char *buf)
{
52
	struct nd_pfn *nd_pfn = to_nd_pfn_safe(dev);
53 54 55 56 57 58 59 60 61 62 63 64 65 66

	switch (nd_pfn->mode) {
	case PFN_MODE_RAM:
		return sprintf(buf, "ram\n");
	case PFN_MODE_PMEM:
		return sprintf(buf, "pmem\n");
	default:
		return sprintf(buf, "none\n");
	}
}

static ssize_t mode_store(struct device *dev,
		struct device_attribute *attr, const char *buf, size_t len)
{
67
	struct nd_pfn *nd_pfn = to_nd_pfn_safe(dev);
68 69 70 71 72 73 74 75 76 77 78
	ssize_t rc = 0;

	device_lock(dev);
	nvdimm_bus_lock(dev);
	if (dev->driver)
		rc = -EBUSY;
	else {
		size_t n = len - 1;

		if (strncmp(buf, "pmem\n", n) == 0
				|| strncmp(buf, "pmem", n) == 0) {
79
			nd_pfn->mode = PFN_MODE_PMEM;
80 81 82 83 84 85 86 87 88
		} else if (strncmp(buf, "ram\n", n) == 0
				|| strncmp(buf, "ram", n) == 0)
			nd_pfn->mode = PFN_MODE_RAM;
		else if (strncmp(buf, "none\n", n) == 0
				|| strncmp(buf, "none", n) == 0)
			nd_pfn->mode = PFN_MODE_NONE;
		else
			rc = -EINVAL;
	}
89 90
	dev_dbg(dev, "result: %zd wrote: %s%s", rc, buf,
			buf[len - 1] == '\n' ? "" : "\n");
91 92 93 94 95 96 97
	nvdimm_bus_unlock(dev);
	device_unlock(dev);

	return rc ? rc : len;
}
static DEVICE_ATTR_RW(mode);

98 99 100
static ssize_t align_show(struct device *dev,
		struct device_attribute *attr, char *buf)
{
101
	struct nd_pfn *nd_pfn = to_nd_pfn_safe(dev);
102

D
Dan Williams 已提交
103
	return sprintf(buf, "%ld\n", nd_pfn->align);
104 105
}

106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128
static const unsigned long *nd_pfn_supported_alignments(void)
{
	/*
	 * This needs to be a non-static variable because the *_SIZE
	 * macros aren't always constants.
	 */
	const unsigned long supported_alignments[] = {
		PAGE_SIZE,
#ifdef CONFIG_TRANSPARENT_HUGEPAGE
		HPAGE_PMD_SIZE,
#ifdef CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD
		HPAGE_PUD_SIZE,
#endif
#endif
		0,
	};
	static unsigned long data[ARRAY_SIZE(supported_alignments)];

	memcpy(data, supported_alignments, sizeof(data));

	return data;
}

129 130 131
static ssize_t align_store(struct device *dev,
		struct device_attribute *attr, const char *buf, size_t len)
{
132
	struct nd_pfn *nd_pfn = to_nd_pfn_safe(dev);
133 134 135 136
	ssize_t rc;

	device_lock(dev);
	nvdimm_bus_lock(dev);
137 138
	rc = nd_size_select_store(dev, buf, &nd_pfn->align,
			nd_pfn_supported_alignments());
139 140
	dev_dbg(dev, "result: %zd wrote: %s%s", rc, buf,
			buf[len - 1] == '\n' ? "" : "\n");
141 142 143 144 145 146 147
	nvdimm_bus_unlock(dev);
	device_unlock(dev);

	return rc ? rc : len;
}
static DEVICE_ATTR_RW(align);

148 149 150
static ssize_t uuid_show(struct device *dev,
		struct device_attribute *attr, char *buf)
{
151
	struct nd_pfn *nd_pfn = to_nd_pfn_safe(dev);
152 153 154 155 156 157 158 159 160

	if (nd_pfn->uuid)
		return sprintf(buf, "%pUb\n", nd_pfn->uuid);
	return sprintf(buf, "\n");
}

static ssize_t uuid_store(struct device *dev,
		struct device_attribute *attr, const char *buf, size_t len)
{
161
	struct nd_pfn *nd_pfn = to_nd_pfn_safe(dev);
162 163 164 165
	ssize_t rc;

	device_lock(dev);
	rc = nd_uuid_store(dev, &nd_pfn->uuid, buf, len);
166 167
	dev_dbg(dev, "result: %zd wrote: %s%s", rc, buf,
			buf[len - 1] == '\n' ? "" : "\n");
168 169 170 171 172 173 174 175 176
	device_unlock(dev);

	return rc ? rc : len;
}
static DEVICE_ATTR_RW(uuid);

static ssize_t namespace_show(struct device *dev,
		struct device_attribute *attr, char *buf)
{
177
	struct nd_pfn *nd_pfn = to_nd_pfn_safe(dev);
178 179 180 181 182 183 184 185 186 187 188 189
	ssize_t rc;

	nvdimm_bus_lock(dev);
	rc = sprintf(buf, "%s\n", nd_pfn->ndns
			? dev_name(&nd_pfn->ndns->dev) : "");
	nvdimm_bus_unlock(dev);
	return rc;
}

static ssize_t namespace_store(struct device *dev,
		struct device_attribute *attr, const char *buf, size_t len)
{
190
	struct nd_pfn *nd_pfn = to_nd_pfn_safe(dev);
191 192 193
	ssize_t rc;

	device_lock(dev);
194
	nvdimm_bus_lock(dev);
195
	rc = nd_namespace_store(dev, &nd_pfn->ndns, buf, len);
196 197
	dev_dbg(dev, "result: %zd wrote: %s%s", rc, buf,
			buf[len - 1] == '\n' ? "" : "\n");
198
	nvdimm_bus_unlock(dev);
199
	device_unlock(dev);
200 201 202 203 204

	return rc;
}
static DEVICE_ATTR_RW(namespace);

205 206 207
static ssize_t resource_show(struct device *dev,
		struct device_attribute *attr, char *buf)
{
208
	struct nd_pfn *nd_pfn = to_nd_pfn_safe(dev);
209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233
	ssize_t rc;

	device_lock(dev);
	if (dev->driver) {
		struct nd_pfn_sb *pfn_sb = nd_pfn->pfn_sb;
		u64 offset = __le64_to_cpu(pfn_sb->dataoff);
		struct nd_namespace_common *ndns = nd_pfn->ndns;
		u32 start_pad = __le32_to_cpu(pfn_sb->start_pad);
		struct nd_namespace_io *nsio = to_nd_namespace_io(&ndns->dev);

		rc = sprintf(buf, "%#llx\n", (unsigned long long) nsio->res.start
				+ start_pad + offset);
	} else {
		/* no address to convey if the pfn instance is disabled */
		rc = -ENXIO;
	}
	device_unlock(dev);

	return rc;
}
static DEVICE_ATTR_RO(resource);

static ssize_t size_show(struct device *dev,
		struct device_attribute *attr, char *buf)
{
234
	struct nd_pfn *nd_pfn = to_nd_pfn_safe(dev);
235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258
	ssize_t rc;

	device_lock(dev);
	if (dev->driver) {
		struct nd_pfn_sb *pfn_sb = nd_pfn->pfn_sb;
		u64 offset = __le64_to_cpu(pfn_sb->dataoff);
		struct nd_namespace_common *ndns = nd_pfn->ndns;
		u32 start_pad = __le32_to_cpu(pfn_sb->start_pad);
		u32 end_trunc = __le32_to_cpu(pfn_sb->end_trunc);
		struct nd_namespace_io *nsio = to_nd_namespace_io(&ndns->dev);

		rc = sprintf(buf, "%llu\n", (unsigned long long)
				resource_size(&nsio->res) - start_pad
				- end_trunc - offset);
	} else {
		/* no size to convey if the pfn instance is disabled */
		rc = -ENXIO;
	}
	device_unlock(dev);

	return rc;
}
static DEVICE_ATTR_RO(size);

259 260 261 262 263 264 265
static ssize_t supported_alignments_show(struct device *dev,
		struct device_attribute *attr, char *buf)
{
	return nd_size_select_show(0, nd_pfn_supported_alignments(), buf);
}
static DEVICE_ATTR_RO(supported_alignments);

266 267 268 269
static struct attribute *nd_pfn_attributes[] = {
	&dev_attr_mode.attr,
	&dev_attr_namespace.attr,
	&dev_attr_uuid.attr,
270
	&dev_attr_align.attr,
271 272
	&dev_attr_resource.attr,
	&dev_attr_size.attr,
273
	&dev_attr_supported_alignments.attr,
274 275 276
	NULL,
};

277 278 279 280 281 282 283
static umode_t pfn_visible(struct kobject *kobj, struct attribute *a, int n)
{
	if (a == &dev_attr_resource.attr)
		return 0400;
	return a->mode;
}

284
struct attribute_group nd_pfn_attribute_group = {
285
	.attrs = nd_pfn_attributes,
286
	.is_visible = pfn_visible,
287 288 289 290 291 292 293 294 295
};

static const struct attribute_group *nd_pfn_attribute_groups[] = {
	&nd_pfn_attribute_group,
	&nd_device_attribute_group,
	&nd_numa_attribute_group,
	NULL,
};

296
struct device *nd_pfn_devinit(struct nd_pfn *nd_pfn,
297 298
		struct nd_namespace_common *ndns)
{
299
	struct device *dev;
300

301
	if (!nd_pfn)
302 303
		return NULL;

304
	nd_pfn->mode = PFN_MODE_NONE;
305
	nd_pfn->align = PFN_DEFAULT_ALIGNMENT;
306 307 308
	dev = &nd_pfn->dev;
	device_initialize(&nd_pfn->dev);
	if (ndns && !__nd_attach_ndns(&nd_pfn->dev, ndns, &nd_pfn->ndns)) {
309 310
		dev_dbg(&ndns->dev, "failed, already claimed by %s\n",
				dev_name(ndns->claim));
311
		put_device(dev);
312
		return NULL;
313 314 315 316 317 318 319 320
	}
	return dev;
}

static struct nd_pfn *nd_pfn_alloc(struct nd_region *nd_region)
{
	struct nd_pfn *nd_pfn;
	struct device *dev;
321 322 323 324 325 326 327 328 329 330 331 332 333 334

	nd_pfn = kzalloc(sizeof(*nd_pfn), GFP_KERNEL);
	if (!nd_pfn)
		return NULL;

	nd_pfn->id = ida_simple_get(&nd_region->pfn_ida, 0, 0, GFP_KERNEL);
	if (nd_pfn->id < 0) {
		kfree(nd_pfn);
		return NULL;
	}

	dev = &nd_pfn->dev;
	dev_set_name(dev, "pfn%d.%d", nd_region->id, nd_pfn->id);
	dev->groups = nd_pfn_attribute_groups;
335 336 337 338
	dev->type = &nd_pfn_device_type;
	dev->parent = &nd_region->dev;

	return nd_pfn;
339 340 341 342
}

struct device *nd_pfn_create(struct nd_region *nd_region)
{
343 344 345
	struct nd_pfn *nd_pfn;
	struct device *dev;

346
	if (!is_memory(&nd_region->dev))
347
		return NULL;
348

349 350
	nd_pfn = nd_pfn_alloc(nd_region);
	dev = nd_pfn_devinit(nd_pfn, NULL);
351

352
	__nd_device_register(dev);
353 354 355
	return dev;
}

356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385
/*
 * nd_pfn_clear_memmap_errors() clears any errors in the volatile memmap
 * space associated with the namespace. If the memmap is set to DRAM, then
 * this is a no-op. Since the memmap area is freshly initialized during
 * probe, we have an opportunity to clear any badblocks in this area.
 */
static int nd_pfn_clear_memmap_errors(struct nd_pfn *nd_pfn)
{
	struct nd_region *nd_region = to_nd_region(nd_pfn->dev.parent);
	struct nd_namespace_common *ndns = nd_pfn->ndns;
	void *zero_page = page_address(ZERO_PAGE(0));
	struct nd_pfn_sb *pfn_sb = nd_pfn->pfn_sb;
	int num_bad, meta_num, rc, bb_present;
	sector_t first_bad, meta_start;
	struct nd_namespace_io *nsio;

	if (nd_pfn->mode != PFN_MODE_PMEM)
		return 0;

	nsio = to_nd_namespace_io(&ndns->dev);
	meta_start = (SZ_4K + sizeof(*pfn_sb)) >> 9;
	meta_num = (le64_to_cpu(pfn_sb->dataoff) >> 9) - meta_start;

	do {
		unsigned long zero_len;
		u64 nsoff;

		bb_present = badblocks_check(&nd_region->bb, meta_start,
				meta_num, &first_bad, &num_bad);
		if (bb_present) {
C
Christoph Hellwig 已提交
386
			dev_dbg(&nd_pfn->dev, "meta: %x badblocks at %llx\n",
387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404
					num_bad, first_bad);
			nsoff = ALIGN_DOWN((nd_region->ndr_start
					+ (first_bad << 9)) - nsio->res.start,
					PAGE_SIZE);
			zero_len = ALIGN(num_bad << 9, PAGE_SIZE);
			while (zero_len) {
				unsigned long chunk = min(zero_len, PAGE_SIZE);

				rc = nvdimm_write_bytes(ndns, nsoff, zero_page,
							chunk, 0);
				if (rc)
					break;

				zero_len -= chunk;
				nsoff += chunk;
			}
			if (rc) {
				dev_err(&nd_pfn->dev,
C
Christoph Hellwig 已提交
405
					"error clearing %x badblocks at %llx\n",
406 407 408 409 410 411 412 413 414
					num_bad, first_bad);
				return rc;
			}
		}
	} while (bb_present);

	return 0;
}

415 416 417 418 419 420 421 422 423
/**
 * nd_pfn_validate - read and validate info-block
 * @nd_pfn: fsdax namespace runtime state / properties
 * @sig: 'devdax' or 'fsdax' signature
 *
 * Upon return the info-block buffer contents (->pfn_sb) are
 * indeterminate when validation fails, and a coherent info-block
 * otherwise.
 */
424
int nd_pfn_validate(struct nd_pfn *nd_pfn, const char *sig)
425 426
{
	u64 checksum, offset;
427
	enum nd_pfn_mode mode;
428
	struct nd_namespace_io *nsio;
429
	unsigned long align, start_pad;
430 431 432
	struct nd_pfn_sb *pfn_sb = nd_pfn->pfn_sb;
	struct nd_namespace_common *ndns = nd_pfn->ndns;
	const u8 *parent_uuid = nd_dev_to_uuid(&ndns->dev);
433 434 435 436

	if (!pfn_sb || !ndns)
		return -ENODEV;

437
	if (!is_memory(nd_pfn->dev.parent))
438 439
		return -ENODEV;

440
	if (nvdimm_read_bytes(ndns, SZ_4K, pfn_sb, sizeof(*pfn_sb), 0))
441 442
		return -ENXIO;

443
	if (memcmp(pfn_sb->signature, sig, PFN_SIG_LEN) != 0)
444 445 446 447 448 449 450 451
		return -ENODEV;

	checksum = le64_to_cpu(pfn_sb->checksum);
	pfn_sb->checksum = 0;
	if (checksum != nd_sb_checksum((struct nd_gen_sb *) pfn_sb))
		return -ENODEV;
	pfn_sb->checksum = cpu_to_le64(checksum);

452 453 454
	if (memcmp(pfn_sb->parent_uuid, parent_uuid, 16) != 0)
		return -ENODEV;

455 456 457 458 459
	if (__le16_to_cpu(pfn_sb->version_minor) < 1) {
		pfn_sb->start_pad = 0;
		pfn_sb->end_trunc = 0;
	}

460 461 462
	if (__le16_to_cpu(pfn_sb->version_minor) < 2)
		pfn_sb->align = 0;

463 464 465
	switch (le32_to_cpu(pfn_sb->mode)) {
	case PFN_MODE_RAM:
	case PFN_MODE_PMEM:
466
		break;
467 468 469 470
	default:
		return -ENXIO;
	}

471 472
	align = le32_to_cpu(pfn_sb->align);
	offset = le64_to_cpu(pfn_sb->dataoff);
473
	start_pad = le32_to_cpu(pfn_sb->start_pad);
474 475 476 477
	if (align == 0)
		align = 1UL << ilog2(offset);
	mode = le32_to_cpu(pfn_sb->mode);

478
	if (!nd_pfn->uuid) {
479 480 481 482 483
		/*
		 * When probing a namepace via nd_pfn_probe() the uuid
		 * is NULL (see: nd_pfn_devinit()) we init settings from
		 * pfn_sb
		 */
484 485 486
		nd_pfn->uuid = kmemdup(pfn_sb->uuid, 16, GFP_KERNEL);
		if (!nd_pfn->uuid)
			return -ENOMEM;
487 488
		nd_pfn->align = align;
		nd_pfn->mode = mode;
489
	} else {
490 491 492 493
		/*
		 * When probing a pfn / dax instance we validate the
		 * live settings against the pfn_sb
		 */
494
		if (memcmp(nd_pfn->uuid, pfn_sb->uuid, 16) != 0)
495
			return -ENODEV;
496 497 498 499 500 501 502 503 504 505 506 507 508 509 510

		/*
		 * If the uuid validates, but other settings mismatch
		 * return EINVAL because userspace has managed to change
		 * the configuration without specifying new
		 * identification.
		 */
		if (nd_pfn->align != align || nd_pfn->mode != mode) {
			dev_err(&nd_pfn->dev,
					"init failed, settings mismatch\n");
			dev_dbg(&nd_pfn->dev, "align: %lx:%lx mode: %d:%d\n",
					nd_pfn->align, align, nd_pfn->mode,
					mode);
			return -EINVAL;
		}
511 512
	}

513
	if (align > nvdimm_namespace_capacity(ndns)) {
514
		dev_err(&nd_pfn->dev, "alignment: %lx exceeds capacity %llx\n",
515
				align, nvdimm_namespace_capacity(ndns));
516 517 518
		return -EINVAL;
	}

519 520 521 522 523 524 525
	/*
	 * These warnings are verbose because they can only trigger in
	 * the case where the physical address alignment of the
	 * namespace has changed since the pfn superblock was
	 * established.
	 */
	nsio = to_nd_namespace_io(&ndns->dev);
D
Dan Williams 已提交
526
	if (offset >= resource_size(&nsio->res)) {
527 528 529 530 531
		dev_err(&nd_pfn->dev, "pfn array size exceeds capacity of %s\n",
				dev_name(&ndns->dev));
		return -EBUSY;
	}

532
	if ((align && !IS_ALIGNED(nsio->res.start + offset + start_pad, align))
533
			|| !IS_ALIGNED(offset, PAGE_SIZE)) {
534 535 536
		dev_err(&nd_pfn->dev,
				"bad offset: %#llx dax disabled align: %#lx\n",
				offset, align);
537 538 539
		return -ENXIO;
	}

540
	return nd_pfn_clear_memmap_errors(nd_pfn);
541
}
542
EXPORT_SYMBOL(nd_pfn_validate);
543

544
int nd_pfn_probe(struct device *dev, struct nd_namespace_common *ndns)
545 546 547
{
	int rc;
	struct nd_pfn *nd_pfn;
548
	struct device *pfn_dev;
549 550 551 552 553 554
	struct nd_pfn_sb *pfn_sb;
	struct nd_region *nd_region = to_nd_region(ndns->dev.parent);

	if (ndns->force_raw)
		return -ENODEV;

555 556 557 558 559 560 561 562
	switch (ndns->claim_class) {
	case NVDIMM_CCLASS_NONE:
	case NVDIMM_CCLASS_PFN:
		break;
	default:
		return -ENODEV;
	}

563
	nvdimm_bus_lock(&ndns->dev);
564 565
	nd_pfn = nd_pfn_alloc(nd_region);
	pfn_dev = nd_pfn_devinit(nd_pfn, ndns);
566
	nvdimm_bus_unlock(&ndns->dev);
567
	if (!pfn_dev)
568
		return -ENOMEM;
569
	pfn_sb = devm_kmalloc(dev, sizeof(*pfn_sb), GFP_KERNEL);
570
	nd_pfn = to_nd_pfn(pfn_dev);
571
	nd_pfn->pfn_sb = pfn_sb;
572
	rc = nd_pfn_validate(nd_pfn, PFN_SIG);
573
	dev_dbg(dev, "pfn: %s\n", rc == 0 ? dev_name(pfn_dev) : "<none>");
574
	if (rc < 0) {
575
		nd_detach_ndns(pfn_dev, &nd_pfn->ndns);
576
		put_device(pfn_dev);
577
	} else
578
		__nd_device_register(pfn_dev);
579 580 581 582

	return rc;
}
EXPORT_SYMBOL(nd_pfn_probe);
583

584 585 586 587 588
static u32 info_block_reserve(void)
{
	return ALIGN(SZ_8K, PAGE_SIZE);
}

589 590 591 592 593 594 595 596 597 598 599 600 601
/*
 * We hotplug memory at section granularity, pad the reserved area from
 * the previous section base to the namespace base address.
 */
static unsigned long init_altmap_base(resource_size_t base)
{
	unsigned long base_pfn = PHYS_PFN(base);

	return PFN_SECTION_ALIGN_DOWN(base_pfn);
}

static unsigned long init_altmap_reserve(resource_size_t base)
{
602
	unsigned long reserve = info_block_reserve() >> PAGE_SHIFT;
603 604 605 606 607 608
	unsigned long base_pfn = PHYS_PFN(base);

	reserve += base_pfn - PFN_SECTION_ALIGN_DOWN(base_pfn);
	return reserve;
}

609
static int __nvdimm_setup_pfn(struct nd_pfn *nd_pfn, struct dev_pagemap *pgmap)
610
{
611 612
	struct resource *res = &pgmap->res;
	struct vmem_altmap *altmap = &pgmap->altmap;
613 614 615 616
	struct nd_pfn_sb *pfn_sb = nd_pfn->pfn_sb;
	u64 offset = le64_to_cpu(pfn_sb->dataoff);
	u32 start_pad = __le32_to_cpu(pfn_sb->start_pad);
	u32 end_trunc = __le32_to_cpu(pfn_sb->end_trunc);
617
	u32 reserve = info_block_reserve();
618 619 620 621 622 623 624 625 626 627 628 629 630
	struct nd_namespace_common *ndns = nd_pfn->ndns;
	struct nd_namespace_io *nsio = to_nd_namespace_io(&ndns->dev);
	resource_size_t base = nsio->res.start + start_pad;
	struct vmem_altmap __altmap = {
		.base_pfn = init_altmap_base(base),
		.reserve = init_altmap_reserve(base),
	};

	memcpy(res, &nsio->res, sizeof(*res));
	res->start += start_pad;
	res->end -= end_trunc;

	if (nd_pfn->mode == PFN_MODE_RAM) {
631
		if (offset < reserve)
632
			return -EINVAL;
633 634
		nd_pfn->npfns = le64_to_cpu(pfn_sb->npfns);
	} else if (nd_pfn->mode == PFN_MODE_PMEM) {
635 636
		nd_pfn->npfns = PFN_SECTION_ALIGN_UP((resource_size(res)
					- offset) / PAGE_SIZE);
637 638 639 640 641 642
		if (le64_to_cpu(nd_pfn->pfn_sb->npfns) > nd_pfn->npfns)
			dev_info(&nd_pfn->dev,
					"number of pfns truncated from %lld to %ld\n",
					le64_to_cpu(nd_pfn->pfn_sb->npfns),
					nd_pfn->npfns);
		memcpy(altmap, &__altmap, sizeof(*altmap));
643
		altmap->free = PHYS_PFN(offset - reserve);
644
		altmap->alloc = 0;
645
		pgmap->flags |= PGMAP_ALTMAP_VALID;
646
	} else
647
		return -ENXIO;
648

649
	return 0;
650 651
}

652 653 654 655 656 657
static u64 phys_pmem_align_down(struct nd_pfn *nd_pfn, u64 phys)
{
	return min_t(u64, PHYS_SECTION_ALIGN_DOWN(phys),
			ALIGN_DOWN(phys, nd_pfn->align));
}

658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686
/*
 * Check if pmem collides with 'System RAM', or other regions when
 * section aligned.  Trim it accordingly.
 */
static void trim_pfn_device(struct nd_pfn *nd_pfn, u32 *start_pad, u32 *end_trunc)
{
	struct nd_namespace_common *ndns = nd_pfn->ndns;
	struct nd_namespace_io *nsio = to_nd_namespace_io(&ndns->dev);
	struct nd_region *nd_region = to_nd_region(nd_pfn->dev.parent);
	const resource_size_t start = nsio->res.start;
	const resource_size_t end = start + resource_size(&nsio->res);
	resource_size_t adjust, size;

	*start_pad = 0;
	*end_trunc = 0;

	adjust = start - PHYS_SECTION_ALIGN_DOWN(start);
	size = resource_size(&nsio->res) + adjust;
	if (region_intersects(start - adjust, size, IORESOURCE_SYSTEM_RAM,
				IORES_DESC_NONE) == REGION_MIXED
			|| nd_region_conflict(nd_region, start - adjust, size))
		*start_pad = PHYS_SECTION_ALIGN_UP(start) - start;

	/* Now check that end of the range does not collide. */
	adjust = PHYS_SECTION_ALIGN_UP(end) - end;
	size = resource_size(&nsio->res) + adjust;
	if (region_intersects(start, size, IORESOURCE_SYSTEM_RAM,
				IORES_DESC_NONE) == REGION_MIXED
			|| !IS_ALIGNED(end, nd_pfn->align)
687
			|| nd_region_conflict(nd_region, start, size))
688 689 690
		*end_trunc = end - phys_pmem_align_down(nd_pfn, end);
}

691 692 693
static int nd_pfn_init(struct nd_pfn *nd_pfn)
{
	struct nd_namespace_common *ndns = nd_pfn->ndns;
694
	struct nd_namespace_io *nsio = to_nd_namespace_io(&ndns->dev);
695
	u32 start_pad, end_trunc, reserve = info_block_reserve();
696 697 698 699 700
	resource_size_t start, size;
	struct nd_region *nd_region;
	struct nd_pfn_sb *pfn_sb;
	unsigned long npfns;
	phys_addr_t offset;
701
	const char *sig;
702 703 704
	u64 checksum;
	int rc;

705
	pfn_sb = devm_kmalloc(&nd_pfn->dev, sizeof(*pfn_sb), GFP_KERNEL);
706 707 708 709
	if (!pfn_sb)
		return -ENOMEM;

	nd_pfn->pfn_sb = pfn_sb;
710 711 712 713
	if (is_nd_dax(&nd_pfn->dev))
		sig = DAX_SIG;
	else
		sig = PFN_SIG;
714

715
	rc = nd_pfn_validate(nd_pfn, sig);
716 717 718 719
	if (rc != -ENODEV)
		return rc;

	/* no info block, do init */;
720 721
	memset(pfn_sb, 0, sizeof(*pfn_sb));

722 723 724 725 726 727 728 729 730 731
	nd_region = to_nd_region(nd_pfn->dev.parent);
	if (nd_region->ro) {
		dev_info(&nd_pfn->dev,
				"%s is read-only, unable to init metadata\n",
				dev_name(&nd_region->dev));
		return -ENXIO;
	}

	memset(pfn_sb, 0, sizeof(*pfn_sb));

732
	trim_pfn_device(nd_pfn, &start_pad, &end_trunc);
733
	if (start_pad + end_trunc)
734
		dev_info(&nd_pfn->dev, "%s alignment collision, truncate %d bytes\n",
735 736 737 738 739 740 741 742
				dev_name(&ndns->dev), start_pad + end_trunc);

	/*
	 * Note, we use 64 here for the standard size of struct page,
	 * debugging options may cause it to be larger in which case the
	 * implementation will limit the pfns advertised through
	 * ->direct_access() to those that are included in the memmap.
	 */
743
	start = nsio->res.start + start_pad;
744
	size = resource_size(&nsio->res);
745
	npfns = PFN_SECTION_ALIGN_UP((size - start_pad - end_trunc - reserve)
746
			/ PAGE_SIZE);
747 748
	if (nd_pfn->mode == PFN_MODE_PMEM) {
		/*
749 750 751
		 * The altmap should be padded out to the block size used
		 * when populating the vmemmap. This *should* be equal to
		 * PMD_SIZE for most architectures.
752
		 */
753
		offset = ALIGN(start + reserve + 64 * npfns,
754
				max(nd_pfn->align, PMD_SIZE)) - start;
755
	} else if (nd_pfn->mode == PFN_MODE_RAM)
756
		offset = ALIGN(start + reserve, nd_pfn->align) - start;
757 758 759 760 761 762 763 764 765 766 767 768 769
	else
		return -ENXIO;

	if (offset + start_pad + end_trunc >= size) {
		dev_err(&nd_pfn->dev, "%s unable to satisfy requested alignment\n",
				dev_name(&ndns->dev));
		return -ENXIO;
	}

	npfns = (size - offset - start_pad - end_trunc) / SZ_4K;
	pfn_sb->mode = cpu_to_le32(nd_pfn->mode);
	pfn_sb->dataoff = cpu_to_le64(offset);
	pfn_sb->npfns = cpu_to_le64(npfns);
770
	memcpy(pfn_sb->signature, sig, PFN_SIG_LEN);
771 772 773
	memcpy(pfn_sb->uuid, nd_pfn->uuid, 16);
	memcpy(pfn_sb->parent_uuid, nd_dev_to_uuid(&ndns->dev), 16);
	pfn_sb->version_major = cpu_to_le16(1);
774
	pfn_sb->version_minor = cpu_to_le16(3);
775 776
	pfn_sb->start_pad = cpu_to_le32(start_pad);
	pfn_sb->end_trunc = cpu_to_le32(end_trunc);
777
	pfn_sb->align = cpu_to_le32(nd_pfn->align);
778 779 780
	checksum = nd_sb_checksum((struct nd_gen_sb *) pfn_sb);
	pfn_sb->checksum = cpu_to_le64(checksum);

781
	return nvdimm_write_bytes(ndns, SZ_4K, pfn_sb, sizeof(*pfn_sb), 0);
782 783 784 785 786 787
}

/*
 * Determine the effective resource range and vmem_altmap from an nd_pfn
 * instance.
 */
788
int nvdimm_setup_pfn(struct nd_pfn *nd_pfn, struct dev_pagemap *pgmap)
789 790 791 792
{
	int rc;

	if (!nd_pfn->uuid || !nd_pfn->ndns)
793
		return -ENODEV;
794 795 796

	rc = nd_pfn_init(nd_pfn);
	if (rc)
797
		return rc;
798

799 800
	/* we need a valid pfn_sb before we can init a dev_pagemap */
	return __nvdimm_setup_pfn(nd_pfn, pgmap);
801 802
}
EXPORT_SYMBOL_GPL(nvdimm_setup_pfn);