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