pmem.c 14.3 KB
Newer Older
1 2 3
/*
 * Persistent Memory Driver
 *
4
 * Copyright (c) 2014-2015, Intel Corporation.
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
 * Copyright (c) 2015, Christoph Hellwig <hch@lst.de>.
 * Copyright (c) 2015, Boaz Harrosh <boaz@plexistor.com>.
 *
 * This program is free software; you can redistribute it and/or modify it
 * under the terms and conditions of the GNU General Public License,
 * version 2, as published by the Free Software Foundation.
 *
 * This program is distributed in the hope it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
 * more details.
 */

#include <asm/cacheflush.h>
#include <linux/blkdev.h>
#include <linux/hdreg.h>
#include <linux/init.h>
#include <linux/platform_device.h>
#include <linux/module.h>
#include <linux/moduleparam.h>
25
#include <linux/badblocks.h>
D
Dan Williams 已提交
26
#include <linux/memremap.h>
27
#include <linux/vmalloc.h>
28
#include <linux/blk-mq.h>
D
Dan Williams 已提交
29
#include <linux/pfn_t.h>
30
#include <linux/slab.h>
31
#include <linux/uio.h>
D
Dan Williams 已提交
32
#include <linux/dax.h>
33
#include <linux/nd.h>
34
#include <linux/backing-dev.h>
35
#include "pmem.h"
36
#include "pfn.h"
37
#include "nd.h"
38
#include "nd-core.h"
39

40 41 42 43 44 45 46 47 48 49 50 51 52
static struct device *to_dev(struct pmem_device *pmem)
{
	/*
	 * nvdimm bus services need a 'dev' parameter, and we record the device
	 * at init in bb.dev.
	 */
	return pmem->bb.dev;
}

static struct nd_region *to_region(struct pmem_device *pmem)
{
	return to_nd_region(to_dev(pmem)->parent);
}
53

54 55
static blk_status_t pmem_clear_poison(struct pmem_device *pmem,
		phys_addr_t offset, unsigned int len)
56
{
57
	struct device *dev = to_dev(pmem);
58 59
	sector_t sector;
	long cleared;
60
	blk_status_t rc = BLK_STS_OK;
61 62 63

	sector = (offset - pmem->data_offset) / 512;

64 65
	cleared = nvdimm_clear_poison(dev, pmem->phys_addr + offset, len);
	if (cleared < len)
66
		rc = BLK_STS_IOERR;
67
	if (cleared > 0 && cleared / 512) {
68
		cleared /= 512;
69
		dev_dbg(dev, "%#llx clear %ld sector%s\n",
70 71
				(unsigned long long) sector, cleared,
				cleared > 1 ? "s" : "");
72
		badblocks_clear(&pmem->bb, sector, cleared);
73 74
		if (pmem->bb_state)
			sysfs_notify_dirent(pmem->bb_state);
75
	}
76

77
	arch_invalidate_pmem(pmem->virt_addr + offset, len);
78 79

	return rc;
80 81
}

82 83 84
static void write_pmem(void *pmem_addr, struct page *page,
		unsigned int off, unsigned int len)
{
85 86 87 88 89 90 91 92 93 94 95 96 97
	unsigned int chunk;
	void *mem;

	while (len) {
		mem = kmap_atomic(page);
		chunk = min_t(unsigned int, len, PAGE_SIZE);
		memcpy_flushcache(pmem_addr, mem + off, chunk);
		kunmap_atomic(mem);
		len -= chunk;
		off = 0;
		page++;
		pmem_addr += PAGE_SIZE;
	}
98 99
}

