powerpc/hugetlb: Don't do runtime allocation of 16G pages in LPAR configuration
[linux-2.6-block.git] / include / linux / nvmem-consumer.h
CommitLineData
b1c1db98 1/* SPDX-License-Identifier: GPL-2.0 */
eace75cf
SK
2/*
3 * nvmem framework consumer.
4 *
5 * Copyright (C) 2015 Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
6 * Copyright (C) 2013 Maxime Ripard <maxime.ripard@free-electrons.com>
eace75cf
SK
7 */
8
9#ifndef _LINUX_NVMEM_CONSUMER_H
10#define _LINUX_NVMEM_CONSUMER_H
11
4da69f49
SK
12#include <linux/err.h>
13#include <linux/errno.h>
bee1138b 14#include <linux/notifier.h>
4da69f49 15
69aba794
SK
16struct device;
17struct device_node;
18/* consumer cookie */
19struct nvmem_cell;
e2a5402e 20struct nvmem_device;
69aba794 21
eace75cf
SK
22struct nvmem_cell_info {
23 const char *name;
24 unsigned int offset;
25 unsigned int bytes;
26 unsigned int bit_offset;
27 unsigned int nbits;
28};
29
506157be
BG
30/**
31 * struct nvmem_cell_lookup - cell lookup entry
32 *
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
37 * this cell.
38 * @con_id: Connector id for this cell lookup.
39 */
40struct nvmem_cell_lookup {
41 const char *nvmem_name;
42 const char *cell_name;
43 const char *dev_id;
44 const char *con_id;
45 struct list_head node;
46};
47
bee1138b
BG
48enum {
49 NVMEM_ADD = 1,
50 NVMEM_REMOVE,
51 NVMEM_CELL_ADD,
52 NVMEM_CELL_REMOVE,
53};
54
69aba794
SK
55#if IS_ENABLED(CONFIG_NVMEM)
56
57/* Cell based interface */
165589f0
BG
58struct nvmem_cell *nvmem_cell_get(struct device *dev, const char *id);
59struct nvmem_cell *devm_nvmem_cell_get(struct device *dev, const char *id);
69aba794
SK
60void nvmem_cell_put(struct nvmem_cell *cell);
61void devm_nvmem_cell_put(struct device *dev, struct nvmem_cell *cell);
62void *nvmem_cell_read(struct nvmem_cell *cell, size_t *len);
63int nvmem_cell_write(struct nvmem_cell *cell, void *buf, size_t len);
d026d70a 64int nvmem_cell_read_u32(struct device *dev, const char *cell_id, u32 *val);
69aba794 65
e2a5402e
SK
66/* direct nvmem device read/write interface */
67struct nvmem_device *nvmem_device_get(struct device *dev, const char *name);
68struct nvmem_device *devm_nvmem_device_get(struct device *dev,
69 const char *name);
70void nvmem_device_put(struct nvmem_device *nvmem);
71void devm_nvmem_device_put(struct device *dev, struct nvmem_device *nvmem);
72int nvmem_device_read(struct nvmem_device *nvmem, unsigned int offset,
73 size_t bytes, void *buf);
74int nvmem_device_write(struct nvmem_device *nvmem, unsigned int offset,
75 size_t bytes, void *buf);
76ssize_t nvmem_device_cell_read(struct nvmem_device *nvmem,
77 struct nvmem_cell_info *info, void *buf);
78int nvmem_device_cell_write(struct nvmem_device *nvmem,
79 struct nvmem_cell_info *info, void *buf);
80
d7b9fd16
BG
81const char *nvmem_dev_name(struct nvmem_device *nvmem);
82
506157be
BG
83void nvmem_add_cell_lookups(struct nvmem_cell_lookup *entries,
84 size_t nentries);
85void nvmem_del_cell_lookups(struct nvmem_cell_lookup *entries,
86 size_t nentries);
87
bee1138b
BG
88int nvmem_register_notifier(struct notifier_block *nb);
89int nvmem_unregister_notifier(struct notifier_block *nb);
90
69aba794
SK
91#else
92
93static inline struct nvmem_cell *nvmem_cell_get(struct device *dev,
165589f0 94 const char *id)
69aba794 95{
20167b70 96 return ERR_PTR(-EOPNOTSUPP);
69aba794
SK
97}
98
99static inline struct nvmem_cell *devm_nvmem_cell_get(struct device *dev,
165589f0 100 const char *id)
69aba794 101{
20167b70 102 return ERR_PTR(-EOPNOTSUPP);
69aba794
SK
103}
104
105static inline void devm_nvmem_cell_put(struct device *dev,
106 struct nvmem_cell *cell)
107{
108
109}
110static inline void nvmem_cell_put(struct nvmem_cell *cell)
111{
112}
113
a6c50912 114static inline void *nvmem_cell_read(struct nvmem_cell *cell, size_t *len)
69aba794 115{
20167b70 116 return ERR_PTR(-EOPNOTSUPP);
69aba794
SK
117}
118
119static inline int nvmem_cell_write(struct nvmem_cell *cell,
120 const char *buf, size_t len)
121{
20167b70 122 return -EOPNOTSUPP;
69aba794 123}
e2a5402e 124
d026d70a
LC
125static inline int nvmem_cell_read_u32(struct device *dev,
126 const char *cell_id, u32 *val)
127{
20167b70 128 return -EOPNOTSUPP;
d026d70a
LC
129}
130
e2a5402e
SK
131static inline struct nvmem_device *nvmem_device_get(struct device *dev,
132 const char *name)
133{
20167b70 134 return ERR_PTR(-EOPNOTSUPP);
e2a5402e
SK
135}
136
137static inline struct nvmem_device *devm_nvmem_device_get(struct device *dev,
138 const char *name)
139{
20167b70 140 return ERR_PTR(-EOPNOTSUPP);
e2a5402e
SK
141}
142
143static inline void nvmem_device_put(struct nvmem_device *nvmem)
144{
145}
146
147static inline void devm_nvmem_device_put(struct device *dev,
148 struct nvmem_device *nvmem)
149{
150}
151
152static inline ssize_t nvmem_device_cell_read(struct nvmem_device *nvmem,
153 struct nvmem_cell_info *info,
154 void *buf)
155{
20167b70 156 return -EOPNOTSUPP;
e2a5402e
SK
157}
158
159static inline int nvmem_device_cell_write(struct nvmem_device *nvmem,
160 struct nvmem_cell_info *info,
161 void *buf)
162{
20167b70 163 return -EOPNOTSUPP;
e2a5402e
SK
164}
165
166static inline int nvmem_device_read(struct nvmem_device *nvmem,
167 unsigned int offset, size_t bytes,
168 void *buf)
169{
20167b70 170 return -EOPNOTSUPP;
e2a5402e
SK
171}
172
173static inline int nvmem_device_write(struct nvmem_device *nvmem,
174 unsigned int offset, size_t bytes,
175 void *buf)
176{
20167b70 177 return -EOPNOTSUPP;
e2a5402e 178}
d7b9fd16
BG
179
180static inline const char *nvmem_dev_name(struct nvmem_device *nvmem)
181{
182 return NULL;
183}
184
506157be
BG
185static inline void
186nvmem_add_cell_lookups(struct nvmem_cell_lookup *entries, size_t nentries) {}
187static inline void
188nvmem_del_cell_lookups(struct nvmem_cell_lookup *entries, size_t nentries) {}
189
bee1138b
BG
190static inline int nvmem_register_notifier(struct notifier_block *nb)
191{
20167b70 192 return -EOPNOTSUPP;
bee1138b
BG
193}
194
195static inline int nvmem_unregister_notifier(struct notifier_block *nb)
196{
20167b70 197 return -EOPNOTSUPP;
bee1138b
BG
198}
199
69aba794
SK
200#endif /* CONFIG_NVMEM */
201
202#if IS_ENABLED(CONFIG_NVMEM) && IS_ENABLED(CONFIG_OF)
203struct nvmem_cell *of_nvmem_cell_get(struct device_node *np,
165589f0 204 const char *id);
e2a5402e
SK
205struct nvmem_device *of_nvmem_device_get(struct device_node *np,
206 const char *name);
69aba794
SK
207#else
208static inline struct nvmem_cell *of_nvmem_cell_get(struct device_node *np,
165589f0 209 const char *id)
69aba794 210{
20167b70 211 return ERR_PTR(-EOPNOTSUPP);
69aba794 212}
e2a5402e
SK
213
214static inline struct nvmem_device *of_nvmem_device_get(struct device_node *np,
215 const char *name)
216{
20167b70 217 return ERR_PTR(-EOPNOTSUPP);
e2a5402e 218}
69aba794
SK
219#endif /* CONFIG_NVMEM && CONFIG_OF */
220
eace75cf 221#endif /* ifndef _LINUX_NVMEM_CONSUMER_H */