1 // SPDX-License-Identifier: GPL-2.0
3 * nvmem framework core.
5 * Copyright (C) 2015 Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
6 * Copyright (C) 2013 Maxime Ripard <maxime.ripard@free-electrons.com>
9 #include <linux/device.h>
10 #include <linux/export.h>
12 #include <linux/idr.h>
13 #include <linux/init.h>
14 #include <linux/kref.h>
15 #include <linux/module.h>
16 #include <linux/nvmem-consumer.h>
17 #include <linux/nvmem-provider.h>
18 #include <linux/gpio/consumer.h>
20 #include <linux/slab.h>
34 struct bin_attribute eeprom;
35 struct device *base_dev;
36 struct list_head cells;
37 const struct nvmem_keepout *keepout;
38 unsigned int nkeepout;
39 nvmem_reg_read_t reg_read;
40 nvmem_reg_write_t reg_write;
41 struct gpio_desc *wp_gpio;
42 struct nvmem_layout *layout;
46 #define to_nvmem_device(d) container_of(d, struct nvmem_device, dev)
48 #define FLAG_COMPAT BIT(0)
49 struct nvmem_cell_entry {
56 nvmem_cell_post_process_t read_post_process;
58 struct device_node *np;
59 struct nvmem_device *nvmem;
60 struct list_head node;
64 struct nvmem_cell_entry *entry;
69 static DEFINE_MUTEX(nvmem_mutex);
70 static DEFINE_IDA(nvmem_ida);
72 static DEFINE_MUTEX(nvmem_cell_mutex);
73 static LIST_HEAD(nvmem_cell_tables);
75 static DEFINE_MUTEX(nvmem_lookup_mutex);
76 static LIST_HEAD(nvmem_lookup_list);
78 static BLOCKING_NOTIFIER_HEAD(nvmem_notifier);
80 static DEFINE_SPINLOCK(nvmem_layout_lock);
81 static LIST_HEAD(nvmem_layouts);
83 static int __nvmem_reg_read(struct nvmem_device *nvmem, unsigned int offset,
84 void *val, size_t bytes)
87 return nvmem->reg_read(nvmem->priv, offset, val, bytes);
92 static int __nvmem_reg_write(struct nvmem_device *nvmem, unsigned int offset,
93 void *val, size_t bytes)
97 if (nvmem->reg_write) {
98 gpiod_set_value_cansleep(nvmem->wp_gpio, 0);
99 ret = nvmem->reg_write(nvmem->priv, offset, val, bytes);
100 gpiod_set_value_cansleep(nvmem->wp_gpio, 1);
107 static int nvmem_access_with_keepouts(struct nvmem_device *nvmem,
108 unsigned int offset, void *val,
109 size_t bytes, int write)
112 unsigned int end = offset + bytes;
113 unsigned int kend, ksize;
114 const struct nvmem_keepout *keepout = nvmem->keepout;
115 const struct nvmem_keepout *keepoutend = keepout + nvmem->nkeepout;
119 * Skip all keepouts before the range being accessed.
120 * Keepouts are sorted.
122 while ((keepout < keepoutend) && (keepout->end <= offset))
125 while ((offset < end) && (keepout < keepoutend)) {
126 /* Access the valid portion before the keepout. */
127 if (offset < keepout->start) {
128 kend = min(end, keepout->start);
129 ksize = kend - offset;
131 rc = __nvmem_reg_write(nvmem, offset, val, ksize);
133 rc = __nvmem_reg_read(nvmem, offset, val, ksize);
143 * Now we're aligned to the start of this keepout zone. Go
146 kend = min(end, keepout->end);
147 ksize = kend - offset;
149 memset(val, keepout->value, ksize);
157 * If we ran out of keepouts but there's still stuff to do, send it
161 ksize = end - offset;
163 return __nvmem_reg_write(nvmem, offset, val, ksize);
165 return __nvmem_reg_read(nvmem, offset, val, ksize);
171 static int nvmem_reg_read(struct nvmem_device *nvmem, unsigned int offset,
172 void *val, size_t bytes)
174 if (!nvmem->nkeepout)
175 return __nvmem_reg_read(nvmem, offset, val, bytes);
177 return nvmem_access_with_keepouts(nvmem, offset, val, bytes, false);
180 static int nvmem_reg_write(struct nvmem_device *nvmem, unsigned int offset,
181 void *val, size_t bytes)
183 if (!nvmem->nkeepout)
184 return __nvmem_reg_write(nvmem, offset, val, bytes);
186 return nvmem_access_with_keepouts(nvmem, offset, val, bytes, true);
189 #ifdef CONFIG_NVMEM_SYSFS
190 static const char * const nvmem_type_str[] = {
191 [NVMEM_TYPE_UNKNOWN] = "Unknown",
192 [NVMEM_TYPE_EEPROM] = "EEPROM",
193 [NVMEM_TYPE_OTP] = "OTP",
194 [NVMEM_TYPE_BATTERY_BACKED] = "Battery backed",
195 [NVMEM_TYPE_FRAM] = "FRAM",
198 #ifdef CONFIG_DEBUG_LOCK_ALLOC
199 static struct lock_class_key eeprom_lock_key;
202 static ssize_t type_show(struct device *dev,
203 struct device_attribute *attr, char *buf)
205 struct nvmem_device *nvmem = to_nvmem_device(dev);
207 return sprintf(buf, "%s\n", nvmem_type_str[nvmem->type]);
210 static DEVICE_ATTR_RO(type);
212 static struct attribute *nvmem_attrs[] = {
217 static ssize_t bin_attr_nvmem_read(struct file *filp, struct kobject *kobj,
218 struct bin_attribute *attr, char *buf,
219 loff_t pos, size_t count)
222 struct nvmem_device *nvmem;
228 dev = kobj_to_dev(kobj);
229 nvmem = to_nvmem_device(dev);
231 /* Stop the user from reading */
232 if (pos >= nvmem->size)
235 if (!IS_ALIGNED(pos, nvmem->stride))
238 if (count < nvmem->word_size)
241 if (pos + count > nvmem->size)
242 count = nvmem->size - pos;
244 count = round_down(count, nvmem->word_size);
246 if (!nvmem->reg_read)
249 rc = nvmem_reg_read(nvmem, pos, buf, count);
257 static ssize_t bin_attr_nvmem_write(struct file *filp, struct kobject *kobj,
258 struct bin_attribute *attr, char *buf,
259 loff_t pos, size_t count)
262 struct nvmem_device *nvmem;
268 dev = kobj_to_dev(kobj);
269 nvmem = to_nvmem_device(dev);
271 /* Stop the user from writing */
272 if (pos >= nvmem->size)
275 if (!IS_ALIGNED(pos, nvmem->stride))
278 if (count < nvmem->word_size)
281 if (pos + count > nvmem->size)
282 count = nvmem->size - pos;
284 count = round_down(count, nvmem->word_size);
286 if (!nvmem->reg_write)
289 rc = nvmem_reg_write(nvmem, pos, buf, count);
297 static umode_t nvmem_bin_attr_get_umode(struct nvmem_device *nvmem)
301 if (!nvmem->root_only)
304 if (!nvmem->read_only)
307 if (!nvmem->reg_write)
310 if (!nvmem->reg_read)
316 static umode_t nvmem_bin_attr_is_visible(struct kobject *kobj,
317 struct bin_attribute *attr, int i)
319 struct device *dev = kobj_to_dev(kobj);
320 struct nvmem_device *nvmem = to_nvmem_device(dev);
322 attr->size = nvmem->size;
324 return nvmem_bin_attr_get_umode(nvmem);
327 /* default read/write permissions */
328 static struct bin_attribute bin_attr_rw_nvmem = {
333 .read = bin_attr_nvmem_read,
334 .write = bin_attr_nvmem_write,
337 static struct bin_attribute *nvmem_bin_attributes[] = {
342 static const struct attribute_group nvmem_bin_group = {
343 .bin_attrs = nvmem_bin_attributes,
344 .attrs = nvmem_attrs,
345 .is_bin_visible = nvmem_bin_attr_is_visible,
348 static const struct attribute_group *nvmem_dev_groups[] = {
353 static struct bin_attribute bin_attr_nvmem_eeprom_compat = {
357 .read = bin_attr_nvmem_read,
358 .write = bin_attr_nvmem_write,
362 * nvmem_setup_compat() - Create an additional binary entry in
363 * drivers sys directory, to be backwards compatible with the older
364 * drivers/misc/eeprom drivers.
366 static int nvmem_sysfs_setup_compat(struct nvmem_device *nvmem,
367 const struct nvmem_config *config)
374 if (!config->base_dev)
377 if (config->type == NVMEM_TYPE_FRAM)
378 bin_attr_nvmem_eeprom_compat.attr.name = "fram";
380 nvmem->eeprom = bin_attr_nvmem_eeprom_compat;
381 nvmem->eeprom.attr.mode = nvmem_bin_attr_get_umode(nvmem);
382 nvmem->eeprom.size = nvmem->size;
383 #ifdef CONFIG_DEBUG_LOCK_ALLOC
384 nvmem->eeprom.attr.key = &eeprom_lock_key;
386 nvmem->eeprom.private = &nvmem->dev;
387 nvmem->base_dev = config->base_dev;
389 rval = device_create_bin_file(nvmem->base_dev, &nvmem->eeprom);
392 "Failed to create eeprom binary file %d\n", rval);
396 nvmem->flags |= FLAG_COMPAT;
401 static void nvmem_sysfs_remove_compat(struct nvmem_device *nvmem,
402 const struct nvmem_config *config)
405 device_remove_bin_file(nvmem->base_dev, &nvmem->eeprom);
408 #else /* CONFIG_NVMEM_SYSFS */
410 static int nvmem_sysfs_setup_compat(struct nvmem_device *nvmem,
411 const struct nvmem_config *config)
415 static void nvmem_sysfs_remove_compat(struct nvmem_device *nvmem,
416 const struct nvmem_config *config)
420 #endif /* CONFIG_NVMEM_SYSFS */
422 static void nvmem_release(struct device *dev)
424 struct nvmem_device *nvmem = to_nvmem_device(dev);
426 ida_free(&nvmem_ida, nvmem->id);
427 gpiod_put(nvmem->wp_gpio);
431 static const struct device_type nvmem_provider_type = {
432 .release = nvmem_release,
435 static struct bus_type nvmem_bus_type = {
439 static void nvmem_cell_entry_drop(struct nvmem_cell_entry *cell)
441 blocking_notifier_call_chain(&nvmem_notifier, NVMEM_CELL_REMOVE, cell);
442 mutex_lock(&nvmem_mutex);
443 list_del(&cell->node);
444 mutex_unlock(&nvmem_mutex);
445 of_node_put(cell->np);
446 kfree_const(cell->name);
450 static void nvmem_device_remove_all_cells(const struct nvmem_device *nvmem)
452 struct nvmem_cell_entry *cell, *p;
454 list_for_each_entry_safe(cell, p, &nvmem->cells, node)
455 nvmem_cell_entry_drop(cell);
458 static void nvmem_cell_entry_add(struct nvmem_cell_entry *cell)
460 mutex_lock(&nvmem_mutex);
461 list_add_tail(&cell->node, &cell->nvmem->cells);
462 mutex_unlock(&nvmem_mutex);
463 blocking_notifier_call_chain(&nvmem_notifier, NVMEM_CELL_ADD, cell);
466 static int nvmem_cell_info_to_nvmem_cell_entry_nodup(struct nvmem_device *nvmem,
467 const struct nvmem_cell_info *info,
468 struct nvmem_cell_entry *cell)
471 cell->offset = info->offset;
472 cell->raw_len = info->raw_len ?: info->bytes;
473 cell->bytes = info->bytes;
474 cell->name = info->name;
475 cell->read_post_process = info->read_post_process;
476 cell->priv = info->priv;
478 cell->bit_offset = info->bit_offset;
479 cell->nbits = info->nbits;
483 cell->bytes = DIV_ROUND_UP(cell->nbits + cell->bit_offset,
486 if (!IS_ALIGNED(cell->offset, nvmem->stride)) {
488 "cell %s unaligned to nvmem stride %d\n",
489 cell->name ?: "<unknown>", nvmem->stride);
496 static int nvmem_cell_info_to_nvmem_cell_entry(struct nvmem_device *nvmem,
497 const struct nvmem_cell_info *info,
498 struct nvmem_cell_entry *cell)
502 err = nvmem_cell_info_to_nvmem_cell_entry_nodup(nvmem, info, cell);
506 cell->name = kstrdup_const(info->name, GFP_KERNEL);
514 * nvmem_add_one_cell() - Add one cell information to an nvmem device
516 * @nvmem: nvmem device to add cells to.
517 * @info: nvmem cell info to add to the device
519 * Return: 0 or negative error code on failure.
521 int nvmem_add_one_cell(struct nvmem_device *nvmem,
522 const struct nvmem_cell_info *info)
524 struct nvmem_cell_entry *cell;
527 cell = kzalloc(sizeof(*cell), GFP_KERNEL);
531 rval = nvmem_cell_info_to_nvmem_cell_entry(nvmem, info, cell);
537 nvmem_cell_entry_add(cell);
541 EXPORT_SYMBOL_GPL(nvmem_add_one_cell);
544 * nvmem_add_cells() - Add cell information to an nvmem device
546 * @nvmem: nvmem device to add cells to.
547 * @info: nvmem cell info to add to the device
548 * @ncells: number of cells in info
550 * Return: 0 or negative error code on failure.
552 static int nvmem_add_cells(struct nvmem_device *nvmem,
553 const struct nvmem_cell_info *info,
558 for (i = 0; i < ncells; i++) {
559 rval = nvmem_add_one_cell(nvmem, &info[i]);
568 * nvmem_register_notifier() - Register a notifier block for nvmem events.
570 * @nb: notifier block to be called on nvmem events.
572 * Return: 0 on success, negative error number on failure.
574 int nvmem_register_notifier(struct notifier_block *nb)
576 return blocking_notifier_chain_register(&nvmem_notifier, nb);
578 EXPORT_SYMBOL_GPL(nvmem_register_notifier);
581 * nvmem_unregister_notifier() - Unregister a notifier block for nvmem events.
583 * @nb: notifier block to be unregistered.
585 * Return: 0 on success, negative error number on failure.
587 int nvmem_unregister_notifier(struct notifier_block *nb)
589 return blocking_notifier_chain_unregister(&nvmem_notifier, nb);
591 EXPORT_SYMBOL_GPL(nvmem_unregister_notifier);
593 static int nvmem_add_cells_from_table(struct nvmem_device *nvmem)
595 const struct nvmem_cell_info *info;
596 struct nvmem_cell_table *table;
597 struct nvmem_cell_entry *cell;
600 mutex_lock(&nvmem_cell_mutex);
601 list_for_each_entry(table, &nvmem_cell_tables, node) {
602 if (strcmp(nvmem_dev_name(nvmem), table->nvmem_name) == 0) {
603 for (i = 0; i < table->ncells; i++) {
604 info = &table->cells[i];
606 cell = kzalloc(sizeof(*cell), GFP_KERNEL);
612 rval = nvmem_cell_info_to_nvmem_cell_entry(nvmem, info, cell);
618 nvmem_cell_entry_add(cell);
624 mutex_unlock(&nvmem_cell_mutex);
628 static struct nvmem_cell_entry *
629 nvmem_find_cell_entry_by_name(struct nvmem_device *nvmem, const char *cell_id)
631 struct nvmem_cell_entry *iter, *cell = NULL;
633 mutex_lock(&nvmem_mutex);
634 list_for_each_entry(iter, &nvmem->cells, node) {
635 if (strcmp(cell_id, iter->name) == 0) {
640 mutex_unlock(&nvmem_mutex);
645 static int nvmem_validate_keepouts(struct nvmem_device *nvmem)
647 unsigned int cur = 0;
648 const struct nvmem_keepout *keepout = nvmem->keepout;
649 const struct nvmem_keepout *keepoutend = keepout + nvmem->nkeepout;
651 while (keepout < keepoutend) {
652 /* Ensure keepouts are sorted and don't overlap. */
653 if (keepout->start < cur) {
655 "Keepout regions aren't sorted or overlap.\n");
660 if (keepout->end < keepout->start) {
662 "Invalid keepout region.\n");
668 * Validate keepouts (and holes between) don't violate
669 * word_size constraints.
671 if ((keepout->end - keepout->start < nvmem->word_size) ||
672 ((keepout->start != cur) &&
673 (keepout->start - cur < nvmem->word_size))) {
676 "Keepout regions violate word_size constraints.\n");
681 /* Validate keepouts don't violate stride (alignment). */
682 if (!IS_ALIGNED(keepout->start, nvmem->stride) ||
683 !IS_ALIGNED(keepout->end, nvmem->stride)) {
686 "Keepout regions violate stride.\n");
698 static int nvmem_add_cells_from_dt(struct nvmem_device *nvmem, struct device_node *np)
700 struct nvmem_layout *layout = nvmem->layout;
701 struct device *dev = &nvmem->dev;
702 struct device_node *child;
706 for_each_child_of_node(np, child) {
707 struct nvmem_cell_info info = {0};
709 addr = of_get_property(child, "reg", &len);
712 if (len < 2 * sizeof(u32)) {
713 dev_err(dev, "nvmem: invalid reg on %pOF\n", child);
718 info.offset = be32_to_cpup(addr++);
719 info.bytes = be32_to_cpup(addr);
720 info.name = kasprintf(GFP_KERNEL, "%pOFn", child);
722 addr = of_get_property(child, "bits", &len);
723 if (addr && len == (2 * sizeof(u32))) {
724 info.bit_offset = be32_to_cpup(addr++);
725 info.nbits = be32_to_cpup(addr);
728 info.np = of_node_get(child);
730 if (layout && layout->fixup_cell_info)
731 layout->fixup_cell_info(nvmem, layout, &info);
733 ret = nvmem_add_one_cell(nvmem, &info);
744 static int nvmem_add_cells_from_legacy_of(struct nvmem_device *nvmem)
746 return nvmem_add_cells_from_dt(nvmem, nvmem->dev.of_node);
749 static int nvmem_add_cells_from_fixed_layout(struct nvmem_device *nvmem)
751 struct device_node *layout_np;
754 layout_np = of_nvmem_layout_get_container(nvmem);
758 if (of_device_is_compatible(layout_np, "fixed-layout"))
759 err = nvmem_add_cells_from_dt(nvmem, layout_np);
761 of_node_put(layout_np);
766 int __nvmem_layout_register(struct nvmem_layout *layout, struct module *owner)
768 layout->owner = owner;
770 spin_lock(&nvmem_layout_lock);
771 list_add(&layout->node, &nvmem_layouts);
772 spin_unlock(&nvmem_layout_lock);
774 blocking_notifier_call_chain(&nvmem_notifier, NVMEM_LAYOUT_ADD, layout);
778 EXPORT_SYMBOL_GPL(__nvmem_layout_register);
780 void nvmem_layout_unregister(struct nvmem_layout *layout)
782 blocking_notifier_call_chain(&nvmem_notifier, NVMEM_LAYOUT_REMOVE, layout);
784 spin_lock(&nvmem_layout_lock);
785 list_del(&layout->node);
786 spin_unlock(&nvmem_layout_lock);
788 EXPORT_SYMBOL_GPL(nvmem_layout_unregister);
790 static struct nvmem_layout *nvmem_layout_get(struct nvmem_device *nvmem)
792 struct device_node *layout_np;
793 struct nvmem_layout *l, *layout = ERR_PTR(-EPROBE_DEFER);
795 layout_np = of_nvmem_layout_get_container(nvmem);
800 * In case the nvmem device was built-in while the layout was built as a
801 * module, we shall manually request the layout driver loading otherwise
802 * we'll never have any match.
804 of_request_module(layout_np);
806 spin_lock(&nvmem_layout_lock);
808 list_for_each_entry(l, &nvmem_layouts, node) {
809 if (of_match_node(l->of_match_table, layout_np)) {
810 if (try_module_get(l->owner))
817 spin_unlock(&nvmem_layout_lock);
818 of_node_put(layout_np);
823 static void nvmem_layout_put(struct nvmem_layout *layout)
826 module_put(layout->owner);
829 static int nvmem_add_cells_from_layout(struct nvmem_device *nvmem)
831 struct nvmem_layout *layout = nvmem->layout;
834 if (layout && layout->add_cells) {
835 ret = layout->add_cells(&nvmem->dev, nvmem, layout);
843 #if IS_ENABLED(CONFIG_OF)
845 * of_nvmem_layout_get_container() - Get OF node to layout container.
847 * @nvmem: nvmem device.
849 * Return: a node pointer with refcount incremented or NULL if no
850 * container exists. Use of_node_put() on it when done.
852 struct device_node *of_nvmem_layout_get_container(struct nvmem_device *nvmem)
854 return of_get_child_by_name(nvmem->dev.of_node, "nvmem-layout");
856 EXPORT_SYMBOL_GPL(of_nvmem_layout_get_container);
859 const void *nvmem_layout_get_match_data(struct nvmem_device *nvmem,
860 struct nvmem_layout *layout)
862 struct device_node __maybe_unused *layout_np;
863 const struct of_device_id *match;
865 layout_np = of_nvmem_layout_get_container(nvmem);
866 match = of_match_node(layout->of_match_table, layout_np);
868 return match ? match->data : NULL;
870 EXPORT_SYMBOL_GPL(nvmem_layout_get_match_data);
873 * nvmem_register() - Register a nvmem device for given nvmem_config.
874 * Also creates a binary entry in /sys/bus/nvmem/devices/dev-name/nvmem
876 * @config: nvmem device configuration with which nvmem device is created.
878 * Return: Will be an ERR_PTR() on error or a valid pointer to nvmem_device
882 struct nvmem_device *nvmem_register(const struct nvmem_config *config)
884 struct nvmem_device *nvmem;
888 return ERR_PTR(-EINVAL);
890 if (!config->reg_read && !config->reg_write)
891 return ERR_PTR(-EINVAL);
893 nvmem = kzalloc(sizeof(*nvmem), GFP_KERNEL);
895 return ERR_PTR(-ENOMEM);
897 rval = ida_alloc(&nvmem_ida, GFP_KERNEL);
900 return ERR_PTR(rval);
905 nvmem->dev.type = &nvmem_provider_type;
906 nvmem->dev.bus = &nvmem_bus_type;
907 nvmem->dev.parent = config->dev;
909 device_initialize(&nvmem->dev);
911 if (!config->ignore_wp)
912 nvmem->wp_gpio = gpiod_get_optional(config->dev, "wp",
914 if (IS_ERR(nvmem->wp_gpio)) {
915 rval = PTR_ERR(nvmem->wp_gpio);
916 nvmem->wp_gpio = NULL;
920 kref_init(&nvmem->refcnt);
921 INIT_LIST_HEAD(&nvmem->cells);
923 nvmem->owner = config->owner;
924 if (!nvmem->owner && config->dev->driver)
925 nvmem->owner = config->dev->driver->owner;
926 nvmem->stride = config->stride ?: 1;
927 nvmem->word_size = config->word_size ?: 1;
928 nvmem->size = config->size;
929 nvmem->root_only = config->root_only;
930 nvmem->priv = config->priv;
931 nvmem->type = config->type;
932 nvmem->reg_read = config->reg_read;
933 nvmem->reg_write = config->reg_write;
934 nvmem->keepout = config->keepout;
935 nvmem->nkeepout = config->nkeepout;
937 nvmem->dev.of_node = config->of_node;
938 else if (!config->no_of_node)
939 nvmem->dev.of_node = config->dev->of_node;
941 switch (config->id) {
942 case NVMEM_DEVID_NONE:
943 rval = dev_set_name(&nvmem->dev, "%s", config->name);
945 case NVMEM_DEVID_AUTO:
946 rval = dev_set_name(&nvmem->dev, "%s%d", config->name, nvmem->id);
949 rval = dev_set_name(&nvmem->dev, "%s%d",
950 config->name ? : "nvmem",
951 config->name ? config->id : nvmem->id);
958 nvmem->read_only = device_property_present(config->dev, "read-only") ||
959 config->read_only || !nvmem->reg_write;
961 #ifdef CONFIG_NVMEM_SYSFS
962 nvmem->dev.groups = nvmem_dev_groups;
965 if (nvmem->nkeepout) {
966 rval = nvmem_validate_keepouts(nvmem);
971 if (config->compat) {
972 rval = nvmem_sysfs_setup_compat(nvmem, config);
978 * If the driver supplied a layout by config->layout, the module
979 * pointer will be NULL and nvmem_layout_put() will be a noop.
981 nvmem->layout = config->layout ?: nvmem_layout_get(nvmem);
982 if (IS_ERR(nvmem->layout)) {
983 rval = PTR_ERR(nvmem->layout);
984 nvmem->layout = NULL;
986 if (rval == -EPROBE_DEFER)
987 goto err_teardown_compat;
991 rval = nvmem_add_cells(nvmem, config->cells, config->ncells);
993 goto err_remove_cells;
996 rval = nvmem_add_cells_from_table(nvmem);
998 goto err_remove_cells;
1000 rval = nvmem_add_cells_from_legacy_of(nvmem);
1002 goto err_remove_cells;
1004 rval = nvmem_add_cells_from_fixed_layout(nvmem);
1006 goto err_remove_cells;
1008 rval = nvmem_add_cells_from_layout(nvmem);
1010 goto err_remove_cells;
1012 dev_dbg(&nvmem->dev, "Registering nvmem device %s\n", config->name);
1014 rval = device_add(&nvmem->dev);
1016 goto err_remove_cells;
1018 blocking_notifier_call_chain(&nvmem_notifier, NVMEM_ADD, nvmem);
1023 nvmem_device_remove_all_cells(nvmem);
1024 nvmem_layout_put(nvmem->layout);
1025 err_teardown_compat:
1027 nvmem_sysfs_remove_compat(nvmem, config);
1029 put_device(&nvmem->dev);
1031 return ERR_PTR(rval);
1033 EXPORT_SYMBOL_GPL(nvmem_register);
1035 static void nvmem_device_release(struct kref *kref)
1037 struct nvmem_device *nvmem;
1039 nvmem = container_of(kref, struct nvmem_device, refcnt);
1041 blocking_notifier_call_chain(&nvmem_notifier, NVMEM_REMOVE, nvmem);
1043 if (nvmem->flags & FLAG_COMPAT)
1044 device_remove_bin_file(nvmem->base_dev, &nvmem->eeprom);
1046 nvmem_device_remove_all_cells(nvmem);
1047 nvmem_layout_put(nvmem->layout);
1048 device_unregister(&nvmem->dev);
1052 * nvmem_unregister() - Unregister previously registered nvmem device
1054 * @nvmem: Pointer to previously registered nvmem device.
1056 void nvmem_unregister(struct nvmem_device *nvmem)
1059 kref_put(&nvmem->refcnt, nvmem_device_release);
1061 EXPORT_SYMBOL_GPL(nvmem_unregister);
1063 static void devm_nvmem_unregister(void *nvmem)
1065 nvmem_unregister(nvmem);
1069 * devm_nvmem_register() - Register a managed nvmem device for given
1071 * Also creates a binary entry in /sys/bus/nvmem/devices/dev-name/nvmem
1073 * @dev: Device that uses the nvmem device.
1074 * @config: nvmem device configuration with which nvmem device is created.
1076 * Return: Will be an ERR_PTR() on error or a valid pointer to nvmem_device
1079 struct nvmem_device *devm_nvmem_register(struct device *dev,
1080 const struct nvmem_config *config)
1082 struct nvmem_device *nvmem;
1085 nvmem = nvmem_register(config);
1089 ret = devm_add_action_or_reset(dev, devm_nvmem_unregister, nvmem);
1091 return ERR_PTR(ret);
1095 EXPORT_SYMBOL_GPL(devm_nvmem_register);
1097 static struct nvmem_device *__nvmem_device_get(void *data,
1098 int (*match)(struct device *dev, const void *data))
1100 struct nvmem_device *nvmem = NULL;
1103 mutex_lock(&nvmem_mutex);
1104 dev = bus_find_device(&nvmem_bus_type, NULL, data, match);
1106 nvmem = to_nvmem_device(dev);
1107 mutex_unlock(&nvmem_mutex);
1109 return ERR_PTR(-EPROBE_DEFER);
1111 if (!try_module_get(nvmem->owner)) {
1112 dev_err(&nvmem->dev,
1113 "could not increase module refcount for cell %s\n",
1114 nvmem_dev_name(nvmem));
1116 put_device(&nvmem->dev);
1117 return ERR_PTR(-EINVAL);
1120 kref_get(&nvmem->refcnt);
1125 static void __nvmem_device_put(struct nvmem_device *nvmem)
1127 put_device(&nvmem->dev);
1128 module_put(nvmem->owner);
1129 kref_put(&nvmem->refcnt, nvmem_device_release);
1132 #if IS_ENABLED(CONFIG_OF)
1134 * of_nvmem_device_get() - Get nvmem device from a given id
1136 * @np: Device tree node that uses the nvmem device.
1137 * @id: nvmem name from nvmem-names property.
1139 * Return: ERR_PTR() on error or a valid pointer to a struct nvmem_device
1142 struct nvmem_device *of_nvmem_device_get(struct device_node *np, const char *id)
1145 struct device_node *nvmem_np;
1146 struct nvmem_device *nvmem;
1150 index = of_property_match_string(np, "nvmem-names", id);
1152 nvmem_np = of_parse_phandle(np, "nvmem", index);
1154 return ERR_PTR(-ENOENT);
1156 nvmem = __nvmem_device_get(nvmem_np, device_match_of_node);
1157 of_node_put(nvmem_np);
1160 EXPORT_SYMBOL_GPL(of_nvmem_device_get);
1164 * nvmem_device_get() - Get nvmem device from a given id
1166 * @dev: Device that uses the nvmem device.
1167 * @dev_name: name of the requested nvmem device.
1169 * Return: ERR_PTR() on error or a valid pointer to a struct nvmem_device
1172 struct nvmem_device *nvmem_device_get(struct device *dev, const char *dev_name)
1174 if (dev->of_node) { /* try dt first */
1175 struct nvmem_device *nvmem;
1177 nvmem = of_nvmem_device_get(dev->of_node, dev_name);
1179 if (!IS_ERR(nvmem) || PTR_ERR(nvmem) == -EPROBE_DEFER)
1184 return __nvmem_device_get((void *)dev_name, device_match_name);
1186 EXPORT_SYMBOL_GPL(nvmem_device_get);
1189 * nvmem_device_find() - Find nvmem device with matching function
1191 * @data: Data to pass to match function
1192 * @match: Callback function to check device
1194 * Return: ERR_PTR() on error or a valid pointer to a struct nvmem_device
1197 struct nvmem_device *nvmem_device_find(void *data,
1198 int (*match)(struct device *dev, const void *data))
1200 return __nvmem_device_get(data, match);
1202 EXPORT_SYMBOL_GPL(nvmem_device_find);
1204 static int devm_nvmem_device_match(struct device *dev, void *res, void *data)
1206 struct nvmem_device **nvmem = res;
1208 if (WARN_ON(!nvmem || !*nvmem))
1211 return *nvmem == data;
1214 static void devm_nvmem_device_release(struct device *dev, void *res)
1216 nvmem_device_put(*(struct nvmem_device **)res);
1220 * devm_nvmem_device_put() - put alredy got nvmem device
1222 * @dev: Device that uses the nvmem device.
1223 * @nvmem: pointer to nvmem device allocated by devm_nvmem_cell_get(),
1224 * that needs to be released.
1226 void devm_nvmem_device_put(struct device *dev, struct nvmem_device *nvmem)
1230 ret = devres_release(dev, devm_nvmem_device_release,
1231 devm_nvmem_device_match, nvmem);
1235 EXPORT_SYMBOL_GPL(devm_nvmem_device_put);
1238 * nvmem_device_put() - put alredy got nvmem device
1240 * @nvmem: pointer to nvmem device that needs to be released.
1242 void nvmem_device_put(struct nvmem_device *nvmem)
1244 __nvmem_device_put(nvmem);
1246 EXPORT_SYMBOL_GPL(nvmem_device_put);
1249 * devm_nvmem_device_get() - Get nvmem cell of device form a given id
1251 * @dev: Device that requests the nvmem device.
1252 * @id: name id for the requested nvmem device.
1254 * Return: ERR_PTR() on error or a valid pointer to a struct nvmem_cell
1255 * on success. The nvmem_cell will be freed by the automatically once the
1258 struct nvmem_device *devm_nvmem_device_get(struct device *dev, const char *id)
1260 struct nvmem_device **ptr, *nvmem;
1262 ptr = devres_alloc(devm_nvmem_device_release, sizeof(*ptr), GFP_KERNEL);
1264 return ERR_PTR(-ENOMEM);
1266 nvmem = nvmem_device_get(dev, id);
1267 if (!IS_ERR(nvmem)) {
1269 devres_add(dev, ptr);
1276 EXPORT_SYMBOL_GPL(devm_nvmem_device_get);
1278 static struct nvmem_cell *nvmem_create_cell(struct nvmem_cell_entry *entry,
1279 const char *id, int index)
1281 struct nvmem_cell *cell;
1282 const char *name = NULL;
1284 cell = kzalloc(sizeof(*cell), GFP_KERNEL);
1286 return ERR_PTR(-ENOMEM);
1289 name = kstrdup_const(id, GFP_KERNEL);
1292 return ERR_PTR(-ENOMEM);
1297 cell->entry = entry;
1298 cell->index = index;
1303 static struct nvmem_cell *
1304 nvmem_cell_get_from_lookup(struct device *dev, const char *con_id)
1306 struct nvmem_cell_entry *cell_entry;
1307 struct nvmem_cell *cell = ERR_PTR(-ENOENT);
1308 struct nvmem_cell_lookup *lookup;
1309 struct nvmem_device *nvmem;
1313 return ERR_PTR(-EINVAL);
1315 dev_id = dev_name(dev);
1317 mutex_lock(&nvmem_lookup_mutex);
1319 list_for_each_entry(lookup, &nvmem_lookup_list, node) {
1320 if ((strcmp(lookup->dev_id, dev_id) == 0) &&
1321 (strcmp(lookup->con_id, con_id) == 0)) {
1322 /* This is the right entry. */
1323 nvmem = __nvmem_device_get((void *)lookup->nvmem_name,
1325 if (IS_ERR(nvmem)) {
1326 /* Provider may not be registered yet. */
1327 cell = ERR_CAST(nvmem);
1331 cell_entry = nvmem_find_cell_entry_by_name(nvmem,
1334 __nvmem_device_put(nvmem);
1335 cell = ERR_PTR(-ENOENT);
1337 cell = nvmem_create_cell(cell_entry, con_id, 0);
1339 __nvmem_device_put(nvmem);
1345 mutex_unlock(&nvmem_lookup_mutex);
1349 #if IS_ENABLED(CONFIG_OF)
1350 static struct nvmem_cell_entry *
1351 nvmem_find_cell_entry_by_node(struct nvmem_device *nvmem, struct device_node *np)
1353 struct nvmem_cell_entry *iter, *cell = NULL;
1355 mutex_lock(&nvmem_mutex);
1356 list_for_each_entry(iter, &nvmem->cells, node) {
1357 if (np == iter->np) {
1362 mutex_unlock(&nvmem_mutex);
1368 * of_nvmem_cell_get() - Get a nvmem cell from given device node and cell id
1370 * @np: Device tree node that uses the nvmem cell.
1371 * @id: nvmem cell name from nvmem-cell-names property, or NULL
1372 * for the cell at index 0 (the lone cell with no accompanying
1373 * nvmem-cell-names property).
1375 * Return: Will be an ERR_PTR() on error or a valid pointer
1376 * to a struct nvmem_cell. The nvmem_cell will be freed by the
1379 struct nvmem_cell *of_nvmem_cell_get(struct device_node *np, const char *id)
1381 struct device_node *cell_np, *nvmem_np;
1382 struct nvmem_device *nvmem;
1383 struct nvmem_cell_entry *cell_entry;
1384 struct nvmem_cell *cell;
1385 struct of_phandle_args cell_spec;
1390 /* if cell name exists, find index to the name */
1392 index = of_property_match_string(np, "nvmem-cell-names", id);
1394 ret = of_parse_phandle_with_optional_args(np, "nvmem-cells",
1395 "#nvmem-cell-cells",
1398 return ERR_PTR(-ENOENT);
1400 if (cell_spec.args_count > 1)
1401 return ERR_PTR(-EINVAL);
1403 cell_np = cell_spec.np;
1404 if (cell_spec.args_count)
1405 cell_index = cell_spec.args[0];
1407 nvmem_np = of_get_parent(cell_np);
1409 of_node_put(cell_np);
1410 return ERR_PTR(-EINVAL);
1413 /* nvmem layouts produce cells within the nvmem-layout container */
1414 if (of_node_name_eq(nvmem_np, "nvmem-layout")) {
1415 nvmem_np = of_get_next_parent(nvmem_np);
1417 of_node_put(cell_np);
1418 return ERR_PTR(-EINVAL);
1422 nvmem = __nvmem_device_get(nvmem_np, device_match_of_node);
1423 of_node_put(nvmem_np);
1424 if (IS_ERR(nvmem)) {
1425 of_node_put(cell_np);
1426 return ERR_CAST(nvmem);
1429 cell_entry = nvmem_find_cell_entry_by_node(nvmem, cell_np);
1430 of_node_put(cell_np);
1432 __nvmem_device_put(nvmem);
1433 return ERR_PTR(-ENOENT);
1436 cell = nvmem_create_cell(cell_entry, id, cell_index);
1438 __nvmem_device_put(nvmem);
1442 EXPORT_SYMBOL_GPL(of_nvmem_cell_get);
1446 * nvmem_cell_get() - Get nvmem cell of device form a given cell name
1448 * @dev: Device that requests the nvmem cell.
1449 * @id: nvmem cell name to get (this corresponds with the name from the
1450 * nvmem-cell-names property for DT systems and with the con_id from
1451 * the lookup entry for non-DT systems).
1453 * Return: Will be an ERR_PTR() on error or a valid pointer
1454 * to a struct nvmem_cell. The nvmem_cell will be freed by the
1457 struct nvmem_cell *nvmem_cell_get(struct device *dev, const char *id)
1459 struct nvmem_cell *cell;
1461 if (dev->of_node) { /* try dt first */
1462 cell = of_nvmem_cell_get(dev->of_node, id);
1463 if (!IS_ERR(cell) || PTR_ERR(cell) == -EPROBE_DEFER)
1467 /* NULL cell id only allowed for device tree; invalid otherwise */
1469 return ERR_PTR(-EINVAL);
1471 return nvmem_cell_get_from_lookup(dev, id);
1473 EXPORT_SYMBOL_GPL(nvmem_cell_get);
1475 static void devm_nvmem_cell_release(struct device *dev, void *res)
1477 nvmem_cell_put(*(struct nvmem_cell **)res);
1481 * devm_nvmem_cell_get() - Get nvmem cell of device form a given id
1483 * @dev: Device that requests the nvmem cell.
1484 * @id: nvmem cell name id to get.
1486 * Return: Will be an ERR_PTR() on error or a valid pointer
1487 * to a struct nvmem_cell. The nvmem_cell will be freed by the
1488 * automatically once the device is freed.
1490 struct nvmem_cell *devm_nvmem_cell_get(struct device *dev, const char *id)
1492 struct nvmem_cell **ptr, *cell;
1494 ptr = devres_alloc(devm_nvmem_cell_release, sizeof(*ptr), GFP_KERNEL);
1496 return ERR_PTR(-ENOMEM);
1498 cell = nvmem_cell_get(dev, id);
1499 if (!IS_ERR(cell)) {
1501 devres_add(dev, ptr);
1508 EXPORT_SYMBOL_GPL(devm_nvmem_cell_get);
1510 static int devm_nvmem_cell_match(struct device *dev, void *res, void *data)
1512 struct nvmem_cell **c = res;
1514 if (WARN_ON(!c || !*c))
1521 * devm_nvmem_cell_put() - Release previously allocated nvmem cell
1522 * from devm_nvmem_cell_get.
1524 * @dev: Device that requests the nvmem cell.
1525 * @cell: Previously allocated nvmem cell by devm_nvmem_cell_get().
1527 void devm_nvmem_cell_put(struct device *dev, struct nvmem_cell *cell)
1531 ret = devres_release(dev, devm_nvmem_cell_release,
1532 devm_nvmem_cell_match, cell);
1536 EXPORT_SYMBOL(devm_nvmem_cell_put);
1539 * nvmem_cell_put() - Release previously allocated nvmem cell.
1541 * @cell: Previously allocated nvmem cell by nvmem_cell_get().
1543 void nvmem_cell_put(struct nvmem_cell *cell)
1545 struct nvmem_device *nvmem = cell->entry->nvmem;
1548 kfree_const(cell->id);
1551 __nvmem_device_put(nvmem);
1553 EXPORT_SYMBOL_GPL(nvmem_cell_put);
1555 static void nvmem_shift_read_buffer_in_place(struct nvmem_cell_entry *cell, void *buf)
1558 int i, extra, bit_offset = cell->bit_offset;
1563 *b++ >>= bit_offset;
1565 /* setup rest of the bytes if any */
1566 for (i = 1; i < cell->bytes; i++) {
1567 /* Get bits from next byte and shift them towards msb */
1568 *p |= *b << (BITS_PER_BYTE - bit_offset);
1571 *b++ >>= bit_offset;
1574 /* point to the msb */
1575 p += cell->bytes - 1;
1578 /* result fits in less bytes */
1579 extra = cell->bytes - DIV_ROUND_UP(cell->nbits, BITS_PER_BYTE);
1580 while (--extra >= 0)
1583 /* clear msb bits if any leftover in the last byte */
1584 if (cell->nbits % BITS_PER_BYTE)
1585 *p &= GENMASK((cell->nbits % BITS_PER_BYTE) - 1, 0);
1588 static int __nvmem_cell_read(struct nvmem_device *nvmem,
1589 struct nvmem_cell_entry *cell,
1590 void *buf, size_t *len, const char *id, int index)
1594 rc = nvmem_reg_read(nvmem, cell->offset, buf, cell->raw_len);
1599 /* shift bits in-place */
1600 if (cell->bit_offset || cell->nbits)
1601 nvmem_shift_read_buffer_in_place(cell, buf);
1603 if (cell->read_post_process) {
1604 rc = cell->read_post_process(cell->priv, id, index,
1605 cell->offset, buf, cell->raw_len);
1617 * nvmem_cell_read() - Read a given nvmem cell
1619 * @cell: nvmem cell to be read.
1620 * @len: pointer to length of cell which will be populated on successful read;
1623 * Return: ERR_PTR() on error or a valid pointer to a buffer on success. The
1624 * buffer should be freed by the consumer with a kfree().
1626 void *nvmem_cell_read(struct nvmem_cell *cell, size_t *len)
1628 struct nvmem_cell_entry *entry = cell->entry;
1629 struct nvmem_device *nvmem = entry->nvmem;
1634 return ERR_PTR(-EINVAL);
1636 buf = kzalloc(max_t(size_t, entry->raw_len, entry->bytes), GFP_KERNEL);
1638 return ERR_PTR(-ENOMEM);
1640 rc = __nvmem_cell_read(nvmem, cell->entry, buf, len, cell->id, cell->index);
1648 EXPORT_SYMBOL_GPL(nvmem_cell_read);
1650 static void *nvmem_cell_prepare_write_buffer(struct nvmem_cell_entry *cell,
1653 struct nvmem_device *nvmem = cell->nvmem;
1654 int i, rc, nbits, bit_offset = cell->bit_offset;
1655 u8 v, *p, *buf, *b, pbyte, pbits;
1657 nbits = cell->nbits;
1658 buf = kzalloc(cell->bytes, GFP_KERNEL);
1660 return ERR_PTR(-ENOMEM);
1662 memcpy(buf, _buf, len);
1669 /* setup the first byte with lsb bits from nvmem */
1670 rc = nvmem_reg_read(nvmem, cell->offset, &v, 1);
1673 *b++ |= GENMASK(bit_offset - 1, 0) & v;
1675 /* setup rest of the byte if any */
1676 for (i = 1; i < cell->bytes; i++) {
1677 /* Get last byte bits and shift them towards lsb */
1678 pbits = pbyte >> (BITS_PER_BYTE - 1 - bit_offset);
1686 /* if it's not end on byte boundary */
1687 if ((nbits + bit_offset) % BITS_PER_BYTE) {
1688 /* setup the last byte with msb bits from nvmem */
1689 rc = nvmem_reg_read(nvmem,
1690 cell->offset + cell->bytes - 1, &v, 1);
1693 *p |= GENMASK(7, (nbits + bit_offset) % BITS_PER_BYTE) & v;
1703 static int __nvmem_cell_entry_write(struct nvmem_cell_entry *cell, void *buf, size_t len)
1705 struct nvmem_device *nvmem = cell->nvmem;
1708 if (!nvmem || nvmem->read_only ||
1709 (cell->bit_offset == 0 && len != cell->bytes))
1713 * Any cells which have a read_post_process hook are read-only because
1714 * we cannot reverse the operation and it might affect other cells,
1717 if (cell->read_post_process)
1720 if (cell->bit_offset || cell->nbits) {
1721 buf = nvmem_cell_prepare_write_buffer(cell, buf, len);
1723 return PTR_ERR(buf);
1726 rc = nvmem_reg_write(nvmem, cell->offset, buf, cell->bytes);
1728 /* free the tmp buffer */
1729 if (cell->bit_offset || cell->nbits)
1739 * nvmem_cell_write() - Write to a given nvmem cell
1741 * @cell: nvmem cell to be written.
1742 * @buf: Buffer to be written.
1743 * @len: length of buffer to be written to nvmem cell.
1745 * Return: length of bytes written or negative on failure.
1747 int nvmem_cell_write(struct nvmem_cell *cell, void *buf, size_t len)
1749 return __nvmem_cell_entry_write(cell->entry, buf, len);
1752 EXPORT_SYMBOL_GPL(nvmem_cell_write);
1754 static int nvmem_cell_read_common(struct device *dev, const char *cell_id,
1755 void *val, size_t count)
1757 struct nvmem_cell *cell;
1761 cell = nvmem_cell_get(dev, cell_id);
1763 return PTR_ERR(cell);
1765 buf = nvmem_cell_read(cell, &len);
1767 nvmem_cell_put(cell);
1768 return PTR_ERR(buf);
1772 nvmem_cell_put(cell);
1775 memcpy(val, buf, count);
1777 nvmem_cell_put(cell);
1783 * nvmem_cell_read_u8() - Read a cell value as a u8
1785 * @dev: Device that requests the nvmem cell.
1786 * @cell_id: Name of nvmem cell to read.
1787 * @val: pointer to output value.
1789 * Return: 0 on success or negative errno.
1791 int nvmem_cell_read_u8(struct device *dev, const char *cell_id, u8 *val)
1793 return nvmem_cell_read_common(dev, cell_id, val, sizeof(*val));
1795 EXPORT_SYMBOL_GPL(nvmem_cell_read_u8);
1798 * nvmem_cell_read_u16() - Read a cell value as a u16
1800 * @dev: Device that requests the nvmem cell.
1801 * @cell_id: Name of nvmem cell to read.
1802 * @val: pointer to output value.
1804 * Return: 0 on success or negative errno.
1806 int nvmem_cell_read_u16(struct device *dev, const char *cell_id, u16 *val)
1808 return nvmem_cell_read_common(dev, cell_id, val, sizeof(*val));
1810 EXPORT_SYMBOL_GPL(nvmem_cell_read_u16);
1813 * nvmem_cell_read_u32() - Read a cell value as a u32
1815 * @dev: Device that requests the nvmem cell.
1816 * @cell_id: Name of nvmem cell to read.
1817 * @val: pointer to output value.
1819 * Return: 0 on success or negative errno.
1821 int nvmem_cell_read_u32(struct device *dev, const char *cell_id, u32 *val)
1823 return nvmem_cell_read_common(dev, cell_id, val, sizeof(*val));
1825 EXPORT_SYMBOL_GPL(nvmem_cell_read_u32);
1828 * nvmem_cell_read_u64() - Read a cell value as a u64
1830 * @dev: Device that requests the nvmem cell.
1831 * @cell_id: Name of nvmem cell to read.
1832 * @val: pointer to output value.
1834 * Return: 0 on success or negative errno.
1836 int nvmem_cell_read_u64(struct device *dev, const char *cell_id, u64 *val)
1838 return nvmem_cell_read_common(dev, cell_id, val, sizeof(*val));
1840 EXPORT_SYMBOL_GPL(nvmem_cell_read_u64);
1842 static const void *nvmem_cell_read_variable_common(struct device *dev,
1843 const char *cell_id,
1844 size_t max_len, size_t *len)
1846 struct nvmem_cell *cell;
1850 cell = nvmem_cell_get(dev, cell_id);
1854 nbits = cell->entry->nbits;
1855 buf = nvmem_cell_read(cell, len);
1856 nvmem_cell_put(cell);
1861 * If nbits is set then nvmem_cell_read() can significantly exaggerate
1862 * the length of the real data. Throw away the extra junk.
1865 *len = DIV_ROUND_UP(nbits, 8);
1867 if (*len > max_len) {
1869 return ERR_PTR(-ERANGE);
1876 * nvmem_cell_read_variable_le_u32() - Read up to 32-bits of data as a little endian number.
1878 * @dev: Device that requests the nvmem cell.
1879 * @cell_id: Name of nvmem cell to read.
1880 * @val: pointer to output value.
1882 * Return: 0 on success or negative errno.
1884 int nvmem_cell_read_variable_le_u32(struct device *dev, const char *cell_id,
1891 buf = nvmem_cell_read_variable_common(dev, cell_id, sizeof(*val), &len);
1893 return PTR_ERR(buf);
1895 /* Copy w/ implicit endian conversion */
1897 for (i = 0; i < len; i++)
1898 *val |= buf[i] << (8 * i);
1904 EXPORT_SYMBOL_GPL(nvmem_cell_read_variable_le_u32);
1907 * nvmem_cell_read_variable_le_u64() - Read up to 64-bits of data as a little endian number.
1909 * @dev: Device that requests the nvmem cell.
1910 * @cell_id: Name of nvmem cell to read.
1911 * @val: pointer to output value.
1913 * Return: 0 on success or negative errno.
1915 int nvmem_cell_read_variable_le_u64(struct device *dev, const char *cell_id,
1922 buf = nvmem_cell_read_variable_common(dev, cell_id, sizeof(*val), &len);
1924 return PTR_ERR(buf);
1926 /* Copy w/ implicit endian conversion */
1928 for (i = 0; i < len; i++)
1929 *val |= (uint64_t)buf[i] << (8 * i);
1935 EXPORT_SYMBOL_GPL(nvmem_cell_read_variable_le_u64);
1938 * nvmem_device_cell_read() - Read a given nvmem device and cell
1940 * @nvmem: nvmem device to read from.
1941 * @info: nvmem cell info to be read.
1942 * @buf: buffer pointer which will be populated on successful read.
1944 * Return: length of successful bytes read on success and negative
1945 * error code on error.
1947 ssize_t nvmem_device_cell_read(struct nvmem_device *nvmem,
1948 struct nvmem_cell_info *info, void *buf)
1950 struct nvmem_cell_entry cell;
1957 rc = nvmem_cell_info_to_nvmem_cell_entry_nodup(nvmem, info, &cell);
1961 rc = __nvmem_cell_read(nvmem, &cell, buf, &len, NULL, 0);
1967 EXPORT_SYMBOL_GPL(nvmem_device_cell_read);
1970 * nvmem_device_cell_write() - Write cell to a given nvmem device
1972 * @nvmem: nvmem device to be written to.
1973 * @info: nvmem cell info to be written.
1974 * @buf: buffer to be written to cell.
1976 * Return: length of bytes written or negative error code on failure.
1978 int nvmem_device_cell_write(struct nvmem_device *nvmem,
1979 struct nvmem_cell_info *info, void *buf)
1981 struct nvmem_cell_entry cell;
1987 rc = nvmem_cell_info_to_nvmem_cell_entry_nodup(nvmem, info, &cell);
1991 return __nvmem_cell_entry_write(&cell, buf, cell.bytes);
1993 EXPORT_SYMBOL_GPL(nvmem_device_cell_write);
1996 * nvmem_device_read() - Read from a given nvmem device
1998 * @nvmem: nvmem device to read from.
1999 * @offset: offset in nvmem device.
2000 * @bytes: number of bytes to read.
2001 * @buf: buffer pointer which will be populated on successful read.
2003 * Return: length of successful bytes read on success and negative
2004 * error code on error.
2006 int nvmem_device_read(struct nvmem_device *nvmem,
2007 unsigned int offset,
2008 size_t bytes, void *buf)
2015 rc = nvmem_reg_read(nvmem, offset, buf, bytes);
2022 EXPORT_SYMBOL_GPL(nvmem_device_read);
2025 * nvmem_device_write() - Write cell to a given nvmem device
2027 * @nvmem: nvmem device to be written to.
2028 * @offset: offset in nvmem device.
2029 * @bytes: number of bytes to write.
2030 * @buf: buffer to be written.
2032 * Return: length of bytes written or negative error code on failure.
2034 int nvmem_device_write(struct nvmem_device *nvmem,
2035 unsigned int offset,
2036 size_t bytes, void *buf)
2043 rc = nvmem_reg_write(nvmem, offset, buf, bytes);
2051 EXPORT_SYMBOL_GPL(nvmem_device_write);
2054 * nvmem_add_cell_table() - register a table of cell info entries
2056 * @table: table of cell info entries
2058 void nvmem_add_cell_table(struct nvmem_cell_table *table)
2060 mutex_lock(&nvmem_cell_mutex);
2061 list_add_tail(&table->node, &nvmem_cell_tables);
2062 mutex_unlock(&nvmem_cell_mutex);
2064 EXPORT_SYMBOL_GPL(nvmem_add_cell_table);
2067 * nvmem_del_cell_table() - remove a previously registered cell info table
2069 * @table: table of cell info entries
2071 void nvmem_del_cell_table(struct nvmem_cell_table *table)
2073 mutex_lock(&nvmem_cell_mutex);
2074 list_del(&table->node);
2075 mutex_unlock(&nvmem_cell_mutex);
2077 EXPORT_SYMBOL_GPL(nvmem_del_cell_table);
2080 * nvmem_add_cell_lookups() - register a list of cell lookup entries
2082 * @entries: array of cell lookup entries
2083 * @nentries: number of cell lookup entries in the array
2085 void nvmem_add_cell_lookups(struct nvmem_cell_lookup *entries, size_t nentries)
2089 mutex_lock(&nvmem_lookup_mutex);
2090 for (i = 0; i < nentries; i++)
2091 list_add_tail(&entries[i].node, &nvmem_lookup_list);
2092 mutex_unlock(&nvmem_lookup_mutex);
2094 EXPORT_SYMBOL_GPL(nvmem_add_cell_lookups);
2097 * nvmem_del_cell_lookups() - remove a list of previously added cell lookup
2100 * @entries: array of cell lookup entries
2101 * @nentries: number of cell lookup entries in the array
2103 void nvmem_del_cell_lookups(struct nvmem_cell_lookup *entries, size_t nentries)
2107 mutex_lock(&nvmem_lookup_mutex);
2108 for (i = 0; i < nentries; i++)
2109 list_del(&entries[i].node);
2110 mutex_unlock(&nvmem_lookup_mutex);
2112 EXPORT_SYMBOL_GPL(nvmem_del_cell_lookups);
2115 * nvmem_dev_name() - Get the name of a given nvmem device.
2117 * @nvmem: nvmem device.
2119 * Return: name of the nvmem device.
2121 const char *nvmem_dev_name(struct nvmem_device *nvmem)
2123 return dev_name(&nvmem->dev);
2125 EXPORT_SYMBOL_GPL(nvmem_dev_name);
2127 static int __init nvmem_init(void)
2129 return bus_register(&nvmem_bus_type);
2132 static void __exit nvmem_exit(void)
2134 bus_unregister(&nvmem_bus_type);
2137 subsys_initcall(nvmem_init);
2138 module_exit(nvmem_exit);
2140 MODULE_AUTHOR("Srinivas Kandagatla <srinivas.kandagatla@linaro.org");
2141 MODULE_AUTHOR("Maxime Ripard <maxime.ripard@free-electrons.com");
2142 MODULE_DESCRIPTION("nvmem Driver Core");