blob: 22d865ba6353d23564039b0131c8759dd5790e09 [file] [log] [blame]
Thomas Gleixner5b497af2019-05-29 07:18:09 -07001// SPDX-License-Identifier: GPL-2.0-only
Dan Williamse1455742015-07-30 17:57:47 -04002/*
3 * Copyright(c) 2013-2015 Intel Corporation. All rights reserved.
Dan Williamse1455742015-07-30 17:57:47 -04004 */
5#include <linux/device.h>
6#include <linux/sizes.h>
7#include "nd-core.h"
Dan Williamsf2b61252017-05-29 23:00:34 -07008#include "pmem.h"
Dan Williamse1455742015-07-30 17:57:47 -04009#include "pfn.h"
10#include "btt.h"
11#include "nd.h"
12
13void __nd_detach_ndns(struct device *dev, struct nd_namespace_common **_ndns)
14{
15 struct nd_namespace_common *ndns = *_ndns;
Dan Williams452bae02017-04-28 22:05:14 -070016 struct nvdimm_bus *nvdimm_bus;
Dan Williamse1455742015-07-30 17:57:47 -040017
Dan Williams452bae02017-04-28 22:05:14 -070018 if (!ndns)
19 return;
20
21 nvdimm_bus = walk_to_nvdimm_bus(&ndns->dev);
22 lockdep_assert_held(&nvdimm_bus->reconfig_mutex);
Dan Williams9cf8bd52016-12-15 20:04:31 -080023 dev_WARN_ONCE(dev, ndns->claim != dev, "%s: invalid claim\n", __func__);
Dan Williamse1455742015-07-30 17:57:47 -040024 ndns->claim = NULL;
25 *_ndns = NULL;
26 put_device(&ndns->dev);
27}
28
29void nd_detach_ndns(struct device *dev,
30 struct nd_namespace_common **_ndns)
31{
32 struct nd_namespace_common *ndns = *_ndns;
33
34 if (!ndns)
35 return;
36 get_device(&ndns->dev);
Dan Williams452bae02017-04-28 22:05:14 -070037 nvdimm_bus_lock(&ndns->dev);
Dan Williamse1455742015-07-30 17:57:47 -040038 __nd_detach_ndns(dev, _ndns);
Dan Williams452bae02017-04-28 22:05:14 -070039 nvdimm_bus_unlock(&ndns->dev);
Dan Williamse1455742015-07-30 17:57:47 -040040 put_device(&ndns->dev);
41}
42
43bool __nd_attach_ndns(struct device *dev, struct nd_namespace_common *attach,
44 struct nd_namespace_common **_ndns)
45{
Dan Williams452bae02017-04-28 22:05:14 -070046 struct nvdimm_bus *nvdimm_bus = walk_to_nvdimm_bus(&attach->dev);
47
Dan Williamse1455742015-07-30 17:57:47 -040048 if (attach->claim)
49 return false;
Dan Williams452bae02017-04-28 22:05:14 -070050 lockdep_assert_held(&nvdimm_bus->reconfig_mutex);
Dan Williams9cf8bd52016-12-15 20:04:31 -080051 dev_WARN_ONCE(dev, *_ndns, "%s: invalid claim\n", __func__);
Dan Williamse1455742015-07-30 17:57:47 -040052 attach->claim = dev;
53 *_ndns = attach;
54 get_device(&attach->dev);
55 return true;
56}
57
58bool nd_attach_ndns(struct device *dev, struct nd_namespace_common *attach,
59 struct nd_namespace_common **_ndns)
60{
61 bool claimed;
62
Dan Williams452bae02017-04-28 22:05:14 -070063 nvdimm_bus_lock(&attach->dev);
Dan Williamse1455742015-07-30 17:57:47 -040064 claimed = __nd_attach_ndns(dev, attach, _ndns);
Dan Williams452bae02017-04-28 22:05:14 -070065 nvdimm_bus_unlock(&attach->dev);
Dan Williamse1455742015-07-30 17:57:47 -040066 return claimed;
67}
68
69static int namespace_match(struct device *dev, void *data)
70{
71 char *name = data;
72
73 return strcmp(name, dev_name(dev)) == 0;
74}
75
76static bool is_idle(struct device *dev, struct nd_namespace_common *ndns)
77{
78 struct nd_region *nd_region = to_nd_region(dev->parent);
79 struct device *seed = NULL;
80
81 if (is_nd_btt(dev))
82 seed = nd_region->btt_seed;
83 else if (is_nd_pfn(dev))
84 seed = nd_region->pfn_seed;
Dan Williamscd034122016-03-11 10:15:36 -080085 else if (is_nd_dax(dev))
86 seed = nd_region->dax_seed;
Dan Williamse1455742015-07-30 17:57:47 -040087
88 if (seed == dev || ndns || dev->driver)
89 return false;
90 return true;
91}
92
Dan Williams03dca342016-05-21 12:22:41 -070093struct nd_pfn *to_nd_pfn_safe(struct device *dev)
94{
95 /*
96 * pfn device attributes are re-used by dax device instances, so we
97 * need to be careful to correct device-to-nd_pfn conversion.
98 */
99 if (is_nd_pfn(dev))
100 return to_nd_pfn(dev);
101
102 if (is_nd_dax(dev)) {
103 struct nd_dax *nd_dax = to_nd_dax(dev);
104
105 return &nd_dax->nd_pfn;
106 }
107
108 WARN_ON(1);
109 return NULL;
110}
111
Dan Williamse1455742015-07-30 17:57:47 -0400112static void nd_detach_and_reset(struct device *dev,
113 struct nd_namespace_common **_ndns)
114{
115 /* detach the namespace and destroy / reset the device */
Dan Williams452bae02017-04-28 22:05:14 -0700116 __nd_detach_ndns(dev, _ndns);
Dan Williamse1455742015-07-30 17:57:47 -0400117 if (is_idle(dev, *_ndns)) {
118 nd_device_unregister(dev, ND_ASYNC);
119 } else if (is_nd_btt(dev)) {
120 struct nd_btt *nd_btt = to_nd_btt(dev);
121
122 nd_btt->lbasize = 0;
123 kfree(nd_btt->uuid);
124 nd_btt->uuid = NULL;
Dan Williams03dca342016-05-21 12:22:41 -0700125 } else if (is_nd_pfn(dev) || is_nd_dax(dev)) {
126 struct nd_pfn *nd_pfn = to_nd_pfn_safe(dev);
Dan Williamse1455742015-07-30 17:57:47 -0400127
128 kfree(nd_pfn->uuid);
129 nd_pfn->uuid = NULL;
130 nd_pfn->mode = PFN_MODE_NONE;
131 }
132}
133
134ssize_t nd_namespace_store(struct device *dev,
135 struct nd_namespace_common **_ndns, const char *buf,
136 size_t len)
137{
138 struct nd_namespace_common *ndns;
139 struct device *found;
140 char *name;
141
142 if (dev->driver) {
Dan Williams426824d2018-03-05 16:39:31 -0800143 dev_dbg(dev, "namespace already active\n");
Dan Williamse1455742015-07-30 17:57:47 -0400144 return -EBUSY;
145 }
146
147 name = kstrndup(buf, len, GFP_KERNEL);
148 if (!name)
149 return -ENOMEM;
150 strim(name);
151
152 if (strncmp(name, "namespace", 9) == 0 || strcmp(name, "") == 0)
153 /* pass */;
154 else {
155 len = -EINVAL;
156 goto out;
157 }
158
159 ndns = *_ndns;
160 if (strcmp(name, "") == 0) {
161 nd_detach_and_reset(dev, _ndns);
162 goto out;
163 } else if (ndns) {
164 dev_dbg(dev, "namespace already set to: %s\n",
165 dev_name(&ndns->dev));
166 len = -EBUSY;
167 goto out;
168 }
169
170 found = device_find_child(dev->parent, name, namespace_match);
171 if (!found) {
172 dev_dbg(dev, "'%s' not found under %s\n", name,
173 dev_name(dev->parent));
174 len = -ENODEV;
175 goto out;
176 }
177
178 ndns = to_ndns(found);
Dan Williamsb3fde742017-06-04 10:18:39 +0900179
180 switch (ndns->claim_class) {
181 case NVDIMM_CCLASS_NONE:
182 break;
183 case NVDIMM_CCLASS_BTT:
Vishal Verma14e49452017-06-28 14:25:00 -0600184 case NVDIMM_CCLASS_BTT2:
Dan Williamsb3fde742017-06-04 10:18:39 +0900185 if (!is_nd_btt(dev)) {
186 len = -EBUSY;
187 goto out_attach;
188 }
189 break;
190 case NVDIMM_CCLASS_PFN:
191 if (!is_nd_pfn(dev)) {
192 len = -EBUSY;
193 goto out_attach;
194 }
195 break;
196 case NVDIMM_CCLASS_DAX:
197 if (!is_nd_dax(dev)) {
198 len = -EBUSY;
199 goto out_attach;
200 }
201 break;
202 default:
203 len = -EBUSY;
204 goto out_attach;
205 break;
206 }
207
Dan Williamse1455742015-07-30 17:57:47 -0400208 if (__nvdimm_namespace_capacity(ndns) < SZ_16M) {
209 dev_dbg(dev, "%s too small to host\n", name);
210 len = -ENXIO;
211 goto out_attach;
212 }
213
214 WARN_ON_ONCE(!is_nvdimm_bus_locked(dev));
Dan Williams452bae02017-04-28 22:05:14 -0700215 if (!__nd_attach_ndns(dev, ndns, _ndns)) {
Dan Williamse1455742015-07-30 17:57:47 -0400216 dev_dbg(dev, "%s already claimed\n",
217 dev_name(&ndns->dev));
218 len = -EBUSY;
219 }
220
221 out_attach:
222 put_device(&ndns->dev); /* from device_find_child */
223 out:
224 kfree(name);
225 return len;
226}
227
228/*
229 * nd_sb_checksum: compute checksum for a generic info block
230 *
231 * Returns a fletcher64 checksum of everything in the given info block
232 * except the last field (since that's where the checksum lives).
233 */
234u64 nd_sb_checksum(struct nd_gen_sb *nd_gen_sb)
235{
236 u64 sum;
237 __le64 sum_save;
238
239 BUILD_BUG_ON(sizeof(struct btt_sb) != SZ_4K);
240 BUILD_BUG_ON(sizeof(struct nd_pfn_sb) != SZ_4K);
241 BUILD_BUG_ON(sizeof(struct nd_gen_sb) != SZ_4K);
242
243 sum_save = nd_gen_sb->checksum;
244 nd_gen_sb->checksum = 0;
245 sum = nd_fletcher64(nd_gen_sb, sizeof(*nd_gen_sb), 1);
246 nd_gen_sb->checksum = sum_save;
247 return sum;
248}
249EXPORT_SYMBOL(nd_sb_checksum);
Dan Williams200c79d2016-03-22 00:22:16 -0700250
251static int nsio_rw_bytes(struct nd_namespace_common *ndns,
Vishal Verma3ae3d672017-05-10 15:01:30 -0600252 resource_size_t offset, void *buf, size_t size, int rw,
253 unsigned long flags)
Dan Williams200c79d2016-03-22 00:22:16 -0700254{
255 struct nd_namespace_io *nsio = to_nd_namespace_io(&ndns->dev);
Dave Jiang82bf1032016-11-11 12:37:36 -0700256 unsigned int sz_align = ALIGN(size + (offset & (512 - 1)), 512);
257 sector_t sector = offset >> 9;
Pankaj Guptac5d43552019-07-05 19:33:22 +0530258 int rc = 0, ret = 0;
Dave Jiang82bf1032016-11-11 12:37:36 -0700259
260 if (unlikely(!size))
261 return 0;
Dan Williams200c79d2016-03-22 00:22:16 -0700262
263 if (unlikely(offset + size > nsio->size)) {
264 dev_WARN_ONCE(&ndns->dev, 1, "request out of range\n");
265 return -EFAULT;
266 }
267
268 if (rw == READ) {
Dave Jiang82bf1032016-11-11 12:37:36 -0700269 if (unlikely(is_bad_pmem(&nsio->bb, sector, sz_align)))
Dan Williams200c79d2016-03-22 00:22:16 -0700270 return -EIO;
Dan Williamsec6347b2020-10-05 20:40:16 -0700271 if (copy_mc_to_kernel(buf, nsio->addr + offset, size) != 0)
Dan Williams60622d62018-05-03 17:06:21 -0700272 return -EIO;
Dan Williamsb62cc6f2018-06-18 10:07:35 -0700273 return 0;
Dan Williams200c79d2016-03-22 00:22:16 -0700274 }
275
Fabian Frederickd37806d2016-12-04 10:45:13 -0800276 if (unlikely(is_bad_pmem(&nsio->bb, sector, sz_align))) {
Dan Williamsa3e9af92017-05-01 10:00:02 -0700277 if (IS_ALIGNED(offset, 512) && IS_ALIGNED(size, 512)
Vishal Verma7e5a21d2017-06-30 18:32:52 -0600278 && !(flags & NVDIMM_IO_ATOMIC)) {
Fabian Frederickd37806d2016-12-04 10:45:13 -0800279 long cleared;
280
Vishal Verma1db1f3c2017-08-30 19:35:58 -0600281 might_sleep();
Toshi Kani97681f92017-04-25 15:16:51 -0600282 cleared = nvdimm_clear_poison(&ndns->dev,
283 nsio->res.start + offset, size);
Dan Williams868f036f2016-12-16 08:10:31 -0800284 if (cleared < size)
Fabian Frederickd37806d2016-12-04 10:45:13 -0800285 rc = -EIO;
Dan Williams868f036f2016-12-16 08:10:31 -0800286 if (cleared > 0 && cleared / 512) {
287 cleared /= 512;
288 badblocks_clear(&nsio->bb, sector, cleared);
Fabian Frederickd37806d2016-12-04 10:45:13 -0800289 }
Dan Williamsf2b61252017-05-29 23:00:34 -0700290 arch_invalidate_pmem(nsio->addr + offset, size);
Fabian Frederickd37806d2016-12-04 10:45:13 -0800291 } else
292 rc = -EIO;
293 }
294
Dan Williams0aed55a2017-05-29 12:22:50 -0700295 memcpy_flushcache(nsio->addr + offset, buf, size);
Pankaj Guptac5d43552019-07-05 19:33:22 +0530296 ret = nvdimm_flush(to_nd_region(ndns->dev.parent), NULL);
297 if (ret)
298 rc = ret;
Fabian Frederickd37806d2016-12-04 10:45:13 -0800299
Dave Jiang82bf1032016-11-11 12:37:36 -0700300 return rc;
Dan Williams200c79d2016-03-22 00:22:16 -0700301}
302
Aneesh Kumar K.V8f4b01f2019-10-31 16:27:41 +0530303int devm_nsio_enable(struct device *dev, struct nd_namespace_io *nsio,
304 resource_size_t size)
Dan Williams200c79d2016-03-22 00:22:16 -0700305{
306 struct resource *res = &nsio->res;
307 struct nd_namespace_common *ndns = &nsio->common;
308
Aneesh Kumar K.V8f4b01f2019-10-31 16:27:41 +0530309 nsio->size = size;
310 if (!devm_request_mem_region(dev, res->start, size,
Dan Williams450c6632016-11-28 11:15:18 -0800311 dev_name(&ndns->dev))) {
Dan Williams200c79d2016-03-22 00:22:16 -0700312 dev_warn(dev, "could not reserve region %pR\n", res);
313 return -EBUSY;
314 }
315
316 ndns->rw_bytes = nsio_rw_bytes;
317 if (devm_init_badblocks(dev, &nsio->bb))
318 return -ENOMEM;
319 nvdimm_badblocks_populate(to_nd_region(ndns->dev.parent), &nsio->bb,
320 &nsio->res);
321
Aneesh Kumar K.V8f4b01f2019-10-31 16:27:41 +0530322 nsio->addr = devm_memremap(dev, res->start, size, ARCH_MEMREMAP_PMEM);
Dan Williams42588952016-05-27 13:28:31 -0700323
324 return PTR_ERR_OR_ZERO(nsio->addr);
Dan Williams200c79d2016-03-22 00:22:16 -0700325}
Dan Williams200c79d2016-03-22 00:22:16 -0700326
327void devm_nsio_disable(struct device *dev, struct nd_namespace_io *nsio)
328{
329 struct resource *res = &nsio->res;
330
331 devm_memunmap(dev, nsio->addr);
332 devm_exit_badblocks(dev, &nsio->bb);
Aneesh Kumar K.V8f4b01f2019-10-31 16:27:41 +0530333 devm_release_mem_region(dev, res->start, nsio->size);
Dan Williams200c79d2016-03-22 00:22:16 -0700334}