blob: e303655f243e7947d6b2e8b76d24a237312647c7 [file] [log] [blame]
Ross Zwisler9e853f22015-04-01 09:12:19 +02001/*
2 * Persistent Memory Driver
3 *
Dan Williams9f53f9f2015-06-09 15:33:45 -04004 * Copyright (c) 2014-2015, Intel Corporation.
Ross Zwisler9e853f22015-04-01 09:12:19 +02005 * 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>
23#include <linux/module.h>
24#include <linux/moduleparam.h>
Dan Williamsb95f5f42016-01-04 23:50:23 -080025#include <linux/badblocks.h>
Dan Williams9476df72016-01-15 16:56:19 -080026#include <linux/memremap.h>
Dan Williams32ab0a3f2015-08-01 02:16:37 -040027#include <linux/vmalloc.h>
Dan Williams34c0fd52016-01-15 16:56:14 -080028#include <linux/pfn_t.h>
Ross Zwisler9e853f22015-04-01 09:12:19 +020029#include <linux/slab.h>
Ross Zwisler61031952015-06-25 03:08:39 -040030#include <linux/pmem.h>
Dan Williams9f53f9f2015-06-09 15:33:45 -040031#include <linux/nd.h>
Dan Williamsf295e532016-06-17 11:08:06 -070032#include "pmem.h"
Dan Williams32ab0a3f2015-08-01 02:16:37 -040033#include "pfn.h"
Dan Williams9f53f9f2015-06-09 15:33:45 -040034#include "nd.h"
Ross Zwisler9e853f22015-04-01 09:12:19 +020035
Dan Williamsf284a4f2016-07-07 19:44:50 -070036static struct device *to_dev(struct pmem_device *pmem)
37{
38 /*
39 * nvdimm bus services need a 'dev' parameter, and we record the device
40 * at init in bb.dev.
41 */
42 return pmem->bb.dev;
43}
44
45static struct nd_region *to_region(struct pmem_device *pmem)
46{
47 return to_nd_region(to_dev(pmem)->parent);
48}
49
Dan Williams59e64732016-03-08 07:16:07 -080050static void pmem_clear_poison(struct pmem_device *pmem, phys_addr_t offset,
51 unsigned int len)
52{
Dan Williamsf284a4f2016-07-07 19:44:50 -070053 struct device *dev = to_dev(pmem);
Dan Williams59e64732016-03-08 07:16:07 -080054 sector_t sector;
55 long cleared;
56
57 sector = (offset - pmem->data_offset) / 512;
58 cleared = nvdimm_clear_poison(dev, pmem->phys_addr + offset, len);
59
60 if (cleared > 0 && cleared / 512) {
61 dev_dbg(dev, "%s: %llx clear %ld sector%s\n",
62 __func__, (unsigned long long) sector,
63 cleared / 512, cleared / 512 > 1 ? "s" : "");
64 badblocks_clear(&pmem->bb, sector, cleared / 512);
65 }
66 invalidate_pmem(pmem->virt_addr + offset, len);
67}
68
Dan Williamse10624f2016-01-06 12:03:41 -080069static int pmem_do_bvec(struct pmem_device *pmem, struct page *page,
Ross Zwisler9e853f22015-04-01 09:12:19 +020070 unsigned int len, unsigned int off, int rw,
71 sector_t sector)
72{
Dan Williamsb5ebc8e2016-03-06 15:20:51 -080073 int rc = 0;
Dan Williams59e64732016-03-08 07:16:07 -080074 bool bad_pmem = false;
Ross Zwisler9e853f22015-04-01 09:12:19 +020075 void *mem = kmap_atomic(page);
Dan Williams32ab0a3f2015-08-01 02:16:37 -040076 phys_addr_t pmem_off = sector * 512 + pmem->data_offset;
Ross Zwisler61031952015-06-25 03:08:39 -040077 void __pmem *pmem_addr = pmem->virt_addr + pmem_off;
Ross Zwisler9e853f22015-04-01 09:12:19 +020078
Dan Williams59e64732016-03-08 07:16:07 -080079 if (unlikely(is_bad_pmem(&pmem->bb, sector, len)))
80 bad_pmem = true;
81
Ross Zwisler9e853f22015-04-01 09:12:19 +020082 if (rw == READ) {
Dan Williams59e64732016-03-08 07:16:07 -080083 if (unlikely(bad_pmem))
Dan Williamsb5ebc8e2016-03-06 15:20:51 -080084 rc = -EIO;
85 else {
Dan Williamsfc0c2022016-03-08 10:30:19 -080086 rc = memcpy_from_pmem(mem + off, pmem_addr, len);
Dan Williamsb5ebc8e2016-03-06 15:20:51 -080087 flush_dcache_page(page);
88 }
Ross Zwisler9e853f22015-04-01 09:12:19 +020089 } else {
Dan Williams0a370d262016-04-14 19:40:47 -070090 /*
91 * Note that we write the data both before and after
92 * clearing poison. The write before clear poison
93 * handles situations where the latest written data is
94 * preserved and the clear poison operation simply marks
95 * the address range as valid without changing the data.
96 * In this case application software can assume that an
97 * interrupted write will either return the new good
98 * data or an error.
99 *
100 * However, if pmem_clear_poison() leaves the data in an
101 * indeterminate state we need to perform the write
102 * after clear poison.
103 */
Ross Zwisler9e853f22015-04-01 09:12:19 +0200104 flush_dcache_page(page);
Ross Zwisler61031952015-06-25 03:08:39 -0400105 memcpy_to_pmem(pmem_addr, mem + off, len);
Dan Williams59e64732016-03-08 07:16:07 -0800106 if (unlikely(bad_pmem)) {
107 pmem_clear_poison(pmem, pmem_off, len);
108 memcpy_to_pmem(pmem_addr, mem + off, len);
109 }
Ross Zwisler9e853f22015-04-01 09:12:19 +0200110 }
111
112 kunmap_atomic(mem);
Dan Williamsb5ebc8e2016-03-06 15:20:51 -0800113 return rc;
Ross Zwisler9e853f22015-04-01 09:12:19 +0200114}
115
Jens Axboedece1632015-11-05 10:41:16 -0700116static blk_qc_t pmem_make_request(struct request_queue *q, struct bio *bio)
Ross Zwisler9e853f22015-04-01 09:12:19 +0200117{
Dan Williamse10624f2016-01-06 12:03:41 -0800118 int rc = 0;
Dan Williamsf0dc0892015-05-16 12:28:53 -0400119 bool do_acct;
120 unsigned long start;
Dan Williamsedc870e2015-05-16 12:28:51 -0400121 struct bio_vec bvec;
122 struct bvec_iter iter;
Dan Williamsbd842b82016-03-18 23:47:43 -0700123 struct pmem_device *pmem = q->queuedata;
Ross Zwisler9e853f22015-04-01 09:12:19 +0200124
Dan Williamsf0dc0892015-05-16 12:28:53 -0400125 do_acct = nd_iostat_start(bio, &start);
Dan Williamse10624f2016-01-06 12:03:41 -0800126 bio_for_each_segment(bvec, bio, iter) {
127 rc = pmem_do_bvec(pmem, bvec.bv_page, bvec.bv_len,
128 bvec.bv_offset, bio_data_dir(bio),
129 iter.bi_sector);
130 if (rc) {
131 bio->bi_error = rc;
132 break;
133 }
134 }
Dan Williamsf0dc0892015-05-16 12:28:53 -0400135 if (do_acct)
136 nd_iostat_end(bio, start);
Ross Zwisler61031952015-06-25 03:08:39 -0400137
138 if (bio_data_dir(bio))
Dan Williamsf284a4f2016-07-07 19:44:50 -0700139 nvdimm_flush(to_region(pmem));
Ross Zwisler61031952015-06-25 03:08:39 -0400140
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200141 bio_endio(bio);
Jens Axboedece1632015-11-05 10:41:16 -0700142 return BLK_QC_T_NONE;
Ross Zwisler9e853f22015-04-01 09:12:19 +0200143}
144
145static int pmem_rw_page(struct block_device *bdev, sector_t sector,
146 struct page *page, int rw)
147{
Dan Williamsbd842b82016-03-18 23:47:43 -0700148 struct pmem_device *pmem = bdev->bd_queue->queuedata;
Dan Williamse10624f2016-01-06 12:03:41 -0800149 int rc;
Ross Zwisler9e853f22015-04-01 09:12:19 +0200150
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300151 rc = pmem_do_bvec(pmem, page, PAGE_SIZE, 0, rw, sector);
Ross Zwislerba8fe0f2015-09-16 14:52:21 -0600152 if (rw & WRITE)
Dan Williamsf284a4f2016-07-07 19:44:50 -0700153 nvdimm_flush(to_region(pmem));
Ross Zwisler9e853f22015-04-01 09:12:19 +0200154
Dan Williamse10624f2016-01-06 12:03:41 -0800155 /*
156 * The ->rw_page interface is subtle and tricky. The core
157 * retries on any error, so we can only invoke page_endio() in
158 * the successful completion case. Otherwise, we'll see crashes
159 * caused by double completion.
160 */
161 if (rc == 0)
162 page_endio(page, rw & WRITE, 0);
163
164 return rc;
Ross Zwisler9e853f22015-04-01 09:12:19 +0200165}
166
Dan Williamsf295e532016-06-17 11:08:06 -0700167/* see "strong" declaration in tools/testing/nvdimm/pmem-dax.c */
168__weak long pmem_direct_access(struct block_device *bdev, sector_t sector,
Dan Williams0a70bd42016-02-24 14:02:11 -0800169 void __pmem **kaddr, pfn_t *pfn, long size)
Ross Zwisler9e853f22015-04-01 09:12:19 +0200170{
Dan Williamsbd842b82016-03-18 23:47:43 -0700171 struct pmem_device *pmem = bdev->bd_queue->queuedata;
Dan Williams32ab0a3f2015-08-01 02:16:37 -0400172 resource_size_t offset = sector * 512 + pmem->data_offset;
Ross Zwisler9e853f22015-04-01 09:12:19 +0200173
Dan Williams0a70bd42016-02-24 14:02:11 -0800174 if (unlikely(is_bad_pmem(&pmem->bb, sector, size)))
175 return -EIO;
Ross Zwislere2e05392015-08-18 13:55:41 -0600176 *kaddr = pmem->virt_addr + offset;
Dan Williams34c0fd52016-01-15 16:56:14 -0800177 *pfn = phys_to_pfn_t(pmem->phys_addr + offset, pmem->pfn_flags);
Ross Zwisler9e853f22015-04-01 09:12:19 +0200178
Dan Williams0a70bd42016-02-24 14:02:11 -0800179 /*
180 * If badblocks are present, limit known good range to the
181 * requested range.
182 */
183 if (unlikely(pmem->bb.count))
184 return size;
Dan Williamscfe30b82016-03-03 09:38:00 -0800185 return pmem->size - pmem->pfn_pad - offset;
Ross Zwisler9e853f22015-04-01 09:12:19 +0200186}
187
188static const struct block_device_operations pmem_fops = {
189 .owner = THIS_MODULE,
190 .rw_page = pmem_rw_page,
191 .direct_access = pmem_direct_access,
Dan Williams58138822015-06-23 20:08:34 -0400192 .revalidate_disk = nvdimm_revalidate_disk,
Ross Zwisler9e853f22015-04-01 09:12:19 +0200193};
194
Dan Williams030b99e2016-03-17 20:24:31 -0700195static void pmem_release_queue(void *q)
196{
197 blk_cleanup_queue(q);
198}
199
Dan Williamsf02716d2016-06-15 14:59:17 -0700200static void pmem_release_disk(void *disk)
Dan Williams030b99e2016-03-17 20:24:31 -0700201{
202 del_gendisk(disk);
203 put_disk(disk);
204}
205
Dan Williams200c79d2016-03-22 00:22:16 -0700206static int pmem_attach_disk(struct device *dev,
207 struct nd_namespace_common *ndns)
Ross Zwisler9e853f22015-04-01 09:12:19 +0200208{
Dan Williams200c79d2016-03-22 00:22:16 -0700209 struct nd_namespace_io *nsio = to_nd_namespace_io(&ndns->dev);
Dan Williamsf284a4f2016-07-07 19:44:50 -0700210 struct nd_region *nd_region = to_nd_region(dev->parent);
Dan Williams200c79d2016-03-22 00:22:16 -0700211 struct vmem_altmap __altmap, *altmap = NULL;
212 struct resource *res = &nsio->res;
213 struct nd_pfn *nd_pfn = NULL;
214 int nid = dev_to_node(dev);
215 struct nd_pfn_sb *pfn_sb;
Ross Zwisler9e853f22015-04-01 09:12:19 +0200216 struct pmem_device *pmem;
Dan Williams200c79d2016-03-22 00:22:16 -0700217 struct resource pfn_res;
Dan Williams468ded02016-01-15 16:56:46 -0800218 struct request_queue *q;
Dan Williams200c79d2016-03-22 00:22:16 -0700219 struct gendisk *disk;
220 void *addr;
221
222 /* while nsio_rw_bytes is active, parse a pfn info block if present */
223 if (is_nd_pfn(dev)) {
224 nd_pfn = to_nd_pfn(dev);
225 altmap = nvdimm_setup_pfn(nd_pfn, &pfn_res, &__altmap);
226 if (IS_ERR(altmap))
227 return PTR_ERR(altmap);
228 }
229
230 /* we're attaching a block device, disable raw namespace access */
231 devm_nsio_disable(dev, nsio);
Ross Zwisler9e853f22015-04-01 09:12:19 +0200232
Christoph Hellwig708ab622015-08-10 23:07:08 -0400233 pmem = devm_kzalloc(dev, sizeof(*pmem), GFP_KERNEL);
Ross Zwisler9e853f22015-04-01 09:12:19 +0200234 if (!pmem)
Dan Williams200c79d2016-03-22 00:22:16 -0700235 return -ENOMEM;
Ross Zwisler9e853f22015-04-01 09:12:19 +0200236
Dan Williams200c79d2016-03-22 00:22:16 -0700237 dev_set_drvdata(dev, pmem);
Ross Zwisler9e853f22015-04-01 09:12:19 +0200238 pmem->phys_addr = res->start;
239 pmem->size = resource_size(res);
Dan Williamsf284a4f2016-07-07 19:44:50 -0700240 if (nvdimm_has_flush(nd_region) < 0)
Ross Zwisler61031952015-06-25 03:08:39 -0400241 dev_warn(dev, "unable to guarantee persistence of writes\n");
Ross Zwisler9e853f22015-04-01 09:12:19 +0200242
Dan Williams947df022016-03-21 22:28:40 -0700243 if (!devm_request_mem_region(dev, res->start, resource_size(res),
244 dev_name(dev))) {
245 dev_warn(dev, "could not reserve region %pR\n", res);
Dan Williams200c79d2016-03-22 00:22:16 -0700246 return -EBUSY;
Ross Zwisler9e853f22015-04-01 09:12:19 +0200247 }
248
Dan Williams468ded02016-01-15 16:56:46 -0800249 q = blk_alloc_queue_node(GFP_KERNEL, dev_to_node(dev));
250 if (!q)
Dan Williams200c79d2016-03-22 00:22:16 -0700251 return -ENOMEM;
Dan Williams468ded02016-01-15 16:56:46 -0800252
Dan Williams34c0fd52016-01-15 16:56:14 -0800253 pmem->pfn_flags = PFN_DEV;
Dan Williams200c79d2016-03-22 00:22:16 -0700254 if (is_nd_pfn(dev)) {
255 addr = devm_memremap_pages(dev, &pfn_res, &q->q_usage_counter,
256 altmap);
257 pfn_sb = nd_pfn->pfn_sb;
258 pmem->data_offset = le64_to_cpu(pfn_sb->dataoff);
259 pmem->pfn_pad = resource_size(res) - resource_size(&pfn_res);
260 pmem->pfn_flags |= PFN_MAP;
261 res = &pfn_res; /* for badblocks populate */
262 res->start += pmem->data_offset;
263 } else if (pmem_should_map_pages(dev)) {
264 addr = devm_memremap_pages(dev, &nsio->res,
Dan Williams5c2c2582016-01-15 16:56:49 -0800265 &q->q_usage_counter, NULL);
Dan Williams34c0fd52016-01-15 16:56:14 -0800266 pmem->pfn_flags |= PFN_MAP;
267 } else
Dan Williams200c79d2016-03-22 00:22:16 -0700268 addr = devm_memremap(dev, pmem->phys_addr,
269 pmem->size, ARCH_MEMREMAP_PMEM);
Dan Williamsb36f4762015-09-15 02:42:20 -0400270
Dan Williams030b99e2016-03-17 20:24:31 -0700271 /*
272 * At release time the queue must be dead before
273 * devm_memremap_pages is unwound
274 */
Dan Williamsf02716d2016-06-15 14:59:17 -0700275 if (devm_add_action_or_reset(dev, pmem_release_queue, q))
Dan Williams200c79d2016-03-22 00:22:16 -0700276 return -ENOMEM;
Dan Williams8c2f7e82015-06-25 04:20:04 -0400277
Dan Williams200c79d2016-03-22 00:22:16 -0700278 if (IS_ERR(addr))
279 return PTR_ERR(addr);
280 pmem->virt_addr = (void __pmem *) addr;
Ross Zwisler9e853f22015-04-01 09:12:19 +0200281
Dan Williams5a922892016-03-21 15:43:53 -0700282 blk_queue_make_request(q, pmem_make_request);
283 blk_queue_physical_block_size(q, PAGE_SIZE);
284 blk_queue_max_hw_sectors(q, UINT_MAX);
285 blk_queue_bounce_limit(q, BLK_BOUNCE_ANY);
286 queue_flag_set_unlocked(QUEUE_FLAG_NONROT, q);
287 q->queuedata = pmem;
Ross Zwisler9e853f22015-04-01 09:12:19 +0200288
Dan Williams538ea4a2015-10-05 20:35:56 -0400289 disk = alloc_disk_node(0, nid);
Dan Williams030b99e2016-03-17 20:24:31 -0700290 if (!disk)
291 return -ENOMEM;
Ross Zwisler9e853f22015-04-01 09:12:19 +0200292
Ross Zwisler9e853f22015-04-01 09:12:19 +0200293 disk->fops = &pmem_fops;
Dan Williams5a922892016-03-21 15:43:53 -0700294 disk->queue = q;
Ross Zwisler9e853f22015-04-01 09:12:19 +0200295 disk->flags = GENHD_FL_EXT_DEVT;
Vishal Verma5212e112015-06-25 04:20:32 -0400296 nvdimm_namespace_disk_name(ndns, disk->disk_name);
Dan Williams32ab0a3f2015-08-01 02:16:37 -0400297 disk->driverfs_dev = dev;
Dan Williamscfe30b82016-03-03 09:38:00 -0800298 set_capacity(disk, (pmem->size - pmem->pfn_pad - pmem->data_offset)
299 / 512);
Dan Williamsb95f5f42016-01-04 23:50:23 -0800300 if (devm_init_badblocks(dev, &pmem->bb))
301 return -ENOMEM;
Dan Williamsf284a4f2016-07-07 19:44:50 -0700302 nvdimm_badblocks_populate(nd_region, &pmem->bb, res);
Dan Williams57f7f312016-01-06 12:03:42 -0800303 disk->bb = &pmem->bb;
Ross Zwisler9e853f22015-04-01 09:12:19 +0200304 add_disk(disk);
Dan Williamsf02716d2016-06-15 14:59:17 -0700305
306 if (devm_add_action_or_reset(dev, pmem_release_disk, disk))
307 return -ENOMEM;
308
Dan Williams58138822015-06-23 20:08:34 -0400309 revalidate_disk(disk);
Ross Zwisler9e853f22015-04-01 09:12:19 +0200310
Dan Williams8c2f7e82015-06-25 04:20:04 -0400311 return 0;
312}
Ross Zwisler9e853f22015-04-01 09:12:19 +0200313
Dan Williams9f53f9f2015-06-09 15:33:45 -0400314static int nd_pmem_probe(struct device *dev)
Ross Zwisler9e853f22015-04-01 09:12:19 +0200315{
Dan Williams8c2f7e82015-06-25 04:20:04 -0400316 struct nd_namespace_common *ndns;
Ross Zwisler9e853f22015-04-01 09:12:19 +0200317
Dan Williams8c2f7e82015-06-25 04:20:04 -0400318 ndns = nvdimm_namespace_common_probe(dev);
319 if (IS_ERR(ndns))
320 return PTR_ERR(ndns);
Dan Williamsbf9bccc2015-06-17 17:14:46 -0400321
Dan Williams200c79d2016-03-22 00:22:16 -0700322 if (devm_nsio_enable(dev, to_nd_namespace_io(&ndns->dev)))
323 return -ENXIO;
Ross Zwisler9e853f22015-04-01 09:12:19 +0200324
Dan Williams200c79d2016-03-22 00:22:16 -0700325 if (is_nd_btt(dev))
Christoph Hellwig708ab622015-08-10 23:07:08 -0400326 return nvdimm_namespace_attach_btt(ndns);
327
Dan Williams32ab0a3f2015-08-01 02:16:37 -0400328 if (is_nd_pfn(dev))
Dan Williams200c79d2016-03-22 00:22:16 -0700329 return pmem_attach_disk(dev, ndns);
Dan Williams32ab0a3f2015-08-01 02:16:37 -0400330
Dan Williams200c79d2016-03-22 00:22:16 -0700331 /* if we find a valid info-block we'll come back as that personality */
Dan Williamsc5ed9262016-05-18 14:50:12 -0700332 if (nd_btt_probe(dev, ndns) == 0 || nd_pfn_probe(dev, ndns) == 0
333 || nd_dax_probe(dev, ndns) == 0)
Dan Williams32ab0a3f2015-08-01 02:16:37 -0400334 return -ENXIO;
Dan Williams32ab0a3f2015-08-01 02:16:37 -0400335
Dan Williams200c79d2016-03-22 00:22:16 -0700336 /* ...otherwise we're just a raw pmem device */
337 return pmem_attach_disk(dev, ndns);
Ross Zwisler9e853f22015-04-01 09:12:19 +0200338}
339
Dan Williams9f53f9f2015-06-09 15:33:45 -0400340static int nd_pmem_remove(struct device *dev)
Ross Zwisler9e853f22015-04-01 09:12:19 +0200341{
Dan Williams8c2f7e82015-06-25 04:20:04 -0400342 if (is_nd_btt(dev))
Dan Williams298f2bc2016-03-15 16:41:04 -0700343 nvdimm_namespace_detach_btt(to_nd_btt(dev));
Ross Zwisler9e853f22015-04-01 09:12:19 +0200344 return 0;
345}
346
Dan Williams71999462016-02-18 10:29:49 -0800347static void nd_pmem_notify(struct device *dev, enum nvdimm_event event)
348{
Dan Williams298f2bc2016-03-15 16:41:04 -0700349 struct pmem_device *pmem = dev_get_drvdata(dev);
Dan Williamsf284a4f2016-07-07 19:44:50 -0700350 struct nd_region *nd_region = to_region(pmem);
Dan Williams298f2bc2016-03-15 16:41:04 -0700351 resource_size_t offset = 0, end_trunc = 0;
352 struct nd_namespace_common *ndns;
353 struct nd_namespace_io *nsio;
354 struct resource res;
Dan Williams71999462016-02-18 10:29:49 -0800355
356 if (event != NVDIMM_REVALIDATE_POISON)
357 return;
358
Dan Williams298f2bc2016-03-15 16:41:04 -0700359 if (is_nd_btt(dev)) {
360 struct nd_btt *nd_btt = to_nd_btt(dev);
361
362 ndns = nd_btt->ndns;
363 } else if (is_nd_pfn(dev)) {
Dan Williamsa3901802016-04-07 20:02:06 -0700364 struct nd_pfn *nd_pfn = to_nd_pfn(dev);
365 struct nd_pfn_sb *pfn_sb = nd_pfn->pfn_sb;
366
Dan Williams298f2bc2016-03-15 16:41:04 -0700367 ndns = nd_pfn->ndns;
368 offset = pmem->data_offset + __le32_to_cpu(pfn_sb->start_pad);
369 end_trunc = __le32_to_cpu(pfn_sb->end_trunc);
370 } else
371 ndns = to_ndns(dev);
Dan Williamsa3901802016-04-07 20:02:06 -0700372
Dan Williams298f2bc2016-03-15 16:41:04 -0700373 nsio = to_nd_namespace_io(&ndns->dev);
374 res.start = nsio->res.start + offset;
375 res.end = nsio->res.end - end_trunc;
Dan Williamsa3901802016-04-07 20:02:06 -0700376 nvdimm_badblocks_populate(nd_region, &pmem->bb, &res);
Dan Williams71999462016-02-18 10:29:49 -0800377}
378
Dan Williams9f53f9f2015-06-09 15:33:45 -0400379MODULE_ALIAS("pmem");
380MODULE_ALIAS_ND_DEVICE(ND_DEVICE_NAMESPACE_IO);
Dan Williamsbf9bccc2015-06-17 17:14:46 -0400381MODULE_ALIAS_ND_DEVICE(ND_DEVICE_NAMESPACE_PMEM);
Dan Williams9f53f9f2015-06-09 15:33:45 -0400382static struct nd_device_driver nd_pmem_driver = {
383 .probe = nd_pmem_probe,
384 .remove = nd_pmem_remove,
Dan Williams71999462016-02-18 10:29:49 -0800385 .notify = nd_pmem_notify,
Dan Williams9f53f9f2015-06-09 15:33:45 -0400386 .drv = {
387 .name = "nd_pmem",
Ross Zwisler9e853f22015-04-01 09:12:19 +0200388 },
Dan Williamsbf9bccc2015-06-17 17:14:46 -0400389 .type = ND_DRIVER_NAMESPACE_IO | ND_DRIVER_NAMESPACE_PMEM,
Ross Zwisler9e853f22015-04-01 09:12:19 +0200390};
391
392static int __init pmem_init(void)
393{
NeilBrown55155292016-03-09 09:21:54 +1100394 return nd_driver_register(&nd_pmem_driver);
Ross Zwisler9e853f22015-04-01 09:12:19 +0200395}
396module_init(pmem_init);
397
398static void pmem_exit(void)
399{
Dan Williams9f53f9f2015-06-09 15:33:45 -0400400 driver_unregister(&nd_pmem_driver.drv);
Ross Zwisler9e853f22015-04-01 09:12:19 +0200401}
402module_exit(pmem_exit);
403
404MODULE_AUTHOR("Ross Zwisler <ross.zwisler@linux.intel.com>");
405MODULE_LICENSE("GPL v2");