2 * Persistent Memory Driver
4 * Copyright (c) 2014-2015, Intel Corporation.
5 * Copyright (c) 2015, Christoph Hellwig <hch@lst.de>.
6 * Copyright (c) 2015, Boaz Harrosh <boaz@plexistor.com>.
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.
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
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>
25 #include <linux/badblocks.h>
26 #include <linux/memremap.h>
27 #include <linux/vmalloc.h>
28 #include <linux/pfn_t.h>
29 #include <linux/slab.h>
30 #include <linux/pmem.h>
36 struct request_queue
*pmem_queue
;
37 struct gendisk
*pmem_disk
;
38 struct nd_namespace_common
*ndns
;
40 /* One contiguous memory region per device */
41 phys_addr_t phys_addr
;
42 /* when non-zero this device is hosting a 'pfn' instance */
43 phys_addr_t data_offset
;
45 void __pmem
*virt_addr
;
50 static int pmem_major
;
52 static bool is_bad_pmem(struct badblocks
*bb
, sector_t sector
, unsigned int len
)
58 return !!badblocks_check(bb
, sector
, len
/ 512, &first_bad
,
65 static int pmem_do_bvec(struct pmem_device
*pmem
, struct page
*page
,
66 unsigned int len
, unsigned int off
, int rw
,
69 void *mem
= kmap_atomic(page
);
70 phys_addr_t pmem_off
= sector
* 512 + pmem
->data_offset
;
71 void __pmem
*pmem_addr
= pmem
->virt_addr
+ pmem_off
;
74 if (unlikely(is_bad_pmem(&pmem
->bb
, sector
, len
)))
76 memcpy_from_pmem(mem
+ off
, pmem_addr
, len
);
77 flush_dcache_page(page
);
79 flush_dcache_page(page
);
80 memcpy_to_pmem(pmem_addr
, mem
+ off
, len
);
87 static blk_qc_t
pmem_make_request(struct request_queue
*q
, struct bio
*bio
)
93 struct bvec_iter iter
;
94 struct block_device
*bdev
= bio
->bi_bdev
;
95 struct pmem_device
*pmem
= bdev
->bd_disk
->private_data
;
97 do_acct
= nd_iostat_start(bio
, &start
);
98 bio_for_each_segment(bvec
, bio
, iter
) {
99 rc
= pmem_do_bvec(pmem
, bvec
.bv_page
, bvec
.bv_len
,
100 bvec
.bv_offset
, bio_data_dir(bio
),
108 nd_iostat_end(bio
, start
);
110 if (bio_data_dir(bio
))
114 return BLK_QC_T_NONE
;
117 static int pmem_rw_page(struct block_device
*bdev
, sector_t sector
,
118 struct page
*page
, int rw
)
120 struct pmem_device
*pmem
= bdev
->bd_disk
->private_data
;
123 rc
= pmem_do_bvec(pmem
, page
, PAGE_CACHE_SIZE
, 0, rw
, sector
);
128 * The ->rw_page interface is subtle and tricky. The core
129 * retries on any error, so we can only invoke page_endio() in
130 * the successful completion case. Otherwise, we'll see crashes
131 * caused by double completion.
134 page_endio(page
, rw
& WRITE
, 0);
139 static long pmem_direct_access(struct block_device
*bdev
, sector_t sector
,
140 void __pmem
**kaddr
, pfn_t
*pfn
)
142 struct pmem_device
*pmem
= bdev
->bd_disk
->private_data
;
143 resource_size_t offset
= sector
* 512 + pmem
->data_offset
;
145 *kaddr
= pmem
->virt_addr
+ offset
;
146 *pfn
= phys_to_pfn_t(pmem
->phys_addr
+ offset
, pmem
->pfn_flags
);
148 return pmem
->size
- offset
;
151 static const struct block_device_operations pmem_fops
= {
152 .owner
= THIS_MODULE
,
153 .rw_page
= pmem_rw_page
,
154 .direct_access
= pmem_direct_access
,
155 .revalidate_disk
= nvdimm_revalidate_disk
,
158 static struct pmem_device
*pmem_alloc(struct device
*dev
,
159 struct resource
*res
, int id
)
161 struct pmem_device
*pmem
;
162 struct request_queue
*q
;
164 pmem
= devm_kzalloc(dev
, sizeof(*pmem
), GFP_KERNEL
);
166 return ERR_PTR(-ENOMEM
);
168 pmem
->phys_addr
= res
->start
;
169 pmem
->size
= resource_size(res
);
170 if (!arch_has_wmb_pmem())
171 dev_warn(dev
, "unable to guarantee persistence of writes\n");
173 if (!devm_request_mem_region(dev
, pmem
->phys_addr
, pmem
->size
,
175 dev_warn(dev
, "could not reserve region [0x%pa:0x%zx]\n",
176 &pmem
->phys_addr
, pmem
->size
);
177 return ERR_PTR(-EBUSY
);
180 q
= blk_alloc_queue_node(GFP_KERNEL
, dev_to_node(dev
));
182 return ERR_PTR(-ENOMEM
);
184 pmem
->pfn_flags
= PFN_DEV
;
185 if (pmem_should_map_pages(dev
)) {
186 pmem
->virt_addr
= (void __pmem
*) devm_memremap_pages(dev
, res
,
187 &q
->q_usage_counter
, NULL
);
188 pmem
->pfn_flags
|= PFN_MAP
;
190 pmem
->virt_addr
= (void __pmem
*) devm_memremap(dev
,
191 pmem
->phys_addr
, pmem
->size
,
194 if (IS_ERR(pmem
->virt_addr
)) {
195 blk_cleanup_queue(q
);
196 return (void __force
*) pmem
->virt_addr
;
199 pmem
->pmem_queue
= q
;
203 static void pmem_detach_disk(struct pmem_device
*pmem
)
205 if (!pmem
->pmem_disk
)
208 del_gendisk(pmem
->pmem_disk
);
209 put_disk(pmem
->pmem_disk
);
210 blk_cleanup_queue(pmem
->pmem_queue
);
213 static int pmem_attach_disk(struct device
*dev
,
214 struct nd_namespace_common
*ndns
, struct pmem_device
*pmem
)
216 int nid
= dev_to_node(dev
);
217 struct gendisk
*disk
;
219 blk_queue_make_request(pmem
->pmem_queue
, pmem_make_request
);
220 blk_queue_physical_block_size(pmem
->pmem_queue
, PAGE_SIZE
);
221 blk_queue_max_hw_sectors(pmem
->pmem_queue
, UINT_MAX
);
222 blk_queue_bounce_limit(pmem
->pmem_queue
, BLK_BOUNCE_ANY
);
223 queue_flag_set_unlocked(QUEUE_FLAG_NONROT
, pmem
->pmem_queue
);
225 disk
= alloc_disk_node(0, nid
);
227 blk_cleanup_queue(pmem
->pmem_queue
);
231 disk
->major
= pmem_major
;
232 disk
->first_minor
= 0;
233 disk
->fops
= &pmem_fops
;
234 disk
->private_data
= pmem
;
235 disk
->queue
= pmem
->pmem_queue
;
236 disk
->flags
= GENHD_FL_EXT_DEVT
;
237 nvdimm_namespace_disk_name(ndns
, disk
->disk_name
);
238 disk
->driverfs_dev
= dev
;
239 set_capacity(disk
, (pmem
->size
- pmem
->data_offset
) / 512);
240 pmem
->pmem_disk
= disk
;
241 devm_exit_badblocks(dev
, &pmem
->bb
);
242 if (devm_init_badblocks(dev
, &pmem
->bb
))
244 nvdimm_namespace_add_poison(ndns
, &pmem
->bb
, pmem
->data_offset
);
246 disk
->bb
= &pmem
->bb
;
248 revalidate_disk(disk
);
253 static int pmem_rw_bytes(struct nd_namespace_common
*ndns
,
254 resource_size_t offset
, void *buf
, size_t size
, int rw
)
256 struct pmem_device
*pmem
= dev_get_drvdata(ndns
->claim
);
258 if (unlikely(offset
+ size
> pmem
->size
)) {
259 dev_WARN_ONCE(&ndns
->dev
, 1, "request out of range\n");
264 unsigned int sz_align
= ALIGN(size
+ (offset
& (512 - 1)), 512);
266 if (unlikely(is_bad_pmem(&pmem
->bb
, offset
/ 512, sz_align
)))
268 memcpy_from_pmem(buf
, pmem
->virt_addr
+ offset
, size
);
270 memcpy_to_pmem(pmem
->virt_addr
+ offset
, buf
, size
);
277 static int nd_pfn_init(struct nd_pfn
*nd_pfn
)
279 struct nd_pfn_sb
*pfn_sb
= kzalloc(sizeof(*pfn_sb
), GFP_KERNEL
);
280 struct pmem_device
*pmem
= dev_get_drvdata(&nd_pfn
->dev
);
281 struct nd_namespace_common
*ndns
= nd_pfn
->ndns
;
282 struct nd_region
*nd_region
;
291 nd_pfn
->pfn_sb
= pfn_sb
;
292 rc
= nd_pfn_validate(nd_pfn
);
294 /* no info block, do init */;
298 nd_region
= to_nd_region(nd_pfn
->dev
.parent
);
300 dev_info(&nd_pfn
->dev
,
301 "%s is read-only, unable to init metadata\n",
302 dev_name(&nd_region
->dev
));
306 memset(pfn_sb
, 0, sizeof(*pfn_sb
));
307 npfns
= (pmem
->size
- SZ_8K
) / SZ_4K
;
309 * Note, we use 64 here for the standard size of struct page,
310 * debugging options may cause it to be larger in which case the
311 * implementation will limit the pfns advertised through
312 * ->direct_access() to those that are included in the memmap.
314 if (nd_pfn
->mode
== PFN_MODE_PMEM
)
315 offset
= ALIGN(SZ_8K
+ 64 * npfns
, nd_pfn
->align
);
316 else if (nd_pfn
->mode
== PFN_MODE_RAM
)
317 offset
= ALIGN(SZ_8K
, nd_pfn
->align
);
321 npfns
= (pmem
->size
- offset
) / SZ_4K
;
322 pfn_sb
->mode
= cpu_to_le32(nd_pfn
->mode
);
323 pfn_sb
->dataoff
= cpu_to_le64(offset
);
324 pfn_sb
->npfns
= cpu_to_le64(npfns
);
325 memcpy(pfn_sb
->signature
, PFN_SIG
, PFN_SIG_LEN
);
326 memcpy(pfn_sb
->uuid
, nd_pfn
->uuid
, 16);
327 memcpy(pfn_sb
->parent_uuid
, nd_dev_to_uuid(&ndns
->dev
), 16);
328 pfn_sb
->version_major
= cpu_to_le16(1);
329 checksum
= nd_sb_checksum((struct nd_gen_sb
*) pfn_sb
);
330 pfn_sb
->checksum
= cpu_to_le64(checksum
);
332 rc
= nvdimm_write_bytes(ndns
, SZ_4K
, pfn_sb
, sizeof(*pfn_sb
));
338 nd_pfn
->pfn_sb
= NULL
;
343 static int nvdimm_namespace_detach_pfn(struct nd_namespace_common
*ndns
)
345 struct nd_pfn
*nd_pfn
= to_nd_pfn(ndns
->claim
);
346 struct pmem_device
*pmem
;
349 pmem
= dev_get_drvdata(&nd_pfn
->dev
);
350 pmem_detach_disk(pmem
);
352 /* release nd_pfn resources */
353 kfree(nd_pfn
->pfn_sb
);
354 nd_pfn
->pfn_sb
= NULL
;
359 static int nvdimm_namespace_attach_pfn(struct nd_namespace_common
*ndns
)
361 struct nd_namespace_io
*nsio
= to_nd_namespace_io(&ndns
->dev
);
362 struct nd_pfn
*nd_pfn
= to_nd_pfn(ndns
->claim
);
363 struct device
*dev
= &nd_pfn
->dev
;
364 struct nd_region
*nd_region
;
365 struct vmem_altmap
*altmap
;
366 struct nd_pfn_sb
*pfn_sb
;
367 struct pmem_device
*pmem
;
368 struct request_queue
*q
;
371 struct vmem_altmap __altmap
= {
372 .base_pfn
= __phys_to_pfn(nsio
->res
.start
),
373 .reserve
= __phys_to_pfn(SZ_8K
),
376 if (!nd_pfn
->uuid
|| !nd_pfn
->ndns
)
379 nd_region
= to_nd_region(dev
->parent
);
380 rc
= nd_pfn_init(nd_pfn
);
384 pfn_sb
= nd_pfn
->pfn_sb
;
385 offset
= le64_to_cpu(pfn_sb
->dataoff
);
386 nd_pfn
->mode
= le32_to_cpu(nd_pfn
->pfn_sb
->mode
);
387 if (nd_pfn
->mode
== PFN_MODE_RAM
) {
390 nd_pfn
->npfns
= le64_to_cpu(pfn_sb
->npfns
);
392 } else if (nd_pfn
->mode
== PFN_MODE_PMEM
) {
393 nd_pfn
->npfns
= (resource_size(&nsio
->res
) - offset
)
395 if (le64_to_cpu(nd_pfn
->pfn_sb
->npfns
) > nd_pfn
->npfns
)
396 dev_info(&nd_pfn
->dev
,
397 "number of pfns truncated from %lld to %ld\n",
398 le64_to_cpu(nd_pfn
->pfn_sb
->npfns
),
401 altmap
->free
= __phys_to_pfn(offset
- SZ_8K
);
408 /* establish pfn range for lookup, and switch to direct map */
409 pmem
= dev_get_drvdata(dev
);
410 q
= pmem
->pmem_queue
;
411 devm_memunmap(dev
, (void __force
*) pmem
->virt_addr
);
412 pmem
->virt_addr
= (void __pmem
*) devm_memremap_pages(dev
, &nsio
->res
,
413 &q
->q_usage_counter
, altmap
);
414 pmem
->pfn_flags
|= PFN_MAP
;
415 if (IS_ERR(pmem
->virt_addr
)) {
416 rc
= PTR_ERR(pmem
->virt_addr
);
420 /* attach pmem disk in "pfn-mode" */
421 pmem
->data_offset
= offset
;
422 rc
= pmem_attach_disk(dev
, ndns
, pmem
);
428 nvdimm_namespace_detach_pfn(ndns
);
432 static int nd_pmem_probe(struct device
*dev
)
434 struct nd_region
*nd_region
= to_nd_region(dev
->parent
);
435 struct nd_namespace_common
*ndns
;
436 struct nd_namespace_io
*nsio
;
437 struct pmem_device
*pmem
;
439 ndns
= nvdimm_namespace_common_probe(dev
);
441 return PTR_ERR(ndns
);
443 nsio
= to_nd_namespace_io(&ndns
->dev
);
444 pmem
= pmem_alloc(dev
, &nsio
->res
, nd_region
->id
);
446 return PTR_ERR(pmem
);
449 dev_set_drvdata(dev
, pmem
);
450 ndns
->rw_bytes
= pmem_rw_bytes
;
451 if (devm_init_badblocks(dev
, &pmem
->bb
))
453 nvdimm_namespace_add_poison(ndns
, &pmem
->bb
, 0);
455 if (is_nd_btt(dev
)) {
456 /* btt allocates its own request_queue */
457 blk_cleanup_queue(pmem
->pmem_queue
);
458 pmem
->pmem_queue
= NULL
;
459 return nvdimm_namespace_attach_btt(ndns
);
463 return nvdimm_namespace_attach_pfn(ndns
);
465 if (nd_btt_probe(ndns
, pmem
) == 0 || nd_pfn_probe(ndns
, pmem
) == 0) {
467 * We'll come back as either btt-pmem, or pfn-pmem, so
468 * drop the queue allocation for now.
470 blk_cleanup_queue(pmem
->pmem_queue
);
474 return pmem_attach_disk(dev
, ndns
, pmem
);
477 static int nd_pmem_remove(struct device
*dev
)
479 struct pmem_device
*pmem
= dev_get_drvdata(dev
);
482 nvdimm_namespace_detach_btt(pmem
->ndns
);
483 else if (is_nd_pfn(dev
))
484 nvdimm_namespace_detach_pfn(pmem
->ndns
);
486 pmem_detach_disk(pmem
);
491 MODULE_ALIAS("pmem");
492 MODULE_ALIAS_ND_DEVICE(ND_DEVICE_NAMESPACE_IO
);
493 MODULE_ALIAS_ND_DEVICE(ND_DEVICE_NAMESPACE_PMEM
);
494 static struct nd_device_driver nd_pmem_driver
= {
495 .probe
= nd_pmem_probe
,
496 .remove
= nd_pmem_remove
,
500 .type
= ND_DRIVER_NAMESPACE_IO
| ND_DRIVER_NAMESPACE_PMEM
,
503 static int __init
pmem_init(void)
507 pmem_major
= register_blkdev(0, "pmem");
511 error
= nd_driver_register(&nd_pmem_driver
);
513 unregister_blkdev(pmem_major
, "pmem");
519 module_init(pmem_init
);
521 static void pmem_exit(void)
523 driver_unregister(&nd_pmem_driver
.drv
);
524 unregister_blkdev(pmem_major
, "pmem");
526 module_exit(pmem_exit
);
528 MODULE_AUTHOR("Ross Zwisler <ross.zwisler@linux.intel.com>");
529 MODULE_LICENSE("GPL v2");