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