xref: /linux/drivers/nvdimm/dimm_devs.c (revision 2359ccddc1c3f4752f43cc19b3db189710b15791)
1 /*
2  * Copyright(c) 2013-2015 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 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
14 #include <linux/vmalloc.h>
15 #include <linux/device.h>
16 #include <linux/ndctl.h>
17 #include <linux/slab.h>
18 #include <linux/io.h>
19 #include <linux/fs.h>
20 #include <linux/mm.h>
21 #include "nd-core.h"
22 #include "label.h"
23 #include "pmem.h"
24 #include "nd.h"
25 
26 static DEFINE_IDA(dimm_ida);
27 
28 /*
29  * Retrieve bus and dimm handle and return if this bus supports
30  * get_config_data commands
31  */
32 int nvdimm_check_config_data(struct device *dev)
33 {
34 	struct nvdimm *nvdimm = to_nvdimm(dev);
35 
36 	if (!nvdimm->cmd_mask ||
37 	    !test_bit(ND_CMD_GET_CONFIG_DATA, &nvdimm->cmd_mask)) {
38 		if (test_bit(NDD_ALIASING, &nvdimm->flags))
39 			return -ENXIO;
40 		else
41 			return -ENOTTY;
42 	}
43 
44 	return 0;
45 }
46 
47 static int validate_dimm(struct nvdimm_drvdata *ndd)
48 {
49 	int rc;
50 
51 	if (!ndd)
52 		return -EINVAL;
53 
54 	rc = nvdimm_check_config_data(ndd->dev);
55 	if (rc)
56 		dev_dbg(ndd->dev, "%pf: %s error: %d\n",
57 				__builtin_return_address(0), __func__, rc);
58 	return rc;
59 }
60 
61 /**
62  * nvdimm_init_nsarea - determine the geometry of a dimm's namespace area
63  * @nvdimm: dimm to initialize
64  */
65 int nvdimm_init_nsarea(struct nvdimm_drvdata *ndd)
66 {
67 	struct nd_cmd_get_config_size *cmd = &ndd->nsarea;
68 	struct nvdimm_bus *nvdimm_bus = walk_to_nvdimm_bus(ndd->dev);
69 	struct nvdimm_bus_descriptor *nd_desc;
70 	int rc = validate_dimm(ndd);
71 	int cmd_rc = 0;
72 
73 	if (rc)
74 		return rc;
75 
76 	if (cmd->config_size)
77 		return 0; /* already valid */
78 
79 	memset(cmd, 0, sizeof(*cmd));
80 	nd_desc = nvdimm_bus->nd_desc;
81 	rc = nd_desc->ndctl(nd_desc, to_nvdimm(ndd->dev),
82 			ND_CMD_GET_CONFIG_SIZE, cmd, sizeof(*cmd), &cmd_rc);
83 	if (rc < 0)
84 		return rc;
85 	return cmd_rc;
86 }
87 
88 int nvdimm_init_config_data(struct nvdimm_drvdata *ndd)
89 {
90 	struct nvdimm_bus *nvdimm_bus = walk_to_nvdimm_bus(ndd->dev);
91 	struct nd_cmd_get_config_data_hdr *cmd;
92 	struct nvdimm_bus_descriptor *nd_desc;
93 	int rc = validate_dimm(ndd);
94 	u32 max_cmd_size, config_size;
95 	size_t offset;
96 
97 	if (rc)
98 		return rc;
99 
100 	if (ndd->data)
101 		return 0;
102 
103 	if (ndd->nsarea.status || ndd->nsarea.max_xfer == 0
104 			|| ndd->nsarea.config_size < ND_LABEL_MIN_SIZE) {
105 		dev_dbg(ndd->dev, "failed to init config data area: (%d:%d)\n",
106 				ndd->nsarea.max_xfer, ndd->nsarea.config_size);
107 		return -ENXIO;
108 	}
109 
110 	ndd->data = kvmalloc(ndd->nsarea.config_size, GFP_KERNEL);
111 	if (!ndd->data)
112 		return -ENOMEM;
113 
114 	max_cmd_size = min_t(u32, PAGE_SIZE, ndd->nsarea.max_xfer);
115 	cmd = kzalloc(max_cmd_size + sizeof(*cmd), GFP_KERNEL);
116 	if (!cmd)
117 		return -ENOMEM;
118 
119 	nd_desc = nvdimm_bus->nd_desc;
120 	for (config_size = ndd->nsarea.config_size, offset = 0;
121 			config_size; config_size -= cmd->in_length,
122 			offset += cmd->in_length) {
123 		cmd->in_length = min(config_size, max_cmd_size);
124 		cmd->in_offset = offset;
125 		rc = nd_desc->ndctl(nd_desc, to_nvdimm(ndd->dev),
126 				ND_CMD_GET_CONFIG_DATA, cmd,
127 				cmd->in_length + sizeof(*cmd), NULL);
128 		if (rc || cmd->status) {
129 			rc = -ENXIO;
130 			break;
131 		}
132 		memcpy(ndd->data + offset, cmd->out_buf, cmd->in_length);
133 	}
134 	dev_dbg(ndd->dev, "len: %zu rc: %d\n", offset, rc);
135 	kfree(cmd);
136 
137 	return rc;
138 }
139 
140 int nvdimm_set_config_data(struct nvdimm_drvdata *ndd, size_t offset,
141 		void *buf, size_t len)
142 {
143 	int rc = validate_dimm(ndd);
144 	size_t max_cmd_size, buf_offset;
145 	struct nd_cmd_set_config_hdr *cmd;
146 	struct nvdimm_bus *nvdimm_bus = walk_to_nvdimm_bus(ndd->dev);
147 	struct nvdimm_bus_descriptor *nd_desc = nvdimm_bus->nd_desc;
148 
149 	if (rc)
150 		return rc;
151 
152 	if (!ndd->data)
153 		return -ENXIO;
154 
155 	if (offset + len > ndd->nsarea.config_size)
156 		return -ENXIO;
157 
158 	max_cmd_size = min_t(u32, PAGE_SIZE, len);
159 	max_cmd_size = min_t(u32, max_cmd_size, ndd->nsarea.max_xfer);
160 	cmd = kzalloc(max_cmd_size + sizeof(*cmd) + sizeof(u32), GFP_KERNEL);
161 	if (!cmd)
162 		return -ENOMEM;
163 
164 	for (buf_offset = 0; len; len -= cmd->in_length,
165 			buf_offset += cmd->in_length) {
166 		size_t cmd_size;
167 		u32 *status;
168 
169 		cmd->in_offset = offset + buf_offset;
170 		cmd->in_length = min(max_cmd_size, len);
171 		memcpy(cmd->in_buf, buf + buf_offset, cmd->in_length);
172 
173 		/* status is output in the last 4-bytes of the command buffer */
174 		cmd_size = sizeof(*cmd) + cmd->in_length + sizeof(u32);
175 		status = ((void *) cmd) + cmd_size - sizeof(u32);
176 
177 		rc = nd_desc->ndctl(nd_desc, to_nvdimm(ndd->dev),
178 				ND_CMD_SET_CONFIG_DATA, cmd, cmd_size, NULL);
179 		if (rc || *status) {
180 			rc = rc ? rc : -ENXIO;
181 			break;
182 		}
183 	}
184 	kfree(cmd);
185 
186 	return rc;
187 }
188 
189 void nvdimm_set_aliasing(struct device *dev)
190 {
191 	struct nvdimm *nvdimm = to_nvdimm(dev);
192 
193 	set_bit(NDD_ALIASING, &nvdimm->flags);
194 }
195 
196 void nvdimm_set_locked(struct device *dev)
197 {
198 	struct nvdimm *nvdimm = to_nvdimm(dev);
199 
200 	set_bit(NDD_LOCKED, &nvdimm->flags);
201 }
202 
203 void nvdimm_clear_locked(struct device *dev)
204 {
205 	struct nvdimm *nvdimm = to_nvdimm(dev);
206 
207 	clear_bit(NDD_LOCKED, &nvdimm->flags);
208 }
209 
210 static void nvdimm_release(struct device *dev)
211 {
212 	struct nvdimm *nvdimm = to_nvdimm(dev);
213 
214 	ida_simple_remove(&dimm_ida, nvdimm->id);
215 	kfree(nvdimm);
216 }
217 
218 static struct device_type nvdimm_device_type = {
219 	.name = "nvdimm",
220 	.release = nvdimm_release,
221 };
222 
223 bool is_nvdimm(struct device *dev)
224 {
225 	return dev->type == &nvdimm_device_type;
226 }
227 
228 struct nvdimm *to_nvdimm(struct device *dev)
229 {
230 	struct nvdimm *nvdimm = container_of(dev, struct nvdimm, dev);
231 
232 	WARN_ON(!is_nvdimm(dev));
233 	return nvdimm;
234 }
235 EXPORT_SYMBOL_GPL(to_nvdimm);
236 
237 struct nvdimm *nd_blk_region_to_dimm(struct nd_blk_region *ndbr)
238 {
239 	struct nd_region *nd_region = &ndbr->nd_region;
240 	struct nd_mapping *nd_mapping = &nd_region->mapping[0];
241 
242 	return nd_mapping->nvdimm;
243 }
244 EXPORT_SYMBOL_GPL(nd_blk_region_to_dimm);
245 
246 unsigned long nd_blk_memremap_flags(struct nd_blk_region *ndbr)
247 {
248 	/* pmem mapping properties are private to libnvdimm */
249 	return ARCH_MEMREMAP_PMEM;
250 }
251 EXPORT_SYMBOL_GPL(nd_blk_memremap_flags);
252 
253 struct nvdimm_drvdata *to_ndd(struct nd_mapping *nd_mapping)
254 {
255 	struct nvdimm *nvdimm = nd_mapping->nvdimm;
256 
257 	WARN_ON_ONCE(!is_nvdimm_bus_locked(&nvdimm->dev));
258 
259 	return dev_get_drvdata(&nvdimm->dev);
260 }
261 EXPORT_SYMBOL(to_ndd);
262 
263 void nvdimm_drvdata_release(struct kref *kref)
264 {
265 	struct nvdimm_drvdata *ndd = container_of(kref, typeof(*ndd), kref);
266 	struct device *dev = ndd->dev;
267 	struct resource *res, *_r;
268 
269 	dev_dbg(dev, "trace\n");
270 	nvdimm_bus_lock(dev);
271 	for_each_dpa_resource_safe(ndd, res, _r)
272 		nvdimm_free_dpa(ndd, res);
273 	nvdimm_bus_unlock(dev);
274 
275 	kvfree(ndd->data);
276 	kfree(ndd);
277 	put_device(dev);
278 }
279 
280 void get_ndd(struct nvdimm_drvdata *ndd)
281 {
282 	kref_get(&ndd->kref);
283 }
284 
285 void put_ndd(struct nvdimm_drvdata *ndd)
286 {
287 	if (ndd)
288 		kref_put(&ndd->kref, nvdimm_drvdata_release);
289 }
290 
291 const char *nvdimm_name(struct nvdimm *nvdimm)
292 {
293 	return dev_name(&nvdimm->dev);
294 }
295 EXPORT_SYMBOL_GPL(nvdimm_name);
296 
297 struct kobject *nvdimm_kobj(struct nvdimm *nvdimm)
298 {
299 	return &nvdimm->dev.kobj;
300 }
301 EXPORT_SYMBOL_GPL(nvdimm_kobj);
302 
303 unsigned long nvdimm_cmd_mask(struct nvdimm *nvdimm)
304 {
305 	return nvdimm->cmd_mask;
306 }
307 EXPORT_SYMBOL_GPL(nvdimm_cmd_mask);
308 
309 void *nvdimm_provider_data(struct nvdimm *nvdimm)
310 {
311 	if (nvdimm)
312 		return nvdimm->provider_data;
313 	return NULL;
314 }
315 EXPORT_SYMBOL_GPL(nvdimm_provider_data);
316 
317 static ssize_t commands_show(struct device *dev,
318 		struct device_attribute *attr, char *buf)
319 {
320 	struct nvdimm *nvdimm = to_nvdimm(dev);
321 	int cmd, len = 0;
322 
323 	if (!nvdimm->cmd_mask)
324 		return sprintf(buf, "\n");
325 
326 	for_each_set_bit(cmd, &nvdimm->cmd_mask, BITS_PER_LONG)
327 		len += sprintf(buf + len, "%s ", nvdimm_cmd_name(cmd));
328 	len += sprintf(buf + len, "\n");
329 	return len;
330 }
331 static DEVICE_ATTR_RO(commands);
332 
333 static ssize_t flags_show(struct device *dev,
334 		struct device_attribute *attr, char *buf)
335 {
336 	struct nvdimm *nvdimm = to_nvdimm(dev);
337 
338 	return sprintf(buf, "%s%s\n",
339 			test_bit(NDD_ALIASING, &nvdimm->flags) ? "alias " : "",
340 			test_bit(NDD_LOCKED, &nvdimm->flags) ? "lock " : "");
341 }
342 static DEVICE_ATTR_RO(flags);
343 
344 static ssize_t state_show(struct device *dev, struct device_attribute *attr,
345 		char *buf)
346 {
347 	struct nvdimm *nvdimm = to_nvdimm(dev);
348 
349 	/*
350 	 * The state may be in the process of changing, userspace should
351 	 * quiesce probing if it wants a static answer
352 	 */
353 	nvdimm_bus_lock(dev);
354 	nvdimm_bus_unlock(dev);
355 	return sprintf(buf, "%s\n", atomic_read(&nvdimm->busy)
356 			? "active" : "idle");
357 }
358 static DEVICE_ATTR_RO(state);
359 
360 static ssize_t available_slots_show(struct device *dev,
361 		struct device_attribute *attr, char *buf)
362 {
363 	struct nvdimm_drvdata *ndd = dev_get_drvdata(dev);
364 	ssize_t rc;
365 	u32 nfree;
366 
367 	if (!ndd)
368 		return -ENXIO;
369 
370 	nvdimm_bus_lock(dev);
371 	nfree = nd_label_nfree(ndd);
372 	if (nfree - 1 > nfree) {
373 		dev_WARN_ONCE(dev, 1, "we ate our last label?\n");
374 		nfree = 0;
375 	} else
376 		nfree--;
377 	rc = sprintf(buf, "%d\n", nfree);
378 	nvdimm_bus_unlock(dev);
379 	return rc;
380 }
381 static DEVICE_ATTR_RO(available_slots);
382 
383 static struct attribute *nvdimm_attributes[] = {
384 	&dev_attr_state.attr,
385 	&dev_attr_flags.attr,
386 	&dev_attr_commands.attr,
387 	&dev_attr_available_slots.attr,
388 	NULL,
389 };
390 
391 struct attribute_group nvdimm_attribute_group = {
392 	.attrs = nvdimm_attributes,
393 };
394 EXPORT_SYMBOL_GPL(nvdimm_attribute_group);
395 
396 struct nvdimm *nvdimm_create(struct nvdimm_bus *nvdimm_bus, void *provider_data,
397 		const struct attribute_group **groups, unsigned long flags,
398 		unsigned long cmd_mask, int num_flush,
399 		struct resource *flush_wpq)
400 {
401 	struct nvdimm *nvdimm = kzalloc(sizeof(*nvdimm), GFP_KERNEL);
402 	struct device *dev;
403 
404 	if (!nvdimm)
405 		return NULL;
406 
407 	nvdimm->id = ida_simple_get(&dimm_ida, 0, 0, GFP_KERNEL);
408 	if (nvdimm->id < 0) {
409 		kfree(nvdimm);
410 		return NULL;
411 	}
412 	nvdimm->provider_data = provider_data;
413 	nvdimm->flags = flags;
414 	nvdimm->cmd_mask = cmd_mask;
415 	nvdimm->num_flush = num_flush;
416 	nvdimm->flush_wpq = flush_wpq;
417 	atomic_set(&nvdimm->busy, 0);
418 	dev = &nvdimm->dev;
419 	dev_set_name(dev, "nmem%d", nvdimm->id);
420 	dev->parent = &nvdimm_bus->dev;
421 	dev->type = &nvdimm_device_type;
422 	dev->devt = MKDEV(nvdimm_major, nvdimm->id);
423 	dev->groups = groups;
424 	nd_device_register(dev);
425 
426 	return nvdimm;
427 }
428 EXPORT_SYMBOL_GPL(nvdimm_create);
429 
430 int alias_dpa_busy(struct device *dev, void *data)
431 {
432 	resource_size_t map_end, blk_start, new;
433 	struct blk_alloc_info *info = data;
434 	struct nd_mapping *nd_mapping;
435 	struct nd_region *nd_region;
436 	struct nvdimm_drvdata *ndd;
437 	struct resource *res;
438 	int i;
439 
440 	if (!is_memory(dev))
441 		return 0;
442 
443 	nd_region = to_nd_region(dev);
444 	for (i = 0; i < nd_region->ndr_mappings; i++) {
445 		nd_mapping  = &nd_region->mapping[i];
446 		if (nd_mapping->nvdimm == info->nd_mapping->nvdimm)
447 			break;
448 	}
449 
450 	if (i >= nd_region->ndr_mappings)
451 		return 0;
452 
453 	ndd = to_ndd(nd_mapping);
454 	map_end = nd_mapping->start + nd_mapping->size - 1;
455 	blk_start = nd_mapping->start;
456 
457 	/*
458 	 * In the allocation case ->res is set to free space that we are
459 	 * looking to validate against PMEM aliasing collision rules
460 	 * (i.e. BLK is allocated after all aliased PMEM).
461 	 */
462 	if (info->res) {
463 		if (info->res->start >= nd_mapping->start
464 				&& info->res->start < map_end)
465 			/* pass */;
466 		else
467 			return 0;
468 	}
469 
470  retry:
471 	/*
472 	 * Find the free dpa from the end of the last pmem allocation to
473 	 * the end of the interleave-set mapping.
474 	 */
475 	for_each_dpa_resource(ndd, res) {
476 		if (strncmp(res->name, "pmem", 4) != 0)
477 			continue;
478 		if ((res->start >= blk_start && res->start < map_end)
479 				|| (res->end >= blk_start
480 					&& res->end <= map_end)) {
481 			new = max(blk_start, min(map_end + 1, res->end + 1));
482 			if (new != blk_start) {
483 				blk_start = new;
484 				goto retry;
485 			}
486 		}
487 	}
488 
489 	/* update the free space range with the probed blk_start */
490 	if (info->res && blk_start > info->res->start) {
491 		info->res->start = max(info->res->start, blk_start);
492 		if (info->res->start > info->res->end)
493 			info->res->end = info->res->start - 1;
494 		return 1;
495 	}
496 
497 	info->available -= blk_start - nd_mapping->start;
498 
499 	return 0;
500 }
501 
502 /**
503  * nd_blk_available_dpa - account the unused dpa of BLK region
504  * @nd_mapping: container of dpa-resource-root + labels
505  *
506  * Unlike PMEM, BLK namespaces can occupy discontiguous DPA ranges, but
507  * we arrange for them to never start at an lower dpa than the last
508  * PMEM allocation in an aliased region.
509  */
510 resource_size_t nd_blk_available_dpa(struct nd_region *nd_region)
511 {
512 	struct nvdimm_bus *nvdimm_bus = walk_to_nvdimm_bus(&nd_region->dev);
513 	struct nd_mapping *nd_mapping = &nd_region->mapping[0];
514 	struct nvdimm_drvdata *ndd = to_ndd(nd_mapping);
515 	struct blk_alloc_info info = {
516 		.nd_mapping = nd_mapping,
517 		.available = nd_mapping->size,
518 		.res = NULL,
519 	};
520 	struct resource *res;
521 
522 	if (!ndd)
523 		return 0;
524 
525 	device_for_each_child(&nvdimm_bus->dev, &info, alias_dpa_busy);
526 
527 	/* now account for busy blk allocations in unaliased dpa */
528 	for_each_dpa_resource(ndd, res) {
529 		if (strncmp(res->name, "blk", 3) != 0)
530 			continue;
531 		info.available -= resource_size(res);
532 	}
533 
534 	return info.available;
535 }
536 
537 /**
538  * nd_pmem_available_dpa - for the given dimm+region account unallocated dpa
539  * @nd_mapping: container of dpa-resource-root + labels
540  * @nd_region: constrain available space check to this reference region
541  * @overlap: calculate available space assuming this level of overlap
542  *
543  * Validate that a PMEM label, if present, aligns with the start of an
544  * interleave set and truncate the available size at the lowest BLK
545  * overlap point.
546  *
547  * The expectation is that this routine is called multiple times as it
548  * probes for the largest BLK encroachment for any single member DIMM of
549  * the interleave set.  Once that value is determined the PMEM-limit for
550  * the set can be established.
551  */
552 resource_size_t nd_pmem_available_dpa(struct nd_region *nd_region,
553 		struct nd_mapping *nd_mapping, resource_size_t *overlap)
554 {
555 	resource_size_t map_start, map_end, busy = 0, available, blk_start;
556 	struct nvdimm_drvdata *ndd = to_ndd(nd_mapping);
557 	struct resource *res;
558 	const char *reason;
559 
560 	if (!ndd)
561 		return 0;
562 
563 	map_start = nd_mapping->start;
564 	map_end = map_start + nd_mapping->size - 1;
565 	blk_start = max(map_start, map_end + 1 - *overlap);
566 	for_each_dpa_resource(ndd, res) {
567 		if (res->start >= map_start && res->start < map_end) {
568 			if (strncmp(res->name, "blk", 3) == 0)
569 				blk_start = min(blk_start,
570 						max(map_start, res->start));
571 			else if (res->end > map_end) {
572 				reason = "misaligned to iset";
573 				goto err;
574 			} else
575 				busy += resource_size(res);
576 		} else if (res->end >= map_start && res->end <= map_end) {
577 			if (strncmp(res->name, "blk", 3) == 0) {
578 				/*
579 				 * If a BLK allocation overlaps the start of
580 				 * PMEM the entire interleave set may now only
581 				 * be used for BLK.
582 				 */
583 				blk_start = map_start;
584 			} else
585 				busy += resource_size(res);
586 		} else if (map_start > res->start && map_start < res->end) {
587 			/* total eclipse of the mapping */
588 			busy += nd_mapping->size;
589 			blk_start = map_start;
590 		}
591 	}
592 
593 	*overlap = map_end + 1 - blk_start;
594 	available = blk_start - map_start;
595 	if (busy < available)
596 		return available - busy;
597 	return 0;
598 
599  err:
600 	nd_dbg_dpa(nd_region, ndd, res, "%s\n", reason);
601 	return 0;
602 }
603 
604 void nvdimm_free_dpa(struct nvdimm_drvdata *ndd, struct resource *res)
605 {
606 	WARN_ON_ONCE(!is_nvdimm_bus_locked(ndd->dev));
607 	kfree(res->name);
608 	__release_region(&ndd->dpa, res->start, resource_size(res));
609 }
610 
611 struct resource *nvdimm_allocate_dpa(struct nvdimm_drvdata *ndd,
612 		struct nd_label_id *label_id, resource_size_t start,
613 		resource_size_t n)
614 {
615 	char *name = kmemdup(label_id, sizeof(*label_id), GFP_KERNEL);
616 	struct resource *res;
617 
618 	if (!name)
619 		return NULL;
620 
621 	WARN_ON_ONCE(!is_nvdimm_bus_locked(ndd->dev));
622 	res = __request_region(&ndd->dpa, start, n, name, 0);
623 	if (!res)
624 		kfree(name);
625 	return res;
626 }
627 
628 /**
629  * nvdimm_allocated_dpa - sum up the dpa currently allocated to this label_id
630  * @nvdimm: container of dpa-resource-root + labels
631  * @label_id: dpa resource name of the form {pmem|blk}-<human readable uuid>
632  */
633 resource_size_t nvdimm_allocated_dpa(struct nvdimm_drvdata *ndd,
634 		struct nd_label_id *label_id)
635 {
636 	resource_size_t allocated = 0;
637 	struct resource *res;
638 
639 	for_each_dpa_resource(ndd, res)
640 		if (strcmp(res->name, label_id->id) == 0)
641 			allocated += resource_size(res);
642 
643 	return allocated;
644 }
645 
646 static int count_dimms(struct device *dev, void *c)
647 {
648 	int *count = c;
649 
650 	if (is_nvdimm(dev))
651 		(*count)++;
652 	return 0;
653 }
654 
655 int nvdimm_bus_check_dimm_count(struct nvdimm_bus *nvdimm_bus, int dimm_count)
656 {
657 	int count = 0;
658 	/* Flush any possible dimm registration failures */
659 	nd_synchronize();
660 
661 	device_for_each_child(&nvdimm_bus->dev, &count, count_dimms);
662 	dev_dbg(&nvdimm_bus->dev, "count: %d\n", count);
663 	if (count != dimm_count)
664 		return -ENXIO;
665 	return 0;
666 }
667 EXPORT_SYMBOL_GPL(nvdimm_bus_check_dimm_count);
668 
669 void __exit nvdimm_devs_exit(void)
670 {
671 	ida_destroy(&dimm_ida);
672 }
673