blob: 7d3ae2be6869ea911db7cb57a308df43ab370b74 [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>
Mateusz Krawczuk49ccc142013-08-06 18:34:40 +020018#include <linux/err.h>
Kevin Hilman3f0fa9a2013-08-14 16:05:02 -070019#include <linux/bug.h>
Mark Brownb83a3132011-05-11 19:59:58 +020020
Paul Gortmakerde477252011-05-26 13:46:22 -040021struct module;
Paul Gortmaker313162d2012-01-30 11:46:54 -050022struct device;
Mark Brown9943fa32011-06-20 19:02:29 +010023struct i2c_client;
Mark Brown90f790d2012-08-20 21:45:05 +010024struct irq_domain;
Mark Browna676f082011-05-12 11:42:10 +020025struct spi_device;
Mark Brownb83d2ff2012-03-11 11:49:17 +000026struct regmap;
Krystian Garbaciak6863ca62012-06-15 11:23:56 +010027struct regmap_range_cfg;
Srinivas Kandagatla67252282013-06-11 13:18:15 +010028struct regmap_field;
Mark Brown9943fa32011-06-20 19:02:29 +010029
Dimitris Papastamos9fabe242011-09-19 14:34:00 +010030/* An enum of all the supported cache types */
31enum regcache_type {
32 REGCACHE_NONE,
Dimitris Papastamos28644c802011-09-19 14:34:02 +010033 REGCACHE_RBTREE,
Mark Brown2ac902c2012-12-19 14:51:55 +000034 REGCACHE_COMPRESSED,
35 REGCACHE_FLAT,
Dimitris Papastamos9fabe242011-09-19 14:34:00 +010036};
37
Mark Browndd898b22011-07-20 22:28:58 +010038/**
Mark Brownbd20eb52011-08-19 18:09:38 +090039 * Default value for a register. We use an array of structs rather
40 * than a simple array as many modern devices have very sparse
41 * register maps.
42 *
43 * @reg: Register address.
44 * @def: Register default value.
45 */
46struct reg_default {
47 unsigned int reg;
48 unsigned int def;
49};
50
Mark Brownb83d2ff2012-03-11 11:49:17 +000051#ifdef CONFIG_REGMAP
52
Stephen Warren141eba22012-05-24 10:47:26 -060053enum regmap_endian {
54 /* Unspecified -> 0 -> Backwards compatible default */
55 REGMAP_ENDIAN_DEFAULT = 0,
56 REGMAP_ENDIAN_BIG,
57 REGMAP_ENDIAN_LITTLE,
58 REGMAP_ENDIAN_NATIVE,
59};
60
Davide Ciminaghi76aad392012-11-20 15:20:30 +010061/**
62 * A register range, used for access related checks
63 * (readable/writeable/volatile/precious checks)
64 *
65 * @range_min: address of first register
66 * @range_max: address of last register
67 */
68struct regmap_range {
69 unsigned int range_min;
70 unsigned int range_max;
71};
72
Laxman Dewangan6112fe62013-09-20 18:00:10 +053073#define regmap_reg_range(low, high) { .range_min = low, .range_max = high, }
74
Davide Ciminaghi76aad392012-11-20 15:20:30 +010075/*
76 * A table of ranges including some yes ranges and some no ranges.
77 * If a register belongs to a no_range, the corresponding check function
78 * will return false. If a register belongs to a yes range, the corresponding
79 * check function will return true. "no_ranges" are searched first.
80 *
81 * @yes_ranges : pointer to an array of regmap ranges used as "yes ranges"
82 * @n_yes_ranges: size of the above array
83 * @no_ranges: pointer to an array of regmap ranges used as "no ranges"
84 * @n_no_ranges: size of the above array
85 */
86struct regmap_access_table {
87 const struct regmap_range *yes_ranges;
88 unsigned int n_yes_ranges;
89 const struct regmap_range *no_ranges;
90 unsigned int n_no_ranges;
91};
92
Davide Ciminaghi0d4529c2012-10-16 15:56:59 +020093typedef void (*regmap_lock)(void *);
94typedef void (*regmap_unlock)(void *);
95
Mark Brownbd20eb52011-08-19 18:09:38 +090096/**
Mark Browndd898b22011-07-20 22:28:58 +010097 * Configuration for the register map of a device.
98 *
Stephen Warrend3c242e2012-04-04 15:48:29 -060099 * @name: Optional name of the regmap. Useful when a device has multiple
100 * register regions.
101 *
Mark Browndd898b22011-07-20 22:28:58 +0100102 * @reg_bits: Number of bits in a register address, mandatory.
Stephen Warrenf01ee602012-04-09 13:40:24 -0600103 * @reg_stride: The register address stride. Valid register addresses are a
104 * multiple of this value. If set to 0, a value of 1 will be
105 * used.
Mark Brown82159ba2012-01-18 10:52:25 +0000106 * @pad_bits: Number of bits of padding between register and value.
Mark Browndd898b22011-07-20 22:28:58 +0100107 * @val_bits: Number of bits in a register value, mandatory.
Mark Brown2e2ae662011-07-20 22:33:39 +0100108 *
Mark Brown3566cc92011-08-09 10:23:22 +0900109 * @writeable_reg: Optional callback returning true if the register
Davide Ciminaghi76aad392012-11-20 15:20:30 +0100110 * can be written to. If this field is NULL but wr_table
111 * (see below) is not, the check is performed on such table
112 * (a register is writeable if it belongs to one of the ranges
113 * specified by wr_table).
Mark Brown3566cc92011-08-09 10:23:22 +0900114 * @readable_reg: Optional callback returning true if the register
Davide Ciminaghi76aad392012-11-20 15:20:30 +0100115 * can be read from. If this field is NULL but rd_table
116 * (see below) is not, the check is performed on such table
117 * (a register is readable if it belongs to one of the ranges
118 * specified by rd_table).
Mark Brown3566cc92011-08-09 10:23:22 +0900119 * @volatile_reg: Optional callback returning true if the register
Davide Ciminaghi76aad392012-11-20 15:20:30 +0100120 * value can't be cached. If this field is NULL but
121 * volatile_table (see below) is not, the check is performed on
122 * such table (a register is volatile if it belongs to one of
123 * the ranges specified by volatile_table).
Mark Brown3566cc92011-08-09 10:23:22 +0900124 * @precious_reg: Optional callback returning true if the rgister
Davide Ciminaghi76aad392012-11-20 15:20:30 +0100125 * should not be read outside of a call from the driver
126 * (eg, a clear on read interrupt status register). If this
127 * field is NULL but precious_table (see below) is not, the
128 * check is performed on such table (a register is precious if
129 * it belongs to one of the ranges specified by precious_table).
130 * @lock: Optional lock callback (overrides regmap's default lock
131 * function, based on spinlock or mutex).
132 * @unlock: As above for unlocking.
133 * @lock_arg: this field is passed as the only argument of lock/unlock
134 * functions (ignored in case regular lock/unlock functions
135 * are not overridden).
Andrey Smirnovd2a58842013-01-27 10:49:05 -0800136 * @reg_read: Optional callback that if filled will be used to perform
137 * all the reads from the registers. Should only be provided for
138 * devices whos read operation cannot be represented as a simple read
139 * operation on a bus such as SPI, I2C, etc. Most of the devices do
140 * not need this.
141 * @reg_write: Same as above for writing.
142 * @fast_io: Register IO is fast. Use a spinlock instead of a mutex
143 * to perform locking. This field is ignored if custom lock/unlock
144 * functions are used (see fields lock/unlock of struct regmap_config).
145 * This field is a duplicate of a similar file in
146 * 'struct regmap_bus' and serves exact same purpose.
147 * Use it only for "no-bus" cases.
Mark Brownbd20eb52011-08-19 18:09:38 +0900148 * @max_register: Optional, specifies the maximum valid register index.
Davide Ciminaghi76aad392012-11-20 15:20:30 +0100149 * @wr_table: Optional, points to a struct regmap_access_table specifying
150 * valid ranges for write access.
151 * @rd_table: As above, for read access.
152 * @volatile_table: As above, for volatile registers.
153 * @precious_table: As above, for precious registers.
Mark Brownbd20eb52011-08-19 18:09:38 +0900154 * @reg_defaults: Power on reset values for registers (for use with
155 * register cache support).
156 * @num_reg_defaults: Number of elements in reg_defaults.
Lars-Peter Clausen6f306442011-09-05 20:46:32 +0200157 *
158 * @read_flag_mask: Mask to be set in the top byte of the register when doing
159 * a read.
160 * @write_flag_mask: Mask to be set in the top byte of the register when doing
161 * a write. If both read_flag_mask and write_flag_mask are
162 * empty the regmap_bus default masks are used.
Ashish Jangam2e33caf2012-04-30 23:23:40 +0100163 * @use_single_rw: If set, converts the bulk read and write operations into
164 * a series of single read and write operations. This is useful
165 * for device that does not support bulk read and write.
Dimitris Papastamos9fabe242011-09-19 14:34:00 +0100166 *
167 * @cache_type: The actual cache type.
168 * @reg_defaults_raw: Power on reset values for registers (for use with
169 * register cache support).
170 * @num_reg_defaults_raw: Number of elements in reg_defaults_raw.
Stephen Warren141eba22012-05-24 10:47:26 -0600171 * @reg_format_endian: Endianness for formatted register addresses. If this is
172 * DEFAULT, the @reg_format_endian_default value from the
173 * regmap bus is used.
174 * @val_format_endian: Endianness for formatted register values. If this is
175 * DEFAULT, the @reg_format_endian_default value from the
176 * regmap bus is used.
Krystian Garbaciak6863ca62012-06-15 11:23:56 +0100177 *
178 * @ranges: Array of configuration entries for virtual address ranges.
179 * @num_ranges: Number of range configuration entries.
Mark Browndd898b22011-07-20 22:28:58 +0100180 */
Mark Brownb83a3132011-05-11 19:59:58 +0200181struct regmap_config {
Stephen Warrend3c242e2012-04-04 15:48:29 -0600182 const char *name;
183
Mark Brownb83a3132011-05-11 19:59:58 +0200184 int reg_bits;
Stephen Warrenf01ee602012-04-09 13:40:24 -0600185 int reg_stride;
Mark Brown82159ba2012-01-18 10:52:25 +0000186 int pad_bits;
Mark Brownb83a3132011-05-11 19:59:58 +0200187 int val_bits;
Mark Brown2e2ae662011-07-20 22:33:39 +0100188
Mark Brown2e2ae662011-07-20 22:33:39 +0100189 bool (*writeable_reg)(struct device *dev, unsigned int reg);
190 bool (*readable_reg)(struct device *dev, unsigned int reg);
191 bool (*volatile_reg)(struct device *dev, unsigned int reg);
Mark Brown18694882011-08-08 15:40:22 +0900192 bool (*precious_reg)(struct device *dev, unsigned int reg);
Davide Ciminaghi0d4529c2012-10-16 15:56:59 +0200193 regmap_lock lock;
194 regmap_unlock unlock;
195 void *lock_arg;
Mark Brownbd20eb52011-08-19 18:09:38 +0900196
Andrey Smirnovd2a58842013-01-27 10:49:05 -0800197 int (*reg_read)(void *context, unsigned int reg, unsigned int *val);
198 int (*reg_write)(void *context, unsigned int reg, unsigned int val);
199
200 bool fast_io;
201
Mark Brownbd20eb52011-08-19 18:09:38 +0900202 unsigned int max_register;
Davide Ciminaghi76aad392012-11-20 15:20:30 +0100203 const struct regmap_access_table *wr_table;
204 const struct regmap_access_table *rd_table;
205 const struct regmap_access_table *volatile_table;
206 const struct regmap_access_table *precious_table;
Lars-Peter Clausen720e4612011-11-16 16:28:17 +0100207 const struct reg_default *reg_defaults;
Dimitris Papastamos9fabe242011-09-19 14:34:00 +0100208 unsigned int num_reg_defaults;
209 enum regcache_type cache_type;
210 const void *reg_defaults_raw;
211 unsigned int num_reg_defaults_raw;
Lars-Peter Clausen6f306442011-09-05 20:46:32 +0200212
213 u8 read_flag_mask;
214 u8 write_flag_mask;
Ashish Jangam2e33caf2012-04-30 23:23:40 +0100215
216 bool use_single_rw;
Stephen Warren141eba22012-05-24 10:47:26 -0600217
218 enum regmap_endian reg_format_endian;
219 enum regmap_endian val_format_endian;
Mark Brown38e23192012-07-22 19:26:07 +0100220
Krystian Garbaciak6863ca62012-06-15 11:23:56 +0100221 const struct regmap_range_cfg *ranges;
Mark Browne3549cd2012-10-02 20:17:15 +0100222 unsigned int num_ranges;
Krystian Garbaciak6863ca62012-06-15 11:23:56 +0100223};
224
225/**
226 * Configuration for indirectly accessed or paged registers.
227 * Registers, mapped to this virtual range, are accessed in two steps:
228 * 1. page selector register update;
229 * 2. access through data window registers.
230 *
Mark Brownd058bb42012-10-03 12:40:47 +0100231 * @name: Descriptive name for diagnostics
232 *
Krystian Garbaciak6863ca62012-06-15 11:23:56 +0100233 * @range_min: Address of the lowest register address in virtual range.
234 * @range_max: Address of the highest register in virtual range.
235 *
236 * @page_sel_reg: Register with selector field.
237 * @page_sel_mask: Bit shift for selector value.
238 * @page_sel_shift: Bit mask for selector value.
239 *
240 * @window_start: Address of first (lowest) register in data window.
241 * @window_len: Number of registers in data window.
242 */
243struct regmap_range_cfg {
Mark Brownd058bb42012-10-03 12:40:47 +0100244 const char *name;
245
Krystian Garbaciak6863ca62012-06-15 11:23:56 +0100246 /* Registers of virtual address range */
247 unsigned int range_min;
248 unsigned int range_max;
249
250 /* Page selector for indirect addressing */
251 unsigned int selector_reg;
252 unsigned int selector_mask;
253 int selector_shift;
254
255 /* Data window (per each page) */
256 unsigned int window_start;
257 unsigned int window_len;
Mark Brownb83a3132011-05-11 19:59:58 +0200258};
259
Mark Brown0d509f22013-01-27 22:07:38 +0800260struct regmap_async;
261
Stephen Warren0135bbc2012-04-04 15:48:30 -0600262typedef int (*regmap_hw_write)(void *context, const void *data,
Mark Brownb83a3132011-05-11 19:59:58 +0200263 size_t count);
Stephen Warren0135bbc2012-04-04 15:48:30 -0600264typedef int (*regmap_hw_gather_write)(void *context,
Mark Brownb83a3132011-05-11 19:59:58 +0200265 const void *reg, size_t reg_len,
266 const void *val, size_t val_len);
Mark Brown0d509f22013-01-27 22:07:38 +0800267typedef int (*regmap_hw_async_write)(void *context,
268 const void *reg, size_t reg_len,
269 const void *val, size_t val_len,
270 struct regmap_async *async);
Stephen Warren0135bbc2012-04-04 15:48:30 -0600271typedef int (*regmap_hw_read)(void *context,
Mark Brownb83a3132011-05-11 19:59:58 +0200272 const void *reg_buf, size_t reg_size,
273 void *val_buf, size_t val_size);
Mark Brown0d509f22013-01-27 22:07:38 +0800274typedef struct regmap_async *(*regmap_hw_async_alloc)(void);
Stephen Warren0135bbc2012-04-04 15:48:30 -0600275typedef void (*regmap_hw_free_context)(void *context);
Mark Brownb83a3132011-05-11 19:59:58 +0200276
277/**
278 * Description of a hardware bus for the register map infrastructure.
279 *
Stephen Warrenbacdbe02012-04-04 15:48:28 -0600280 * @fast_io: Register IO is fast. Use a spinlock instead of a mutex
Davide Ciminaghi0d4529c2012-10-16 15:56:59 +0200281 * to perform locking. This field is ignored if custom lock/unlock
282 * functions are used (see fields lock/unlock of
283 * struct regmap_config).
Mark Brownb83a3132011-05-11 19:59:58 +0200284 * @write: Write operation.
285 * @gather_write: Write operation with split register/value, return -ENOTSUPP
286 * if not implemented on a given device.
Mark Brown0d509f22013-01-27 22:07:38 +0800287 * @async_write: Write operation which completes asynchronously, optional and
288 * must serialise with respect to non-async I/O.
Mark Brownb83a3132011-05-11 19:59:58 +0200289 * @read: Read operation. Data is returned in the buffer used to transmit
290 * data.
Mark Brown0d509f22013-01-27 22:07:38 +0800291 * @async_alloc: Allocate a regmap_async() structure.
Mark Brownb83a3132011-05-11 19:59:58 +0200292 * @read_flag_mask: Mask to be set in the top byte of the register when doing
293 * a read.
Stephen Warren141eba22012-05-24 10:47:26 -0600294 * @reg_format_endian_default: Default endianness for formatted register
295 * addresses. Used when the regmap_config specifies DEFAULT. If this is
296 * DEFAULT, BIG is assumed.
297 * @val_format_endian_default: Default endianness for formatted register
298 * values. Used when the regmap_config specifies DEFAULT. If this is
299 * DEFAULT, BIG is assumed.
Mark Brown0d509f22013-01-27 22:07:38 +0800300 * @async_size: Size of struct used for async work.
Mark Brownb83a3132011-05-11 19:59:58 +0200301 */
302struct regmap_bus {
Stephen Warrenbacdbe02012-04-04 15:48:28 -0600303 bool fast_io;
Mark Brownb83a3132011-05-11 19:59:58 +0200304 regmap_hw_write write;
305 regmap_hw_gather_write gather_write;
Mark Brown0d509f22013-01-27 22:07:38 +0800306 regmap_hw_async_write async_write;
Mark Brownb83a3132011-05-11 19:59:58 +0200307 regmap_hw_read read;
Stephen Warren0135bbc2012-04-04 15:48:30 -0600308 regmap_hw_free_context free_context;
Mark Brown0d509f22013-01-27 22:07:38 +0800309 regmap_hw_async_alloc async_alloc;
Mark Brownb83a3132011-05-11 19:59:58 +0200310 u8 read_flag_mask;
Stephen Warren141eba22012-05-24 10:47:26 -0600311 enum regmap_endian reg_format_endian_default;
312 enum regmap_endian val_format_endian_default;
Mark Brownb83a3132011-05-11 19:59:58 +0200313};
314
315struct regmap *regmap_init(struct device *dev,
316 const struct regmap_bus *bus,
Stephen Warren0135bbc2012-04-04 15:48:30 -0600317 void *bus_context,
Mark Brownb83a3132011-05-11 19:59:58 +0200318 const struct regmap_config *config);
Mark Brown9943fa32011-06-20 19:02:29 +0100319struct regmap *regmap_init_i2c(struct i2c_client *i2c,
320 const struct regmap_config *config);
Mark Browna676f082011-05-12 11:42:10 +0200321struct regmap *regmap_init_spi(struct spi_device *dev,
322 const struct regmap_config *config);
Philipp Zabel878ec672013-02-14 17:39:08 +0100323struct regmap *regmap_init_mmio_clk(struct device *dev, const char *clk_id,
324 void __iomem *regs,
325 const struct regmap_config *config);
Mark Browna676f082011-05-12 11:42:10 +0200326
Mark Brownc0eb4672012-01-30 19:56:52 +0000327struct regmap *devm_regmap_init(struct device *dev,
328 const struct regmap_bus *bus,
Stephen Warren0135bbc2012-04-04 15:48:30 -0600329 void *bus_context,
Mark Brownc0eb4672012-01-30 19:56:52 +0000330 const struct regmap_config *config);
331struct regmap *devm_regmap_init_i2c(struct i2c_client *i2c,
332 const struct regmap_config *config);
333struct regmap *devm_regmap_init_spi(struct spi_device *dev,
334 const struct regmap_config *config);
Philipp Zabel878ec672013-02-14 17:39:08 +0100335struct regmap *devm_regmap_init_mmio_clk(struct device *dev, const char *clk_id,
336 void __iomem *regs,
337 const struct regmap_config *config);
338
339/**
340 * regmap_init_mmio(): Initialise register map
341 *
342 * @dev: Device that will be interacted with
343 * @regs: Pointer to memory-mapped IO region
344 * @config: Configuration for register map
345 *
346 * The return value will be an ERR_PTR() on error or a valid pointer to
347 * a struct regmap.
348 */
349static inline struct regmap *regmap_init_mmio(struct device *dev,
350 void __iomem *regs,
351 const struct regmap_config *config)
352{
353 return regmap_init_mmio_clk(dev, NULL, regs, config);
354}
355
356/**
357 * devm_regmap_init_mmio(): Initialise managed register map
358 *
359 * @dev: Device that will be interacted with
360 * @regs: Pointer to memory-mapped IO region
361 * @config: Configuration for register map
362 *
363 * The return value will be an ERR_PTR() on error or a valid pointer
364 * to a struct regmap. The regmap will be automatically freed by the
365 * device management code.
366 */
367static inline struct regmap *devm_regmap_init_mmio(struct device *dev,
368 void __iomem *regs,
369 const struct regmap_config *config)
370{
371 return devm_regmap_init_mmio_clk(dev, NULL, regs, config);
372}
Mark Brownc0eb4672012-01-30 19:56:52 +0000373
Mark Brownb83a3132011-05-11 19:59:58 +0200374void regmap_exit(struct regmap *map);
Mark Brownbf315172011-12-03 17:06:20 +0000375int regmap_reinit_cache(struct regmap *map,
376 const struct regmap_config *config);
Mark Brown72b39f62012-05-08 17:44:40 +0100377struct regmap *dev_get_regmap(struct device *dev, const char *name);
Mark Brownb83a3132011-05-11 19:59:58 +0200378int regmap_write(struct regmap *map, unsigned int reg, unsigned int val);
379int regmap_raw_write(struct regmap *map, unsigned int reg,
380 const void *val, size_t val_len);
Laxman Dewangan8eaeb212012-02-12 19:49:43 +0530381int regmap_bulk_write(struct regmap *map, unsigned int reg, const void *val,
382 size_t val_count);
Mark Brown0d509f22013-01-27 22:07:38 +0800383int regmap_raw_write_async(struct regmap *map, unsigned int reg,
384 const void *val, size_t val_len);
Mark Brownb83a3132011-05-11 19:59:58 +0200385int regmap_read(struct regmap *map, unsigned int reg, unsigned int *val);
386int regmap_raw_read(struct regmap *map, unsigned int reg,
387 void *val, size_t val_len);
388int regmap_bulk_read(struct regmap *map, unsigned int reg, void *val,
389 size_t val_count);
390int regmap_update_bits(struct regmap *map, unsigned int reg,
391 unsigned int mask, unsigned int val);
Mark Brown018690d2011-11-29 20:10:36 +0000392int regmap_update_bits_check(struct regmap *map, unsigned int reg,
393 unsigned int mask, unsigned int val,
394 bool *change);
Mark Browna6539c32012-02-17 14:20:14 -0800395int regmap_get_val_bytes(struct regmap *map);
Mark Brown0d509f22013-01-27 22:07:38 +0800396int regmap_async_complete(struct regmap *map);
Mark Brown221ad7f2013-03-26 21:24:20 +0000397bool regmap_can_raw_write(struct regmap *map);
Mark Brownb83a3132011-05-11 19:59:58 +0200398
Mark Brown39a58432011-09-19 18:21:49 +0100399int regcache_sync(struct regmap *map);
Mark Brown4d4cfd12012-02-23 20:53:37 +0000400int regcache_sync_region(struct regmap *map, unsigned int min,
401 unsigned int max);
Mark Brown697e85b2013-05-08 13:55:22 +0100402int regcache_drop_region(struct regmap *map, unsigned int min,
403 unsigned int max);
Mark Brown92afb282011-09-19 18:22:14 +0100404void regcache_cache_only(struct regmap *map, bool enable);
Dimitris Papastamos6eb0f5e2011-09-29 14:36:27 +0100405void regcache_cache_bypass(struct regmap *map, bool enable);
Mark Brown8ae0d7e2011-10-26 10:34:22 +0200406void regcache_mark_dirty(struct regmap *map);
Mark Brown92afb282011-09-19 18:22:14 +0100407
Mark Brown154881e2013-05-08 13:55:23 +0100408bool regmap_check_range_table(struct regmap *map, unsigned int reg,
409 const struct regmap_access_table *table);
410
Mark Brown22f0d902012-01-21 12:01:14 +0000411int regmap_register_patch(struct regmap *map, const struct reg_default *regs,
412 int num_regs);
413
Davide Ciminaghi76aad392012-11-20 15:20:30 +0100414static inline bool regmap_reg_in_range(unsigned int reg,
415 const struct regmap_range *range)
416{
417 return reg >= range->range_min && reg <= range->range_max;
418}
419
420bool regmap_reg_in_ranges(unsigned int reg,
421 const struct regmap_range *ranges,
422 unsigned int nranges);
423
Mark Brownf8beab22011-10-28 23:50:49 +0200424/**
Srinivas Kandagatla67252282013-06-11 13:18:15 +0100425 * Description of an register field
426 *
427 * @reg: Offset of the register within the regmap bank
428 * @lsb: lsb of the register field.
429 * @reg: msb of the register field.
430 */
431struct reg_field {
432 unsigned int reg;
433 unsigned int lsb;
434 unsigned int msb;
435};
436
437#define REG_FIELD(_reg, _lsb, _msb) { \
438 .reg = _reg, \
439 .lsb = _lsb, \
440 .msb = _msb, \
441 }
442
443struct regmap_field *regmap_field_alloc(struct regmap *regmap,
444 struct reg_field reg_field);
445void regmap_field_free(struct regmap_field *field);
446
447struct regmap_field *devm_regmap_field_alloc(struct device *dev,
448 struct regmap *regmap, struct reg_field reg_field);
449void devm_regmap_field_free(struct device *dev, struct regmap_field *field);
450
451int regmap_field_read(struct regmap_field *field, unsigned int *val);
452int regmap_field_write(struct regmap_field *field, unsigned int val);
453
454/**
Mark Brownf8beab22011-10-28 23:50:49 +0200455 * Description of an IRQ for the generic regmap irq_chip.
456 *
457 * @reg_offset: Offset of the status/mask register within the bank
458 * @mask: Mask used to flag/control the register.
459 */
460struct regmap_irq {
461 unsigned int reg_offset;
462 unsigned int mask;
463};
464
465/**
466 * Description of a generic regmap irq_chip. This is not intended to
467 * handle every possible interrupt controller, but it should handle a
468 * substantial proportion of those that are found in the wild.
469 *
470 * @name: Descriptive name for IRQ controller.
471 *
472 * @status_base: Base status register address.
473 * @mask_base: Base mask register address.
474 * @ack_base: Base ack address. If zero then the chip is clear on read.
Mark Browna43fd502012-06-05 14:34:03 +0100475 * @wake_base: Base address for wake enables. If zero unsupported.
Graeme Gregory022f926a2012-05-14 22:40:43 +0900476 * @irq_reg_stride: Stride to use for chips where registers are not contiguous.
Philipp Zabel2753e6f2013-07-22 17:15:52 +0200477 * @init_ack_masked: Ack all masked interrupts once during initalization.
Philipp Zabel68622bd2013-07-24 10:26:48 +0200478 * @mask_invert: Inverted mask register: cleared bits are masked out.
479 * @wake_invert: Inverted wake register: cleared bits are wake enabled.
Mark Brown0c00c502012-07-24 15:41:19 +0100480 * @runtime_pm: Hold a runtime PM lock on the device when accessing it.
Mark Brownf8beab22011-10-28 23:50:49 +0200481 *
482 * @num_regs: Number of registers in each control bank.
483 * @irqs: Descriptors for individual IRQs. Interrupt numbers are
484 * assigned based on the index in the array of the interrupt.
485 * @num_irqs: Number of descriptors.
486 */
487struct regmap_irq_chip {
488 const char *name;
489
490 unsigned int status_base;
491 unsigned int mask_base;
492 unsigned int ack_base;
Mark Browna43fd502012-06-05 14:34:03 +0100493 unsigned int wake_base;
Graeme Gregory022f926a2012-05-14 22:40:43 +0900494 unsigned int irq_reg_stride;
Philipp Zabelf484f7a2013-07-24 10:26:42 +0200495 bool init_ack_masked:1;
496 bool mask_invert:1;
497 bool wake_invert:1;
498 bool runtime_pm:1;
Mark Brownf8beab22011-10-28 23:50:49 +0200499
500 int num_regs;
501
502 const struct regmap_irq *irqs;
503 int num_irqs;
504};
505
506struct regmap_irq_chip_data;
507
508int regmap_add_irq_chip(struct regmap *map, int irq, int irq_flags,
Mark Brownb026ddb2012-05-31 21:01:46 +0100509 int irq_base, const struct regmap_irq_chip *chip,
Mark Brownf8beab22011-10-28 23:50:49 +0200510 struct regmap_irq_chip_data **data);
511void regmap_del_irq_chip(int irq, struct regmap_irq_chip_data *data);
Mark Brown209a6002011-12-05 16:10:15 +0000512int regmap_irq_chip_get_base(struct regmap_irq_chip_data *data);
Mark Brown4af8be62012-05-13 10:59:56 +0100513int regmap_irq_get_virq(struct regmap_irq_chip_data *data, int irq);
Mark Brown90f790d2012-08-20 21:45:05 +0100514struct irq_domain *regmap_irq_get_domain(struct regmap_irq_chip_data *data);
Mark Brownb83a3132011-05-11 19:59:58 +0200515
Mark Brown9cde5fc2012-02-17 14:49:51 -0800516#else
517
518/*
519 * These stubs should only ever be called by generic code which has
520 * regmap based facilities, if they ever get called at runtime
521 * something is going wrong and something probably needs to select
522 * REGMAP.
523 */
524
525static inline int regmap_write(struct regmap *map, unsigned int reg,
526 unsigned int val)
527{
528 WARN_ONCE(1, "regmap API is disabled");
529 return -EINVAL;
530}
531
532static inline int regmap_raw_write(struct regmap *map, unsigned int reg,
533 const void *val, size_t val_len)
534{
535 WARN_ONCE(1, "regmap API is disabled");
536 return -EINVAL;
537}
538
Mark Brown0d509f22013-01-27 22:07:38 +0800539static inline int regmap_raw_write_async(struct regmap *map, unsigned int reg,
540 const void *val, size_t val_len)
541{
542 WARN_ONCE(1, "regmap API is disabled");
543 return -EINVAL;
544}
545
Mark Brown9cde5fc2012-02-17 14:49:51 -0800546static inline int regmap_bulk_write(struct regmap *map, unsigned int reg,
547 const void *val, size_t val_count)
548{
549 WARN_ONCE(1, "regmap API is disabled");
550 return -EINVAL;
551}
552
553static inline int regmap_read(struct regmap *map, unsigned int reg,
554 unsigned int *val)
555{
556 WARN_ONCE(1, "regmap API is disabled");
557 return -EINVAL;
558}
559
560static inline int regmap_raw_read(struct regmap *map, unsigned int reg,
561 void *val, size_t val_len)
562{
563 WARN_ONCE(1, "regmap API is disabled");
564 return -EINVAL;
565}
566
567static inline int regmap_bulk_read(struct regmap *map, unsigned int reg,
568 void *val, size_t val_count)
569{
570 WARN_ONCE(1, "regmap API is disabled");
571 return -EINVAL;
572}
573
574static inline int regmap_update_bits(struct regmap *map, unsigned int reg,
575 unsigned int mask, unsigned int val)
576{
577 WARN_ONCE(1, "regmap API is disabled");
578 return -EINVAL;
579}
580
581static inline int regmap_update_bits_check(struct regmap *map,
582 unsigned int reg,
583 unsigned int mask, unsigned int val,
584 bool *change)
585{
586 WARN_ONCE(1, "regmap API is disabled");
587 return -EINVAL;
588}
589
590static inline int regmap_get_val_bytes(struct regmap *map)
591{
592 WARN_ONCE(1, "regmap API is disabled");
593 return -EINVAL;
594}
595
596static inline int regcache_sync(struct regmap *map)
597{
598 WARN_ONCE(1, "regmap API is disabled");
599 return -EINVAL;
600}
601
Mark Browna313f9f2012-02-23 19:49:43 +0000602static inline int regcache_sync_region(struct regmap *map, unsigned int min,
603 unsigned int max)
604{
605 WARN_ONCE(1, "regmap API is disabled");
606 return -EINVAL;
607}
608
Mark Brown697e85b2013-05-08 13:55:22 +0100609static inline int regcache_drop_region(struct regmap *map, unsigned int min,
610 unsigned int max)
611{
612 WARN_ONCE(1, "regmap API is disabled");
613 return -EINVAL;
614}
615
Mark Brown9cde5fc2012-02-17 14:49:51 -0800616static inline void regcache_cache_only(struct regmap *map, bool enable)
617{
618 WARN_ONCE(1, "regmap API is disabled");
619}
620
621static inline void regcache_cache_bypass(struct regmap *map, bool enable)
622{
623 WARN_ONCE(1, "regmap API is disabled");
624}
625
626static inline void regcache_mark_dirty(struct regmap *map)
627{
628 WARN_ONCE(1, "regmap API is disabled");
629}
630
Mark Brown0d509f22013-01-27 22:07:38 +0800631static inline void regmap_async_complete(struct regmap *map)
632{
633 WARN_ONCE(1, "regmap API is disabled");
634}
635
Mark Brown9cde5fc2012-02-17 14:49:51 -0800636static inline int regmap_register_patch(struct regmap *map,
637 const struct reg_default *regs,
638 int num_regs)
639{
640 WARN_ONCE(1, "regmap API is disabled");
641 return -EINVAL;
642}
643
Mark Brown72b39f62012-05-08 17:44:40 +0100644static inline struct regmap *dev_get_regmap(struct device *dev,
645 const char *name)
646{
Mark Brown72b39f62012-05-08 17:44:40 +0100647 return NULL;
648}
649
Mark Brown9cde5fc2012-02-17 14:49:51 -0800650#endif
651
Mark Brownb83a3132011-05-11 19:59:58 +0200652#endif