blob: c24d32ec9ce64a5f1e68463dd21543f155013532 [file] [log] [blame]
Dan Williamsab68f262016-05-18 09:15:08 -07001/*
2 * Copyright(c) 2016 Intel Corporation. All rights reserved.
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of version 2 of the GNU General Public License as
6 * published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful, but
9 * WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
12 */
13#include <linux/percpu-refcount.h>
14#include <linux/memremap.h>
15#include <linux/module.h>
16#include <linux/pfn_t.h>
17#include "../nvdimm/pfn.h"
18#include "../nvdimm/nd.h"
19#include "dax.h"
20
21struct dax_pmem {
22 struct device *dev;
23 struct percpu_ref ref;
24 struct completion cmp;
25};
26
Dan Williamsccdb07f2016-08-06 16:05:06 -070027static struct dax_pmem *to_dax_pmem(struct percpu_ref *ref)
Dan Williamsab68f262016-05-18 09:15:08 -070028{
29 return container_of(ref, struct dax_pmem, ref);
30}
31
32static void dax_pmem_percpu_release(struct percpu_ref *ref)
33{
34 struct dax_pmem *dax_pmem = to_dax_pmem(ref);
35
36 dev_dbg(dax_pmem->dev, "%s\n", __func__);
37 complete(&dax_pmem->cmp);
38}
39
40static void dax_pmem_percpu_exit(void *data)
41{
42 struct percpu_ref *ref = data;
43 struct dax_pmem *dax_pmem = to_dax_pmem(ref);
44
45 dev_dbg(dax_pmem->dev, "%s\n", __func__);
46 percpu_ref_exit(ref);
47 wait_for_completion(&dax_pmem->cmp);
48}
49
50static void dax_pmem_percpu_kill(void *data)
51{
52 struct percpu_ref *ref = data;
53 struct dax_pmem *dax_pmem = to_dax_pmem(ref);
54
55 dev_dbg(dax_pmem->dev, "%s\n", __func__);
56 percpu_ref_kill(ref);
57}
58
59static int dax_pmem_probe(struct device *dev)
60{
61 int rc;
62 void *addr;
63 struct resource res;
Dan Williamsd76911e2016-07-19 17:51:40 -070064 struct dax_dev *dax_dev;
Dan Williamsab68f262016-05-18 09:15:08 -070065 struct nd_pfn_sb *pfn_sb;
66 struct dax_pmem *dax_pmem;
67 struct nd_region *nd_region;
68 struct nd_namespace_io *nsio;
69 struct dax_region *dax_region;
70 struct nd_namespace_common *ndns;
71 struct nd_dax *nd_dax = to_nd_dax(dev);
72 struct nd_pfn *nd_pfn = &nd_dax->nd_pfn;
73 struct vmem_altmap __altmap, *altmap = NULL;
74
75 ndns = nvdimm_namespace_common_probe(dev);
76 if (IS_ERR(ndns))
77 return PTR_ERR(ndns);
78 nsio = to_nd_namespace_io(&ndns->dev);
79
80 /* parse the 'pfn' info block via ->rw_bytes */
81 devm_nsio_enable(dev, nsio);
82 altmap = nvdimm_setup_pfn(nd_pfn, &res, &__altmap);
83 if (IS_ERR(altmap))
84 return PTR_ERR(altmap);
85 devm_nsio_disable(dev, nsio);
86
87 pfn_sb = nd_pfn->pfn_sb;
88
89 if (!devm_request_mem_region(dev, nsio->res.start,
90 resource_size(&nsio->res), dev_name(dev))) {
91 dev_warn(dev, "could not reserve region %pR\n", &nsio->res);
92 return -EBUSY;
93 }
94
95 dax_pmem = devm_kzalloc(dev, sizeof(*dax_pmem), GFP_KERNEL);
96 if (!dax_pmem)
97 return -ENOMEM;
98
99 dax_pmem->dev = dev;
100 init_completion(&dax_pmem->cmp);
101 rc = percpu_ref_init(&dax_pmem->ref, dax_pmem_percpu_release, 0,
102 GFP_KERNEL);
103 if (rc)
104 return rc;
105
Sajjan, Vikas Cd1c8e0c2016-07-05 11:20:07 +0530106 rc = devm_add_action_or_reset(dev, dax_pmem_percpu_exit,
107 &dax_pmem->ref);
108 if (rc)
Dan Williamsab68f262016-05-18 09:15:08 -0700109 return rc;
Dan Williamsab68f262016-05-18 09:15:08 -0700110
111 addr = devm_memremap_pages(dev, &res, &dax_pmem->ref, altmap);
112 if (IS_ERR(addr))
113 return PTR_ERR(addr);
114
Sajjan, Vikas Cd1c8e0c2016-07-05 11:20:07 +0530115 rc = devm_add_action_or_reset(dev, dax_pmem_percpu_kill,
116 &dax_pmem->ref);
117 if (rc)
Dan Williamsab68f262016-05-18 09:15:08 -0700118 return rc;
Dan Williamsab68f262016-05-18 09:15:08 -0700119
120 nd_region = to_nd_region(dev->parent);
121 dax_region = alloc_dax_region(dev, nd_region->id, &res,
122 le32_to_cpu(pfn_sb->align), addr, PFN_DEV|PFN_MAP);
123 if (!dax_region)
124 return -ENOMEM;
125
126 /* TODO: support for subdividing a dax region... */
Dan Williamsd76911e2016-07-19 17:51:40 -0700127 dax_dev = devm_create_dax_dev(dax_region, &res, 1);
Dan Williamsab68f262016-05-18 09:15:08 -0700128
129 /* child dax_dev instances now own the lifetime of the dax_region */
130 dax_region_put(dax_region);
131
Dan Williamsd76911e2016-07-19 17:51:40 -0700132 return PTR_ERR_OR_ZERO(dax_dev);
Dan Williamsab68f262016-05-18 09:15:08 -0700133}
134
135static struct nd_device_driver dax_pmem_driver = {
136 .probe = dax_pmem_probe,
137 .drv = {
138 .name = "dax_pmem",
139 },
140 .type = ND_DRIVER_DAX_PMEM,
141};
142
143static int __init dax_pmem_init(void)
144{
145 return nd_driver_register(&dax_pmem_driver);
146}
147module_init(dax_pmem_init);
148
149static void __exit dax_pmem_exit(void)
150{
151 driver_unregister(&dax_pmem_driver.drv);
152}
153module_exit(dax_pmem_exit);
154
155MODULE_LICENSE("GPL v2");
156MODULE_AUTHOR("Intel Corporation");
157MODULE_ALIAS_ND_DEVICE(ND_DEVICE_DAX_PMEM);