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