Dan Williams | b94d523 | 2015-05-19 22:54:31 -0400 | [diff] [blame] | 1 | /* |
| 2 | * Copyright(c) 2013-2015 Intel Corporation. All rights reserved. |
| 3 | * |
| 4 | * This program is free software; you can redistribute it and/or modify |
| 5 | * it under the terms of version 2 of the GNU General Public License as |
| 6 | * published by the Free Software Foundation. |
| 7 | * |
| 8 | * This program is distributed in the hope that it will be useful, but |
| 9 | * WITHOUT ANY WARRANTY; without even the implied warranty of |
| 10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 11 | * General Public License for more details. |
| 12 | */ |
| 13 | #include <linux/libnvdimm.h> |
Dan Williams | b95f5f4 | 2016-01-04 23:50:23 -0800 | [diff] [blame] | 14 | #include <linux/badblocks.h> |
Dan Williams | b94d523 | 2015-05-19 22:54:31 -0400 | [diff] [blame] | 15 | #include <linux/export.h> |
| 16 | #include <linux/module.h> |
Vishal Verma | 41cd8b7 | 2015-06-25 04:21:52 -0400 | [diff] [blame] | 17 | #include <linux/blkdev.h> |
Dan Williams | b94d523 | 2015-05-19 22:54:31 -0400 | [diff] [blame] | 18 | #include <linux/device.h> |
Dan Williams | bf9bccc | 2015-06-17 17:14:46 -0400 | [diff] [blame] | 19 | #include <linux/ctype.h> |
Dan Williams | 62232e45 | 2015-06-08 14:27:06 -0400 | [diff] [blame] | 20 | #include <linux/ndctl.h> |
Dan Williams | 45def22 | 2015-04-26 19:26:48 -0400 | [diff] [blame] | 21 | #include <linux/mutex.h> |
Dan Williams | b94d523 | 2015-05-19 22:54:31 -0400 | [diff] [blame] | 22 | #include <linux/slab.h> |
| 23 | #include "nd-core.h" |
Dan Williams | 4d88a97 | 2015-05-31 14:41:48 -0400 | [diff] [blame] | 24 | #include "nd.h" |
Dan Williams | b94d523 | 2015-05-19 22:54:31 -0400 | [diff] [blame] | 25 | |
Dan Williams | e6dfb2d | 2015-04-25 03:56:17 -0400 | [diff] [blame] | 26 | LIST_HEAD(nvdimm_bus_list); |
| 27 | DEFINE_MUTEX(nvdimm_bus_list_mutex); |
Dan Williams | b94d523 | 2015-05-19 22:54:31 -0400 | [diff] [blame] | 28 | static DEFINE_IDA(nd_ida); |
| 29 | |
Dan Williams | 3d88002 | 2015-05-31 15:02:11 -0400 | [diff] [blame] | 30 | void nvdimm_bus_lock(struct device *dev) |
| 31 | { |
| 32 | struct nvdimm_bus *nvdimm_bus = walk_to_nvdimm_bus(dev); |
| 33 | |
| 34 | if (!nvdimm_bus) |
| 35 | return; |
| 36 | mutex_lock(&nvdimm_bus->reconfig_mutex); |
| 37 | } |
| 38 | EXPORT_SYMBOL(nvdimm_bus_lock); |
| 39 | |
| 40 | void nvdimm_bus_unlock(struct device *dev) |
| 41 | { |
| 42 | struct nvdimm_bus *nvdimm_bus = walk_to_nvdimm_bus(dev); |
| 43 | |
| 44 | if (!nvdimm_bus) |
| 45 | return; |
| 46 | mutex_unlock(&nvdimm_bus->reconfig_mutex); |
| 47 | } |
| 48 | EXPORT_SYMBOL(nvdimm_bus_unlock); |
| 49 | |
| 50 | bool is_nvdimm_bus_locked(struct device *dev) |
| 51 | { |
| 52 | struct nvdimm_bus *nvdimm_bus = walk_to_nvdimm_bus(dev); |
| 53 | |
| 54 | if (!nvdimm_bus) |
| 55 | return false; |
| 56 | return mutex_is_locked(&nvdimm_bus->reconfig_mutex); |
| 57 | } |
| 58 | EXPORT_SYMBOL(is_nvdimm_bus_locked); |
| 59 | |
Dan Williams | eaf9615 | 2015-05-01 13:11:27 -0400 | [diff] [blame] | 60 | u64 nd_fletcher64(void *addr, size_t len, bool le) |
| 61 | { |
| 62 | u32 *buf = addr; |
| 63 | u32 lo32 = 0; |
| 64 | u64 hi32 = 0; |
| 65 | int i; |
| 66 | |
| 67 | for (i = 0; i < len / sizeof(u32); i++) { |
| 68 | lo32 += le ? le32_to_cpu((__le32) buf[i]) : buf[i]; |
| 69 | hi32 += lo32; |
| 70 | } |
| 71 | |
| 72 | return hi32 << 32 | lo32; |
| 73 | } |
| 74 | EXPORT_SYMBOL_GPL(nd_fletcher64); |
| 75 | |
Dan Williams | b94d523 | 2015-05-19 22:54:31 -0400 | [diff] [blame] | 76 | static void nvdimm_bus_release(struct device *dev) |
| 77 | { |
| 78 | struct nvdimm_bus *nvdimm_bus; |
| 79 | |
| 80 | nvdimm_bus = container_of(dev, struct nvdimm_bus, dev); |
| 81 | ida_simple_remove(&nd_ida, nvdimm_bus->id); |
| 82 | kfree(nvdimm_bus); |
| 83 | } |
| 84 | |
Dan Williams | 45def22 | 2015-04-26 19:26:48 -0400 | [diff] [blame] | 85 | struct nvdimm_bus *to_nvdimm_bus(struct device *dev) |
| 86 | { |
| 87 | struct nvdimm_bus *nvdimm_bus; |
| 88 | |
| 89 | nvdimm_bus = container_of(dev, struct nvdimm_bus, dev); |
| 90 | WARN_ON(nvdimm_bus->dev.release != nvdimm_bus_release); |
| 91 | return nvdimm_bus; |
| 92 | } |
| 93 | EXPORT_SYMBOL_GPL(to_nvdimm_bus); |
| 94 | |
| 95 | struct nvdimm_bus_descriptor *to_nd_desc(struct nvdimm_bus *nvdimm_bus) |
| 96 | { |
| 97 | /* struct nvdimm_bus definition is private to libnvdimm */ |
| 98 | return nvdimm_bus->nd_desc; |
| 99 | } |
| 100 | EXPORT_SYMBOL_GPL(to_nd_desc); |
| 101 | |
Dan Williams | e6dfb2d | 2015-04-25 03:56:17 -0400 | [diff] [blame] | 102 | struct nvdimm_bus *walk_to_nvdimm_bus(struct device *nd_dev) |
| 103 | { |
| 104 | struct device *dev; |
| 105 | |
| 106 | for (dev = nd_dev; dev; dev = dev->parent) |
| 107 | if (dev->release == nvdimm_bus_release) |
| 108 | break; |
| 109 | dev_WARN_ONCE(nd_dev, !dev, "invalid dev, not on nd bus\n"); |
| 110 | if (dev) |
| 111 | return to_nvdimm_bus(dev); |
| 112 | return NULL; |
| 113 | } |
| 114 | |
Dan Williams | bf9bccc | 2015-06-17 17:14:46 -0400 | [diff] [blame] | 115 | static bool is_uuid_sep(char sep) |
| 116 | { |
| 117 | if (sep == '\n' || sep == '-' || sep == ':' || sep == '\0') |
| 118 | return true; |
| 119 | return false; |
| 120 | } |
| 121 | |
| 122 | static int nd_uuid_parse(struct device *dev, u8 *uuid_out, const char *buf, |
| 123 | size_t len) |
| 124 | { |
| 125 | const char *str = buf; |
| 126 | u8 uuid[16]; |
| 127 | int i; |
| 128 | |
| 129 | for (i = 0; i < 16; i++) { |
| 130 | if (!isxdigit(str[0]) || !isxdigit(str[1])) { |
| 131 | dev_dbg(dev, "%s: pos: %d buf[%zd]: %c buf[%zd]: %c\n", |
| 132 | __func__, i, str - buf, str[0], |
| 133 | str + 1 - buf, str[1]); |
| 134 | return -EINVAL; |
| 135 | } |
| 136 | |
| 137 | uuid[i] = (hex_to_bin(str[0]) << 4) | hex_to_bin(str[1]); |
| 138 | str += 2; |
| 139 | if (is_uuid_sep(*str)) |
| 140 | str++; |
| 141 | } |
| 142 | |
| 143 | memcpy(uuid_out, uuid, sizeof(uuid)); |
| 144 | return 0; |
| 145 | } |
| 146 | |
| 147 | /** |
| 148 | * nd_uuid_store: common implementation for writing 'uuid' sysfs attributes |
| 149 | * @dev: container device for the uuid property |
| 150 | * @uuid_out: uuid buffer to replace |
| 151 | * @buf: raw sysfs buffer to parse |
| 152 | * |
| 153 | * Enforce that uuids can only be changed while the device is disabled |
| 154 | * (driver detached) |
| 155 | * LOCKING: expects device_lock() is held on entry |
| 156 | */ |
| 157 | int nd_uuid_store(struct device *dev, u8 **uuid_out, const char *buf, |
| 158 | size_t len) |
| 159 | { |
| 160 | u8 uuid[16]; |
| 161 | int rc; |
| 162 | |
| 163 | if (dev->driver) |
| 164 | return -EBUSY; |
| 165 | |
| 166 | rc = nd_uuid_parse(dev, uuid, buf, len); |
| 167 | if (rc) |
| 168 | return rc; |
| 169 | |
| 170 | kfree(*uuid_out); |
| 171 | *uuid_out = kmemdup(uuid, sizeof(uuid), GFP_KERNEL); |
| 172 | if (!(*uuid_out)) |
| 173 | return -ENOMEM; |
| 174 | |
| 175 | return 0; |
| 176 | } |
| 177 | |
Dan Williams | 1b40e09 | 2015-05-01 13:34:01 -0400 | [diff] [blame] | 178 | ssize_t nd_sector_size_show(unsigned long current_lbasize, |
| 179 | const unsigned long *supported, char *buf) |
| 180 | { |
| 181 | ssize_t len = 0; |
| 182 | int i; |
| 183 | |
| 184 | for (i = 0; supported[i]; i++) |
| 185 | if (current_lbasize == supported[i]) |
| 186 | len += sprintf(buf + len, "[%ld] ", supported[i]); |
| 187 | else |
| 188 | len += sprintf(buf + len, "%ld ", supported[i]); |
| 189 | len += sprintf(buf + len, "\n"); |
| 190 | return len; |
| 191 | } |
| 192 | |
| 193 | ssize_t nd_sector_size_store(struct device *dev, const char *buf, |
| 194 | unsigned long *current_lbasize, const unsigned long *supported) |
| 195 | { |
| 196 | unsigned long lbasize; |
| 197 | int rc, i; |
| 198 | |
| 199 | if (dev->driver) |
| 200 | return -EBUSY; |
| 201 | |
| 202 | rc = kstrtoul(buf, 0, &lbasize); |
| 203 | if (rc) |
| 204 | return rc; |
| 205 | |
| 206 | for (i = 0; supported[i]; i++) |
| 207 | if (lbasize == supported[i]) |
| 208 | break; |
| 209 | |
| 210 | if (supported[i]) { |
| 211 | *current_lbasize = lbasize; |
| 212 | return 0; |
| 213 | } else { |
| 214 | return -EINVAL; |
| 215 | } |
| 216 | } |
| 217 | |
Dan Williams | f0dc089 | 2015-05-16 12:28:53 -0400 | [diff] [blame] | 218 | void __nd_iostat_start(struct bio *bio, unsigned long *start) |
| 219 | { |
| 220 | struct gendisk *disk = bio->bi_bdev->bd_disk; |
| 221 | const int rw = bio_data_dir(bio); |
| 222 | int cpu = part_stat_lock(); |
| 223 | |
| 224 | *start = jiffies; |
| 225 | part_round_stats(cpu, &disk->part0); |
| 226 | part_stat_inc(cpu, &disk->part0, ios[rw]); |
| 227 | part_stat_add(cpu, &disk->part0, sectors[rw], bio_sectors(bio)); |
| 228 | part_inc_in_flight(&disk->part0, rw); |
| 229 | part_stat_unlock(); |
| 230 | } |
| 231 | EXPORT_SYMBOL(__nd_iostat_start); |
| 232 | |
| 233 | void nd_iostat_end(struct bio *bio, unsigned long start) |
| 234 | { |
| 235 | struct gendisk *disk = bio->bi_bdev->bd_disk; |
| 236 | unsigned long duration = jiffies - start; |
| 237 | const int rw = bio_data_dir(bio); |
| 238 | int cpu = part_stat_lock(); |
| 239 | |
| 240 | part_stat_add(cpu, &disk->part0, ticks[rw], duration); |
| 241 | part_round_stats(cpu, &disk->part0); |
| 242 | part_dec_in_flight(&disk->part0, rw); |
| 243 | part_stat_unlock(); |
| 244 | } |
| 245 | EXPORT_SYMBOL(nd_iostat_end); |
| 246 | |
Dan Williams | 62232e45 | 2015-06-08 14:27:06 -0400 | [diff] [blame] | 247 | static ssize_t commands_show(struct device *dev, |
| 248 | struct device_attribute *attr, char *buf) |
| 249 | { |
| 250 | int cmd, len = 0; |
| 251 | struct nvdimm_bus *nvdimm_bus = to_nvdimm_bus(dev); |
| 252 | struct nvdimm_bus_descriptor *nd_desc = nvdimm_bus->nd_desc; |
| 253 | |
| 254 | for_each_set_bit(cmd, &nd_desc->dsm_mask, BITS_PER_LONG) |
| 255 | len += sprintf(buf + len, "%s ", nvdimm_bus_cmd_name(cmd)); |
| 256 | len += sprintf(buf + len, "\n"); |
| 257 | return len; |
| 258 | } |
| 259 | static DEVICE_ATTR_RO(commands); |
| 260 | |
Dan Williams | 45def22 | 2015-04-26 19:26:48 -0400 | [diff] [blame] | 261 | static const char *nvdimm_bus_provider(struct nvdimm_bus *nvdimm_bus) |
| 262 | { |
| 263 | struct nvdimm_bus_descriptor *nd_desc = nvdimm_bus->nd_desc; |
| 264 | struct device *parent = nvdimm_bus->dev.parent; |
| 265 | |
| 266 | if (nd_desc->provider_name) |
| 267 | return nd_desc->provider_name; |
| 268 | else if (parent) |
| 269 | return dev_name(parent); |
| 270 | else |
| 271 | return "unknown"; |
| 272 | } |
| 273 | |
| 274 | static ssize_t provider_show(struct device *dev, |
| 275 | struct device_attribute *attr, char *buf) |
| 276 | { |
| 277 | struct nvdimm_bus *nvdimm_bus = to_nvdimm_bus(dev); |
| 278 | |
| 279 | return sprintf(buf, "%s\n", nvdimm_bus_provider(nvdimm_bus)); |
| 280 | } |
| 281 | static DEVICE_ATTR_RO(provider); |
| 282 | |
Dan Williams | 4d88a97 | 2015-05-31 14:41:48 -0400 | [diff] [blame] | 283 | static int flush_namespaces(struct device *dev, void *data) |
| 284 | { |
| 285 | device_lock(dev); |
| 286 | device_unlock(dev); |
| 287 | return 0; |
| 288 | } |
| 289 | |
| 290 | static int flush_regions_dimms(struct device *dev, void *data) |
| 291 | { |
| 292 | device_lock(dev); |
| 293 | device_unlock(dev); |
| 294 | device_for_each_child(dev, NULL, flush_namespaces); |
| 295 | return 0; |
| 296 | } |
| 297 | |
| 298 | static ssize_t wait_probe_show(struct device *dev, |
| 299 | struct device_attribute *attr, char *buf) |
| 300 | { |
Dan Williams | 7ae0fa43 | 2016-02-19 12:16:34 -0800 | [diff] [blame] | 301 | struct nvdimm_bus *nvdimm_bus = to_nvdimm_bus(dev); |
| 302 | struct nvdimm_bus_descriptor *nd_desc = nvdimm_bus->nd_desc; |
| 303 | int rc; |
| 304 | |
| 305 | if (nd_desc->flush_probe) { |
| 306 | rc = nd_desc->flush_probe(nd_desc); |
| 307 | if (rc) |
| 308 | return rc; |
| 309 | } |
Dan Williams | 4d88a97 | 2015-05-31 14:41:48 -0400 | [diff] [blame] | 310 | nd_synchronize(); |
| 311 | device_for_each_child(dev, NULL, flush_regions_dimms); |
| 312 | return sprintf(buf, "1\n"); |
| 313 | } |
| 314 | static DEVICE_ATTR_RO(wait_probe); |
| 315 | |
Dan Williams | 45def22 | 2015-04-26 19:26:48 -0400 | [diff] [blame] | 316 | static struct attribute *nvdimm_bus_attributes[] = { |
Dan Williams | 62232e45 | 2015-06-08 14:27:06 -0400 | [diff] [blame] | 317 | &dev_attr_commands.attr, |
Dan Williams | 4d88a97 | 2015-05-31 14:41:48 -0400 | [diff] [blame] | 318 | &dev_attr_wait_probe.attr, |
Dan Williams | 45def22 | 2015-04-26 19:26:48 -0400 | [diff] [blame] | 319 | &dev_attr_provider.attr, |
| 320 | NULL, |
| 321 | }; |
| 322 | |
| 323 | struct attribute_group nvdimm_bus_attribute_group = { |
| 324 | .attrs = nvdimm_bus_attributes, |
| 325 | }; |
| 326 | EXPORT_SYMBOL_GPL(nvdimm_bus_attribute_group); |
| 327 | |
Dan Williams | 3d88002 | 2015-05-31 15:02:11 -0400 | [diff] [blame] | 328 | struct nvdimm_bus *__nvdimm_bus_register(struct device *parent, |
| 329 | struct nvdimm_bus_descriptor *nd_desc, struct module *module) |
Dan Williams | b94d523 | 2015-05-19 22:54:31 -0400 | [diff] [blame] | 330 | { |
| 331 | struct nvdimm_bus *nvdimm_bus; |
| 332 | int rc; |
| 333 | |
| 334 | nvdimm_bus = kzalloc(sizeof(*nvdimm_bus), GFP_KERNEL); |
| 335 | if (!nvdimm_bus) |
| 336 | return NULL; |
Dan Williams | 45def22 | 2015-04-26 19:26:48 -0400 | [diff] [blame] | 337 | INIT_LIST_HEAD(&nvdimm_bus->list); |
Vishal Verma | 0caeef6 | 2015-12-24 19:21:43 -0700 | [diff] [blame] | 338 | INIT_LIST_HEAD(&nvdimm_bus->poison_list); |
Dan Williams | eaf9615 | 2015-05-01 13:11:27 -0400 | [diff] [blame] | 339 | init_waitqueue_head(&nvdimm_bus->probe_wait); |
Dan Williams | b94d523 | 2015-05-19 22:54:31 -0400 | [diff] [blame] | 340 | nvdimm_bus->id = ida_simple_get(&nd_ida, 0, 0, GFP_KERNEL); |
Dan Williams | 3d88002 | 2015-05-31 15:02:11 -0400 | [diff] [blame] | 341 | mutex_init(&nvdimm_bus->reconfig_mutex); |
Dan Williams | b94d523 | 2015-05-19 22:54:31 -0400 | [diff] [blame] | 342 | if (nvdimm_bus->id < 0) { |
| 343 | kfree(nvdimm_bus); |
| 344 | return NULL; |
| 345 | } |
| 346 | nvdimm_bus->nd_desc = nd_desc; |
Dan Williams | 3d88002 | 2015-05-31 15:02:11 -0400 | [diff] [blame] | 347 | nvdimm_bus->module = module; |
Dan Williams | b94d523 | 2015-05-19 22:54:31 -0400 | [diff] [blame] | 348 | nvdimm_bus->dev.parent = parent; |
| 349 | nvdimm_bus->dev.release = nvdimm_bus_release; |
Dan Williams | 45def22 | 2015-04-26 19:26:48 -0400 | [diff] [blame] | 350 | nvdimm_bus->dev.groups = nd_desc->attr_groups; |
Dan Williams | b94d523 | 2015-05-19 22:54:31 -0400 | [diff] [blame] | 351 | dev_set_name(&nvdimm_bus->dev, "ndbus%d", nvdimm_bus->id); |
| 352 | rc = device_register(&nvdimm_bus->dev); |
| 353 | if (rc) { |
| 354 | dev_dbg(&nvdimm_bus->dev, "registration failed: %d\n", rc); |
Dan Williams | 45def22 | 2015-04-26 19:26:48 -0400 | [diff] [blame] | 355 | goto err; |
Dan Williams | b94d523 | 2015-05-19 22:54:31 -0400 | [diff] [blame] | 356 | } |
| 357 | |
Dan Williams | 45def22 | 2015-04-26 19:26:48 -0400 | [diff] [blame] | 358 | rc = nvdimm_bus_create_ndctl(nvdimm_bus); |
| 359 | if (rc) |
| 360 | goto err; |
| 361 | |
| 362 | mutex_lock(&nvdimm_bus_list_mutex); |
| 363 | list_add_tail(&nvdimm_bus->list, &nvdimm_bus_list); |
| 364 | mutex_unlock(&nvdimm_bus_list_mutex); |
| 365 | |
Dan Williams | b94d523 | 2015-05-19 22:54:31 -0400 | [diff] [blame] | 366 | return nvdimm_bus; |
Dan Williams | 45def22 | 2015-04-26 19:26:48 -0400 | [diff] [blame] | 367 | err: |
| 368 | put_device(&nvdimm_bus->dev); |
| 369 | return NULL; |
Dan Williams | b94d523 | 2015-05-19 22:54:31 -0400 | [diff] [blame] | 370 | } |
Dan Williams | 3d88002 | 2015-05-31 15:02:11 -0400 | [diff] [blame] | 371 | EXPORT_SYMBOL_GPL(__nvdimm_bus_register); |
Dan Williams | b94d523 | 2015-05-19 22:54:31 -0400 | [diff] [blame] | 372 | |
Dan Williams | b95f5f4 | 2016-01-04 23:50:23 -0800 | [diff] [blame] | 373 | static void set_badblock(struct badblocks *bb, sector_t s, int num) |
Dan Williams | 87ba05d | 2016-01-09 07:48:43 -0800 | [diff] [blame] | 374 | { |
Dan Williams | b95f5f4 | 2016-01-04 23:50:23 -0800 | [diff] [blame] | 375 | dev_dbg(bb->dev, "Found a poison range (0x%llx, 0x%llx)\n", |
Dan Williams | 87ba05d | 2016-01-09 07:48:43 -0800 | [diff] [blame] | 376 | (u64) s * 512, (u64) num * 512); |
| 377 | /* this isn't an error as the hardware will still throw an exception */ |
Dan Williams | b95f5f4 | 2016-01-04 23:50:23 -0800 | [diff] [blame] | 378 | if (badblocks_set(bb, s, num, 1)) |
| 379 | dev_info_once(bb->dev, "%s: failed for sector %llx\n", |
Dan Williams | 87ba05d | 2016-01-09 07:48:43 -0800 | [diff] [blame] | 380 | __func__, (u64) s); |
| 381 | } |
| 382 | |
Vishal Verma | 0caeef6 | 2015-12-24 19:21:43 -0700 | [diff] [blame] | 383 | /** |
| 384 | * __add_badblock_range() - Convert a physical address range to bad sectors |
Dan Williams | b95f5f4 | 2016-01-04 23:50:23 -0800 | [diff] [blame] | 385 | * @bb: badblocks instance to populate |
Vishal Verma | 0caeef6 | 2015-12-24 19:21:43 -0700 | [diff] [blame] | 386 | * @ns_offset: namespace offset where the error range begins (in bytes) |
| 387 | * @len: number of bytes of poison to be added |
| 388 | * |
| 389 | * This assumes that the range provided with (ns_offset, len) is within |
| 390 | * the bounds of physical addresses for this namespace, i.e. lies in the |
| 391 | * interval [ns_start, ns_start + ns_size) |
| 392 | */ |
Dan Williams | b95f5f4 | 2016-01-04 23:50:23 -0800 | [diff] [blame] | 393 | static void __add_badblock_range(struct badblocks *bb, u64 ns_offset, u64 len) |
Vishal Verma | 0caeef6 | 2015-12-24 19:21:43 -0700 | [diff] [blame] | 394 | { |
Dan Williams | b95f5f4 | 2016-01-04 23:50:23 -0800 | [diff] [blame] | 395 | const unsigned int sector_size = 512; |
Vishal Verma | 0caeef6 | 2015-12-24 19:21:43 -0700 | [diff] [blame] | 396 | sector_t start_sector; |
| 397 | u64 num_sectors; |
| 398 | u32 rem; |
Vishal Verma | 0caeef6 | 2015-12-24 19:21:43 -0700 | [diff] [blame] | 399 | |
| 400 | start_sector = div_u64(ns_offset, sector_size); |
| 401 | num_sectors = div_u64_rem(len, sector_size, &rem); |
| 402 | if (rem) |
| 403 | num_sectors++; |
| 404 | |
Vishal Verma | 0caeef6 | 2015-12-24 19:21:43 -0700 | [diff] [blame] | 405 | if (unlikely(num_sectors > (u64)INT_MAX)) { |
| 406 | u64 remaining = num_sectors; |
| 407 | sector_t s = start_sector; |
| 408 | |
| 409 | while (remaining) { |
| 410 | int done = min_t(u64, remaining, INT_MAX); |
| 411 | |
Dan Williams | b95f5f4 | 2016-01-04 23:50:23 -0800 | [diff] [blame] | 412 | set_badblock(bb, s, done); |
Vishal Verma | 0caeef6 | 2015-12-24 19:21:43 -0700 | [diff] [blame] | 413 | remaining -= done; |
| 414 | s += done; |
| 415 | } |
Vishal Verma | 0caeef6 | 2015-12-24 19:21:43 -0700 | [diff] [blame] | 416 | } else |
Dan Williams | b95f5f4 | 2016-01-04 23:50:23 -0800 | [diff] [blame] | 417 | set_badblock(bb, start_sector, num_sectors); |
Vishal Verma | 0caeef6 | 2015-12-24 19:21:43 -0700 | [diff] [blame] | 418 | } |
| 419 | |
Dan Williams | 5faecf4 | 2016-02-17 15:25:36 -0800 | [diff] [blame] | 420 | static void namespace_add_poison(struct list_head *poison_list, |
| 421 | struct badblocks *bb, struct resource *res) |
| 422 | { |
| 423 | struct nd_poison *pl; |
| 424 | |
| 425 | if (list_empty(poison_list)) |
| 426 | return; |
| 427 | |
| 428 | list_for_each_entry(pl, poison_list, list) { |
| 429 | u64 pl_end = pl->start + pl->length - 1; |
| 430 | |
| 431 | /* Discard intervals with no intersection */ |
| 432 | if (pl_end < res->start) |
| 433 | continue; |
| 434 | if (pl->start > res->end) |
| 435 | continue; |
| 436 | /* Deal with any overlap after start of the namespace */ |
| 437 | if (pl->start >= res->start) { |
| 438 | u64 start = pl->start; |
| 439 | u64 len; |
| 440 | |
| 441 | if (pl_end <= res->end) |
| 442 | len = pl->length; |
| 443 | else |
| 444 | len = res->start + resource_size(res) |
| 445 | - pl->start; |
| 446 | __add_badblock_range(bb, start - res->start, len); |
| 447 | continue; |
| 448 | } |
| 449 | /* Deal with overlap for poison starting before the namespace */ |
| 450 | if (pl->start < res->start) { |
| 451 | u64 len; |
| 452 | |
| 453 | if (pl_end < res->end) |
| 454 | len = pl->start + pl->length - res->start; |
| 455 | else |
| 456 | len = resource_size(res); |
| 457 | __add_badblock_range(bb, 0, len); |
| 458 | } |
| 459 | } |
| 460 | } |
| 461 | |
Vishal Verma | 0caeef6 | 2015-12-24 19:21:43 -0700 | [diff] [blame] | 462 | /** |
| 463 | * nvdimm_namespace_add_poison() - Convert a list of poison ranges to badblocks |
Vishal Verma | 0caeef6 | 2015-12-24 19:21:43 -0700 | [diff] [blame] | 464 | * @ndns: the namespace containing poison ranges |
Dan Williams | b95f5f4 | 2016-01-04 23:50:23 -0800 | [diff] [blame] | 465 | * @bb: badblocks instance to populate |
| 466 | * @offset: offset at the start of the namespace before 'sector 0' |
Vishal Verma | 0caeef6 | 2015-12-24 19:21:43 -0700 | [diff] [blame] | 467 | * |
| 468 | * The poison list generated during NFIT initialization may contain multiple, |
| 469 | * possibly overlapping ranges in the SPA (System Physical Address) space. |
| 470 | * Compare each of these ranges to the namespace currently being initialized, |
| 471 | * and add badblocks to the gendisk for all matching sub-ranges |
Vishal Verma | 0caeef6 | 2015-12-24 19:21:43 -0700 | [diff] [blame] | 472 | */ |
Dan Williams | b95f5f4 | 2016-01-04 23:50:23 -0800 | [diff] [blame] | 473 | void nvdimm_namespace_add_poison(struct nd_namespace_common *ndns, |
| 474 | struct badblocks *bb, resource_size_t offset) |
Vishal Verma | 0caeef6 | 2015-12-24 19:21:43 -0700 | [diff] [blame] | 475 | { |
| 476 | struct nd_namespace_io *nsio = to_nd_namespace_io(&ndns->dev); |
| 477 | struct nd_region *nd_region = to_nd_region(ndns->dev.parent); |
| 478 | struct nvdimm_bus *nvdimm_bus; |
| 479 | struct list_head *poison_list; |
Dan Williams | 5faecf4 | 2016-02-17 15:25:36 -0800 | [diff] [blame] | 480 | struct resource res = { |
| 481 | .start = nsio->res.start + offset, |
| 482 | .end = nsio->res.end, |
| 483 | }; |
Vishal Verma | 0caeef6 | 2015-12-24 19:21:43 -0700 | [diff] [blame] | 484 | |
| 485 | nvdimm_bus = to_nvdimm_bus(nd_region->dev.parent); |
| 486 | poison_list = &nvdimm_bus->poison_list; |
Vishal Verma | 0caeef6 | 2015-12-24 19:21:43 -0700 | [diff] [blame] | 487 | |
Dan Williams | 5faecf4 | 2016-02-17 15:25:36 -0800 | [diff] [blame] | 488 | nvdimm_bus_lock(&nvdimm_bus->dev); |
| 489 | namespace_add_poison(poison_list, bb, &res); |
| 490 | nvdimm_bus_unlock(&nvdimm_bus->dev); |
Vishal Verma | 0caeef6 | 2015-12-24 19:21:43 -0700 | [diff] [blame] | 491 | } |
| 492 | EXPORT_SYMBOL_GPL(nvdimm_namespace_add_poison); |
| 493 | |
Dan Williams | 5faecf4 | 2016-02-17 15:25:36 -0800 | [diff] [blame] | 494 | static int add_poison(struct nvdimm_bus *nvdimm_bus, u64 addr, u64 length) |
Vishal Verma | 0caeef6 | 2015-12-24 19:21:43 -0700 | [diff] [blame] | 495 | { |
| 496 | struct nd_poison *pl; |
| 497 | |
| 498 | pl = kzalloc(sizeof(*pl), GFP_KERNEL); |
| 499 | if (!pl) |
| 500 | return -ENOMEM; |
| 501 | |
| 502 | pl->start = addr; |
| 503 | pl->length = length; |
| 504 | list_add_tail(&pl->list, &nvdimm_bus->poison_list); |
| 505 | |
| 506 | return 0; |
| 507 | } |
| 508 | |
Dan Williams | 5faecf4 | 2016-02-17 15:25:36 -0800 | [diff] [blame] | 509 | static int bus_add_poison(struct nvdimm_bus *nvdimm_bus, u64 addr, u64 length) |
Vishal Verma | 0caeef6 | 2015-12-24 19:21:43 -0700 | [diff] [blame] | 510 | { |
| 511 | struct nd_poison *pl; |
| 512 | |
| 513 | if (list_empty(&nvdimm_bus->poison_list)) |
Dan Williams | 5faecf4 | 2016-02-17 15:25:36 -0800 | [diff] [blame] | 514 | return add_poison(nvdimm_bus, addr, length); |
Vishal Verma | 0caeef6 | 2015-12-24 19:21:43 -0700 | [diff] [blame] | 515 | |
| 516 | /* |
| 517 | * There is a chance this is a duplicate, check for those first. |
| 518 | * This will be the common case as ARS_STATUS returns all known |
| 519 | * errors in the SPA space, and we can't query it per region |
| 520 | */ |
| 521 | list_for_each_entry(pl, &nvdimm_bus->poison_list, list) |
| 522 | if (pl->start == addr) { |
| 523 | /* If length has changed, update this list entry */ |
| 524 | if (pl->length != length) |
| 525 | pl->length = length; |
| 526 | return 0; |
| 527 | } |
| 528 | |
| 529 | /* |
| 530 | * If not a duplicate or a simple length update, add the entry as is, |
| 531 | * as any overlapping ranges will get resolved when the list is consumed |
| 532 | * and converted to badblocks |
| 533 | */ |
Dan Williams | 5faecf4 | 2016-02-17 15:25:36 -0800 | [diff] [blame] | 534 | return add_poison(nvdimm_bus, addr, length); |
| 535 | } |
| 536 | |
| 537 | int nvdimm_bus_add_poison(struct nvdimm_bus *nvdimm_bus, u64 addr, u64 length) |
| 538 | { |
| 539 | int rc; |
| 540 | |
| 541 | nvdimm_bus_lock(&nvdimm_bus->dev); |
| 542 | rc = bus_add_poison(nvdimm_bus, addr, length); |
| 543 | nvdimm_bus_unlock(&nvdimm_bus->dev); |
| 544 | |
| 545 | return rc; |
Vishal Verma | 0caeef6 | 2015-12-24 19:21:43 -0700 | [diff] [blame] | 546 | } |
| 547 | EXPORT_SYMBOL_GPL(nvdimm_bus_add_poison); |
| 548 | |
| 549 | static void free_poison_list(struct list_head *poison_list) |
| 550 | { |
| 551 | struct nd_poison *pl, *next; |
| 552 | |
| 553 | list_for_each_entry_safe(pl, next, poison_list, list) { |
| 554 | list_del(&pl->list); |
| 555 | kfree(pl); |
| 556 | } |
| 557 | list_del_init(poison_list); |
| 558 | } |
| 559 | |
Dan Williams | e6dfb2d | 2015-04-25 03:56:17 -0400 | [diff] [blame] | 560 | static int child_unregister(struct device *dev, void *data) |
| 561 | { |
| 562 | /* |
| 563 | * the singular ndctl class device per bus needs to be |
| 564 | * "device_destroy"ed, so skip it here |
| 565 | * |
| 566 | * i.e. remove classless children |
| 567 | */ |
| 568 | if (dev->class) |
| 569 | /* pass */; |
| 570 | else |
Dan Williams | 4d88a97 | 2015-05-31 14:41:48 -0400 | [diff] [blame] | 571 | nd_device_unregister(dev, ND_SYNC); |
Dan Williams | e6dfb2d | 2015-04-25 03:56:17 -0400 | [diff] [blame] | 572 | return 0; |
| 573 | } |
| 574 | |
Dan Williams | b94d523 | 2015-05-19 22:54:31 -0400 | [diff] [blame] | 575 | void nvdimm_bus_unregister(struct nvdimm_bus *nvdimm_bus) |
| 576 | { |
| 577 | if (!nvdimm_bus) |
| 578 | return; |
Dan Williams | 45def22 | 2015-04-26 19:26:48 -0400 | [diff] [blame] | 579 | |
| 580 | mutex_lock(&nvdimm_bus_list_mutex); |
| 581 | list_del_init(&nvdimm_bus->list); |
| 582 | mutex_unlock(&nvdimm_bus_list_mutex); |
| 583 | |
Dan Williams | 4d88a97 | 2015-05-31 14:41:48 -0400 | [diff] [blame] | 584 | nd_synchronize(); |
Dan Williams | e6dfb2d | 2015-04-25 03:56:17 -0400 | [diff] [blame] | 585 | device_for_each_child(&nvdimm_bus->dev, NULL, child_unregister); |
Dan Williams | 5faecf4 | 2016-02-17 15:25:36 -0800 | [diff] [blame] | 586 | |
| 587 | nvdimm_bus_lock(&nvdimm_bus->dev); |
Vishal Verma | 0caeef6 | 2015-12-24 19:21:43 -0700 | [diff] [blame] | 588 | free_poison_list(&nvdimm_bus->poison_list); |
Dan Williams | 5faecf4 | 2016-02-17 15:25:36 -0800 | [diff] [blame] | 589 | nvdimm_bus_unlock(&nvdimm_bus->dev); |
| 590 | |
Dan Williams | 45def22 | 2015-04-26 19:26:48 -0400 | [diff] [blame] | 591 | nvdimm_bus_destroy_ndctl(nvdimm_bus); |
| 592 | |
Dan Williams | b94d523 | 2015-05-19 22:54:31 -0400 | [diff] [blame] | 593 | device_unregister(&nvdimm_bus->dev); |
| 594 | } |
| 595 | EXPORT_SYMBOL_GPL(nvdimm_bus_unregister); |
| 596 | |
Vishal Verma | 41cd8b7 | 2015-06-25 04:21:52 -0400 | [diff] [blame] | 597 | #ifdef CONFIG_BLK_DEV_INTEGRITY |
Vishal Verma | 41cd8b7 | 2015-06-25 04:21:52 -0400 | [diff] [blame] | 598 | int nd_integrity_init(struct gendisk *disk, unsigned long meta_size) |
| 599 | { |
Martin K. Petersen | 0f8087e | 2015-10-21 13:19:33 -0400 | [diff] [blame] | 600 | struct blk_integrity bi; |
Vishal Verma | 41cd8b7 | 2015-06-25 04:21:52 -0400 | [diff] [blame] | 601 | |
Vishal Verma | fcae695 | 2015-06-25 04:22:39 -0400 | [diff] [blame] | 602 | if (meta_size == 0) |
| 603 | return 0; |
| 604 | |
Dan Williams | 4125a09 | 2015-10-21 13:20:29 -0400 | [diff] [blame] | 605 | bi.profile = NULL; |
Martin K. Petersen | 0f8087e | 2015-10-21 13:19:33 -0400 | [diff] [blame] | 606 | bi.tuple_size = meta_size; |
| 607 | bi.tag_size = meta_size; |
| 608 | |
Martin K. Petersen | 25520d5 | 2015-10-21 13:19:49 -0400 | [diff] [blame] | 609 | blk_integrity_register(disk, &bi); |
Vishal Verma | 41cd8b7 | 2015-06-25 04:21:52 -0400 | [diff] [blame] | 610 | blk_queue_max_integrity_segments(disk->queue, 1); |
| 611 | |
| 612 | return 0; |
| 613 | } |
| 614 | EXPORT_SYMBOL(nd_integrity_init); |
| 615 | |
| 616 | #else /* CONFIG_BLK_DEV_INTEGRITY */ |
| 617 | int nd_integrity_init(struct gendisk *disk, unsigned long meta_size) |
| 618 | { |
| 619 | return 0; |
| 620 | } |
| 621 | EXPORT_SYMBOL(nd_integrity_init); |
| 622 | |
| 623 | #endif |
| 624 | |
Dan Williams | 45def22 | 2015-04-26 19:26:48 -0400 | [diff] [blame] | 625 | static __init int libnvdimm_init(void) |
| 626 | { |
Dan Williams | 4d88a97 | 2015-05-31 14:41:48 -0400 | [diff] [blame] | 627 | int rc; |
| 628 | |
| 629 | rc = nvdimm_bus_init(); |
| 630 | if (rc) |
| 631 | return rc; |
| 632 | rc = nvdimm_init(); |
| 633 | if (rc) |
| 634 | goto err_dimm; |
Dan Williams | 3d88002 | 2015-05-31 15:02:11 -0400 | [diff] [blame] | 635 | rc = nd_region_init(); |
| 636 | if (rc) |
| 637 | goto err_region; |
Dan Williams | 4d88a97 | 2015-05-31 14:41:48 -0400 | [diff] [blame] | 638 | return 0; |
Dan Williams | 3d88002 | 2015-05-31 15:02:11 -0400 | [diff] [blame] | 639 | err_region: |
| 640 | nvdimm_exit(); |
Dan Williams | 4d88a97 | 2015-05-31 14:41:48 -0400 | [diff] [blame] | 641 | err_dimm: |
| 642 | nvdimm_bus_exit(); |
| 643 | return rc; |
Dan Williams | 45def22 | 2015-04-26 19:26:48 -0400 | [diff] [blame] | 644 | } |
| 645 | |
| 646 | static __exit void libnvdimm_exit(void) |
| 647 | { |
| 648 | WARN_ON(!list_empty(&nvdimm_bus_list)); |
Dan Williams | 3d88002 | 2015-05-31 15:02:11 -0400 | [diff] [blame] | 649 | nd_region_exit(); |
Dan Williams | 4d88a97 | 2015-05-31 14:41:48 -0400 | [diff] [blame] | 650 | nvdimm_exit(); |
Dan Williams | 45def22 | 2015-04-26 19:26:48 -0400 | [diff] [blame] | 651 | nvdimm_bus_exit(); |
| 652 | } |
| 653 | |
Dan Williams | b94d523 | 2015-05-19 22:54:31 -0400 | [diff] [blame] | 654 | MODULE_LICENSE("GPL v2"); |
| 655 | MODULE_AUTHOR("Intel Corporation"); |
Dan Williams | 45def22 | 2015-04-26 19:26:48 -0400 | [diff] [blame] | 656 | subsys_initcall(libnvdimm_init); |
| 657 | module_exit(libnvdimm_exit); |