Merge tag 'arm64-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux
[linux-2.6-block.git] / drivers / nvdimm / pmem.c
CommitLineData
9e853f23
RZ
1/*
2 * Persistent Memory Driver
3 *
9f53f9fa 4 * Copyright (c) 2014-2015, Intel Corporation.
9e853f23
RZ
5 * Copyright (c) 2015, Christoph Hellwig <hch@lst.de>.
6 * Copyright (c) 2015, Boaz Harrosh <boaz@plexistor.com>.
7 *
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms and conditions of the GNU General Public License,
10 * version 2, as published by the Free Software Foundation.
11 *
12 * This program is distributed in the hope it will be useful, but WITHOUT
13 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
15 * more details.
16 */
17
18#include <asm/cacheflush.h>
19#include <linux/blkdev.h>
20#include <linux/hdreg.h>
21#include <linux/init.h>
22#include <linux/platform_device.h>
c953cc98 23#include <linux/set_memory.h>
9e853f23
RZ
24#include <linux/module.h>
25#include <linux/moduleparam.h>
b95f5f43 26#include <linux/badblocks.h>
9476df7d 27#include <linux/memremap.h>
32ab0a3f 28#include <linux/vmalloc.h>
71389703 29#include <linux/blk-mq.h>
34c0fd54 30#include <linux/pfn_t.h>
9e853f23 31#include <linux/slab.h>
0aed55af 32#include <linux/uio.h>
c1d6e828 33#include <linux/dax.h>
9f53f9fa 34#include <linux/nd.h>
23c47d2a 35#include <linux/backing-dev.h>
f295e53b 36#include "pmem.h"
32ab0a3f 37#include "pfn.h"
9f53f9fa 38#include "nd.h"
06e8ccda 39#include "nd-core.h"
9e853f23 40
f284a4f2
DW
41static struct device *to_dev(struct pmem_device *pmem)
42{
43 /*
44 * nvdimm bus services need a 'dev' parameter, and we record the device
45 * at init in bb.dev.
46 */
47 return pmem->bb.dev;
48}
49
50static struct nd_region *to_region(struct pmem_device *pmem)
51{
52 return to_nd_region(to_dev(pmem)->parent);
53}
9e853f23 54
c953cc98
DW
55static void hwpoison_clear(struct pmem_device *pmem,
56 phys_addr_t phys, unsigned int len)
57{
58 unsigned long pfn_start, pfn_end, pfn;
59
60 /* only pmem in the linear map supports HWPoison */
61 if (is_vmalloc_addr(pmem->virt_addr))
62 return;
63
64 pfn_start = PHYS_PFN(phys);
65 pfn_end = pfn_start + PHYS_PFN(len);
66 for (pfn = pfn_start; pfn < pfn_end; pfn++) {
67 struct page *page = pfn_to_page(pfn);
68
69 /*
70 * Note, no need to hold a get_dev_pagemap() reference
71 * here since we're in the driver I/O path and
72 * outstanding I/O requests pin the dev_pagemap.
73 */
74 if (test_and_clear_pmem_poison(page))
75 clear_mce_nospec(pfn);
76 }
77}
78
4e4cbee9
CH
79static blk_status_t pmem_clear_poison(struct pmem_device *pmem,
80 phys_addr_t offset, unsigned int len)
59e64739 81{
f284a4f2 82 struct device *dev = to_dev(pmem);
59e64739
DW
83 sector_t sector;
84 long cleared;
4e4cbee9 85 blk_status_t rc = BLK_STS_OK;
59e64739
DW
86
87 sector = (offset - pmem->data_offset) / 512;
59e64739 88
868f036f
DW
89 cleared = nvdimm_clear_poison(dev, pmem->phys_addr + offset, len);
90 if (cleared < len)
4e4cbee9 91 rc = BLK_STS_IOERR;
59e64739 92 if (cleared > 0 && cleared / 512) {
c953cc98 93 hwpoison_clear(pmem, pmem->phys_addr + offset, cleared);
868f036f 94 cleared /= 512;
426824d6 95 dev_dbg(dev, "%#llx clear %ld sector%s\n",
868f036f
DW
96 (unsigned long long) sector, cleared,
97 cleared > 1 ? "s" : "");
0a3f27b9 98 badblocks_clear(&pmem->bb, sector, cleared);
975750a9
TK
99 if (pmem->bb_state)
100 sysfs_notify_dirent(pmem->bb_state);
59e64739 101 }
3115bb02 102
f2b61257 103 arch_invalidate_pmem(pmem->virt_addr + offset, len);
868f036f
DW
104
105 return rc;
59e64739
DW
106}
107
bd697a80
VV
108static void write_pmem(void *pmem_addr, struct page *page,
109 unsigned int off, unsigned int len)
110{
98cc093c
HY
111 unsigned int chunk;
112 void *mem;
113
114 while (len) {
115 mem = kmap_atomic(page);
9dc6488e 116 chunk = min_t(unsigned int, len, PAGE_SIZE - off);
98cc093c
HY
117 memcpy_flushcache(pmem_addr, mem + off, chunk);
118 kunmap_atomic(mem);
119 len -= chunk;
120 off = 0;
121 page++;
9dc6488e 122 pmem_addr += chunk;
98cc093c 123 }
bd697a80
VV
124}
125
4e4cbee9 126static blk_status_t read_pmem(struct page *page, unsigned int off,
bd697a80
VV
127 void *pmem_addr, unsigned int len)
128{
98cc093c 129 unsigned int chunk;
60622d68 130 unsigned long rem;
98cc093c
HY
131 void *mem;
132
133 while (len) {
134 mem = kmap_atomic(page);
9dc6488e 135 chunk = min_t(unsigned int, len, PAGE_SIZE - off);
60622d68 136 rem = memcpy_mcsafe(mem + off, pmem_addr, chunk);
98cc093c 137 kunmap_atomic(mem);
60622d68 138 if (rem)
98cc093c
HY
139 return BLK_STS_IOERR;
140 len -= chunk;
141 off = 0;
142 page++;
9dc6488e 143 pmem_addr += chunk;
98cc093c 144 }
4e4cbee9 145 return BLK_STS_OK;
bd697a80
VV
146}
147
4e4cbee9 148static blk_status_t pmem_do_bvec(struct pmem_device *pmem, struct page *page,
3f289dcb 149 unsigned int len, unsigned int off, unsigned int op,
9e853f23
RZ
150 sector_t sector)
151{
4e4cbee9 152 blk_status_t rc = BLK_STS_OK;
59e64739 153 bool bad_pmem = false;
32ab0a3f 154 phys_addr_t pmem_off = sector * 512 + pmem->data_offset;
7a9eb206 155 void *pmem_addr = pmem->virt_addr + pmem_off;
9e853f23 156
59e64739
DW
157 if (unlikely(is_bad_pmem(&pmem->bb, sector, len)))
158 bad_pmem = true;
159
3f289dcb 160 if (!op_is_write(op)) {
59e64739 161 if (unlikely(bad_pmem))
4e4cbee9 162 rc = BLK_STS_IOERR;
b5ebc8ec 163 else {
bd697a80 164 rc = read_pmem(page, off, pmem_addr, len);
b5ebc8ec
DW
165 flush_dcache_page(page);
166 }
9e853f23 167 } else {
0a370d26
DW
168 /*
169 * Note that we write the data both before and after
170 * clearing poison. The write before clear poison
171 * handles situations where the latest written data is
172 * preserved and the clear poison operation simply marks
173 * the address range as valid without changing the data.
174 * In this case application software can assume that an
175 * interrupted write will either return the new good
176 * data or an error.
177 *
178 * However, if pmem_clear_poison() leaves the data in an
179 * indeterminate state we need to perform the write
180 * after clear poison.
181 */
9e853f23 182 flush_dcache_page(page);
bd697a80 183 write_pmem(pmem_addr, page, off, len);
59e64739 184 if (unlikely(bad_pmem)) {
3115bb02 185 rc = pmem_clear_poison(pmem, pmem_off, len);
bd697a80 186 write_pmem(pmem_addr, page, off, len);
59e64739 187 }
9e853f23
RZ
188 }
189
b5ebc8ec 190 return rc;
9e853f23
RZ
191}
192
dece1635 193static blk_qc_t pmem_make_request(struct request_queue *q, struct bio *bio)
9e853f23 194{
4e4cbee9 195 blk_status_t rc = 0;
f0dc089c
DW
196 bool do_acct;
197 unsigned long start;
9e853f23 198 struct bio_vec bvec;
9e853f23 199 struct bvec_iter iter;
bd842b8c 200 struct pmem_device *pmem = q->queuedata;
7e267a8c
DW
201 struct nd_region *nd_region = to_region(pmem);
202
d2d6364d 203 if (bio->bi_opf & REQ_PREFLUSH)
7e267a8c 204 nvdimm_flush(nd_region);
9e853f23 205
f0dc089c 206 do_acct = nd_iostat_start(bio, &start);
e10624f8
DW
207 bio_for_each_segment(bvec, bio, iter) {
208 rc = pmem_do_bvec(pmem, bvec.bv_page, bvec.bv_len,
3f289dcb 209 bvec.bv_offset, bio_op(bio), iter.bi_sector);
e10624f8 210 if (rc) {
4e4cbee9 211 bio->bi_status = rc;
e10624f8
DW
212 break;
213 }
214 }
f0dc089c
DW
215 if (do_acct)
216 nd_iostat_end(bio, start);
61031952 217
1eff9d32 218 if (bio->bi_opf & REQ_FUA)
7e267a8c 219 nvdimm_flush(nd_region);
61031952 220
4246a0b6 221 bio_endio(bio);
dece1635 222 return BLK_QC_T_NONE;
9e853f23
RZ
223}
224
225static int pmem_rw_page(struct block_device *bdev, sector_t sector,
3f289dcb 226 struct page *page, unsigned int op)
9e853f23 227{
bd842b8c 228 struct pmem_device *pmem = bdev->bd_queue->queuedata;
4e4cbee9 229 blk_status_t rc;
9e853f23 230
98cc093c 231 rc = pmem_do_bvec(pmem, page, hpage_nr_pages(page) * PAGE_SIZE,
3f289dcb 232 0, op, sector);
9e853f23 233
e10624f8
DW
234 /*
235 * The ->rw_page interface is subtle and tricky. The core
236 * retries on any error, so we can only invoke page_endio() in
237 * the successful completion case. Otherwise, we'll see crashes
238 * caused by double completion.
239 */
240 if (rc == 0)
3f289dcb 241 page_endio(page, op_is_write(op), 0);
e10624f8 242
4e4cbee9 243 return blk_status_to_errno(rc);
9e853f23
RZ
244}
245
f295e53b 246/* see "strong" declaration in tools/testing/nvdimm/pmem-dax.c */
c1d6e828
DW
247__weak long __pmem_direct_access(struct pmem_device *pmem, pgoff_t pgoff,
248 long nr_pages, void **kaddr, pfn_t *pfn)
9e853f23 249{
c1d6e828 250 resource_size_t offset = PFN_PHYS(pgoff) + pmem->data_offset;
589e75d1 251
c1d6e828
DW
252 if (unlikely(is_bad_pmem(&pmem->bb, PFN_PHYS(pgoff) / 512,
253 PFN_PHYS(nr_pages))))
0a70bd43 254 return -EIO;
46a590cd
HY
255
256 if (kaddr)
257 *kaddr = pmem->virt_addr + offset;
258 if (pfn)
259 *pfn = phys_to_pfn_t(pmem->phys_addr + offset, pmem->pfn_flags);
9e853f23 260
0a70bd43
DW
261 /*
262 * If badblocks are present, limit known good range to the
263 * requested range.
264 */
265 if (unlikely(pmem->bb.count))
c1d6e828
DW
266 return nr_pages;
267 return PHYS_PFN(pmem->size - pmem->pfn_pad - offset);
9e853f23
RZ
268}
269
270static const struct block_device_operations pmem_fops = {
271 .owner = THIS_MODULE,
272 .rw_page = pmem_rw_page,
58138820 273 .revalidate_disk = nvdimm_revalidate_disk,
9e853f23
RZ
274};
275
c1d6e828
DW
276static long pmem_dax_direct_access(struct dax_device *dax_dev,
277 pgoff_t pgoff, long nr_pages, void **kaddr, pfn_t *pfn)
278{
279 struct pmem_device *pmem = dax_get_private(dax_dev);
280
281 return __pmem_direct_access(pmem, pgoff, nr_pages, kaddr, pfn);
282}
283
52f476a3
DW
284/*
285 * Use the 'no check' versions of copy_from_iter_flushcache() and
286 * copy_to_iter_mcsafe() to bypass HARDENED_USERCOPY overhead. Bounds
287 * checking, both file offset and device offset, is handled by
288 * dax_iomap_actor()
289 */
0aed55af
DW
290static size_t pmem_copy_from_iter(struct dax_device *dax_dev, pgoff_t pgoff,
291 void *addr, size_t bytes, struct iov_iter *i)
292{
52f476a3 293 return _copy_from_iter_flushcache(addr, bytes, i);
0aed55af
DW
294}
295
b3a9a0c3
DW
296static size_t pmem_copy_to_iter(struct dax_device *dax_dev, pgoff_t pgoff,
297 void *addr, size_t bytes, struct iov_iter *i)
298{
52f476a3 299 return _copy_to_iter_mcsafe(addr, bytes, i);
b3a9a0c3
DW
300}
301
c1d6e828
DW
302static const struct dax_operations pmem_dax_ops = {
303 .direct_access = pmem_dax_direct_access,
7bf7eac8 304 .dax_supported = generic_fsdax_supported,
0aed55af 305 .copy_from_iter = pmem_copy_from_iter,
b3a9a0c3 306 .copy_to_iter = pmem_copy_to_iter,
c1d6e828
DW
307};
308
6e0c90d6
DW
309static const struct attribute_group *pmem_attribute_groups[] = {
310 &dax_attribute_group,
311 NULL,
c1d6e828
DW
312};
313
030b99e3
DW
314static void pmem_release_queue(void *q)
315{
316 blk_cleanup_queue(q);
317}
318
a95c90f1 319static void pmem_freeze_queue(struct percpu_ref *ref)
71389703 320{
a95c90f1
DW
321 struct request_queue *q;
322
323 q = container_of(ref, typeof(*q), q_usage_counter);
d3b5d352 324 blk_freeze_queue_start(q);
71389703
DW
325}
326
c1d6e828 327static void pmem_release_disk(void *__pmem)
030b99e3 328{
c1d6e828
DW
329 struct pmem_device *pmem = __pmem;
330
331 kill_dax(pmem->dax_dev);
332 put_dax(pmem->dax_dev);
333 del_gendisk(pmem->disk);
334 put_disk(pmem->disk);
030b99e3
DW
335}
336
e7638488
DW
337static void pmem_release_pgmap_ops(void *__pgmap)
338{
339 dev_pagemap_put_ops();
340}
341
342static void fsdax_pagefree(struct page *page, void *data)
343{
344 wake_up_var(&page->_refcount);
345}
346
347static int setup_pagemap_fsdax(struct device *dev, struct dev_pagemap *pgmap)
348{
349 dev_pagemap_get_ops();
350 if (devm_add_action_or_reset(dev, pmem_release_pgmap_ops, pgmap))
351 return -ENOMEM;
352 pgmap->type = MEMORY_DEVICE_FS_DAX;
353 pgmap->page_free = fsdax_pagefree;
354
355 return 0;
356}
357
200c79da
DW
358static int pmem_attach_disk(struct device *dev,
359 struct nd_namespace_common *ndns)
9e853f23 360{
200c79da 361 struct nd_namespace_io *nsio = to_nd_namespace_io(&ndns->dev);
f284a4f2 362 struct nd_region *nd_region = to_nd_region(dev->parent);
ce7f11a2 363 int nid = dev_to_node(dev), fua;
200c79da 364 struct resource *res = &nsio->res;
e8d51348 365 struct resource bb_res;
200c79da 366 struct nd_pfn *nd_pfn = NULL;
c1d6e828 367 struct dax_device *dax_dev;
200c79da 368 struct nd_pfn_sb *pfn_sb;
9e853f23 369 struct pmem_device *pmem;
468ded03 370 struct request_queue *q;
6e0c90d6 371 struct device *gendev;
200c79da
DW
372 struct gendisk *disk;
373 void *addr;
e8d51348
CH
374 int rc;
375
376 pmem = devm_kzalloc(dev, sizeof(*pmem), GFP_KERNEL);
377 if (!pmem)
378 return -ENOMEM;
200c79da
DW
379
380 /* while nsio_rw_bytes is active, parse a pfn info block if present */
381 if (is_nd_pfn(dev)) {
382 nd_pfn = to_nd_pfn(dev);
e8d51348
CH
383 rc = nvdimm_setup_pfn(nd_pfn, &pmem->pgmap);
384 if (rc)
385 return rc;
200c79da
DW
386 }
387
388 /* we're attaching a block device, disable raw namespace access */
389 devm_nsio_disable(dev, nsio);
9e853f23 390
200c79da 391 dev_set_drvdata(dev, pmem);
9e853f23
RZ
392 pmem->phys_addr = res->start;
393 pmem->size = resource_size(res);
0b277961
DW
394 fua = nvdimm_has_flush(nd_region);
395 if (!IS_ENABLED(CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE) || fua < 0) {
61031952 396 dev_warn(dev, "unable to guarantee persistence of writes\n");
0b277961
DW
397 fua = 0;
398 }
9e853f23 399
947df02d 400 if (!devm_request_mem_region(dev, res->start, resource_size(res),
450c6633 401 dev_name(&ndns->dev))) {
947df02d 402 dev_warn(dev, "could not reserve region %pR\n", res);
200c79da 403 return -EBUSY;
9e853f23
RZ
404 }
405
6d469642 406 q = blk_alloc_queue_node(GFP_KERNEL, dev_to_node(dev));
468ded03 407 if (!q)
200c79da 408 return -ENOMEM;
468ded03 409
71389703
DW
410 if (devm_add_action_or_reset(dev, pmem_release_queue, q))
411 return -ENOMEM;
412
34c0fd54 413 pmem->pfn_flags = PFN_DEV;
e8d51348 414 pmem->pgmap.ref = &q->q_usage_counter;
a95c90f1 415 pmem->pgmap.kill = pmem_freeze_queue;
200c79da 416 if (is_nd_pfn(dev)) {
e7638488
DW
417 if (setup_pagemap_fsdax(dev, &pmem->pgmap))
418 return -ENOMEM;
e8d51348 419 addr = devm_memremap_pages(dev, &pmem->pgmap);
200c79da
DW
420 pfn_sb = nd_pfn->pfn_sb;
421 pmem->data_offset = le64_to_cpu(pfn_sb->dataoff);
e8d51348
CH
422 pmem->pfn_pad = resource_size(res) -
423 resource_size(&pmem->pgmap.res);
200c79da 424 pmem->pfn_flags |= PFN_MAP;
e8d51348
CH
425 memcpy(&bb_res, &pmem->pgmap.res, sizeof(bb_res));
426 bb_res.start += pmem->data_offset;
200c79da 427 } else if (pmem_should_map_pages(dev)) {
e8d51348
CH
428 memcpy(&pmem->pgmap.res, &nsio->res, sizeof(pmem->pgmap.res));
429 pmem->pgmap.altmap_valid = false;
e7638488
DW
430 if (setup_pagemap_fsdax(dev, &pmem->pgmap))
431 return -ENOMEM;
e8d51348 432 addr = devm_memremap_pages(dev, &pmem->pgmap);
34c0fd54 433 pmem->pfn_flags |= PFN_MAP;
e8d51348 434 memcpy(&bb_res, &pmem->pgmap.res, sizeof(bb_res));
91ed7ac4 435 } else {
200c79da
DW
436 addr = devm_memremap(dev, pmem->phys_addr,
437 pmem->size, ARCH_MEMREMAP_PMEM);
91ed7ac4
DW
438 memcpy(&bb_res, &nsio->res, sizeof(bb_res));
439 }
b36f4761 440
200c79da
DW
441 if (IS_ERR(addr))
442 return PTR_ERR(addr);
7a9eb206 443 pmem->virt_addr = addr;
9e853f23 444
ce7f11a2 445 blk_queue_write_cache(q, true, fua);
5a92289f
DW
446 blk_queue_make_request(q, pmem_make_request);
447 blk_queue_physical_block_size(q, PAGE_SIZE);
f979b13c 448 blk_queue_logical_block_size(q, pmem_sector_size(ndns));
5a92289f 449 blk_queue_max_hw_sectors(q, UINT_MAX);
8b904b5b 450 blk_queue_flag_set(QUEUE_FLAG_NONROT, q);
4557641b
RZ
451 if (pmem->pfn_flags & PFN_MAP)
452 blk_queue_flag_set(QUEUE_FLAG_DAX, q);
5a92289f 453 q->queuedata = pmem;
9e853f23 454
538ea4aa 455 disk = alloc_disk_node(0, nid);
030b99e3
DW
456 if (!disk)
457 return -ENOMEM;
c1d6e828 458 pmem->disk = disk;
9e853f23 459
9e853f23 460 disk->fops = &pmem_fops;
5a92289f 461 disk->queue = q;
9e853f23 462 disk->flags = GENHD_FL_EXT_DEVT;
23c47d2a 463 disk->queue->backing_dev_info->capabilities |= BDI_CAP_SYNCHRONOUS_IO;
5212e11f 464 nvdimm_namespace_disk_name(ndns, disk->disk_name);
cfe30b87
DW
465 set_capacity(disk, (pmem->size - pmem->pfn_pad - pmem->data_offset)
466 / 512);
b95f5f43
DW
467 if (devm_init_badblocks(dev, &pmem->bb))
468 return -ENOMEM;
e8d51348 469 nvdimm_badblocks_populate(nd_region, &pmem->bb, &bb_res);
57f7f317 470 disk->bb = &pmem->bb;
f02716db 471
c1d6e828
DW
472 dax_dev = alloc_dax(pmem, disk->disk_name, &pmem_dax_ops);
473 if (!dax_dev) {
474 put_disk(disk);
475 return -ENOMEM;
476 }
ce7f11a2 477 dax_write_cache(dax_dev, nvdimm_has_cache(nd_region));
c1d6e828
DW
478 pmem->dax_dev = dax_dev;
479
6e0c90d6
DW
480 gendev = disk_to_dev(disk);
481 gendev->groups = pmem_attribute_groups;
482
fef912bf 483 device_add_disk(dev, disk, NULL);
c1d6e828 484 if (devm_add_action_or_reset(dev, pmem_release_disk, pmem))
f02716db
DW
485 return -ENOMEM;
486
58138820 487 revalidate_disk(disk);
9e853f23 488
975750a9
TK
489 pmem->bb_state = sysfs_get_dirent(disk_to_dev(disk)->kobj.sd,
490 "badblocks");
6aa734a2
DW
491 if (!pmem->bb_state)
492 dev_warn(dev, "'badblocks' notification disabled\n");
975750a9 493
8c2f7e86
DW
494 return 0;
495}
9e853f23 496
9f53f9fa 497static int nd_pmem_probe(struct device *dev)
9e853f23 498{
8c2f7e86 499 struct nd_namespace_common *ndns;
9e853f23 500
8c2f7e86
DW
501 ndns = nvdimm_namespace_common_probe(dev);
502 if (IS_ERR(ndns))
503 return PTR_ERR(ndns);
bf9bccc1 504
200c79da
DW
505 if (devm_nsio_enable(dev, to_nd_namespace_io(&ndns->dev)))
506 return -ENXIO;
708ab62b 507
200c79da 508 if (is_nd_btt(dev))
708ab62b
CH
509 return nvdimm_namespace_attach_btt(ndns);
510
32ab0a3f 511 if (is_nd_pfn(dev))
200c79da 512 return pmem_attach_disk(dev, ndns);
32ab0a3f 513
200c79da 514 /* if we find a valid info-block we'll come back as that personality */
c5ed9268
DW
515 if (nd_btt_probe(dev, ndns) == 0 || nd_pfn_probe(dev, ndns) == 0
516 || nd_dax_probe(dev, ndns) == 0)
32ab0a3f 517 return -ENXIO;
32ab0a3f 518
200c79da
DW
519 /* ...otherwise we're just a raw pmem device */
520 return pmem_attach_disk(dev, ndns);
9e853f23
RZ
521}
522
9f53f9fa 523static int nd_pmem_remove(struct device *dev)
9e853f23 524{
6aa734a2
DW
525 struct pmem_device *pmem = dev_get_drvdata(dev);
526
8c2f7e86 527 if (is_nd_btt(dev))
298f2bc5 528 nvdimm_namespace_detach_btt(to_nd_btt(dev));
6aa734a2
DW
529 else {
530 /*
531 * Note, this assumes device_lock() context to not race
532 * nd_pmem_notify()
533 */
534 sysfs_put(pmem->bb_state);
535 pmem->bb_state = NULL;
536 }
476f848a
DW
537 nvdimm_flush(to_nd_region(dev->parent));
538
9e853f23
RZ
539 return 0;
540}
541
476f848a
DW
542static void nd_pmem_shutdown(struct device *dev)
543{
544 nvdimm_flush(to_nd_region(dev->parent));
545}
546
71999466
DW
547static void nd_pmem_notify(struct device *dev, enum nvdimm_event event)
548{
b2518c78 549 struct nd_region *nd_region;
298f2bc5
DW
550 resource_size_t offset = 0, end_trunc = 0;
551 struct nd_namespace_common *ndns;
552 struct nd_namespace_io *nsio;
553 struct resource res;
b2518c78 554 struct badblocks *bb;
975750a9 555 struct kernfs_node *bb_state;
71999466
DW
556
557 if (event != NVDIMM_REVALIDATE_POISON)
558 return;
559
298f2bc5
DW
560 if (is_nd_btt(dev)) {
561 struct nd_btt *nd_btt = to_nd_btt(dev);
562
563 ndns = nd_btt->ndns;
b2518c78
TK
564 nd_region = to_nd_region(ndns->dev.parent);
565 nsio = to_nd_namespace_io(&ndns->dev);
566 bb = &nsio->bb;
975750a9 567 bb_state = NULL;
b2518c78
TK
568 } else {
569 struct pmem_device *pmem = dev_get_drvdata(dev);
a3901802 570
b2518c78
TK
571 nd_region = to_region(pmem);
572 bb = &pmem->bb;
975750a9 573 bb_state = pmem->bb_state;
b2518c78
TK
574
575 if (is_nd_pfn(dev)) {
576 struct nd_pfn *nd_pfn = to_nd_pfn(dev);
577 struct nd_pfn_sb *pfn_sb = nd_pfn->pfn_sb;
578
579 ndns = nd_pfn->ndns;
580 offset = pmem->data_offset +
581 __le32_to_cpu(pfn_sb->start_pad);
582 end_trunc = __le32_to_cpu(pfn_sb->end_trunc);
583 } else {
584 ndns = to_ndns(dev);
585 }
586
587 nsio = to_nd_namespace_io(&ndns->dev);
588 }
a3901802 589
298f2bc5
DW
590 res.start = nsio->res.start + offset;
591 res.end = nsio->res.end - end_trunc;
b2518c78 592 nvdimm_badblocks_populate(nd_region, bb, &res);
975750a9
TK
593 if (bb_state)
594 sysfs_notify_dirent(bb_state);
71999466
DW
595}
596
9f53f9fa
DW
597MODULE_ALIAS("pmem");
598MODULE_ALIAS_ND_DEVICE(ND_DEVICE_NAMESPACE_IO);
bf9bccc1 599MODULE_ALIAS_ND_DEVICE(ND_DEVICE_NAMESPACE_PMEM);
9f53f9fa
DW
600static struct nd_device_driver nd_pmem_driver = {
601 .probe = nd_pmem_probe,
602 .remove = nd_pmem_remove,
71999466 603 .notify = nd_pmem_notify,
476f848a 604 .shutdown = nd_pmem_shutdown,
9f53f9fa
DW
605 .drv = {
606 .name = "nd_pmem",
9e853f23 607 },
bf9bccc1 608 .type = ND_DRIVER_NAMESPACE_IO | ND_DRIVER_NAMESPACE_PMEM,
9e853f23
RZ
609};
610
03e90843 611module_nd_driver(nd_pmem_driver);
9e853f23
RZ
612
613MODULE_AUTHOR("Ross Zwisler <ross.zwisler@linux.intel.com>");
614MODULE_LICENSE("GPL v2");