xref: /openbmc/linux/drivers/nvdimm/bus.c (revision 31e67366)
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3  * Copyright(c) 2013-2015 Intel Corporation. All rights reserved.
4  */
5 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
6 #include <linux/libnvdimm.h>
7 #include <linux/sched/mm.h>
8 #include <linux/vmalloc.h>
9 #include <linux/uaccess.h>
10 #include <linux/module.h>
11 #include <linux/blkdev.h>
12 #include <linux/fcntl.h>
13 #include <linux/async.h>
14 #include <linux/genhd.h>
15 #include <linux/ndctl.h>
16 #include <linux/sched.h>
17 #include <linux/slab.h>
18 #include <linux/cpu.h>
19 #include <linux/fs.h>
20 #include <linux/io.h>
21 #include <linux/mm.h>
22 #include <linux/nd.h>
23 #include "nd-core.h"
24 #include "nd.h"
25 #include "pfn.h"
26 
27 int nvdimm_major;
28 static int nvdimm_bus_major;
29 struct class *nd_class;
30 static DEFINE_IDA(nd_ida);
31 
32 static int to_nd_device_type(struct device *dev)
33 {
34 	if (is_nvdimm(dev))
35 		return ND_DEVICE_DIMM;
36 	else if (is_memory(dev))
37 		return ND_DEVICE_REGION_PMEM;
38 	else if (is_nd_blk(dev))
39 		return ND_DEVICE_REGION_BLK;
40 	else if (is_nd_dax(dev))
41 		return ND_DEVICE_DAX_PMEM;
42 	else if (is_nd_region(dev->parent))
43 		return nd_region_to_nstype(to_nd_region(dev->parent));
44 
45 	return 0;
46 }
47 
48 static int nvdimm_bus_uevent(struct device *dev, struct kobj_uevent_env *env)
49 {
50 	return add_uevent_var(env, "MODALIAS=" ND_DEVICE_MODALIAS_FMT,
51 			to_nd_device_type(dev));
52 }
53 
54 static struct module *to_bus_provider(struct device *dev)
55 {
56 	/* pin bus providers while regions are enabled */
57 	if (is_nd_region(dev)) {
58 		struct nvdimm_bus *nvdimm_bus = walk_to_nvdimm_bus(dev);
59 
60 		return nvdimm_bus->nd_desc->module;
61 	}
62 	return NULL;
63 }
64 
65 static void nvdimm_bus_probe_start(struct nvdimm_bus *nvdimm_bus)
66 {
67 	nvdimm_bus_lock(&nvdimm_bus->dev);
68 	nvdimm_bus->probe_active++;
69 	nvdimm_bus_unlock(&nvdimm_bus->dev);
70 }
71 
72 static void nvdimm_bus_probe_end(struct nvdimm_bus *nvdimm_bus)
73 {
74 	nvdimm_bus_lock(&nvdimm_bus->dev);
75 	if (--nvdimm_bus->probe_active == 0)
76 		wake_up(&nvdimm_bus->wait);
77 	nvdimm_bus_unlock(&nvdimm_bus->dev);
78 }
79 
80 static int nvdimm_bus_probe(struct device *dev)
81 {
82 	struct nd_device_driver *nd_drv = to_nd_device_driver(dev->driver);
83 	struct module *provider = to_bus_provider(dev);
84 	struct nvdimm_bus *nvdimm_bus = walk_to_nvdimm_bus(dev);
85 	int rc;
86 
87 	if (!try_module_get(provider))
88 		return -ENXIO;
89 
90 	dev_dbg(&nvdimm_bus->dev, "START: %s.probe(%s)\n",
91 			dev->driver->name, dev_name(dev));
92 
93 	nvdimm_bus_probe_start(nvdimm_bus);
94 	debug_nvdimm_lock(dev);
95 	rc = nd_drv->probe(dev);
96 	debug_nvdimm_unlock(dev);
97 
98 	if ((rc == 0 || rc == -EOPNOTSUPP) &&
99 			dev->parent && is_nd_region(dev->parent))
100 		nd_region_advance_seeds(to_nd_region(dev->parent), dev);
101 	nvdimm_bus_probe_end(nvdimm_bus);
102 
103 	dev_dbg(&nvdimm_bus->dev, "END: %s.probe(%s) = %d\n", dev->driver->name,
104 			dev_name(dev), rc);
105 
106 	if (rc != 0)
107 		module_put(provider);
108 	return rc;
109 }
110 
111 static int nvdimm_bus_remove(struct device *dev)
112 {
113 	struct nd_device_driver *nd_drv = to_nd_device_driver(dev->driver);
114 	struct module *provider = to_bus_provider(dev);
115 	struct nvdimm_bus *nvdimm_bus = walk_to_nvdimm_bus(dev);
116 
117 	if (nd_drv->remove) {
118 		debug_nvdimm_lock(dev);
119 		nd_drv->remove(dev);
120 		debug_nvdimm_unlock(dev);
121 	}
122 
123 	dev_dbg(&nvdimm_bus->dev, "%s.remove(%s)\n", dev->driver->name,
124 			dev_name(dev));
125 	module_put(provider);
126 	return 0;
127 }
128 
129 static void nvdimm_bus_shutdown(struct device *dev)
130 {
131 	struct nvdimm_bus *nvdimm_bus = walk_to_nvdimm_bus(dev);
132 	struct nd_device_driver *nd_drv = NULL;
133 
134 	if (dev->driver)
135 		nd_drv = to_nd_device_driver(dev->driver);
136 
137 	if (nd_drv && nd_drv->shutdown) {
138 		nd_drv->shutdown(dev);
139 		dev_dbg(&nvdimm_bus->dev, "%s.shutdown(%s)\n",
140 				dev->driver->name, dev_name(dev));
141 	}
142 }
143 
144 void nd_device_notify(struct device *dev, enum nvdimm_event event)
145 {
146 	nd_device_lock(dev);
147 	if (dev->driver) {
148 		struct nd_device_driver *nd_drv;
149 
150 		nd_drv = to_nd_device_driver(dev->driver);
151 		if (nd_drv->notify)
152 			nd_drv->notify(dev, event);
153 	}
154 	nd_device_unlock(dev);
155 }
156 EXPORT_SYMBOL(nd_device_notify);
157 
158 void nvdimm_region_notify(struct nd_region *nd_region, enum nvdimm_event event)
159 {
160 	struct nvdimm_bus *nvdimm_bus = walk_to_nvdimm_bus(&nd_region->dev);
161 
162 	if (!nvdimm_bus)
163 		return;
164 
165 	/* caller is responsible for holding a reference on the device */
166 	nd_device_notify(&nd_region->dev, event);
167 }
168 EXPORT_SYMBOL_GPL(nvdimm_region_notify);
169 
170 struct clear_badblocks_context {
171 	resource_size_t phys, cleared;
172 };
173 
174 static int nvdimm_clear_badblocks_region(struct device *dev, void *data)
175 {
176 	struct clear_badblocks_context *ctx = data;
177 	struct nd_region *nd_region;
178 	resource_size_t ndr_end;
179 	sector_t sector;
180 
181 	/* make sure device is a region */
182 	if (!is_memory(dev))
183 		return 0;
184 
185 	nd_region = to_nd_region(dev);
186 	ndr_end = nd_region->ndr_start + nd_region->ndr_size - 1;
187 
188 	/* make sure we are in the region */
189 	if (ctx->phys < nd_region->ndr_start
190 			|| (ctx->phys + ctx->cleared) > ndr_end)
191 		return 0;
192 
193 	sector = (ctx->phys - nd_region->ndr_start) / 512;
194 	badblocks_clear(&nd_region->bb, sector, ctx->cleared / 512);
195 
196 	if (nd_region->bb_state)
197 		sysfs_notify_dirent(nd_region->bb_state);
198 
199 	return 0;
200 }
201 
202 static void nvdimm_clear_badblocks_regions(struct nvdimm_bus *nvdimm_bus,
203 		phys_addr_t phys, u64 cleared)
204 {
205 	struct clear_badblocks_context ctx = {
206 		.phys = phys,
207 		.cleared = cleared,
208 	};
209 
210 	device_for_each_child(&nvdimm_bus->dev, &ctx,
211 			nvdimm_clear_badblocks_region);
212 }
213 
214 static void nvdimm_account_cleared_poison(struct nvdimm_bus *nvdimm_bus,
215 		phys_addr_t phys, u64 cleared)
216 {
217 	if (cleared > 0)
218 		badrange_forget(&nvdimm_bus->badrange, phys, cleared);
219 
220 	if (cleared > 0 && cleared / 512)
221 		nvdimm_clear_badblocks_regions(nvdimm_bus, phys, cleared);
222 }
223 
224 long nvdimm_clear_poison(struct device *dev, phys_addr_t phys,
225 		unsigned int len)
226 {
227 	struct nvdimm_bus *nvdimm_bus = walk_to_nvdimm_bus(dev);
228 	struct nvdimm_bus_descriptor *nd_desc;
229 	struct nd_cmd_clear_error clear_err;
230 	struct nd_cmd_ars_cap ars_cap;
231 	u32 clear_err_unit, mask;
232 	unsigned int noio_flag;
233 	int cmd_rc, rc;
234 
235 	if (!nvdimm_bus)
236 		return -ENXIO;
237 
238 	nd_desc = nvdimm_bus->nd_desc;
239 	/*
240 	 * if ndctl does not exist, it's PMEM_LEGACY and
241 	 * we want to just pretend everything is handled.
242 	 */
243 	if (!nd_desc->ndctl)
244 		return len;
245 
246 	memset(&ars_cap, 0, sizeof(ars_cap));
247 	ars_cap.address = phys;
248 	ars_cap.length = len;
249 	noio_flag = memalloc_noio_save();
250 	rc = nd_desc->ndctl(nd_desc, NULL, ND_CMD_ARS_CAP, &ars_cap,
251 			sizeof(ars_cap), &cmd_rc);
252 	memalloc_noio_restore(noio_flag);
253 	if (rc < 0)
254 		return rc;
255 	if (cmd_rc < 0)
256 		return cmd_rc;
257 	clear_err_unit = ars_cap.clear_err_unit;
258 	if (!clear_err_unit || !is_power_of_2(clear_err_unit))
259 		return -ENXIO;
260 
261 	mask = clear_err_unit - 1;
262 	if ((phys | len) & mask)
263 		return -ENXIO;
264 	memset(&clear_err, 0, sizeof(clear_err));
265 	clear_err.address = phys;
266 	clear_err.length = len;
267 	noio_flag = memalloc_noio_save();
268 	rc = nd_desc->ndctl(nd_desc, NULL, ND_CMD_CLEAR_ERROR, &clear_err,
269 			sizeof(clear_err), &cmd_rc);
270 	memalloc_noio_restore(noio_flag);
271 	if (rc < 0)
272 		return rc;
273 	if (cmd_rc < 0)
274 		return cmd_rc;
275 
276 	nvdimm_account_cleared_poison(nvdimm_bus, phys, clear_err.cleared);
277 
278 	return clear_err.cleared;
279 }
280 EXPORT_SYMBOL_GPL(nvdimm_clear_poison);
281 
282 static int nvdimm_bus_match(struct device *dev, struct device_driver *drv);
283 
284 static struct bus_type nvdimm_bus_type = {
285 	.name = "nd",
286 	.uevent = nvdimm_bus_uevent,
287 	.match = nvdimm_bus_match,
288 	.probe = nvdimm_bus_probe,
289 	.remove = nvdimm_bus_remove,
290 	.shutdown = nvdimm_bus_shutdown,
291 };
292 
293 static void nvdimm_bus_release(struct device *dev)
294 {
295 	struct nvdimm_bus *nvdimm_bus;
296 
297 	nvdimm_bus = container_of(dev, struct nvdimm_bus, dev);
298 	ida_simple_remove(&nd_ida, nvdimm_bus->id);
299 	kfree(nvdimm_bus);
300 }
301 
302 static const struct device_type nvdimm_bus_dev_type = {
303 	.release = nvdimm_bus_release,
304 	.groups = nvdimm_bus_attribute_groups,
305 };
306 
307 bool is_nvdimm_bus(struct device *dev)
308 {
309 	return dev->type == &nvdimm_bus_dev_type;
310 }
311 
312 struct nvdimm_bus *walk_to_nvdimm_bus(struct device *nd_dev)
313 {
314 	struct device *dev;
315 
316 	for (dev = nd_dev; dev; dev = dev->parent)
317 		if (is_nvdimm_bus(dev))
318 			break;
319 	dev_WARN_ONCE(nd_dev, !dev, "invalid dev, not on nd bus\n");
320 	if (dev)
321 		return to_nvdimm_bus(dev);
322 	return NULL;
323 }
324 
325 struct nvdimm_bus *to_nvdimm_bus(struct device *dev)
326 {
327 	struct nvdimm_bus *nvdimm_bus;
328 
329 	nvdimm_bus = container_of(dev, struct nvdimm_bus, dev);
330 	WARN_ON(!is_nvdimm_bus(dev));
331 	return nvdimm_bus;
332 }
333 EXPORT_SYMBOL_GPL(to_nvdimm_bus);
334 
335 struct nvdimm_bus *nvdimm_to_bus(struct nvdimm *nvdimm)
336 {
337 	return to_nvdimm_bus(nvdimm->dev.parent);
338 }
339 EXPORT_SYMBOL_GPL(nvdimm_to_bus);
340 
341 struct nvdimm_bus *nvdimm_bus_register(struct device *parent,
342 		struct nvdimm_bus_descriptor *nd_desc)
343 {
344 	struct nvdimm_bus *nvdimm_bus;
345 	int rc;
346 
347 	nvdimm_bus = kzalloc(sizeof(*nvdimm_bus), GFP_KERNEL);
348 	if (!nvdimm_bus)
349 		return NULL;
350 	INIT_LIST_HEAD(&nvdimm_bus->list);
351 	INIT_LIST_HEAD(&nvdimm_bus->mapping_list);
352 	init_waitqueue_head(&nvdimm_bus->wait);
353 	nvdimm_bus->id = ida_simple_get(&nd_ida, 0, 0, GFP_KERNEL);
354 	if (nvdimm_bus->id < 0) {
355 		kfree(nvdimm_bus);
356 		return NULL;
357 	}
358 	mutex_init(&nvdimm_bus->reconfig_mutex);
359 	badrange_init(&nvdimm_bus->badrange);
360 	nvdimm_bus->nd_desc = nd_desc;
361 	nvdimm_bus->dev.parent = parent;
362 	nvdimm_bus->dev.type = &nvdimm_bus_dev_type;
363 	nvdimm_bus->dev.groups = nd_desc->attr_groups;
364 	nvdimm_bus->dev.bus = &nvdimm_bus_type;
365 	nvdimm_bus->dev.of_node = nd_desc->of_node;
366 	dev_set_name(&nvdimm_bus->dev, "ndbus%d", nvdimm_bus->id);
367 	rc = device_register(&nvdimm_bus->dev);
368 	if (rc) {
369 		dev_dbg(&nvdimm_bus->dev, "registration failed: %d\n", rc);
370 		goto err;
371 	}
372 
373 	return nvdimm_bus;
374  err:
375 	put_device(&nvdimm_bus->dev);
376 	return NULL;
377 }
378 EXPORT_SYMBOL_GPL(nvdimm_bus_register);
379 
380 void nvdimm_bus_unregister(struct nvdimm_bus *nvdimm_bus)
381 {
382 	if (!nvdimm_bus)
383 		return;
384 	device_unregister(&nvdimm_bus->dev);
385 }
386 EXPORT_SYMBOL_GPL(nvdimm_bus_unregister);
387 
388 static int child_unregister(struct device *dev, void *data)
389 {
390 	/*
391 	 * the singular ndctl class device per bus needs to be
392 	 * "device_destroy"ed, so skip it here
393 	 *
394 	 * i.e. remove classless children
395 	 */
396 	if (dev->class)
397 		return 0;
398 
399 	if (is_nvdimm(dev)) {
400 		struct nvdimm *nvdimm = to_nvdimm(dev);
401 		bool dev_put = false;
402 
403 		/* We are shutting down. Make state frozen artificially. */
404 		nvdimm_bus_lock(dev);
405 		set_bit(NVDIMM_SECURITY_FROZEN, &nvdimm->sec.flags);
406 		if (test_and_clear_bit(NDD_WORK_PENDING, &nvdimm->flags))
407 			dev_put = true;
408 		nvdimm_bus_unlock(dev);
409 		cancel_delayed_work_sync(&nvdimm->dwork);
410 		if (dev_put)
411 			put_device(dev);
412 	}
413 	nd_device_unregister(dev, ND_SYNC);
414 
415 	return 0;
416 }
417 
418 static void free_badrange_list(struct list_head *badrange_list)
419 {
420 	struct badrange_entry *bre, *next;
421 
422 	list_for_each_entry_safe(bre, next, badrange_list, list) {
423 		list_del(&bre->list);
424 		kfree(bre);
425 	}
426 	list_del_init(badrange_list);
427 }
428 
429 static void nd_bus_remove(struct device *dev)
430 {
431 	struct nvdimm_bus *nvdimm_bus = to_nvdimm_bus(dev);
432 
433 	mutex_lock(&nvdimm_bus_list_mutex);
434 	list_del_init(&nvdimm_bus->list);
435 	mutex_unlock(&nvdimm_bus_list_mutex);
436 
437 	wait_event(nvdimm_bus->wait,
438 			atomic_read(&nvdimm_bus->ioctl_active) == 0);
439 
440 	nd_synchronize();
441 	device_for_each_child(&nvdimm_bus->dev, NULL, child_unregister);
442 
443 	spin_lock(&nvdimm_bus->badrange.lock);
444 	free_badrange_list(&nvdimm_bus->badrange.list);
445 	spin_unlock(&nvdimm_bus->badrange.lock);
446 
447 	nvdimm_bus_destroy_ndctl(nvdimm_bus);
448 }
449 
450 static int nd_bus_probe(struct device *dev)
451 {
452 	struct nvdimm_bus *nvdimm_bus = to_nvdimm_bus(dev);
453 	int rc;
454 
455 	rc = nvdimm_bus_create_ndctl(nvdimm_bus);
456 	if (rc)
457 		return rc;
458 
459 	mutex_lock(&nvdimm_bus_list_mutex);
460 	list_add_tail(&nvdimm_bus->list, &nvdimm_bus_list);
461 	mutex_unlock(&nvdimm_bus_list_mutex);
462 
463 	/* enable bus provider attributes to look up their local context */
464 	dev_set_drvdata(dev, nvdimm_bus->nd_desc);
465 
466 	return 0;
467 }
468 
469 static struct nd_device_driver nd_bus_driver = {
470 	.probe = nd_bus_probe,
471 	.remove = nd_bus_remove,
472 	.drv = {
473 		.name = "nd_bus",
474 		.suppress_bind_attrs = true,
475 		.bus = &nvdimm_bus_type,
476 		.owner = THIS_MODULE,
477 		.mod_name = KBUILD_MODNAME,
478 	},
479 };
480 
481 static int nvdimm_bus_match(struct device *dev, struct device_driver *drv)
482 {
483 	struct nd_device_driver *nd_drv = to_nd_device_driver(drv);
484 
485 	if (is_nvdimm_bus(dev) && nd_drv == &nd_bus_driver)
486 		return true;
487 
488 	return !!test_bit(to_nd_device_type(dev), &nd_drv->type);
489 }
490 
491 static ASYNC_DOMAIN_EXCLUSIVE(nd_async_domain);
492 
493 void nd_synchronize(void)
494 {
495 	async_synchronize_full_domain(&nd_async_domain);
496 }
497 EXPORT_SYMBOL_GPL(nd_synchronize);
498 
499 static void nd_async_device_register(void *d, async_cookie_t cookie)
500 {
501 	struct device *dev = d;
502 
503 	if (device_add(dev) != 0) {
504 		dev_err(dev, "%s: failed\n", __func__);
505 		put_device(dev);
506 	}
507 	put_device(dev);
508 	if (dev->parent)
509 		put_device(dev->parent);
510 }
511 
512 static void nd_async_device_unregister(void *d, async_cookie_t cookie)
513 {
514 	struct device *dev = d;
515 
516 	/* flush bus operations before delete */
517 	nvdimm_bus_lock(dev);
518 	nvdimm_bus_unlock(dev);
519 
520 	device_unregister(dev);
521 	put_device(dev);
522 }
523 
524 void __nd_device_register(struct device *dev)
525 {
526 	if (!dev)
527 		return;
528 
529 	/*
530 	 * Ensure that region devices always have their NUMA node set as
531 	 * early as possible. This way we are able to make certain that
532 	 * any memory associated with the creation and the creation
533 	 * itself of the region is associated with the correct node.
534 	 */
535 	if (is_nd_region(dev))
536 		set_dev_node(dev, to_nd_region(dev)->numa_node);
537 
538 	dev->bus = &nvdimm_bus_type;
539 	if (dev->parent) {
540 		get_device(dev->parent);
541 		if (dev_to_node(dev) == NUMA_NO_NODE)
542 			set_dev_node(dev, dev_to_node(dev->parent));
543 	}
544 	get_device(dev);
545 
546 	async_schedule_dev_domain(nd_async_device_register, dev,
547 				  &nd_async_domain);
548 }
549 
550 void nd_device_register(struct device *dev)
551 {
552 	device_initialize(dev);
553 	__nd_device_register(dev);
554 }
555 EXPORT_SYMBOL(nd_device_register);
556 
557 void nd_device_unregister(struct device *dev, enum nd_async_mode mode)
558 {
559 	bool killed;
560 
561 	switch (mode) {
562 	case ND_ASYNC:
563 		/*
564 		 * In the async case this is being triggered with the
565 		 * device lock held and the unregistration work needs to
566 		 * be moved out of line iff this is thread has won the
567 		 * race to schedule the deletion.
568 		 */
569 		if (!kill_device(dev))
570 			return;
571 
572 		get_device(dev);
573 		async_schedule_domain(nd_async_device_unregister, dev,
574 				&nd_async_domain);
575 		break;
576 	case ND_SYNC:
577 		/*
578 		 * In the sync case the device is being unregistered due
579 		 * to a state change of the parent. Claim the kill state
580 		 * to synchronize against other unregistration requests,
581 		 * or otherwise let the async path handle it if the
582 		 * unregistration was already queued.
583 		 */
584 		nd_device_lock(dev);
585 		killed = kill_device(dev);
586 		nd_device_unlock(dev);
587 
588 		if (!killed)
589 			return;
590 
591 		nd_synchronize();
592 		device_unregister(dev);
593 		break;
594 	}
595 }
596 EXPORT_SYMBOL(nd_device_unregister);
597 
598 /**
599  * __nd_driver_register() - register a region or a namespace driver
600  * @nd_drv: driver to register
601  * @owner: automatically set by nd_driver_register() macro
602  * @mod_name: automatically set by nd_driver_register() macro
603  */
604 int __nd_driver_register(struct nd_device_driver *nd_drv, struct module *owner,
605 		const char *mod_name)
606 {
607 	struct device_driver *drv = &nd_drv->drv;
608 
609 	if (!nd_drv->type) {
610 		pr_debug("driver type bitmask not set (%ps)\n",
611 				__builtin_return_address(0));
612 		return -EINVAL;
613 	}
614 
615 	if (!nd_drv->probe) {
616 		pr_debug("%s ->probe() must be specified\n", mod_name);
617 		return -EINVAL;
618 	}
619 
620 	drv->bus = &nvdimm_bus_type;
621 	drv->owner = owner;
622 	drv->mod_name = mod_name;
623 
624 	return driver_register(drv);
625 }
626 EXPORT_SYMBOL(__nd_driver_register);
627 
628 void nvdimm_check_and_set_ro(struct gendisk *disk)
629 {
630 	struct device *dev = disk_to_dev(disk)->parent;
631 	struct nd_region *nd_region = to_nd_region(dev->parent);
632 	int disk_ro = get_disk_ro(disk);
633 
634 	/*
635 	 * Upgrade to read-only if the region is read-only preserve as
636 	 * read-only if the disk is already read-only.
637 	 */
638 	if (disk_ro || nd_region->ro == disk_ro)
639 		return;
640 
641 	dev_info(dev, "%s read-only, marking %s read-only\n",
642 			dev_name(&nd_region->dev), disk->disk_name);
643 	set_disk_ro(disk, 1);
644 }
645 EXPORT_SYMBOL(nvdimm_check_and_set_ro);
646 
647 static ssize_t modalias_show(struct device *dev, struct device_attribute *attr,
648 		char *buf)
649 {
650 	return sprintf(buf, ND_DEVICE_MODALIAS_FMT "\n",
651 			to_nd_device_type(dev));
652 }
653 static DEVICE_ATTR_RO(modalias);
654 
655 static ssize_t devtype_show(struct device *dev, struct device_attribute *attr,
656 		char *buf)
657 {
658 	return sprintf(buf, "%s\n", dev->type->name);
659 }
660 static DEVICE_ATTR_RO(devtype);
661 
662 static struct attribute *nd_device_attributes[] = {
663 	&dev_attr_modalias.attr,
664 	&dev_attr_devtype.attr,
665 	NULL,
666 };
667 
668 /*
669  * nd_device_attribute_group - generic attributes for all devices on an nd bus
670  */
671 const struct attribute_group nd_device_attribute_group = {
672 	.attrs = nd_device_attributes,
673 };
674 
675 static ssize_t numa_node_show(struct device *dev,
676 		struct device_attribute *attr, char *buf)
677 {
678 	return sprintf(buf, "%d\n", dev_to_node(dev));
679 }
680 static DEVICE_ATTR_RO(numa_node);
681 
682 static int nvdimm_dev_to_target_node(struct device *dev)
683 {
684 	struct device *parent = dev->parent;
685 	struct nd_region *nd_region = NULL;
686 
687 	if (is_nd_region(dev))
688 		nd_region = to_nd_region(dev);
689 	else if (parent && is_nd_region(parent))
690 		nd_region = to_nd_region(parent);
691 
692 	if (!nd_region)
693 		return NUMA_NO_NODE;
694 	return nd_region->target_node;
695 }
696 
697 static ssize_t target_node_show(struct device *dev,
698 		struct device_attribute *attr, char *buf)
699 {
700 	return sprintf(buf, "%d\n", nvdimm_dev_to_target_node(dev));
701 }
702 static DEVICE_ATTR_RO(target_node);
703 
704 static struct attribute *nd_numa_attributes[] = {
705 	&dev_attr_numa_node.attr,
706 	&dev_attr_target_node.attr,
707 	NULL,
708 };
709 
710 static umode_t nd_numa_attr_visible(struct kobject *kobj, struct attribute *a,
711 		int n)
712 {
713 	struct device *dev = container_of(kobj, typeof(*dev), kobj);
714 
715 	if (!IS_ENABLED(CONFIG_NUMA))
716 		return 0;
717 
718 	if (a == &dev_attr_target_node.attr &&
719 			nvdimm_dev_to_target_node(dev) == NUMA_NO_NODE)
720 		return 0;
721 
722 	return a->mode;
723 }
724 
725 /*
726  * nd_numa_attribute_group - NUMA attributes for all devices on an nd bus
727  */
728 const struct attribute_group nd_numa_attribute_group = {
729 	.attrs = nd_numa_attributes,
730 	.is_visible = nd_numa_attr_visible,
731 };
732 
733 int nvdimm_bus_create_ndctl(struct nvdimm_bus *nvdimm_bus)
734 {
735 	dev_t devt = MKDEV(nvdimm_bus_major, nvdimm_bus->id);
736 	struct device *dev;
737 
738 	dev = device_create(nd_class, &nvdimm_bus->dev, devt, nvdimm_bus,
739 			"ndctl%d", nvdimm_bus->id);
740 
741 	if (IS_ERR(dev))
742 		dev_dbg(&nvdimm_bus->dev, "failed to register ndctl%d: %ld\n",
743 				nvdimm_bus->id, PTR_ERR(dev));
744 	return PTR_ERR_OR_ZERO(dev);
745 }
746 
747 void nvdimm_bus_destroy_ndctl(struct nvdimm_bus *nvdimm_bus)
748 {
749 	device_destroy(nd_class, MKDEV(nvdimm_bus_major, nvdimm_bus->id));
750 }
751 
752 static const struct nd_cmd_desc __nd_cmd_dimm_descs[] = {
753 	[ND_CMD_IMPLEMENTED] = { },
754 	[ND_CMD_SMART] = {
755 		.out_num = 2,
756 		.out_sizes = { 4, 128, },
757 	},
758 	[ND_CMD_SMART_THRESHOLD] = {
759 		.out_num = 2,
760 		.out_sizes = { 4, 8, },
761 	},
762 	[ND_CMD_DIMM_FLAGS] = {
763 		.out_num = 2,
764 		.out_sizes = { 4, 4 },
765 	},
766 	[ND_CMD_GET_CONFIG_SIZE] = {
767 		.out_num = 3,
768 		.out_sizes = { 4, 4, 4, },
769 	},
770 	[ND_CMD_GET_CONFIG_DATA] = {
771 		.in_num = 2,
772 		.in_sizes = { 4, 4, },
773 		.out_num = 2,
774 		.out_sizes = { 4, UINT_MAX, },
775 	},
776 	[ND_CMD_SET_CONFIG_DATA] = {
777 		.in_num = 3,
778 		.in_sizes = { 4, 4, UINT_MAX, },
779 		.out_num = 1,
780 		.out_sizes = { 4, },
781 	},
782 	[ND_CMD_VENDOR] = {
783 		.in_num = 3,
784 		.in_sizes = { 4, 4, UINT_MAX, },
785 		.out_num = 3,
786 		.out_sizes = { 4, 4, UINT_MAX, },
787 	},
788 	[ND_CMD_CALL] = {
789 		.in_num = 2,
790 		.in_sizes = { sizeof(struct nd_cmd_pkg), UINT_MAX, },
791 		.out_num = 1,
792 		.out_sizes = { UINT_MAX, },
793 	},
794 };
795 
796 const struct nd_cmd_desc *nd_cmd_dimm_desc(int cmd)
797 {
798 	if (cmd < ARRAY_SIZE(__nd_cmd_dimm_descs))
799 		return &__nd_cmd_dimm_descs[cmd];
800 	return NULL;
801 }
802 EXPORT_SYMBOL_GPL(nd_cmd_dimm_desc);
803 
804 static const struct nd_cmd_desc __nd_cmd_bus_descs[] = {
805 	[ND_CMD_IMPLEMENTED] = { },
806 	[ND_CMD_ARS_CAP] = {
807 		.in_num = 2,
808 		.in_sizes = { 8, 8, },
809 		.out_num = 4,
810 		.out_sizes = { 4, 4, 4, 4, },
811 	},
812 	[ND_CMD_ARS_START] = {
813 		.in_num = 5,
814 		.in_sizes = { 8, 8, 2, 1, 5, },
815 		.out_num = 2,
816 		.out_sizes = { 4, 4, },
817 	},
818 	[ND_CMD_ARS_STATUS] = {
819 		.out_num = 3,
820 		.out_sizes = { 4, 4, UINT_MAX, },
821 	},
822 	[ND_CMD_CLEAR_ERROR] = {
823 		.in_num = 2,
824 		.in_sizes = { 8, 8, },
825 		.out_num = 3,
826 		.out_sizes = { 4, 4, 8, },
827 	},
828 	[ND_CMD_CALL] = {
829 		.in_num = 2,
830 		.in_sizes = { sizeof(struct nd_cmd_pkg), UINT_MAX, },
831 		.out_num = 1,
832 		.out_sizes = { UINT_MAX, },
833 	},
834 };
835 
836 const struct nd_cmd_desc *nd_cmd_bus_desc(int cmd)
837 {
838 	if (cmd < ARRAY_SIZE(__nd_cmd_bus_descs))
839 		return &__nd_cmd_bus_descs[cmd];
840 	return NULL;
841 }
842 EXPORT_SYMBOL_GPL(nd_cmd_bus_desc);
843 
844 u32 nd_cmd_in_size(struct nvdimm *nvdimm, int cmd,
845 		const struct nd_cmd_desc *desc, int idx, void *buf)
846 {
847 	if (idx >= desc->in_num)
848 		return UINT_MAX;
849 
850 	if (desc->in_sizes[idx] < UINT_MAX)
851 		return desc->in_sizes[idx];
852 
853 	if (nvdimm && cmd == ND_CMD_SET_CONFIG_DATA && idx == 2) {
854 		struct nd_cmd_set_config_hdr *hdr = buf;
855 
856 		return hdr->in_length;
857 	} else if (nvdimm && cmd == ND_CMD_VENDOR && idx == 2) {
858 		struct nd_cmd_vendor_hdr *hdr = buf;
859 
860 		return hdr->in_length;
861 	} else if (cmd == ND_CMD_CALL) {
862 		struct nd_cmd_pkg *pkg = buf;
863 
864 		return pkg->nd_size_in;
865 	}
866 
867 	return UINT_MAX;
868 }
869 EXPORT_SYMBOL_GPL(nd_cmd_in_size);
870 
871 u32 nd_cmd_out_size(struct nvdimm *nvdimm, int cmd,
872 		const struct nd_cmd_desc *desc, int idx, const u32 *in_field,
873 		const u32 *out_field, unsigned long remainder)
874 {
875 	if (idx >= desc->out_num)
876 		return UINT_MAX;
877 
878 	if (desc->out_sizes[idx] < UINT_MAX)
879 		return desc->out_sizes[idx];
880 
881 	if (nvdimm && cmd == ND_CMD_GET_CONFIG_DATA && idx == 1)
882 		return in_field[1];
883 	else if (nvdimm && cmd == ND_CMD_VENDOR && idx == 2)
884 		return out_field[1];
885 	else if (!nvdimm && cmd == ND_CMD_ARS_STATUS && idx == 2) {
886 		/*
887 		 * Per table 9-276 ARS Data in ACPI 6.1, out_field[1] is
888 		 * "Size of Output Buffer in bytes, including this
889 		 * field."
890 		 */
891 		if (out_field[1] < 4)
892 			return 0;
893 		/*
894 		 * ACPI 6.1 is ambiguous if 'status' is included in the
895 		 * output size. If we encounter an output size that
896 		 * overshoots the remainder by 4 bytes, assume it was
897 		 * including 'status'.
898 		 */
899 		if (out_field[1] - 4 == remainder)
900 			return remainder;
901 		return out_field[1] - 8;
902 	} else if (cmd == ND_CMD_CALL) {
903 		struct nd_cmd_pkg *pkg = (struct nd_cmd_pkg *) in_field;
904 
905 		return pkg->nd_size_out;
906 	}
907 
908 
909 	return UINT_MAX;
910 }
911 EXPORT_SYMBOL_GPL(nd_cmd_out_size);
912 
913 void wait_nvdimm_bus_probe_idle(struct device *dev)
914 {
915 	struct nvdimm_bus *nvdimm_bus = walk_to_nvdimm_bus(dev);
916 
917 	do {
918 		if (nvdimm_bus->probe_active == 0)
919 			break;
920 		nvdimm_bus_unlock(dev);
921 		nd_device_unlock(dev);
922 		wait_event(nvdimm_bus->wait,
923 				nvdimm_bus->probe_active == 0);
924 		nd_device_lock(dev);
925 		nvdimm_bus_lock(dev);
926 	} while (true);
927 }
928 
929 static int nd_pmem_forget_poison_check(struct device *dev, void *data)
930 {
931 	struct nd_cmd_clear_error *clear_err =
932 		(struct nd_cmd_clear_error *)data;
933 	struct nd_btt *nd_btt = is_nd_btt(dev) ? to_nd_btt(dev) : NULL;
934 	struct nd_pfn *nd_pfn = is_nd_pfn(dev) ? to_nd_pfn(dev) : NULL;
935 	struct nd_dax *nd_dax = is_nd_dax(dev) ? to_nd_dax(dev) : NULL;
936 	struct nd_namespace_common *ndns = NULL;
937 	struct nd_namespace_io *nsio;
938 	resource_size_t offset = 0, end_trunc = 0, start, end, pstart, pend;
939 
940 	if (nd_dax || !dev->driver)
941 		return 0;
942 
943 	start = clear_err->address;
944 	end = clear_err->address + clear_err->cleared - 1;
945 
946 	if (nd_btt || nd_pfn || nd_dax) {
947 		if (nd_btt)
948 			ndns = nd_btt->ndns;
949 		else if (nd_pfn)
950 			ndns = nd_pfn->ndns;
951 		else if (nd_dax)
952 			ndns = nd_dax->nd_pfn.ndns;
953 
954 		if (!ndns)
955 			return 0;
956 	} else
957 		ndns = to_ndns(dev);
958 
959 	nsio = to_nd_namespace_io(&ndns->dev);
960 	pstart = nsio->res.start + offset;
961 	pend = nsio->res.end - end_trunc;
962 
963 	if ((pstart >= start) && (pend <= end))
964 		return -EBUSY;
965 
966 	return 0;
967 
968 }
969 
970 static int nd_ns_forget_poison_check(struct device *dev, void *data)
971 {
972 	return device_for_each_child(dev, data, nd_pmem_forget_poison_check);
973 }
974 
975 /* set_config requires an idle interleave set */
976 static int nd_cmd_clear_to_send(struct nvdimm_bus *nvdimm_bus,
977 		struct nvdimm *nvdimm, unsigned int cmd, void *data)
978 {
979 	struct nvdimm_bus_descriptor *nd_desc = nvdimm_bus->nd_desc;
980 
981 	/* ask the bus provider if it would like to block this request */
982 	if (nd_desc->clear_to_send) {
983 		int rc = nd_desc->clear_to_send(nd_desc, nvdimm, cmd, data);
984 
985 		if (rc)
986 			return rc;
987 	}
988 
989 	/* require clear error to go through the pmem driver */
990 	if (!nvdimm && cmd == ND_CMD_CLEAR_ERROR)
991 		return device_for_each_child(&nvdimm_bus->dev, data,
992 				nd_ns_forget_poison_check);
993 
994 	if (!nvdimm || cmd != ND_CMD_SET_CONFIG_DATA)
995 		return 0;
996 
997 	/* prevent label manipulation while the kernel owns label updates */
998 	wait_nvdimm_bus_probe_idle(&nvdimm_bus->dev);
999 	if (atomic_read(&nvdimm->busy))
1000 		return -EBUSY;
1001 	return 0;
1002 }
1003 
1004 static int __nd_ioctl(struct nvdimm_bus *nvdimm_bus, struct nvdimm *nvdimm,
1005 		int read_only, unsigned int ioctl_cmd, unsigned long arg)
1006 {
1007 	struct nvdimm_bus_descriptor *nd_desc = nvdimm_bus->nd_desc;
1008 	const struct nd_cmd_desc *desc = NULL;
1009 	unsigned int cmd = _IOC_NR(ioctl_cmd);
1010 	struct device *dev = &nvdimm_bus->dev;
1011 	void __user *p = (void __user *) arg;
1012 	char *out_env = NULL, *in_env = NULL;
1013 	const char *cmd_name, *dimm_name;
1014 	u32 in_len = 0, out_len = 0;
1015 	unsigned int func = cmd;
1016 	unsigned long cmd_mask;
1017 	struct nd_cmd_pkg pkg;
1018 	int rc, i, cmd_rc;
1019 	void *buf = NULL;
1020 	u64 buf_len = 0;
1021 
1022 	if (nvdimm) {
1023 		desc = nd_cmd_dimm_desc(cmd);
1024 		cmd_name = nvdimm_cmd_name(cmd);
1025 		cmd_mask = nvdimm->cmd_mask;
1026 		dimm_name = dev_name(&nvdimm->dev);
1027 	} else {
1028 		desc = nd_cmd_bus_desc(cmd);
1029 		cmd_name = nvdimm_bus_cmd_name(cmd);
1030 		cmd_mask = nd_desc->cmd_mask;
1031 		dimm_name = "bus";
1032 	}
1033 
1034 	/* Validate command family support against bus declared support */
1035 	if (cmd == ND_CMD_CALL) {
1036 		unsigned long *mask;
1037 
1038 		if (copy_from_user(&pkg, p, sizeof(pkg)))
1039 			return -EFAULT;
1040 
1041 		if (nvdimm) {
1042 			if (pkg.nd_family > NVDIMM_FAMILY_MAX)
1043 				return -EINVAL;
1044 			mask = &nd_desc->dimm_family_mask;
1045 		} else {
1046 			if (pkg.nd_family > NVDIMM_BUS_FAMILY_MAX)
1047 				return -EINVAL;
1048 			mask = &nd_desc->bus_family_mask;
1049 		}
1050 
1051 		if (!test_bit(pkg.nd_family, mask))
1052 			return -EINVAL;
1053 	}
1054 
1055 	if (!desc ||
1056 	    (desc->out_num + desc->in_num == 0) ||
1057 	    cmd > ND_CMD_CALL ||
1058 	    !test_bit(cmd, &cmd_mask))
1059 		return -ENOTTY;
1060 
1061 	/* fail write commands (when read-only) */
1062 	if (read_only)
1063 		switch (cmd) {
1064 		case ND_CMD_VENDOR:
1065 		case ND_CMD_SET_CONFIG_DATA:
1066 		case ND_CMD_ARS_START:
1067 		case ND_CMD_CLEAR_ERROR:
1068 		case ND_CMD_CALL:
1069 			dev_dbg(dev, "'%s' command while read-only.\n",
1070 					nvdimm ? nvdimm_cmd_name(cmd)
1071 					: nvdimm_bus_cmd_name(cmd));
1072 			return -EPERM;
1073 		default:
1074 			break;
1075 		}
1076 
1077 	/* process an input envelope */
1078 	in_env = kzalloc(ND_CMD_MAX_ENVELOPE, GFP_KERNEL);
1079 	if (!in_env)
1080 		return -ENOMEM;
1081 	for (i = 0; i < desc->in_num; i++) {
1082 		u32 in_size, copy;
1083 
1084 		in_size = nd_cmd_in_size(nvdimm, cmd, desc, i, in_env);
1085 		if (in_size == UINT_MAX) {
1086 			dev_err(dev, "%s:%s unknown input size cmd: %s field: %d\n",
1087 					__func__, dimm_name, cmd_name, i);
1088 			rc = -ENXIO;
1089 			goto out;
1090 		}
1091 		if (in_len < ND_CMD_MAX_ENVELOPE)
1092 			copy = min_t(u32, ND_CMD_MAX_ENVELOPE - in_len, in_size);
1093 		else
1094 			copy = 0;
1095 		if (copy && copy_from_user(&in_env[in_len], p + in_len, copy)) {
1096 			rc = -EFAULT;
1097 			goto out;
1098 		}
1099 		in_len += in_size;
1100 	}
1101 
1102 	if (cmd == ND_CMD_CALL) {
1103 		func = pkg.nd_command;
1104 		dev_dbg(dev, "%s, idx: %llu, in: %u, out: %u, len %llu\n",
1105 				dimm_name, pkg.nd_command,
1106 				in_len, out_len, buf_len);
1107 	}
1108 
1109 	/* process an output envelope */
1110 	out_env = kzalloc(ND_CMD_MAX_ENVELOPE, GFP_KERNEL);
1111 	if (!out_env) {
1112 		rc = -ENOMEM;
1113 		goto out;
1114 	}
1115 
1116 	for (i = 0; i < desc->out_num; i++) {
1117 		u32 out_size = nd_cmd_out_size(nvdimm, cmd, desc, i,
1118 				(u32 *) in_env, (u32 *) out_env, 0);
1119 		u32 copy;
1120 
1121 		if (out_size == UINT_MAX) {
1122 			dev_dbg(dev, "%s unknown output size cmd: %s field: %d\n",
1123 					dimm_name, cmd_name, i);
1124 			rc = -EFAULT;
1125 			goto out;
1126 		}
1127 		if (out_len < ND_CMD_MAX_ENVELOPE)
1128 			copy = min_t(u32, ND_CMD_MAX_ENVELOPE - out_len, out_size);
1129 		else
1130 			copy = 0;
1131 		if (copy && copy_from_user(&out_env[out_len],
1132 					p + in_len + out_len, copy)) {
1133 			rc = -EFAULT;
1134 			goto out;
1135 		}
1136 		out_len += out_size;
1137 	}
1138 
1139 	buf_len = (u64) out_len + (u64) in_len;
1140 	if (buf_len > ND_IOCTL_MAX_BUFLEN) {
1141 		dev_dbg(dev, "%s cmd: %s buf_len: %llu > %d\n", dimm_name,
1142 				cmd_name, buf_len, ND_IOCTL_MAX_BUFLEN);
1143 		rc = -EINVAL;
1144 		goto out;
1145 	}
1146 
1147 	buf = vmalloc(buf_len);
1148 	if (!buf) {
1149 		rc = -ENOMEM;
1150 		goto out;
1151 	}
1152 
1153 	if (copy_from_user(buf, p, buf_len)) {
1154 		rc = -EFAULT;
1155 		goto out;
1156 	}
1157 
1158 	nd_device_lock(dev);
1159 	nvdimm_bus_lock(dev);
1160 	rc = nd_cmd_clear_to_send(nvdimm_bus, nvdimm, func, buf);
1161 	if (rc)
1162 		goto out_unlock;
1163 
1164 	rc = nd_desc->ndctl(nd_desc, nvdimm, cmd, buf, buf_len, &cmd_rc);
1165 	if (rc < 0)
1166 		goto out_unlock;
1167 
1168 	if (!nvdimm && cmd == ND_CMD_CLEAR_ERROR && cmd_rc >= 0) {
1169 		struct nd_cmd_clear_error *clear_err = buf;
1170 
1171 		nvdimm_account_cleared_poison(nvdimm_bus, clear_err->address,
1172 				clear_err->cleared);
1173 	}
1174 
1175 	if (copy_to_user(p, buf, buf_len))
1176 		rc = -EFAULT;
1177 
1178 out_unlock:
1179 	nvdimm_bus_unlock(dev);
1180 	nd_device_unlock(dev);
1181 out:
1182 	kfree(in_env);
1183 	kfree(out_env);
1184 	vfree(buf);
1185 	return rc;
1186 }
1187 
1188 enum nd_ioctl_mode {
1189 	BUS_IOCTL,
1190 	DIMM_IOCTL,
1191 };
1192 
1193 static int match_dimm(struct device *dev, void *data)
1194 {
1195 	long id = (long) data;
1196 
1197 	if (is_nvdimm(dev)) {
1198 		struct nvdimm *nvdimm = to_nvdimm(dev);
1199 
1200 		return nvdimm->id == id;
1201 	}
1202 
1203 	return 0;
1204 }
1205 
1206 static long nd_ioctl(struct file *file, unsigned int cmd, unsigned long arg,
1207 		enum nd_ioctl_mode mode)
1208 
1209 {
1210 	struct nvdimm_bus *nvdimm_bus, *found = NULL;
1211 	long id = (long) file->private_data;
1212 	struct nvdimm *nvdimm = NULL;
1213 	int rc, ro;
1214 
1215 	ro = ((file->f_flags & O_ACCMODE) == O_RDONLY);
1216 	mutex_lock(&nvdimm_bus_list_mutex);
1217 	list_for_each_entry(nvdimm_bus, &nvdimm_bus_list, list) {
1218 		if (mode == DIMM_IOCTL) {
1219 			struct device *dev;
1220 
1221 			dev = device_find_child(&nvdimm_bus->dev,
1222 					file->private_data, match_dimm);
1223 			if (!dev)
1224 				continue;
1225 			nvdimm = to_nvdimm(dev);
1226 			found = nvdimm_bus;
1227 		} else if (nvdimm_bus->id == id) {
1228 			found = nvdimm_bus;
1229 		}
1230 
1231 		if (found) {
1232 			atomic_inc(&nvdimm_bus->ioctl_active);
1233 			break;
1234 		}
1235 	}
1236 	mutex_unlock(&nvdimm_bus_list_mutex);
1237 
1238 	if (!found)
1239 		return -ENXIO;
1240 
1241 	nvdimm_bus = found;
1242 	rc = __nd_ioctl(nvdimm_bus, nvdimm, ro, cmd, arg);
1243 
1244 	if (nvdimm)
1245 		put_device(&nvdimm->dev);
1246 	if (atomic_dec_and_test(&nvdimm_bus->ioctl_active))
1247 		wake_up(&nvdimm_bus->wait);
1248 
1249 	return rc;
1250 }
1251 
1252 static long bus_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
1253 {
1254 	return nd_ioctl(file, cmd, arg, BUS_IOCTL);
1255 }
1256 
1257 static long dimm_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
1258 {
1259 	return nd_ioctl(file, cmd, arg, DIMM_IOCTL);
1260 }
1261 
1262 static int nd_open(struct inode *inode, struct file *file)
1263 {
1264 	long minor = iminor(inode);
1265 
1266 	file->private_data = (void *) minor;
1267 	return 0;
1268 }
1269 
1270 static const struct file_operations nvdimm_bus_fops = {
1271 	.owner = THIS_MODULE,
1272 	.open = nd_open,
1273 	.unlocked_ioctl = bus_ioctl,
1274 	.compat_ioctl = compat_ptr_ioctl,
1275 	.llseek = noop_llseek,
1276 };
1277 
1278 static const struct file_operations nvdimm_fops = {
1279 	.owner = THIS_MODULE,
1280 	.open = nd_open,
1281 	.unlocked_ioctl = dimm_ioctl,
1282 	.compat_ioctl = compat_ptr_ioctl,
1283 	.llseek = noop_llseek,
1284 };
1285 
1286 int __init nvdimm_bus_init(void)
1287 {
1288 	int rc;
1289 
1290 	rc = bus_register(&nvdimm_bus_type);
1291 	if (rc)
1292 		return rc;
1293 
1294 	rc = register_chrdev(0, "ndctl", &nvdimm_bus_fops);
1295 	if (rc < 0)
1296 		goto err_bus_chrdev;
1297 	nvdimm_bus_major = rc;
1298 
1299 	rc = register_chrdev(0, "dimmctl", &nvdimm_fops);
1300 	if (rc < 0)
1301 		goto err_dimm_chrdev;
1302 	nvdimm_major = rc;
1303 
1304 	nd_class = class_create(THIS_MODULE, "nd");
1305 	if (IS_ERR(nd_class)) {
1306 		rc = PTR_ERR(nd_class);
1307 		goto err_class;
1308 	}
1309 
1310 	rc = driver_register(&nd_bus_driver.drv);
1311 	if (rc)
1312 		goto err_nd_bus;
1313 
1314 	return 0;
1315 
1316  err_nd_bus:
1317 	class_destroy(nd_class);
1318  err_class:
1319 	unregister_chrdev(nvdimm_major, "dimmctl");
1320  err_dimm_chrdev:
1321 	unregister_chrdev(nvdimm_bus_major, "ndctl");
1322  err_bus_chrdev:
1323 	bus_unregister(&nvdimm_bus_type);
1324 
1325 	return rc;
1326 }
1327 
1328 void nvdimm_bus_exit(void)
1329 {
1330 	driver_unregister(&nd_bus_driver.drv);
1331 	class_destroy(nd_class);
1332 	unregister_chrdev(nvdimm_bus_major, "ndctl");
1333 	unregister_chrdev(nvdimm_major, "dimmctl");
1334 	bus_unregister(&nvdimm_bus_type);
1335 	ida_destroy(&nd_ida);
1336 }
1337