blob: 0392eb8a0deae995d1a3d6e5cc3c49207c0d99d6 [file] [log] [blame]
Dan Williams45def222015-04-26 19:26:48 -04001/*
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
Dan Williams62232e452015-06-08 14:27:06 -040014#include <linux/vmalloc.h>
Dan Williams45def222015-04-26 19:26:48 -040015#include <linux/uaccess.h>
Dan Williams3d880022015-05-31 15:02:11 -040016#include <linux/module.h>
Dan Williams8c2f7e82015-06-25 04:20:04 -040017#include <linux/blkdev.h>
Dan Williams45def222015-04-26 19:26:48 -040018#include <linux/fcntl.h>
Dan Williamse6dfb2d2015-04-25 03:56:17 -040019#include <linux/async.h>
Dan Williams8c2f7e82015-06-25 04:20:04 -040020#include <linux/genhd.h>
Dan Williams62232e452015-06-08 14:27:06 -040021#include <linux/ndctl.h>
Dan Williams4d88a972015-05-31 14:41:48 -040022#include <linux/sched.h>
Dan Williams45def222015-04-26 19:26:48 -040023#include <linux/slab.h>
24#include <linux/fs.h>
25#include <linux/io.h>
Dan Williams62232e452015-06-08 14:27:06 -040026#include <linux/mm.h>
Dan Williams4d88a972015-05-31 14:41:48 -040027#include <linux/nd.h>
Dan Williams45def222015-04-26 19:26:48 -040028#include "nd-core.h"
Dan Williams4d88a972015-05-31 14:41:48 -040029#include "nd.h"
Dan Williams45def222015-04-26 19:26:48 -040030
Dan Williams62232e452015-06-08 14:27:06 -040031int nvdimm_major;
Dan Williams45def222015-04-26 19:26:48 -040032static int nvdimm_bus_major;
33static struct class *nd_class;
Dan Williams18515942016-07-22 23:46:08 -070034static DEFINE_IDA(nd_ida);
Dan Williams45def222015-04-26 19:26:48 -040035
Dan Williams4d88a972015-05-31 14:41:48 -040036static int to_nd_device_type(struct device *dev)
37{
38 if (is_nvdimm(dev))
39 return ND_DEVICE_DIMM;
Dan Williams3d880022015-05-31 15:02:11 -040040 else if (is_nd_pmem(dev))
41 return ND_DEVICE_REGION_PMEM;
42 else if (is_nd_blk(dev))
43 return ND_DEVICE_REGION_BLK;
Dan Williamscd034122016-03-11 10:15:36 -080044 else if (is_nd_dax(dev))
45 return ND_DEVICE_DAX_PMEM;
Dan Williams3d880022015-05-31 15:02:11 -040046 else if (is_nd_pmem(dev->parent) || is_nd_blk(dev->parent))
47 return nd_region_to_nstype(to_nd_region(dev->parent));
Dan Williams4d88a972015-05-31 14:41:48 -040048
49 return 0;
50}
51
52static int nvdimm_bus_uevent(struct device *dev, struct kobj_uevent_env *env)
53{
Toshi Kani41d7a6d2015-06-19 12:18:33 -060054 /*
55 * Ensure that region devices always have their numa node set as
56 * early as possible.
57 */
58 if (is_nd_pmem(dev) || is_nd_blk(dev))
59 set_dev_node(dev, to_nd_region(dev)->numa_node);
Dan Williams4d88a972015-05-31 14:41:48 -040060 return add_uevent_var(env, "MODALIAS=" ND_DEVICE_MODALIAS_FMT,
61 to_nd_device_type(dev));
62}
63
Dan Williams3d880022015-05-31 15:02:11 -040064static struct module *to_bus_provider(struct device *dev)
65{
66 /* pin bus providers while regions are enabled */
67 if (is_nd_pmem(dev) || is_nd_blk(dev)) {
68 struct nvdimm_bus *nvdimm_bus = walk_to_nvdimm_bus(dev);
69
Dan Williamsbc9775d2016-07-21 20:03:19 -070070 return nvdimm_bus->nd_desc->module;
Dan Williams3d880022015-05-31 15:02:11 -040071 }
72 return NULL;
73}
74
Dan Williamseaf96152015-05-01 13:11:27 -040075static void nvdimm_bus_probe_start(struct nvdimm_bus *nvdimm_bus)
76{
77 nvdimm_bus_lock(&nvdimm_bus->dev);
78 nvdimm_bus->probe_active++;
79 nvdimm_bus_unlock(&nvdimm_bus->dev);
80}
81
82static void nvdimm_bus_probe_end(struct nvdimm_bus *nvdimm_bus)
83{
84 nvdimm_bus_lock(&nvdimm_bus->dev);
85 if (--nvdimm_bus->probe_active == 0)
86 wake_up(&nvdimm_bus->probe_wait);
87 nvdimm_bus_unlock(&nvdimm_bus->dev);
88}
89
Dan Williams4d88a972015-05-31 14:41:48 -040090static int nvdimm_bus_probe(struct device *dev)
91{
92 struct nd_device_driver *nd_drv = to_nd_device_driver(dev->driver);
Dan Williams3d880022015-05-31 15:02:11 -040093 struct module *provider = to_bus_provider(dev);
Dan Williams4d88a972015-05-31 14:41:48 -040094 struct nvdimm_bus *nvdimm_bus = walk_to_nvdimm_bus(dev);
95 int rc;
96
Dan Williams3d880022015-05-31 15:02:11 -040097 if (!try_module_get(provider))
98 return -ENXIO;
99
Dan Williamseaf96152015-05-01 13:11:27 -0400100 nvdimm_bus_probe_start(nvdimm_bus);
Dan Williams4d88a972015-05-31 14:41:48 -0400101 rc = nd_drv->probe(dev);
Dan Williamseaf96152015-05-01 13:11:27 -0400102 if (rc == 0)
103 nd_region_probe_success(nvdimm_bus, dev);
Dan Williamsbf9bccc2015-06-17 17:14:46 -0400104 else
105 nd_region_disable(nvdimm_bus, dev);
Dan Williamseaf96152015-05-01 13:11:27 -0400106 nvdimm_bus_probe_end(nvdimm_bus);
107
Dan Williams4d88a972015-05-31 14:41:48 -0400108 dev_dbg(&nvdimm_bus->dev, "%s.probe(%s) = %d\n", dev->driver->name,
109 dev_name(dev), rc);
Dan Williams8c2f7e82015-06-25 04:20:04 -0400110
Dan Williams3d880022015-05-31 15:02:11 -0400111 if (rc != 0)
112 module_put(provider);
Dan Williams4d88a972015-05-31 14:41:48 -0400113 return rc;
114}
115
116static int nvdimm_bus_remove(struct device *dev)
117{
118 struct nd_device_driver *nd_drv = to_nd_device_driver(dev->driver);
Dan Williams3d880022015-05-31 15:02:11 -0400119 struct module *provider = to_bus_provider(dev);
Dan Williams4d88a972015-05-31 14:41:48 -0400120 struct nvdimm_bus *nvdimm_bus = walk_to_nvdimm_bus(dev);
Dan Williams6cf9c5b2016-05-18 09:13:13 -0700121 int rc = 0;
Dan Williams4d88a972015-05-31 14:41:48 -0400122
Dan Williams6cf9c5b2016-05-18 09:13:13 -0700123 if (nd_drv->remove)
124 rc = nd_drv->remove(dev);
Dan Williamseaf96152015-05-01 13:11:27 -0400125 nd_region_disable(nvdimm_bus, dev);
126
Dan Williams4d88a972015-05-31 14:41:48 -0400127 dev_dbg(&nvdimm_bus->dev, "%s.remove(%s) = %d\n", dev->driver->name,
128 dev_name(dev), rc);
Dan Williams3d880022015-05-31 15:02:11 -0400129 module_put(provider);
Dan Williams4d88a972015-05-31 14:41:48 -0400130 return rc;
131}
132
Dan Williams476f8482016-07-09 00:12:52 -0700133static void nvdimm_bus_shutdown(struct device *dev)
134{
135 struct nvdimm_bus *nvdimm_bus = walk_to_nvdimm_bus(dev);
136 struct nd_device_driver *nd_drv = NULL;
137
138 if (dev->driver)
139 nd_drv = to_nd_device_driver(dev->driver);
140
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));
145 }
146}
147
Dan Williams71999462016-02-18 10:29:49 -0800148void nd_device_notify(struct device *dev, enum nvdimm_event event)
149{
150 device_lock(dev);
151 if (dev->driver) {
152 struct nd_device_driver *nd_drv;
153
154 nd_drv = to_nd_device_driver(dev->driver);
155 if (nd_drv->notify)
156 nd_drv->notify(dev, event);
157 }
158 device_unlock(dev);
159}
160EXPORT_SYMBOL(nd_device_notify);
161
162void nvdimm_region_notify(struct nd_region *nd_region, enum nvdimm_event event)
163{
164 struct nvdimm_bus *nvdimm_bus = walk_to_nvdimm_bus(&nd_region->dev);
165
166 if (!nvdimm_bus)
167 return;
168
169 /* caller is responsible for holding a reference on the device */
170 nd_device_notify(&nd_region->dev, event);
171}
172EXPORT_SYMBOL_GPL(nvdimm_region_notify);
173
Dan Williams59e64732016-03-08 07:16:07 -0800174long nvdimm_clear_poison(struct device *dev, phys_addr_t phys,
175 unsigned int len)
176{
177 struct nvdimm_bus *nvdimm_bus = walk_to_nvdimm_bus(dev);
178 struct nvdimm_bus_descriptor *nd_desc;
179 struct nd_cmd_clear_error clear_err;
180 struct nd_cmd_ars_cap ars_cap;
181 u32 clear_err_unit, mask;
182 int cmd_rc, rc;
183
184 if (!nvdimm_bus)
185 return -ENXIO;
186
187 nd_desc = nvdimm_bus->nd_desc;
Dave Jiang1e8b8d92016-09-09 09:10:08 -0700188 /*
189 * if ndctl does not exist, it's PMEM_LEGACY and
190 * we want to just pretend everything is handled.
191 */
Dan Williams59e64732016-03-08 07:16:07 -0800192 if (!nd_desc->ndctl)
Dave Jiang1e8b8d92016-09-09 09:10:08 -0700193 return len;
Dan Williams59e64732016-03-08 07:16:07 -0800194
195 memset(&ars_cap, 0, sizeof(ars_cap));
196 ars_cap.address = phys;
197 ars_cap.length = len;
198 rc = nd_desc->ndctl(nd_desc, NULL, ND_CMD_ARS_CAP, &ars_cap,
199 sizeof(ars_cap), &cmd_rc);
200 if (rc < 0)
201 return rc;
202 if (cmd_rc < 0)
203 return cmd_rc;
204 clear_err_unit = ars_cap.clear_err_unit;
205 if (!clear_err_unit || !is_power_of_2(clear_err_unit))
206 return -ENXIO;
207
208 mask = clear_err_unit - 1;
209 if ((phys | len) & mask)
210 return -ENXIO;
211 memset(&clear_err, 0, sizeof(clear_err));
212 clear_err.address = phys;
213 clear_err.length = len;
214 rc = nd_desc->ndctl(nd_desc, NULL, ND_CMD_CLEAR_ERROR, &clear_err,
215 sizeof(clear_err), &cmd_rc);
216 if (rc < 0)
217 return rc;
218 if (cmd_rc < 0)
219 return cmd_rc;
Vishal Vermae0461142016-09-30 17:19:31 -0600220
Toshi Kanifa313fd2017-04-27 16:57:05 -0600221 if (clear_err.cleared > 0)
222 nvdimm_clear_from_poison_list(nvdimm_bus, phys,
223 clear_err.cleared);
224
Dan Williams59e64732016-03-08 07:16:07 -0800225 return clear_err.cleared;
226}
227EXPORT_SYMBOL_GPL(nvdimm_clear_poison);
228
Dan Williams18515942016-07-22 23:46:08 -0700229static int nvdimm_bus_match(struct device *dev, struct device_driver *drv);
230
Dan Williams4d88a972015-05-31 14:41:48 -0400231static struct bus_type nvdimm_bus_type = {
Dan Williamse6dfb2d2015-04-25 03:56:17 -0400232 .name = "nd",
Dan Williams4d88a972015-05-31 14:41:48 -0400233 .uevent = nvdimm_bus_uevent,
234 .match = nvdimm_bus_match,
235 .probe = nvdimm_bus_probe,
236 .remove = nvdimm_bus_remove,
Dan Williams476f8482016-07-09 00:12:52 -0700237 .shutdown = nvdimm_bus_shutdown,
Dan Williamse6dfb2d2015-04-25 03:56:17 -0400238};
239
Dan Williams18515942016-07-22 23:46:08 -0700240static void nvdimm_bus_release(struct device *dev)
241{
242 struct nvdimm_bus *nvdimm_bus;
243
244 nvdimm_bus = container_of(dev, struct nvdimm_bus, dev);
245 ida_simple_remove(&nd_ida, nvdimm_bus->id);
246 kfree(nvdimm_bus);
247}
248
249static bool is_nvdimm_bus(struct device *dev)
250{
251 return dev->release == nvdimm_bus_release;
252}
253
254struct nvdimm_bus *walk_to_nvdimm_bus(struct device *nd_dev)
255{
256 struct device *dev;
257
258 for (dev = nd_dev; dev; dev = dev->parent)
259 if (is_nvdimm_bus(dev))
260 break;
261 dev_WARN_ONCE(nd_dev, !dev, "invalid dev, not on nd bus\n");
262 if (dev)
263 return to_nvdimm_bus(dev);
264 return NULL;
265}
266
267struct nvdimm_bus *to_nvdimm_bus(struct device *dev)
268{
269 struct nvdimm_bus *nvdimm_bus;
270
271 nvdimm_bus = container_of(dev, struct nvdimm_bus, dev);
272 WARN_ON(!is_nvdimm_bus(dev));
273 return nvdimm_bus;
274}
275EXPORT_SYMBOL_GPL(to_nvdimm_bus);
276
277struct nvdimm_bus *nvdimm_bus_register(struct device *parent,
278 struct nvdimm_bus_descriptor *nd_desc)
279{
280 struct nvdimm_bus *nvdimm_bus;
281 int rc;
282
283 nvdimm_bus = kzalloc(sizeof(*nvdimm_bus), GFP_KERNEL);
284 if (!nvdimm_bus)
285 return NULL;
286 INIT_LIST_HEAD(&nvdimm_bus->list);
287 INIT_LIST_HEAD(&nvdimm_bus->mapping_list);
288 INIT_LIST_HEAD(&nvdimm_bus->poison_list);
289 init_waitqueue_head(&nvdimm_bus->probe_wait);
290 nvdimm_bus->id = ida_simple_get(&nd_ida, 0, 0, GFP_KERNEL);
291 mutex_init(&nvdimm_bus->reconfig_mutex);
292 if (nvdimm_bus->id < 0) {
293 kfree(nvdimm_bus);
294 return NULL;
295 }
296 nvdimm_bus->nd_desc = nd_desc;
297 nvdimm_bus->dev.parent = parent;
298 nvdimm_bus->dev.release = nvdimm_bus_release;
299 nvdimm_bus->dev.groups = nd_desc->attr_groups;
300 nvdimm_bus->dev.bus = &nvdimm_bus_type;
301 dev_set_name(&nvdimm_bus->dev, "ndbus%d", nvdimm_bus->id);
302 rc = device_register(&nvdimm_bus->dev);
303 if (rc) {
304 dev_dbg(&nvdimm_bus->dev, "registration failed: %d\n", rc);
305 goto err;
306 }
307
308 return nvdimm_bus;
309 err:
310 put_device(&nvdimm_bus->dev);
311 return NULL;
312}
313EXPORT_SYMBOL_GPL(nvdimm_bus_register);
314
315void nvdimm_bus_unregister(struct nvdimm_bus *nvdimm_bus)
316{
317 if (!nvdimm_bus)
318 return;
319 device_unregister(&nvdimm_bus->dev);
320}
321EXPORT_SYMBOL_GPL(nvdimm_bus_unregister);
322
323static int child_unregister(struct device *dev, void *data)
324{
325 /*
326 * the singular ndctl class device per bus needs to be
327 * "device_destroy"ed, so skip it here
328 *
329 * i.e. remove classless children
330 */
331 if (dev->class)
332 /* pass */;
333 else
334 nd_device_unregister(dev, ND_SYNC);
335 return 0;
336}
337
338static void free_poison_list(struct list_head *poison_list)
339{
340 struct nd_poison *pl, *next;
341
342 list_for_each_entry_safe(pl, next, poison_list, list) {
343 list_del(&pl->list);
344 kfree(pl);
345 }
346 list_del_init(poison_list);
347}
348
349static int nd_bus_remove(struct device *dev)
350{
351 struct nvdimm_bus *nvdimm_bus = to_nvdimm_bus(dev);
352
353 mutex_lock(&nvdimm_bus_list_mutex);
354 list_del_init(&nvdimm_bus->list);
355 mutex_unlock(&nvdimm_bus_list_mutex);
356
357 nd_synchronize();
358 device_for_each_child(&nvdimm_bus->dev, NULL, child_unregister);
359
360 nvdimm_bus_lock(&nvdimm_bus->dev);
361 free_poison_list(&nvdimm_bus->poison_list);
362 nvdimm_bus_unlock(&nvdimm_bus->dev);
363
364 nvdimm_bus_destroy_ndctl(nvdimm_bus);
365
366 return 0;
367}
368
369static int nd_bus_probe(struct device *dev)
370{
371 struct nvdimm_bus *nvdimm_bus = to_nvdimm_bus(dev);
372 int rc;
373
374 rc = nvdimm_bus_create_ndctl(nvdimm_bus);
375 if (rc)
376 return rc;
377
378 mutex_lock(&nvdimm_bus_list_mutex);
379 list_add_tail(&nvdimm_bus->list, &nvdimm_bus_list);
380 mutex_unlock(&nvdimm_bus_list_mutex);
381
382 /* enable bus provider attributes to look up their local context */
383 dev_set_drvdata(dev, nvdimm_bus->nd_desc);
384
385 return 0;
386}
387
388static struct nd_device_driver nd_bus_driver = {
389 .probe = nd_bus_probe,
390 .remove = nd_bus_remove,
391 .drv = {
392 .name = "nd_bus",
393 .suppress_bind_attrs = true,
394 .bus = &nvdimm_bus_type,
395 .owner = THIS_MODULE,
396 .mod_name = KBUILD_MODNAME,
397 },
398};
399
400static int nvdimm_bus_match(struct device *dev, struct device_driver *drv)
401{
402 struct nd_device_driver *nd_drv = to_nd_device_driver(drv);
403
404 if (is_nvdimm_bus(dev) && nd_drv == &nd_bus_driver)
405 return true;
406
407 return !!test_bit(to_nd_device_type(dev), &nd_drv->type);
408}
409
Dan Williams4d88a972015-05-31 14:41:48 -0400410static ASYNC_DOMAIN_EXCLUSIVE(nd_async_domain);
411
412void nd_synchronize(void)
413{
414 async_synchronize_full_domain(&nd_async_domain);
415}
416EXPORT_SYMBOL_GPL(nd_synchronize);
417
418static void nd_async_device_register(void *d, async_cookie_t cookie)
419{
420 struct device *dev = d;
421
422 if (device_add(dev) != 0) {
423 dev_err(dev, "%s: failed\n", __func__);
424 put_device(dev);
425 }
426 put_device(dev);
427}
428
429static void nd_async_device_unregister(void *d, async_cookie_t cookie)
430{
431 struct device *dev = d;
432
Dan Williams0ba1c632015-05-30 12:35:36 -0400433 /* flush bus operations before delete */
434 nvdimm_bus_lock(dev);
435 nvdimm_bus_unlock(dev);
436
Dan Williams4d88a972015-05-31 14:41:48 -0400437 device_unregister(dev);
438 put_device(dev);
439}
440
Dan Williams8c2f7e82015-06-25 04:20:04 -0400441void __nd_device_register(struct device *dev)
Dan Williams4d88a972015-05-31 14:41:48 -0400442{
Dan Williamscd034122016-03-11 10:15:36 -0800443 if (!dev)
444 return;
Dan Williams4d88a972015-05-31 14:41:48 -0400445 dev->bus = &nvdimm_bus_type;
Dan Williams4d88a972015-05-31 14:41:48 -0400446 get_device(dev);
447 async_schedule_domain(nd_async_device_register, dev,
448 &nd_async_domain);
449}
Dan Williams8c2f7e82015-06-25 04:20:04 -0400450
451void nd_device_register(struct device *dev)
452{
453 device_initialize(dev);
454 __nd_device_register(dev);
455}
Dan Williams4d88a972015-05-31 14:41:48 -0400456EXPORT_SYMBOL(nd_device_register);
457
458void nd_device_unregister(struct device *dev, enum nd_async_mode mode)
459{
460 switch (mode) {
461 case ND_ASYNC:
462 get_device(dev);
463 async_schedule_domain(nd_async_device_unregister, dev,
464 &nd_async_domain);
465 break;
466 case ND_SYNC:
467 nd_synchronize();
468 device_unregister(dev);
469 break;
470 }
471}
472EXPORT_SYMBOL(nd_device_unregister);
473
474/**
475 * __nd_driver_register() - register a region or a namespace driver
476 * @nd_drv: driver to register
477 * @owner: automatically set by nd_driver_register() macro
478 * @mod_name: automatically set by nd_driver_register() macro
479 */
480int __nd_driver_register(struct nd_device_driver *nd_drv, struct module *owner,
481 const char *mod_name)
482{
483 struct device_driver *drv = &nd_drv->drv;
484
485 if (!nd_drv->type) {
486 pr_debug("driver type bitmask not set (%pf)\n",
487 __builtin_return_address(0));
488 return -EINVAL;
489 }
490
Dan Williams6cf9c5b2016-05-18 09:13:13 -0700491 if (!nd_drv->probe) {
492 pr_debug("%s ->probe() must be specified\n", mod_name);
Dan Williams4d88a972015-05-31 14:41:48 -0400493 return -EINVAL;
494 }
495
496 drv->bus = &nvdimm_bus_type;
497 drv->owner = owner;
498 drv->mod_name = mod_name;
499
500 return driver_register(drv);
501}
502EXPORT_SYMBOL(__nd_driver_register);
503
Dan Williams58138822015-06-23 20:08:34 -0400504int nvdimm_revalidate_disk(struct gendisk *disk)
505{
Dan Williams52c44d92016-06-15 19:43:07 -0700506 struct device *dev = disk_to_dev(disk)->parent;
Dan Williams58138822015-06-23 20:08:34 -0400507 struct nd_region *nd_region = to_nd_region(dev->parent);
508 const char *pol = nd_region->ro ? "only" : "write";
509
510 if (nd_region->ro == get_disk_ro(disk))
511 return 0;
512
513 dev_info(dev, "%s read-%s, marking %s read-%s\n",
514 dev_name(&nd_region->dev), pol, disk->disk_name, pol);
515 set_disk_ro(disk, nd_region->ro);
516
517 return 0;
518
519}
520EXPORT_SYMBOL(nvdimm_revalidate_disk);
521
Dan Williams4d88a972015-05-31 14:41:48 -0400522static ssize_t modalias_show(struct device *dev, struct device_attribute *attr,
523 char *buf)
524{
525 return sprintf(buf, ND_DEVICE_MODALIAS_FMT "\n",
526 to_nd_device_type(dev));
527}
528static DEVICE_ATTR_RO(modalias);
529
530static ssize_t devtype_show(struct device *dev, struct device_attribute *attr,
531 char *buf)
532{
533 return sprintf(buf, "%s\n", dev->type->name);
534}
535static DEVICE_ATTR_RO(devtype);
536
537static struct attribute *nd_device_attributes[] = {
538 &dev_attr_modalias.attr,
539 &dev_attr_devtype.attr,
540 NULL,
541};
542
543/**
544 * nd_device_attribute_group - generic attributes for all devices on an nd bus
545 */
546struct attribute_group nd_device_attribute_group = {
547 .attrs = nd_device_attributes,
548};
549EXPORT_SYMBOL_GPL(nd_device_attribute_group);
550
Toshi Kani74ae66c2015-06-19 12:18:34 -0600551static ssize_t numa_node_show(struct device *dev,
552 struct device_attribute *attr, char *buf)
553{
554 return sprintf(buf, "%d\n", dev_to_node(dev));
555}
556static DEVICE_ATTR_RO(numa_node);
557
558static struct attribute *nd_numa_attributes[] = {
559 &dev_attr_numa_node.attr,
560 NULL,
561};
562
563static umode_t nd_numa_attr_visible(struct kobject *kobj, struct attribute *a,
564 int n)
565{
566 if (!IS_ENABLED(CONFIG_NUMA))
567 return 0;
568
569 return a->mode;
570}
571
572/**
573 * nd_numa_attribute_group - NUMA attributes for all devices on an nd bus
574 */
575struct attribute_group nd_numa_attribute_group = {
576 .attrs = nd_numa_attributes,
577 .is_visible = nd_numa_attr_visible,
578};
579EXPORT_SYMBOL_GPL(nd_numa_attribute_group);
580
Dan Williams45def222015-04-26 19:26:48 -0400581int nvdimm_bus_create_ndctl(struct nvdimm_bus *nvdimm_bus)
582{
583 dev_t devt = MKDEV(nvdimm_bus_major, nvdimm_bus->id);
584 struct device *dev;
585
586 dev = device_create(nd_class, &nvdimm_bus->dev, devt, nvdimm_bus,
587 "ndctl%d", nvdimm_bus->id);
588
Dan Williams42588952016-05-27 13:28:31 -0700589 if (IS_ERR(dev))
Dan Williams45def222015-04-26 19:26:48 -0400590 dev_dbg(&nvdimm_bus->dev, "failed to register ndctl%d: %ld\n",
591 nvdimm_bus->id, PTR_ERR(dev));
Dan Williams42588952016-05-27 13:28:31 -0700592 return PTR_ERR_OR_ZERO(dev);
Dan Williams45def222015-04-26 19:26:48 -0400593}
594
595void nvdimm_bus_destroy_ndctl(struct nvdimm_bus *nvdimm_bus)
596{
597 device_destroy(nd_class, MKDEV(nvdimm_bus_major, nvdimm_bus->id));
598}
599
Dan Williams62232e452015-06-08 14:27:06 -0400600static const struct nd_cmd_desc __nd_cmd_dimm_descs[] = {
601 [ND_CMD_IMPLEMENTED] = { },
602 [ND_CMD_SMART] = {
603 .out_num = 2,
Dan Williams21129112016-04-07 19:58:44 -0700604 .out_sizes = { 4, 128, },
Dan Williams62232e452015-06-08 14:27:06 -0400605 },
606 [ND_CMD_SMART_THRESHOLD] = {
607 .out_num = 2,
608 .out_sizes = { 4, 8, },
609 },
610 [ND_CMD_DIMM_FLAGS] = {
611 .out_num = 2,
612 .out_sizes = { 4, 4 },
613 },
614 [ND_CMD_GET_CONFIG_SIZE] = {
615 .out_num = 3,
616 .out_sizes = { 4, 4, 4, },
617 },
618 [ND_CMD_GET_CONFIG_DATA] = {
619 .in_num = 2,
620 .in_sizes = { 4, 4, },
621 .out_num = 2,
622 .out_sizes = { 4, UINT_MAX, },
623 },
624 [ND_CMD_SET_CONFIG_DATA] = {
625 .in_num = 3,
626 .in_sizes = { 4, 4, UINT_MAX, },
627 .out_num = 1,
628 .out_sizes = { 4, },
629 },
630 [ND_CMD_VENDOR] = {
631 .in_num = 3,
632 .in_sizes = { 4, 4, UINT_MAX, },
633 .out_num = 3,
634 .out_sizes = { 4, 4, UINT_MAX, },
635 },
Dan Williams31eca762016-04-28 16:23:43 -0700636 [ND_CMD_CALL] = {
637 .in_num = 2,
638 .in_sizes = { sizeof(struct nd_cmd_pkg), UINT_MAX, },
639 .out_num = 1,
640 .out_sizes = { UINT_MAX, },
641 },
Dan Williams62232e452015-06-08 14:27:06 -0400642};
643
644const struct nd_cmd_desc *nd_cmd_dimm_desc(int cmd)
645{
646 if (cmd < ARRAY_SIZE(__nd_cmd_dimm_descs))
647 return &__nd_cmd_dimm_descs[cmd];
648 return NULL;
649}
650EXPORT_SYMBOL_GPL(nd_cmd_dimm_desc);
651
652static const struct nd_cmd_desc __nd_cmd_bus_descs[] = {
653 [ND_CMD_IMPLEMENTED] = { },
654 [ND_CMD_ARS_CAP] = {
655 .in_num = 2,
656 .in_sizes = { 8, 8, },
Dan Williams4577b062016-02-17 13:08:58 -0800657 .out_num = 4,
658 .out_sizes = { 4, 4, 4, 4, },
Dan Williams62232e452015-06-08 14:27:06 -0400659 },
660 [ND_CMD_ARS_START] = {
Dan Williams4577b062016-02-17 13:08:58 -0800661 .in_num = 5,
662 .in_sizes = { 8, 8, 2, 1, 5, },
663 .out_num = 2,
664 .out_sizes = { 4, 4, },
Dan Williams62232e452015-06-08 14:27:06 -0400665 },
666 [ND_CMD_ARS_STATUS] = {
Dan Williams747ffe12016-02-19 15:21:14 -0800667 .out_num = 3,
668 .out_sizes = { 4, 4, UINT_MAX, },
Dan Williams62232e452015-06-08 14:27:06 -0400669 },
Dan Williamsd4f32362016-03-03 16:08:54 -0800670 [ND_CMD_CLEAR_ERROR] = {
671 .in_num = 2,
672 .in_sizes = { 8, 8, },
673 .out_num = 3,
674 .out_sizes = { 4, 4, 8, },
675 },
Dan Williams31eca762016-04-28 16:23:43 -0700676 [ND_CMD_CALL] = {
677 .in_num = 2,
678 .in_sizes = { sizeof(struct nd_cmd_pkg), UINT_MAX, },
679 .out_num = 1,
680 .out_sizes = { UINT_MAX, },
681 },
Dan Williams62232e452015-06-08 14:27:06 -0400682};
683
684const struct nd_cmd_desc *nd_cmd_bus_desc(int cmd)
685{
686 if (cmd < ARRAY_SIZE(__nd_cmd_bus_descs))
687 return &__nd_cmd_bus_descs[cmd];
688 return NULL;
689}
690EXPORT_SYMBOL_GPL(nd_cmd_bus_desc);
691
692u32 nd_cmd_in_size(struct nvdimm *nvdimm, int cmd,
693 const struct nd_cmd_desc *desc, int idx, void *buf)
694{
695 if (idx >= desc->in_num)
696 return UINT_MAX;
697
698 if (desc->in_sizes[idx] < UINT_MAX)
699 return desc->in_sizes[idx];
700
701 if (nvdimm && cmd == ND_CMD_SET_CONFIG_DATA && idx == 2) {
702 struct nd_cmd_set_config_hdr *hdr = buf;
703
704 return hdr->in_length;
705 } else if (nvdimm && cmd == ND_CMD_VENDOR && idx == 2) {
706 struct nd_cmd_vendor_hdr *hdr = buf;
707
708 return hdr->in_length;
Dan Williams31eca762016-04-28 16:23:43 -0700709 } else if (cmd == ND_CMD_CALL) {
710 struct nd_cmd_pkg *pkg = buf;
711
712 return pkg->nd_size_in;
Dan Williams62232e452015-06-08 14:27:06 -0400713 }
714
715 return UINT_MAX;
716}
717EXPORT_SYMBOL_GPL(nd_cmd_in_size);
718
719u32 nd_cmd_out_size(struct nvdimm *nvdimm, int cmd,
720 const struct nd_cmd_desc *desc, int idx, const u32 *in_field,
Dan Williamsefda1b5d2016-12-06 09:10:12 -0800721 const u32 *out_field, unsigned long remainder)
Dan Williams62232e452015-06-08 14:27:06 -0400722{
723 if (idx >= desc->out_num)
724 return UINT_MAX;
725
726 if (desc->out_sizes[idx] < UINT_MAX)
727 return desc->out_sizes[idx];
728
729 if (nvdimm && cmd == ND_CMD_GET_CONFIG_DATA && idx == 1)
730 return in_field[1];
731 else if (nvdimm && cmd == ND_CMD_VENDOR && idx == 2)
732 return out_field[1];
Dan Williamsefda1b5d2016-12-06 09:10:12 -0800733 else if (!nvdimm && cmd == ND_CMD_ARS_STATUS && idx == 2) {
734 /*
735 * Per table 9-276 ARS Data in ACPI 6.1, out_field[1] is
736 * "Size of Output Buffer in bytes, including this
737 * field."
738 */
739 if (out_field[1] < 4)
740 return 0;
741 /*
742 * ACPI 6.1 is ambiguous if 'status' is included in the
743 * output size. If we encounter an output size that
744 * overshoots the remainder by 4 bytes, assume it was
745 * including 'status'.
746 */
747 if (out_field[1] - 8 == remainder)
748 return remainder;
749 return out_field[1] - 4;
750 } else if (cmd == ND_CMD_CALL) {
Dan Williams31eca762016-04-28 16:23:43 -0700751 struct nd_cmd_pkg *pkg = (struct nd_cmd_pkg *) in_field;
752
753 return pkg->nd_size_out;
754 }
755
Dan Williams62232e452015-06-08 14:27:06 -0400756
757 return UINT_MAX;
758}
759EXPORT_SYMBOL_GPL(nd_cmd_out_size);
760
Dan Williamsbf9bccc2015-06-17 17:14:46 -0400761void wait_nvdimm_bus_probe_idle(struct device *dev)
Dan Williamseaf96152015-05-01 13:11:27 -0400762{
Dan Williamsbf9bccc2015-06-17 17:14:46 -0400763 struct nvdimm_bus *nvdimm_bus = walk_to_nvdimm_bus(dev);
764
Dan Williamseaf96152015-05-01 13:11:27 -0400765 do {
766 if (nvdimm_bus->probe_active == 0)
767 break;
768 nvdimm_bus_unlock(&nvdimm_bus->dev);
769 wait_event(nvdimm_bus->probe_wait,
770 nvdimm_bus->probe_active == 0);
771 nvdimm_bus_lock(&nvdimm_bus->dev);
772 } while (true);
773}
774
Dan Williamsd4f32362016-03-03 16:08:54 -0800775static int pmem_active(struct device *dev, void *data)
776{
777 if (is_nd_pmem(dev) && dev->driver)
778 return -EBUSY;
779 return 0;
780}
781
Dan Williamseaf96152015-05-01 13:11:27 -0400782/* set_config requires an idle interleave set */
Dan Williams87bf5722016-02-22 21:50:31 -0800783static int nd_cmd_clear_to_send(struct nvdimm_bus *nvdimm_bus,
784 struct nvdimm *nvdimm, unsigned int cmd)
Dan Williamseaf96152015-05-01 13:11:27 -0400785{
Dan Williams87bf5722016-02-22 21:50:31 -0800786 struct nvdimm_bus_descriptor *nd_desc = nvdimm_bus->nd_desc;
787
788 /* ask the bus provider if it would like to block this request */
789 if (nd_desc->clear_to_send) {
790 int rc = nd_desc->clear_to_send(nd_desc, nvdimm, cmd);
791
792 if (rc)
793 return rc;
794 }
Dan Williamseaf96152015-05-01 13:11:27 -0400795
Dan Williamsd4f32362016-03-03 16:08:54 -0800796 /* require clear error to go through the pmem driver */
797 if (!nvdimm && cmd == ND_CMD_CLEAR_ERROR)
798 return device_for_each_child(&nvdimm_bus->dev, NULL,
799 pmem_active);
800
Dan Williamseaf96152015-05-01 13:11:27 -0400801 if (!nvdimm || cmd != ND_CMD_SET_CONFIG_DATA)
802 return 0;
803
Dan Williams87bf5722016-02-22 21:50:31 -0800804 /* prevent label manipulation while the kernel owns label updates */
Dan Williamsbf9bccc2015-06-17 17:14:46 -0400805 wait_nvdimm_bus_probe_idle(&nvdimm_bus->dev);
Dan Williamseaf96152015-05-01 13:11:27 -0400806 if (atomic_read(&nvdimm->busy))
807 return -EBUSY;
808 return 0;
809}
810
Dan Williams62232e452015-06-08 14:27:06 -0400811static int __nd_ioctl(struct nvdimm_bus *nvdimm_bus, struct nvdimm *nvdimm,
812 int read_only, unsigned int ioctl_cmd, unsigned long arg)
813{
814 struct nvdimm_bus_descriptor *nd_desc = nvdimm_bus->nd_desc;
815 size_t buf_len = 0, in_len = 0, out_len = 0;
816 static char out_env[ND_CMD_MAX_ENVELOPE];
817 static char in_env[ND_CMD_MAX_ENVELOPE];
818 const struct nd_cmd_desc *desc = NULL;
819 unsigned int cmd = _IOC_NR(ioctl_cmd);
820 void __user *p = (void __user *) arg;
821 struct device *dev = &nvdimm_bus->dev;
Dan Williams31eca762016-04-28 16:23:43 -0700822 struct nd_cmd_pkg pkg;
Dan Williams62232e452015-06-08 14:27:06 -0400823 const char *cmd_name, *dimm_name;
Dan Williamse3654ec2016-04-28 16:17:07 -0700824 unsigned long cmd_mask;
Dan Williams62232e452015-06-08 14:27:06 -0400825 void *buf;
826 int rc, i;
827
828 if (nvdimm) {
829 desc = nd_cmd_dimm_desc(cmd);
830 cmd_name = nvdimm_cmd_name(cmd);
Dan Williamse3654ec2016-04-28 16:17:07 -0700831 cmd_mask = nvdimm->cmd_mask;
Dan Williams62232e452015-06-08 14:27:06 -0400832 dimm_name = dev_name(&nvdimm->dev);
833 } else {
834 desc = nd_cmd_bus_desc(cmd);
835 cmd_name = nvdimm_bus_cmd_name(cmd);
Dan Williamse3654ec2016-04-28 16:17:07 -0700836 cmd_mask = nd_desc->cmd_mask;
Dan Williams62232e452015-06-08 14:27:06 -0400837 dimm_name = "bus";
838 }
839
Dan Williams31eca762016-04-28 16:23:43 -0700840 if (cmd == ND_CMD_CALL) {
841 if (copy_from_user(&pkg, p, sizeof(pkg)))
842 return -EFAULT;
843 }
844
Dan Williams62232e452015-06-08 14:27:06 -0400845 if (!desc || (desc->out_num + desc->in_num == 0) ||
Dan Williamse3654ec2016-04-28 16:17:07 -0700846 !test_bit(cmd, &cmd_mask))
Dan Williams62232e452015-06-08 14:27:06 -0400847 return -ENOTTY;
848
849 /* fail write commands (when read-only) */
850 if (read_only)
Jerry Hoemann07accfa2016-01-06 16:03:41 -0700851 switch (cmd) {
852 case ND_CMD_VENDOR:
853 case ND_CMD_SET_CONFIG_DATA:
854 case ND_CMD_ARS_START:
Dan Williamsd4f32362016-03-03 16:08:54 -0800855 case ND_CMD_CLEAR_ERROR:
Dan Williams31eca762016-04-28 16:23:43 -0700856 case ND_CMD_CALL:
Dan Williams62232e452015-06-08 14:27:06 -0400857 dev_dbg(&nvdimm_bus->dev, "'%s' command while read-only.\n",
858 nvdimm ? nvdimm_cmd_name(cmd)
859 : nvdimm_bus_cmd_name(cmd));
860 return -EPERM;
861 default:
862 break;
863 }
864
865 /* process an input envelope */
866 for (i = 0; i < desc->in_num; i++) {
867 u32 in_size, copy;
868
869 in_size = nd_cmd_in_size(nvdimm, cmd, desc, i, in_env);
870 if (in_size == UINT_MAX) {
871 dev_err(dev, "%s:%s unknown input size cmd: %s field: %d\n",
872 __func__, dimm_name, cmd_name, i);
873 return -ENXIO;
874 }
Dan Williams62232e452015-06-08 14:27:06 -0400875 if (in_len < sizeof(in_env))
876 copy = min_t(u32, sizeof(in_env) - in_len, in_size);
877 else
878 copy = 0;
879 if (copy && copy_from_user(&in_env[in_len], p + in_len, copy))
880 return -EFAULT;
881 in_len += in_size;
882 }
883
Dan Williams31eca762016-04-28 16:23:43 -0700884 if (cmd == ND_CMD_CALL) {
885 dev_dbg(dev, "%s:%s, idx: %llu, in: %zu, out: %zu, len %zu\n",
886 __func__, dimm_name, pkg.nd_command,
887 in_len, out_len, buf_len);
888
889 for (i = 0; i < ARRAY_SIZE(pkg.nd_reserved2); i++)
890 if (pkg.nd_reserved2[i])
891 return -EINVAL;
892 }
893
Dan Williams62232e452015-06-08 14:27:06 -0400894 /* process an output envelope */
895 for (i = 0; i < desc->out_num; i++) {
896 u32 out_size = nd_cmd_out_size(nvdimm, cmd, desc, i,
Dan Williamsefda1b5d2016-12-06 09:10:12 -0800897 (u32 *) in_env, (u32 *) out_env, 0);
Dan Williams62232e452015-06-08 14:27:06 -0400898 u32 copy;
899
900 if (out_size == UINT_MAX) {
901 dev_dbg(dev, "%s:%s unknown output size cmd: %s field: %d\n",
902 __func__, dimm_name, cmd_name, i);
903 return -EFAULT;
904 }
Dan Williams62232e452015-06-08 14:27:06 -0400905 if (out_len < sizeof(out_env))
906 copy = min_t(u32, sizeof(out_env) - out_len, out_size);
907 else
908 copy = 0;
909 if (copy && copy_from_user(&out_env[out_len],
910 p + in_len + out_len, copy))
911 return -EFAULT;
912 out_len += out_size;
913 }
914
915 buf_len = out_len + in_len;
Dan Williams62232e452015-06-08 14:27:06 -0400916 if (buf_len > ND_IOCTL_MAX_BUFLEN) {
917 dev_dbg(dev, "%s:%s cmd: %s buf_len: %zu > %d\n", __func__,
918 dimm_name, cmd_name, buf_len,
919 ND_IOCTL_MAX_BUFLEN);
920 return -EINVAL;
921 }
922
923 buf = vmalloc(buf_len);
924 if (!buf)
925 return -ENOMEM;
926
927 if (copy_from_user(buf, p, buf_len)) {
928 rc = -EFAULT;
929 goto out;
930 }
931
Dan Williamseaf96152015-05-01 13:11:27 -0400932 nvdimm_bus_lock(&nvdimm_bus->dev);
Dan Williams87bf5722016-02-22 21:50:31 -0800933 rc = nd_cmd_clear_to_send(nvdimm_bus, nvdimm, cmd);
Dan Williamseaf96152015-05-01 13:11:27 -0400934 if (rc)
935 goto out_unlock;
936
Dan Williamsaef25332016-02-12 17:01:11 -0800937 rc = nd_desc->ndctl(nd_desc, nvdimm, cmd, buf, buf_len, NULL);
Dan Williams62232e452015-06-08 14:27:06 -0400938 if (rc < 0)
Dan Williamseaf96152015-05-01 13:11:27 -0400939 goto out_unlock;
Dan Williams5ac50e72017-04-07 09:47:24 -0700940 nvdimm_bus_unlock(&nvdimm_bus->dev);
941
Dan Williams62232e452015-06-08 14:27:06 -0400942 if (copy_to_user(p, buf, buf_len))
943 rc = -EFAULT;
Dan Williams5ac50e72017-04-07 09:47:24 -0700944
945 vfree(buf);
946 return rc;
947
Dan Williamseaf96152015-05-01 13:11:27 -0400948 out_unlock:
949 nvdimm_bus_unlock(&nvdimm_bus->dev);
Dan Williams62232e452015-06-08 14:27:06 -0400950 out:
951 vfree(buf);
952 return rc;
953}
954
Dan Williams45def222015-04-26 19:26:48 -0400955static long nd_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
956{
Dan Williams62232e452015-06-08 14:27:06 -0400957 long id = (long) file->private_data;
Jerry Hoemann4dc0e7b2016-01-06 16:03:39 -0700958 int rc = -ENXIO, ro;
Dan Williams62232e452015-06-08 14:27:06 -0400959 struct nvdimm_bus *nvdimm_bus;
960
Jerry Hoemann4dc0e7b2016-01-06 16:03:39 -0700961 ro = ((file->f_flags & O_ACCMODE) == O_RDONLY);
Dan Williams62232e452015-06-08 14:27:06 -0400962 mutex_lock(&nvdimm_bus_list_mutex);
963 list_for_each_entry(nvdimm_bus, &nvdimm_bus_list, list) {
964 if (nvdimm_bus->id == id) {
Jerry Hoemann4dc0e7b2016-01-06 16:03:39 -0700965 rc = __nd_ioctl(nvdimm_bus, NULL, ro, cmd, arg);
Dan Williams62232e452015-06-08 14:27:06 -0400966 break;
967 }
968 }
969 mutex_unlock(&nvdimm_bus_list_mutex);
970
971 return rc;
972}
973
974static int match_dimm(struct device *dev, void *data)
975{
976 long id = (long) data;
977
978 if (is_nvdimm(dev)) {
979 struct nvdimm *nvdimm = to_nvdimm(dev);
980
981 return nvdimm->id == id;
982 }
983
984 return 0;
985}
986
987static long nvdimm_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
988{
Jerry Hoemann4dc0e7b2016-01-06 16:03:39 -0700989 int rc = -ENXIO, ro;
Dan Williams62232e452015-06-08 14:27:06 -0400990 struct nvdimm_bus *nvdimm_bus;
991
Jerry Hoemann4dc0e7b2016-01-06 16:03:39 -0700992 ro = ((file->f_flags & O_ACCMODE) == O_RDONLY);
Dan Williams62232e452015-06-08 14:27:06 -0400993 mutex_lock(&nvdimm_bus_list_mutex);
994 list_for_each_entry(nvdimm_bus, &nvdimm_bus_list, list) {
995 struct device *dev = device_find_child(&nvdimm_bus->dev,
996 file->private_data, match_dimm);
997 struct nvdimm *nvdimm;
998
999 if (!dev)
1000 continue;
1001
1002 nvdimm = to_nvdimm(dev);
Jerry Hoemann4dc0e7b2016-01-06 16:03:39 -07001003 rc = __nd_ioctl(nvdimm_bus, nvdimm, ro, cmd, arg);
Dan Williams62232e452015-06-08 14:27:06 -04001004 put_device(dev);
1005 break;
1006 }
1007 mutex_unlock(&nvdimm_bus_list_mutex);
1008
1009 return rc;
1010}
1011
1012static int nd_open(struct inode *inode, struct file *file)
1013{
1014 long minor = iminor(inode);
1015
1016 file->private_data = (void *) minor;
1017 return 0;
Dan Williams45def222015-04-26 19:26:48 -04001018}
1019
1020static const struct file_operations nvdimm_bus_fops = {
1021 .owner = THIS_MODULE,
Dan Williams62232e452015-06-08 14:27:06 -04001022 .open = nd_open,
Dan Williams45def222015-04-26 19:26:48 -04001023 .unlocked_ioctl = nd_ioctl,
1024 .compat_ioctl = nd_ioctl,
1025 .llseek = noop_llseek,
1026};
1027
Dan Williams62232e452015-06-08 14:27:06 -04001028static const struct file_operations nvdimm_fops = {
1029 .owner = THIS_MODULE,
1030 .open = nd_open,
1031 .unlocked_ioctl = nvdimm_ioctl,
1032 .compat_ioctl = nvdimm_ioctl,
1033 .llseek = noop_llseek,
1034};
1035
Dan Williams45def222015-04-26 19:26:48 -04001036int __init nvdimm_bus_init(void)
1037{
1038 int rc;
1039
Dan Williamsbaa51272016-04-05 17:40:52 -07001040 BUILD_BUG_ON(sizeof(struct nd_smart_payload) != 128);
1041 BUILD_BUG_ON(sizeof(struct nd_smart_threshold_payload) != 8);
1042
Dan Williamse6dfb2d2015-04-25 03:56:17 -04001043 rc = bus_register(&nvdimm_bus_type);
1044 if (rc)
1045 return rc;
1046
Dan Williams45def222015-04-26 19:26:48 -04001047 rc = register_chrdev(0, "ndctl", &nvdimm_bus_fops);
1048 if (rc < 0)
Dan Williams62232e452015-06-08 14:27:06 -04001049 goto err_bus_chrdev;
Dan Williams45def222015-04-26 19:26:48 -04001050 nvdimm_bus_major = rc;
1051
Dan Williams62232e452015-06-08 14:27:06 -04001052 rc = register_chrdev(0, "dimmctl", &nvdimm_fops);
1053 if (rc < 0)
1054 goto err_dimm_chrdev;
1055 nvdimm_major = rc;
1056
Dan Williams45def222015-04-26 19:26:48 -04001057 nd_class = class_create(THIS_MODULE, "nd");
Axel Lindaa1dee2015-06-28 17:00:57 +08001058 if (IS_ERR(nd_class)) {
1059 rc = PTR_ERR(nd_class);
Dan Williams45def222015-04-26 19:26:48 -04001060 goto err_class;
Axel Lindaa1dee2015-06-28 17:00:57 +08001061 }
Dan Williams45def222015-04-26 19:26:48 -04001062
Dan Williams18515942016-07-22 23:46:08 -07001063 rc = driver_register(&nd_bus_driver.drv);
1064 if (rc)
1065 goto err_nd_bus;
1066
Dan Williams45def222015-04-26 19:26:48 -04001067 return 0;
1068
Dan Williams18515942016-07-22 23:46:08 -07001069 err_nd_bus:
1070 class_destroy(nd_class);
Dan Williams45def222015-04-26 19:26:48 -04001071 err_class:
Dan Williams62232e452015-06-08 14:27:06 -04001072 unregister_chrdev(nvdimm_major, "dimmctl");
1073 err_dimm_chrdev:
Dan Williams45def222015-04-26 19:26:48 -04001074 unregister_chrdev(nvdimm_bus_major, "ndctl");
Dan Williams62232e452015-06-08 14:27:06 -04001075 err_bus_chrdev:
Dan Williamse6dfb2d2015-04-25 03:56:17 -04001076 bus_unregister(&nvdimm_bus_type);
Dan Williams45def222015-04-26 19:26:48 -04001077
1078 return rc;
1079}
1080
Dan Williams4d88a972015-05-31 14:41:48 -04001081void nvdimm_bus_exit(void)
Dan Williams45def222015-04-26 19:26:48 -04001082{
Dan Williams18515942016-07-22 23:46:08 -07001083 driver_unregister(&nd_bus_driver.drv);
Dan Williams45def222015-04-26 19:26:48 -04001084 class_destroy(nd_class);
1085 unregister_chrdev(nvdimm_bus_major, "ndctl");
Dan Williams62232e452015-06-08 14:27:06 -04001086 unregister_chrdev(nvdimm_major, "dimmctl");
Dan Williamse6dfb2d2015-04-25 03:56:17 -04001087 bus_unregister(&nvdimm_bus_type);
Dan Williams18515942016-07-22 23:46:08 -07001088 ida_destroy(&nd_ida);
Dan Williams45def222015-04-26 19:26:48 -04001089}