Blame view

include/linux/nvmem-consumer.h 4.35 KB
eace75cfd   Srinivas Kandagatla   nvmem: Add a simp...
1
2
3
4
5
6
7
8
9
10
11
12
13
  /*
   * nvmem framework consumer.
   *
   * Copyright (C) 2015 Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
   * Copyright (C) 2013 Maxime Ripard <maxime.ripard@free-electrons.com>
   *
   * This file is licensed under the terms of the GNU General Public
   * License version 2.  This program is licensed "as is" without any
   * warranty of any kind, whether express or implied.
   */
  
  #ifndef _LINUX_NVMEM_CONSUMER_H
  #define _LINUX_NVMEM_CONSUMER_H
4da69f49e   Srinivas Kandagatla   nvmem: include li...
14
15
  #include <linux/err.h>
  #include <linux/errno.h>
69aba7948   Srinivas Kandagatla   nvmem: Add a simp...
16
17
18
19
  struct device;
  struct device_node;
  /* consumer cookie */
  struct nvmem_cell;
e2a5402ec   Srinivas Kandagatla   nvmem: Add nvmem_...
20
  struct nvmem_device;
69aba7948   Srinivas Kandagatla   nvmem: Add a simp...
21

eace75cfd   Srinivas Kandagatla   nvmem: Add a simp...
22
23
24
25
26
27
28
  struct nvmem_cell_info {
  	const char		*name;
  	unsigned int		offset;
  	unsigned int		bytes;
  	unsigned int		bit_offset;
  	unsigned int		nbits;
  };
69aba7948   Srinivas Kandagatla   nvmem: Add a simp...
29
30
31
32
33
34
35
36
37
  #if IS_ENABLED(CONFIG_NVMEM)
  
  /* Cell based interface */
  struct nvmem_cell *nvmem_cell_get(struct device *dev, const char *name);
  struct nvmem_cell *devm_nvmem_cell_get(struct device *dev, const char *name);
  void nvmem_cell_put(struct nvmem_cell *cell);
  void devm_nvmem_cell_put(struct device *dev, struct nvmem_cell *cell);
  void *nvmem_cell_read(struct nvmem_cell *cell, size_t *len);
  int nvmem_cell_write(struct nvmem_cell *cell, void *buf, size_t len);
d026d70a2   Leonard Crestez   nvmem: core: Add ...
38
  int nvmem_cell_read_u32(struct device *dev, const char *cell_id, u32 *val);
69aba7948   Srinivas Kandagatla   nvmem: Add a simp...
39

e2a5402ec   Srinivas Kandagatla   nvmem: Add nvmem_...
40
41
42
43
44
45
46
47
48
49
50
51
52
53
  /* direct nvmem device read/write interface */
  struct nvmem_device *nvmem_device_get(struct device *dev, const char *name);
  struct nvmem_device *devm_nvmem_device_get(struct device *dev,
  					   const char *name);
  void nvmem_device_put(struct nvmem_device *nvmem);
  void devm_nvmem_device_put(struct device *dev, struct nvmem_device *nvmem);
  int nvmem_device_read(struct nvmem_device *nvmem, unsigned int offset,
  		      size_t bytes, void *buf);
  int nvmem_device_write(struct nvmem_device *nvmem, unsigned int offset,
  		       size_t bytes, void *buf);
  ssize_t nvmem_device_cell_read(struct nvmem_device *nvmem,
  			   struct nvmem_cell_info *info, void *buf);
  int nvmem_device_cell_write(struct nvmem_device *nvmem,
  			    struct nvmem_cell_info *info, void *buf);
69aba7948   Srinivas Kandagatla   nvmem: Add a simp...
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
  #else
  
  static inline struct nvmem_cell *nvmem_cell_get(struct device *dev,
  						const char *name)
  {
  	return ERR_PTR(-ENOSYS);
  }
  
  static inline struct nvmem_cell *devm_nvmem_cell_get(struct device *dev,
  				       const char *name)
  {
  	return ERR_PTR(-ENOSYS);
  }
  
  static inline void devm_nvmem_cell_put(struct device *dev,
  				       struct nvmem_cell *cell)
  {
  
  }
  static inline void nvmem_cell_put(struct nvmem_cell *cell)
  {
  }
