blob: ad1227df1984a543d4016940024ca81f085a3dce [file] [log] [blame]
Bartosz Golaszewskib1c1db92018-09-21 06:40:20 -07001// SPDX-License-Identifier: GPL-2.0
Srinivas Kandagatlaeace75c2015-07-27 12:13:19 +01002/*
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 Kandagatlaeace75c2015-07-27 12:13:19 +01007 */
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 Golaszewskic1de7f42018-09-21 06:40:08 -070014#include <linux/kref.h>
Srinivas Kandagatlaeace75c2015-07-27 12:13:19 +010015#include <linux/module.h>
16#include <linux/nvmem-consumer.h>
17#include <linux/nvmem-provider.h>
18#include <linux/of.h>
Srinivas Kandagatlaeace75c2015-07-27 12:13:19 +010019#include <linux/slab.h>
20
21struct nvmem_device {
Srinivas Kandagatlaeace75c2015-07-27 12:13:19 +010022 struct module *owner;
23 struct device dev;
24 int stride;
25 int word_size;
Srinivas Kandagatlaeace75c2015-07-27 12:13:19 +010026 int id;
Bartosz Golaszewskic1de7f42018-09-21 06:40:08 -070027 struct kref refcnt;
Srinivas Kandagatlaeace75c2015-07-27 12:13:19 +010028 size_t size;
29 bool read_only;
Andrew Lunnb6c217a2016-02-26 20:59:19 +010030 int flags;
31 struct bin_attribute eeprom;
32 struct device *base_dev;
Bartosz Golaszewskic7235ee2018-09-21 06:40:14 -070033 struct list_head cells;
Srinivas Kandagatla795ddd12016-04-24 20:28:05 +010034 nvmem_reg_read_t reg_read;
35 nvmem_reg_write_t reg_write;
36 void *priv;
Srinivas Kandagatlaeace75c2015-07-27 12:13:19 +010037};
38
Andrew Lunnb6c217a2016-02-26 20:59:19 +010039#define FLAG_COMPAT BIT(0)
40
Srinivas Kandagatlaeace75c2015-07-27 12:13:19 +010041struct 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
51static DEFINE_MUTEX(nvmem_mutex);
52static DEFINE_IDA(nvmem_ida);
53
Bartosz Golaszewskib985f4c2018-09-21 06:40:15 -070054static DEFINE_MUTEX(nvmem_cell_mutex);
55static LIST_HEAD(nvmem_cell_tables);
56
Bartosz Golaszewski506157b2018-09-21 06:40:17 -070057static DEFINE_MUTEX(nvmem_lookup_mutex);
58static LIST_HEAD(nvmem_lookup_list);
59
Bartosz Golaszewskibee11382018-09-21 06:40:19 -070060static BLOCKING_NOTIFIER_HEAD(nvmem_notifier);
61
Andrew Lunnb6c217a2016-02-26 20:59:19 +010062#ifdef CONFIG_DEBUG_LOCK_ALLOC
63static struct lock_class_key eeprom_lock_key;
64#endif
65
Srinivas Kandagatlaeace75c2015-07-27 12:13:19 +010066#define to_nvmem_device(d) container_of(d, struct nvmem_device, dev)
Srinivas Kandagatla795ddd12016-04-24 20:28:05 +010067static 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
76static 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 Kandagatlaeace75c2015-07-27 12:13:19 +010084
85static 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 Lunnb6c217a2016-02-26 20:59:19 +010089 struct device *dev;
90 struct nvmem_device *nvmem;
Srinivas Kandagatlaeace75c2015-07-27 12:13:19 +010091 int rc;
92
Andrew Lunnb6c217a2016-02-26 20:59:19 +010093 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 Kandagatlaeace75c2015-07-27 12:13:19 +010099 /* Stop the user from reading */
ZhengShunQian7c806882015-09-30 13:33:56 +0100100 if (pos >= nvmem->size)
Srinivas Kandagatlaeace75c2015-07-27 12:13:19 +0100101 return 0;
102
Srinivas Kandagatla313a72f2015-11-17 09:12:41 +0000103 if (count < nvmem->word_size)
104 return -EINVAL;
105
Srinivas Kandagatlaeace75c2015-07-27 12:13:19 +0100106 if (pos + count > nvmem->size)
107 count = nvmem->size - pos;
108
109 count = round_down(count, nvmem->word_size);
110
Srinivas Kandagatla795ddd12016-04-24 20:28:05 +0100111 rc = nvmem_reg_read(nvmem, pos, buf, count);
Srinivas Kandagatlaeace75c2015-07-27 12:13:19 +0100112
Arnd Bergmann287980e2016-05-27 23:23:25 +0200113 if (rc)
Srinivas Kandagatlaeace75c2015-07-27 12:13:19 +0100114 return rc;
115
116 return count;
117}
118
119static 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 Lunnb6c217a2016-02-26 20:59:19 +0100123 struct device *dev;
124 struct nvmem_device *nvmem;
Srinivas Kandagatlaeace75c2015-07-27 12:13:19 +0100125 int rc;
126
Andrew Lunnb6c217a2016-02-26 20:59:19 +0100127 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 Kandagatlaeace75c2015-07-27 12:13:19 +0100133 /* Stop the user from writing */
ZhengShunQian7c806882015-09-30 13:33:56 +0100134 if (pos >= nvmem->size)
Guy Shapiro38b07742017-09-11 11:00:11 +0200135 return -EFBIG;
Srinivas Kandagatlaeace75c2015-07-27 12:13:19 +0100136
Srinivas Kandagatla313a72f2015-11-17 09:12:41 +0000137 if (count < nvmem->word_size)
138 return -EINVAL;
139
Srinivas Kandagatlaeace75c2015-07-27 12:13:19 +0100140 if (pos + count > nvmem->size)
141 count = nvmem->size - pos;
142
143 count = round_down(count, nvmem->word_size);
144
Srinivas Kandagatla795ddd12016-04-24 20:28:05 +0100145 rc = nvmem_reg_write(nvmem, pos, buf, count);
Srinivas Kandagatlaeace75c2015-07-27 12:13:19 +0100146
Arnd Bergmann287980e2016-05-27 23:23:25 +0200147 if (rc)
Srinivas Kandagatlaeace75c2015-07-27 12:13:19 +0100148 return rc;
149
150 return count;
151}
152
153/* default read/write permissions */
154static struct bin_attribute bin_attr_rw_nvmem = {
155 .attr = {
156 .name = "nvmem",
Bartosz Golaszewskie7e07f42018-09-21 06:40:24 -0700157 .mode = 0644,
Srinivas Kandagatlaeace75c2015-07-27 12:13:19 +0100158 },
159 .read = bin_attr_nvmem_read,
160 .write = bin_attr_nvmem_write,
161};
162
163static struct bin_attribute *nvmem_bin_rw_attributes[] = {
164 &bin_attr_rw_nvmem,
165 NULL,
166};
167
168static const struct attribute_group nvmem_bin_rw_group = {
169 .bin_attrs = nvmem_bin_rw_attributes,
170};
171
172static const struct attribute_group *nvmem_rw_dev_groups[] = {
173 &nvmem_bin_rw_group,
174 NULL,
175};
176
177/* read only permission */
178static struct bin_attribute bin_attr_ro_nvmem = {
179 .attr = {
180 .name = "nvmem",
Bartosz Golaszewskie7e07f42018-09-21 06:40:24 -0700181 .mode = 0444,
Srinivas Kandagatlaeace75c2015-07-27 12:13:19 +0100182 },
183 .read = bin_attr_nvmem_read,
184};
185
186static struct bin_attribute *nvmem_bin_ro_attributes[] = {
187 &bin_attr_ro_nvmem,
188 NULL,
189};
190
191static const struct attribute_group nvmem_bin_ro_group = {
192 .bin_attrs = nvmem_bin_ro_attributes,
193};
194
195static const struct attribute_group *nvmem_ro_dev_groups[] = {
196 &nvmem_bin_ro_group,
197 NULL,
198};
199
Andrew Lunn811b0d62016-02-26 20:59:18 +0100200/* default read/write permissions, root only */
201static struct bin_attribute bin_attr_rw_root_nvmem = {
202 .attr = {
203 .name = "nvmem",
Bartosz Golaszewskie7e07f42018-09-21 06:40:24 -0700204 .mode = 0600,
Andrew Lunn811b0d62016-02-26 20:59:18 +0100205 },
206 .read = bin_attr_nvmem_read,
207 .write = bin_attr_nvmem_write,
208};
209
210static struct bin_attribute *nvmem_bin_rw_root_attributes[] = {
211 &bin_attr_rw_root_nvmem,
212 NULL,
213};
214
215static const struct attribute_group nvmem_bin_rw_root_group = {
216 .bin_attrs = nvmem_bin_rw_root_attributes,
217};
218
219static 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 */
225static struct bin_attribute bin_attr_ro_root_nvmem = {
226 .attr = {
227 .name = "nvmem",
Bartosz Golaszewskie7e07f42018-09-21 06:40:24 -0700228 .mode = 0400,
Andrew Lunn811b0d62016-02-26 20:59:18 +0100229 },
230 .read = bin_attr_nvmem_read,
231};
232
233static struct bin_attribute *nvmem_bin_ro_root_attributes[] = {
234 &bin_attr_ro_root_nvmem,
235 NULL,
236};
237
238static const struct attribute_group nvmem_bin_ro_root_group = {
239 .bin_attrs = nvmem_bin_ro_root_attributes,
240};
241
242static const struct attribute_group *nvmem_ro_root_dev_groups[] = {
243 &nvmem_bin_ro_root_group,
244 NULL,
245};
246
Srinivas Kandagatlaeace75c2015-07-27 12:13:19 +0100247static 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
255static const struct device_type nvmem_provider_type = {
256 .release = nvmem_release,
257};
258
259static struct bus_type nvmem_bus_type = {
260 .name = "nvmem",
261};
262
263static int of_nvmem_match(struct device *dev, void *nvmem_np)
264{
265 return dev->of_node == nvmem_np;
266}
267
268static 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 Golaszewski506157b2018-09-21 06:40:17 -0700283static 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 Kandagatlaeace75c2015-07-27 12:13:19 +0100295static void nvmem_cell_drop(struct nvmem_cell *cell)
296{
Bartosz Golaszewskibee11382018-09-21 06:40:19 -0700297 blocking_notifier_call_chain(&nvmem_notifier, NVMEM_CELL_REMOVE, cell);
Bartosz Golaszewskic7235ee2018-09-21 06:40:14 -0700298 mutex_lock(&nvmem_mutex);
Srinivas Kandagatlaeace75c2015-07-27 12:13:19 +0100299 list_del(&cell->node);
Bartosz Golaszewskic7235ee2018-09-21 06:40:14 -0700300 mutex_unlock(&nvmem_mutex);
Srinivas Kandagatlaeace75c2015-07-27 12:13:19 +0100301 kfree(cell);
302}
303
304static void nvmem_device_remove_all_cells(const struct nvmem_device *nvmem)
305{
Bartosz Golaszewski18521832018-09-21 06:40:05 -0700306 struct nvmem_cell *cell, *p;
Srinivas Kandagatlaeace75c2015-07-27 12:13:19 +0100307
Bartosz Golaszewskic7235ee2018-09-21 06:40:14 -0700308 list_for_each_entry_safe(cell, p, &nvmem->cells, node)
309 nvmem_cell_drop(cell);
Srinivas Kandagatlaeace75c2015-07-27 12:13:19 +0100310}
311
312static void nvmem_cell_add(struct nvmem_cell *cell)
313{
Bartosz Golaszewskic7235ee2018-09-21 06:40:14 -0700314 mutex_lock(&nvmem_mutex);
315 list_add_tail(&cell->node, &cell->nvmem->cells);
316 mutex_unlock(&nvmem_mutex);
Bartosz Golaszewskibee11382018-09-21 06:40:19 -0700317 blocking_notifier_call_chain(&nvmem_notifier, NVMEM_CELL_ADD, cell);
Srinivas Kandagatlaeace75c2015-07-27 12:13:19 +0100318}
319
320static int nvmem_cell_info_to_nvmem_cell(struct nvmem_device *nvmem,
321 const struct nvmem_cell_info *info,
322 struct nvmem_cell *cell)
323{
324 cell->nvmem = nvmem;
325 cell->offset = info->offset;
326 cell->bytes = info->bytes;
327 cell->name = info->name;
328
329 cell->bit_offset = info->bit_offset;
330 cell->nbits = info->nbits;
331
332 if (cell->nbits)
333 cell->bytes = DIV_ROUND_UP(cell->nbits + cell->bit_offset,
334 BITS_PER_BYTE);
335
336 if (!IS_ALIGNED(cell->offset, nvmem->stride)) {
337 dev_err(&nvmem->dev,
338 "cell %s unaligned to nvmem stride %d\n",
339 cell->name, nvmem->stride);
340 return -EINVAL;
341 }
342
343 return 0;
344}
345
Andrew Lunnb3db17e2018-05-11 12:06:56 +0100346/**
347 * nvmem_add_cells() - Add cell information to an nvmem device
348 *
349 * @nvmem: nvmem device to add cells to.
350 * @info: nvmem cell info to add to the device
351 * @ncells: number of cells in info
352 *
353 * Return: 0 or negative error code on failure.
354 */
355int nvmem_add_cells(struct nvmem_device *nvmem,
356 const struct nvmem_cell_info *info,
357 int ncells)
Srinivas Kandagatlaeace75c2015-07-27 12:13:19 +0100358{
359 struct nvmem_cell **cells;
Srinivas Kandagatlaeace75c2015-07-27 12:13:19 +0100360 int i, rval;
361
Andrew Lunnb3db17e2018-05-11 12:06:56 +0100362 cells = kcalloc(ncells, sizeof(*cells), GFP_KERNEL);
Srinivas Kandagatlaeace75c2015-07-27 12:13:19 +0100363 if (!cells)
364 return -ENOMEM;
365
Andrew Lunnb3db17e2018-05-11 12:06:56 +0100366 for (i = 0; i < ncells; i++) {
Srinivas Kandagatlaeace75c2015-07-27 12:13:19 +0100367 cells[i] = kzalloc(sizeof(**cells), GFP_KERNEL);
368 if (!cells[i]) {
369 rval = -ENOMEM;
370 goto err;
371 }
372
373 rval = nvmem_cell_info_to_nvmem_cell(nvmem, &info[i], cells[i]);
Arnd Bergmann287980e2016-05-27 23:23:25 +0200374 if (rval) {
Srinivas Kandagatlaeace75c2015-07-27 12:13:19 +0100375 kfree(cells[i]);
376 goto err;
377 }
378
379 nvmem_cell_add(cells[i]);
380 }
381
Srinivas Kandagatlaeace75c2015-07-27 12:13:19 +0100382 /* remove tmp array */
383 kfree(cells);
384
385 return 0;
386err:
Rasmus Villemoesdfdf1412016-02-08 22:04:29 +0100387 while (i--)
Srinivas Kandagatlaeace75c2015-07-27 12:13:19 +0100388 nvmem_cell_drop(cells[i]);
389
Rasmus Villemoesdfdf1412016-02-08 22:04:29 +0100390 kfree(cells);
391
Srinivas Kandagatlaeace75c2015-07-27 12:13:19 +0100392 return rval;
393}
Andrew Lunnb3db17e2018-05-11 12:06:56 +0100394EXPORT_SYMBOL_GPL(nvmem_add_cells);
Srinivas Kandagatlaeace75c2015-07-27 12:13:19 +0100395
Andrew Lunnb6c217a2016-02-26 20:59:19 +0100396/*
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 */
401static 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 Golaszewskibee11382018-09-21 06:40:19 -0700433/**
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 */
440int nvmem_register_notifier(struct notifier_block *nb)
441{
442 return blocking_notifier_chain_register(&nvmem_notifier, nb);
443}
444EXPORT_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 */
453int nvmem_unregister_notifier(struct notifier_block *nb)
454{
455 return blocking_notifier_chain_unregister(&nvmem_notifier, nb);
456}
457EXPORT_SYMBOL_GPL(nvmem_unregister_notifier);
458
Bartosz Golaszewskib985f4c2018-09-21 06:40:15 -0700459static 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
491out:
492 mutex_unlock(&nvmem_cell_mutex);
493 return rval;
494}
495
Bartosz Golaszewskie888d442018-09-21 06:40:16 -0700496static struct nvmem_cell *
497nvmem_find_cell_by_index(struct nvmem_device *nvmem, int index)
498{
499 struct nvmem_cell *cell = NULL;
500 int i = 0;
501
502 mutex_lock(&nvmem_mutex);
503 list_for_each_entry(cell, &nvmem->cells, node) {
504 if (index == i++)
505 break;
506 }
507 mutex_unlock(&nvmem_mutex);
508
509 return cell;
510}
511
Bartosz Golaszewski506157b2018-09-21 06:40:17 -0700512static struct nvmem_cell *
513nvmem_find_cell_by_name(struct nvmem_device *nvmem, const char *cell_id)
514{
515 struct nvmem_cell *cell = NULL;
516
517 mutex_lock(&nvmem_mutex);
518 list_for_each_entry(cell, &nvmem->cells, node) {
519 if (strcmp(cell_id, cell->name) == 0)
520 break;
521 }
522 mutex_unlock(&nvmem_mutex);
523
524 return cell;
525}
526
Bartosz Golaszewskie888d442018-09-21 06:40:16 -0700527static int nvmem_add_cells_from_of(struct nvmem_device *nvmem)
528{
529 struct device_node *parent, *child;
530 struct device *dev = &nvmem->dev;
531 struct nvmem_cell *cell;
532 const __be32 *addr;
533 int len;
534
535 parent = dev->of_node;
536
537 for_each_child_of_node(parent, child) {
538 addr = of_get_property(child, "reg", &len);
539 if (!addr || (len < 2 * sizeof(u32))) {
540 dev_err(dev, "nvmem: invalid reg on %pOF\n", child);
541 return -EINVAL;
542 }
543
544 cell = kzalloc(sizeof(*cell), GFP_KERNEL);
545 if (!cell)
546 return -ENOMEM;
547
548 cell->nvmem = nvmem;
549 cell->offset = be32_to_cpup(addr++);
550 cell->bytes = be32_to_cpup(addr);
551 cell->name = child->name;
552
553 addr = of_get_property(child, "bits", &len);
554 if (addr && len == (2 * sizeof(u32))) {
555 cell->bit_offset = be32_to_cpup(addr++);
556 cell->nbits = be32_to_cpup(addr);
557 }
558
559 if (cell->nbits)
560 cell->bytes = DIV_ROUND_UP(
561 cell->nbits + cell->bit_offset,
562 BITS_PER_BYTE);
563
564 if (!IS_ALIGNED(cell->offset, nvmem->stride)) {
565 dev_err(dev, "cell %s unaligned to nvmem stride %d\n",
566 cell->name, nvmem->stride);
567 /* Cells already added will be freed later. */
568 kfree(cell);
569 return -EINVAL;
570 }
571
572 nvmem_cell_add(cell);
573 }
574
575 return 0;
576}
577
Srinivas Kandagatlaeace75c2015-07-27 12:13:19 +0100578/**
579 * nvmem_register() - Register a nvmem device for given nvmem_config.
580 * Also creates an binary entry in /sys/bus/nvmem/devices/dev-name/nvmem
581 *
582 * @config: nvmem device configuration with which nvmem device is created.
583 *
584 * Return: Will be an ERR_PTR() on error or a valid pointer to nvmem_device
585 * on success.
586 */
587
588struct nvmem_device *nvmem_register(const struct nvmem_config *config)
589{
590 struct nvmem_device *nvmem;
Srinivas Kandagatlaeace75c2015-07-27 12:13:19 +0100591 int rval;
592
593 if (!config->dev)
594 return ERR_PTR(-EINVAL);
595
Srinivas Kandagatlaeace75c2015-07-27 12:13:19 +0100596 nvmem = kzalloc(sizeof(*nvmem), GFP_KERNEL);
597 if (!nvmem)
598 return ERR_PTR(-ENOMEM);
599
600 rval = ida_simple_get(&nvmem_ida, 0, 0, GFP_KERNEL);
601 if (rval < 0) {
602 kfree(nvmem);
603 return ERR_PTR(rval);
604 }
605
Bartosz Golaszewskic1de7f42018-09-21 06:40:08 -0700606 kref_init(&nvmem->refcnt);
Bartosz Golaszewskic7235ee2018-09-21 06:40:14 -0700607 INIT_LIST_HEAD(&nvmem->cells);
Bartosz Golaszewskic1de7f42018-09-21 06:40:08 -0700608
Srinivas Kandagatlaeace75c2015-07-27 12:13:19 +0100609 nvmem->id = rval;
Srinivas Kandagatlaeace75c2015-07-27 12:13:19 +0100610 nvmem->owner = config->owner;
Masahiro Yamada17eb18d2017-10-21 01:57:42 +0900611 if (!nvmem->owner && config->dev->driver)
612 nvmem->owner = config->dev->driver->owner;
Heiner Kallweit99897ef2017-12-15 14:06:05 +0000613 nvmem->stride = config->stride ?: 1;
614 nvmem->word_size = config->word_size ?: 1;
Srinivas Kandagatla795ddd12016-04-24 20:28:05 +0100615 nvmem->size = config->size;
Srinivas Kandagatlaeace75c2015-07-27 12:13:19 +0100616 nvmem->dev.type = &nvmem_provider_type;
617 nvmem->dev.bus = &nvmem_bus_type;
618 nvmem->dev.parent = config->dev;
Srinivas Kandagatla795ddd12016-04-24 20:28:05 +0100619 nvmem->priv = config->priv;
620 nvmem->reg_read = config->reg_read;
621 nvmem->reg_write = config->reg_write;
Heiner Kallweitfc2f9972017-12-15 14:06:06 +0000622 nvmem->dev.of_node = config->dev->of_node;
Andrey Smirnovfd0f4902018-03-09 14:46:56 +0000623
624 if (config->id == -1 && config->name) {
625 dev_set_name(&nvmem->dev, "%s", config->name);
626 } else {
627 dev_set_name(&nvmem->dev, "%s%d",
628 config->name ? : "nvmem",
629 config->name ? config->id : nvmem->id);
630 }
Srinivas Kandagatlaeace75c2015-07-27 12:13:19 +0100631
Heiner Kallweitfc2f9972017-12-15 14:06:06 +0000632 nvmem->read_only = device_property_present(config->dev, "read-only") |
Srinivas Kandagatlaeace75c2015-07-27 12:13:19 +0100633 config->read_only;
634
Andrew Lunn811b0d62016-02-26 20:59:18 +0100635 if (config->root_only)
636 nvmem->dev.groups = nvmem->read_only ?
637 nvmem_ro_root_dev_groups :
638 nvmem_rw_root_dev_groups;
639 else
640 nvmem->dev.groups = nvmem->read_only ?
641 nvmem_ro_dev_groups :
642 nvmem_rw_dev_groups;
Srinivas Kandagatlaeace75c2015-07-27 12:13:19 +0100643
644 device_initialize(&nvmem->dev);
645
646 dev_dbg(&nvmem->dev, "Registering nvmem device %s\n", config->name);
647
648 rval = device_add(&nvmem->dev);
Andrew Lunnb6c217a2016-02-26 20:59:19 +0100649 if (rval)
Johan Hovold3360acd2017-06-09 10:59:07 +0100650 goto err_put_device;
Andrew Lunnb6c217a2016-02-26 20:59:19 +0100651
652 if (config->compat) {
653 rval = nvmem_setup_compat(nvmem, config);
654 if (rval)
Johan Hovold3360acd2017-06-09 10:59:07 +0100655 goto err_device_del;
Srinivas Kandagatlaeace75c2015-07-27 12:13:19 +0100656 }
657
Bartosz Golaszewskifa72d842018-09-21 06:40:07 -0700658 if (config->cells) {
659 rval = nvmem_add_cells(nvmem, config->cells, config->ncells);
660 if (rval)
661 goto err_teardown_compat;
662 }
Srinivas Kandagatlaeace75c2015-07-27 12:13:19 +0100663
Bartosz Golaszewskib985f4c2018-09-21 06:40:15 -0700664 rval = nvmem_add_cells_from_table(nvmem);
665 if (rval)
666 goto err_remove_cells;
667
Bartosz Golaszewskie888d442018-09-21 06:40:16 -0700668 rval = nvmem_add_cells_from_of(nvmem);
669 if (rval)
670 goto err_remove_cells;
671
Bartosz Golaszewskibee11382018-09-21 06:40:19 -0700672 rval = blocking_notifier_call_chain(&nvmem_notifier, NVMEM_ADD, nvmem);
673 if (rval)
674 goto err_remove_cells;
675
Srinivas Kandagatlaeace75c2015-07-27 12:13:19 +0100676 return nvmem;
Johan Hovold3360acd2017-06-09 10:59:07 +0100677
Bartosz Golaszewskib985f4c2018-09-21 06:40:15 -0700678err_remove_cells:
679 nvmem_device_remove_all_cells(nvmem);
Bartosz Golaszewskifa72d842018-09-21 06:40:07 -0700680err_teardown_compat:
681 if (config->compat)
682 device_remove_bin_file(nvmem->base_dev, &nvmem->eeprom);
Johan Hovold3360acd2017-06-09 10:59:07 +0100683err_device_del:
684 device_del(&nvmem->dev);
685err_put_device:
686 put_device(&nvmem->dev);
687
Andrew Lunnb6c217a2016-02-26 20:59:19 +0100688 return ERR_PTR(rval);
Srinivas Kandagatlaeace75c2015-07-27 12:13:19 +0100689}
690EXPORT_SYMBOL_GPL(nvmem_register);
691
Bartosz Golaszewskic1de7f42018-09-21 06:40:08 -0700692static void nvmem_device_release(struct kref *kref)
693{
694 struct nvmem_device *nvmem;
695
696 nvmem = container_of(kref, struct nvmem_device, refcnt);
697
Bartosz Golaszewskibee11382018-09-21 06:40:19 -0700698 blocking_notifier_call_chain(&nvmem_notifier, NVMEM_REMOVE, nvmem);
699
Bartosz Golaszewskic1de7f42018-09-21 06:40:08 -0700700 if (nvmem->flags & FLAG_COMPAT)
701 device_remove_bin_file(nvmem->base_dev, &nvmem->eeprom);
702
703 nvmem_device_remove_all_cells(nvmem);
704 device_del(&nvmem->dev);
705 put_device(&nvmem->dev);
706}
707
Srinivas Kandagatlaeace75c2015-07-27 12:13:19 +0100708/**
709 * nvmem_unregister() - Unregister previously registered nvmem device
710 *
711 * @nvmem: Pointer to previously registered nvmem device.
Srinivas Kandagatlaeace75c2015-07-27 12:13:19 +0100712 */
Bartosz Golaszewskibf58e882018-09-21 06:40:13 -0700713void nvmem_unregister(struct nvmem_device *nvmem)
Srinivas Kandagatlaeace75c2015-07-27 12:13:19 +0100714{
Bartosz Golaszewskic1de7f42018-09-21 06:40:08 -0700715 kref_put(&nvmem->refcnt, nvmem_device_release);
Srinivas Kandagatlaeace75c2015-07-27 12:13:19 +0100716}
717EXPORT_SYMBOL_GPL(nvmem_unregister);
718
Andrey Smirnovf1f50ec2018-03-09 14:46:57 +0000719static void devm_nvmem_release(struct device *dev, void *res)
720{
Bartosz Golaszewskibf58e882018-09-21 06:40:13 -0700721 nvmem_unregister(*(struct nvmem_device **)res);
Andrey Smirnovf1f50ec2018-03-09 14:46:57 +0000722}
723
724/**
725 * devm_nvmem_register() - Register a managed nvmem device for given
726 * nvmem_config.
727 * Also creates an binary entry in /sys/bus/nvmem/devices/dev-name/nvmem
728 *
Srinivas Kandagatlab378c772018-05-11 12:07:02 +0100729 * @dev: Device that uses the nvmem device.
Andrey Smirnovf1f50ec2018-03-09 14:46:57 +0000730 * @config: nvmem device configuration with which nvmem device is created.
731 *
732 * Return: Will be an ERR_PTR() on error or a valid pointer to nvmem_device
733 * on success.
734 */
735struct nvmem_device *devm_nvmem_register(struct device *dev,
736 const struct nvmem_config *config)
737{
738 struct nvmem_device **ptr, *nvmem;
739
740 ptr = devres_alloc(devm_nvmem_release, sizeof(*ptr), GFP_KERNEL);
741 if (!ptr)
742 return ERR_PTR(-ENOMEM);
743
744 nvmem = nvmem_register(config);
745
746 if (!IS_ERR(nvmem)) {
747 *ptr = nvmem;
748 devres_add(dev, ptr);
749 } else {
750 devres_free(ptr);
751 }
752
753 return nvmem;
754}
755EXPORT_SYMBOL_GPL(devm_nvmem_register);
756
757static int devm_nvmem_match(struct device *dev, void *res, void *data)
758{
759 struct nvmem_device **r = res;
760
761 return *r == data;
762}
763
764/**
765 * devm_nvmem_unregister() - Unregister previously registered managed nvmem
766 * device.
767 *
Srinivas Kandagatlab378c772018-05-11 12:07:02 +0100768 * @dev: Device that uses the nvmem device.
Andrey Smirnovf1f50ec2018-03-09 14:46:57 +0000769 * @nvmem: Pointer to previously registered nvmem device.
770 *
771 * Return: Will be an negative on error or a zero on success.
772 */
773int devm_nvmem_unregister(struct device *dev, struct nvmem_device *nvmem)
774{
775 return devres_release(dev, devm_nvmem_release, devm_nvmem_match, nvmem);
776}
777EXPORT_SYMBOL(devm_nvmem_unregister);
778
Srinivas Kandagatla69aba792015-07-27 12:13:34 +0100779static struct nvmem_device *__nvmem_device_get(struct device_node *np,
Bartosz Golaszewski506157b2018-09-21 06:40:17 -0700780 const char *nvmem_name)
Srinivas Kandagatla69aba792015-07-27 12:13:34 +0100781{
782 struct nvmem_device *nvmem = NULL;
783
784 mutex_lock(&nvmem_mutex);
Bartosz Golaszewski506157b2018-09-21 06:40:17 -0700785 nvmem = np ? of_nvmem_find(np) : nvmem_find(nvmem_name);
Srinivas Kandagatla69aba792015-07-27 12:13:34 +0100786 mutex_unlock(&nvmem_mutex);
Bartosz Golaszewskic7235ee2018-09-21 06:40:14 -0700787 if (!nvmem)
788 return ERR_PTR(-EPROBE_DEFER);
Srinivas Kandagatla69aba792015-07-27 12:13:34 +0100789
790 if (!try_module_get(nvmem->owner)) {
791 dev_err(&nvmem->dev,
792 "could not increase module refcount for cell %s\n",
Bartosz Golaszewski5db652c2018-09-21 06:40:04 -0700793 nvmem_dev_name(nvmem));
Srinivas Kandagatla69aba792015-07-27 12:13:34 +0100794
Srinivas Kandagatla69aba792015-07-27 12:13:34 +0100795 return ERR_PTR(-EINVAL);
796 }
797
Bartosz Golaszewskic1de7f42018-09-21 06:40:08 -0700798 kref_get(&nvmem->refcnt);
799
Srinivas Kandagatla69aba792015-07-27 12:13:34 +0100800 return nvmem;
801}
802
803static void __nvmem_device_put(struct nvmem_device *nvmem)
804{
805 module_put(nvmem->owner);
Bartosz Golaszewskic1de7f42018-09-21 06:40:08 -0700806 kref_put(&nvmem->refcnt, nvmem_device_release);
Srinivas Kandagatla69aba792015-07-27 12:13:34 +0100807}
808
Masahiro Yamadae701c672017-09-11 11:00:14 +0200809#if IS_ENABLED(CONFIG_OF)
Srinivas Kandagatlae2a54022015-07-27 12:13:45 +0100810/**
811 * of_nvmem_device_get() - Get nvmem device from a given id
812 *
Vivek Gautam29143262017-01-22 23:02:39 +0000813 * @np: Device tree node that uses the nvmem device.
Srinivas Kandagatlae2a54022015-07-27 12:13:45 +0100814 * @id: nvmem name from nvmem-names property.
815 *
816 * Return: ERR_PTR() on error or a valid pointer to a struct nvmem_device
817 * on success.
818 */
819struct nvmem_device *of_nvmem_device_get(struct device_node *np, const char *id)
820{
821
822 struct device_node *nvmem_np;
823 int index;
824
825 index = of_property_match_string(np, "nvmem-names", id);
826
827 nvmem_np = of_parse_phandle(np, "nvmem", index);
828 if (!nvmem_np)
829 return ERR_PTR(-EINVAL);
830
Bartosz Golaszewski506157b2018-09-21 06:40:17 -0700831 return __nvmem_device_get(nvmem_np, NULL);
Srinivas Kandagatlae2a54022015-07-27 12:13:45 +0100832}
833EXPORT_SYMBOL_GPL(of_nvmem_device_get);
834#endif
835
836/**
837 * nvmem_device_get() - Get nvmem device from a given id
838 *
Vivek Gautam29143262017-01-22 23:02:39 +0000839 * @dev: Device that uses the nvmem device.
840 * @dev_name: name of the requested nvmem device.
Srinivas Kandagatlae2a54022015-07-27 12:13:45 +0100841 *
842 * Return: ERR_PTR() on error or a valid pointer to a struct nvmem_device
843 * on success.
844 */
845struct nvmem_device *nvmem_device_get(struct device *dev, const char *dev_name)
846{
847 if (dev->of_node) { /* try dt first */
848 struct nvmem_device *nvmem;
849
850 nvmem = of_nvmem_device_get(dev->of_node, dev_name);
851
852 if (!IS_ERR(nvmem) || PTR_ERR(nvmem) == -EPROBE_DEFER)
853 return nvmem;
854
855 }
856
857 return nvmem_find(dev_name);
858}
859EXPORT_SYMBOL_GPL(nvmem_device_get);
860
861static int devm_nvmem_device_match(struct device *dev, void *res, void *data)
862{
863 struct nvmem_device **nvmem = res;
864
865 if (WARN_ON(!nvmem || !*nvmem))
866 return 0;
867
868 return *nvmem == data;
869}
870
871static void devm_nvmem_device_release(struct device *dev, void *res)
872{
873 nvmem_device_put(*(struct nvmem_device **)res);
874}
875
876/**
877 * devm_nvmem_device_put() - put alredy got nvmem device
878 *
Vivek Gautam29143262017-01-22 23:02:39 +0000879 * @dev: Device that uses the nvmem device.
Srinivas Kandagatlae2a54022015-07-27 12:13:45 +0100880 * @nvmem: pointer to nvmem device allocated by devm_nvmem_cell_get(),
881 * that needs to be released.
882 */
883void devm_nvmem_device_put(struct device *dev, struct nvmem_device *nvmem)
884{
885 int ret;
886
887 ret = devres_release(dev, devm_nvmem_device_release,
888 devm_nvmem_device_match, nvmem);
889
890 WARN_ON(ret);
891}
892EXPORT_SYMBOL_GPL(devm_nvmem_device_put);
893
894/**
895 * nvmem_device_put() - put alredy got nvmem device
896 *
897 * @nvmem: pointer to nvmem device that needs to be released.
898 */
899void nvmem_device_put(struct nvmem_device *nvmem)
900{
901 __nvmem_device_put(nvmem);
902}
903EXPORT_SYMBOL_GPL(nvmem_device_put);
904
905/**
906 * devm_nvmem_device_get() - Get nvmem cell of device form a given id
907 *
Vivek Gautam29143262017-01-22 23:02:39 +0000908 * @dev: Device that requests the nvmem device.
909 * @id: name id for the requested nvmem device.
Srinivas Kandagatlae2a54022015-07-27 12:13:45 +0100910 *
911 * Return: ERR_PTR() on error or a valid pointer to a struct nvmem_cell
912 * on success. The nvmem_cell will be freed by the automatically once the
913 * device is freed.
914 */
915struct nvmem_device *devm_nvmem_device_get(struct device *dev, const char *id)
916{
917 struct nvmem_device **ptr, *nvmem;
918
919 ptr = devres_alloc(devm_nvmem_device_release, sizeof(*ptr), GFP_KERNEL);
920 if (!ptr)
921 return ERR_PTR(-ENOMEM);
922
923 nvmem = nvmem_device_get(dev, id);
924 if (!IS_ERR(nvmem)) {
925 *ptr = nvmem;
926 devres_add(dev, ptr);
927 } else {
928 devres_free(ptr);
929 }
930
931 return nvmem;
932}
933EXPORT_SYMBOL_GPL(devm_nvmem_device_get);
934
Bartosz Golaszewski506157b2018-09-21 06:40:17 -0700935static struct nvmem_cell *
936nvmem_cell_get_from_lookup(struct device *dev, const char *con_id)
Srinivas Kandagatla69aba792015-07-27 12:13:34 +0100937{
Bartosz Golaszewski506157b2018-09-21 06:40:17 -0700938 struct nvmem_cell *cell = ERR_PTR(-ENOENT);
939 struct nvmem_cell_lookup *lookup;
Srinivas Kandagatla69aba792015-07-27 12:13:34 +0100940 struct nvmem_device *nvmem;
Bartosz Golaszewski506157b2018-09-21 06:40:17 -0700941 const char *dev_id;
Srinivas Kandagatla69aba792015-07-27 12:13:34 +0100942
Bartosz Golaszewski506157b2018-09-21 06:40:17 -0700943 if (!dev)
944 return ERR_PTR(-EINVAL);
Srinivas Kandagatla69aba792015-07-27 12:13:34 +0100945
Bartosz Golaszewski506157b2018-09-21 06:40:17 -0700946 dev_id = dev_name(dev);
947
948 mutex_lock(&nvmem_lookup_mutex);
949
950 list_for_each_entry(lookup, &nvmem_lookup_list, node) {
951 if ((strcmp(lookup->dev_id, dev_id) == 0) &&
952 (strcmp(lookup->con_id, con_id) == 0)) {
953 /* This is the right entry. */
954 nvmem = __nvmem_device_get(NULL, lookup->nvmem_name);
955 if (!nvmem) {
956 /* Provider may not be registered yet. */
957 cell = ERR_PTR(-EPROBE_DEFER);
958 goto out;
959 }
960
961 cell = nvmem_find_cell_by_name(nvmem,
962 lookup->cell_name);
963 if (!cell) {
964 __nvmem_device_put(nvmem);
965 goto out;
966 }
967 }
968 }
969
970out:
971 mutex_unlock(&nvmem_lookup_mutex);
Srinivas Kandagatla69aba792015-07-27 12:13:34 +0100972 return cell;
973}
974
Masahiro Yamadae701c672017-09-11 11:00:14 +0200975#if IS_ENABLED(CONFIG_OF)
Srinivas Kandagatla69aba792015-07-27 12:13:34 +0100976/**
977 * of_nvmem_cell_get() - Get a nvmem cell from given device node and cell id
978 *
Vivek Gautam29143262017-01-22 23:02:39 +0000979 * @np: Device tree node that uses the nvmem cell.
Bartosz Golaszewski165589f2018-09-21 06:40:21 -0700980 * @id: nvmem cell name from nvmem-cell-names property, or NULL
981 * for the cell at index 0 (the lone cell with no accompanying
982 * nvmem-cell-names property).
Srinivas Kandagatla69aba792015-07-27 12:13:34 +0100983 *
984 * Return: Will be an ERR_PTR() on error or a valid pointer
985 * to a struct nvmem_cell. The nvmem_cell will be freed by the
986 * nvmem_cell_put().
987 */
Bartosz Golaszewski165589f2018-09-21 06:40:21 -0700988struct nvmem_cell *of_nvmem_cell_get(struct device_node *np, const char *id)
Srinivas Kandagatla69aba792015-07-27 12:13:34 +0100989{
990 struct device_node *cell_np, *nvmem_np;
Srinivas Kandagatla69aba792015-07-27 12:13:34 +0100991 struct nvmem_device *nvmem;
Bartosz Golaszewskie888d442018-09-21 06:40:16 -0700992 struct nvmem_cell *cell;
Vivek Gautamfd0c4782017-01-22 23:02:40 +0000993 int index = 0;
Srinivas Kandagatla69aba792015-07-27 12:13:34 +0100994
Vivek Gautamfd0c4782017-01-22 23:02:40 +0000995 /* if cell name exists, find index to the name */
Bartosz Golaszewski165589f2018-09-21 06:40:21 -0700996 if (id)
997 index = of_property_match_string(np, "nvmem-cell-names", id);
Srinivas Kandagatla69aba792015-07-27 12:13:34 +0100998
999 cell_np = of_parse_phandle(np, "nvmem-cells", index);
1000 if (!cell_np)
1001 return ERR_PTR(-EINVAL);
1002
1003 nvmem_np = of_get_next_parent(cell_np);
1004 if (!nvmem_np)
1005 return ERR_PTR(-EINVAL);
1006
Bartosz Golaszewski506157b2018-09-21 06:40:17 -07001007 nvmem = __nvmem_device_get(nvmem_np, NULL);
Masahiro Yamadaaad8d092017-09-11 11:00:12 +02001008 of_node_put(nvmem_np);
Srinivas Kandagatla69aba792015-07-27 12:13:34 +01001009 if (IS_ERR(nvmem))
1010 return ERR_CAST(nvmem);
1011
Bartosz Golaszewskie888d442018-09-21 06:40:16 -07001012 cell = nvmem_find_cell_by_index(nvmem, index);
Srinivas Kandagatla69aba792015-07-27 12:13:34 +01001013 if (!cell) {
Bartosz Golaszewskie888d442018-09-21 06:40:16 -07001014 __nvmem_device_put(nvmem);
1015 return ERR_PTR(-ENOENT);
Srinivas Kandagatla69aba792015-07-27 12:13:34 +01001016 }
1017
Srinivas Kandagatla69aba792015-07-27 12:13:34 +01001018 return cell;
Srinivas Kandagatla69aba792015-07-27 12:13:34 +01001019}
1020EXPORT_SYMBOL_GPL(of_nvmem_cell_get);
1021#endif
1022
1023/**
1024 * nvmem_cell_get() - Get nvmem cell of device form a given cell name
1025 *
Vivek Gautam29143262017-01-22 23:02:39 +00001026 * @dev: Device that requests the nvmem cell.
Bartosz Golaszewski165589f2018-09-21 06:40:21 -07001027 * @id: nvmem cell name to get (this corresponds with the name from the
1028 * nvmem-cell-names property for DT systems and with the con_id from
1029 * the lookup entry for non-DT systems).
Srinivas Kandagatla69aba792015-07-27 12:13:34 +01001030 *
1031 * Return: Will be an ERR_PTR() on error or a valid pointer
1032 * to a struct nvmem_cell. The nvmem_cell will be freed by the
1033 * nvmem_cell_put().
1034 */
Bartosz Golaszewski165589f2018-09-21 06:40:21 -07001035struct nvmem_cell *nvmem_cell_get(struct device *dev, const char *id)
Srinivas Kandagatla69aba792015-07-27 12:13:34 +01001036{
1037 struct nvmem_cell *cell;
1038
1039 if (dev->of_node) { /* try dt first */
Bartosz Golaszewski165589f2018-09-21 06:40:21 -07001040 cell = of_nvmem_cell_get(dev->of_node, id);
Srinivas Kandagatla69aba792015-07-27 12:13:34 +01001041 if (!IS_ERR(cell) || PTR_ERR(cell) == -EPROBE_DEFER)
1042 return cell;
1043 }
1044
Bartosz Golaszewski165589f2018-09-21 06:40:21 -07001045 /* NULL cell id only allowed for device tree; invalid otherwise */
1046 if (!id)
Douglas Anderson87ed1402018-06-18 18:30:43 +01001047 return ERR_PTR(-EINVAL);
1048
Bartosz Golaszewski165589f2018-09-21 06:40:21 -07001049 return nvmem_cell_get_from_lookup(dev, id);
Srinivas Kandagatla69aba792015-07-27 12:13:34 +01001050}
1051EXPORT_SYMBOL_GPL(nvmem_cell_get);
1052
1053static void devm_nvmem_cell_release(struct device *dev, void *res)
1054{
1055 nvmem_cell_put(*(struct nvmem_cell **)res);
1056}
1057
1058/**
1059 * devm_nvmem_cell_get() - Get nvmem cell of device form a given id
1060 *
Vivek Gautam29143262017-01-22 23:02:39 +00001061 * @dev: Device that requests the nvmem cell.
1062 * @id: nvmem cell name id to get.
Srinivas Kandagatla69aba792015-07-27 12:13:34 +01001063 *
1064 * Return: Will be an ERR_PTR() on error or a valid pointer
1065 * to a struct nvmem_cell. The nvmem_cell will be freed by the
1066 * automatically once the device is freed.
1067 */
1068struct nvmem_cell *devm_nvmem_cell_get(struct device *dev, const char *id)
1069{
1070 struct nvmem_cell **ptr, *cell;
1071
1072 ptr = devres_alloc(devm_nvmem_cell_release, sizeof(*ptr), GFP_KERNEL);
1073 if (!ptr)
1074 return ERR_PTR(-ENOMEM);
1075
1076 cell = nvmem_cell_get(dev, id);
1077 if (!IS_ERR(cell)) {
1078 *ptr = cell;
1079 devres_add(dev, ptr);
1080 } else {
1081 devres_free(ptr);
1082 }
1083
1084 return cell;
1085}
1086EXPORT_SYMBOL_GPL(devm_nvmem_cell_get);
1087
1088static int devm_nvmem_cell_match(struct device *dev, void *res, void *data)
1089{
1090 struct nvmem_cell **c = res;
1091
1092 if (WARN_ON(!c || !*c))
1093 return 0;
1094
1095 return *c == data;
1096}
1097
1098/**
1099 * devm_nvmem_cell_put() - Release previously allocated nvmem cell
1100 * from devm_nvmem_cell_get.
1101 *
Vivek Gautam29143262017-01-22 23:02:39 +00001102 * @dev: Device that requests the nvmem cell.
1103 * @cell: Previously allocated nvmem cell by devm_nvmem_cell_get().
Srinivas Kandagatla69aba792015-07-27 12:13:34 +01001104 */
1105void devm_nvmem_cell_put(struct device *dev, struct nvmem_cell *cell)
1106{
1107 int ret;
1108
1109 ret = devres_release(dev, devm_nvmem_cell_release,
1110 devm_nvmem_cell_match, cell);
1111
1112 WARN_ON(ret);
1113}
1114EXPORT_SYMBOL(devm_nvmem_cell_put);
1115
1116/**
1117 * nvmem_cell_put() - Release previously allocated nvmem cell.
1118 *
Vivek Gautam29143262017-01-22 23:02:39 +00001119 * @cell: Previously allocated nvmem cell by nvmem_cell_get().
Srinivas Kandagatla69aba792015-07-27 12:13:34 +01001120 */
1121void nvmem_cell_put(struct nvmem_cell *cell)
1122{
1123 struct nvmem_device *nvmem = cell->nvmem;
1124
1125 __nvmem_device_put(nvmem);
Srinivas Kandagatla69aba792015-07-27 12:13:34 +01001126}
1127EXPORT_SYMBOL_GPL(nvmem_cell_put);
1128
Masahiro Yamadaf7c04f12017-09-11 11:00:13 +02001129static void nvmem_shift_read_buffer_in_place(struct nvmem_cell *cell, void *buf)
Srinivas Kandagatla69aba792015-07-27 12:13:34 +01001130{
1131 u8 *p, *b;
1132 int i, bit_offset = cell->bit_offset;
1133
1134 p = b = buf;
1135 if (bit_offset) {
1136 /* First shift */
1137 *b++ >>= bit_offset;
1138
1139 /* setup rest of the bytes if any */
1140 for (i = 1; i < cell->bytes; i++) {
1141 /* Get bits from next byte and shift them towards msb */
1142 *p |= *b << (BITS_PER_BYTE - bit_offset);
1143
1144 p = b;
1145 *b++ >>= bit_offset;
1146 }
1147
1148 /* result fits in less bytes */
1149 if (cell->bytes != DIV_ROUND_UP(cell->nbits, BITS_PER_BYTE))
1150 *p-- = 0;
1151 }
1152 /* clear msb bits if any leftover in the last byte */
1153 *p &= GENMASK((cell->nbits%BITS_PER_BYTE) - 1, 0);
1154}
1155
1156static int __nvmem_cell_read(struct nvmem_device *nvmem,
1157 struct nvmem_cell *cell,
1158 void *buf, size_t *len)
1159{
1160 int rc;
1161
Srinivas Kandagatla795ddd12016-04-24 20:28:05 +01001162 rc = nvmem_reg_read(nvmem, cell->offset, buf, cell->bytes);
Srinivas Kandagatla69aba792015-07-27 12:13:34 +01001163
Arnd Bergmann287980e2016-05-27 23:23:25 +02001164 if (rc)
Srinivas Kandagatla69aba792015-07-27 12:13:34 +01001165 return rc;
1166
1167 /* shift bits in-place */
Axel Lincbf854a2015-09-30 13:35:15 +01001168 if (cell->bit_offset || cell->nbits)
Srinivas Kandagatla69aba792015-07-27 12:13:34 +01001169 nvmem_shift_read_buffer_in_place(cell, buf);
1170
Vivek Gautam3b4a6872017-01-22 23:02:38 +00001171 if (len)
1172 *len = cell->bytes;
Srinivas Kandagatla69aba792015-07-27 12:13:34 +01001173
1174 return 0;
1175}
1176
1177/**
1178 * nvmem_cell_read() - Read a given nvmem cell
1179 *
1180 * @cell: nvmem cell to be read.
Vivek Gautam3b4a6872017-01-22 23:02:38 +00001181 * @len: pointer to length of cell which will be populated on successful read;
1182 * can be NULL.
Srinivas Kandagatla69aba792015-07-27 12:13:34 +01001183 *
Brian Norrisb577faf2017-01-04 16:18:11 +00001184 * Return: ERR_PTR() on error or a valid pointer to a buffer on success. The
1185 * buffer should be freed by the consumer with a kfree().
Srinivas Kandagatla69aba792015-07-27 12:13:34 +01001186 */
1187void *nvmem_cell_read(struct nvmem_cell *cell, size_t *len)
1188{
1189 struct nvmem_device *nvmem = cell->nvmem;
1190 u8 *buf;
1191 int rc;
1192
Srinivas Kandagatla795ddd12016-04-24 20:28:05 +01001193 if (!nvmem)
Srinivas Kandagatla69aba792015-07-27 12:13:34 +01001194 return ERR_PTR(-EINVAL);
1195
1196 buf = kzalloc(cell->bytes, GFP_KERNEL);
1197 if (!buf)
1198 return ERR_PTR(-ENOMEM);
1199
1200 rc = __nvmem_cell_read(nvmem, cell, buf, len);
Arnd Bergmann287980e2016-05-27 23:23:25 +02001201 if (rc) {
Srinivas Kandagatla69aba792015-07-27 12:13:34 +01001202 kfree(buf);
1203 return ERR_PTR(rc);
1204 }
1205
1206 return buf;
1207}
1208EXPORT_SYMBOL_GPL(nvmem_cell_read);
1209
Masahiro Yamadaf7c04f12017-09-11 11:00:13 +02001210static void *nvmem_cell_prepare_write_buffer(struct nvmem_cell *cell,
1211 u8 *_buf, int len)
Srinivas Kandagatla69aba792015-07-27 12:13:34 +01001212{
1213 struct nvmem_device *nvmem = cell->nvmem;
1214 int i, rc, nbits, bit_offset = cell->bit_offset;
1215 u8 v, *p, *buf, *b, pbyte, pbits;
1216
1217 nbits = cell->nbits;
1218 buf = kzalloc(cell->bytes, GFP_KERNEL);
1219 if (!buf)
1220 return ERR_PTR(-ENOMEM);
1221
1222 memcpy(buf, _buf, len);
1223 p = b = buf;
1224
1225 if (bit_offset) {
1226 pbyte = *b;
1227 *b <<= bit_offset;
1228
1229 /* setup the first byte with lsb bits from nvmem */
Srinivas Kandagatla795ddd12016-04-24 20:28:05 +01001230 rc = nvmem_reg_read(nvmem, cell->offset, &v, 1);
Mathieu Malaterre50808bf2018-05-11 12:07:03 +01001231 if (rc)
1232 goto err;
Srinivas Kandagatla69aba792015-07-27 12:13:34 +01001233 *b++ |= GENMASK(bit_offset - 1, 0) & v;
1234
1235 /* setup rest of the byte if any */
1236 for (i = 1; i < cell->bytes; i++) {
1237 /* Get last byte bits and shift them towards lsb */
1238 pbits = pbyte >> (BITS_PER_BYTE - 1 - bit_offset);
1239 pbyte = *b;
1240 p = b;
1241 *b <<= bit_offset;
1242 *b++ |= pbits;
1243 }
1244 }
1245
1246 /* if it's not end on byte boundary */
1247 if ((nbits + bit_offset) % BITS_PER_BYTE) {
1248 /* setup the last byte with msb bits from nvmem */
Srinivas Kandagatla795ddd12016-04-24 20:28:05 +01001249 rc = nvmem_reg_read(nvmem,
Srinivas Kandagatla69aba792015-07-27 12:13:34 +01001250 cell->offset + cell->bytes - 1, &v, 1);
Mathieu Malaterre50808bf2018-05-11 12:07:03 +01001251 if (rc)
1252 goto err;
Srinivas Kandagatla69aba792015-07-27 12:13:34 +01001253 *p |= GENMASK(7, (nbits + bit_offset) % BITS_PER_BYTE) & v;
1254
1255 }
1256
1257 return buf;
Mathieu Malaterre50808bf2018-05-11 12:07:03 +01001258err:
1259 kfree(buf);
1260 return ERR_PTR(rc);
Srinivas Kandagatla69aba792015-07-27 12:13:34 +01001261}
1262
1263/**
1264 * nvmem_cell_write() - Write to a given nvmem cell
1265 *
1266 * @cell: nvmem cell to be written.
1267 * @buf: Buffer to be written.
1268 * @len: length of buffer to be written to nvmem cell.
1269 *
1270 * Return: length of bytes written or negative on failure.
1271 */
1272int nvmem_cell_write(struct nvmem_cell *cell, void *buf, size_t len)
1273{
1274 struct nvmem_device *nvmem = cell->nvmem;
1275 int rc;
1276
Srinivas Kandagatla795ddd12016-04-24 20:28:05 +01001277 if (!nvmem || nvmem->read_only ||
Srinivas Kandagatla69aba792015-07-27 12:13:34 +01001278 (cell->bit_offset == 0 && len != cell->bytes))
1279 return -EINVAL;
1280
1281 if (cell->bit_offset || cell->nbits) {
1282 buf = nvmem_cell_prepare_write_buffer(cell, buf, len);
1283 if (IS_ERR(buf))
1284 return PTR_ERR(buf);
1285 }
1286
Srinivas Kandagatla795ddd12016-04-24 20:28:05 +01001287 rc = nvmem_reg_write(nvmem, cell->offset, buf, cell->bytes);
Srinivas Kandagatla69aba792015-07-27 12:13:34 +01001288
1289 /* free the tmp buffer */
Axel Linace22172015-09-30 13:36:10 +01001290 if (cell->bit_offset || cell->nbits)
Srinivas Kandagatla69aba792015-07-27 12:13:34 +01001291 kfree(buf);
1292
Arnd Bergmann287980e2016-05-27 23:23:25 +02001293 if (rc)
Srinivas Kandagatla69aba792015-07-27 12:13:34 +01001294 return rc;
1295
1296 return len;
1297}
1298EXPORT_SYMBOL_GPL(nvmem_cell_write);
1299
Srinivas Kandagatlae2a54022015-07-27 12:13:45 +01001300/**
Leonard Crestezd026d702017-07-26 11:34:46 +02001301 * nvmem_cell_read_u32() - Read a cell value as an u32
1302 *
1303 * @dev: Device that requests the nvmem cell.
1304 * @cell_id: Name of nvmem cell to read.
1305 * @val: pointer to output value.
1306 *
1307 * Return: 0 on success or negative errno.
1308 */
1309int nvmem_cell_read_u32(struct device *dev, const char *cell_id, u32 *val)
1310{
1311 struct nvmem_cell *cell;
1312 void *buf;
1313 size_t len;
1314
1315 cell = nvmem_cell_get(dev, cell_id);
1316 if (IS_ERR(cell))
1317 return PTR_ERR(cell);
1318
1319 buf = nvmem_cell_read(cell, &len);
1320 if (IS_ERR(buf)) {
1321 nvmem_cell_put(cell);
1322 return PTR_ERR(buf);
1323 }
1324 if (len != sizeof(*val)) {
1325 kfree(buf);
1326 nvmem_cell_put(cell);
1327 return -EINVAL;
1328 }
1329 memcpy(val, buf, sizeof(*val));
1330
1331 kfree(buf);
1332 nvmem_cell_put(cell);
1333 return 0;
1334}
1335EXPORT_SYMBOL_GPL(nvmem_cell_read_u32);
1336
1337/**
Srinivas Kandagatlae2a54022015-07-27 12:13:45 +01001338 * nvmem_device_cell_read() - Read a given nvmem device and cell
1339 *
1340 * @nvmem: nvmem device to read from.
1341 * @info: nvmem cell info to be read.
1342 * @buf: buffer pointer which will be populated on successful read.
1343 *
1344 * Return: length of successful bytes read on success and negative
1345 * error code on error.
1346 */
1347ssize_t nvmem_device_cell_read(struct nvmem_device *nvmem,
1348 struct nvmem_cell_info *info, void *buf)
1349{
1350 struct nvmem_cell cell;
1351 int rc;
1352 ssize_t len;
1353
Srinivas Kandagatla795ddd12016-04-24 20:28:05 +01001354 if (!nvmem)
Srinivas Kandagatlae2a54022015-07-27 12:13:45 +01001355 return -EINVAL;
1356
1357 rc = nvmem_cell_info_to_nvmem_cell(nvmem, info, &cell);
Arnd Bergmann287980e2016-05-27 23:23:25 +02001358 if (rc)
Srinivas Kandagatlae2a54022015-07-27 12:13:45 +01001359 return rc;
1360
1361 rc = __nvmem_cell_read(nvmem, &cell, buf, &len);
Arnd Bergmann287980e2016-05-27 23:23:25 +02001362 if (rc)
Srinivas Kandagatlae2a54022015-07-27 12:13:45 +01001363 return rc;
1364
1365 return len;
1366}
1367EXPORT_SYMBOL_GPL(nvmem_device_cell_read);
1368
1369/**
1370 * nvmem_device_cell_write() - Write cell to a given nvmem device
1371 *
1372 * @nvmem: nvmem device to be written to.
Vivek Gautam29143262017-01-22 23:02:39 +00001373 * @info: nvmem cell info to be written.
Srinivas Kandagatlae2a54022015-07-27 12:13:45 +01001374 * @buf: buffer to be written to cell.
1375 *
1376 * Return: length of bytes written or negative error code on failure.
Bartosz Golaszewski48f63a22018-09-21 06:40:23 -07001377 */
Srinivas Kandagatlae2a54022015-07-27 12:13:45 +01001378int nvmem_device_cell_write(struct nvmem_device *nvmem,
1379 struct nvmem_cell_info *info, void *buf)
1380{
1381 struct nvmem_cell cell;
1382 int rc;
1383
Srinivas Kandagatla795ddd12016-04-24 20:28:05 +01001384 if (!nvmem)
Srinivas Kandagatlae2a54022015-07-27 12:13:45 +01001385 return -EINVAL;
1386
1387 rc = nvmem_cell_info_to_nvmem_cell(nvmem, info, &cell);
Arnd Bergmann287980e2016-05-27 23:23:25 +02001388 if (rc)
Srinivas Kandagatlae2a54022015-07-27 12:13:45 +01001389 return rc;
1390
1391 return nvmem_cell_write(&cell, buf, cell.bytes);
1392}
1393EXPORT_SYMBOL_GPL(nvmem_device_cell_write);
1394
1395/**
1396 * nvmem_device_read() - Read from a given nvmem device
1397 *
1398 * @nvmem: nvmem device to read from.
1399 * @offset: offset in nvmem device.
1400 * @bytes: number of bytes to read.
1401 * @buf: buffer pointer which will be populated on successful read.
1402 *
1403 * Return: length of successful bytes read on success and negative
1404 * error code on error.
1405 */
1406int nvmem_device_read(struct nvmem_device *nvmem,
1407 unsigned int offset,
1408 size_t bytes, void *buf)
1409{
1410 int rc;
1411
Srinivas Kandagatla795ddd12016-04-24 20:28:05 +01001412 if (!nvmem)
Srinivas Kandagatlae2a54022015-07-27 12:13:45 +01001413 return -EINVAL;
1414
Srinivas Kandagatla795ddd12016-04-24 20:28:05 +01001415 rc = nvmem_reg_read(nvmem, offset, buf, bytes);
Srinivas Kandagatlae2a54022015-07-27 12:13:45 +01001416
Arnd Bergmann287980e2016-05-27 23:23:25 +02001417 if (rc)
Srinivas Kandagatlae2a54022015-07-27 12:13:45 +01001418 return rc;
1419
1420 return bytes;
1421}
1422EXPORT_SYMBOL_GPL(nvmem_device_read);
1423
1424/**
1425 * nvmem_device_write() - Write cell to a given nvmem device
1426 *
1427 * @nvmem: nvmem device to be written to.
1428 * @offset: offset in nvmem device.
1429 * @bytes: number of bytes to write.
1430 * @buf: buffer to be written.
1431 *
1432 * Return: length of bytes written or negative error code on failure.
Bartosz Golaszewski48f63a22018-09-21 06:40:23 -07001433 */
Srinivas Kandagatlae2a54022015-07-27 12:13:45 +01001434int nvmem_device_write(struct nvmem_device *nvmem,
1435 unsigned int offset,
1436 size_t bytes, void *buf)
1437{
1438 int rc;
1439
Srinivas Kandagatla795ddd12016-04-24 20:28:05 +01001440 if (!nvmem)
Srinivas Kandagatlae2a54022015-07-27 12:13:45 +01001441 return -EINVAL;
1442
Srinivas Kandagatla795ddd12016-04-24 20:28:05 +01001443 rc = nvmem_reg_write(nvmem, offset, buf, bytes);
Srinivas Kandagatlae2a54022015-07-27 12:13:45 +01001444
Arnd Bergmann287980e2016-05-27 23:23:25 +02001445 if (rc)
Srinivas Kandagatlae2a54022015-07-27 12:13:45 +01001446 return rc;
1447
1448
1449 return bytes;
1450}
1451EXPORT_SYMBOL_GPL(nvmem_device_write);
1452
Bartosz Golaszewskid7b9fd12018-09-21 06:40:03 -07001453/**
Bartosz Golaszewskib985f4c2018-09-21 06:40:15 -07001454 * nvmem_add_cell_table() - register a table of cell info entries
1455 *
1456 * @table: table of cell info entries
1457 */
1458void nvmem_add_cell_table(struct nvmem_cell_table *table)
1459{
1460 mutex_lock(&nvmem_cell_mutex);
1461 list_add_tail(&table->node, &nvmem_cell_tables);
1462 mutex_unlock(&nvmem_cell_mutex);
1463}
1464EXPORT_SYMBOL_GPL(nvmem_add_cell_table);
1465
1466/**
1467 * nvmem_del_cell_table() - remove a previously registered cell info table
1468 *
1469 * @table: table of cell info entries
1470 */
1471void nvmem_del_cell_table(struct nvmem_cell_table *table)
1472{
1473 mutex_lock(&nvmem_cell_mutex);
1474 list_del(&table->node);
1475 mutex_unlock(&nvmem_cell_mutex);
1476}
1477EXPORT_SYMBOL_GPL(nvmem_del_cell_table);
1478
1479/**
Bartosz Golaszewski506157b2018-09-21 06:40:17 -07001480 * nvmem_add_cell_lookups() - register a list of cell lookup entries
1481 *
1482 * @entries: array of cell lookup entries
1483 * @nentries: number of cell lookup entries in the array
1484 */
1485void nvmem_add_cell_lookups(struct nvmem_cell_lookup *entries, size_t nentries)
1486{
1487 int i;
1488
1489 mutex_lock(&nvmem_lookup_mutex);
1490 for (i = 0; i < nentries; i++)
1491 list_add_tail(&entries[i].node, &nvmem_lookup_list);
1492 mutex_unlock(&nvmem_lookup_mutex);
1493}
1494EXPORT_SYMBOL_GPL(nvmem_add_cell_lookups);
1495
1496/**
1497 * nvmem_del_cell_lookups() - remove a list of previously added cell lookup
1498 * entries
1499 *
1500 * @entries: array of cell lookup entries
1501 * @nentries: number of cell lookup entries in the array
1502 */
1503void nvmem_del_cell_lookups(struct nvmem_cell_lookup *entries, size_t nentries)
1504{
1505 int i;
1506
1507 mutex_lock(&nvmem_lookup_mutex);
1508 for (i = 0; i < nentries; i++)
1509 list_del(&entries[i].node);
1510 mutex_unlock(&nvmem_lookup_mutex);
1511}
1512EXPORT_SYMBOL_GPL(nvmem_del_cell_lookups);
1513
1514/**
Bartosz Golaszewskid7b9fd12018-09-21 06:40:03 -07001515 * nvmem_dev_name() - Get the name of a given nvmem device.
1516 *
1517 * @nvmem: nvmem device.
1518 *
1519 * Return: name of the nvmem device.
1520 */
1521const char *nvmem_dev_name(struct nvmem_device *nvmem)
1522{
1523 return dev_name(&nvmem->dev);
1524}
1525EXPORT_SYMBOL_GPL(nvmem_dev_name);
1526
Srinivas Kandagatlaeace75c2015-07-27 12:13:19 +01001527static int __init nvmem_init(void)
1528{
1529 return bus_register(&nvmem_bus_type);
1530}
1531
1532static void __exit nvmem_exit(void)
1533{
1534 bus_unregister(&nvmem_bus_type);
1535}
1536
1537subsys_initcall(nvmem_init);
1538module_exit(nvmem_exit);
1539
1540MODULE_AUTHOR("Srinivas Kandagatla <srinivas.kandagatla@linaro.org");
1541MODULE_AUTHOR("Maxime Ripard <maxime.ripard@free-electrons.com");
1542MODULE_DESCRIPTION("nvmem Driver Core");
1543MODULE_LICENSE("GPL v2");