blob: 5067ee94eb923170d41ee61ac5e2db46ec2a656a [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>
Krystian Garbaciak6863ca62012-06-15 11:23:56 +010017#include <linux/rbtree.h>
Mark Brownb83a3132011-05-11 19:59:58 +020018
Paul Gortmakerde477252011-05-26 13:46:22 -040019struct module;
Paul Gortmaker313162d2012-01-30 11:46:54 -050020struct device;
Mark Brown9943fa32011-06-20 19:02:29 +010021struct i2c_client;
Mark Brown90f790d2012-08-20 21:45:05 +010022struct irq_domain;
Mark Browna676f082011-05-12 11:42:10 +020023struct spi_device;
Mark Brownb83d2ff2012-03-11 11:49:17 +000024struct regmap;
Krystian Garbaciak6863ca62012-06-15 11:23:56 +010025struct regmap_range_cfg;
Mark Brown9943fa32011-06-20 19:02:29 +010026
Dimitris Papastamos9fabe242011-09-19 14:34:00 +010027/* An enum of all the supported cache types */
28enum regcache_type {
29 REGCACHE_NONE,
Dimitris Papastamos28644c802011-09-19 14:34:02 +010030 REGCACHE_RBTREE,
Mark Brown2ac902c2012-12-19 14:51:55 +000031 REGCACHE_COMPRESSED,
32 REGCACHE_FLAT,
Dimitris Papastamos9fabe242011-09-19 14:34:00 +010033};
34
Mark Browndd898b22011-07-20 22:28:58 +010035/**
Mark Brownbd20eb52011-08-19 18:09:38 +090036 * Default value for a register. We use an array of structs rather
37 * than a simple array as many modern devices have very sparse
38 * register maps.
39 *
40 * @reg: Register address.
41 * @def: Register default value.
42 */
43struct reg_default {
44 unsigned int reg;
45 unsigned int def;
46};
47
Mark Brownb83d2ff2012-03-11 11:49:17 +000048#ifdef CONFIG_REGMAP
49
Stephen Warren141eba22012-05-24 10:47:26 -060050enum regmap_endian {
51 /* Unspecified -> 0 -> Backwards compatible default */
52 REGMAP_ENDIAN_DEFAULT = 0,
53 REGMAP_ENDIAN_BIG,
54 REGMAP_ENDIAN_LITTLE,
55 REGMAP_ENDIAN_NATIVE,
56};
57
Davide Ciminaghi76aad392012-11-20 15:20:30 +010058/**
59 * A register range, used for access related checks
60 * (readable/writeable/volatile/precious checks)
61 *
62 * @range_min: address of first register
63 * @range_max: address of last register
64 */
65struct regmap_range {
66 unsigned int range_min;
67 unsigned int range_max;
68};
69
70/*
71 * A table of ranges including some yes ranges and some no ranges.
72 * If a register belongs to a no_range, the corresponding check function
73 * will return false. If a register belongs to a yes range, the corresponding
74 * check function will return true. "no_ranges" are searched first.
75 *
76 * @yes_ranges : pointer to an array of regmap ranges used as "yes ranges"
77 * @n_yes_ranges: size of the above array
78 * @no_ranges: pointer to an array of regmap ranges used as "no ranges"
79 * @n_no_ranges: size of the above array
80 */
81struct regmap_access_table {
82 const struct regmap_range *yes_ranges;
83 unsigned int n_yes_ranges;
84 const struct regmap_range *no_ranges;
85 unsigned int n_no_ranges;
86};
87
Davide Ciminaghi0d4529c2012-10-16 15:56:59 +020088typedef void (*regmap_lock)(void *);
89typedef void (*regmap_unlock)(void *);
90
Mark Brownbd20eb52011-08-19 18:09:38 +090091/**
Mark Browndd898b22011-07-20 22:28:58 +010092 * Configuration for the register map of a device.
93 *
Stephen Warrend3c242e2012-04-04 15:48:29 -060094 * @name: Optional name of the regmap. Useful when a device has multiple
95 * register regions.
96 *
Mark Browndd898b22011-07-20 22:28:58 +010097 * @reg_bits: Number of bits in a register address, mandatory.
Stephen Warrenf01ee602012-04-09 13:40:24 -060098 * @reg_stride: The register address stride. Valid register addresses are a
99 * multiple of this value. If set to 0, a value of 1 will be
100 * used.
Mark Brown82159ba2012-01-18 10:52:25 +0000101 * @pad_bits: Number of bits of padding between register and value.
Mark Browndd898b22011-07-20 22:28:58 +0100102 * @val_bits: Number of bits in a register value, mandatory.
Mark Brown2e2ae662011-07-20 22:33:39 +0100103 *
Mark Brown3566cc92011-08-09 10:23:22 +0900104 * @writeable_reg: Optional callback returning true if the register
Davide Ciminaghi76aad392012-11-20 15:20:30 +0100105 * can be written to. If this field is NULL but wr_table
106 * (see below) is not, the check is performed on such table
107 * (a register is writeable if it belongs to one of the ranges
108 * specified by wr_table).
Mark Brown3566cc92011-08-09 10:23:22 +0900109 * @readable_reg: Optional callback returning true if the register
Davide Ciminaghi76aad392012-11-20 15:20:30 +0100110 * can be read from. If this field is NULL but rd_table
111 * (see below) is not, the check is performed on such table
112 * (a register is readable if it belongs to one of the ranges
113 * specified by rd_table).
Mark Brown3566cc92011-08-09 10:23:22 +0900114 * @volatile_reg: Optional callback returning true if the register
Davide Ciminaghi76aad392012-11-20 15:20:30 +0100115 * value can't be cached. If this field is NULL but
116 * volatile_table (see below) is not, the check is performed on
117 * such table (a register is volatile if it belongs to one of
118 * the ranges specified by volatile_table).
Mark Brown3566cc92011-08-09 10:23:22 +0900119 * @precious_reg: Optional callback returning true if the rgister
Davide Ciminaghi76aad392012-11-20 15:20:30 +0100120 * should not be read outside of a call from the driver
121 * (eg, a clear on read interrupt status register). If this
122 * field is NULL but precious_table (see below) is not, the
123 * check is performed on such table (a register is precious if
124 * it belongs to one of the ranges specified by precious_table).
125 * @lock: Optional lock callback (overrides regmap's default lock
126 * function, based on spinlock or mutex).
127 * @unlock: As above for unlocking.
128 * @lock_arg: this field is passed as the only argument of lock/unlock
129 * functions (ignored in case regular lock/unlock functions
130 * are not overridden).
Andrey Smirnovd2a58842013-01-27 10:49:05 -0800131 * @reg_read: Optional callback that if filled will be used to perform
132 * all the reads from the registers. Should only be provided for
133 * devices whos read operation cannot be represented as a simple read
134 * operation on a bus such as SPI, I2C, etc. Most of the devices do
135 * not need this.
136 * @reg_write: Same as above for writing.
137 * @fast_io: Register IO is fast. Use a spinlock instead of a mutex
138 * to perform locking. This field is ignored if custom lock/unlock
139 * functions are used (see fields lock/unlock of struct regmap_config).
140 * This field is a duplicate of a similar file in
141 * 'struct regmap_bus' and serves exact same purpose.
142 * Use it only for "no-bus" cases.
Mark Brownbd20eb52011-08-19 18:09:38 +0900143 * @max_register: Optional, specifies the maximum valid register index.
Davide Ciminaghi76aad392012-11-20 15:20:30 +0100144 * @wr_table: Optional, points to a struct regmap_access_table specifying
145 * valid ranges for write access.
146 * @rd_table: As above, for read access.
147 * @volatile_table: As above, for volatile registers.
148 * @precious_table: As above, for precious registers.
Mark Brownbd20eb52011-08-19 18:09:38 +0900149 * @reg_defaults: Power on reset values for registers (for use with
150 * register cache support).
151 * @num_reg_defaults: Number of elements in reg_defaults.
Lars-Peter Clausen6f306442011-09-05 20:46:32 +0200152 *
153 * @read_flag_mask: Mask to be set in the top byte of the register when doing
154 * a read.
155 * @write_flag_mask: Mask to be set in the top byte of the register when doing
156 * a write. If both read_flag_mask and write_flag_mask are
157 * empty the regmap_bus default masks are used.
Ashish Jangam2e33caf2012-04-30 23:23:40 +0100158 * @use_single_rw: If set, converts the bulk read and write operations into
159 * a series of single read and write operations. This is useful
160 * for device that does not support bulk read and write.
Dimitris Papastamos9fabe242011-09-19 14:34:00 +0100161 *
162 * @cache_type: The actual cache type.
163 * @reg_defaults_raw: Power on reset values for registers (for use with
164 * register cache support).
165 * @num_reg_defaults_raw: Number of elements in reg_defaults_raw.
Stephen Warren141eba22012-05-24 10:47:26 -0600166 * @reg_format_endian: Endianness for formatted register addresses. If this is
167 * DEFAULT, the @reg_format_endian_default value from the
168 * regmap bus is used.
169 * @val_format_endian: Endianness for formatted register values. If this is
170 * DEFAULT, the @reg_format_endian_default value from the
171 * regmap bus is used.
Krystian Garbaciak6863ca62012-06-15 11:23:56 +0100172 *
173 * @ranges: Array of configuration entries for virtual address ranges.
174 * @num_ranges: Number of range configuration entries.
Mark Browndd898b22011-07-20 22:28:58 +0100175 */
Mark Brownb83a3132011-05-11 19:59:58 +0200176struct regmap_config {
Stephen Warrend3c242e2012-04-04 15:48:29 -0600177 const char *name;
178
Mark Brownb83a3132011-05-11 19:59:58 +0200179 int reg_bits;
Stephen Warrenf01ee602012-04-09 13:40:24 -0600180 int reg_stride;
Mark Brown82159ba2012-01-18 10:52:25 +0000181 int pad_bits;
Mark Brownb83a3132011-05-11 19:59:58 +0200182 int val_bits;
Mark Brown2e2ae662011-07-20 22:33:39 +0100183
Mark Brown2e2ae662011-07-20 22:33:39 +0100184 bool (*writeable_reg)(struct device *dev, unsigned int reg);
185 bool (*readable_reg)(struct device *dev, unsigned int reg);
186 bool (*volatile_reg)(struct device *dev, unsigned int reg);
Mark Brown18694882011-08-08 15:40:22 +0900187 bool (*precious_reg)(struct device *dev, unsigned int reg);
Davide Ciminaghi0d4529c2012-10-16 15:56:59 +0200188 regmap_lock lock;
189 regmap_unlock unlock;
190 void *lock_arg;
Mark Brownbd20eb52011-08-19 18:09:38 +0900191
Andrey Smirnovd2a58842013-01-27 10:49:05 -0800192 int (*reg_read)(void *context, unsigned int reg, unsigned int *val);
193 int (*reg_write)(void *context, unsigned int reg, unsigned int val);
194
195 bool fast_io;
196
Mark Brownbd20eb52011-08-19 18:09:38 +0900197 unsigned int max_register;
Davide Ciminaghi76aad392012-11-20 15:20:30 +0100198 const struct regmap_access_table *wr_table;
199 const struct regmap_access_table *rd_table;
200 const struct regmap_access_table *volatile_table;
201 const struct regmap_access_table *precious_table;
Lars-Peter Clausen720e4612011-11-16 16:28:17 +0100202 const struct reg_default *reg_defaults;
Dimitris Papastamos9fabe242011-09-19 14:34:00 +0100203 unsigned int num_reg_defaults;
204 enum regcache_type cache_type;
205 const void *reg_defaults_raw;
206 unsigned int num_reg_defaults_raw;
Lars-Peter Clausen6f306442011-09-05 20:46:32 +0200207
208 u8 read_flag_mask;
209 u8 write_flag_mask;
Ashish Jangam2e33caf2012-04-30 23:23:40 +0100210
211 bool use_single_rw;
Stephen Warren141eba22012-05-24 10:47:26 -0600212
213 enum regmap_endian reg_format_endian;
214 enum regmap_endian val_format_endian;
Mark Brown38e23192012-07-22 19:26:07 +0100215
Krystian Garbaciak6863ca62012-06-15 11:23:56 +0100216 const struct regmap_range_cfg *ranges;
Mark Browne3549cd2012-10-02 20:17:15 +0100217 unsigned int num_ranges;
Krystian Garbaciak6863ca62012-06-15 11:23:56 +0100218};
219
220/**
221 * Configuration for indirectly accessed or paged registers.
222 * Registers, mapped to this virtual range, are accessed in two steps:
223 * 1. page selector register update;
224 * 2. access through data window registers.
225 *
Mark Brownd058bb42012-10-03 12:40:47 +0100226 * @name: Descriptive name for diagnostics
227 *
Krystian Garbaciak6863ca62012-06-15 11:23:56 +0100228 * @range_min: Address of the lowest register address in virtual range.
229 * @range_max: Address of the highest register in virtual range.
230 *
231 * @page_sel_reg: Register with selector field.
232 * @page_sel_mask: Bit shift for selector value.
233 * @page_sel_shift: Bit mask for selector value.
234 *
235 * @window_start: Address of first (lowest) register in data window.
236 * @window_len: Number of registers in data window.
237 */
238struct regmap_range_cfg {
Mark Brownd058bb42012-10-03 12:40:47 +0100239 const char *name;
240
Krystian Garbaciak6863ca62012-06-15 11:23:56 +0100241 /* Registers of virtual address range */
242 unsigned int range_min;
243 unsigned int range_max;
244
245 /* Page selector for indirect addressing */
246 unsigned int selector_reg;
247 unsigned int selector_mask;
248 int selector_shift;
249
250 /* Data window (per each page) */
251 unsigned int window_start;
252 unsigned int window_len;
Mark Brownb83a3132011-05-11 19:59:58 +0200253};
254
Mark Brown0d509f22013-01-27 22:07:38 +0800255struct regmap_async;
256
Stephen Warren0135bbc2012-04-04 15:48:30 -0600257typedef int (*regmap_hw_write)(void *context, const void *data,
Mark Brownb83a3132011-05-11 19:59:58 +0200258 size_t count);
Stephen Warren0135bbc2012-04-04 15:48:30 -0600259typedef int (*regmap_hw_gather_write)(void *context,
Mark Brownb83a3132011-05-11 19:59:58 +0200260 const void *reg, size_t reg_len,
261 const void *val, size_t val_len);
Mark Brown0d509f22013-01-27 22:07:38 +0800262typedef int (*regmap_hw_async_write)(void *context,
263 const void *reg, size_t reg_len,
264 const void *val, size_t val_len,
265 struct regmap_async *async);
Stephen Warren0135bbc2012-04-04 15:48:30 -0600266typedef int (*regmap_hw_read)(void *context,
Mark Brownb83a3132011-05-11 19:59:58 +0200267 const void *reg_buf, size_t reg_size,
268 void *val_buf, size_t val_size);
Mark Brown0d509f22013-01-27 22:07:38 +0800269typedef struct regmap_async *(*regmap_hw_async_alloc)(void);
Stephen Warren0135bbc2012-04-04 15:48:30 -0600270typedef void (*regmap_hw_free_context)(void *context);
Mark Brownb83a3132011-05-11 19:59:58 +0200271
272/**
273 * Description of a hardware bus for the register map infrastructure.
274 *
Stephen Warrenbacdbe02012-04-04 15:48:28 -0600275 * @fast_io: Register IO is fast. Use a spinlock instead of a mutex
Davide Ciminaghi0d4529c2012-10-16 15:56:59 +0200276 * to perform locking. This field is ignored if custom lock/unlock
277 * functions are used (see fields lock/unlock of
278 * struct regmap_config).
Mark Brownb83a3132011-05-11 19:59:58 +0200279 * @write: Write operation.
280 * @gather_write: Write operation with split register/value, return -ENOTSUPP
281 * if not implemented on a given device.
Mark Brown0d509f22013-01-27 22:07:38 +0800282 * @async_write: Write operation which completes asynchronously, optional and
283 * must serialise with respect to non-async I/O.
Mark Brownb83a3132011-05-11 19:59:58 +0200284 * @read: Read operation. Data is returned in the buffer used to transmit
285 * data.
Mark Brown0d509f22013-01-27 22:07:38 +0800286 * @async_alloc: Allocate a regmap_async() structure.
Mark Brownb83a3132011-05-11 19:59:58 +0200287 * @read_flag_mask: Mask to be set in the top byte of the register when doing
288 * a read.
Stephen Warren141eba22012-05-24 10:47:26 -0600289 * @reg_format_endian_default: Default endianness for formatted register
290 * addresses. Used when the regmap_config specifies DEFAULT. If this is
291 * DEFAULT, BIG is assumed.
292 * @val_format_endian_default: Default endianness for formatted register
293 * values. Used when the regmap_config specifies DEFAULT. If this is
294 * DEFAULT, BIG is assumed.
Mark Brown0d509f22013-01-27 22:07:38 +0800295 * @async_size: Size of struct used for async work.
Mark Brownb83a3132011-05-11 19:59:58 +0200296 */
297struct regmap_bus {
Stephen Warrenbacdbe02012-04-04 15:48:28 -0600298 bool fast_io;
Mark Brownb83a3132011-05-11 19:59:58 +0200299 regmap_hw_write write;
300 regmap_hw_gather_write gather_write;
Mark Brown0d509f22013-01-27 22:07:38 +0800301 regmap_hw_async_write async_write;
Mark Brownb83a3132011-05-11 19:59:58 +0200302 regmap_hw_read read;
Stephen Warren0135bbc2012-04-04 15:48:30 -0600303 regmap_hw_free_context free_context;
Mark Brown0d509f22013-01-27 22:07:38 +0800304 regmap_hw_async_alloc async_alloc;
Mark Brownb83a3132011-05-11 19:59:58 +0200305 u8 read_flag_mask;
Stephen Warren141eba22012-05-24 10:47:26 -0600306 enum regmap_endian reg_format_endian_default;
307 enum regmap_endian val_format_endian_default;
Mark Brownb83a3132011-05-11 19:59:58 +0200308};
309
310struct regmap *regmap_init(struct device *dev,
311 const struct regmap_bus *bus,
Stephen Warren0135bbc2012-04-04 15:48:30 -0600312 void *bus_context,
Mark Brownb83a3132011-05-11 19:59:58 +0200313 const struct regmap_config *config);
Mark Brown9943fa32011-06-20 19:02:29 +0100314struct regmap *regmap_init_i2c(struct i2c_client *i2c,
315 const struct regmap_config *config);
Mark Browna676f082011-05-12 11:42:10 +0200316struct regmap *regmap_init_spi(struct spi_device *dev,
317 const struct regmap_config *config);
Philipp Zabel878ec672013-02-14 17:39:08 +0100318struct regmap *regmap_init_mmio_clk(struct device *dev, const char *clk_id,
319 void __iomem *regs,
320 const struct regmap_config *config);
Mark Browna676f082011-05-12 11:42:10 +0200321
Mark Brownc0eb4672012-01-30 19:56:52 +0000322struct regmap *devm_regmap_init(struct device *dev,
323 const struct regmap_bus *bus,
Stephen Warren0135bbc2012-04-04 15:48:30 -0600324 void *bus_context,
Mark Brownc0eb4672012-01-30 19:56:52 +0000325 const struct regmap_config *config);
326struct regmap *devm_regmap_init_i2c(struct i2c_client *i2c,
327 const struct regmap_config *config);
328struct regmap *devm_regmap_init_spi(struct spi_device *dev,
329 const struct regmap_config *config);
Philipp Zabel878ec672013-02-14 17:39:08 +0100330struct regmap *devm_regmap_init_mmio_clk(struct device *dev, const char *clk_id,
331 void __iomem *regs,
332 const struct regmap_config *config);
333
334/**
335 * regmap_init_mmio(): Initialise register map
336 *
337 * @dev: Device that will be interacted with
338 * @regs: Pointer to memory-mapped IO region
339 * @config: Configuration for register map
340 *
341 * The return value will be an ERR_PTR() on error or a valid pointer to
342 * a struct regmap.
343 */
344static inline struct regmap *regmap_init_mmio(struct device *dev,
345 void __iomem *regs,
346 const struct regmap_config *config)
347{
348 return regmap_init_mmio_clk(dev, NULL, regs, config);
349}
350
351/**
352 * devm_regmap_init_mmio(): Initialise managed register map
353 *
354 * @dev: Device that will be interacted with
355 * @regs: Pointer to memory-mapped IO region
356 * @config: Configuration for register map
357 *
358 * The return value will be an ERR_PTR() on error or a valid pointer
359 * to a struct regmap. The regmap will be automatically freed by the
360 * device management code.
361 */
362static inline struct regmap *devm_regmap_init_mmio(struct device *dev,
363 void __iomem *regs,
364 const struct regmap_config *config)
365{
366 return devm_regmap_init_mmio_clk(dev, NULL, regs, config);
367}
Mark Brownc0eb4672012-01-30 19:56:52 +0000368
Mark Brownb83a3132011-05-11 19:59:58 +0200369void regmap_exit(struct regmap *map);
Mark Brownbf315172011-12-03 17:06:20 +0000370int regmap_reinit_cache(struct regmap *map,
371 const struct regmap_config *config);
Mark Brown72b39f62012-05-08 17:44:40 +0100372struct regmap *dev_get_regmap(struct device *dev, const char *name);
Mark Brownb83a3132011-05-11 19:59:58 +0200373int regmap_write(struct regmap *map, unsigned int reg, unsigned int val);
374int regmap_raw_write(struct regmap *map, unsigned int reg,
375 const void *val, size_t val_len);
Laxman Dewangan8eaeb212012-02-12 19:49:43 +0530376int regmap_bulk_write(struct regmap *map, unsigned int reg, const void *val,
377 size_t val_count);
Mark Brown0d509f22013-01-27 22:07:38 +0800378int regmap_raw_write_async(struct regmap *map, unsigned int reg,
379 const void *val, size_t val_len);
Mark Brownb83a3132011-05-11 19:59:58 +0200380int regmap_read(struct regmap *map, unsigned int reg, unsigned int *val);
381int regmap_raw_read(struct regmap *map, unsigned int reg,
382 void *val, size_t val_len);
383int regmap_bulk_read(struct regmap *map, unsigned int reg, void *val,
384 size_t val_count);
385int regmap_update_bits(struct regmap *map, unsigned int reg,
386 unsigned int mask, unsigned int val);
Mark Brown018690d2011-11-29 20:10:36 +0000387int regmap_update_bits_check(struct regmap *map, unsigned int reg,
388 unsigned int mask, unsigned int val,
389 bool *change);
Mark Browna6539c32012-02-17 14:20:14 -0800390int regmap_get_val_bytes(struct regmap *map);
Mark Brown0d509f22013-01-27 22:07:38 +0800391int regmap_async_complete(struct regmap *map);
Mark Brown221ad7f2013-03-26 21:24:20 +0000392bool regmap_can_raw_write(struct regmap *map);
Mark Brownb83a3132011-05-11 19:59:58 +0200393
Mark Brown39a58432011-09-19 18:21:49 +0100394int regcache_sync(struct regmap *map);
Mark Brown4d4cfd12012-02-23 20:53:37 +0000395int regcache_sync_region(struct regmap *map, unsigned int min,
396 unsigned int max);
Mark Brown697e85b2013-05-08 13:55:22 +0100397int regcache_drop_region(struct regmap *map, unsigned int min,
398 unsigned int max);
Mark Brown92afb282011-09-19 18:22:14 +0100399void regcache_cache_only(struct regmap *map, bool enable);
Dimitris Papastamos6eb0f5e2011-09-29 14:36:27 +0100400void regcache_cache_bypass(struct regmap *map, bool enable);
Mark Brown8ae0d7e2011-10-26 10:34:22 +0200401void regcache_mark_dirty(struct regmap *map);
Mark Brown92afb282011-09-19 18:22:14 +0100402
Mark Brown22f0d902012-01-21 12:01:14 +0000403int regmap_register_patch(struct regmap *map, const struct reg_default *regs,
404 int num_regs);
405
Davide Ciminaghi76aad392012-11-20 15:20:30 +0100406static inline bool regmap_reg_in_range(unsigned int reg,
407 const struct regmap_range *range)
408{
409 return reg >= range->range_min && reg <= range->range_max;
410}
411
412bool regmap_reg_in_ranges(unsigned int reg,
413 const struct regmap_range *ranges,
414 unsigned int nranges);
415
Mark Brownf8beab22011-10-28 23:50:49 +0200416/**
417 * Description of an IRQ for the generic regmap irq_chip.
418 *
419 * @reg_offset: Offset of the status/mask register within the bank
420 * @mask: Mask used to flag/control the register.
421 */
422struct regmap_irq {
423 unsigned int reg_offset;
424 unsigned int mask;
425};
426
427/**
428 * Description of a generic regmap irq_chip. This is not intended to
429 * handle every possible interrupt controller, but it should handle a
430 * substantial proportion of those that are found in the wild.
431 *
432 * @name: Descriptive name for IRQ controller.
433 *
434 * @status_base: Base status register address.
435 * @mask_base: Base mask register address.
436 * @ack_base: Base ack address. If zero then the chip is clear on read.
Mark Browna43fd502012-06-05 14:34:03 +0100437 * @wake_base: Base address for wake enables. If zero unsupported.
Graeme Gregory022f926a2012-05-14 22:40:43 +0900438 * @irq_reg_stride: Stride to use for chips where registers are not contiguous.
Mark Brown0c00c502012-07-24 15:41:19 +0100439 * @runtime_pm: Hold a runtime PM lock on the device when accessing it.
Mark Brownf8beab22011-10-28 23:50:49 +0200440 *
441 * @num_regs: Number of registers in each control bank.
442 * @irqs: Descriptors for individual IRQs. Interrupt numbers are
443 * assigned based on the index in the array of the interrupt.
444 * @num_irqs: Number of descriptors.
445 */
446struct regmap_irq_chip {
447 const char *name;
448
449 unsigned int status_base;
450 unsigned int mask_base;
451 unsigned int ack_base;
Mark Browna43fd502012-06-05 14:34:03 +0100452 unsigned int wake_base;
Graeme Gregory022f926a2012-05-14 22:40:43 +0900453 unsigned int irq_reg_stride;
Xiaofan Tian36ac9142012-08-30 17:03:35 +0800454 unsigned int mask_invert;
Mark Brown94424902013-01-04 16:35:07 +0000455 unsigned int wake_invert;
Mark Brown0c00c502012-07-24 15:41:19 +0100456 bool runtime_pm;
Mark Brownf8beab22011-10-28 23:50:49 +0200457
458 int num_regs;
459
460 const struct regmap_irq *irqs;
461 int num_irqs;
462};
463
464struct regmap_irq_chip_data;
465
466int regmap_add_irq_chip(struct regmap *map, int irq, int irq_flags,
Mark Brownb026ddb2012-05-31 21:01:46 +0100467 int irq_base, const struct regmap_irq_chip *chip,
Mark Brownf8beab22011-10-28 23:50:49 +0200468 struct regmap_irq_chip_data **data);
469void regmap_del_irq_chip(int irq, struct regmap_irq_chip_data *data);
Mark Brown209a6002011-12-05 16:10:15 +0000470int regmap_irq_chip_get_base(struct regmap_irq_chip_data *data);
Mark Brown4af8be62012-05-13 10:59:56 +0100471int regmap_irq_get_virq(struct regmap_irq_chip_data *data, int irq);
Mark Brown90f790d2012-08-20 21:45:05 +0100472struct irq_domain *regmap_irq_get_domain(struct regmap_irq_chip_data *data);
Mark Brownb83a3132011-05-11 19:59:58 +0200473
Mark Brown9cde5fc2012-02-17 14:49:51 -0800474#else
475
476/*
477 * These stubs should only ever be called by generic code which has
478 * regmap based facilities, if they ever get called at runtime
479 * something is going wrong and something probably needs to select
480 * REGMAP.
481 */
482
483static inline int regmap_write(struct regmap *map, unsigned int reg,
484 unsigned int val)
485{
486 WARN_ONCE(1, "regmap API is disabled");
487 return -EINVAL;
488}
489
490static inline int regmap_raw_write(struct regmap *map, unsigned int reg,
491 const void *val, size_t val_len)
492{
493 WARN_ONCE(1, "regmap API is disabled");
494 return -EINVAL;
495}
496
Mark Brown0d509f22013-01-27 22:07:38 +0800497static inline int regmap_raw_write_async(struct regmap *map, unsigned int reg,
498 const void *val, size_t val_len)
499{
500 WARN_ONCE(1, "regmap API is disabled");
501 return -EINVAL;
502}
503
Mark Brown9cde5fc2012-02-17 14:49:51 -0800504static inline int regmap_bulk_write(struct regmap *map, unsigned int reg,
505 const void *val, size_t val_count)
506{
507 WARN_ONCE(1, "regmap API is disabled");
508 return -EINVAL;
509}
510
511static inline int regmap_read(struct regmap *map, unsigned int reg,
512 unsigned int *val)
513{
514 WARN_ONCE(1, "regmap API is disabled");
515 return -EINVAL;
516}
517
518static inline int regmap_raw_read(struct regmap *map, unsigned int reg,
519 void *val, size_t val_len)
520{
521 WARN_ONCE(1, "regmap API is disabled");
522 return -EINVAL;
523}
524
525static inline int regmap_bulk_read(struct regmap *map, unsigned int reg,
526 void *val, size_t val_count)
527{
528 WARN_ONCE(1, "regmap API is disabled");
529 return -EINVAL;
530}
531
532static inline int regmap_update_bits(struct regmap *map, unsigned int reg,
533 unsigned int mask, unsigned int val)
534{
535 WARN_ONCE(1, "regmap API is disabled");
536 return -EINVAL;
537}
538
539static inline int regmap_update_bits_check(struct regmap *map,
540 unsigned int reg,
541 unsigned int mask, unsigned int val,
542 bool *change)
543{
544 WARN_ONCE(1, "regmap API is disabled");
545 return -EINVAL;
546}
547
548static inline int regmap_get_val_bytes(struct regmap *map)
549{
550 WARN_ONCE(1, "regmap API is disabled");
551 return -EINVAL;
552}
553
554static inline int regcache_sync(struct regmap *map)
555{
556 WARN_ONCE(1, "regmap API is disabled");
557 return -EINVAL;
558}
559
Mark Browna313f9f2012-02-23 19:49:43 +0000560static inline int regcache_sync_region(struct regmap *map, unsigned int min,
561 unsigned int max)
562{
563 WARN_ONCE(1, "regmap API is disabled");
564 return -EINVAL;
565}
566
Mark Brown697e85b2013-05-08 13:55:22 +0100567static inline int regcache_drop_region(struct regmap *map, unsigned int min,
568 unsigned int max)
569{
570 WARN_ONCE(1, "regmap API is disabled");
571 return -EINVAL;
572}
573
Mark Brown9cde5fc2012-02-17 14:49:51 -0800574static inline void regcache_cache_only(struct regmap *map, bool enable)
575{
576 WARN_ONCE(1, "regmap API is disabled");
577}
578
579static inline void regcache_cache_bypass(struct regmap *map, bool enable)
580{
581 WARN_ONCE(1, "regmap API is disabled");
582}
583
584static inline void regcache_mark_dirty(struct regmap *map)
585{
586 WARN_ONCE(1, "regmap API is disabled");
587}
588
Mark Brown0d509f22013-01-27 22:07:38 +0800589static inline void regmap_async_complete(struct regmap *map)
590{
591 WARN_ONCE(1, "regmap API is disabled");
592}
593
Mark Brown9cde5fc2012-02-17 14:49:51 -0800594static inline int regmap_register_patch(struct regmap *map,
595 const struct reg_default *regs,
596 int num_regs)
597{
598 WARN_ONCE(1, "regmap API is disabled");
599 return -EINVAL;
600}
601
Mark Brown72b39f62012-05-08 17:44:40 +0100602static inline struct regmap *dev_get_regmap(struct device *dev,
603 const char *name)
604{
Mark Brown72b39f62012-05-08 17:44:40 +0100605 return NULL;
606}
607
Mark Brown9cde5fc2012-02-17 14:49:51 -0800608#endif
609
Mark Brownb83a3132011-05-11 19:59:58 +0200610#endif