100
static blk_status_t read_pmem(struct page *page, unsigned int off,
101 102
		void *pmem_addr, unsigned int len)
{
103
	unsigned int chunk;
104
	unsigned long rem;
105 106 107 108 109
	void *mem;

	while (len) {
		mem = kmap_atomic(page);
		chunk = min_t(unsigned int, len, PAGE_SIZE);
110
		rem = memcpy_mcsafe(mem + off, pmem_addr, chunk);
111
		kunmap_atomic(mem);
112
		if (rem)
113 114 115 116 117 118
			return BLK_STS_IOERR;
		len -= chunk;
		off = 0;
		page++;
		pmem_addr += PAGE_SIZE;
	}
119
	return BLK_STS_OK;
120 121
}

122
static blk_status_t pmem_do_bvec(struct pmem_device *pmem, struct page *page,
123
			unsigned int len, unsigned int off, bool is_write,
124 125
			sector_t sector)
{
126
	blk_status_t rc = BLK_STS_OK;
127
	bool bad_pmem = false;
128
	phys_addr_t pmem_off = sector * 512 + pmem->data_offset;
D
Dan Williams 已提交
129
	void *pmem_addr = pmem->virt_addr + pmem_off;
130

131 132 133
	if (unlikely(is_bad_pmem(&pmem->bb, sector, len)))
		bad_pmem = true;

134
	if (!is_write) {
135
		if (unlikely(bad_pmem))
136
			rc = BLK_STS_IOERR;
137
		else {
138
			rc = read_pmem(page, off, pmem_addr, len);
139 140
			flush_dcache_page(page);
		}
141
	} else {
142 143 144 145 146 147 148 149 150 151 152 153 154 155
		/*
		 * Note that we write the data both before and after
		 * clearing poison.  The write before clear poison
		 * handles situations where the latest written data is
		 * preserved and the clear poison operation simply marks
		 * the address range as valid without changing the data.
		 * In this case application software can assume that an
		 * interrupted write will either return the new good
		 * data or an error.
		 *
		 * However, if pmem_clear_poison() leaves the data in an
		 * indeterminate state we need to perform the write
		 * after clear poison.
		 */
156
		flush_dcache_page(page);
157
		write_pmem(pmem_addr, page, off, len);
158
		if (unlikely(bad_pmem)) {
159
			rc = pmem_clear_poison(pmem, pmem_off, len);
160
			write_pmem(pmem_addr, page, off, len);
161
		}
162 163
	}

164
	return rc;
165 166
}

167 168 169 170 171
/* account for REQ_FLUSH rename, replace with REQ_PREFLUSH after v4.8-rc1 */
#ifndef REQ_FLUSH
#define REQ_FLUSH REQ_PREFLUSH
#endif

172
static blk_qc_t pmem_make_request(struct request_queue *q, struct bio *bio)
173
{
174
	blk_status_t rc = 0;
D
Dan Williams 已提交
175 176
	bool do_acct;
	unsigned long start;
177 178
	struct bio_vec bvec;
	struct bvec_iter iter;
179
	struct pmem_device *pmem = q->queuedata;
180 181
	struct nd_region *nd_region = to_region(pmem);

J
Jens Axboe 已提交
182
	if (bio->bi_opf & REQ_FLUSH)
183
		nvdimm_flush(nd_region);
184

D
Dan Williams 已提交
185
	do_acct = nd_iostat_start(bio, &start);
186 187
	bio_for_each_segment(bvec, bio, iter) {
		rc = pmem_do_bvec(pmem, bvec.bv_page, bvec.bv_len,
188
				bvec.bv_offset, op_is_write(bio_op(bio)),
189 190
				iter.bi_sector);
		if (rc) {
191
			bio->bi_status = rc;
192 193 194
			break;
		}
	}
D
Dan Williams 已提交
195 196
	if (do_acct)
		nd_iostat_end(bio, start);
197

J
Jens Axboe 已提交
198
	if (bio->bi_opf & REQ_FUA)
199
		nvdimm_flush(nd_region);
200

201
	bio_endio(bio);
202
	return BLK_QC_T_NONE;
203 204 205
}

static int pmem_rw_page(struct block_device *bdev, sector_t sector,
206
		       struct page *page, bool is_write)
