blob: ade9eb917a4d945b4ff9bd69ebbed1b3fedfd742 [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>
25#include <linux/slab.h>
Ross Zwisler61031952015-06-25 03:08:39 -040026#include <linux/pmem.h>
Dan Williams9f53f9f2015-06-09 15:33:45 -040027#include <linux/nd.h>
28#include "nd.h"
Ross Zwisler9e853f22015-04-01 09:12:19 +020029
30struct pmem_device {
31 struct request_queue *pmem_queue;
32 struct gendisk *pmem_disk;
33
34 /* One contiguous memory region per device */
35 phys_addr_t phys_addr;
Ross Zwisler61031952015-06-25 03:08:39 -040036 void __pmem *virt_addr;
Ross Zwisler9e853f22015-04-01 09:12:19 +020037 size_t size;
38};
39
40static int pmem_major;
Ross Zwisler9e853f22015-04-01 09:12:19 +020041
42static void pmem_do_bvec(struct pmem_device *pmem, struct page *page,
43 unsigned int len, unsigned int off, int rw,
44 sector_t sector)
45{
46 void *mem = kmap_atomic(page);
47 size_t pmem_off = sector << 9;
Ross Zwisler61031952015-06-25 03:08:39 -040048 void __pmem *pmem_addr = pmem->virt_addr + pmem_off;
Ross Zwisler9e853f22015-04-01 09:12:19 +020049
50 if (rw == READ) {
Ross Zwisler61031952015-06-25 03:08:39 -040051 memcpy_from_pmem(mem + off, pmem_addr, len);
Ross Zwisler9e853f22015-04-01 09:12:19 +020052 flush_dcache_page(page);
53 } else {
54 flush_dcache_page(page);
Ross Zwisler61031952015-06-25 03:08:39 -040055 memcpy_to_pmem(pmem_addr, mem + off, len);
Ross Zwisler9e853f22015-04-01 09:12:19 +020056 }
57
58 kunmap_atomic(mem);
59}
60
61static void pmem_make_request(struct request_queue *q, struct bio *bio)
62{
Dan Williamsf0dc0892015-05-16 12:28:53 -040063 bool do_acct;
64 unsigned long start;
Dan Williamsedc870e2015-05-16 12:28:51 -040065 struct bio_vec bvec;
66 struct bvec_iter iter;
Ross Zwisler9e853f22015-04-01 09:12:19 +020067 struct block_device *bdev = bio->bi_bdev;
68 struct pmem_device *pmem = bdev->bd_disk->private_data;
Ross Zwisler9e853f22015-04-01 09:12:19 +020069
Dan Williamsf0dc0892015-05-16 12:28:53 -040070 do_acct = nd_iostat_start(bio, &start);
Dan Williamsedc870e2015-05-16 12:28:51 -040071 bio_for_each_segment(bvec, bio, iter)
Ross Zwisler9e853f22015-04-01 09:12:19 +020072 pmem_do_bvec(pmem, bvec.bv_page, bvec.bv_len, bvec.bv_offset,
Dan Williamsedc870e2015-05-16 12:28:51 -040073 bio_data_dir(bio), iter.bi_sector);
Dan Williamsf0dc0892015-05-16 12:28:53 -040074 if (do_acct)
75 nd_iostat_end(bio, start);
Ross Zwisler61031952015-06-25 03:08:39 -040076
77 if (bio_data_dir(bio))
78 wmb_pmem();
79
Dan Williamsedc870e2015-05-16 12:28:51 -040080 bio_endio(bio, 0);
Ross Zwisler9e853f22015-04-01 09:12:19 +020081}
82
83static int pmem_rw_page(struct block_device *bdev, sector_t sector,
84 struct page *page, int rw)
85{
86 struct pmem_device *pmem = bdev->bd_disk->private_data;
87
88 pmem_do_bvec(pmem, page, PAGE_CACHE_SIZE, 0, rw, sector);
89 page_endio(page, rw & WRITE, 0);
90
91 return 0;
92}
93
94static long pmem_direct_access(struct block_device *bdev, sector_t sector,
95 void **kaddr, unsigned long *pfn, long size)
96{
97 struct pmem_device *pmem = bdev->bd_disk->private_data;
98 size_t offset = sector << 9;
99
100 if (!pmem)
101 return -ENODEV;
102
Ross Zwisler61031952015-06-25 03:08:39 -0400103 /* FIXME convert DAX to comprehend that this mapping has a lifetime */
104 *kaddr = (void __force *) pmem->virt_addr + offset;
Ross Zwisler9e853f22015-04-01 09:12:19 +0200105 *pfn = (pmem->phys_addr + offset) >> PAGE_SHIFT;
106
107 return pmem->size - offset;
108}
109
110static const struct block_device_operations pmem_fops = {
111 .owner = THIS_MODULE,
112 .rw_page = pmem_rw_page,
113 .direct_access = pmem_direct_access,
Dan Williams58138822015-06-23 20:08:34 -0400114 .revalidate_disk = nvdimm_revalidate_disk,
Ross Zwisler9e853f22015-04-01 09:12:19 +0200115};
116
Dan Williams9f53f9f2015-06-09 15:33:45 -0400117static struct pmem_device *pmem_alloc(struct device *dev,
118 struct resource *res, int id)
Ross Zwisler9e853f22015-04-01 09:12:19 +0200119{
120 struct pmem_device *pmem;
Ross Zwisler9e853f22015-04-01 09:12:19 +0200121
Ross Zwisler9e853f22015-04-01 09:12:19 +0200122 pmem = kzalloc(sizeof(*pmem), GFP_KERNEL);
123 if (!pmem)
Dan Williams8c2f7e82015-06-25 04:20:04 -0400124 return ERR_PTR(-ENOMEM);
Ross Zwisler9e853f22015-04-01 09:12:19 +0200125
126 pmem->phys_addr = res->start;
127 pmem->size = resource_size(res);
Ross Zwisler61031952015-06-25 03:08:39 -0400128 if (!arch_has_pmem_api())
129 dev_warn(dev, "unable to guarantee persistence of writes\n");
Ross Zwisler9e853f22015-04-01 09:12:19 +0200130
Dan Williams8c2f7e82015-06-25 04:20:04 -0400131 if (!request_mem_region(pmem->phys_addr, pmem->size, dev_name(dev))) {
Dan Williams9f53f9f2015-06-09 15:33:45 -0400132 dev_warn(dev, "could not reserve region [0x%pa:0x%zx]\n",
133 &pmem->phys_addr, pmem->size);
Dan Williams8c2f7e82015-06-25 04:20:04 -0400134 kfree(pmem);
135 return ERR_PTR(-EBUSY);
Ross Zwisler9e853f22015-04-01 09:12:19 +0200136 }
137
Ross Zwisler61031952015-06-25 03:08:39 -0400138 pmem->virt_addr = memremap_pmem(pmem->phys_addr, pmem->size);
Dan Williams8c2f7e82015-06-25 04:20:04 -0400139 if (!pmem->virt_addr) {
140 release_mem_region(pmem->phys_addr, pmem->size);
141 kfree(pmem);
142 return ERR_PTR(-ENXIO);
143 }
144
145 return pmem;
146}
147
148static void pmem_detach_disk(struct pmem_device *pmem)
149{
150 del_gendisk(pmem->pmem_disk);
151 put_disk(pmem->pmem_disk);
152 blk_cleanup_queue(pmem->pmem_queue);
153}
154
155static int pmem_attach_disk(struct nd_namespace_common *ndns,
156 struct pmem_device *pmem)
157{
Dan Williams8c2f7e82015-06-25 04:20:04 -0400158 struct gendisk *disk;
Ross Zwisler9e853f22015-04-01 09:12:19 +0200159
160 pmem->pmem_queue = blk_alloc_queue(GFP_KERNEL);
161 if (!pmem->pmem_queue)
Dan Williams8c2f7e82015-06-25 04:20:04 -0400162 return -ENOMEM;
Ross Zwisler9e853f22015-04-01 09:12:19 +0200163
164 blk_queue_make_request(pmem->pmem_queue, pmem_make_request);
Dan Williams43d3fa32015-05-16 12:28:50 -0400165 blk_queue_max_hw_sectors(pmem->pmem_queue, UINT_MAX);
Ross Zwisler9e853f22015-04-01 09:12:19 +0200166 blk_queue_bounce_limit(pmem->pmem_queue, BLK_BOUNCE_ANY);
Dan Williams0f51c4f2015-05-16 12:28:54 -0400167 queue_flag_set_unlocked(QUEUE_FLAG_NONROT, pmem->pmem_queue);
Ross Zwisler9e853f22015-04-01 09:12:19 +0200168
Dan Williams9f53f9f2015-06-09 15:33:45 -0400169 disk = alloc_disk(0);
Dan Williams8c2f7e82015-06-25 04:20:04 -0400170 if (!disk) {
171 blk_cleanup_queue(pmem->pmem_queue);
172 return -ENOMEM;
173 }
Ross Zwisler9e853f22015-04-01 09:12:19 +0200174
Ross Zwisler9e853f22015-04-01 09:12:19 +0200175 disk->major = pmem_major;
Dan Williams9f53f9f2015-06-09 15:33:45 -0400176 disk->first_minor = 0;
Ross Zwisler9e853f22015-04-01 09:12:19 +0200177 disk->fops = &pmem_fops;
178 disk->private_data = pmem;
179 disk->queue = pmem->pmem_queue;
180 disk->flags = GENHD_FL_EXT_DEVT;
Vishal Verma5212e112015-06-25 04:20:32 -0400181 nvdimm_namespace_disk_name(ndns, disk->disk_name);
Dan Williams8c2f7e82015-06-25 04:20:04 -0400182 disk->driverfs_dev = &ndns->dev;
Ross Zwisler9e853f22015-04-01 09:12:19 +0200183 set_capacity(disk, pmem->size >> 9);
184 pmem->pmem_disk = disk;
185
186 add_disk(disk);
Dan Williams58138822015-06-23 20:08:34 -0400187 revalidate_disk(disk);
Ross Zwisler9e853f22015-04-01 09:12:19 +0200188
Dan Williams8c2f7e82015-06-25 04:20:04 -0400189 return 0;
190}
Ross Zwisler9e853f22015-04-01 09:12:19 +0200191
Dan Williams8c2f7e82015-06-25 04:20:04 -0400192static int pmem_rw_bytes(struct nd_namespace_common *ndns,
193 resource_size_t offset, void *buf, size_t size, int rw)
194{
195 struct pmem_device *pmem = dev_get_drvdata(ndns->claim);
196
197 if (unlikely(offset + size > pmem->size)) {
198 dev_WARN_ONCE(&ndns->dev, 1, "request out of range\n");
199 return -EFAULT;
200 }
201
202 if (rw == READ)
Ross Zwisler61031952015-06-25 03:08:39 -0400203 memcpy_from_pmem(buf, pmem->virt_addr + offset, size);
204 else {
205 memcpy_to_pmem(pmem->virt_addr + offset, buf, size);
206 wmb_pmem();
207 }
Dan Williams8c2f7e82015-06-25 04:20:04 -0400208
209 return 0;
210}
211
Ross Zwisler9e853f22015-04-01 09:12:19 +0200212static void pmem_free(struct pmem_device *pmem)
213{
Ross Zwisler61031952015-06-25 03:08:39 -0400214 memunmap_pmem(pmem->virt_addr);
Ross Zwisler9e853f22015-04-01 09:12:19 +0200215 release_mem_region(pmem->phys_addr, pmem->size);
216 kfree(pmem);
217}
218
Dan Williams9f53f9f2015-06-09 15:33:45 -0400219static int nd_pmem_probe(struct device *dev)
Ross Zwisler9e853f22015-04-01 09:12:19 +0200220{
Dan Williams9f53f9f2015-06-09 15:33:45 -0400221 struct nd_region *nd_region = to_nd_region(dev->parent);
Dan Williams8c2f7e82015-06-25 04:20:04 -0400222 struct nd_namespace_common *ndns;
223 struct nd_namespace_io *nsio;
Ross Zwisler9e853f22015-04-01 09:12:19 +0200224 struct pmem_device *pmem;
Dan Williams8c2f7e82015-06-25 04:20:04 -0400225 int rc;
Ross Zwisler9e853f22015-04-01 09:12:19 +0200226
Dan Williams8c2f7e82015-06-25 04:20:04 -0400227 ndns = nvdimm_namespace_common_probe(dev);
228 if (IS_ERR(ndns))
229 return PTR_ERR(ndns);
Dan Williamsbf9bccc2015-06-17 17:14:46 -0400230
Dan Williams8c2f7e82015-06-25 04:20:04 -0400231 nsio = to_nd_namespace_io(&ndns->dev);
Dan Williams9f53f9f2015-06-09 15:33:45 -0400232 pmem = pmem_alloc(dev, &nsio->res, nd_region->id);
Ross Zwisler9e853f22015-04-01 09:12:19 +0200233 if (IS_ERR(pmem))
234 return PTR_ERR(pmem);
235
Dan Williams9f53f9f2015-06-09 15:33:45 -0400236 dev_set_drvdata(dev, pmem);
Dan Williams8c2f7e82015-06-25 04:20:04 -0400237 ndns->rw_bytes = pmem_rw_bytes;
238 if (is_nd_btt(dev))
239 rc = nvdimm_namespace_attach_btt(ndns);
240 else if (nd_btt_probe(ndns, pmem) == 0) {
241 /* we'll come back as btt-pmem */
242 rc = -ENXIO;
243 } else
244 rc = pmem_attach_disk(ndns, pmem);
245 if (rc)
246 pmem_free(pmem);
247 return rc;
Ross Zwisler9e853f22015-04-01 09:12:19 +0200248}
249
Dan Williams9f53f9f2015-06-09 15:33:45 -0400250static int nd_pmem_remove(struct device *dev)
Ross Zwisler9e853f22015-04-01 09:12:19 +0200251{
Dan Williams9f53f9f2015-06-09 15:33:45 -0400252 struct pmem_device *pmem = dev_get_drvdata(dev);
Ross Zwisler9e853f22015-04-01 09:12:19 +0200253
Dan Williams8c2f7e82015-06-25 04:20:04 -0400254 if (is_nd_btt(dev))
255 nvdimm_namespace_detach_btt(to_nd_btt(dev)->ndns);
256 else
257 pmem_detach_disk(pmem);
Ross Zwisler9e853f22015-04-01 09:12:19 +0200258 pmem_free(pmem);
Dan Williams8c2f7e82015-06-25 04:20:04 -0400259
Ross Zwisler9e853f22015-04-01 09:12:19 +0200260 return 0;
261}
262
Dan Williams9f53f9f2015-06-09 15:33:45 -0400263MODULE_ALIAS("pmem");
264MODULE_ALIAS_ND_DEVICE(ND_DEVICE_NAMESPACE_IO);
Dan Williamsbf9bccc2015-06-17 17:14:46 -0400265MODULE_ALIAS_ND_DEVICE(ND_DEVICE_NAMESPACE_PMEM);
Dan Williams9f53f9f2015-06-09 15:33:45 -0400266static struct nd_device_driver nd_pmem_driver = {
267 .probe = nd_pmem_probe,
268 .remove = nd_pmem_remove,
269 .drv = {
270 .name = "nd_pmem",
Ross Zwisler9e853f22015-04-01 09:12:19 +0200271 },
Dan Williamsbf9bccc2015-06-17 17:14:46 -0400272 .type = ND_DRIVER_NAMESPACE_IO | ND_DRIVER_NAMESPACE_PMEM,
Ross Zwisler9e853f22015-04-01 09:12:19 +0200273};
274
275static int __init pmem_init(void)
276{
277 int error;
278
279 pmem_major = register_blkdev(0, "pmem");
280 if (pmem_major < 0)
281 return pmem_major;
282
Dan Williams9f53f9f2015-06-09 15:33:45 -0400283 error = nd_driver_register(&nd_pmem_driver);
284 if (error) {
Ross Zwisler9e853f22015-04-01 09:12:19 +0200285 unregister_blkdev(pmem_major, "pmem");
Dan Williams9f53f9f2015-06-09 15:33:45 -0400286 return error;
287 }
288
289 return 0;
Ross Zwisler9e853f22015-04-01 09:12:19 +0200290}
291module_init(pmem_init);
292
293static void pmem_exit(void)
294{
Dan Williams9f53f9f2015-06-09 15:33:45 -0400295 driver_unregister(&nd_pmem_driver.drv);
Ross Zwisler9e853f22015-04-01 09:12:19 +0200296 unregister_blkdev(pmem_major, "pmem");
297}
298module_exit(pmem_exit);
299
300MODULE_AUTHOR("Ross Zwisler <ross.zwisler@linux.intel.com>");
301MODULE_LICENSE("GPL v2");