a6c509125   Guenter Roeck   nvmem: Declare nv...
76
  static inline void *nvmem_cell_read(struct nvmem_cell *cell, size_t *len)
69aba7948   Srinivas Kandagatla   nvmem: Add a simp...
77
78
79
80
81
82
83
84
85
  {
  	return ERR_PTR(-ENOSYS);
  }
  
  static inline int nvmem_cell_write(struct nvmem_cell *cell,
  				    const char *buf, size_t len)
  {
  	return -ENOSYS;
  }
e2a5402ec   Srinivas Kandagatla   nvmem: Add nvmem_...
86

d026d70a2   Leonard Crestez   nvmem: core: Add ...
87
88
89
90
91
  static inline int nvmem_cell_read_u32(struct device *dev,
  				      const char *cell_id, u32 *val)
  {
  	return -ENOSYS;
  }
e2a5402ec   Srinivas Kandagatla   nvmem: Add nvmem_...
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
  static inline struct nvmem_device *nvmem_device_get(struct device *dev,
  						    const char *name)
  {
  	return ERR_PTR(-ENOSYS);
  }
  
  static inline struct nvmem_device *devm_nvmem_device_get(struct device *dev,
  							 const char *name)
  {
  	return ERR_PTR(-ENOSYS);
  }
  
  static inline void nvmem_device_put(struct nvmem_device *nvmem)
  {
  }
  
  static inline void devm_nvmem_device_put(struct device *dev,
  					 struct nvmem_device *nvmem)
  {
  }
  
  static inline ssize_t nvmem_device_cell_read(struct nvmem_device *nvmem,
  					 struct nvmem_cell_info *info,
  					 void *buf)
  {
  	return -ENOSYS;
  }
  
  static inline int nvmem_device_cell_write(struct nvmem_device *nvmem,
  					  struct nvmem_cell_info *info,
  					  void *buf)
  {
  	return -ENOSYS;
  }
  
  static inline int nvmem_device_read(struct nvmem_device *nvmem,
  				    unsigned int offset, size_t bytes,
  				    void *buf)
  {
  	return -ENOSYS;
  }
  
  static inline int nvmem_device_write(struct nvmem_device *nvmem,
  				     unsigned int offset, size_t bytes,
  				     void *buf)
  {
  	return -ENOSYS;
  }
69aba7948   Srinivas Kandagatla   nvmem: Add a simp...
140
141
142
143
144
  #endif /* CONFIG_NVMEM */
  
  #if IS_ENABLED(CONFIG_NVMEM) && IS_ENABLED(CONFIG_OF)
  struct nvmem_cell *of_nvmem_cell_get(struct device_node *np,
  				     const char *name);
e2a5402ec   Srinivas Kandagatla   nvmem: Add nvmem_...
145
146
  struct nvmem_device *of_nvmem_device_get(struct device_node *np,
  					 const char *name);
69aba7948   Srinivas Kandagatla   nvmem: Add a simp...
147
148
149
150
151
152
  #else
  static inline struct nvmem_cell *of_nvmem_cell_get(struct device_node *np,
  				     const char *name)
  {
  	return ERR_PTR(-ENOSYS);
  }
e2a5402ec   Srinivas Kandagatla   nvmem: Add nvmem_...
153
154
155
156
157
158
  
  static inline struct nvmem_device *of_nvmem_device_get(struct device_node *np,
  						       const char *name)
  {
  	return ERR_PTR(-ENOSYS);
  }
69aba7948   Srinivas Kandagatla   nvmem: Add a simp...
159
  #endif /* CONFIG_NVMEM && CONFIG_OF */
eace75cfd   Srinivas Kandagatla   nvmem: Add a simp...
160
  #endif  /* ifndef _LINUX_NVMEM_CONSUMER_H */