207
{
208
	struct pmem_device *pmem = bdev->bd_queue->queuedata;
209
	blk_status_t rc;
210

211 212
	rc = pmem_do_bvec(pmem, page, hpage_nr_pages(page) * PAGE_SIZE,
			  0, is_write, sector);
213

214 215 216 217 218 219 220
	/*
	 * The ->rw_page interface is subtle and tricky.  The core
	 * retries on any error, so we can only invoke page_endio() in
	 * the successful completion case.  Otherwise, we'll see crashes
	 * caused by double completion.
	 */
	if (rc == 0)
221
		page_endio(page, is_write, 0);
222

223
	return blk_status_to_errno(rc);
224 225
}

226
/* see "strong" declaration in tools/testing/nvdimm/pmem-dax.c */
D
Dan Williams 已提交
227 228
__weak long __pmem_direct_access(struct pmem_device *pmem, pgoff_t pgoff,
		long nr_pages, void **kaddr, pfn_t *pfn)
229
{
D
Dan Williams 已提交
230
	resource_size_t offset = PFN_PHYS(pgoff) + pmem->data_offset;
231

D
Dan Williams 已提交
232 233
	if (unlikely(is_bad_pmem(&pmem->bb, PFN_PHYS(pgoff) / 512,
					PFN_PHYS(nr_pages))))
234
		return -EIO;
235
	*kaddr = pmem->virt_addr + offset;
D
Dan Williams 已提交
236
	*pfn = phys_to_pfn_t(pmem->phys_addr + offset, pmem->pfn_flags);
237

238 239 240 241 242
	/*
	 * If badblocks are present, limit known good range to the
	 * requested range.
	 */
	if (unlikely(pmem->bb.count))
D
Dan Williams 已提交
243 244
		return nr_pages;
	return PHYS_PFN(pmem->size - pmem->pfn_pad - offset);
245 246 247 248 249
}

static const struct block_device_operations pmem_fops = {
	.owner =		THIS_MODULE,
	.rw_page =		pmem_rw_page,
250
	.revalidate_disk =	nvdimm_revalidate_disk,
251 252
};

D
Dan Williams 已提交
253 254 255 256 257 258 259 260
static long pmem_dax_direct_access(struct dax_device *dax_dev,
		pgoff_t pgoff, long nr_pages, void **kaddr, pfn_t *pfn)
{
	struct pmem_device *pmem = dax_get_private(dax_dev);

	return __pmem_direct_access(pmem, pgoff, nr_pages, kaddr, pfn);
}

261 262 263 264 265 266
static size_t pmem_copy_from_iter(struct dax_device *dax_dev, pgoff_t pgoff,
		void *addr, size_t bytes, struct iov_iter *i)
{
	return copy_from_iter_flushcache(addr, bytes, i);
}

267 268 269 270 271 272
static size_t pmem_copy_to_iter(struct dax_device *dax_dev, pgoff_t pgoff,
		void *addr, size_t bytes, struct iov_iter *i)
{
	return copy_to_iter(addr, bytes, i);
}

D
Dan Williams 已提交
273 274
static const struct dax_operations pmem_dax_ops = {
	.direct_access = pmem_dax_direct_access,
275
	.copy_from_iter = pmem_copy_from_iter,
276
	.copy_to_iter = pmem_copy_to_iter,
D
Dan Williams 已提交
277 278
};

279 280 281
static const struct attribute_group *pmem_attribute_groups[] = {
	&dax_attribute_group,
	NULL,
D
Dan Williams 已提交
282 283
};

284 285 286 287 288
static void pmem_release_queue(void *q)
{
	blk_cleanup_queue(q);
}

289 290
static void pmem_freeze_queue(void *q)
{
291
	blk_freeze_queue_start(q);
292 293
}

D
Dan Williams 已提交
294
static void pmem_release_disk(void *__pmem)
295
{
D
Dan Williams 已提交
296 297 298 299 300 301
	struct pmem_device *pmem = __pmem;

	kill_dax(pmem->dax_dev);
	put_dax(pmem->dax_dev);
	del_gendisk(pmem->disk);
	put_disk(pmem->disk);
302 303
}

