blob: 90a4652eaaea61124fa5e8ada2395fe817678145 [file] [log] [blame]
Mark Brownb83a3132011-05-11 19:59:58 +02001#ifndef __LINUX_REGMAP_H
2#define __LINUX_REGMAP_H
3
4/*
5 * Register map access API
6 *
7 * Copyright 2011 Wolfson Microelectronics plc
8 *
9 * Author: Mark Brown <broonie@opensource.wolfsonmicro.com>
10 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License version 2 as
13 * published by the Free Software Foundation.
14 */
15
Mark Brownb83a3132011-05-11 19:59:58 +020016#include <linux/list.h>
Mark Brownb83a3132011-05-11 19:59:58 +020017
Paul Gortmakerde477252011-05-26 13:46:22 -040018struct module;
Paul Gortmaker313162d2012-01-30 11:46:54 -050019struct device;
Mark Brown9943fa32011-06-20 19:02:29 +010020struct i2c_client;
Mark Browna676f082011-05-12 11:42:10 +020021struct spi_device;
Mark Brownb83d2ff2012-03-11 11:49:17 +000022struct regmap;
Mark Brown9943fa32011-06-20 19:02:29 +010023
Dimitris Papastamos9fabe242011-09-19 14:34:00 +010024/* An enum of all the supported cache types */
25enum regcache_type {
26 REGCACHE_NONE,
Dimitris Papastamos28644c802011-09-19 14:34:02 +010027 REGCACHE_RBTREE,
Mark Brown50b776f2011-11-02 15:00:03 +000028 REGCACHE_COMPRESSED
Dimitris Papastamos9fabe242011-09-19 14:34:00 +010029};
30
Mark Browndd898b22011-07-20 22:28:58 +010031/**
Mark Brownbd20eb52011-08-19 18:09:38 +090032 * Default value for a register. We use an array of structs rather
33 * than a simple array as many modern devices have very sparse
34 * register maps.
35 *
36 * @reg: Register address.
37 * @def: Register default value.
38 */
39struct reg_default {
40 unsigned int reg;
41 unsigned int def;
42};
43
Mark Brownb83d2ff2012-03-11 11:49:17 +000044#ifdef CONFIG_REGMAP
45
Mark Brownbd20eb52011-08-19 18:09:38 +090046/**
Mark Browndd898b22011-07-20 22:28:58 +010047 * Configuration for the register map of a device.
48 *
49 * @reg_bits: Number of bits in a register address, mandatory.
Mark Brown82159ba2012-01-18 10:52:25 +000050 * @pad_bits: Number of bits of padding between register and value.
Mark Browndd898b22011-07-20 22:28:58 +010051 * @val_bits: Number of bits in a register value, mandatory.
Mark Brown2e2ae662011-07-20 22:33:39 +010052 *
Mark Brown3566cc92011-08-09 10:23:22 +090053 * @writeable_reg: Optional callback returning true if the register
54 * can be written to.
55 * @readable_reg: Optional callback returning true if the register
56 * can be read from.
57 * @volatile_reg: Optional callback returning true if the register
58 * value can't be cached.
59 * @precious_reg: Optional callback returning true if the rgister
60 * should not be read outside of a call from the driver
61 * (eg, a clear on read interrupt status register).
Mark Brownbd20eb52011-08-19 18:09:38 +090062 *
63 * @max_register: Optional, specifies the maximum valid register index.
64 * @reg_defaults: Power on reset values for registers (for use with
65 * register cache support).
66 * @num_reg_defaults: Number of elements in reg_defaults.
Lars-Peter Clausen6f306442011-09-05 20:46:32 +020067 *
68 * @read_flag_mask: Mask to be set in the top byte of the register when doing
69 * a read.
70 * @write_flag_mask: Mask to be set in the top byte of the register when doing
71 * a write. If both read_flag_mask and write_flag_mask are
72 * empty the regmap_bus default masks are used.
Dimitris Papastamos9fabe242011-09-19 14:34:00 +010073 *
74 * @cache_type: The actual cache type.
75 * @reg_defaults_raw: Power on reset values for registers (for use with
76 * register cache support).
77 * @num_reg_defaults_raw: Number of elements in reg_defaults_raw.
Mark Browndd898b22011-07-20 22:28:58 +010078 */
Mark Brownb83a3132011-05-11 19:59:58 +020079struct regmap_config {
80 int reg_bits;
Mark Brown82159ba2012-01-18 10:52:25 +000081 int pad_bits;
Mark Brownb83a3132011-05-11 19:59:58 +020082 int val_bits;
Mark Brown2e2ae662011-07-20 22:33:39 +010083
Mark Brown2e2ae662011-07-20 22:33:39 +010084 bool (*writeable_reg)(struct device *dev, unsigned int reg);
85 bool (*readable_reg)(struct device *dev, unsigned int reg);
86 bool (*volatile_reg)(struct device *dev, unsigned int reg);
Mark Brown18694882011-08-08 15:40:22 +090087 bool (*precious_reg)(struct device *dev, unsigned int reg);
Mark Brownbd20eb52011-08-19 18:09:38 +090088
89 unsigned int max_register;
Lars-Peter Clausen720e4612011-11-16 16:28:17 +010090 const struct reg_default *reg_defaults;
Dimitris Papastamos9fabe242011-09-19 14:34:00 +010091 unsigned int num_reg_defaults;
92 enum regcache_type cache_type;
93 const void *reg_defaults_raw;
94 unsigned int num_reg_defaults_raw;
Lars-Peter Clausen6f306442011-09-05 20:46:32 +020095
96 u8 read_flag_mask;
97 u8 write_flag_mask;
Mark Brownb83a3132011-05-11 19:59:58 +020098};
99
Stephen Warren0135bbc2012-04-04 15:48:30 -0600100typedef int (*regmap_hw_write)(void *context, const void *data,
Mark Brownb83a3132011-05-11 19:59:58 +0200101 size_t count);
Stephen Warren0135bbc2012-04-04 15:48:30 -0600102typedef int (*regmap_hw_gather_write)(void *context,
Mark Brownb83a3132011-05-11 19:59:58 +0200103 const void *reg, size_t reg_len,
104 const void *val, size_t val_len);
Stephen Warren0135bbc2012-04-04 15:48:30 -0600105typedef int (*regmap_hw_read)(void *context,
Mark Brownb83a3132011-05-11 19:59:58 +0200106 const void *reg_buf, size_t reg_size,
107 void *val_buf, size_t val_size);
Stephen Warren0135bbc2012-04-04 15:48:30 -0600108typedef void (*regmap_hw_free_context)(void *context);
Mark Brownb83a3132011-05-11 19:59:58 +0200109
110/**
111 * Description of a hardware bus for the register map infrastructure.
112 *
Stephen Warrenbacdbe02012-04-04 15:48:28 -0600113 * @fast_io: Register IO is fast. Use a spinlock instead of a mutex
114 * to perform locking.
Mark Brownb83a3132011-05-11 19:59:58 +0200115 * @write: Write operation.
116 * @gather_write: Write operation with split register/value, return -ENOTSUPP
117 * if not implemented on a given device.
118 * @read: Read operation. Data is returned in the buffer used to transmit
119 * data.
Mark Brownb83a3132011-05-11 19:59:58 +0200120 * @read_flag_mask: Mask to be set in the top byte of the register when doing
121 * a read.
122 */
123struct regmap_bus {
Stephen Warrenbacdbe02012-04-04 15:48:28 -0600124 bool fast_io;
Mark Brownb83a3132011-05-11 19:59:58 +0200125 regmap_hw_write write;
126 regmap_hw_gather_write gather_write;
127 regmap_hw_read read;
Stephen Warren0135bbc2012-04-04 15:48:30 -0600128 regmap_hw_free_context free_context;
Mark Brownb83a3132011-05-11 19:59:58 +0200129 u8 read_flag_mask;
130};
131
132struct regmap *regmap_init(struct device *dev,
133 const struct regmap_bus *bus,
Stephen Warren0135bbc2012-04-04 15:48:30 -0600134 void *bus_context,
Mark Brownb83a3132011-05-11 19:59:58 +0200135 const struct regmap_config *config);
Mark Brown9943fa32011-06-20 19:02:29 +0100136struct regmap *regmap_init_i2c(struct i2c_client *i2c,
137 const struct regmap_config *config);
Mark Browna676f082011-05-12 11:42:10 +0200138struct regmap *regmap_init_spi(struct spi_device *dev,
139 const struct regmap_config *config);
Stephen Warren45f5ff82012-04-04 15:48:31 -0600140struct regmap *regmap_init_mmio(struct device *dev,
141 void __iomem *regs,
142 const struct regmap_config *config);
Mark Browna676f082011-05-12 11:42:10 +0200143
Mark Brownc0eb4672012-01-30 19:56:52 +0000144struct regmap *devm_regmap_init(struct device *dev,
145 const struct regmap_bus *bus,
Stephen Warren0135bbc2012-04-04 15:48:30 -0600146 void *bus_context,
Mark Brownc0eb4672012-01-30 19:56:52 +0000147 const struct regmap_config *config);
148struct regmap *devm_regmap_init_i2c(struct i2c_client *i2c,
149 const struct regmap_config *config);
150struct regmap *devm_regmap_init_spi(struct spi_device *dev,
151 const struct regmap_config *config);
Stephen Warren45f5ff82012-04-04 15:48:31 -0600152struct regmap *devm_regmap_init_mmio(struct device *dev,
153 void __iomem *regs,
154 const struct regmap_config *config);
Mark Brownc0eb4672012-01-30 19:56:52 +0000155
Mark Brownb83a3132011-05-11 19:59:58 +0200156void regmap_exit(struct regmap *map);
Mark Brownbf315172011-12-03 17:06:20 +0000157int regmap_reinit_cache(struct regmap *map,
158 const struct regmap_config *config);
Mark Brown72b39f62012-05-08 17:44:40 +0100159struct regmap *dev_get_regmap(struct device *dev, const char *name);
Mark Brownb83a3132011-05-11 19:59:58 +0200160int regmap_write(struct regmap *map, unsigned int reg, unsigned int val);
161int regmap_raw_write(struct regmap *map, unsigned int reg,
162 const void *val, size_t val_len);
Laxman Dewangan8eaeb212012-02-12 19:49:43 +0530163int regmap_bulk_write(struct regmap *map, unsigned int reg, const void *val,
164 size_t val_count);
Mark Brownb83a3132011-05-11 19:59:58 +0200165int regmap_read(struct regmap *map, unsigned int reg, unsigned int *val);
166int regmap_raw_read(struct regmap *map, unsigned int reg,
167 void *val, size_t val_len);
168int regmap_bulk_read(struct regmap *map, unsigned int reg, void *val,
169 size_t val_count);
170int regmap_update_bits(struct regmap *map, unsigned int reg,
171 unsigned int mask, unsigned int val);
Mark Brown018690d2011-11-29 20:10:36 +0000172int regmap_update_bits_check(struct regmap *map, unsigned int reg,
173 unsigned int mask, unsigned int val,
174 bool *change);
Mark Browna6539c32012-02-17 14:20:14 -0800175int regmap_get_val_bytes(struct regmap *map);
Mark Brownb83a3132011-05-11 19:59:58 +0200176
Mark Brown39a58432011-09-19 18:21:49 +0100177int regcache_sync(struct regmap *map);
Mark Brown4d4cfd12012-02-23 20:53:37 +0000178int regcache_sync_region(struct regmap *map, unsigned int min,
179 unsigned int max);
Mark Brown92afb282011-09-19 18:22:14 +0100180void regcache_cache_only(struct regmap *map, bool enable);
Dimitris Papastamos6eb0f5e2011-09-29 14:36:27 +0100181void regcache_cache_bypass(struct regmap *map, bool enable);
Mark Brown8ae0d7e2011-10-26 10:34:22 +0200182void regcache_mark_dirty(struct regmap *map);
Mark Brown92afb282011-09-19 18:22:14 +0100183
Mark Brown22f0d902012-01-21 12:01:14 +0000184int regmap_register_patch(struct regmap *map, const struct reg_default *regs,
185 int num_regs);
186
Mark Brownf8beab22011-10-28 23:50:49 +0200187/**
188 * Description of an IRQ for the generic regmap irq_chip.
189 *
190 * @reg_offset: Offset of the status/mask register within the bank
191 * @mask: Mask used to flag/control the register.
192 */
193struct regmap_irq {
194 unsigned int reg_offset;
195 unsigned int mask;
196};
197
198/**
199 * Description of a generic regmap irq_chip. This is not intended to
200 * handle every possible interrupt controller, but it should handle a
201 * substantial proportion of those that are found in the wild.
202 *
203 * @name: Descriptive name for IRQ controller.
204 *
205 * @status_base: Base status register address.
206 * @mask_base: Base mask register address.
207 * @ack_base: Base ack address. If zero then the chip is clear on read.
208 *
209 * @num_regs: Number of registers in each control bank.
210 * @irqs: Descriptors for individual IRQs. Interrupt numbers are
211 * assigned based on the index in the array of the interrupt.
212 * @num_irqs: Number of descriptors.
213 */
214struct regmap_irq_chip {
215 const char *name;
216
217 unsigned int status_base;
218 unsigned int mask_base;
219 unsigned int ack_base;
220
221 int num_regs;
222
223 const struct regmap_irq *irqs;
224 int num_irqs;
225};
226
227struct regmap_irq_chip_data;
228
229int regmap_add_irq_chip(struct regmap *map, int irq, int irq_flags,
230 int irq_base, struct regmap_irq_chip *chip,
231 struct regmap_irq_chip_data **data);
232void regmap_del_irq_chip(int irq, struct regmap_irq_chip_data *data);
Mark Brown209a6002011-12-05 16:10:15 +0000233int regmap_irq_chip_get_base(struct regmap_irq_chip_data *data);
Mark Brownb83a3132011-05-11 19:59:58 +0200234
Mark Brown9cde5fc2012-02-17 14:49:51 -0800235#else
236
237/*
238 * These stubs should only ever be called by generic code which has
239 * regmap based facilities, if they ever get called at runtime
240 * something is going wrong and something probably needs to select
241 * REGMAP.
242 */
243
244static inline int regmap_write(struct regmap *map, unsigned int reg,
245 unsigned int val)
246{
247 WARN_ONCE(1, "regmap API is disabled");
248 return -EINVAL;
249}
250
251static inline int regmap_raw_write(struct regmap *map, unsigned int reg,
252 const void *val, size_t val_len)
253{
254 WARN_ONCE(1, "regmap API is disabled");
255 return -EINVAL;
256}
257
258static inline int regmap_bulk_write(struct regmap *map, unsigned int reg,
259 const void *val, size_t val_count)
260{
261 WARN_ONCE(1, "regmap API is disabled");
262 return -EINVAL;
263}
264
265static inline int regmap_read(struct regmap *map, unsigned int reg,
266 unsigned int *val)
267{
268 WARN_ONCE(1, "regmap API is disabled");
269 return -EINVAL;
270}
271
272static inline int regmap_raw_read(struct regmap *map, unsigned int reg,
273 void *val, size_t val_len)
274{
275 WARN_ONCE(1, "regmap API is disabled");
276 return -EINVAL;
277}
278
279static inline int regmap_bulk_read(struct regmap *map, unsigned int reg,
280 void *val, size_t val_count)
281{
282 WARN_ONCE(1, "regmap API is disabled");
283 return -EINVAL;
284}
285
286static inline int regmap_update_bits(struct regmap *map, unsigned int reg,
287 unsigned int mask, unsigned int val)
288{
289 WARN_ONCE(1, "regmap API is disabled");
290 return -EINVAL;
291}
292
293static inline int regmap_update_bits_check(struct regmap *map,
294 unsigned int reg,
295 unsigned int mask, unsigned int val,
296 bool *change)
297{
298 WARN_ONCE(1, "regmap API is disabled");
299 return -EINVAL;
300}
301
302static inline int regmap_get_val_bytes(struct regmap *map)
303{
304 WARN_ONCE(1, "regmap API is disabled");
305 return -EINVAL;
306}
307
308static inline int regcache_sync(struct regmap *map)
309{
310 WARN_ONCE(1, "regmap API is disabled");
311 return -EINVAL;
312}
313
Mark Browna313f9f2012-02-23 19:49:43 +0000314static inline int regcache_sync_region(struct regmap *map, unsigned int min,
315 unsigned int max)
316{
317 WARN_ONCE(1, "regmap API is disabled");
318 return -EINVAL;
319}
320
Mark Brown9cde5fc2012-02-17 14:49:51 -0800321static inline void regcache_cache_only(struct regmap *map, bool enable)
322{
323 WARN_ONCE(1, "regmap API is disabled");
324}
325
326static inline void regcache_cache_bypass(struct regmap *map, bool enable)
327{
328 WARN_ONCE(1, "regmap API is disabled");
329}
330
331static inline void regcache_mark_dirty(struct regmap *map)
332{
333 WARN_ONCE(1, "regmap API is disabled");
334}
335
336static inline int regmap_register_patch(struct regmap *map,
337 const struct reg_default *regs,
338 int num_regs)
339{
340 WARN_ONCE(1, "regmap API is disabled");
341 return -EINVAL;
342}
343
Mark Brown72b39f62012-05-08 17:44:40 +0100344static inline struct regmap *dev_get_regmap(struct device *dev,
345 const char *name)
346{
347 WARN_ONCE(1, "regmap API is disabled");
348 return NULL;
349}
350
Mark Brown9cde5fc2012-02-17 14:49:51 -0800351#endif
352
Mark Brownb83a3132011-05-11 19:59:58 +0200353#endif