Bartosz Golaszewski | b1c1db9 | 2018-09-21 06:40:20 -0700 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Srinivas Kandagatla | eace75c | 2015-07-27 12:13:19 +0100 | [diff] [blame] | 2 | /* |
| 3 | * nvmem framework core. |
| 4 | * |
| 5 | * Copyright (C) 2015 Srinivas Kandagatla <srinivas.kandagatla@linaro.org> |
| 6 | * Copyright (C) 2013 Maxime Ripard <maxime.ripard@free-electrons.com> |
Srinivas Kandagatla | eace75c | 2015-07-27 12:13:19 +0100 | [diff] [blame] | 7 | */ |
| 8 | |
| 9 | #include <linux/device.h> |
| 10 | #include <linux/export.h> |
| 11 | #include <linux/fs.h> |
| 12 | #include <linux/idr.h> |
| 13 | #include <linux/init.h> |
Bartosz Golaszewski | c1de7f4 | 2018-09-21 06:40:08 -0700 | [diff] [blame] | 14 | #include <linux/kref.h> |
Srinivas Kandagatla | eace75c | 2015-07-27 12:13:19 +0100 | [diff] [blame] | 15 | #include <linux/module.h> |
| 16 | #include <linux/nvmem-consumer.h> |
| 17 | #include <linux/nvmem-provider.h> |
| 18 | #include <linux/of.h> |
Srinivas Kandagatla | eace75c | 2015-07-27 12:13:19 +0100 | [diff] [blame] | 19 | #include <linux/slab.h> |
| 20 | |
| 21 | struct nvmem_device { |
Srinivas Kandagatla | eace75c | 2015-07-27 12:13:19 +0100 | [diff] [blame] | 22 | struct module *owner; |
| 23 | struct device dev; |
| 24 | int stride; |
| 25 | int word_size; |
Srinivas Kandagatla | eace75c | 2015-07-27 12:13:19 +0100 | [diff] [blame] | 26 | int id; |
Bartosz Golaszewski | c1de7f4 | 2018-09-21 06:40:08 -0700 | [diff] [blame] | 27 | struct kref refcnt; |
Srinivas Kandagatla | eace75c | 2015-07-27 12:13:19 +0100 | [diff] [blame] | 28 | size_t size; |
| 29 | bool read_only; |
Andrew Lunn | b6c217a | 2016-02-26 20:59:19 +0100 | [diff] [blame] | 30 | int flags; |
| 31 | struct bin_attribute eeprom; |
| 32 | struct device *base_dev; |
Bartosz Golaszewski | c7235ee | 2018-09-21 06:40:14 -0700 | [diff] [blame] | 33 | struct list_head cells; |
Srinivas Kandagatla | 795ddd1 | 2016-04-24 20:28:05 +0100 | [diff] [blame] | 34 | nvmem_reg_read_t reg_read; |
| 35 | nvmem_reg_write_t reg_write; |
| 36 | void *priv; |
Srinivas Kandagatla | eace75c | 2015-07-27 12:13:19 +0100 | [diff] [blame] | 37 | }; |
| 38 | |
Andrew Lunn | b6c217a | 2016-02-26 20:59:19 +0100 | [diff] [blame] | 39 | #define FLAG_COMPAT BIT(0) |
| 40 | |
Srinivas Kandagatla | eace75c | 2015-07-27 12:13:19 +0100 | [diff] [blame] | 41 | struct nvmem_cell { |
| 42 | const char *name; |
| 43 | int offset; |
| 44 | int bytes; |
| 45 | int bit_offset; |
| 46 | int nbits; |
| 47 | struct nvmem_device *nvmem; |
| 48 | struct list_head node; |
| 49 | }; |
| 50 | |
| 51 | static DEFINE_MUTEX(nvmem_mutex); |
| 52 | static DEFINE_IDA(nvmem_ida); |
| 53 | |
Bartosz Golaszewski | b985f4c | 2018-09-21 06:40:15 -0700 | [diff] [blame] | 54 | static DEFINE_MUTEX(nvmem_cell_mutex); |
| 55 | static LIST_HEAD(nvmem_cell_tables); |
| 56 | |
Bartosz Golaszewski | 506157b | 2018-09-21 06:40:17 -0700 | [diff] [blame] | 57 | static DEFINE_MUTEX(nvmem_lookup_mutex); |
| 58 | static LIST_HEAD(nvmem_lookup_list); |
| 59 | |
Bartosz Golaszewski | bee1138 | 2018-09-21 06:40:19 -0700 | [diff] [blame] | 60 | static BLOCKING_NOTIFIER_HEAD(nvmem_notifier); |
| 61 | |
Andrew Lunn | b6c217a | 2016-02-26 20:59:19 +0100 | [diff] [blame] | 62 | #ifdef CONFIG_DEBUG_LOCK_ALLOC |
| 63 | static struct lock_class_key eeprom_lock_key; |
| 64 | #endif |
| 65 | |
Srinivas Kandagatla | eace75c | 2015-07-27 12:13:19 +0100 | [diff] [blame] | 66 | #define to_nvmem_device(d) container_of(d, struct nvmem_device, dev) |
Srinivas Kandagatla | 795ddd1 | 2016-04-24 20:28:05 +0100 | [diff] [blame] | 67 | static int nvmem_reg_read(struct nvmem_device *nvmem, unsigned int offset, |
| 68 | void *val, size_t bytes) |
| 69 | { |
| 70 | if (nvmem->reg_read) |
| 71 | return nvmem->reg_read(nvmem->priv, offset, val, bytes); |
| 72 | |
| 73 | return -EINVAL; |
| 74 | } |
| 75 | |
| 76 | static int nvmem_reg_write(struct nvmem_device *nvmem, unsigned int offset, |
| 77 | void *val, size_t bytes) |
| 78 | { |
| 79 | if (nvmem->reg_write) |
| 80 | return nvmem->reg_write(nvmem->priv, offset, val, bytes); |
| 81 | |
| 82 | return -EINVAL; |
| 83 | } |
Srinivas Kandagatla | eace75c | 2015-07-27 12:13:19 +0100 | [diff] [blame] | 84 | |
| 85 | static ssize_t bin_attr_nvmem_read(struct file *filp, struct kobject *kobj, |
| 86 | struct bin_attribute *attr, |
| 87 | char *buf, loff_t pos, size_t count) |
| 88 | { |
Andrew Lunn | b6c217a | 2016-02-26 20:59:19 +0100 | [diff] [blame] | 89 | struct device *dev; |
| 90 | struct nvmem_device *nvmem; |
Srinivas Kandagatla | eace75c | 2015-07-27 12:13:19 +0100 | [diff] [blame] | 91 | int rc; |
| 92 | |
Andrew Lunn | b6c217a | 2016-02-26 20:59:19 +0100 | [diff] [blame] | 93 | if (attr->private) |
| 94 | dev = attr->private; |
| 95 | else |
| 96 | dev = container_of(kobj, struct device, kobj); |
| 97 | nvmem = to_nvmem_device(dev); |
| 98 | |
Srinivas Kandagatla | eace75c | 2015-07-27 12:13:19 +0100 | [diff] [blame] | 99 | /* Stop the user from reading */ |
ZhengShunQian | 7c80688 | 2015-09-30 13:33:56 +0100 | [diff] [blame] | 100 | if (pos >= nvmem->size) |
Srinivas Kandagatla | eace75c | 2015-07-27 12:13:19 +0100 | [diff] [blame] | 101 | return 0; |
| 102 | |
Srinivas Kandagatla | 313a72f | 2015-11-17 09:12:41 +0000 | [diff] [blame] | 103 | if (count < nvmem->word_size) |
| 104 | return -EINVAL; |
| 105 | |
Srinivas Kandagatla | eace75c | 2015-07-27 12:13:19 +0100 | [diff] [blame] | 106 | if (pos + count > nvmem->size) |
| 107 | count = nvmem->size - pos; |
| 108 | |
| 109 | count = round_down(count, nvmem->word_size); |
| 110 | |
Srinivas Kandagatla | 795ddd1 | 2016-04-24 20:28:05 +0100 | [diff] [blame] | 111 | rc = nvmem_reg_read(nvmem, pos, buf, count); |
Srinivas Kandagatla | eace75c | 2015-07-27 12:13:19 +0100 | [diff] [blame] | 112 | |
Arnd Bergmann | 287980e | 2016-05-27 23:23:25 +0200 | [diff] [blame] | 113 | if (rc) |
Srinivas Kandagatla | eace75c | 2015-07-27 12:13:19 +0100 | [diff] [blame] | 114 | return rc; |
| 115 | |
| 116 | return count; |
| 117 | } |
| 118 | |
| 119 | static ssize_t bin_attr_nvmem_write(struct file *filp, struct kobject *kobj, |
| 120 | struct bin_attribute *attr, |
| 121 | char *buf, loff_t pos, size_t count) |
| 122 | { |
Andrew Lunn | b6c217a | 2016-02-26 20:59:19 +0100 | [diff] [blame] | 123 | struct device *dev; |
| 124 | struct nvmem_device *nvmem; |
Srinivas Kandagatla | eace75c | 2015-07-27 12:13:19 +0100 | [diff] [blame] | 125 | int rc; |
| 126 | |
Andrew Lunn | b6c217a | 2016-02-26 20:59:19 +0100 | [diff] [blame] | 127 | if (attr->private) |
| 128 | dev = attr->private; |
| 129 | else |
| 130 | dev = container_of(kobj, struct device, kobj); |
| 131 | nvmem = to_nvmem_device(dev); |
| 132 | |
Srinivas Kandagatla | eace75c | 2015-07-27 12:13:19 +0100 | [diff] [blame] | 133 | /* Stop the user from writing */ |
ZhengShunQian | 7c80688 | 2015-09-30 13:33:56 +0100 | [diff] [blame] | 134 | if (pos >= nvmem->size) |
Guy Shapiro | 38b0774 | 2017-09-11 11:00:11 +0200 | [diff] [blame] | 135 | return -EFBIG; |
Srinivas Kandagatla | eace75c | 2015-07-27 12:13:19 +0100 | [diff] [blame] | 136 | |
Srinivas Kandagatla | 313a72f | 2015-11-17 09:12:41 +0000 | [diff] [blame] | 137 | if (count < nvmem->word_size) |
| 138 | return -EINVAL; |
| 139 | |
Srinivas Kandagatla | eace75c | 2015-07-27 12:13:19 +0100 | [diff] [blame] | 140 | if (pos + count > nvmem->size) |
| 141 | count = nvmem->size - pos; |
| 142 | |
| 143 | count = round_down(count, nvmem->word_size); |
| 144 | |
Srinivas Kandagatla | 795ddd1 | 2016-04-24 20:28:05 +0100 | [diff] [blame] | 145 | rc = nvmem_reg_write(nvmem, pos, buf, count); |
Srinivas Kandagatla | eace75c | 2015-07-27 12:13:19 +0100 | [diff] [blame] | 146 | |
Arnd Bergmann | 287980e | 2016-05-27 23:23:25 +0200 | [diff] [blame] | 147 | if (rc) |
Srinivas Kandagatla | eace75c | 2015-07-27 12:13:19 +0100 | [diff] [blame] | 148 | return rc; |
| 149 | |
| 150 | return count; |
| 151 | } |
| 152 | |
| 153 | /* default read/write permissions */ |
| 154 | static struct bin_attribute bin_attr_rw_nvmem = { |
| 155 | .attr = { |
| 156 | .name = "nvmem", |
Bartosz Golaszewski | e7e07f4 | 2018-09-21 06:40:24 -0700 | [diff] [blame] | 157 | .mode = 0644, |
Srinivas Kandagatla | eace75c | 2015-07-27 12:13:19 +0100 | [diff] [blame] | 158 | }, |
| 159 | .read = bin_attr_nvmem_read, |
| 160 | .write = bin_attr_nvmem_write, |
| 161 | }; |
| 162 | |
| 163 | static struct bin_attribute *nvmem_bin_rw_attributes[] = { |
| 164 | &bin_attr_rw_nvmem, |
| 165 | NULL, |
| 166 | }; |
| 167 | |
| 168 | static const struct attribute_group nvmem_bin_rw_group = { |
| 169 | .bin_attrs = nvmem_bin_rw_attributes, |
| 170 | }; |
| 171 | |
| 172 | static const struct attribute_group *nvmem_rw_dev_groups[] = { |
| 173 | &nvmem_bin_rw_group, |
| 174 | NULL, |
| 175 | }; |
| 176 | |
| 177 | /* read only permission */ |
| 178 | static struct bin_attribute bin_attr_ro_nvmem = { |
| 179 | .attr = { |
| 180 | .name = "nvmem", |
Bartosz Golaszewski | e7e07f4 | 2018-09-21 06:40:24 -0700 | [diff] [blame] | 181 | .mode = 0444, |
Srinivas Kandagatla | eace75c | 2015-07-27 12:13:19 +0100 | [diff] [blame] | 182 | }, |
| 183 | .read = bin_attr_nvmem_read, |
| 184 | }; |
| 185 | |
| 186 | static struct bin_attribute *nvmem_bin_ro_attributes[] = { |
| 187 | &bin_attr_ro_nvmem, |
| 188 | NULL, |
| 189 | }; |
| 190 | |
| 191 | static const struct attribute_group nvmem_bin_ro_group = { |
| 192 | .bin_attrs = nvmem_bin_ro_attributes, |
| 193 | }; |
| 194 | |
| 195 | static const struct attribute_group *nvmem_ro_dev_groups[] = { |
| 196 | &nvmem_bin_ro_group, |
| 197 | NULL, |
| 198 | }; |
| 199 | |
Andrew Lunn | 811b0d6 | 2016-02-26 20:59:18 +0100 | [diff] [blame] | 200 | /* default read/write permissions, root only */ |
| 201 | static struct bin_attribute bin_attr_rw_root_nvmem = { |
| 202 | .attr = { |
| 203 | .name = "nvmem", |
Bartosz Golaszewski | e7e07f4 | 2018-09-21 06:40:24 -0700 | [diff] [blame] | 204 | .mode = 0600, |
Andrew Lunn | 811b0d6 | 2016-02-26 20:59:18 +0100 | [diff] [blame] | 205 | }, |
| 206 | .read = bin_attr_nvmem_read, |
| 207 | .write = bin_attr_nvmem_write, |
| 208 | }; |
| 209 | |
| 210 | static struct bin_attribute *nvmem_bin_rw_root_attributes[] = { |
| 211 | &bin_attr_rw_root_nvmem, |
| 212 | NULL, |
| 213 | }; |
| 214 | |
| 215 | static const struct attribute_group nvmem_bin_rw_root_group = { |
| 216 | .bin_attrs = nvmem_bin_rw_root_attributes, |
| 217 | }; |
| 218 | |
| 219 | static const struct attribute_group *nvmem_rw_root_dev_groups[] = { |
| 220 | &nvmem_bin_rw_root_group, |
| 221 | NULL, |
| 222 | }; |
| 223 | |
| 224 | /* read only permission, root only */ |
| 225 | static struct bin_attribute bin_attr_ro_root_nvmem = { |
| 226 | .attr = { |
| 227 | .name = "nvmem", |
Bartosz Golaszewski | e7e07f4 | 2018-09-21 06:40:24 -0700 | [diff] [blame] | 228 | .mode = 0400, |
Andrew Lunn | 811b0d6 | 2016-02-26 20:59:18 +0100 | [diff] [blame] | 229 | }, |
| 230 | .read = bin_attr_nvmem_read, |
| 231 | }; |
| 232 | |
| 233 | static struct bin_attribute *nvmem_bin_ro_root_attributes[] = { |
| 234 | &bin_attr_ro_root_nvmem, |
| 235 | NULL, |
| 236 | }; |
| 237 | |
| 238 | static const struct attribute_group nvmem_bin_ro_root_group = { |
| 239 | .bin_attrs = nvmem_bin_ro_root_attributes, |
| 240 | }; |
| 241 | |
| 242 | static const struct attribute_group *nvmem_ro_root_dev_groups[] = { |
| 243 | &nvmem_bin_ro_root_group, |
| 244 | NULL, |
| 245 | }; |
| 246 | |
Srinivas Kandagatla | eace75c | 2015-07-27 12:13:19 +0100 | [diff] [blame] | 247 | static void nvmem_release(struct device *dev) |
| 248 | { |
| 249 | struct nvmem_device *nvmem = to_nvmem_device(dev); |
| 250 | |
| 251 | ida_simple_remove(&nvmem_ida, nvmem->id); |
| 252 | kfree(nvmem); |
| 253 | } |
| 254 | |
| 255 | static const struct device_type nvmem_provider_type = { |
| 256 | .release = nvmem_release, |
| 257 | }; |
| 258 | |
| 259 | static struct bus_type nvmem_bus_type = { |
| 260 | .name = "nvmem", |
| 261 | }; |
| 262 | |
| 263 | static int of_nvmem_match(struct device *dev, void *nvmem_np) |
| 264 | { |
| 265 | return dev->of_node == nvmem_np; |
| 266 | } |
| 267 | |
| 268 | static struct nvmem_device *of_nvmem_find(struct device_node *nvmem_np) |
| 269 | { |
| 270 | struct device *d; |
| 271 | |
| 272 | if (!nvmem_np) |
| 273 | return NULL; |
| 274 | |
| 275 | d = bus_find_device(&nvmem_bus_type, NULL, nvmem_np, of_nvmem_match); |
| 276 | |
| 277 | if (!d) |
| 278 | return NULL; |
| 279 | |
| 280 | return to_nvmem_device(d); |
| 281 | } |
| 282 | |
Bartosz Golaszewski | 506157b | 2018-09-21 06:40:17 -0700 | [diff] [blame] | 283 | static struct nvmem_device *nvmem_find(const char *name) |
| 284 | { |
| 285 | struct device *d; |
| 286 | |
| 287 | d = bus_find_device_by_name(&nvmem_bus_type, NULL, name); |
| 288 | |
| 289 | if (!d) |
| 290 | return NULL; |
| 291 | |
| 292 | return to_nvmem_device(d); |
| 293 | } |
| 294 | |
Srinivas Kandagatla | eace75c | 2015-07-27 12:13:19 +0100 | [diff] [blame] | 295 | static void nvmem_cell_drop(struct nvmem_cell *cell) |
| 296 | { |
Bartosz Golaszewski | bee1138 | 2018-09-21 06:40:19 -0700 | [diff] [blame] | 297 | blocking_notifier_call_chain(&nvmem_notifier, NVMEM_CELL_REMOVE, cell); |
Bartosz Golaszewski | c7235ee | 2018-09-21 06:40:14 -0700 | [diff] [blame] | 298 | mutex_lock(&nvmem_mutex); |
Srinivas Kandagatla | eace75c | 2015-07-27 12:13:19 +0100 | [diff] [blame] | 299 | list_del(&cell->node); |
Bartosz Golaszewski | c7235ee | 2018-09-21 06:40:14 -0700 | [diff] [blame] | 300 | mutex_unlock(&nvmem_mutex); |
Rob Herring | badcdff | 2018-10-03 18:47:04 +0100 | [diff] [blame] | 301 | kfree(cell->name); |
Srinivas Kandagatla | eace75c | 2015-07-27 12:13:19 +0100 | [diff] [blame] | 302 | kfree(cell); |
| 303 | } |
| 304 | |
| 305 | static void nvmem_device_remove_all_cells(const struct nvmem_device *nvmem) |
| 306 | { |
Bartosz Golaszewski | 1852183 | 2018-09-21 06:40:05 -0700 | [diff] [blame] | 307 | struct nvmem_cell *cell, *p; |
Srinivas Kandagatla | eace75c | 2015-07-27 12:13:19 +0100 | [diff] [blame] | 308 | |
Bartosz Golaszewski | c7235ee | 2018-09-21 06:40:14 -0700 | [diff] [blame] | 309 | list_for_each_entry_safe(cell, p, &nvmem->cells, node) |
| 310 | nvmem_cell_drop(cell); |
Srinivas Kandagatla | eace75c | 2015-07-27 12:13:19 +0100 | [diff] [blame] | 311 | } |
| 312 | |
| 313 | static void nvmem_cell_add(struct nvmem_cell *cell) |
| 314 | { |
Bartosz Golaszewski | c7235ee | 2018-09-21 06:40:14 -0700 | [diff] [blame] | 315 | mutex_lock(&nvmem_mutex); |
| 316 | list_add_tail(&cell->node, &cell->nvmem->cells); |
| 317 | mutex_unlock(&nvmem_mutex); |
Bartosz Golaszewski | bee1138 | 2018-09-21 06:40:19 -0700 | [diff] [blame] | 318 | blocking_notifier_call_chain(&nvmem_notifier, NVMEM_CELL_ADD, cell); |
Srinivas Kandagatla | eace75c | 2015-07-27 12:13:19 +0100 | [diff] [blame] | 319 | } |
| 320 | |
| 321 | static int nvmem_cell_info_to_nvmem_cell(struct nvmem_device *nvmem, |
| 322 | const struct nvmem_cell_info *info, |
| 323 | struct nvmem_cell *cell) |
| 324 | { |
| 325 | cell->nvmem = nvmem; |
| 326 | cell->offset = info->offset; |
| 327 | cell->bytes = info->bytes; |
| 328 | cell->name = info->name; |
| 329 | |
| 330 | cell->bit_offset = info->bit_offset; |
| 331 | cell->nbits = info->nbits; |
| 332 | |
| 333 | if (cell->nbits) |
| 334 | cell->bytes = DIV_ROUND_UP(cell->nbits + cell->bit_offset, |
| 335 | BITS_PER_BYTE); |
| 336 | |
| 337 | if (!IS_ALIGNED(cell->offset, nvmem->stride)) { |
| 338 | dev_err(&nvmem->dev, |
| 339 | "cell %s unaligned to nvmem stride %d\n", |
| 340 | cell->name, nvmem->stride); |
| 341 | return -EINVAL; |
| 342 | } |
| 343 | |
| 344 | return 0; |
| 345 | } |
| 346 | |
Andrew Lunn | b3db17e | 2018-05-11 12:06:56 +0100 | [diff] [blame] | 347 | /** |
| 348 | * nvmem_add_cells() - Add cell information to an nvmem device |
| 349 | * |
| 350 | * @nvmem: nvmem device to add cells to. |
| 351 | * @info: nvmem cell info to add to the device |
| 352 | * @ncells: number of cells in info |
| 353 | * |
| 354 | * Return: 0 or negative error code on failure. |
| 355 | */ |
Srinivas Kandagatla | ef92ab3 | 2018-09-21 06:40:26 -0700 | [diff] [blame] | 356 | static int nvmem_add_cells(struct nvmem_device *nvmem, |
Andrew Lunn | b3db17e | 2018-05-11 12:06:56 +0100 | [diff] [blame] | 357 | const struct nvmem_cell_info *info, |
| 358 | int ncells) |
Srinivas Kandagatla | eace75c | 2015-07-27 12:13:19 +0100 | [diff] [blame] | 359 | { |
| 360 | struct nvmem_cell **cells; |
Srinivas Kandagatla | eace75c | 2015-07-27 12:13:19 +0100 | [diff] [blame] | 361 | int i, rval; |
| 362 | |
Andrew Lunn | b3db17e | 2018-05-11 12:06:56 +0100 | [diff] [blame] | 363 | cells = kcalloc(ncells, sizeof(*cells), GFP_KERNEL); |
Srinivas Kandagatla | eace75c | 2015-07-27 12:13:19 +0100 | [diff] [blame] | 364 | if (!cells) |
| 365 | return -ENOMEM; |
| 366 | |
Andrew Lunn | b3db17e | 2018-05-11 12:06:56 +0100 | [diff] [blame] | 367 | for (i = 0; i < ncells; i++) { |
Srinivas Kandagatla | eace75c | 2015-07-27 12:13:19 +0100 | [diff] [blame] | 368 | cells[i] = kzalloc(sizeof(**cells), GFP_KERNEL); |
| 369 | if (!cells[i]) { |
| 370 | rval = -ENOMEM; |
| 371 | goto err; |
| 372 | } |
| 373 | |
| 374 | rval = nvmem_cell_info_to_nvmem_cell(nvmem, &info[i], cells[i]); |
Arnd Bergmann | 287980e | 2016-05-27 23:23:25 +0200 | [diff] [blame] | 375 | if (rval) { |
Srinivas Kandagatla | eace75c | 2015-07-27 12:13:19 +0100 | [diff] [blame] | 376 | kfree(cells[i]); |
| 377 | goto err; |
| 378 | } |
| 379 | |
| 380 | nvmem_cell_add(cells[i]); |
| 381 | } |
| 382 | |
Srinivas Kandagatla | eace75c | 2015-07-27 12:13:19 +0100 | [diff] [blame] | 383 | /* remove tmp array */ |
| 384 | kfree(cells); |
| 385 | |
| 386 | return 0; |
| 387 | err: |
Rasmus Villemoes | dfdf141 | 2016-02-08 22:04:29 +0100 | [diff] [blame] | 388 | while (i--) |
Srinivas Kandagatla | eace75c | 2015-07-27 12:13:19 +0100 | [diff] [blame] | 389 | nvmem_cell_drop(cells[i]); |
| 390 | |
Rasmus Villemoes | dfdf141 | 2016-02-08 22:04:29 +0100 | [diff] [blame] | 391 | kfree(cells); |
| 392 | |
Srinivas Kandagatla | eace75c | 2015-07-27 12:13:19 +0100 | [diff] [blame] | 393 | return rval; |
| 394 | } |
| 395 | |
Andrew Lunn | b6c217a | 2016-02-26 20:59:19 +0100 | [diff] [blame] | 396 | /* |
| 397 | * nvmem_setup_compat() - Create an additional binary entry in |
| 398 | * drivers sys directory, to be backwards compatible with the older |
| 399 | * drivers/misc/eeprom drivers. |
| 400 | */ |
| 401 | static int nvmem_setup_compat(struct nvmem_device *nvmem, |
| 402 | const struct nvmem_config *config) |
| 403 | { |
| 404 | int rval; |
| 405 | |
| 406 | if (!config->base_dev) |
| 407 | return -EINVAL; |
| 408 | |
| 409 | if (nvmem->read_only) |
| 410 | nvmem->eeprom = bin_attr_ro_root_nvmem; |
| 411 | else |
| 412 | nvmem->eeprom = bin_attr_rw_root_nvmem; |
| 413 | nvmem->eeprom.attr.name = "eeprom"; |
| 414 | nvmem->eeprom.size = nvmem->size; |
| 415 | #ifdef CONFIG_DEBUG_LOCK_ALLOC |
| 416 | nvmem->eeprom.attr.key = &eeprom_lock_key; |
| 417 | #endif |
| 418 | nvmem->eeprom.private = &nvmem->dev; |
| 419 | nvmem->base_dev = config->base_dev; |
| 420 | |
| 421 | rval = device_create_bin_file(nvmem->base_dev, &nvmem->eeprom); |
| 422 | if (rval) { |
| 423 | dev_err(&nvmem->dev, |
| 424 | "Failed to create eeprom binary file %d\n", rval); |
| 425 | return rval; |
| 426 | } |
| 427 | |
| 428 | nvmem->flags |= FLAG_COMPAT; |
| 429 | |
| 430 | return 0; |
| 431 | } |
| 432 | |
Bartosz Golaszewski | bee1138 | 2018-09-21 06:40:19 -0700 | [diff] [blame] | 433 | /** |
| 434 | * nvmem_register_notifier() - Register a notifier block for nvmem events. |
| 435 | * |
| 436 | * @nb: notifier block to be called on nvmem events. |
| 437 | * |
| 438 | * Return: 0 on success, negative error number on failure. |
| 439 | */ |
| 440 | int nvmem_register_notifier(struct notifier_block *nb) |
| 441 | { |
| 442 | return blocking_notifier_chain_register(&nvmem_notifier, nb); |
| 443 | } |
| 444 | EXPORT_SYMBOL_GPL(nvmem_register_notifier); |
| 445 | |
| 446 | /** |
| 447 | * nvmem_unregister_notifier() - Unregister a notifier block for nvmem events. |
| 448 | * |
| 449 | * @nb: notifier block to be unregistered. |
| 450 | * |
| 451 | * Return: 0 on success, negative error number on failure. |
| 452 | */ |
| 453 | int nvmem_unregister_notifier(struct notifier_block *nb) |
| 454 | { |
| 455 | return blocking_notifier_chain_unregister(&nvmem_notifier, nb); |
| 456 | } |
| 457 | EXPORT_SYMBOL_GPL(nvmem_unregister_notifier); |
| 458 | |
Bartosz Golaszewski | b985f4c | 2018-09-21 06:40:15 -0700 | [diff] [blame] | 459 | static int nvmem_add_cells_from_table(struct nvmem_device *nvmem) |
| 460 | { |
| 461 | const struct nvmem_cell_info *info; |
| 462 | struct nvmem_cell_table *table; |
| 463 | struct nvmem_cell *cell; |
| 464 | int rval = 0, i; |
| 465 | |
| 466 | mutex_lock(&nvmem_cell_mutex); |
| 467 | list_for_each_entry(table, &nvmem_cell_tables, node) { |
| 468 | if (strcmp(nvmem_dev_name(nvmem), table->nvmem_name) == 0) { |
| 469 | for (i = 0; i < table->ncells; i++) { |
| 470 | info = &table->cells[i]; |
| 471 | |
| 472 | cell = kzalloc(sizeof(*cell), GFP_KERNEL); |
| 473 | if (!cell) { |
| 474 | rval = -ENOMEM; |
| 475 | goto out; |
| 476 | } |
| 477 | |
| 478 | rval = nvmem_cell_info_to_nvmem_cell(nvmem, |
| 479 | info, |
| 480 | cell); |
| 481 | if (rval) { |
| 482 | kfree(cell); |
| 483 | goto out; |
| 484 | } |
| 485 | |
| 486 | nvmem_cell_add(cell); |
| 487 | } |
| 488 | } |
| 489 | } |
| 490 | |
| 491 | out: |
| 492 | mutex_unlock(&nvmem_cell_mutex); |
| 493 | return rval; |
| 494 | } |
| 495 | |
Bartosz Golaszewski | e888d44 | 2018-09-21 06:40:16 -0700 | [diff] [blame] | 496 | static struct nvmem_cell * |
Bartosz Golaszewski | 506157b | 2018-09-21 06:40:17 -0700 | [diff] [blame] | 497 | nvmem_find_cell_by_name(struct nvmem_device *nvmem, const char *cell_id) |
| 498 | { |
| 499 | struct nvmem_cell *cell = NULL; |
| 500 | |
| 501 | mutex_lock(&nvmem_mutex); |
| 502 | list_for_each_entry(cell, &nvmem->cells, node) { |
| 503 | if (strcmp(cell_id, cell->name) == 0) |
| 504 | break; |
| 505 | } |
| 506 | mutex_unlock(&nvmem_mutex); |
| 507 | |
| 508 | return cell; |
| 509 | } |
| 510 | |
Bartosz Golaszewski | e888d44 | 2018-09-21 06:40:16 -0700 | [diff] [blame] | 511 | static int nvmem_add_cells_from_of(struct nvmem_device *nvmem) |
| 512 | { |
| 513 | struct device_node *parent, *child; |
| 514 | struct device *dev = &nvmem->dev; |
| 515 | struct nvmem_cell *cell; |
| 516 | const __be32 *addr; |
| 517 | int len; |
| 518 | |
| 519 | parent = dev->of_node; |
| 520 | |
| 521 | for_each_child_of_node(parent, child) { |
| 522 | addr = of_get_property(child, "reg", &len); |
| 523 | if (!addr || (len < 2 * sizeof(u32))) { |
| 524 | dev_err(dev, "nvmem: invalid reg on %pOF\n", child); |
| 525 | return -EINVAL; |
| 526 | } |
| 527 | |
| 528 | cell = kzalloc(sizeof(*cell), GFP_KERNEL); |
| 529 | if (!cell) |
| 530 | return -ENOMEM; |
| 531 | |
| 532 | cell->nvmem = nvmem; |
| 533 | cell->offset = be32_to_cpup(addr++); |
| 534 | cell->bytes = be32_to_cpup(addr); |
Rob Herring | badcdff | 2018-10-03 18:47:04 +0100 | [diff] [blame] | 535 | cell->name = kasprintf(GFP_KERNEL, "%pOFn", child); |
Bartosz Golaszewski | e888d44 | 2018-09-21 06:40:16 -0700 | [diff] [blame] | 536 | |
| 537 | addr = of_get_property(child, "bits", &len); |
| 538 | if (addr && len == (2 * sizeof(u32))) { |
| 539 | cell->bit_offset = be32_to_cpup(addr++); |
| 540 | cell->nbits = be32_to_cpup(addr); |
| 541 | } |
| 542 | |
| 543 | if (cell->nbits) |
| 544 | cell->bytes = DIV_ROUND_UP( |
| 545 | cell->nbits + cell->bit_offset, |
| 546 | BITS_PER_BYTE); |
| 547 | |
| 548 | if (!IS_ALIGNED(cell->offset, nvmem->stride)) { |
| 549 | dev_err(dev, "cell %s unaligned to nvmem stride %d\n", |
| 550 | cell->name, nvmem->stride); |
| 551 | /* Cells already added will be freed later. */ |
Rob Herring | badcdff | 2018-10-03 18:47:04 +0100 | [diff] [blame] | 552 | kfree(cell->name); |
Bartosz Golaszewski | e888d44 | 2018-09-21 06:40:16 -0700 | [diff] [blame] | 553 | kfree(cell); |
| 554 | return -EINVAL; |
| 555 | } |
| 556 | |
| 557 | nvmem_cell_add(cell); |
| 558 | } |
| 559 | |
| 560 | return 0; |
| 561 | } |
| 562 | |
Srinivas Kandagatla | eace75c | 2015-07-27 12:13:19 +0100 | [diff] [blame] | 563 | /** |
| 564 | * nvmem_register() - Register a nvmem device for given nvmem_config. |
| 565 | * Also creates an binary entry in /sys/bus/nvmem/devices/dev-name/nvmem |
| 566 | * |
| 567 | * @config: nvmem device configuration with which nvmem device is created. |
| 568 | * |
| 569 | * Return: Will be an ERR_PTR() on error or a valid pointer to nvmem_device |
| 570 | * on success. |
| 571 | */ |
| 572 | |
| 573 | struct nvmem_device *nvmem_register(const struct nvmem_config *config) |
| 574 | { |
| 575 | struct nvmem_device *nvmem; |
Srinivas Kandagatla | eace75c | 2015-07-27 12:13:19 +0100 | [diff] [blame] | 576 | int rval; |
| 577 | |
| 578 | if (!config->dev) |
| 579 | return ERR_PTR(-EINVAL); |
| 580 | |
Srinivas Kandagatla | eace75c | 2015-07-27 12:13:19 +0100 | [diff] [blame] | 581 | nvmem = kzalloc(sizeof(*nvmem), GFP_KERNEL); |
| 582 | if (!nvmem) |
| 583 | return ERR_PTR(-ENOMEM); |
| 584 | |
| 585 | rval = ida_simple_get(&nvmem_ida, 0, 0, GFP_KERNEL); |
| 586 | if (rval < 0) { |
| 587 | kfree(nvmem); |
| 588 | return ERR_PTR(rval); |
| 589 | } |
| 590 | |
Bartosz Golaszewski | c1de7f4 | 2018-09-21 06:40:08 -0700 | [diff] [blame] | 591 | kref_init(&nvmem->refcnt); |
Bartosz Golaszewski | c7235ee | 2018-09-21 06:40:14 -0700 | [diff] [blame] | 592 | INIT_LIST_HEAD(&nvmem->cells); |
Bartosz Golaszewski | c1de7f4 | 2018-09-21 06:40:08 -0700 | [diff] [blame] | 593 | |
Srinivas Kandagatla | eace75c | 2015-07-27 12:13:19 +0100 | [diff] [blame] | 594 | nvmem->id = rval; |
Srinivas Kandagatla | eace75c | 2015-07-27 12:13:19 +0100 | [diff] [blame] | 595 | nvmem->owner = config->owner; |
Masahiro Yamada | 17eb18d | 2017-10-21 01:57:42 +0900 | [diff] [blame] | 596 | if (!nvmem->owner && config->dev->driver) |
| 597 | nvmem->owner = config->dev->driver->owner; |
Heiner Kallweit | 99897ef | 2017-12-15 14:06:05 +0000 | [diff] [blame] | 598 | nvmem->stride = config->stride ?: 1; |
| 599 | nvmem->word_size = config->word_size ?: 1; |
Srinivas Kandagatla | 795ddd1 | 2016-04-24 20:28:05 +0100 | [diff] [blame] | 600 | nvmem->size = config->size; |
Srinivas Kandagatla | eace75c | 2015-07-27 12:13:19 +0100 | [diff] [blame] | 601 | nvmem->dev.type = &nvmem_provider_type; |
| 602 | nvmem->dev.bus = &nvmem_bus_type; |
| 603 | nvmem->dev.parent = config->dev; |
Srinivas Kandagatla | 795ddd1 | 2016-04-24 20:28:05 +0100 | [diff] [blame] | 604 | nvmem->priv = config->priv; |
| 605 | nvmem->reg_read = config->reg_read; |
| 606 | nvmem->reg_write = config->reg_write; |
Heiner Kallweit | fc2f997 | 2017-12-15 14:06:06 +0000 | [diff] [blame] | 607 | nvmem->dev.of_node = config->dev->of_node; |
Andrey Smirnov | fd0f490 | 2018-03-09 14:46:56 +0000 | [diff] [blame] | 608 | |
| 609 | if (config->id == -1 && config->name) { |
| 610 | dev_set_name(&nvmem->dev, "%s", config->name); |
| 611 | } else { |
| 612 | dev_set_name(&nvmem->dev, "%s%d", |
| 613 | config->name ? : "nvmem", |
| 614 | config->name ? config->id : nvmem->id); |
| 615 | } |
Srinivas Kandagatla | eace75c | 2015-07-27 12:13:19 +0100 | [diff] [blame] | 616 | |
Heiner Kallweit | fc2f997 | 2017-12-15 14:06:06 +0000 | [diff] [blame] | 617 | nvmem->read_only = device_property_present(config->dev, "read-only") | |
Srinivas Kandagatla | eace75c | 2015-07-27 12:13:19 +0100 | [diff] [blame] | 618 | config->read_only; |
| 619 | |
Andrew Lunn | 811b0d6 | 2016-02-26 20:59:18 +0100 | [diff] [blame] | 620 | if (config->root_only) |
| 621 | nvmem->dev.groups = nvmem->read_only ? |
| 622 | nvmem_ro_root_dev_groups : |
| 623 | nvmem_rw_root_dev_groups; |
| 624 | else |
| 625 | nvmem->dev.groups = nvmem->read_only ? |
| 626 | nvmem_ro_dev_groups : |
| 627 | nvmem_rw_dev_groups; |
Srinivas Kandagatla | eace75c | 2015-07-27 12:13:19 +0100 | [diff] [blame] | 628 | |
| 629 | device_initialize(&nvmem->dev); |
| 630 | |
| 631 | dev_dbg(&nvmem->dev, "Registering nvmem device %s\n", config->name); |
| 632 | |
| 633 | rval = device_add(&nvmem->dev); |
Andrew Lunn | b6c217a | 2016-02-26 20:59:19 +0100 | [diff] [blame] | 634 | if (rval) |
Johan Hovold | 3360acd | 2017-06-09 10:59:07 +0100 | [diff] [blame] | 635 | goto err_put_device; |
Andrew Lunn | b6c217a | 2016-02-26 20:59:19 +0100 | [diff] [blame] | 636 | |
| 637 | if (config->compat) { |
| 638 | rval = nvmem_setup_compat(nvmem, config); |
| 639 | if (rval) |
Johan Hovold | 3360acd | 2017-06-09 10:59:07 +0100 | [diff] [blame] | 640 | goto err_device_del; |
Srinivas Kandagatla | eace75c | 2015-07-27 12:13:19 +0100 | [diff] [blame] | 641 | } |
| 642 | |
Bartosz Golaszewski | fa72d84 | 2018-09-21 06:40:07 -0700 | [diff] [blame] | 643 | if (config->cells) { |
| 644 | rval = nvmem_add_cells(nvmem, config->cells, config->ncells); |
| 645 | if (rval) |
| 646 | goto err_teardown_compat; |
| 647 | } |
Srinivas Kandagatla | eace75c | 2015-07-27 12:13:19 +0100 | [diff] [blame] | 648 | |
Bartosz Golaszewski | b985f4c | 2018-09-21 06:40:15 -0700 | [diff] [blame] | 649 | rval = nvmem_add_cells_from_table(nvmem); |
| 650 | if (rval) |
| 651 | goto err_remove_cells; |
| 652 | |
Bartosz Golaszewski | e888d44 | 2018-09-21 06:40:16 -0700 | [diff] [blame] | 653 | rval = nvmem_add_cells_from_of(nvmem); |
| 654 | if (rval) |
| 655 | goto err_remove_cells; |
| 656 | |
Bartosz Golaszewski | bee1138 | 2018-09-21 06:40:19 -0700 | [diff] [blame] | 657 | rval = blocking_notifier_call_chain(&nvmem_notifier, NVMEM_ADD, nvmem); |
| 658 | if (rval) |
| 659 | goto err_remove_cells; |
| 660 | |
Srinivas Kandagatla | eace75c | 2015-07-27 12:13:19 +0100 | [diff] [blame] | 661 | return nvmem; |
Johan Hovold | 3360acd | 2017-06-09 10:59:07 +0100 | [diff] [blame] | 662 | |
Bartosz Golaszewski | b985f4c | 2018-09-21 06:40:15 -0700 | [diff] [blame] | 663 | err_remove_cells: |
| 664 | nvmem_device_remove_all_cells(nvmem); |
Bartosz Golaszewski | fa72d84 | 2018-09-21 06:40:07 -0700 | [diff] [blame] | 665 | err_teardown_compat: |
| 666 | if (config->compat) |
| 667 | device_remove_bin_file(nvmem->base_dev, &nvmem->eeprom); |
Johan Hovold | 3360acd | 2017-06-09 10:59:07 +0100 | [diff] [blame] | 668 | err_device_del: |
| 669 | device_del(&nvmem->dev); |
| 670 | err_put_device: |
| 671 | put_device(&nvmem->dev); |
| 672 | |
Andrew Lunn | b6c217a | 2016-02-26 20:59:19 +0100 | [diff] [blame] | 673 | return ERR_PTR(rval); |
Srinivas Kandagatla | eace75c | 2015-07-27 12:13:19 +0100 | [diff] [blame] | 674 | } |
| 675 | EXPORT_SYMBOL_GPL(nvmem_register); |
| 676 | |
Bartosz Golaszewski | c1de7f4 | 2018-09-21 06:40:08 -0700 | [diff] [blame] | 677 | static void nvmem_device_release(struct kref *kref) |
| 678 | { |
| 679 | struct nvmem_device *nvmem; |
| 680 | |
| 681 | nvmem = container_of(kref, struct nvmem_device, refcnt); |
| 682 | |
Bartosz Golaszewski | bee1138 | 2018-09-21 06:40:19 -0700 | [diff] [blame] | 683 | blocking_notifier_call_chain(&nvmem_notifier, NVMEM_REMOVE, nvmem); |
| 684 | |
Bartosz Golaszewski | c1de7f4 | 2018-09-21 06:40:08 -0700 | [diff] [blame] | 685 | if (nvmem->flags & FLAG_COMPAT) |
| 686 | device_remove_bin_file(nvmem->base_dev, &nvmem->eeprom); |
| 687 | |
| 688 | nvmem_device_remove_all_cells(nvmem); |
| 689 | device_del(&nvmem->dev); |
| 690 | put_device(&nvmem->dev); |
| 691 | } |
| 692 | |
Srinivas Kandagatla | eace75c | 2015-07-27 12:13:19 +0100 | [diff] [blame] | 693 | /** |
| 694 | * nvmem_unregister() - Unregister previously registered nvmem device |
| 695 | * |
| 696 | * @nvmem: Pointer to previously registered nvmem device. |
Srinivas Kandagatla | eace75c | 2015-07-27 12:13:19 +0100 | [diff] [blame] | 697 | */ |
Bartosz Golaszewski | bf58e88 | 2018-09-21 06:40:13 -0700 | [diff] [blame] | 698 | void nvmem_unregister(struct nvmem_device *nvmem) |
Srinivas Kandagatla | eace75c | 2015-07-27 12:13:19 +0100 | [diff] [blame] | 699 | { |
Bartosz Golaszewski | c1de7f4 | 2018-09-21 06:40:08 -0700 | [diff] [blame] | 700 | kref_put(&nvmem->refcnt, nvmem_device_release); |
Srinivas Kandagatla | eace75c | 2015-07-27 12:13:19 +0100 | [diff] [blame] | 701 | } |
| 702 | EXPORT_SYMBOL_GPL(nvmem_unregister); |
| 703 | |
Andrey Smirnov | f1f50ec | 2018-03-09 14:46:57 +0000 | [diff] [blame] | 704 | static void devm_nvmem_release(struct device *dev, void *res) |
| 705 | { |
Bartosz Golaszewski | bf58e88 | 2018-09-21 06:40:13 -0700 | [diff] [blame] | 706 | nvmem_unregister(*(struct nvmem_device **)res); |
Andrey Smirnov | f1f50ec | 2018-03-09 14:46:57 +0000 | [diff] [blame] | 707 | } |
| 708 | |
| 709 | /** |
| 710 | * devm_nvmem_register() - Register a managed nvmem device for given |
| 711 | * nvmem_config. |
| 712 | * Also creates an binary entry in /sys/bus/nvmem/devices/dev-name/nvmem |
| 713 | * |
Srinivas Kandagatla | b378c77 | 2018-05-11 12:07:02 +0100 | [diff] [blame] | 714 | * @dev: Device that uses the nvmem device. |
Andrey Smirnov | f1f50ec | 2018-03-09 14:46:57 +0000 | [diff] [blame] | 715 | * @config: nvmem device configuration with which nvmem device is created. |
| 716 | * |
| 717 | * Return: Will be an ERR_PTR() on error or a valid pointer to nvmem_device |
| 718 | * on success. |
| 719 | */ |
| 720 | struct nvmem_device *devm_nvmem_register(struct device *dev, |
| 721 | const struct nvmem_config *config) |
| 722 | { |
| 723 | struct nvmem_device **ptr, *nvmem; |
| 724 | |
| 725 | ptr = devres_alloc(devm_nvmem_release, sizeof(*ptr), GFP_KERNEL); |
| 726 | if (!ptr) |
| 727 | return ERR_PTR(-ENOMEM); |
| 728 | |
| 729 | nvmem = nvmem_register(config); |
| 730 | |
| 731 | if (!IS_ERR(nvmem)) { |
| 732 | *ptr = nvmem; |
| 733 | devres_add(dev, ptr); |
| 734 | } else { |
| 735 | devres_free(ptr); |
| 736 | } |
| 737 | |
| 738 | return nvmem; |
| 739 | } |
| 740 | EXPORT_SYMBOL_GPL(devm_nvmem_register); |
| 741 | |
| 742 | static int devm_nvmem_match(struct device *dev, void *res, void *data) |
| 743 | { |
| 744 | struct nvmem_device **r = res; |
| 745 | |
| 746 | return *r == data; |
| 747 | } |
| 748 | |
| 749 | /** |
| 750 | * devm_nvmem_unregister() - Unregister previously registered managed nvmem |
| 751 | * device. |
| 752 | * |
Srinivas Kandagatla | b378c77 | 2018-05-11 12:07:02 +0100 | [diff] [blame] | 753 | * @dev: Device that uses the nvmem device. |
Andrey Smirnov | f1f50ec | 2018-03-09 14:46:57 +0000 | [diff] [blame] | 754 | * @nvmem: Pointer to previously registered nvmem device. |
| 755 | * |
| 756 | * Return: Will be an negative on error or a zero on success. |
| 757 | */ |
| 758 | int devm_nvmem_unregister(struct device *dev, struct nvmem_device *nvmem) |
| 759 | { |
| 760 | return devres_release(dev, devm_nvmem_release, devm_nvmem_match, nvmem); |
| 761 | } |
| 762 | EXPORT_SYMBOL(devm_nvmem_unregister); |
| 763 | |
Srinivas Kandagatla | 69aba79 | 2015-07-27 12:13:34 +0100 | [diff] [blame] | 764 | static struct nvmem_device *__nvmem_device_get(struct device_node *np, |
Bartosz Golaszewski | 506157b | 2018-09-21 06:40:17 -0700 | [diff] [blame] | 765 | const char *nvmem_name) |
Srinivas Kandagatla | 69aba79 | 2015-07-27 12:13:34 +0100 | [diff] [blame] | 766 | { |
| 767 | struct nvmem_device *nvmem = NULL; |
| 768 | |
| 769 | mutex_lock(&nvmem_mutex); |
Bartosz Golaszewski | 506157b | 2018-09-21 06:40:17 -0700 | [diff] [blame] | 770 | nvmem = np ? of_nvmem_find(np) : nvmem_find(nvmem_name); |
Srinivas Kandagatla | 69aba79 | 2015-07-27 12:13:34 +0100 | [diff] [blame] | 771 | mutex_unlock(&nvmem_mutex); |
Bartosz Golaszewski | c7235ee | 2018-09-21 06:40:14 -0700 | [diff] [blame] | 772 | if (!nvmem) |
| 773 | return ERR_PTR(-EPROBE_DEFER); |
Srinivas Kandagatla | 69aba79 | 2015-07-27 12:13:34 +0100 | [diff] [blame] | 774 | |
| 775 | if (!try_module_get(nvmem->owner)) { |
| 776 | dev_err(&nvmem->dev, |
| 777 | "could not increase module refcount for cell %s\n", |
Bartosz Golaszewski | 5db652c | 2018-09-21 06:40:04 -0700 | [diff] [blame] | 778 | nvmem_dev_name(nvmem)); |
Srinivas Kandagatla | 69aba79 | 2015-07-27 12:13:34 +0100 | [diff] [blame] | 779 | |
Srinivas Kandagatla | 69aba79 | 2015-07-27 12:13:34 +0100 | [diff] [blame] | 780 | return ERR_PTR(-EINVAL); |
| 781 | } |
| 782 | |
Bartosz Golaszewski | c1de7f4 | 2018-09-21 06:40:08 -0700 | [diff] [blame] | 783 | kref_get(&nvmem->refcnt); |
| 784 | |
Srinivas Kandagatla | 69aba79 | 2015-07-27 12:13:34 +0100 | [diff] [blame] | 785 | return nvmem; |
| 786 | } |
| 787 | |
| 788 | static void __nvmem_device_put(struct nvmem_device *nvmem) |
| 789 | { |
| 790 | module_put(nvmem->owner); |
Bartosz Golaszewski | c1de7f4 | 2018-09-21 06:40:08 -0700 | [diff] [blame] | 791 | kref_put(&nvmem->refcnt, nvmem_device_release); |
Srinivas Kandagatla | 69aba79 | 2015-07-27 12:13:34 +0100 | [diff] [blame] | 792 | } |
| 793 | |
Masahiro Yamada | e701c67 | 2017-09-11 11:00:14 +0200 | [diff] [blame] | 794 | #if IS_ENABLED(CONFIG_OF) |
Srinivas Kandagatla | e2a5402 | 2015-07-27 12:13:45 +0100 | [diff] [blame] | 795 | /** |
| 796 | * of_nvmem_device_get() - Get nvmem device from a given id |
| 797 | * |
Vivek Gautam | 2914326 | 2017-01-22 23:02:39 +0000 | [diff] [blame] | 798 | * @np: Device tree node that uses the nvmem device. |
Srinivas Kandagatla | e2a5402 | 2015-07-27 12:13:45 +0100 | [diff] [blame] | 799 | * @id: nvmem name from nvmem-names property. |
| 800 | * |
| 801 | * Return: ERR_PTR() on error or a valid pointer to a struct nvmem_device |
| 802 | * on success. |
| 803 | */ |
| 804 | struct nvmem_device *of_nvmem_device_get(struct device_node *np, const char *id) |
| 805 | { |
| 806 | |
| 807 | struct device_node *nvmem_np; |
| 808 | int index; |
| 809 | |
| 810 | index = of_property_match_string(np, "nvmem-names", id); |
| 811 | |
| 812 | nvmem_np = of_parse_phandle(np, "nvmem", index); |
| 813 | if (!nvmem_np) |
| 814 | return ERR_PTR(-EINVAL); |
| 815 | |
Bartosz Golaszewski | 506157b | 2018-09-21 06:40:17 -0700 | [diff] [blame] | 816 | return __nvmem_device_get(nvmem_np, NULL); |
Srinivas Kandagatla | e2a5402 | 2015-07-27 12:13:45 +0100 | [diff] [blame] | 817 | } |
| 818 | EXPORT_SYMBOL_GPL(of_nvmem_device_get); |
| 819 | #endif |
| 820 | |
| 821 | /** |
| 822 | * nvmem_device_get() - Get nvmem device from a given id |
| 823 | * |
Vivek Gautam | 2914326 | 2017-01-22 23:02:39 +0000 | [diff] [blame] | 824 | * @dev: Device that uses the nvmem device. |
| 825 | * @dev_name: name of the requested nvmem device. |
Srinivas Kandagatla | e2a5402 | 2015-07-27 12:13:45 +0100 | [diff] [blame] | 826 | * |
| 827 | * Return: ERR_PTR() on error or a valid pointer to a struct nvmem_device |
| 828 | * on success. |
| 829 | */ |
| 830 | struct nvmem_device *nvmem_device_get(struct device *dev, const char *dev_name) |
| 831 | { |
| 832 | if (dev->of_node) { /* try dt first */ |
| 833 | struct nvmem_device *nvmem; |
| 834 | |
| 835 | nvmem = of_nvmem_device_get(dev->of_node, dev_name); |
| 836 | |
| 837 | if (!IS_ERR(nvmem) || PTR_ERR(nvmem) == -EPROBE_DEFER) |
| 838 | return nvmem; |
| 839 | |
| 840 | } |
| 841 | |
| 842 | return nvmem_find(dev_name); |
| 843 | } |
| 844 | EXPORT_SYMBOL_GPL(nvmem_device_get); |
| 845 | |
| 846 | static int devm_nvmem_device_match(struct device *dev, void *res, void *data) |
| 847 | { |
| 848 | struct nvmem_device **nvmem = res; |
| 849 | |
| 850 | if (WARN_ON(!nvmem || !*nvmem)) |
| 851 | return 0; |
| 852 | |
| 853 | return *nvmem == data; |
| 854 | } |
| 855 | |
| 856 | static void devm_nvmem_device_release(struct device *dev, void *res) |
| 857 | { |
| 858 | nvmem_device_put(*(struct nvmem_device **)res); |
| 859 | } |
| 860 | |
| 861 | /** |
| 862 | * devm_nvmem_device_put() - put alredy got nvmem device |
| 863 | * |
Vivek Gautam | 2914326 | 2017-01-22 23:02:39 +0000 | [diff] [blame] | 864 | * @dev: Device that uses the nvmem device. |
Srinivas Kandagatla | e2a5402 | 2015-07-27 12:13:45 +0100 | [diff] [blame] | 865 | * @nvmem: pointer to nvmem device allocated by devm_nvmem_cell_get(), |
| 866 | * that needs to be released. |
| 867 | */ |
| 868 | void devm_nvmem_device_put(struct device *dev, struct nvmem_device *nvmem) |
| 869 | { |
| 870 | int ret; |
| 871 | |
| 872 | ret = devres_release(dev, devm_nvmem_device_release, |
| 873 | devm_nvmem_device_match, nvmem); |
| 874 | |
| 875 | WARN_ON(ret); |
| 876 | } |
| 877 | EXPORT_SYMBOL_GPL(devm_nvmem_device_put); |
| 878 | |
| 879 | /** |
| 880 | * nvmem_device_put() - put alredy got nvmem device |
| 881 | * |
| 882 | * @nvmem: pointer to nvmem device that needs to be released. |
| 883 | */ |
| 884 | void nvmem_device_put(struct nvmem_device *nvmem) |
| 885 | { |
| 886 | __nvmem_device_put(nvmem); |
| 887 | } |
| 888 | EXPORT_SYMBOL_GPL(nvmem_device_put); |
| 889 | |
| 890 | /** |
| 891 | * devm_nvmem_device_get() - Get nvmem cell of device form a given id |
| 892 | * |
Vivek Gautam | 2914326 | 2017-01-22 23:02:39 +0000 | [diff] [blame] | 893 | * @dev: Device that requests the nvmem device. |
| 894 | * @id: name id for the requested nvmem device. |
Srinivas Kandagatla | e2a5402 | 2015-07-27 12:13:45 +0100 | [diff] [blame] | 895 | * |
| 896 | * Return: ERR_PTR() on error or a valid pointer to a struct nvmem_cell |
| 897 | * on success. The nvmem_cell will be freed by the automatically once the |
| 898 | * device is freed. |
| 899 | */ |
| 900 | struct nvmem_device *devm_nvmem_device_get(struct device *dev, const char *id) |
| 901 | { |
| 902 | struct nvmem_device **ptr, *nvmem; |
| 903 | |
| 904 | ptr = devres_alloc(devm_nvmem_device_release, sizeof(*ptr), GFP_KERNEL); |
| 905 | if (!ptr) |
| 906 | return ERR_PTR(-ENOMEM); |
| 907 | |
| 908 | nvmem = nvmem_device_get(dev, id); |
| 909 | if (!IS_ERR(nvmem)) { |
| 910 | *ptr = nvmem; |
| 911 | devres_add(dev, ptr); |
| 912 | } else { |
| 913 | devres_free(ptr); |
| 914 | } |
| 915 | |
| 916 | return nvmem; |
| 917 | } |
| 918 | EXPORT_SYMBOL_GPL(devm_nvmem_device_get); |
| 919 | |
Bartosz Golaszewski | 506157b | 2018-09-21 06:40:17 -0700 | [diff] [blame] | 920 | static struct nvmem_cell * |
| 921 | nvmem_cell_get_from_lookup(struct device *dev, const char *con_id) |
Srinivas Kandagatla | 69aba79 | 2015-07-27 12:13:34 +0100 | [diff] [blame] | 922 | { |
Bartosz Golaszewski | 506157b | 2018-09-21 06:40:17 -0700 | [diff] [blame] | 923 | struct nvmem_cell *cell = ERR_PTR(-ENOENT); |
| 924 | struct nvmem_cell_lookup *lookup; |
Srinivas Kandagatla | 69aba79 | 2015-07-27 12:13:34 +0100 | [diff] [blame] | 925 | struct nvmem_device *nvmem; |
Bartosz Golaszewski | 506157b | 2018-09-21 06:40:17 -0700 | [diff] [blame] | 926 | const char *dev_id; |
Srinivas Kandagatla | 69aba79 | 2015-07-27 12:13:34 +0100 | [diff] [blame] | 927 | |
Bartosz Golaszewski | 506157b | 2018-09-21 06:40:17 -0700 | [diff] [blame] | 928 | if (!dev) |
| 929 | return ERR_PTR(-EINVAL); |
Srinivas Kandagatla | 69aba79 | 2015-07-27 12:13:34 +0100 | [diff] [blame] | 930 | |
Bartosz Golaszewski | 506157b | 2018-09-21 06:40:17 -0700 | [diff] [blame] | 931 | dev_id = dev_name(dev); |
| 932 | |
| 933 | mutex_lock(&nvmem_lookup_mutex); |
| 934 | |
| 935 | list_for_each_entry(lookup, &nvmem_lookup_list, node) { |
| 936 | if ((strcmp(lookup->dev_id, dev_id) == 0) && |
| 937 | (strcmp(lookup->con_id, con_id) == 0)) { |
| 938 | /* This is the right entry. */ |
| 939 | nvmem = __nvmem_device_get(NULL, lookup->nvmem_name); |
Bartosz Golaszewski | cccb3b1 | 2018-10-03 09:31:11 +0200 | [diff] [blame] | 940 | if (IS_ERR(nvmem)) { |
Bartosz Golaszewski | 506157b | 2018-09-21 06:40:17 -0700 | [diff] [blame] | 941 | /* Provider may not be registered yet. */ |
Bartosz Golaszewski | cccb3b1 | 2018-10-03 09:31:11 +0200 | [diff] [blame] | 942 | cell = ERR_CAST(nvmem); |
Bartosz Golaszewski | 506157b | 2018-09-21 06:40:17 -0700 | [diff] [blame] | 943 | goto out; |
| 944 | } |
| 945 | |
| 946 | cell = nvmem_find_cell_by_name(nvmem, |
| 947 | lookup->cell_name); |
| 948 | if (!cell) { |
| 949 | __nvmem_device_put(nvmem); |
Bartosz Golaszewski | cccb3b1 | 2018-10-03 09:31:11 +0200 | [diff] [blame] | 950 | cell = ERR_PTR(-ENOENT); |
Bartosz Golaszewski | 506157b | 2018-09-21 06:40:17 -0700 | [diff] [blame] | 951 | goto out; |
| 952 | } |
| 953 | } |
| 954 | } |
| 955 | |
| 956 | out: |
| 957 | mutex_unlock(&nvmem_lookup_mutex); |
Srinivas Kandagatla | 69aba79 | 2015-07-27 12:13:34 +0100 | [diff] [blame] | 958 | return cell; |
| 959 | } |
| 960 | |
Masahiro Yamada | e701c67 | 2017-09-11 11:00:14 +0200 | [diff] [blame] | 961 | #if IS_ENABLED(CONFIG_OF) |
Arnd Bergmann | 3c53e23 | 2018-10-02 23:11:12 +0200 | [diff] [blame] | 962 | static struct nvmem_cell * |
| 963 | nvmem_find_cell_by_index(struct nvmem_device *nvmem, int index) |
| 964 | { |
| 965 | struct nvmem_cell *cell = NULL; |
| 966 | int i = 0; |
| 967 | |
| 968 | mutex_lock(&nvmem_mutex); |
| 969 | list_for_each_entry(cell, &nvmem->cells, node) { |
| 970 | if (index == i++) |
| 971 | break; |
| 972 | } |
| 973 | mutex_unlock(&nvmem_mutex); |
| 974 | |
| 975 | return cell; |
| 976 | } |
| 977 | |
Srinivas Kandagatla | 69aba79 | 2015-07-27 12:13:34 +0100 | [diff] [blame] | 978 | /** |
| 979 | * of_nvmem_cell_get() - Get a nvmem cell from given device node and cell id |
| 980 | * |
Vivek Gautam | 2914326 | 2017-01-22 23:02:39 +0000 | [diff] [blame] | 981 | * @np: Device tree node that uses the nvmem cell. |
Bartosz Golaszewski | 165589f | 2018-09-21 06:40:21 -0700 | [diff] [blame] | 982 | * @id: nvmem cell name from nvmem-cell-names property, or NULL |
| 983 | * for the cell at index 0 (the lone cell with no accompanying |
| 984 | * nvmem-cell-names property). |
Srinivas Kandagatla | 69aba79 | 2015-07-27 12:13:34 +0100 | [diff] [blame] | 985 | * |
| 986 | * Return: Will be an ERR_PTR() on error or a valid pointer |
| 987 | * to a struct nvmem_cell. The nvmem_cell will be freed by the |
| 988 | * nvmem_cell_put(). |
| 989 | */ |
Bartosz Golaszewski | 165589f | 2018-09-21 06:40:21 -0700 | [diff] [blame] | 990 | struct nvmem_cell *of_nvmem_cell_get(struct device_node *np, const char *id) |
Srinivas Kandagatla | 69aba79 | 2015-07-27 12:13:34 +0100 | [diff] [blame] | 991 | { |
| 992 | struct device_node *cell_np, *nvmem_np; |
Srinivas Kandagatla | 69aba79 | 2015-07-27 12:13:34 +0100 | [diff] [blame] | 993 | struct nvmem_device *nvmem; |
Bartosz Golaszewski | e888d44 | 2018-09-21 06:40:16 -0700 | [diff] [blame] | 994 | struct nvmem_cell *cell; |
Vivek Gautam | fd0c478 | 2017-01-22 23:02:40 +0000 | [diff] [blame] | 995 | int index = 0; |
Srinivas Kandagatla | 69aba79 | 2015-07-27 12:13:34 +0100 | [diff] [blame] | 996 | |
Vivek Gautam | fd0c478 | 2017-01-22 23:02:40 +0000 | [diff] [blame] | 997 | /* if cell name exists, find index to the name */ |
Bartosz Golaszewski | 165589f | 2018-09-21 06:40:21 -0700 | [diff] [blame] | 998 | if (id) |
| 999 | index = of_property_match_string(np, "nvmem-cell-names", id); |
Srinivas Kandagatla | 69aba79 | 2015-07-27 12:13:34 +0100 | [diff] [blame] | 1000 | |
| 1001 | cell_np = of_parse_phandle(np, "nvmem-cells", index); |
| 1002 | if (!cell_np) |
| 1003 | return ERR_PTR(-EINVAL); |
| 1004 | |
| 1005 | nvmem_np = of_get_next_parent(cell_np); |
| 1006 | if (!nvmem_np) |
| 1007 | return ERR_PTR(-EINVAL); |
| 1008 | |
Bartosz Golaszewski | 506157b | 2018-09-21 06:40:17 -0700 | [diff] [blame] | 1009 | nvmem = __nvmem_device_get(nvmem_np, NULL); |
Masahiro Yamada | aad8d09 | 2017-09-11 11:00:12 +0200 | [diff] [blame] | 1010 | of_node_put(nvmem_np); |
Srinivas Kandagatla | 69aba79 | 2015-07-27 12:13:34 +0100 | [diff] [blame] | 1011 | if (IS_ERR(nvmem)) |
| 1012 | return ERR_CAST(nvmem); |
| 1013 | |
Bartosz Golaszewski | e888d44 | 2018-09-21 06:40:16 -0700 | [diff] [blame] | 1014 | cell = nvmem_find_cell_by_index(nvmem, index); |
Srinivas Kandagatla | 69aba79 | 2015-07-27 12:13:34 +0100 | [diff] [blame] | 1015 | if (!cell) { |
Bartosz Golaszewski | e888d44 | 2018-09-21 06:40:16 -0700 | [diff] [blame] | 1016 | __nvmem_device_put(nvmem); |
| 1017 | return ERR_PTR(-ENOENT); |
Srinivas Kandagatla | 69aba79 | 2015-07-27 12:13:34 +0100 | [diff] [blame] | 1018 | } |
| 1019 | |
Srinivas Kandagatla | 69aba79 | 2015-07-27 12:13:34 +0100 | [diff] [blame] | 1020 | return cell; |
Srinivas Kandagatla | 69aba79 | 2015-07-27 12:13:34 +0100 | [diff] [blame] | 1021 | } |
| 1022 | EXPORT_SYMBOL_GPL(of_nvmem_cell_get); |
| 1023 | #endif |
| 1024 | |
| 1025 | /** |
| 1026 | * nvmem_cell_get() - Get nvmem cell of device form a given cell name |
| 1027 | * |
Vivek Gautam | 2914326 | 2017-01-22 23:02:39 +0000 | [diff] [blame] | 1028 | * @dev: Device that requests the nvmem cell. |
Bartosz Golaszewski | 165589f | 2018-09-21 06:40:21 -0700 | [diff] [blame] | 1029 | * @id: nvmem cell name to get (this corresponds with the name from the |
| 1030 | * nvmem-cell-names property for DT systems and with the con_id from |
| 1031 | * the lookup entry for non-DT systems). |
Srinivas Kandagatla | 69aba79 | 2015-07-27 12:13:34 +0100 | [diff] [blame] | 1032 | * |
| 1033 | * Return: Will be an ERR_PTR() on error or a valid pointer |
| 1034 | * to a struct nvmem_cell. The nvmem_cell will be freed by the |
| 1035 | * nvmem_cell_put(). |
| 1036 | */ |
Bartosz Golaszewski | 165589f | 2018-09-21 06:40:21 -0700 | [diff] [blame] | 1037 | struct nvmem_cell *nvmem_cell_get(struct device *dev, const char *id) |
Srinivas Kandagatla | 69aba79 | 2015-07-27 12:13:34 +0100 | [diff] [blame] | 1038 | { |
| 1039 | struct nvmem_cell *cell; |
| 1040 | |
| 1041 | if (dev->of_node) { /* try dt first */ |
Bartosz Golaszewski | 165589f | 2018-09-21 06:40:21 -0700 | [diff] [blame] | 1042 | cell = of_nvmem_cell_get(dev->of_node, id); |
Srinivas Kandagatla | 69aba79 | 2015-07-27 12:13:34 +0100 | [diff] [blame] | 1043 | if (!IS_ERR(cell) || PTR_ERR(cell) == -EPROBE_DEFER) |
| 1044 | return cell; |
| 1045 | } |
| 1046 | |
Bartosz Golaszewski | 165589f | 2018-09-21 06:40:21 -0700 | [diff] [blame] | 1047 | /* NULL cell id only allowed for device tree; invalid otherwise */ |
| 1048 | if (!id) |
Douglas Anderson | 87ed140 | 2018-06-18 18:30:43 +0100 | [diff] [blame] | 1049 | return ERR_PTR(-EINVAL); |
| 1050 | |
Bartosz Golaszewski | 165589f | 2018-09-21 06:40:21 -0700 | [diff] [blame] | 1051 | return nvmem_cell_get_from_lookup(dev, id); |
Srinivas Kandagatla | 69aba79 | 2015-07-27 12:13:34 +0100 | [diff] [blame] | 1052 | } |
| 1053 | EXPORT_SYMBOL_GPL(nvmem_cell_get); |
| 1054 | |
| 1055 | static void devm_nvmem_cell_release(struct device *dev, void *res) |
| 1056 | { |
| 1057 | nvmem_cell_put(*(struct nvmem_cell **)res); |
| 1058 | } |
| 1059 | |
| 1060 | /** |
| 1061 | * devm_nvmem_cell_get() - Get nvmem cell of device form a given id |
| 1062 | * |
Vivek Gautam | 2914326 | 2017-01-22 23:02:39 +0000 | [diff] [blame] | 1063 | * @dev: Device that requests the nvmem cell. |
| 1064 | * @id: nvmem cell name id to get. |
Srinivas Kandagatla | 69aba79 | 2015-07-27 12:13:34 +0100 | [diff] [blame] | 1065 | * |
| 1066 | * Return: Will be an ERR_PTR() on error or a valid pointer |
| 1067 | * to a struct nvmem_cell. The nvmem_cell will be freed by the |
| 1068 | * automatically once the device is freed. |
| 1069 | */ |
| 1070 | struct nvmem_cell *devm_nvmem_cell_get(struct device *dev, const char *id) |
| 1071 | { |
| 1072 | struct nvmem_cell **ptr, *cell; |
| 1073 | |
| 1074 | ptr = devres_alloc(devm_nvmem_cell_release, sizeof(*ptr), GFP_KERNEL); |
| 1075 | if (!ptr) |
| 1076 | return ERR_PTR(-ENOMEM); |
| 1077 | |
| 1078 | cell = nvmem_cell_get(dev, id); |
| 1079 | if (!IS_ERR(cell)) { |
| 1080 | *ptr = cell; |
| 1081 | devres_add(dev, ptr); |
| 1082 | } else { |
| 1083 | devres_free(ptr); |
| 1084 | } |
| 1085 | |
| 1086 | return cell; |
| 1087 | } |
| 1088 | EXPORT_SYMBOL_GPL(devm_nvmem_cell_get); |
| 1089 | |
| 1090 | static int devm_nvmem_cell_match(struct device *dev, void *res, void *data) |
| 1091 | { |
| 1092 | struct nvmem_cell **c = res; |
| 1093 | |
| 1094 | if (WARN_ON(!c || !*c)) |
| 1095 | return 0; |
| 1096 | |
| 1097 | return *c == data; |
| 1098 | } |
| 1099 | |
| 1100 | /** |
| 1101 | * devm_nvmem_cell_put() - Release previously allocated nvmem cell |
| 1102 | * from devm_nvmem_cell_get. |
| 1103 | * |
Vivek Gautam | 2914326 | 2017-01-22 23:02:39 +0000 | [diff] [blame] | 1104 | * @dev: Device that requests the nvmem cell. |
| 1105 | * @cell: Previously allocated nvmem cell by devm_nvmem_cell_get(). |
Srinivas Kandagatla | 69aba79 | 2015-07-27 12:13:34 +0100 | [diff] [blame] | 1106 | */ |
| 1107 | void devm_nvmem_cell_put(struct device *dev, struct nvmem_cell *cell) |
| 1108 | { |
| 1109 | int ret; |
| 1110 | |
| 1111 | ret = devres_release(dev, devm_nvmem_cell_release, |
| 1112 | devm_nvmem_cell_match, cell); |
| 1113 | |
| 1114 | WARN_ON(ret); |
| 1115 | } |
| 1116 | EXPORT_SYMBOL(devm_nvmem_cell_put); |
| 1117 | |
| 1118 | /** |
| 1119 | * nvmem_cell_put() - Release previously allocated nvmem cell. |
| 1120 | * |
Vivek Gautam | 2914326 | 2017-01-22 23:02:39 +0000 | [diff] [blame] | 1121 | * @cell: Previously allocated nvmem cell by nvmem_cell_get(). |
Srinivas Kandagatla | 69aba79 | 2015-07-27 12:13:34 +0100 | [diff] [blame] | 1122 | */ |
| 1123 | void nvmem_cell_put(struct nvmem_cell *cell) |
| 1124 | { |
| 1125 | struct nvmem_device *nvmem = cell->nvmem; |
| 1126 | |
| 1127 | __nvmem_device_put(nvmem); |
Srinivas Kandagatla | 69aba79 | 2015-07-27 12:13:34 +0100 | [diff] [blame] | 1128 | } |
| 1129 | EXPORT_SYMBOL_GPL(nvmem_cell_put); |
| 1130 | |
Masahiro Yamada | f7c04f1 | 2017-09-11 11:00:13 +0200 | [diff] [blame] | 1131 | static void nvmem_shift_read_buffer_in_place(struct nvmem_cell *cell, void *buf) |
Srinivas Kandagatla | 69aba79 | 2015-07-27 12:13:34 +0100 | [diff] [blame] | 1132 | { |
| 1133 | u8 *p, *b; |
| 1134 | int i, bit_offset = cell->bit_offset; |
| 1135 | |
| 1136 | p = b = buf; |
| 1137 | if (bit_offset) { |
| 1138 | /* First shift */ |
| 1139 | *b++ >>= bit_offset; |
| 1140 | |
| 1141 | /* setup rest of the bytes if any */ |
| 1142 | for (i = 1; i < cell->bytes; i++) { |
| 1143 | /* Get bits from next byte and shift them towards msb */ |
| 1144 | *p |= *b << (BITS_PER_BYTE - bit_offset); |
| 1145 | |
| 1146 | p = b; |
| 1147 | *b++ >>= bit_offset; |
| 1148 | } |
| 1149 | |
| 1150 | /* result fits in less bytes */ |
| 1151 | if (cell->bytes != DIV_ROUND_UP(cell->nbits, BITS_PER_BYTE)) |
| 1152 | *p-- = 0; |
| 1153 | } |
| 1154 | /* clear msb bits if any leftover in the last byte */ |
| 1155 | *p &= GENMASK((cell->nbits%BITS_PER_BYTE) - 1, 0); |
| 1156 | } |
| 1157 | |
| 1158 | static int __nvmem_cell_read(struct nvmem_device *nvmem, |
| 1159 | struct nvmem_cell *cell, |
| 1160 | void *buf, size_t *len) |
| 1161 | { |
| 1162 | int rc; |
| 1163 | |
Srinivas Kandagatla | 795ddd1 | 2016-04-24 20:28:05 +0100 | [diff] [blame] | 1164 | rc = nvmem_reg_read(nvmem, cell->offset, buf, cell->bytes); |
Srinivas Kandagatla | 69aba79 | 2015-07-27 12:13:34 +0100 | [diff] [blame] | 1165 | |
Arnd Bergmann | 287980e | 2016-05-27 23:23:25 +0200 | [diff] [blame] | 1166 | if (rc) |
Srinivas Kandagatla | 69aba79 | 2015-07-27 12:13:34 +0100 | [diff] [blame] | 1167 | return rc; |
| 1168 | |
| 1169 | /* shift bits in-place */ |
Axel Lin | cbf854a | 2015-09-30 13:35:15 +0100 | [diff] [blame] | 1170 | if (cell->bit_offset || cell->nbits) |
Srinivas Kandagatla | 69aba79 | 2015-07-27 12:13:34 +0100 | [diff] [blame] | 1171 | nvmem_shift_read_buffer_in_place(cell, buf); |
| 1172 | |
Vivek Gautam | 3b4a687 | 2017-01-22 23:02:38 +0000 | [diff] [blame] | 1173 | if (len) |
| 1174 | *len = cell->bytes; |
Srinivas Kandagatla | 69aba79 | 2015-07-27 12:13:34 +0100 | [diff] [blame] | 1175 | |
| 1176 | return 0; |
| 1177 | } |
| 1178 | |
| 1179 | /** |
| 1180 | * nvmem_cell_read() - Read a given nvmem cell |
| 1181 | * |
| 1182 | * @cell: nvmem cell to be read. |
Vivek Gautam | 3b4a687 | 2017-01-22 23:02:38 +0000 | [diff] [blame] | 1183 | * @len: pointer to length of cell which will be populated on successful read; |
| 1184 | * can be NULL. |
Srinivas Kandagatla | 69aba79 | 2015-07-27 12:13:34 +0100 | [diff] [blame] | 1185 | * |
Brian Norris | b577faf | 2017-01-04 16:18:11 +0000 | [diff] [blame] | 1186 | * Return: ERR_PTR() on error or a valid pointer to a buffer on success. The |
| 1187 | * buffer should be freed by the consumer with a kfree(). |
Srinivas Kandagatla | 69aba79 | 2015-07-27 12:13:34 +0100 | [diff] [blame] | 1188 | */ |
| 1189 | void *nvmem_cell_read(struct nvmem_cell *cell, size_t *len) |
| 1190 | { |
| 1191 | struct nvmem_device *nvmem = cell->nvmem; |
| 1192 | u8 *buf; |
| 1193 | int rc; |
| 1194 | |
Srinivas Kandagatla | 795ddd1 | 2016-04-24 20:28:05 +0100 | [diff] [blame] | 1195 | if (!nvmem) |
Srinivas Kandagatla | 69aba79 | 2015-07-27 12:13:34 +0100 | [diff] [blame] | 1196 | return ERR_PTR(-EINVAL); |
| 1197 | |
| 1198 | buf = kzalloc(cell->bytes, GFP_KERNEL); |
| 1199 | if (!buf) |
| 1200 | return ERR_PTR(-ENOMEM); |
| 1201 | |
| 1202 | rc = __nvmem_cell_read(nvmem, cell, buf, len); |
Arnd Bergmann | 287980e | 2016-05-27 23:23:25 +0200 | [diff] [blame] | 1203 | if (rc) { |
Srinivas Kandagatla | 69aba79 | 2015-07-27 12:13:34 +0100 | [diff] [blame] | 1204 | kfree(buf); |
| 1205 | return ERR_PTR(rc); |
| 1206 | } |
| 1207 | |
| 1208 | return buf; |
| 1209 | } |
| 1210 | EXPORT_SYMBOL_GPL(nvmem_cell_read); |
| 1211 | |
Masahiro Yamada | f7c04f1 | 2017-09-11 11:00:13 +0200 | [diff] [blame] | 1212 | static void *nvmem_cell_prepare_write_buffer(struct nvmem_cell *cell, |
| 1213 | u8 *_buf, int len) |
Srinivas Kandagatla | 69aba79 | 2015-07-27 12:13:34 +0100 | [diff] [blame] | 1214 | { |
| 1215 | struct nvmem_device *nvmem = cell->nvmem; |
| 1216 | int i, rc, nbits, bit_offset = cell->bit_offset; |
| 1217 | u8 v, *p, *buf, *b, pbyte, pbits; |
| 1218 | |
| 1219 | nbits = cell->nbits; |
| 1220 | buf = kzalloc(cell->bytes, GFP_KERNEL); |
| 1221 | if (!buf) |
| 1222 | return ERR_PTR(-ENOMEM); |
| 1223 | |
| 1224 | memcpy(buf, _buf, len); |
| 1225 | p = b = buf; |
| 1226 | |
| 1227 | if (bit_offset) { |
| 1228 | pbyte = *b; |
| 1229 | *b <<= bit_offset; |
| 1230 | |
| 1231 | /* setup the first byte with lsb bits from nvmem */ |
Srinivas Kandagatla | 795ddd1 | 2016-04-24 20:28:05 +0100 | [diff] [blame] | 1232 | rc = nvmem_reg_read(nvmem, cell->offset, &v, 1); |
Mathieu Malaterre | 50808bf | 2018-05-11 12:07:03 +0100 | [diff] [blame] | 1233 | if (rc) |
| 1234 | goto err; |
Srinivas Kandagatla | 69aba79 | 2015-07-27 12:13:34 +0100 | [diff] [blame] | 1235 | *b++ |= GENMASK(bit_offset - 1, 0) & v; |
| 1236 | |
| 1237 | /* setup rest of the byte if any */ |
| 1238 | for (i = 1; i < cell->bytes; i++) { |
| 1239 | /* Get last byte bits and shift them towards lsb */ |
| 1240 | pbits = pbyte >> (BITS_PER_BYTE - 1 - bit_offset); |
| 1241 | pbyte = *b; |
| 1242 | p = b; |
| 1243 | *b <<= bit_offset; |
| 1244 | *b++ |= pbits; |
| 1245 | } |
| 1246 | } |
| 1247 | |
| 1248 | /* if it's not end on byte boundary */ |
| 1249 | if ((nbits + bit_offset) % BITS_PER_BYTE) { |
| 1250 | /* setup the last byte with msb bits from nvmem */ |
Srinivas Kandagatla | 795ddd1 | 2016-04-24 20:28:05 +0100 | [diff] [blame] | 1251 | rc = nvmem_reg_read(nvmem, |
Srinivas Kandagatla | 69aba79 | 2015-07-27 12:13:34 +0100 | [diff] [blame] | 1252 | cell->offset + cell->bytes - 1, &v, 1); |
Mathieu Malaterre | 50808bf | 2018-05-11 12:07:03 +0100 | [diff] [blame] | 1253 | if (rc) |
| 1254 | goto err; |
Srinivas Kandagatla | 69aba79 | 2015-07-27 12:13:34 +0100 | [diff] [blame] | 1255 | *p |= GENMASK(7, (nbits + bit_offset) % BITS_PER_BYTE) & v; |
| 1256 | |
| 1257 | } |
| 1258 | |
| 1259 | return buf; |
Mathieu Malaterre | 50808bf | 2018-05-11 12:07:03 +0100 | [diff] [blame] | 1260 | err: |
| 1261 | kfree(buf); |
| 1262 | return ERR_PTR(rc); |
Srinivas Kandagatla | 69aba79 | 2015-07-27 12:13:34 +0100 | [diff] [blame] | 1263 | } |
| 1264 | |
| 1265 | /** |
| 1266 | * nvmem_cell_write() - Write to a given nvmem cell |
| 1267 | * |
| 1268 | * @cell: nvmem cell to be written. |
| 1269 | * @buf: Buffer to be written. |
| 1270 | * @len: length of buffer to be written to nvmem cell. |
| 1271 | * |
| 1272 | * Return: length of bytes written or negative on failure. |
| 1273 | */ |
| 1274 | int nvmem_cell_write(struct nvmem_cell *cell, void *buf, size_t len) |
| 1275 | { |
| 1276 | struct nvmem_device *nvmem = cell->nvmem; |
| 1277 | int rc; |
| 1278 | |
Srinivas Kandagatla | 795ddd1 | 2016-04-24 20:28:05 +0100 | [diff] [blame] | 1279 | if (!nvmem || nvmem->read_only || |
Srinivas Kandagatla | 69aba79 | 2015-07-27 12:13:34 +0100 | [diff] [blame] | 1280 | (cell->bit_offset == 0 && len != cell->bytes)) |
| 1281 | return -EINVAL; |
| 1282 | |
| 1283 | if (cell->bit_offset || cell->nbits) { |
| 1284 | buf = nvmem_cell_prepare_write_buffer(cell, buf, len); |
| 1285 | if (IS_ERR(buf)) |
| 1286 | return PTR_ERR(buf); |
| 1287 | } |
| 1288 | |
Srinivas Kandagatla | 795ddd1 | 2016-04-24 20:28:05 +0100 | [diff] [blame] | 1289 | rc = nvmem_reg_write(nvmem, cell->offset, buf, cell->bytes); |
Srinivas Kandagatla | 69aba79 | 2015-07-27 12:13:34 +0100 | [diff] [blame] | 1290 | |
| 1291 | /* free the tmp buffer */ |
Axel Lin | ace2217 | 2015-09-30 13:36:10 +0100 | [diff] [blame] | 1292 | if (cell->bit_offset || cell->nbits) |
Srinivas Kandagatla | 69aba79 | 2015-07-27 12:13:34 +0100 | [diff] [blame] | 1293 | kfree(buf); |
| 1294 | |
Arnd Bergmann | 287980e | 2016-05-27 23:23:25 +0200 | [diff] [blame] | 1295 | if (rc) |
Srinivas Kandagatla | 69aba79 | 2015-07-27 12:13:34 +0100 | [diff] [blame] | 1296 | return rc; |
| 1297 | |
| 1298 | return len; |
| 1299 | } |
| 1300 | EXPORT_SYMBOL_GPL(nvmem_cell_write); |
| 1301 | |
Srinivas Kandagatla | e2a5402 | 2015-07-27 12:13:45 +0100 | [diff] [blame] | 1302 | /** |
Leonard Crestez | d026d70 | 2017-07-26 11:34:46 +0200 | [diff] [blame] | 1303 | * nvmem_cell_read_u32() - Read a cell value as an u32 |
| 1304 | * |
| 1305 | * @dev: Device that requests the nvmem cell. |
| 1306 | * @cell_id: Name of nvmem cell to read. |
| 1307 | * @val: pointer to output value. |
| 1308 | * |
| 1309 | * Return: 0 on success or negative errno. |
| 1310 | */ |
| 1311 | int nvmem_cell_read_u32(struct device *dev, const char *cell_id, u32 *val) |
| 1312 | { |
| 1313 | struct nvmem_cell *cell; |
| 1314 | void *buf; |
| 1315 | size_t len; |
| 1316 | |
| 1317 | cell = nvmem_cell_get(dev, cell_id); |
| 1318 | if (IS_ERR(cell)) |
| 1319 | return PTR_ERR(cell); |
| 1320 | |
| 1321 | buf = nvmem_cell_read(cell, &len); |
| 1322 | if (IS_ERR(buf)) { |
| 1323 | nvmem_cell_put(cell); |
| 1324 | return PTR_ERR(buf); |
| 1325 | } |
| 1326 | if (len != sizeof(*val)) { |
| 1327 | kfree(buf); |
| 1328 | nvmem_cell_put(cell); |
| 1329 | return -EINVAL; |
| 1330 | } |
| 1331 | memcpy(val, buf, sizeof(*val)); |
| 1332 | |
| 1333 | kfree(buf); |
| 1334 | nvmem_cell_put(cell); |
| 1335 | return 0; |
| 1336 | } |
| 1337 | EXPORT_SYMBOL_GPL(nvmem_cell_read_u32); |
| 1338 | |
| 1339 | /** |
Srinivas Kandagatla | e2a5402 | 2015-07-27 12:13:45 +0100 | [diff] [blame] | 1340 | * nvmem_device_cell_read() - Read a given nvmem device and cell |
| 1341 | * |
| 1342 | * @nvmem: nvmem device to read from. |
| 1343 | * @info: nvmem cell info to be read. |
| 1344 | * @buf: buffer pointer which will be populated on successful read. |
| 1345 | * |
| 1346 | * Return: length of successful bytes read on success and negative |
| 1347 | * error code on error. |
| 1348 | */ |
| 1349 | ssize_t nvmem_device_cell_read(struct nvmem_device *nvmem, |
| 1350 | struct nvmem_cell_info *info, void *buf) |
| 1351 | { |
| 1352 | struct nvmem_cell cell; |
| 1353 | int rc; |
| 1354 | ssize_t len; |
| 1355 | |
Srinivas Kandagatla | 795ddd1 | 2016-04-24 20:28:05 +0100 | [diff] [blame] | 1356 | if (!nvmem) |
Srinivas Kandagatla | e2a5402 | 2015-07-27 12:13:45 +0100 | [diff] [blame] | 1357 | return -EINVAL; |
| 1358 | |
| 1359 | rc = nvmem_cell_info_to_nvmem_cell(nvmem, info, &cell); |
Arnd Bergmann | 287980e | 2016-05-27 23:23:25 +0200 | [diff] [blame] | 1360 | if (rc) |
Srinivas Kandagatla | e2a5402 | 2015-07-27 12:13:45 +0100 | [diff] [blame] | 1361 | return rc; |
| 1362 | |
| 1363 | rc = __nvmem_cell_read(nvmem, &cell, buf, &len); |
Arnd Bergmann | 287980e | 2016-05-27 23:23:25 +0200 | [diff] [blame] | 1364 | if (rc) |
Srinivas Kandagatla | e2a5402 | 2015-07-27 12:13:45 +0100 | [diff] [blame] | 1365 | return rc; |
| 1366 | |
| 1367 | return len; |
| 1368 | } |
| 1369 | EXPORT_SYMBOL_GPL(nvmem_device_cell_read); |
| 1370 | |
| 1371 | /** |
| 1372 | * nvmem_device_cell_write() - Write cell to a given nvmem device |
| 1373 | * |
| 1374 | * @nvmem: nvmem device to be written to. |
Vivek Gautam | 2914326 | 2017-01-22 23:02:39 +0000 | [diff] [blame] | 1375 | * @info: nvmem cell info to be written. |
Srinivas Kandagatla | e2a5402 | 2015-07-27 12:13:45 +0100 | [diff] [blame] | 1376 | * @buf: buffer to be written to cell. |
| 1377 | * |
| 1378 | * Return: length of bytes written or negative error code on failure. |
Bartosz Golaszewski | 48f63a2 | 2018-09-21 06:40:23 -0700 | [diff] [blame] | 1379 | */ |
Srinivas Kandagatla | e2a5402 | 2015-07-27 12:13:45 +0100 | [diff] [blame] | 1380 | int nvmem_device_cell_write(struct nvmem_device *nvmem, |
| 1381 | struct nvmem_cell_info *info, void *buf) |
| 1382 | { |
| 1383 | struct nvmem_cell cell; |
| 1384 | int rc; |
| 1385 | |
Srinivas Kandagatla | 795ddd1 | 2016-04-24 20:28:05 +0100 | [diff] [blame] | 1386 | if (!nvmem) |
Srinivas Kandagatla | e2a5402 | 2015-07-27 12:13:45 +0100 | [diff] [blame] | 1387 | return -EINVAL; |
| 1388 | |
| 1389 | rc = nvmem_cell_info_to_nvmem_cell(nvmem, info, &cell); |
Arnd Bergmann | 287980e | 2016-05-27 23:23:25 +0200 | [diff] [blame] | 1390 | if (rc) |
Srinivas Kandagatla | e2a5402 | 2015-07-27 12:13:45 +0100 | [diff] [blame] | 1391 | return rc; |
| 1392 | |
| 1393 | return nvmem_cell_write(&cell, buf, cell.bytes); |
| 1394 | } |
| 1395 | EXPORT_SYMBOL_GPL(nvmem_device_cell_write); |
| 1396 | |
| 1397 | /** |
| 1398 | * nvmem_device_read() - Read from a given nvmem device |
| 1399 | * |
| 1400 | * @nvmem: nvmem device to read from. |
| 1401 | * @offset: offset in nvmem device. |
| 1402 | * @bytes: number of bytes to read. |
| 1403 | * @buf: buffer pointer which will be populated on successful read. |
| 1404 | * |
| 1405 | * Return: length of successful bytes read on success and negative |
| 1406 | * error code on error. |
| 1407 | */ |
| 1408 | int nvmem_device_read(struct nvmem_device *nvmem, |
| 1409 | unsigned int offset, |
| 1410 | size_t bytes, void *buf) |
| 1411 | { |
| 1412 | int rc; |
| 1413 | |
Srinivas Kandagatla | 795ddd1 | 2016-04-24 20:28:05 +0100 | [diff] [blame] | 1414 | if (!nvmem) |
Srinivas Kandagatla | e2a5402 | 2015-07-27 12:13:45 +0100 | [diff] [blame] | 1415 | return -EINVAL; |
| 1416 | |
Srinivas Kandagatla | 795ddd1 | 2016-04-24 20:28:05 +0100 | [diff] [blame] | 1417 | rc = nvmem_reg_read(nvmem, offset, buf, bytes); |
Srinivas Kandagatla | e2a5402 | 2015-07-27 12:13:45 +0100 | [diff] [blame] | 1418 | |
Arnd Bergmann | 287980e | 2016-05-27 23:23:25 +0200 | [diff] [blame] | 1419 | if (rc) |
Srinivas Kandagatla | e2a5402 | 2015-07-27 12:13:45 +0100 | [diff] [blame] | 1420 | return rc; |
| 1421 | |
| 1422 | return bytes; |
| 1423 | } |
| 1424 | EXPORT_SYMBOL_GPL(nvmem_device_read); |
| 1425 | |
| 1426 | /** |
| 1427 | * nvmem_device_write() - Write cell to a given nvmem device |
| 1428 | * |
| 1429 | * @nvmem: nvmem device to be written to. |
| 1430 | * @offset: offset in nvmem device. |
| 1431 | * @bytes: number of bytes to write. |
| 1432 | * @buf: buffer to be written. |
| 1433 | * |
| 1434 | * Return: length of bytes written or negative error code on failure. |
Bartosz Golaszewski | 48f63a2 | 2018-09-21 06:40:23 -0700 | [diff] [blame] | 1435 | */ |
Srinivas Kandagatla | e2a5402 | 2015-07-27 12:13:45 +0100 | [diff] [blame] | 1436 | int nvmem_device_write(struct nvmem_device *nvmem, |
| 1437 | unsigned int offset, |
| 1438 | size_t bytes, void *buf) |
| 1439 | { |
| 1440 | int rc; |
| 1441 | |
Srinivas Kandagatla | 795ddd1 | 2016-04-24 20:28:05 +0100 | [diff] [blame] | 1442 | if (!nvmem) |
Srinivas Kandagatla | e2a5402 | 2015-07-27 12:13:45 +0100 | [diff] [blame] | 1443 | return -EINVAL; |
| 1444 | |
Srinivas Kandagatla | 795ddd1 | 2016-04-24 20:28:05 +0100 | [diff] [blame] | 1445 | rc = nvmem_reg_write(nvmem, offset, buf, bytes); |
Srinivas Kandagatla | e2a5402 | 2015-07-27 12:13:45 +0100 | [diff] [blame] | 1446 | |
Arnd Bergmann | 287980e | 2016-05-27 23:23:25 +0200 | [diff] [blame] | 1447 | if (rc) |
Srinivas Kandagatla | e2a5402 | 2015-07-27 12:13:45 +0100 | [diff] [blame] | 1448 | return rc; |
| 1449 | |
| 1450 | |
| 1451 | return bytes; |
| 1452 | } |
| 1453 | EXPORT_SYMBOL_GPL(nvmem_device_write); |
| 1454 | |
Bartosz Golaszewski | d7b9fd1 | 2018-09-21 06:40:03 -0700 | [diff] [blame] | 1455 | /** |
Bartosz Golaszewski | b985f4c | 2018-09-21 06:40:15 -0700 | [diff] [blame] | 1456 | * nvmem_add_cell_table() - register a table of cell info entries |
| 1457 | * |
| 1458 | * @table: table of cell info entries |
| 1459 | */ |
| 1460 | void nvmem_add_cell_table(struct nvmem_cell_table *table) |
| 1461 | { |
| 1462 | mutex_lock(&nvmem_cell_mutex); |
| 1463 | list_add_tail(&table->node, &nvmem_cell_tables); |
| 1464 | mutex_unlock(&nvmem_cell_mutex); |
| 1465 | } |
| 1466 | EXPORT_SYMBOL_GPL(nvmem_add_cell_table); |
| 1467 | |
| 1468 | /** |
| 1469 | * nvmem_del_cell_table() - remove a previously registered cell info table |
| 1470 | * |
| 1471 | * @table: table of cell info entries |
| 1472 | */ |
| 1473 | void nvmem_del_cell_table(struct nvmem_cell_table *table) |
| 1474 | { |
| 1475 | mutex_lock(&nvmem_cell_mutex); |
| 1476 | list_del(&table->node); |
| 1477 | mutex_unlock(&nvmem_cell_mutex); |
| 1478 | } |
| 1479 | EXPORT_SYMBOL_GPL(nvmem_del_cell_table); |
| 1480 | |
| 1481 | /** |
Bartosz Golaszewski | 506157b | 2018-09-21 06:40:17 -0700 | [diff] [blame] | 1482 | * nvmem_add_cell_lookups() - register a list of cell lookup entries |
| 1483 | * |
| 1484 | * @entries: array of cell lookup entries |
| 1485 | * @nentries: number of cell lookup entries in the array |
| 1486 | */ |
| 1487 | void nvmem_add_cell_lookups(struct nvmem_cell_lookup *entries, size_t nentries) |
| 1488 | { |
| 1489 | int i; |
| 1490 | |
| 1491 | mutex_lock(&nvmem_lookup_mutex); |
| 1492 | for (i = 0; i < nentries; i++) |
| 1493 | list_add_tail(&entries[i].node, &nvmem_lookup_list); |
| 1494 | mutex_unlock(&nvmem_lookup_mutex); |
| 1495 | } |
| 1496 | EXPORT_SYMBOL_GPL(nvmem_add_cell_lookups); |
| 1497 | |
| 1498 | /** |
| 1499 | * nvmem_del_cell_lookups() - remove a list of previously added cell lookup |
| 1500 | * entries |
| 1501 | * |
| 1502 | * @entries: array of cell lookup entries |
| 1503 | * @nentries: number of cell lookup entries in the array |
| 1504 | */ |
| 1505 | void nvmem_del_cell_lookups(struct nvmem_cell_lookup *entries, size_t nentries) |
| 1506 | { |
| 1507 | int i; |
| 1508 | |
| 1509 | mutex_lock(&nvmem_lookup_mutex); |
| 1510 | for (i = 0; i < nentries; i++) |
| 1511 | list_del(&entries[i].node); |
| 1512 | mutex_unlock(&nvmem_lookup_mutex); |
| 1513 | } |
| 1514 | EXPORT_SYMBOL_GPL(nvmem_del_cell_lookups); |
| 1515 | |
| 1516 | /** |
Bartosz Golaszewski | d7b9fd1 | 2018-09-21 06:40:03 -0700 | [diff] [blame] | 1517 | * nvmem_dev_name() - Get the name of a given nvmem device. |
| 1518 | * |
| 1519 | * @nvmem: nvmem device. |
| 1520 | * |
| 1521 | * Return: name of the nvmem device. |
| 1522 | */ |
| 1523 | const char *nvmem_dev_name(struct nvmem_device *nvmem) |
| 1524 | { |
| 1525 | return dev_name(&nvmem->dev); |
| 1526 | } |
| 1527 | EXPORT_SYMBOL_GPL(nvmem_dev_name); |
| 1528 | |
Srinivas Kandagatla | eace75c | 2015-07-27 12:13:19 +0100 | [diff] [blame] | 1529 | static int __init nvmem_init(void) |
| 1530 | { |
| 1531 | return bus_register(&nvmem_bus_type); |
| 1532 | } |
| 1533 | |
| 1534 | static void __exit nvmem_exit(void) |
| 1535 | { |
| 1536 | bus_unregister(&nvmem_bus_type); |
| 1537 | } |
| 1538 | |
| 1539 | subsys_initcall(nvmem_init); |
| 1540 | module_exit(nvmem_exit); |
| 1541 | |
| 1542 | MODULE_AUTHOR("Srinivas Kandagatla <srinivas.kandagatla@linaro.org"); |
| 1543 | MODULE_AUTHOR("Maxime Ripard <maxime.ripard@free-electrons.com"); |
| 1544 | MODULE_DESCRIPTION("nvmem Driver Core"); |
| 1545 | MODULE_LICENSE("GPL v2"); |