304 305
static int pmem_attach_disk(struct device *dev,
		struct nd_namespace_common *ndns)
306
{
307
	struct nd_namespace_io *nsio = to_nd_namespace_io(&ndns->dev);
308
	struct nd_region *nd_region = to_nd_region(dev->parent);
309
	int nid = dev_to_node(dev), fua, wbc;
310
	struct resource *res = &nsio->res;
311
	struct resource bb_res;
312
	struct nd_pfn *nd_pfn = NULL;
D
Dan Williams 已提交
313
	struct dax_device *dax_dev;
314
	struct nd_pfn_sb *pfn_sb;
315
	struct pmem_device *pmem;
316
	struct request_queue *q;
317
	struct device *gendev;
318 319
	struct gendisk *disk;
	void *addr;
320 321 322 323 324
	int rc;

	pmem = devm_kzalloc(dev, sizeof(*pmem), GFP_KERNEL);
	if (!pmem)
		return -ENOMEM;
325 326 327 328

	/* while nsio_rw_bytes is active, parse a pfn info block if present */
	if (is_nd_pfn(dev)) {
		nd_pfn = to_nd_pfn(dev);
329 330 331
		rc = nvdimm_setup_pfn(nd_pfn, &pmem->pgmap);
		if (rc)
			return rc;
332 333 334 335
	}

	/* we're attaching a block device, disable raw namespace access */
	devm_nsio_disable(dev, nsio);
336

337
	dev_set_drvdata(dev, pmem);
338 339
	pmem->phys_addr = res->start;
	pmem->size = resource_size(res);
340 341
	fua = nvdimm_has_flush(nd_region);
	if (!IS_ENABLED(CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE) || fua < 0) {
342
		dev_warn(dev, "unable to guarantee persistence of writes\n");
343 344
		fua = 0;
	}
345
	wbc = nvdimm_has_cache(nd_region);
346

347
	if (!devm_request_mem_region(dev, res->start, resource_size(res),
348
				dev_name(&ndns->dev))) {
349
		dev_warn(dev, "could not reserve region %pR\n", res);
350
		return -EBUSY;
351 352
	}

353
	q = blk_alloc_queue_node(GFP_KERNEL, dev_to_node(dev), NULL);
354
	if (!q)
355
		return -ENOMEM;
356

357 358 359
	if (devm_add_action_or_reset(dev, pmem_release_queue, q))
		return -ENOMEM;

D
Dan Williams 已提交
360
	pmem->pfn_flags = PFN_DEV;
361
	pmem->pgmap.ref = &q->q_usage_counter;
362
	if (is_nd_pfn(dev)) {
363
		addr = devm_memremap_pages(dev, &pmem->pgmap);
364 365
		pfn_sb = nd_pfn->pfn_sb;
		pmem->data_offset = le64_to_cpu(pfn_sb->dataoff);
366 367
		pmem->pfn_pad = resource_size(res) -
			resource_size(&pmem->pgmap.res);
368
		pmem->pfn_flags |= PFN_MAP;
369 370
		memcpy(&bb_res, &pmem->pgmap.res, sizeof(bb_res));
		bb_res.start += pmem->data_offset;
371
	} else if (pmem_should_map_pages(dev)) {
372 373 374
		memcpy(&pmem->pgmap.res, &nsio->res, sizeof(pmem->pgmap.res));
		pmem->pgmap.altmap_valid = false;
		addr = devm_memremap_pages(dev, &pmem->pgmap);
D
Dan Williams 已提交
375
		pmem->pfn_flags |= PFN_MAP;
376
		memcpy(&bb_res, &pmem->pgmap.res, sizeof(bb_res));
D
Dan Williams 已提交
377
	} else
378 379
		addr = devm_memremap(dev, pmem->phys_addr,
				pmem->size, ARCH_MEMREMAP_PMEM);
380

381
	/*
382
	 * At release time the queue must be frozen before
383 384
	 * devm_memremap_pages is unwound
	 */
385
	if (devm_add_action_or_reset(dev, pmem_freeze_queue, q))
386
		return -ENOMEM;
387

388 389
	if (IS_ERR(addr))
		return PTR_ERR(addr);
D
Dan Williams 已提交
390
	pmem->virt_addr = addr;
391

392
	blk_queue_write_cache(q, wbc, fua);
393 394
	blk_queue_make_request(q, pmem_make_request);
	blk_queue_physical_block_size(q, PAGE_SIZE);
395
	blk_queue_logical_block_size(q, pmem_sector_size(ndns));
396
	blk_queue_max_hw_sectors(q, UINT_MAX);
397 398
	blk_queue_flag_set(QUEUE_FLAG_NONROT, q);
	blk_queue_flag_set(QUEUE_FLAG_DAX, q);
399
	q->queuedata = pmem;
400

401
	disk = alloc_disk_node(0, nid);
402 403
	if (!disk)
		return -ENOMEM;
D
Dan Williams 已提交
404
	pmem->disk = disk;
405 406

	disk->fops		= &pmem_fops;
407
	disk->queue		= q;
408
	disk->flags		= GENHD_FL_EXT_DEVT;
409
	disk->queue->backing_dev_info->capabilities |= BDI_CAP_SYNCHRONOUS_IO;
V
Vishal Verma 已提交
410
	nvdimm_namespace_disk_name(ndns, disk->disk_name);
411 412
	set_capacity(disk, (pmem->size - pmem->pfn_pad - pmem->data_offset)
			/ 512);
413 414
	if (devm_init_badblocks(dev, &pmem->bb))
		return -ENOMEM;
415
	nvdimm_badblocks_populate(nd_region, &pmem->bb, &bb_res);
416
	disk->bb = &pmem->bb;
417

D
Dan Williams 已提交
418 419 420 421 422
	dax_dev = alloc_dax(pmem, disk->disk_name, &pmem_dax_ops);
	if (!dax_dev) {
		put_disk(disk);
		return -ENOMEM;
	}
423
	dax_write_cache(dax_dev, wbc);
D
Dan Williams 已提交
424 425
	pmem->dax_dev = dax_dev;

426 427 428
	gendev = disk_to_dev(disk);
	gendev->groups = pmem_attribute_groups;

D
Dan Williams 已提交
429 430
	device_add_disk(dev, disk);
	if (devm_add_action_or_reset(dev, pmem_release_disk, pmem))
431 432
		return -ENOMEM;

433
	revalidate_disk(disk);
434

435 436
	pmem->bb_state = sysfs_get_dirent(disk_to_dev(disk)->kobj.sd,
					  "badblocks");
437 438
	if (!pmem->bb_state)
		dev_warn(dev, "'badblocks' notification disabled\n");
439

440 441
	return 0;
}
442

