1 /* SPDX-License-Identifier: GPL-2.0 */
3 * nvmem framework consumer.
9 #ifndef _LINUX_NVMEM_CONSUMER_H
10 #define _LINUX_NVMEM_CONSUMER_H
12 #include <linux/err.h>
13 #include <linux/errno.h>
14 #include <linux/notifier.h>
22 struct nvmem_cell_info {
26 unsigned int bit_offset;
31 * struct nvmem_cell_lookup - cell lookup entry
33 * @nvmem_name: Name of the provider.
34 * @cell_name: Name of the nvmem cell as defined in the name field of
35 * struct nvmem_cell_info.
36 * @dev_id: Name of the consumer device that will be associated with
38 * @con_id: Connector id for this cell lookup.
40 struct nvmem_cell_lookup {
41 const char *nvmem_name;
42 const char *cell_name;
45 struct list_head node;
55 #if IS_ENABLED(CONFIG_NVMEM)
57 /* Cell based interface */
58 struct nvmem_cell *nvmem_cell_get(struct device *dev, const char *id);
59 struct nvmem_cell *devm_nvmem_cell_get(struct device *dev, const char *id);
60 void nvmem_cell_put(struct nvmem_cell *cell);
61 void devm_nvmem_cell_put(struct device *dev, struct nvmem_cell *cell);
62 void *nvmem_cell_read(struct nvmem_cell *cell, size_t *len);
63 int nvmem_cell_write(struct nvmem_cell *cell, void *buf, size_t len);
64 int nvmem_cell_read_u16(struct device *dev, const char *cell_id, u16 *val);
65 int nvmem_cell_read_u32(struct device *dev, const char *cell_id, u32 *val);
67 /* direct nvmem device read/write interface */
68 struct nvmem_device *nvmem_device_get(struct device *dev, const char *name);
69 struct nvmem_device *devm_nvmem_device_get(struct device *dev,
71 void nvmem_device_put(struct nvmem_device *nvmem);
72 void devm_nvmem_device_put(struct device *dev, struct nvmem_device *nvmem);
73 int nvmem_device_read(struct nvmem_device *nvmem, unsigned int offset,
74 size_t bytes, void *buf);
75 int nvmem_device_write(struct nvmem_device *nvmem, unsigned int offset,
76 size_t bytes, void *buf);
77 ssize_t nvmem_device_cell_read(struct nvmem_device *nvmem,
78 struct nvmem_cell_info *info, void *buf);
79 int nvmem_device_cell_write(struct nvmem_device *nvmem,
80 struct nvmem_cell_info *info, void *buf);
82 const char *nvmem_dev_name(struct nvmem_device *nvmem);
84 void nvmem_add_cell_lookups(struct nvmem_cell_lookup *entries,
86 void nvmem_del_cell_lookups(struct nvmem_cell_lookup *entries,
89 int nvmem_register_notifier(struct notifier_block *nb);
90 int nvmem_unregister_notifier(struct notifier_block *nb);
94 static inline struct nvmem_cell *nvmem_cell_get(struct device *dev,
97 return ERR_PTR(-EOPNOTSUPP);
100 static inline struct nvmem_cell *devm_nvmem_cell_get(struct device *dev,
103 return ERR_PTR(-EOPNOTSUPP);
106 static inline void devm_nvmem_cell_put(struct device *dev,
107 struct nvmem_cell *cell)
111 static inline void nvmem_cell_put(struct nvmem_cell *cell)
115 static inline void *nvmem_cell_read(struct nvmem_cell *cell, size_t *len)
117 return ERR_PTR(-EOPNOTSUPP);
120 static inline int nvmem_cell_write(struct nvmem_cell *cell,
121 const char *buf, size_t len)
126 static inline int nvmem_cell_read_u16(struct device *dev,
127 const char *cell_id, u16 *val)
132 static inline int nvmem_cell_read_u32(struct device *dev,
133 const char *cell_id, u32 *val)
138 static inline struct nvmem_device *nvmem_device_get(struct device *dev,
141 return ERR_PTR(-EOPNOTSUPP);
144 static inline struct nvmem_device *devm_nvmem_device_get(struct device *dev,
147 return ERR_PTR(-EOPNOTSUPP);
150 static inline void nvmem_device_put(struct nvmem_device *nvmem)
154 static inline void devm_nvmem_device_put(struct device *dev,
155 struct nvmem_device *nvmem)
159 static inline ssize_t nvmem_device_cell_read(struct nvmem_device *nvmem,
160 struct nvmem_cell_info *info,
166 static inline int nvmem_device_cell_write(struct nvmem_device *nvmem,
167 struct nvmem_cell_info *info,
173 static inline int nvmem_device_read(struct nvmem_device *nvmem,
174 unsigned int offset, size_t bytes,
180 static inline int nvmem_device_write(struct nvmem_device *nvmem,
181 unsigned int offset, size_t bytes,
187 static inline const char *nvmem_dev_name(struct nvmem_device *nvmem)
193 nvmem_add_cell_lookups(struct nvmem_cell_lookup *entries, size_t nentries) {}
195 nvmem_del_cell_lookups(struct nvmem_cell_lookup *entries, size_t nentries) {}
197 static inline int nvmem_register_notifier(struct notifier_block *nb)
202 static inline int nvmem_unregister_notifier(struct notifier_block *nb)
207 #endif /* CONFIG_NVMEM */
209 #if IS_ENABLED(CONFIG_NVMEM) && IS_ENABLED(CONFIG_OF)
210 struct nvmem_cell *of_nvmem_cell_get(struct device_node *np,
212 struct nvmem_device *of_nvmem_device_get(struct device_node *np,
215 static inline struct nvmem_cell *of_nvmem_cell_get(struct device_node *np,
218 return ERR_PTR(-EOPNOTSUPP);
221 static inline struct nvmem_device *of_nvmem_device_get(struct device_node *np,
224 return ERR_PTR(-EOPNOTSUPP);
226 #endif /* CONFIG_NVMEM && CONFIG_OF */
228 #endif /* ifndef _LINUX_NVMEM_CONSUMER_H */