2 * Copyright(c) 2016 Intel Corporation. All rights reserved.
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.
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.
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 "device-dax.h"
23 struct percpu_ref ref
;
24 struct completion cmp
;
27 static struct dax_pmem
*to_dax_pmem(struct percpu_ref
*ref
)
29 return container_of(ref
, struct dax_pmem
, ref
);
32 static void dax_pmem_percpu_release(struct percpu_ref
*ref
)
34 struct dax_pmem
*dax_pmem
= to_dax_pmem(ref
);
36 dev_dbg(dax_pmem
->dev
, "%s\n", __func__
);
37 complete(&dax_pmem
->cmp
);
40 static void dax_pmem_percpu_exit(void *data
)
42 struct percpu_ref
*ref
= data
;
43 struct dax_pmem
*dax_pmem
= to_dax_pmem(ref
);
45 dev_dbg(dax_pmem
->dev
, "%s\n", __func__
);
46 wait_for_completion(&dax_pmem
->cmp
);
50 static void dax_pmem_percpu_kill(void *data
)
52 struct percpu_ref
*ref
= data
;
53 struct dax_pmem
*dax_pmem
= to_dax_pmem(ref
);
55 dev_dbg(dax_pmem
->dev
, "%s\n", __func__
);
59 static int dax_pmem_probe(struct device
*dev
)
63 int rc
, id
, region_id
;
64 struct nd_pfn_sb
*pfn_sb
;
65 struct dev_dax
*dev_dax
;
66 struct dax_pmem
*dax_pmem
;
67 struct nd_namespace_io
*nsio
;
68 struct dax_region
*dax_region
;
69 struct nd_namespace_common
*ndns
;
70 struct nd_dax
*nd_dax
= to_nd_dax(dev
);
71 struct nd_pfn
*nd_pfn
= &nd_dax
->nd_pfn
;
72 struct vmem_altmap __altmap
, *altmap
= NULL
;
74 ndns
= nvdimm_namespace_common_probe(dev
);
77 nsio
= to_nd_namespace_io(&ndns
->dev
);
79 /* parse the 'pfn' info block via ->rw_bytes */
80 rc
= devm_nsio_enable(dev
, nsio
);
83 altmap
= nvdimm_setup_pfn(nd_pfn
, &res
, &__altmap
);
85 return PTR_ERR(altmap
);
86 devm_nsio_disable(dev
, nsio
);
88 pfn_sb
= nd_pfn
->pfn_sb
;
90 if (!devm_request_mem_region(dev
, nsio
->res
.start
,
91 resource_size(&nsio
->res
),
92 dev_name(&ndns
->dev
))) {
93 dev_warn(dev
, "could not reserve region %pR\n", &nsio
->res
);
97 dax_pmem
= devm_kzalloc(dev
, sizeof(*dax_pmem
), GFP_KERNEL
);
102 init_completion(&dax_pmem
->cmp
);
103 rc
= percpu_ref_init(&dax_pmem
->ref
, dax_pmem_percpu_release
, 0,
108 rc
= devm_add_action_or_reset(dev
, dax_pmem_percpu_exit
,
113 addr
= devm_memremap_pages(dev
, &res
, &dax_pmem
->ref
, altmap
);
115 return PTR_ERR(addr
);
117 rc
= devm_add_action_or_reset(dev
, dax_pmem_percpu_kill
,
122 /* adjust the dax_region resource to the start of data */
123 res
.start
+= le64_to_cpu(pfn_sb
->dataoff
);
125 rc
= sscanf(dev_name(&ndns
->dev
), "namespace%d.%d", ®ion_id
, &id
);
129 dax_region
= alloc_dax_region(dev
, region_id
, &res
,
130 le32_to_cpu(pfn_sb
->align
), addr
, PFN_DEV
|PFN_MAP
);
134 /* TODO: support for subdividing a dax region... */
135 dev_dax
= devm_create_dev_dax(dax_region
, id
, &res
, 1);
137 /* child dev_dax instances now own the lifetime of the dax_region */
138 dax_region_put(dax_region
);
140 return PTR_ERR_OR_ZERO(dev_dax
);
143 static struct nd_device_driver dax_pmem_driver
= {
144 .probe
= dax_pmem_probe
,
148 .type
= ND_DRIVER_DAX_PMEM
,
151 static int __init
dax_pmem_init(void)
153 return nd_driver_register(&dax_pmem_driver
);
155 module_init(dax_pmem_init
);
157 static void __exit
dax_pmem_exit(void)
159 driver_unregister(&dax_pmem_driver
.drv
);
161 module_exit(dax_pmem_exit
);
163 MODULE_LICENSE("GPL v2");
164 MODULE_AUTHOR("Intel Corporation");
165 MODULE_ALIAS_ND_DEVICE(ND_DEVICE_DAX_PMEM
);