443
static int nd_pmem_probe(struct device *dev)
444
{
445
	struct nd_namespace_common *ndns;
446

447 448 449
	ndns = nvdimm_namespace_common_probe(dev);
	if (IS_ERR(ndns))
		return PTR_ERR(ndns);
450

451 452
	if (devm_nsio_enable(dev, to_nd_namespace_io(&ndns->dev)))
		return -ENXIO;
453

454
	if (is_nd_btt(dev))
455 456
		return nvdimm_namespace_attach_btt(ndns);

457
	if (is_nd_pfn(dev))
458
		return pmem_attach_disk(dev, ndns);
459

460
	/* if we find a valid info-block we'll come back as that personality */
461 462
	if (nd_btt_probe(dev, ndns) == 0 || nd_pfn_probe(dev, ndns) == 0
			|| nd_dax_probe(dev, ndns) == 0)
463 464
		return -ENXIO;

465 466
	/* ...otherwise we're just a raw pmem device */
	return pmem_attach_disk(dev, ndns);
467 468
}

469
static int nd_pmem_remove(struct device *dev)
470
{
471 472
	struct pmem_device *pmem = dev_get_drvdata(dev);

473
	if (is_nd_btt(dev))
D
Dan Williams 已提交
474
		nvdimm_namespace_detach_btt(to_nd_btt(dev));
475 476 477 478 479 480 481 482
	else {
		/*
		 * Note, this assumes device_lock() context to not race
		 * nd_pmem_notify()
		 */
		sysfs_put(pmem->bb_state);
		pmem->bb_state = NULL;
	}
483 484
	nvdimm_flush(to_nd_region(dev->parent));

485 486 487
	return 0;
}

