blob: 0258bcd6258d524c1254c96670d22fd6ec7dc1b0 [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 *
Stephen Warrend3c242e2012-04-04 15:48:29 -060049 * @name: Optional name of the regmap. Useful when a device has multiple
50 * register regions.
51 *
Mark Browndd898b22011-07-20 22:28:58 +010052 * @reg_bits: Number of bits in a register address, mandatory.
Stephen Warrenf01ee602012-04-09 13:40:24 -060053 * @reg_stride: The register address stride. Valid register addresses are a
54 * multiple of this value. If set to 0, a value of 1 will be
55 * used.
Mark Brown82159ba2012-01-18 10:52:25 +000056 * @pad_bits: Number of bits of padding between register and value.
Mark Browndd898b22011-07-20 22:28:58 +010057 * @val_bits: Number of bits in a register value, mandatory.
Mark Brown2e2ae662011-07-20 22:33:39 +010058 *
Mark Brown3566cc92011-08-09 10:23:22 +090059 * @writeable_reg: Optional callback returning true if the register
60 * can be written to.
61 * @readable_reg: Optional callback returning true if the register
62 * can be read from.
63 * @volatile_reg: Optional callback returning true if the register
64 * value can't be cached.
65 * @precious_reg: Optional callback returning true if the rgister
66 * should not be read outside of a call from the driver
67 * (eg, a clear on read interrupt status register).
Mark Brownbd20eb52011-08-19 18:09:38 +090068 *
69 * @max_register: Optional, specifies the maximum valid register index.
70 * @reg_defaults: Power on reset values for registers (for use with
71 * register cache support).
72 * @num_reg_defaults: Number of elements in reg_defaults.
Lars-Peter Clausen6f306442011-09-05 20:46:32 +020073 *
74 * @read_flag_mask: Mask to be set in the top byte of the register when doing
75 * a read.
76 * @write_flag_mask: Mask to be set in the top byte of the register when doing
77 * a write. If both read_flag_mask and write_flag_mask are
78 * empty the regmap_bus default masks are used.
Dimitris Papastamos9fabe242011-09-19 14:34:00 +010079 *
80 * @cache_type: The actual cache type.
81 * @reg_defaults_raw: Power on reset values for registers (for use with
82 * register cache support).
83 * @num_reg_defaults_raw: Number of elements in reg_defaults_raw.
Mark Browndd898b22011-07-20 22:28:58 +010084 */
Mark Brownb83a3132011-05-11 19:59:58 +020085struct regmap_config {
Stephen Warrend3c242e2012-04-04 15:48:29 -060086 const char *name;
87
Mark Brownb83a3132011-05-11 19:59:58 +020088 int reg_bits;
Stephen Warrenf01ee602012-04-09 13:40:24 -060089 int reg_stride;
Mark Brown82159ba2012-01-18 10:52:25 +000090 int pad_bits;
Mark Brownb83a3132011-05-11 19:59:58 +020091 int val_bits;
Mark Brown2e2ae662011-07-20 22:33:39 +010092
Mark Brown2e2ae662011-07-20 22:33:39 +010093 bool (*writeable_reg)(struct device *dev, unsigned int reg);
94 bool (*readable_reg)(struct device *dev, unsigned int reg);
95 bool (*volatile_reg)(struct device *dev, unsigned int reg);
Mark Brown18694882011-08-08 15:40:22 +090096 bool (*precious_reg)(struct device *dev, unsigned int reg);
Mark Brownbd20eb52011-08-19 18:09:38 +090097
98 unsigned int max_register;
Lars-Peter Clausen720e4612011-11-16 16:28:17 +010099 const struct reg_default *reg_defaults;
Dimitris Papastamos9fabe242011-09-19 14:34:00 +0100100 unsigned int num_reg_defaults;
101 enum regcache_type cache_type;
102 const void *reg_defaults_raw;
103 unsigned int num_reg_defaults_raw;
Lars-Peter Clausen6f306442011-09-05 20:46:32 +0200104
105 u8 read_flag_mask;
106 u8 write_flag_mask;
Mark Brownb83a3132011-05-11 19:59:58 +0200107};
108
Stephen Warren0135bbc2012-04-04 15:48:30 -0600109typedef int (*regmap_hw_write)(void *context, const void *data,
Mark Brownb83a3132011-05-11 19:59:58 +0200110 size_t count);
Stephen Warren0135bbc2012-04-04 15:48:30 -0600111typedef int (*regmap_hw_gather_write)(void *context,
Mark Brownb83a3132011-05-11 19:59:58 +0200112 const void *reg, size_t reg_len,
113 const void *val, size_t val_len);
Stephen Warren0135bbc2012-04-04 15:48:30 -0600114typedef int (*regmap_hw_read)(void *context,
Mark Brownb83a3132011-05-11 19:59:58 +0200115 const void *reg_buf, size_t reg_size,
116 void *val_buf, size_t val_size);
Stephen Warren0135bbc2012-04-04 15:48:30 -0600117typedef void (*regmap_hw_free_context)(void *context);
Mark Brownb83a3132011-05-11 19:59:58 +0200118
119/**
120 * Description of a hardware bus for the register map infrastructure.
121 *
Stephen Warrenbacdbe02012-04-04 15:48:28 -0600122 * @fast_io: Register IO is fast. Use a spinlock instead of a mutex
123 * to perform locking.
Mark Brownb83a3132011-05-11 19:59:58 +0200124 * @write: Write operation.
125 * @gather_write: Write operation with split register/value, return -ENOTSUPP
126 * if not implemented on a given device.
127 * @read: Read operation. Data is returned in the buffer used to transmit
128 * data.
Mark Brownb83a3132011-05-11 19:59:58 +0200129 * @read_flag_mask: Mask to be set in the top byte of the register when doing
130 * a read.
131 */
132struct regmap_bus {
Stephen Warrenbacdbe02012-04-04 15:48:28 -0600133 bool fast_io;
Mark Brownb83a3132011-05-11 19:59:58 +0200134 regmap_hw_write write;
135 regmap_hw_gather_write gather_write;
136 regmap_hw_read read;
Stephen Warren0135bbc2012-04-04 15:48:30 -0600137 regmap_hw_free_context free_context;
Mark Brownb83a3132011-05-11 19:59:58 +0200138 u8 read_flag_mask;
139};
140
141struct regmap *regmap_init(struct device *dev,
142 const struct regmap_bus *bus,
Stephen Warren0135bbc2012-04-04 15:48:30 -0600143 void *bus_context,
Mark Brownb83a3132011-05-11 19:59:58 +0200144 const struct regmap_config *config);
Mark Brown9943fa32011-06-20 19:02:29 +0100145struct regmap *regmap_init_i2c(struct i2c_client *i2c,
146 const struct regmap_config *config);
Mark Browna676f082011-05-12 11:42:10 +0200147struct regmap *regmap_init_spi(struct spi_device *dev,
148 const struct regmap_config *config);
Stephen Warren45f5ff82012-04-04 15:48:31 -0600149struct regmap *regmap_init_mmio(struct device *dev,
150 void __iomem *regs,
151 const struct regmap_config *config);
Mark Browna676f082011-05-12 11:42:10 +0200152
Mark Brownc0eb4672012-01-30 19:56:52 +0000153struct regmap *devm_regmap_init(struct device *dev,
154 const struct regmap_bus *bus,
Stephen Warren0135bbc2012-04-04 15:48:30 -0600155 void *bus_context,
Mark Brownc0eb4672012-01-30 19:56:52 +0000156 const struct regmap_config *config);
157struct regmap *devm_regmap_init_i2c(struct i2c_client *i2c,
158 const struct regmap_config *config);
159struct regmap *devm_regmap_init_spi(struct spi_device *dev,
160 const struct regmap_config *config);
Stephen Warren45f5ff82012-04-04 15:48:31 -0600161struct regmap *devm_regmap_init_mmio(struct device *dev,
162 void __iomem *regs,
163 const struct regmap_config *config);
Mark Brownc0eb4672012-01-30 19:56:52 +0000164
Mark Brownb83a3132011-05-11 19:59:58 +0200165void regmap_exit(struct regmap *map);
Mark Brownbf315172011-12-03 17:06:20 +0000166int regmap_reinit_cache(struct regmap *map,
167 const struct regmap_config *config);
Mark Brownb83a3132011-05-11 19:59:58 +0200168int regmap_write(struct regmap *map, unsigned int reg, unsigned int val);
169int regmap_raw_write(struct regmap *map, unsigned int reg,
170 const void *val, size_t val_len);
Laxman Dewangan8eaeb212012-02-12 19:49:43 +0530171int regmap_bulk_write(struct regmap *map, unsigned int reg, const void *val,
172 size_t val_count);
Mark Brownb83a3132011-05-11 19:59:58 +0200173int regmap_read(struct regmap *map, unsigned int reg, unsigned int *val);
174int regmap_raw_read(struct regmap *map, unsigned int reg,
175 void *val, size_t val_len);
176int regmap_bulk_read(struct regmap *map, unsigned int reg, void *val,
177 size_t val_count);
178int regmap_update_bits(struct regmap *map, unsigned int reg,
179 unsigned int mask, unsigned int val);
Mark Brown018690d2011-11-29 20:10:36 +0000180int regmap_update_bits_check(struct regmap *map, unsigned int reg,
181 unsigned int mask, unsigned int val,
182 bool *change);
Mark Browna6539c32012-02-17 14:20:14 -0800183int regmap_get_val_bytes(struct regmap *map);
Mark Brownb83a3132011-05-11 19:59:58 +0200184
Mark Brown39a58432011-09-19 18:21:49 +0100185int regcache_sync(struct regmap *map);
Mark Brown4d4cfd12012-02-23 20:53:37 +0000186int regcache_sync_region(struct regmap *map, unsigned int min,
187 unsigned int max);
Mark Brown92afb282011-09-19 18:22:14 +0100188void regcache_cache_only(struct regmap *map, bool enable);
Dimitris Papastamos6eb0f5e2011-09-29 14:36:27 +0100189void regcache_cache_bypass(struct regmap *map, bool enable);
Mark Brown8ae0d7e2011-10-26 10:34:22 +0200190void regcache_mark_dirty(struct regmap *map);
Mark Brown92afb282011-09-19 18:22:14 +0100191
Mark Brown22f0d902012-01-21 12:01:14 +0000192int regmap_register_patch(struct regmap *map, const struct reg_default *regs,
193 int num_regs);
194
Mark Brownf8beab22011-10-28 23:50:49 +0200195/**
196 * Description of an IRQ for the generic regmap irq_chip.
197 *
198 * @reg_offset: Offset of the status/mask register within the bank
199 * @mask: Mask used to flag/control the register.
200 */
201struct regmap_irq {
202 unsigned int reg_offset;
203 unsigned int mask;
204};
205
206/**
207 * Description of a generic regmap irq_chip. This is not intended to
208 * handle every possible interrupt controller, but it should handle a
209 * substantial proportion of those that are found in the wild.
210 *
211 * @name: Descriptive name for IRQ controller.
212 *
213 * @status_base: Base status register address.
214 * @mask_base: Base mask register address.
215 * @ack_base: Base ack address. If zero then the chip is clear on read.
216 *
217 * @num_regs: Number of registers in each control bank.
218 * @irqs: Descriptors for individual IRQs. Interrupt numbers are
219 * assigned based on the index in the array of the interrupt.
220 * @num_irqs: Number of descriptors.
221 */
222struct regmap_irq_chip {
223 const char *name;
224
225 unsigned int status_base;
226 unsigned int mask_base;
227 unsigned int ack_base;
228
229 int num_regs;
230
231 const struct regmap_irq *irqs;
232 int num_irqs;
233};
234
235struct regmap_irq_chip_data;
236
237int regmap_add_irq_chip(struct regmap *map, int irq, int irq_flags,
238 int irq_base, struct regmap_irq_chip *chip,
239 struct regmap_irq_chip_data **data);
240void regmap_del_irq_chip(int irq, struct regmap_irq_chip_data *data);
Mark Brown209a6002011-12-05 16:10:15 +0000241int regmap_irq_chip_get_base(struct regmap_irq_chip_data *data);
Mark Brownb83a3132011-05-11 19:59:58 +0200242
Mark Brown9cde5fc2012-02-17 14:49:51 -0800243#else
244
245/*
246 * These stubs should only ever be called by generic code which has
247 * regmap based facilities, if they ever get called at runtime
248 * something is going wrong and something probably needs to select
249 * REGMAP.
250 */
251
252static inline int regmap_write(struct regmap *map, unsigned int reg,
253 unsigned int val)
254{
255 WARN_ONCE(1, "regmap API is disabled");
256 return -EINVAL;
257}
258
259static inline int regmap_raw_write(struct regmap *map, unsigned int reg,
260 const void *val, size_t val_len)
261{
262 WARN_ONCE(1, "regmap API is disabled");
263 return -EINVAL;
264}
265
266static inline int regmap_bulk_write(struct regmap *map, unsigned int reg,
267 const void *val, size_t val_count)
268{
269 WARN_ONCE(1, "regmap API is disabled");
270 return -EINVAL;
271}
272
273static inline int regmap_read(struct regmap *map, unsigned int reg,
274 unsigned int *val)
275{
276 WARN_ONCE(1, "regmap API is disabled");
277 return -EINVAL;
278}
279
280static inline int regmap_raw_read(struct regmap *map, unsigned int reg,
281 void *val, size_t val_len)
282{
283 WARN_ONCE(1, "regmap API is disabled");
284 return -EINVAL;
285}
286
287static inline int regmap_bulk_read(struct regmap *map, unsigned int reg,
288 void *val, size_t val_count)
289{
290 WARN_ONCE(1, "regmap API is disabled");
291 return -EINVAL;
292}
293
294static inline int regmap_update_bits(struct regmap *map, unsigned int reg,
295 unsigned int mask, unsigned int val)
296{
297 WARN_ONCE(1, "regmap API is disabled");
298 return -EINVAL;
299}
300
301static inline int regmap_update_bits_check(struct regmap *map,
302 unsigned int reg,
303 unsigned int mask, unsigned int val,
304 bool *change)
305{
306 WARN_ONCE(1, "regmap API is disabled");
307 return -EINVAL;
308}
309
310static inline int regmap_get_val_bytes(struct regmap *map)
311{
312 WARN_ONCE(1, "regmap API is disabled");
313 return -EINVAL;
314}
315
316static inline int regcache_sync(struct regmap *map)
317{
318 WARN_ONCE(1, "regmap API is disabled");
319 return -EINVAL;
320}
321
Mark Browna313f9f2012-02-23 19:49:43 +0000322static inline int regcache_sync_region(struct regmap *map, unsigned int min,
323 unsigned int max)
324{
325 WARN_ONCE(1, "regmap API is disabled");
326 return -EINVAL;
327}
328
Mark Brown9cde5fc2012-02-17 14:49:51 -0800329static inline void regcache_cache_only(struct regmap *map, bool enable)
330{
331 WARN_ONCE(1, "regmap API is disabled");
332}
333
334static inline void regcache_cache_bypass(struct regmap *map, bool enable)
335{
336 WARN_ONCE(1, "regmap API is disabled");
337}
338
339static inline void regcache_mark_dirty(struct regmap *map)
340{
341 WARN_ONCE(1, "regmap API is disabled");
342}
343
344static inline int regmap_register_patch(struct regmap *map,
345 const struct reg_default *regs,
346 int num_regs)
347{
348 WARN_ONCE(1, "regmap API is disabled");
349 return -EINVAL;
350}
351
352#endif
353
Mark Brownb83a3132011-05-11 19:59:58 +0200354#endif