blob: 5d7027286032d2a369a1ecea4af2828cfded23d7 [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>
Nicolas Boichat3cfe7a72015-07-08 14:30:18 +080020#include <linux/lockdep.h>
Mark Brownb83a3132011-05-11 19:59:58 +020021
Paul Gortmakerde477252011-05-26 13:46:22 -040022struct module;
Paul Gortmaker313162d2012-01-30 11:46:54 -050023struct device;
Mark Brown9943fa32011-06-20 19:02:29 +010024struct i2c_client;
Mark Brown90f790d2012-08-20 21:45:05 +010025struct irq_domain;
Mark Browna676f082011-05-12 11:42:10 +020026struct spi_device;
Josh Cartwrighta01779f2013-10-28 13:12:35 -050027struct spmi_device;
Mark Brownb83d2ff2012-03-11 11:49:17 +000028struct regmap;
Krystian Garbaciak6863ca62012-06-15 11:23:56 +010029struct regmap_range_cfg;
Srinivas Kandagatla67252282013-06-11 13:18:15 +010030struct regmap_field;
Mark Brown22853222014-11-18 19:45:51 +010031struct snd_ac97;
Mark Brown9943fa32011-06-20 19:02:29 +010032
Dimitris Papastamos9fabe242011-09-19 14:34:00 +010033/* An enum of all the supported cache types */
34enum regcache_type {
35 REGCACHE_NONE,
Dimitris Papastamos28644c802011-09-19 14:34:02 +010036 REGCACHE_RBTREE,
Mark Brown2ac902c2012-12-19 14:51:55 +000037 REGCACHE_COMPRESSED,
38 REGCACHE_FLAT,
Dimitris Papastamos9fabe242011-09-19 14:34:00 +010039};
40
Mark Browndd898b22011-07-20 22:28:58 +010041/**
Mark Brownbd20eb52011-08-19 18:09:38 +090042 * Default value for a register. We use an array of structs rather
43 * than a simple array as many modern devices have very sparse
44 * register maps.
45 *
46 * @reg: Register address.
47 * @def: Register default value.
48 */
49struct reg_default {
50 unsigned int reg;
51 unsigned int def;
52};
53
Mark Brownb83d2ff2012-03-11 11:49:17 +000054#ifdef CONFIG_REGMAP
55
Stephen Warren141eba22012-05-24 10:47:26 -060056enum regmap_endian {
57 /* Unspecified -> 0 -> Backwards compatible default */
58 REGMAP_ENDIAN_DEFAULT = 0,
59 REGMAP_ENDIAN_BIG,
60 REGMAP_ENDIAN_LITTLE,
61 REGMAP_ENDIAN_NATIVE,
62};
63
Davide Ciminaghi76aad392012-11-20 15:20:30 +010064/**
65 * A register range, used for access related checks
66 * (readable/writeable/volatile/precious checks)
67 *
68 * @range_min: address of first register
69 * @range_max: address of last register
70 */
71struct regmap_range {
72 unsigned int range_min;
73 unsigned int range_max;
74};
75
Laxman Dewangan6112fe62013-09-20 18:00:10 +053076#define regmap_reg_range(low, high) { .range_min = low, .range_max = high, }
77
Davide Ciminaghi76aad392012-11-20 15:20:30 +010078/*
79 * A table of ranges including some yes ranges and some no ranges.
80 * If a register belongs to a no_range, the corresponding check function
81 * will return false. If a register belongs to a yes range, the corresponding
82 * check function will return true. "no_ranges" are searched first.
83 *
84 * @yes_ranges : pointer to an array of regmap ranges used as "yes ranges"
85 * @n_yes_ranges: size of the above array
86 * @no_ranges: pointer to an array of regmap ranges used as "no ranges"
87 * @n_no_ranges: size of the above array
88 */
89struct regmap_access_table {
90 const struct regmap_range *yes_ranges;
91 unsigned int n_yes_ranges;
92 const struct regmap_range *no_ranges;
93 unsigned int n_no_ranges;
94};
95
Davide Ciminaghi0d4529c2012-10-16 15:56:59 +020096typedef void (*regmap_lock)(void *);
97typedef void (*regmap_unlock)(void *);
98
Mark Brownbd20eb52011-08-19 18:09:38 +090099/**
Mark Browndd898b22011-07-20 22:28:58 +0100100 * Configuration for the register map of a device.
101 *
Stephen Warrend3c242e2012-04-04 15:48:29 -0600102 * @name: Optional name of the regmap. Useful when a device has multiple
103 * register regions.
104 *
Mark Browndd898b22011-07-20 22:28:58 +0100105 * @reg_bits: Number of bits in a register address, mandatory.
Stephen Warrenf01ee602012-04-09 13:40:24 -0600106 * @reg_stride: The register address stride. Valid register addresses are a
107 * multiple of this value. If set to 0, a value of 1 will be
108 * used.
Mark Brown82159ba2012-01-18 10:52:25 +0000109 * @pad_bits: Number of bits of padding between register and value.
Mark Browndd898b22011-07-20 22:28:58 +0100110 * @val_bits: Number of bits in a register value, mandatory.
Mark Brown2e2ae662011-07-20 22:33:39 +0100111 *
Mark Brown3566cc92011-08-09 10:23:22 +0900112 * @writeable_reg: Optional callback returning true if the register
Davide Ciminaghi76aad392012-11-20 15:20:30 +0100113 * can be written to. If this field is NULL but wr_table
114 * (see below) is not, the check is performed on such table
115 * (a register is writeable if it belongs to one of the ranges
116 * specified by wr_table).
Mark Brown3566cc92011-08-09 10:23:22 +0900117 * @readable_reg: Optional callback returning true if the register
Davide Ciminaghi76aad392012-11-20 15:20:30 +0100118 * can be read from. If this field is NULL but rd_table
119 * (see below) is not, the check is performed on such table
120 * (a register is readable if it belongs to one of the ranges
121 * specified by rd_table).
Mark Brown3566cc92011-08-09 10:23:22 +0900122 * @volatile_reg: Optional callback returning true if the register
Davide Ciminaghi76aad392012-11-20 15:20:30 +0100123 * value can't be cached. If this field is NULL but
124 * volatile_table (see below) is not, the check is performed on
125 * such table (a register is volatile if it belongs to one of
126 * the ranges specified by volatile_table).
Laszlo Pappbdc39642014-01-09 14:13:41 +0000127 * @precious_reg: Optional callback returning true if the register
Davide Ciminaghi76aad392012-11-20 15:20:30 +0100128 * should not be read outside of a call from the driver
Laszlo Pappbdc39642014-01-09 14:13:41 +0000129 * (e.g., a clear on read interrupt status register). If this
Davide Ciminaghi76aad392012-11-20 15:20:30 +0100130 * field is NULL but precious_table (see below) is not, the
131 * check is performed on such table (a register is precious if
132 * it belongs to one of the ranges specified by precious_table).
133 * @lock: Optional lock callback (overrides regmap's default lock
134 * function, based on spinlock or mutex).
135 * @unlock: As above for unlocking.
136 * @lock_arg: this field is passed as the only argument of lock/unlock
137 * functions (ignored in case regular lock/unlock functions
138 * are not overridden).
Andrey Smirnovd2a58842013-01-27 10:49:05 -0800139 * @reg_read: Optional callback that if filled will be used to perform
140 * all the reads from the registers. Should only be provided for
Laszlo Pappbdc39642014-01-09 14:13:41 +0000141 * devices whose read operation cannot be represented as a simple
142 * read operation on a bus such as SPI, I2C, etc. Most of the
143 * devices do not need this.
Andrey Smirnovd2a58842013-01-27 10:49:05 -0800144 * @reg_write: Same as above for writing.
145 * @fast_io: Register IO is fast. Use a spinlock instead of a mutex
146 * to perform locking. This field is ignored if custom lock/unlock
147 * functions are used (see fields lock/unlock of struct regmap_config).
148 * This field is a duplicate of a similar file in
149 * 'struct regmap_bus' and serves exact same purpose.
150 * Use it only for "no-bus" cases.
Mark Brownbd20eb52011-08-19 18:09:38 +0900151 * @max_register: Optional, specifies the maximum valid register index.
Davide Ciminaghi76aad392012-11-20 15:20:30 +0100152 * @wr_table: Optional, points to a struct regmap_access_table specifying
153 * valid ranges for write access.
154 * @rd_table: As above, for read access.
155 * @volatile_table: As above, for volatile registers.
156 * @precious_table: As above, for precious registers.
Mark Brownbd20eb52011-08-19 18:09:38 +0900157 * @reg_defaults: Power on reset values for registers (for use with
158 * register cache support).
159 * @num_reg_defaults: Number of elements in reg_defaults.
Lars-Peter Clausen6f306442011-09-05 20:46:32 +0200160 *
161 * @read_flag_mask: Mask to be set in the top byte of the register when doing
162 * a read.
163 * @write_flag_mask: Mask to be set in the top byte of the register when doing
164 * a write. If both read_flag_mask and write_flag_mask are
165 * empty the regmap_bus default masks are used.
Ashish Jangam2e33caf2012-04-30 23:23:40 +0100166 * @use_single_rw: If set, converts the bulk read and write operations into
167 * a series of single read and write operations. This is useful
168 * for device that does not support bulk read and write.
Opensource [Anthony Olech]e894c3f2014-03-04 13:54:02 +0000169 * @can_multi_write: If set, the device supports the multi write mode of bulk
170 * write operations, if clear multi write requests will be
171 * split into individual write operations
Dimitris Papastamos9fabe242011-09-19 14:34:00 +0100172 *
173 * @cache_type: The actual cache type.
174 * @reg_defaults_raw: Power on reset values for registers (for use with
175 * register cache support).
176 * @num_reg_defaults_raw: Number of elements in reg_defaults_raw.
Stephen Warren141eba22012-05-24 10:47:26 -0600177 * @reg_format_endian: Endianness for formatted register addresses. If this is
178 * DEFAULT, the @reg_format_endian_default value from the
179 * regmap bus is used.
180 * @val_format_endian: Endianness for formatted register values. If this is
181 * DEFAULT, the @reg_format_endian_default value from the
182 * regmap bus is used.
Krystian Garbaciak6863ca62012-06-15 11:23:56 +0100183 *
184 * @ranges: Array of configuration entries for virtual address ranges.
185 * @num_ranges: Number of range configuration entries.
Mark Browndd898b22011-07-20 22:28:58 +0100186 */
Mark Brownb83a3132011-05-11 19:59:58 +0200187struct regmap_config {
Stephen Warrend3c242e2012-04-04 15:48:29 -0600188 const char *name;
189
Mark Brownb83a3132011-05-11 19:59:58 +0200190 int reg_bits;
Stephen Warrenf01ee602012-04-09 13:40:24 -0600191 int reg_stride;
Mark Brown82159ba2012-01-18 10:52:25 +0000192 int pad_bits;
Mark Brownb83a3132011-05-11 19:59:58 +0200193 int val_bits;
Mark Brown2e2ae662011-07-20 22:33:39 +0100194
Mark Brown2e2ae662011-07-20 22:33:39 +0100195 bool (*writeable_reg)(struct device *dev, unsigned int reg);
196 bool (*readable_reg)(struct device *dev, unsigned int reg);
197 bool (*volatile_reg)(struct device *dev, unsigned int reg);
Mark Brown18694882011-08-08 15:40:22 +0900198 bool (*precious_reg)(struct device *dev, unsigned int reg);
Davide Ciminaghi0d4529c2012-10-16 15:56:59 +0200199 regmap_lock lock;
200 regmap_unlock unlock;
201 void *lock_arg;
Mark Brownbd20eb52011-08-19 18:09:38 +0900202
Andrey Smirnovd2a58842013-01-27 10:49:05 -0800203 int (*reg_read)(void *context, unsigned int reg, unsigned int *val);
204 int (*reg_write)(void *context, unsigned int reg, unsigned int val);
205
206 bool fast_io;
207
Mark Brownbd20eb52011-08-19 18:09:38 +0900208 unsigned int max_register;
Davide Ciminaghi76aad392012-11-20 15:20:30 +0100209 const struct regmap_access_table *wr_table;
210 const struct regmap_access_table *rd_table;
211 const struct regmap_access_table *volatile_table;
212 const struct regmap_access_table *precious_table;
Lars-Peter Clausen720e4612011-11-16 16:28:17 +0100213 const struct reg_default *reg_defaults;
Dimitris Papastamos9fabe242011-09-19 14:34:00 +0100214 unsigned int num_reg_defaults;
215 enum regcache_type cache_type;
216 const void *reg_defaults_raw;
217 unsigned int num_reg_defaults_raw;
Lars-Peter Clausen6f306442011-09-05 20:46:32 +0200218
219 u8 read_flag_mask;
220 u8 write_flag_mask;
Ashish Jangam2e33caf2012-04-30 23:23:40 +0100221
222 bool use_single_rw;
Opensource [Anthony Olech]e894c3f2014-03-04 13:54:02 +0000223 bool can_multi_write;
Stephen Warren141eba22012-05-24 10:47:26 -0600224
225 enum regmap_endian reg_format_endian;
226 enum regmap_endian val_format_endian;
Mark Brown38e23192012-07-22 19:26:07 +0100227
Krystian Garbaciak6863ca62012-06-15 11:23:56 +0100228 const struct regmap_range_cfg *ranges;
Mark Browne3549cd2012-10-02 20:17:15 +0100229 unsigned int num_ranges;
Krystian Garbaciak6863ca62012-06-15 11:23:56 +0100230};
231
232/**
233 * Configuration for indirectly accessed or paged registers.
234 * Registers, mapped to this virtual range, are accessed in two steps:
235 * 1. page selector register update;
236 * 2. access through data window registers.
237 *
Mark Brownd058bb42012-10-03 12:40:47 +0100238 * @name: Descriptive name for diagnostics
239 *
Krystian Garbaciak6863ca62012-06-15 11:23:56 +0100240 * @range_min: Address of the lowest register address in virtual range.
241 * @range_max: Address of the highest register in virtual range.
242 *
243 * @page_sel_reg: Register with selector field.
244 * @page_sel_mask: Bit shift for selector value.
245 * @page_sel_shift: Bit mask for selector value.
246 *
247 * @window_start: Address of first (lowest) register in data window.
248 * @window_len: Number of registers in data window.
249 */
250struct regmap_range_cfg {
Mark Brownd058bb42012-10-03 12:40:47 +0100251 const char *name;
252
Krystian Garbaciak6863ca62012-06-15 11:23:56 +0100253 /* Registers of virtual address range */
254 unsigned int range_min;
255 unsigned int range_max;
256
257 /* Page selector for indirect addressing */
258 unsigned int selector_reg;
259 unsigned int selector_mask;
260 int selector_shift;
261
262 /* Data window (per each page) */
263 unsigned int window_start;
264 unsigned int window_len;
Mark Brownb83a3132011-05-11 19:59:58 +0200265};
266
Mark Brown0d509f22013-01-27 22:07:38 +0800267struct regmap_async;
268
Stephen Warren0135bbc2012-04-04 15:48:30 -0600269typedef int (*regmap_hw_write)(void *context, const void *data,
Mark Brownb83a3132011-05-11 19:59:58 +0200270 size_t count);
Stephen Warren0135bbc2012-04-04 15:48:30 -0600271typedef int (*regmap_hw_gather_write)(void *context,
Mark Brownb83a3132011-05-11 19:59:58 +0200272 const void *reg, size_t reg_len,
273 const void *val, size_t val_len);
Mark Brown0d509f22013-01-27 22:07:38 +0800274typedef int (*regmap_hw_async_write)(void *context,
275 const void *reg, size_t reg_len,
276 const void *val, size_t val_len,
277 struct regmap_async *async);
Stephen Warren0135bbc2012-04-04 15:48:30 -0600278typedef int (*regmap_hw_read)(void *context,
Mark Brownb83a3132011-05-11 19:59:58 +0200279 const void *reg_buf, size_t reg_size,
280 void *val_buf, size_t val_size);
Boris BREZILLON3ac17032014-04-17 11:40:11 +0200281typedef int (*regmap_hw_reg_read)(void *context, unsigned int reg,
282 unsigned int *val);
283typedef int (*regmap_hw_reg_write)(void *context, unsigned int reg,
284 unsigned int val);
Mark Brown0d509f22013-01-27 22:07:38 +0800285typedef struct regmap_async *(*regmap_hw_async_alloc)(void);
Stephen Warren0135bbc2012-04-04 15:48:30 -0600286typedef void (*regmap_hw_free_context)(void *context);
Mark Brownb83a3132011-05-11 19:59:58 +0200287
288/**
289 * Description of a hardware bus for the register map infrastructure.
290 *
Stephen Warrenbacdbe02012-04-04 15:48:28 -0600291 * @fast_io: Register IO is fast. Use a spinlock instead of a mutex
Davide Ciminaghi0d4529c2012-10-16 15:56:59 +0200292 * to perform locking. This field is ignored if custom lock/unlock
293 * functions are used (see fields lock/unlock of
294 * struct regmap_config).
Mark Brownb83a3132011-05-11 19:59:58 +0200295 * @write: Write operation.
296 * @gather_write: Write operation with split register/value, return -ENOTSUPP
297 * if not implemented on a given device.
Mark Brown0d509f22013-01-27 22:07:38 +0800298 * @async_write: Write operation which completes asynchronously, optional and
299 * must serialise with respect to non-async I/O.
Mark Brownb83a3132011-05-11 19:59:58 +0200300 * @read: Read operation. Data is returned in the buffer used to transmit
301 * data.
Mark Brown0d509f22013-01-27 22:07:38 +0800302 * @async_alloc: Allocate a regmap_async() structure.
Mark Brownb83a3132011-05-11 19:59:58 +0200303 * @read_flag_mask: Mask to be set in the top byte of the register when doing
304 * a read.
Stephen Warren141eba22012-05-24 10:47:26 -0600305 * @reg_format_endian_default: Default endianness for formatted register
306 * addresses. Used when the regmap_config specifies DEFAULT. If this is
307 * DEFAULT, BIG is assumed.
308 * @val_format_endian_default: Default endianness for formatted register
309 * values. Used when the regmap_config specifies DEFAULT. If this is
310 * DEFAULT, BIG is assumed.
Mark Brown0d509f22013-01-27 22:07:38 +0800311 * @async_size: Size of struct used for async work.
Mark Brownb83a3132011-05-11 19:59:58 +0200312 */
313struct regmap_bus {
Stephen Warrenbacdbe02012-04-04 15:48:28 -0600314 bool fast_io;
Mark Brownb83a3132011-05-11 19:59:58 +0200315 regmap_hw_write write;
316 regmap_hw_gather_write gather_write;
Mark Brown0d509f22013-01-27 22:07:38 +0800317 regmap_hw_async_write async_write;
Boris BREZILLON3ac17032014-04-17 11:40:11 +0200318 regmap_hw_reg_write reg_write;
Mark Brownb83a3132011-05-11 19:59:58 +0200319 regmap_hw_read read;
Boris BREZILLON3ac17032014-04-17 11:40:11 +0200320 regmap_hw_reg_read reg_read;
Stephen Warren0135bbc2012-04-04 15:48:30 -0600321 regmap_hw_free_context free_context;
Mark Brown0d509f22013-01-27 22:07:38 +0800322 regmap_hw_async_alloc async_alloc;
Mark Brownb83a3132011-05-11 19:59:58 +0200323 u8 read_flag_mask;
Stephen Warren141eba22012-05-24 10:47:26 -0600324 enum regmap_endian reg_format_endian_default;
325 enum regmap_endian val_format_endian_default;
Mark Brownb83a3132011-05-11 19:59:58 +0200326};
327
Nicolas Boichat3cfe7a72015-07-08 14:30:18 +0800328/*
329 * __regmap_init functions.
330 *
331 * These functions take a lock key and name parameter, and should not be called
332 * directly. Instead, use the regmap_init macros that generate a key and name
333 * for each call.
334 */
335struct regmap *__regmap_init(struct device *dev,
336 const struct regmap_bus *bus,
337 void *bus_context,
338 const struct regmap_config *config,
339 struct lock_class_key *lock_key,
340 const char *lock_name);
341struct regmap *__regmap_init_i2c(struct i2c_client *i2c,
342 const struct regmap_config *config,
343 struct lock_class_key *lock_key,
344 const char *lock_name);
345struct regmap *__regmap_init_spi(struct spi_device *dev,
346 const struct regmap_config *config,
347 struct lock_class_key *lock_key,
348 const char *lock_name);
349struct regmap *__regmap_init_spmi_base(struct spmi_device *dev,
350 const struct regmap_config *config,
351 struct lock_class_key *lock_key,
352 const char *lock_name);
353struct regmap *__regmap_init_spmi_ext(struct spmi_device *dev,
354 const struct regmap_config *config,
355 struct lock_class_key *lock_key,
356 const char *lock_name);
357struct regmap *__regmap_init_mmio_clk(struct device *dev, const char *clk_id,
358 void __iomem *regs,
359 const struct regmap_config *config,
360 struct lock_class_key *lock_key,
361 const char *lock_name);
362struct regmap *__regmap_init_ac97(struct snd_ac97 *ac97,
363 const struct regmap_config *config,
364 struct lock_class_key *lock_key,
365 const char *lock_name);
366
367struct regmap *__devm_regmap_init(struct device *dev,
368 const struct regmap_bus *bus,
369 void *bus_context,
370 const struct regmap_config *config,
371 struct lock_class_key *lock_key,
372 const char *lock_name);
373struct regmap *__devm_regmap_init_i2c(struct i2c_client *i2c,
374 const struct regmap_config *config,
375 struct lock_class_key *lock_key,
376 const char *lock_name);
377struct regmap *__devm_regmap_init_spi(struct spi_device *dev,
378 const struct regmap_config *config,
379 struct lock_class_key *lock_key,
380 const char *lock_name);
381struct regmap *__devm_regmap_init_spmi_base(struct spmi_device *dev,
382 const struct regmap_config *config,
383 struct lock_class_key *lock_key,
384 const char *lock_name);
385struct regmap *__devm_regmap_init_spmi_ext(struct spmi_device *dev,
386 const struct regmap_config *config,
387 struct lock_class_key *lock_key,
388 const char *lock_name);
389struct regmap *__devm_regmap_init_mmio_clk(struct device *dev,
390 const char *clk_id,
391 void __iomem *regs,
392 const struct regmap_config *config,
393 struct lock_class_key *lock_key,
394 const char *lock_name);
395struct regmap *__devm_regmap_init_ac97(struct snd_ac97 *ac97,
396 const struct regmap_config *config,
397 struct lock_class_key *lock_key,
398 const char *lock_name);
399
400/*
401 * Wrapper for regmap_init macros to include a unique lockdep key and name
402 * for each call. No-op if CONFIG_LOCKDEP is not set.
403 *
404 * @fn: Real function to call (in the form __[*_]regmap_init[_*])
405 * @name: Config variable name (#config in the calling macro)
406 **/
407#ifdef CONFIG_LOCKDEP
408#define __regmap_lockdep_wrapper(fn, name, ...) \
409( \
410 ({ \
411 static struct lock_class_key _key; \
412 fn(__VA_ARGS__, &_key, \
413 KBUILD_BASENAME ":" \
414 __stringify(__LINE__) ":" \
415 "(" name ")->lock"); \
416 }) \
417)
418#else
419#define __regmap_lockdep_wrapper(fn, name, ...) fn(__VA_ARGS__, NULL, NULL)
420#endif
421
422#define regmap_init(dev, bus, bus_context, config) \
423 __regmap_lockdep_wrapper(__regmap_init, #config, \
424 dev, bus, bus_context, config)
Michal Simek6cfec042014-02-10 16:22:33 +0100425int regmap_attach_dev(struct device *dev, struct regmap *map,
Nicolas Boichat3cfe7a72015-07-08 14:30:18 +0800426 const struct regmap_config *config);
427#define regmap_init_i2c(i2c, config) \
428 __regmap_lockdep_wrapper(__regmap_init_i2c, #config, \
429 i2c, config)
430#define regmap_init_spi(dev, config) \
431 __regmap_lockdep_wrapper(__regmap_init_spi, #config, \
432 dev, config)
433#define regmap_init_spmi_base(dev, config) \
434 __regmap_lockdep_wrapper(__regmap_init_spmi_base, #config, \
435 dev, config)
436#define regmap_init_spmi_ext(dev, config) \
437 __regmap_lockdep_wrapper(__regmap_init_spmi_ext, #config, \
438 dev, config)
439#define regmap_init_mmio_clk(dev, clk_id, regs, config) \
440 __regmap_lockdep_wrapper(__regmap_init_mmio_clk, #config, \
441 dev, clk_id, regs, config)
442#define regmap_init_ac97(ac97, config) \
443 __regmap_lockdep_wrapper(__regmap_init_ac97, #config, \
444 ac97, config)
Mark Brown22853222014-11-18 19:45:51 +0100445bool regmap_ac97_default_volatile(struct device *dev, unsigned int reg);
Philipp Zabel878ec672013-02-14 17:39:08 +0100446
Nicolas Boichat3cfe7a72015-07-08 14:30:18 +0800447#define devm_regmap_init(dev, bus, bus_context, config) \
448 __regmap_lockdep_wrapper(__devm_regmap_init, #config, \
449 dev, bus, bus_context, config)
450#define devm_regmap_init_i2c(i2c, config) \
451 __regmap_lockdep_wrapper(__devm_regmap_init_i2c, #config, \
452 i2c, config)
453#define devm_regmap_init_spi(dev, config) \
454 __regmap_lockdep_wrapper(__devm_regmap_init_spi, #config, \
455 dev, config)
456#define devm_regmap_init_spmi_base(dev, config) \
457 __regmap_lockdep_wrapper(__devm_regmap_init_spmi_base, #config, \
458 dev, config)
459#define devm_regmap_init_spmi_ext(dev, config) \
460 __regmap_lockdep_wrapper(__devm_regmap_init_spmi_ext, #config, \
461 dev, config)
462#define devm_regmap_init_mmio_clk(dev, clk_id, regs, config) \
463 __regmap_lockdep_wrapper(__devm_regmap_init_mmio_clk, #config, \
464 dev, clk_id, regs, config)
465#define devm_regmap_init_ac97(ac97, config) \
466 __regmap_lockdep_wrapper(__devm_regmap_init_ac97, #config, \
467 ac97, config)
468
Philipp Zabel878ec672013-02-14 17:39:08 +0100469/**
470 * regmap_init_mmio(): Initialise register map
471 *
472 * @dev: Device that will be interacted with
473 * @regs: Pointer to memory-mapped IO region
474 * @config: Configuration for register map
475 *
476 * The return value will be an ERR_PTR() on error or a valid pointer to
477 * a struct regmap.
478 */
Nicolas Boichat3cfe7a72015-07-08 14:30:18 +0800479#define regmap_init_mmio(dev, regs, config) \
480 regmap_init_mmio_clk(dev, NULL, regs, config)
Philipp Zabel878ec672013-02-14 17:39:08 +0100481
482/**
483 * devm_regmap_init_mmio(): Initialise managed register map
484 *
485 * @dev: Device that will be interacted with
486 * @regs: Pointer to memory-mapped IO region
487 * @config: Configuration for register map
488 *
489 * The return value will be an ERR_PTR() on error or a valid pointer
490 * to a struct regmap. The regmap will be automatically freed by the
491 * device management code.
492 */
Nicolas Boichat3cfe7a72015-07-08 14:30:18 +0800493#define devm_regmap_init_mmio(dev, regs, config) \
494 devm_regmap_init_mmio_clk(dev, NULL, regs, config)
Mark Brownc0eb4672012-01-30 19:56:52 +0000495
Mark Brownb83a3132011-05-11 19:59:58 +0200496void regmap_exit(struct regmap *map);
Mark Brownbf315172011-12-03 17:06:20 +0000497int regmap_reinit_cache(struct regmap *map,
498 const struct regmap_config *config);
Mark Brown72b39f62012-05-08 17:44:40 +0100499struct regmap *dev_get_regmap(struct device *dev, const char *name);
Tuomas Tynkkynen8d7d3972014-07-21 18:38:47 +0300500struct device *regmap_get_device(struct regmap *map);
Mark Brownb83a3132011-05-11 19:59:58 +0200501int regmap_write(struct regmap *map, unsigned int reg, unsigned int val);
Mark Brown915f4412013-10-09 13:30:10 +0100502int regmap_write_async(struct regmap *map, unsigned int reg, unsigned int val);
Mark Brownb83a3132011-05-11 19:59:58 +0200503int regmap_raw_write(struct regmap *map, unsigned int reg,
504 const void *val, size_t val_len);
Laxman Dewangan8eaeb212012-02-12 19:49:43 +0530505int regmap_bulk_write(struct regmap *map, unsigned int reg, const void *val,
506 size_t val_count);
Charles Keepaxf7e2cec2014-02-25 13:45:49 +0000507int regmap_multi_reg_write(struct regmap *map, const struct reg_default *regs,
Anthony Oleche33fabd2013-10-11 15:31:11 +0100508 int num_regs);
Charles Keepax1d5b40b2014-02-25 13:45:50 +0000509int regmap_multi_reg_write_bypassed(struct regmap *map,
510 const struct reg_default *regs,
511 int num_regs);
Mark Brown0d509f22013-01-27 22:07:38 +0800512int regmap_raw_write_async(struct regmap *map, unsigned int reg,
513 const void *val, size_t val_len);
Mark Brownb83a3132011-05-11 19:59:58 +0200514int regmap_read(struct regmap *map, unsigned int reg, unsigned int *val);
515int regmap_raw_read(struct regmap *map, unsigned int reg,
516 void *val, size_t val_len);
517int regmap_bulk_read(struct regmap *map, unsigned int reg, void *val,
518 size_t val_count);
519int regmap_update_bits(struct regmap *map, unsigned int reg,
520 unsigned int mask, unsigned int val);
Mark Brown915f4412013-10-09 13:30:10 +0100521int regmap_update_bits_async(struct regmap *map, unsigned int reg,
522 unsigned int mask, unsigned int val);
Mark Brown018690d2011-11-29 20:10:36 +0000523int regmap_update_bits_check(struct regmap *map, unsigned int reg,
524 unsigned int mask, unsigned int val,
525 bool *change);
Mark Brown915f4412013-10-09 13:30:10 +0100526int regmap_update_bits_check_async(struct regmap *map, unsigned int reg,
527 unsigned int mask, unsigned int val,
528 bool *change);
Mark Browna6539c32012-02-17 14:20:14 -0800529int regmap_get_val_bytes(struct regmap *map);
Srinivas Kandagatla668abc72015-05-21 17:42:43 +0100530int regmap_get_max_register(struct regmap *map);
Srinivas Kandagatlaa2f776c2015-05-21 17:42:54 +0100531int regmap_get_reg_stride(struct regmap *map);
Mark Brown0d509f22013-01-27 22:07:38 +0800532int regmap_async_complete(struct regmap *map);
Mark Brown221ad7f2013-03-26 21:24:20 +0000533bool regmap_can_raw_write(struct regmap *map);
Mark Brownb83a3132011-05-11 19:59:58 +0200534
Mark Brown39a58432011-09-19 18:21:49 +0100535int regcache_sync(struct regmap *map);
Mark Brown4d4cfd12012-02-23 20:53:37 +0000536int regcache_sync_region(struct regmap *map, unsigned int min,
537 unsigned int max);
Mark Brown697e85b2013-05-08 13:55:22 +0100538int regcache_drop_region(struct regmap *map, unsigned int min,
539 unsigned int max);
Mark Brown92afb282011-09-19 18:22:14 +0100540void regcache_cache_only(struct regmap *map, bool enable);
Dimitris Papastamos6eb0f5e2011-09-29 14:36:27 +0100541void regcache_cache_bypass(struct regmap *map, bool enable);
Mark Brown8ae0d7e2011-10-26 10:34:22 +0200542void regcache_mark_dirty(struct regmap *map);
Mark Brown92afb282011-09-19 18:22:14 +0100543
Mark Brown154881e2013-05-08 13:55:23 +0100544bool regmap_check_range_table(struct regmap *map, unsigned int reg,
545 const struct regmap_access_table *table);
546
Mark Brown22f0d902012-01-21 12:01:14 +0000547int regmap_register_patch(struct regmap *map, const struct reg_default *regs,
548 int num_regs);
Nenghua Cao13ff50c2014-02-19 18:44:13 +0800549int regmap_parse_val(struct regmap *map, const void *buf,
550 unsigned int *val);
Mark Brown22f0d902012-01-21 12:01:14 +0000551
Davide Ciminaghi76aad392012-11-20 15:20:30 +0100552static inline bool regmap_reg_in_range(unsigned int reg,
553 const struct regmap_range *range)
554{
555 return reg >= range->range_min && reg <= range->range_max;
556}
557
558bool regmap_reg_in_ranges(unsigned int reg,
559 const struct regmap_range *ranges,
560 unsigned int nranges);
561
Mark Brownf8beab22011-10-28 23:50:49 +0200562/**
Srinivas Kandagatla67252282013-06-11 13:18:15 +0100563 * Description of an register field
564 *
565 * @reg: Offset of the register within the regmap bank
566 * @lsb: lsb of the register field.
Bintian Wangf27b37f2015-01-27 20:50:29 +0800567 * @msb: msb of the register field.
Kuninori Morimotoa0102372013-09-01 20:30:50 -0700568 * @id_size: port size if it has some ports
569 * @id_offset: address offset for each ports
Srinivas Kandagatla67252282013-06-11 13:18:15 +0100570 */
571struct reg_field {
572 unsigned int reg;
573 unsigned int lsb;
574 unsigned int msb;
Kuninori Morimotoa0102372013-09-01 20:30:50 -0700575 unsigned int id_size;
576 unsigned int id_offset;
Srinivas Kandagatla67252282013-06-11 13:18:15 +0100577};
578
579#define REG_FIELD(_reg, _lsb, _msb) { \
580 .reg = _reg, \
581 .lsb = _lsb, \
582 .msb = _msb, \
583 }
584
585struct regmap_field *regmap_field_alloc(struct regmap *regmap,
586 struct reg_field reg_field);
587void regmap_field_free(struct regmap_field *field);
588
589struct regmap_field *devm_regmap_field_alloc(struct device *dev,
590 struct regmap *regmap, struct reg_field reg_field);
591void devm_regmap_field_free(struct device *dev, struct regmap_field *field);
592
593int regmap_field_read(struct regmap_field *field, unsigned int *val);
594int regmap_field_write(struct regmap_field *field, unsigned int val);
Kuninori Morimotofdf20022013-09-01 20:24:50 -0700595int regmap_field_update_bits(struct regmap_field *field,
596 unsigned int mask, unsigned int val);
Srinivas Kandagatla67252282013-06-11 13:18:15 +0100597
Kuninori Morimotoa0102372013-09-01 20:30:50 -0700598int regmap_fields_write(struct regmap_field *field, unsigned int id,
599 unsigned int val);
600int regmap_fields_read(struct regmap_field *field, unsigned int id,
601 unsigned int *val);
602int regmap_fields_update_bits(struct regmap_field *field, unsigned int id,
603 unsigned int mask, unsigned int val);
Srinivas Kandagatla67252282013-06-11 13:18:15 +0100604
605/**
Mark Brownf8beab22011-10-28 23:50:49 +0200606 * Description of an IRQ for the generic regmap irq_chip.
607 *
608 * @reg_offset: Offset of the status/mask register within the bank
609 * @mask: Mask used to flag/control the register.
610 */
611struct regmap_irq {
612 unsigned int reg_offset;
613 unsigned int mask;
614};
615
616/**
617 * Description of a generic regmap irq_chip. This is not intended to
618 * handle every possible interrupt controller, but it should handle a
619 * substantial proportion of those that are found in the wild.
620 *
621 * @name: Descriptive name for IRQ controller.
622 *
623 * @status_base: Base status register address.
624 * @mask_base: Base mask register address.
Alexander Shiyand3233432013-12-15 13:36:51 +0400625 * @ack_base: Base ack address. If zero then the chip is clear on read.
626 * Using zero value is possible with @use_ack bit.
Mark Browna43fd502012-06-05 14:34:03 +0100627 * @wake_base: Base address for wake enables. If zero unsupported.
Graeme Gregory022f926a2012-05-14 22:40:43 +0900628 * @irq_reg_stride: Stride to use for chips where registers are not contiguous.
Philipp Zabel2753e6f2013-07-22 17:15:52 +0200629 * @init_ack_masked: Ack all masked interrupts once during initalization.
Philipp Zabel68622bd2013-07-24 10:26:48 +0200630 * @mask_invert: Inverted mask register: cleared bits are masked out.
Alexander Shiyand3233432013-12-15 13:36:51 +0400631 * @use_ack: Use @ack register even if it is zero.
Philipp Zabel68622bd2013-07-24 10:26:48 +0200632 * @wake_invert: Inverted wake register: cleared bits are wake enabled.
Mark Brown0c00c502012-07-24 15:41:19 +0100633 * @runtime_pm: Hold a runtime PM lock on the device when accessing it.
Mark Brownf8beab22011-10-28 23:50:49 +0200634 *
635 * @num_regs: Number of registers in each control bank.
636 * @irqs: Descriptors for individual IRQs. Interrupt numbers are
637 * assigned based on the index in the array of the interrupt.
638 * @num_irqs: Number of descriptors.
639 */
640struct regmap_irq_chip {
641 const char *name;
642
643 unsigned int status_base;
644 unsigned int mask_base;
645 unsigned int ack_base;
Mark Browna43fd502012-06-05 14:34:03 +0100646 unsigned int wake_base;
Graeme Gregory022f926a2012-05-14 22:40:43 +0900647 unsigned int irq_reg_stride;
Philipp Zabelf484f7a2013-07-24 10:26:42 +0200648 bool init_ack_masked:1;
649 bool mask_invert:1;
Alexander Shiyand3233432013-12-15 13:36:51 +0400650 bool use_ack:1;
Philipp Zabelf484f7a2013-07-24 10:26:42 +0200651 bool wake_invert:1;
652 bool runtime_pm:1;
Mark Brownf8beab22011-10-28 23:50:49 +0200653
654 int num_regs;
655
656 const struct regmap_irq *irqs;
657 int num_irqs;
658};
659
660struct regmap_irq_chip_data;
661
662int regmap_add_irq_chip(struct regmap *map, int irq, int irq_flags,
Mark Brownb026ddb2012-05-31 21:01:46 +0100663 int irq_base, const struct regmap_irq_chip *chip,
Mark Brownf8beab22011-10-28 23:50:49 +0200664 struct regmap_irq_chip_data **data);
665void regmap_del_irq_chip(int irq, struct regmap_irq_chip_data *data);
Mark Brown209a6002011-12-05 16:10:15 +0000666int regmap_irq_chip_get_base(struct regmap_irq_chip_data *data);
Mark Brown4af8be62012-05-13 10:59:56 +0100667int regmap_irq_get_virq(struct regmap_irq_chip_data *data, int irq);
Mark Brown90f790d2012-08-20 21:45:05 +0100668struct irq_domain *regmap_irq_get_domain(struct regmap_irq_chip_data *data);
Mark Brownb83a3132011-05-11 19:59:58 +0200669
Mark Brown9cde5fc2012-02-17 14:49:51 -0800670#else
671
672/*
673 * These stubs should only ever be called by generic code which has
674 * regmap based facilities, if they ever get called at runtime
675 * something is going wrong and something probably needs to select
676 * REGMAP.
677 */
678
679static inline int regmap_write(struct regmap *map, unsigned int reg,
680 unsigned int val)
681{
682 WARN_ONCE(1, "regmap API is disabled");
683 return -EINVAL;
684}
685
Mark Brown915f4412013-10-09 13:30:10 +0100686static inline int regmap_write_async(struct regmap *map, unsigned int reg,
687 unsigned int val)
688{
689 WARN_ONCE(1, "regmap API is disabled");
690 return -EINVAL;
691}
692
Mark Brown9cde5fc2012-02-17 14:49:51 -0800693static inline int regmap_raw_write(struct regmap *map, unsigned int reg,
694 const void *val, size_t val_len)
695{
696 WARN_ONCE(1, "regmap API is disabled");
697 return -EINVAL;
698}
699
Mark Brown0d509f22013-01-27 22:07:38 +0800700static inline int regmap_raw_write_async(struct regmap *map, unsigned int reg,
701 const void *val, size_t val_len)
702{
703 WARN_ONCE(1, "regmap API is disabled");
704 return -EINVAL;
705}
706
Mark Brown9cde5fc2012-02-17 14:49:51 -0800707static inline int regmap_bulk_write(struct regmap *map, unsigned int reg,
708 const void *val, size_t val_count)
709{
710 WARN_ONCE(1, "regmap API is disabled");
711 return -EINVAL;
712}
713
714static inline int regmap_read(struct regmap *map, unsigned int reg,
715 unsigned int *val)
716{
717 WARN_ONCE(1, "regmap API is disabled");
718 return -EINVAL;
719}
720
721static inline int regmap_raw_read(struct regmap *map, unsigned int reg,
722 void *val, size_t val_len)
723{
724 WARN_ONCE(1, "regmap API is disabled");
725 return -EINVAL;
726}
727
728static inline int regmap_bulk_read(struct regmap *map, unsigned int reg,
729 void *val, size_t val_count)
730{
731 WARN_ONCE(1, "regmap API is disabled");
732 return -EINVAL;
733}
734
735static inline int regmap_update_bits(struct regmap *map, unsigned int reg,
736 unsigned int mask, unsigned int val)
737{
738 WARN_ONCE(1, "regmap API is disabled");
739 return -EINVAL;
740}
741
Mark Brown915f4412013-10-09 13:30:10 +0100742static inline int regmap_update_bits_async(struct regmap *map,
743 unsigned int reg,
744 unsigned int mask, unsigned int val)
745{
746 WARN_ONCE(1, "regmap API is disabled");
747 return -EINVAL;
748}
749
Mark Brown9cde5fc2012-02-17 14:49:51 -0800750static inline int regmap_update_bits_check(struct regmap *map,
751 unsigned int reg,
752 unsigned int mask, unsigned int val,
753 bool *change)
754{
755 WARN_ONCE(1, "regmap API is disabled");
756 return -EINVAL;
757}
758
Mark Brown915f4412013-10-09 13:30:10 +0100759static inline int regmap_update_bits_check_async(struct regmap *map,
760 unsigned int reg,
761 unsigned int mask,
762 unsigned int val,
763 bool *change)
764{
765 WARN_ONCE(1, "regmap API is disabled");
766 return -EINVAL;
767}
768
Mark Brown9cde5fc2012-02-17 14:49:51 -0800769static inline int regmap_get_val_bytes(struct regmap *map)
770{
771 WARN_ONCE(1, "regmap API is disabled");
772 return -EINVAL;
773}
774
Srinivas Kandagatla668abc72015-05-21 17:42:43 +0100775static inline int regmap_get_max_register(struct regmap *map)
776{
777 WARN_ONCE(1, "regmap API is disabled");
778 return -EINVAL;
779}
780
Srinivas Kandagatlaa2f776c2015-05-21 17:42:54 +0100781static inline int regmap_get_reg_stride(struct regmap *map)
782{
783 WARN_ONCE(1, "regmap API is disabled");
784 return -EINVAL;
785}
786
Mark Brown9cde5fc2012-02-17 14:49:51 -0800787static inline int regcache_sync(struct regmap *map)
788{
789 WARN_ONCE(1, "regmap API is disabled");
790 return -EINVAL;
791}
792
Mark Browna313f9f2012-02-23 19:49:43 +0000793static inline int regcache_sync_region(struct regmap *map, unsigned int min,
794 unsigned int max)
795{
796 WARN_ONCE(1, "regmap API is disabled");
797 return -EINVAL;
798}
799
Mark Brown697e85b2013-05-08 13:55:22 +0100800static inline int regcache_drop_region(struct regmap *map, unsigned int min,
801 unsigned int max)
802{
803 WARN_ONCE(1, "regmap API is disabled");
804 return -EINVAL;
805}
806
Mark Brown9cde5fc2012-02-17 14:49:51 -0800807static inline void regcache_cache_only(struct regmap *map, bool enable)
808{
809 WARN_ONCE(1, "regmap API is disabled");
810}
811
812static inline void regcache_cache_bypass(struct regmap *map, bool enable)
813{
814 WARN_ONCE(1, "regmap API is disabled");
815}
816
817static inline void regcache_mark_dirty(struct regmap *map)
818{
819 WARN_ONCE(1, "regmap API is disabled");
820}
821
Mark Brown0d509f22013-01-27 22:07:38 +0800822static inline void regmap_async_complete(struct regmap *map)
823{
824 WARN_ONCE(1, "regmap API is disabled");
825}
826
Mark Brown9cde5fc2012-02-17 14:49:51 -0800827static inline int regmap_register_patch(struct regmap *map,
828 const struct reg_default *regs,
829 int num_regs)
830{
831 WARN_ONCE(1, "regmap API is disabled");
832 return -EINVAL;
833}
834
Nenghua Cao13ff50c2014-02-19 18:44:13 +0800835static inline int regmap_parse_val(struct regmap *map, const void *buf,
836 unsigned int *val)
837{
838 WARN_ONCE(1, "regmap API is disabled");
839 return -EINVAL;
840}
841
Mark Brown72b39f62012-05-08 17:44:40 +0100842static inline struct regmap *dev_get_regmap(struct device *dev,
843 const char *name)
844{
Mark Brown72b39f62012-05-08 17:44:40 +0100845 return NULL;
846}
847
Tuomas Tynkkynen8d7d3972014-07-21 18:38:47 +0300848static inline struct device *regmap_get_device(struct regmap *map)
849{
850 WARN_ONCE(1, "regmap API is disabled");
Mark Brown1d33dc62014-07-25 19:01:53 +0100851 return NULL;
Tuomas Tynkkynen8d7d3972014-07-21 18:38:47 +0300852}
853
Mark Brown9cde5fc2012-02-17 14:49:51 -0800854#endif
855
Mark Brownb83a3132011-05-11 19:59:58 +0200856#endif