2 * Copyright(c) 2013-2015 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 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
14 #include <linux/libnvdimm.h>
15 #include <linux/sched/mm.h>
16 #include <linux/vmalloc.h>
17 #include <linux/uaccess.h>
18 #include <linux/module.h>
19 #include <linux/blkdev.h>
20 #include <linux/fcntl.h>
21 #include <linux/async.h>
22 #include <linux/genhd.h>
23 #include <linux/ndctl.h>
24 #include <linux/sched.h>
25 #include <linux/slab.h>
35 static int nvdimm_bus_major;
36 static struct class *nd_class;
37 static DEFINE_IDA(nd_ida);
39 static int to_nd_device_type(struct device *dev)
42 return ND_DEVICE_DIMM;
43 else if (is_memory(dev))
44 return ND_DEVICE_REGION_PMEM;
45 else if (is_nd_blk(dev))
46 return ND_DEVICE_REGION_BLK;
47 else if (is_nd_dax(dev))
48 return ND_DEVICE_DAX_PMEM;
49 else if (is_nd_region(dev->parent))
50 return nd_region_to_nstype(to_nd_region(dev->parent));
55 static int nvdimm_bus_uevent(struct device *dev, struct kobj_uevent_env *env)
57 return add_uevent_var(env, "MODALIAS=" ND_DEVICE_MODALIAS_FMT,
58 to_nd_device_type(dev));
61 static struct module *to_bus_provider(struct device *dev)
63 /* pin bus providers while regions are enabled */
64 if (is_nd_region(dev)) {
65 struct nvdimm_bus *nvdimm_bus = walk_to_nvdimm_bus(dev);
67 return nvdimm_bus->nd_desc->module;
72 static void nvdimm_bus_probe_start(struct nvdimm_bus *nvdimm_bus)
74 nvdimm_bus_lock(&nvdimm_bus->dev);
75 nvdimm_bus->probe_active++;
76 nvdimm_bus_unlock(&nvdimm_bus->dev);
79 static void nvdimm_bus_probe_end(struct nvdimm_bus *nvdimm_bus)
81 nvdimm_bus_lock(&nvdimm_bus->dev);
82 if (--nvdimm_bus->probe_active == 0)
83 wake_up(&nvdimm_bus->probe_wait);
84 nvdimm_bus_unlock(&nvdimm_bus->dev);
87 static int nvdimm_bus_probe(struct device *dev)
89 struct nd_device_driver *nd_drv = to_nd_device_driver(dev->driver);
90 struct module *provider = to_bus_provider(dev);
91 struct nvdimm_bus *nvdimm_bus = walk_to_nvdimm_bus(dev);
94 if (!try_module_get(provider))
97 dev_dbg(&nvdimm_bus->dev, "START: %s.probe(%s)\n",
98 dev->driver->name, dev_name(dev));
100 nvdimm_bus_probe_start(nvdimm_bus);
101 rc = nd_drv->probe(dev);
103 nd_region_probe_success(nvdimm_bus, dev);
105 nd_region_disable(nvdimm_bus, dev);
106 nvdimm_bus_probe_end(nvdimm_bus);
108 dev_dbg(&nvdimm_bus->dev, "END: %s.probe(%s) = %d\n", dev->driver->name,
112 module_put(provider);
116 static int nvdimm_bus_remove(struct device *dev)
118 struct nd_device_driver *nd_drv = to_nd_device_driver(dev->driver);
119 struct module *provider = to_bus_provider(dev);
120 struct nvdimm_bus *nvdimm_bus = walk_to_nvdimm_bus(dev);
124 rc = nd_drv->remove(dev);
125 nd_region_disable(nvdimm_bus, dev);
127 dev_dbg(&nvdimm_bus->dev, "%s.remove(%s) = %d\n", dev->driver->name,
129 module_put(provider);
133 static void nvdimm_bus_shutdown(struct device *dev)
135 struct nvdimm_bus *nvdimm_bus = walk_to_nvdimm_bus(dev);
136 struct nd_device_driver *nd_drv = NULL;
139 nd_drv = to_nd_device_driver(dev->driver);
141 if (nd_drv && nd_drv->shutdown) {
142 nd_drv->shutdown(dev);
143 dev_dbg(&nvdimm_bus->dev, "%s.shutdown(%s)\n",
144 dev->driver->name, dev_name(dev));
148 void nd_device_notify(struct device *dev, enum nvdimm_event event)
152 struct nd_device_driver *nd_drv;
154 nd_drv = to_nd_device_driver(dev->driver);
156 nd_drv->notify(dev, event);
160 EXPORT_SYMBOL(nd_device_notify);
162 void nvdimm_region_notify(struct nd_region *nd_region, enum nvdimm_event event)
164 struct nvdimm_bus *nvdimm_bus = walk_to_nvdimm_bus(&nd_region->dev);
169 /* caller is responsible for holding a reference on the device */
170 nd_device_notify(&nd_region->dev, event);
172 EXPORT_SYMBOL_GPL(nvdimm_region_notify);
174 struct clear_badblocks_context {
175 resource_size_t phys, cleared;
178 static int nvdimm_clear_badblocks_region(struct device *dev, void *data)
180 struct clear_badblocks_context *ctx = data;
181 struct nd_region *nd_region;
182 resource_size_t ndr_end;
185 /* make sure device is a region */
186 if (!is_nd_pmem(dev))
189 nd_region = to_nd_region(dev);
190 ndr_end = nd_region->ndr_start + nd_region->ndr_size - 1;
192 /* make sure we are in the region */
193 if (ctx->phys < nd_region->ndr_start
194 || (ctx->phys + ctx->cleared) > ndr_end)
197 sector = (ctx->phys - nd_region->ndr_start) / 512;
198 badblocks_clear(&nd_region->bb, sector, ctx->cleared / 512);
200 if (nd_region->bb_state)
201 sysfs_notify_dirent(nd_region->bb_state);
206 static void nvdimm_clear_badblocks_regions(struct nvdimm_bus *nvdimm_bus,
207 phys_addr_t phys, u64 cleared)
209 struct clear_badblocks_context ctx = {
214 device_for_each_child(&nvdimm_bus->dev, &ctx,
215 nvdimm_clear_badblocks_region);
218 static void nvdimm_account_cleared_poison(struct nvdimm_bus *nvdimm_bus,
219 phys_addr_t phys, u64 cleared)
222 badrange_forget(&nvdimm_bus->badrange, phys, cleared);
224 if (cleared > 0 && cleared / 512)
225 nvdimm_clear_badblocks_regions(nvdimm_bus, phys, cleared);
228 long nvdimm_clear_poison(struct device *dev, phys_addr_t phys,
231 struct nvdimm_bus *nvdimm_bus = walk_to_nvdimm_bus(dev);
232 struct nvdimm_bus_descriptor *nd_desc;
233 struct nd_cmd_clear_error clear_err;
234 struct nd_cmd_ars_cap ars_cap;
235 u32 clear_err_unit, mask;
236 unsigned int noio_flag;
242 nd_desc = nvdimm_bus->nd_desc;
244 * if ndctl does not exist, it's PMEM_LEGACY and
245 * we want to just pretend everything is handled.
250 memset(&ars_cap, 0, sizeof(ars_cap));
251 ars_cap.address = phys;
252 ars_cap.length = len;
253 noio_flag = memalloc_noio_save();
254 rc = nd_desc->ndctl(nd_desc, NULL, ND_CMD_ARS_CAP, &ars_cap,
255 sizeof(ars_cap), &cmd_rc);
256 memalloc_noio_restore(noio_flag);
261 clear_err_unit = ars_cap.clear_err_unit;
262 if (!clear_err_unit || !is_power_of_2(clear_err_unit))
265 mask = clear_err_unit - 1;
266 if ((phys | len) & mask)
268 memset(&clear_err, 0, sizeof(clear_err));
269 clear_err.address = phys;
270 clear_err.length = len;
271 noio_flag = memalloc_noio_save();
272 rc = nd_desc->ndctl(nd_desc, NULL, ND_CMD_CLEAR_ERROR, &clear_err,
273 sizeof(clear_err), &cmd_rc);
274 memalloc_noio_restore(noio_flag);
280 nvdimm_account_cleared_poison(nvdimm_bus, phys, clear_err.cleared);
282 return clear_err.cleared;
284 EXPORT_SYMBOL_GPL(nvdimm_clear_poison);
286 static int nvdimm_bus_match(struct device *dev, struct device_driver *drv);
288 static struct bus_type nvdimm_bus_type = {
290 .uevent = nvdimm_bus_uevent,
291 .match = nvdimm_bus_match,
292 .probe = nvdimm_bus_probe,
293 .remove = nvdimm_bus_remove,
294 .shutdown = nvdimm_bus_shutdown,
297 static void nvdimm_bus_release(struct device *dev)
299 struct nvdimm_bus *nvdimm_bus;
301 nvdimm_bus = container_of(dev, struct nvdimm_bus, dev);
302 ida_simple_remove(&nd_ida, nvdimm_bus->id);
306 static bool is_nvdimm_bus(struct device *dev)
308 return dev->release == nvdimm_bus_release;
311 struct nvdimm_bus *walk_to_nvdimm_bus(struct device *nd_dev)
315 for (dev = nd_dev; dev; dev = dev->parent)
316 if (is_nvdimm_bus(dev))
318 dev_WARN_ONCE(nd_dev, !dev, "invalid dev, not on nd bus\n");
320 return to_nvdimm_bus(dev);
324 struct nvdimm_bus *to_nvdimm_bus(struct device *dev)
326 struct nvdimm_bus *nvdimm_bus;
328 nvdimm_bus = container_of(dev, struct nvdimm_bus, dev);
329 WARN_ON(!is_nvdimm_bus(dev));
332 EXPORT_SYMBOL_GPL(to_nvdimm_bus);
334 struct nvdimm_bus *nvdimm_to_bus(struct nvdimm *nvdimm)
336 return to_nvdimm_bus(nvdimm->dev.parent);
338 EXPORT_SYMBOL_GPL(nvdimm_to_bus);
340 struct nvdimm_bus *nvdimm_bus_register(struct device *parent,
341 struct nvdimm_bus_descriptor *nd_desc)
343 struct nvdimm_bus *nvdimm_bus;
346 nvdimm_bus = kzalloc(sizeof(*nvdimm_bus), GFP_KERNEL);
349 INIT_LIST_HEAD(&nvdimm_bus->list);
350 INIT_LIST_HEAD(&nvdimm_bus->mapping_list);
351 init_waitqueue_head(&nvdimm_bus->probe_wait);
352 nvdimm_bus->id = ida_simple_get(&nd_ida, 0, 0, GFP_KERNEL);
353 if (nvdimm_bus->id < 0) {
357 mutex_init(&nvdimm_bus->reconfig_mutex);
358 badrange_init(&nvdimm_bus->badrange);
359 nvdimm_bus->nd_desc = nd_desc;
360 nvdimm_bus->dev.parent = parent;
361 nvdimm_bus->dev.release = nvdimm_bus_release;
362 nvdimm_bus->dev.groups = nd_desc->attr_groups;
363 nvdimm_bus->dev.bus = &nvdimm_bus_type;
364 nvdimm_bus->dev.of_node = nd_desc->of_node;
365 dev_set_name(&nvdimm_bus->dev, "ndbus%d", nvdimm_bus->id);
366 rc = device_register(&nvdimm_bus->dev);
368 dev_dbg(&nvdimm_bus->dev, "registration failed: %d\n", rc);
374 put_device(&nvdimm_bus->dev);
377 EXPORT_SYMBOL_GPL(nvdimm_bus_register);
379 void nvdimm_bus_unregister(struct nvdimm_bus *nvdimm_bus)
383 device_unregister(&nvdimm_bus->dev);
385 EXPORT_SYMBOL_GPL(nvdimm_bus_unregister);
387 static int child_unregister(struct device *dev, void *data)
390 * the singular ndctl class device per bus needs to be
391 * "device_destroy"ed, so skip it here
393 * i.e. remove classless children
398 if (is_nvdimm(dev)) {
399 struct nvdimm *nvdimm = to_nvdimm(dev);
400 bool dev_put = false;
402 /* We are shutting down. Make state frozen artificially. */
403 nvdimm_bus_lock(dev);
404 nvdimm->sec.state = NVDIMM_SECURITY_FROZEN;
405 if (test_and_clear_bit(NDD_WORK_PENDING, &nvdimm->flags))
407 nvdimm_bus_unlock(dev);
408 cancel_delayed_work_sync(&nvdimm->dwork);
412 nd_device_unregister(dev, ND_SYNC);
417 static void free_badrange_list(struct list_head *badrange_list)
419 struct badrange_entry *bre, *next;
421 list_for_each_entry_safe(bre, next, badrange_list, list) {
422 list_del(&bre->list);
425 list_del_init(badrange_list);
428 static int nd_bus_remove(struct device *dev)
430 struct nvdimm_bus *nvdimm_bus = to_nvdimm_bus(dev);
432 mutex_lock(&nvdimm_bus_list_mutex);
433 list_del_init(&nvdimm_bus->list);
434 mutex_unlock(&nvdimm_bus_list_mutex);
437 device_for_each_child(&nvdimm_bus->dev, NULL, child_unregister);
439 spin_lock(&nvdimm_bus->badrange.lock);
440 free_badrange_list(&nvdimm_bus->badrange.list);
441 spin_unlock(&nvdimm_bus->badrange.lock);
443 nvdimm_bus_destroy_ndctl(nvdimm_bus);
448 static int nd_bus_probe(struct device *dev)
450 struct nvdimm_bus *nvdimm_bus = to_nvdimm_bus(dev);
453 rc = nvdimm_bus_create_ndctl(nvdimm_bus);
457 mutex_lock(&nvdimm_bus_list_mutex);
458 list_add_tail(&nvdimm_bus->list, &nvdimm_bus_list);
459 mutex_unlock(&nvdimm_bus_list_mutex);
461 /* enable bus provider attributes to look up their local context */
462 dev_set_drvdata(dev, nvdimm_bus->nd_desc);
467 static struct nd_device_driver nd_bus_driver = {
468 .probe = nd_bus_probe,
469 .remove = nd_bus_remove,
472 .suppress_bind_attrs = true,
473 .bus = &nvdimm_bus_type,
474 .owner = THIS_MODULE,
475 .mod_name = KBUILD_MODNAME,
479 static int nvdimm_bus_match(struct device *dev, struct device_driver *drv)
481 struct nd_device_driver *nd_drv = to_nd_device_driver(drv);
483 if (is_nvdimm_bus(dev) && nd_drv == &nd_bus_driver)
486 return !!test_bit(to_nd_device_type(dev), &nd_drv->type);
489 static ASYNC_DOMAIN_EXCLUSIVE(nd_async_domain);
491 void nd_synchronize(void)
493 async_synchronize_full_domain(&nd_async_domain);
495 EXPORT_SYMBOL_GPL(nd_synchronize);
497 static void nd_async_device_register(void *d, async_cookie_t cookie)
499 struct device *dev = d;
501 if (device_add(dev) != 0) {
502 dev_err(dev, "%s: failed\n", __func__);
507 put_device(dev->parent);
510 static void nd_async_device_unregister(void *d, async_cookie_t cookie)
512 struct device *dev = d;
514 /* flush bus operations before delete */
515 nvdimm_bus_lock(dev);
516 nvdimm_bus_unlock(dev);
518 device_unregister(dev);
522 void __nd_device_register(struct device *dev)
528 * Ensure that region devices always have their NUMA node set as
529 * early as possible. This way we are able to make certain that
530 * any memory associated with the creation and the creation
531 * itself of the region is associated with the correct node.
533 if (is_nd_region(dev))
534 set_dev_node(dev, to_nd_region(dev)->numa_node);
536 dev->bus = &nvdimm_bus_type;
538 get_device(dev->parent);
540 async_schedule_domain(nd_async_device_register, dev,
544 void nd_device_register(struct device *dev)
546 device_initialize(dev);
547 __nd_device_register(dev);
549 EXPORT_SYMBOL(nd_device_register);
551 void nd_device_unregister(struct device *dev, enum nd_async_mode mode)
556 async_schedule_domain(nd_async_device_unregister, dev,
561 device_unregister(dev);
565 EXPORT_SYMBOL(nd_device_unregister);
568 * __nd_driver_register() - register a region or a namespace driver
569 * @nd_drv: driver to register
570 * @owner: automatically set by nd_driver_register() macro
571 * @mod_name: automatically set by nd_driver_register() macro
573 int __nd_driver_register(struct nd_device_driver *nd_drv, struct module *owner,
574 const char *mod_name)
576 struct device_driver *drv = &nd_drv->drv;
579 pr_debug("driver type bitmask not set (%pf)\n",
580 __builtin_return_address(0));
584 if (!nd_drv->probe) {
585 pr_debug("%s ->probe() must be specified\n", mod_name);
589 drv->bus = &nvdimm_bus_type;
591 drv->mod_name = mod_name;
593 return driver_register(drv);
595 EXPORT_SYMBOL(__nd_driver_register);
597 int nvdimm_revalidate_disk(struct gendisk *disk)
599 struct device *dev = disk_to_dev(disk)->parent;
600 struct nd_region *nd_region = to_nd_region(dev->parent);
601 int disk_ro = get_disk_ro(disk);
604 * Upgrade to read-only if the region is read-only preserve as
605 * read-only if the disk is already read-only.
607 if (disk_ro || nd_region->ro == disk_ro)
610 dev_info(dev, "%s read-only, marking %s read-only\n",
611 dev_name(&nd_region->dev), disk->disk_name);
612 set_disk_ro(disk, 1);
617 EXPORT_SYMBOL(nvdimm_revalidate_disk);
619 static ssize_t modalias_show(struct device *dev, struct device_attribute *attr,
622 return sprintf(buf, ND_DEVICE_MODALIAS_FMT "\n",
623 to_nd_device_type(dev));
625 static DEVICE_ATTR_RO(modalias);
627 static ssize_t devtype_show(struct device *dev, struct device_attribute *attr,
630 return sprintf(buf, "%s\n", dev->type->name);
632 static DEVICE_ATTR_RO(devtype);
634 static struct attribute *nd_device_attributes[] = {
635 &dev_attr_modalias.attr,
636 &dev_attr_devtype.attr,
641 * nd_device_attribute_group - generic attributes for all devices on an nd bus
643 struct attribute_group nd_device_attribute_group = {
644 .attrs = nd_device_attributes,
646 EXPORT_SYMBOL_GPL(nd_device_attribute_group);
648 static ssize_t numa_node_show(struct device *dev,
649 struct device_attribute *attr, char *buf)
651 return sprintf(buf, "%d\n", dev_to_node(dev));
653 static DEVICE_ATTR_RO(numa_node);
655 static struct attribute *nd_numa_attributes[] = {
656 &dev_attr_numa_node.attr,
660 static umode_t nd_numa_attr_visible(struct kobject *kobj, struct attribute *a,
663 if (!IS_ENABLED(CONFIG_NUMA))
670 * nd_numa_attribute_group - NUMA attributes for all devices on an nd bus
672 struct attribute_group nd_numa_attribute_group = {
673 .attrs = nd_numa_attributes,
674 .is_visible = nd_numa_attr_visible,
676 EXPORT_SYMBOL_GPL(nd_numa_attribute_group);
678 int nvdimm_bus_create_ndctl(struct nvdimm_bus *nvdimm_bus)
680 dev_t devt = MKDEV(nvdimm_bus_major, nvdimm_bus->id);
683 dev = device_create(nd_class, &nvdimm_bus->dev, devt, nvdimm_bus,
684 "ndctl%d", nvdimm_bus->id);
687 dev_dbg(&nvdimm_bus->dev, "failed to register ndctl%d: %ld\n",
688 nvdimm_bus->id, PTR_ERR(dev));
689 return PTR_ERR_OR_ZERO(dev);
692 void nvdimm_bus_destroy_ndctl(struct nvdimm_bus *nvdimm_bus)
694 device_destroy(nd_class, MKDEV(nvdimm_bus_major, nvdimm_bus->id));
697 static const struct nd_cmd_desc __nd_cmd_dimm_descs[] = {
698 [ND_CMD_IMPLEMENTED] = { },
701 .out_sizes = { 4, 128, },
703 [ND_CMD_SMART_THRESHOLD] = {
705 .out_sizes = { 4, 8, },
707 [ND_CMD_DIMM_FLAGS] = {
709 .out_sizes = { 4, 4 },
711 [ND_CMD_GET_CONFIG_SIZE] = {
713 .out_sizes = { 4, 4, 4, },
715 [ND_CMD_GET_CONFIG_DATA] = {
717 .in_sizes = { 4, 4, },
719 .out_sizes = { 4, UINT_MAX, },
721 [ND_CMD_SET_CONFIG_DATA] = {
723 .in_sizes = { 4, 4, UINT_MAX, },
729 .in_sizes = { 4, 4, UINT_MAX, },
731 .out_sizes = { 4, 4, UINT_MAX, },
735 .in_sizes = { sizeof(struct nd_cmd_pkg), UINT_MAX, },
737 .out_sizes = { UINT_MAX, },
741 const struct nd_cmd_desc *nd_cmd_dimm_desc(int cmd)
743 if (cmd < ARRAY_SIZE(__nd_cmd_dimm_descs))
744 return &__nd_cmd_dimm_descs[cmd];
747 EXPORT_SYMBOL_GPL(nd_cmd_dimm_desc);
749 static const struct nd_cmd_desc __nd_cmd_bus_descs[] = {
750 [ND_CMD_IMPLEMENTED] = { },
753 .in_sizes = { 8, 8, },
755 .out_sizes = { 4, 4, 4, 4, },
757 [ND_CMD_ARS_START] = {
759 .in_sizes = { 8, 8, 2, 1, 5, },
761 .out_sizes = { 4, 4, },
763 [ND_CMD_ARS_STATUS] = {
765 .out_sizes = { 4, 4, UINT_MAX, },
767 [ND_CMD_CLEAR_ERROR] = {
769 .in_sizes = { 8, 8, },
771 .out_sizes = { 4, 4, 8, },
775 .in_sizes = { sizeof(struct nd_cmd_pkg), UINT_MAX, },
777 .out_sizes = { UINT_MAX, },
781 const struct nd_cmd_desc *nd_cmd_bus_desc(int cmd)
783 if (cmd < ARRAY_SIZE(__nd_cmd_bus_descs))
784 return &__nd_cmd_bus_descs[cmd];
787 EXPORT_SYMBOL_GPL(nd_cmd_bus_desc);
789 u32 nd_cmd_in_size(struct nvdimm *nvdimm, int cmd,
790 const struct nd_cmd_desc *desc, int idx, void *buf)
792 if (idx >= desc->in_num)
795 if (desc->in_sizes[idx] < UINT_MAX)
796 return desc->in_sizes[idx];
798 if (nvdimm && cmd == ND_CMD_SET_CONFIG_DATA && idx == 2) {
799 struct nd_cmd_set_config_hdr *hdr = buf;
801 return hdr->in_length;
802 } else if (nvdimm && cmd == ND_CMD_VENDOR && idx == 2) {
803 struct nd_cmd_vendor_hdr *hdr = buf;
805 return hdr->in_length;
806 } else if (cmd == ND_CMD_CALL) {
807 struct nd_cmd_pkg *pkg = buf;
809 return pkg->nd_size_in;
814 EXPORT_SYMBOL_GPL(nd_cmd_in_size);
816 u32 nd_cmd_out_size(struct nvdimm *nvdimm, int cmd,
817 const struct nd_cmd_desc *desc, int idx, const u32 *in_field,
818 const u32 *out_field, unsigned long remainder)
820 if (idx >= desc->out_num)
823 if (desc->out_sizes[idx] < UINT_MAX)
824 return desc->out_sizes[idx];
826 if (nvdimm && cmd == ND_CMD_GET_CONFIG_DATA && idx == 1)
828 else if (nvdimm && cmd == ND_CMD_VENDOR && idx == 2)
830 else if (!nvdimm && cmd == ND_CMD_ARS_STATUS && idx == 2) {
832 * Per table 9-276 ARS Data in ACPI 6.1, out_field[1] is
833 * "Size of Output Buffer in bytes, including this
836 if (out_field[1] < 4)
839 * ACPI 6.1 is ambiguous if 'status' is included in the
840 * output size. If we encounter an output size that
841 * overshoots the remainder by 4 bytes, assume it was
842 * including 'status'.
844 if (out_field[1] - 4 == remainder)
846 return out_field[1] - 8;
847 } else if (cmd == ND_CMD_CALL) {
848 struct nd_cmd_pkg *pkg = (struct nd_cmd_pkg *) in_field;
850 return pkg->nd_size_out;
856 EXPORT_SYMBOL_GPL(nd_cmd_out_size);
858 void wait_nvdimm_bus_probe_idle(struct device *dev)
860 struct nvdimm_bus *nvdimm_bus = walk_to_nvdimm_bus(dev);
863 if (nvdimm_bus->probe_active == 0)
865 nvdimm_bus_unlock(&nvdimm_bus->dev);
866 wait_event(nvdimm_bus->probe_wait,
867 nvdimm_bus->probe_active == 0);
868 nvdimm_bus_lock(&nvdimm_bus->dev);
872 static int nd_pmem_forget_poison_check(struct device *dev, void *data)
874 struct nd_cmd_clear_error *clear_err =
875 (struct nd_cmd_clear_error *)data;
876 struct nd_btt *nd_btt = is_nd_btt(dev) ? to_nd_btt(dev) : NULL;
877 struct nd_pfn *nd_pfn = is_nd_pfn(dev) ? to_nd_pfn(dev) : NULL;
878 struct nd_dax *nd_dax = is_nd_dax(dev) ? to_nd_dax(dev) : NULL;
879 struct nd_namespace_common *ndns = NULL;
880 struct nd_namespace_io *nsio;
881 resource_size_t offset = 0, end_trunc = 0, start, end, pstart, pend;
883 if (nd_dax || !dev->driver)
886 start = clear_err->address;
887 end = clear_err->address + clear_err->cleared - 1;
889 if (nd_btt || nd_pfn || nd_dax) {
895 ndns = nd_dax->nd_pfn.ndns;
902 nsio = to_nd_namespace_io(&ndns->dev);
903 pstart = nsio->res.start + offset;
904 pend = nsio->res.end - end_trunc;
906 if ((pstart >= start) && (pend <= end))
913 static int nd_ns_forget_poison_check(struct device *dev, void *data)
915 return device_for_each_child(dev, data, nd_pmem_forget_poison_check);
918 /* set_config requires an idle interleave set */
919 static int nd_cmd_clear_to_send(struct nvdimm_bus *nvdimm_bus,
920 struct nvdimm *nvdimm, unsigned int cmd, void *data)
922 struct nvdimm_bus_descriptor *nd_desc = nvdimm_bus->nd_desc;
924 /* ask the bus provider if it would like to block this request */
925 if (nd_desc->clear_to_send) {
926 int rc = nd_desc->clear_to_send(nd_desc, nvdimm, cmd, data);
932 /* require clear error to go through the pmem driver */
933 if (!nvdimm && cmd == ND_CMD_CLEAR_ERROR)
934 return device_for_each_child(&nvdimm_bus->dev, data,
935 nd_ns_forget_poison_check);
937 if (!nvdimm || cmd != ND_CMD_SET_CONFIG_DATA)
940 /* prevent label manipulation while the kernel owns label updates */
941 wait_nvdimm_bus_probe_idle(&nvdimm_bus->dev);
942 if (atomic_read(&nvdimm->busy))
947 static int __nd_ioctl(struct nvdimm_bus *nvdimm_bus, struct nvdimm *nvdimm,
948 int read_only, unsigned int ioctl_cmd, unsigned long arg)
950 struct nvdimm_bus_descriptor *nd_desc = nvdimm_bus->nd_desc;
951 static char out_env[ND_CMD_MAX_ENVELOPE];
952 static char in_env[ND_CMD_MAX_ENVELOPE];
953 const struct nd_cmd_desc *desc = NULL;
954 unsigned int cmd = _IOC_NR(ioctl_cmd);
955 struct device *dev = &nvdimm_bus->dev;
956 void __user *p = (void __user *) arg;
957 const char *cmd_name, *dimm_name;
958 u32 in_len = 0, out_len = 0;
959 unsigned int func = cmd;
960 unsigned long cmd_mask;
961 struct nd_cmd_pkg pkg;
967 desc = nd_cmd_dimm_desc(cmd);
968 cmd_name = nvdimm_cmd_name(cmd);
969 cmd_mask = nvdimm->cmd_mask;
970 dimm_name = dev_name(&nvdimm->dev);
972 desc = nd_cmd_bus_desc(cmd);
973 cmd_name = nvdimm_bus_cmd_name(cmd);
974 cmd_mask = nd_desc->cmd_mask;
978 if (cmd == ND_CMD_CALL) {
979 if (copy_from_user(&pkg, p, sizeof(pkg)))
983 if (!desc || (desc->out_num + desc->in_num == 0) ||
984 !test_bit(cmd, &cmd_mask))
987 /* fail write commands (when read-only) */
991 case ND_CMD_SET_CONFIG_DATA:
992 case ND_CMD_ARS_START:
993 case ND_CMD_CLEAR_ERROR:
995 dev_dbg(&nvdimm_bus->dev, "'%s' command while read-only.\n",
996 nvdimm ? nvdimm_cmd_name(cmd)
997 : nvdimm_bus_cmd_name(cmd));
1003 /* process an input envelope */
1004 for (i = 0; i < desc->in_num; i++) {
1007 in_size = nd_cmd_in_size(nvdimm, cmd, desc, i, in_env);
1008 if (in_size == UINT_MAX) {
1009 dev_err(dev, "%s:%s unknown input size cmd: %s field: %d\n",
1010 __func__, dimm_name, cmd_name, i);
1013 if (in_len < sizeof(in_env))
1014 copy = min_t(u32, sizeof(in_env) - in_len, in_size);
1017 if (copy && copy_from_user(&in_env[in_len], p + in_len, copy))
1022 if (cmd == ND_CMD_CALL) {
1023 func = pkg.nd_command;
1024 dev_dbg(dev, "%s, idx: %llu, in: %u, out: %u, len %llu\n",
1025 dimm_name, pkg.nd_command,
1026 in_len, out_len, buf_len);
1029 /* process an output envelope */
1030 for (i = 0; i < desc->out_num; i++) {
1031 u32 out_size = nd_cmd_out_size(nvdimm, cmd, desc, i,
1032 (u32 *) in_env, (u32 *) out_env, 0);
1035 if (out_size == UINT_MAX) {
1036 dev_dbg(dev, "%s unknown output size cmd: %s field: %d\n",
1037 dimm_name, cmd_name, i);
1040 if (out_len < sizeof(out_env))
1041 copy = min_t(u32, sizeof(out_env) - out_len, out_size);
1044 if (copy && copy_from_user(&out_env[out_len],
1045 p + in_len + out_len, copy))
1047 out_len += out_size;
1050 buf_len = (u64) out_len + (u64) in_len;
1051 if (buf_len > ND_IOCTL_MAX_BUFLEN) {
1052 dev_dbg(dev, "%s cmd: %s buf_len: %llu > %d\n", dimm_name,
1053 cmd_name, buf_len, ND_IOCTL_MAX_BUFLEN);
1057 buf = vmalloc(buf_len);
1061 if (copy_from_user(buf, p, buf_len)) {
1066 nvdimm_bus_lock(&nvdimm_bus->dev);
1067 rc = nd_cmd_clear_to_send(nvdimm_bus, nvdimm, func, buf);
1071 rc = nd_desc->ndctl(nd_desc, nvdimm, cmd, buf, buf_len, &cmd_rc);
1075 if (!nvdimm && cmd == ND_CMD_CLEAR_ERROR && cmd_rc >= 0) {
1076 struct nd_cmd_clear_error *clear_err = buf;
1078 nvdimm_account_cleared_poison(nvdimm_bus, clear_err->address,
1079 clear_err->cleared);
1081 nvdimm_bus_unlock(&nvdimm_bus->dev);
1083 if (copy_to_user(p, buf, buf_len))
1090 nvdimm_bus_unlock(&nvdimm_bus->dev);
1096 static long nd_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
1098 long id = (long) file->private_data;
1099 int rc = -ENXIO, ro;
1100 struct nvdimm_bus *nvdimm_bus;
1102 ro = ((file->f_flags & O_ACCMODE) == O_RDONLY);
1103 mutex_lock(&nvdimm_bus_list_mutex);
1104 list_for_each_entry(nvdimm_bus, &nvdimm_bus_list, list) {
1105 if (nvdimm_bus->id == id) {
1106 rc = __nd_ioctl(nvdimm_bus, NULL, ro, cmd, arg);
1110 mutex_unlock(&nvdimm_bus_list_mutex);
1115 static int match_dimm(struct device *dev, void *data)
1117 long id = (long) data;
1119 if (is_nvdimm(dev)) {
1120 struct nvdimm *nvdimm = to_nvdimm(dev);
1122 return nvdimm->id == id;
1128 static long nvdimm_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
1130 int rc = -ENXIO, ro;
1131 struct nvdimm_bus *nvdimm_bus;
1133 ro = ((file->f_flags & O_ACCMODE) == O_RDONLY);
1134 mutex_lock(&nvdimm_bus_list_mutex);
1135 list_for_each_entry(nvdimm_bus, &nvdimm_bus_list, list) {
1136 struct device *dev = device_find_child(&nvdimm_bus->dev,
1137 file->private_data, match_dimm);
1138 struct nvdimm *nvdimm;
1143 nvdimm = to_nvdimm(dev);
1144 rc = __nd_ioctl(nvdimm_bus, nvdimm, ro, cmd, arg);
1148 mutex_unlock(&nvdimm_bus_list_mutex);
1153 static int nd_open(struct inode *inode, struct file *file)
1155 long minor = iminor(inode);
1157 file->private_data = (void *) minor;
1161 static const struct file_operations nvdimm_bus_fops = {
1162 .owner = THIS_MODULE,
1164 .unlocked_ioctl = nd_ioctl,
1165 .compat_ioctl = nd_ioctl,
1166 .llseek = noop_llseek,
1169 static const struct file_operations nvdimm_fops = {
1170 .owner = THIS_MODULE,
1172 .unlocked_ioctl = nvdimm_ioctl,
1173 .compat_ioctl = nvdimm_ioctl,
1174 .llseek = noop_llseek,
1177 int __init nvdimm_bus_init(void)
1181 rc = bus_register(&nvdimm_bus_type);
1185 rc = register_chrdev(0, "ndctl", &nvdimm_bus_fops);
1187 goto err_bus_chrdev;
1188 nvdimm_bus_major = rc;
1190 rc = register_chrdev(0, "dimmctl", &nvdimm_fops);
1192 goto err_dimm_chrdev;
1195 nd_class = class_create(THIS_MODULE, "nd");
1196 if (IS_ERR(nd_class)) {
1197 rc = PTR_ERR(nd_class);
1201 rc = driver_register(&nd_bus_driver.drv);
1208 class_destroy(nd_class);
1210 unregister_chrdev(nvdimm_major, "dimmctl");
1212 unregister_chrdev(nvdimm_bus_major, "ndctl");
1214 bus_unregister(&nvdimm_bus_type);
1219 void nvdimm_bus_exit(void)
1221 driver_unregister(&nd_bus_driver.drv);
1222 class_destroy(nd_class);
1223 unregister_chrdev(nvdimm_bus_major, "ndctl");
1224 unregister_chrdev(nvdimm_major, "dimmctl");
1225 bus_unregister(&nvdimm_bus_type);
1226 ida_destroy(&nd_ida);