488 489 490 491 492
static void nd_pmem_shutdown(struct device *dev)
{
	nvdimm_flush(to_nd_region(dev->parent));
}

493 494
static void nd_pmem_notify(struct device *dev, enum nvdimm_event event)
{
495
	struct nd_region *nd_region;
D
Dan Williams 已提交
496 497 498 499
	resource_size_t offset = 0, end_trunc = 0;
	struct nd_namespace_common *ndns;
	struct nd_namespace_io *nsio;
	struct resource res;
500
	struct badblocks *bb;
501
	struct kernfs_node *bb_state;
502 503 504 505

	if (event != NVDIMM_REVALIDATE_POISON)
		return;

D
Dan Williams 已提交
506 507 508 509
	if (is_nd_btt(dev)) {
		struct nd_btt *nd_btt = to_nd_btt(dev);

		ndns = nd_btt->ndns;
510 511 512
		nd_region = to_nd_region(ndns->dev.parent);
		nsio = to_nd_namespace_io(&ndns->dev);
		bb = &nsio->bb;
513
		bb_state = NULL;
514 515
	} else {
		struct pmem_device *pmem = dev_get_drvdata(dev);
516

517 518
		nd_region = to_region(pmem);
		bb = &pmem->bb;
519
		bb_state = pmem->bb_state;
520 521 522 523 524 525 526 527 528 529 530 531 532 533 534

		if (is_nd_pfn(dev)) {
			struct nd_pfn *nd_pfn = to_nd_pfn(dev);
			struct nd_pfn_sb *pfn_sb = nd_pfn->pfn_sb;

			ndns = nd_pfn->ndns;
			offset = pmem->data_offset +
					__le32_to_cpu(pfn_sb->start_pad);
			end_trunc = __le32_to_cpu(pfn_sb->end_trunc);
		} else {
			ndns = to_ndns(dev);
		}

		nsio = to_nd_namespace_io(&ndns->dev);
	}
535

D
Dan Williams 已提交
536 537
	res.start = nsio->res.start + offset;
	res.end = nsio->res.end - end_trunc;
538
	nvdimm_badblocks_populate(nd_region, bb, &res);
539 540
	if (bb_state)
		sysfs_notify_dirent(bb_state);
541 542
}

543 544
MODULE_ALIAS("pmem");
MODULE_ALIAS_ND_DEVICE(ND_DEVICE_NAMESPACE_IO);
545
MODULE_ALIAS_ND_DEVICE(ND_DEVICE_NAMESPACE_PMEM);
546 547 548
static struct nd_device_driver nd_pmem_driver = {
	.probe = nd_pmem_probe,
	.remove = nd_pmem_remove,
549
	.notify = nd_pmem_notify,
550
	.shutdown = nd_pmem_shutdown,
551 552
	.drv = {
		.name = "nd_pmem",
553
	},
554
	.type = ND_DRIVER_NAMESPACE_IO | ND_DRIVER_NAMESPACE_PMEM,
555 556
};

557
module_nd_driver(nd_pmem_driver);
558 559 560

MODULE_AUTHOR("Ross Zwisler <ross.zwisler@linux.intel.com>");
MODULE_LICENSE("GPL v2");