blob: 7d3d498fd3e8ff340808f71f0eafd515d554fc17 [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
Nariman Poushin8019ff62015-07-16 16:36:21 +010054/**
Nariman Poushin2de9d602015-07-16 16:36:22 +010055 * Register/value pairs for sequences of writes with an optional delay in
56 * microseconds to be applied after each write.
Nariman Poushin8019ff62015-07-16 16:36:21 +010057 *
58 * @reg: Register address.
59 * @def: Register value.
Nariman Poushin2de9d602015-07-16 16:36:22 +010060 * @delay_us: Delay to be applied after the register write in microseconds
Nariman Poushin8019ff62015-07-16 16:36:21 +010061 */
62struct reg_sequence {
63 unsigned int reg;
64 unsigned int def;
Nariman Poushin2de9d602015-07-16 16:36:22 +010065 unsigned int delay_us;
Nariman Poushin8019ff62015-07-16 16:36:21 +010066};
67
Kuninori Morimotoca7a9442016-02-15 05:22:42 +000068#define regmap_update_bits(map, reg, mask, val) \
69 regmap_update_bits_base(map, reg, mask, val, NULL, false, false)
Kuninori Morimoto30ed9cb2016-02-15 05:23:01 +000070#define regmap_update_bits_async(map, reg, mask, val)\
71 regmap_update_bits_base(map, reg, mask, val, NULL, true, false)
Kuninori Morimoto98c2dc42016-02-15 05:23:17 +000072#define regmap_update_bits_check(map, reg, mask, val, change)\
73 regmap_update_bits_base(map, reg, mask, val, change, false, false)
Kuninori Morimoto89d8d4b2016-02-15 05:23:37 +000074#define regmap_update_bits_check_async(map, reg, mask, val, change)\
75 regmap_update_bits_base(map, reg, mask, val, change, true, false)
Kuninori Morimotoca7a9442016-02-15 05:22:42 +000076
Kuninori Morimoto36741242016-02-15 05:24:15 +000077#define regmap_field_write(field, val) \
78 regmap_field_update_bits_base(field, ~0, val, NULL, false, false)
Kuninori Morimoto721ed642016-02-15 05:24:33 +000079#define regmap_field_update_bits(field, mask, val)\
80 regmap_field_update_bits_base(field, mask, val, NULL, false, false)
Kuninori Morimoto36741242016-02-15 05:24:15 +000081
Kuninori Morimotobbf2c462016-02-15 05:25:15 +000082#define regmap_fields_write(field, id, val) \
83 regmap_fields_update_bits_base(field, id, ~0, val, NULL, false, false)
Kuninori Morimoto48138602016-02-15 05:25:32 +000084#define regmap_fields_update_bits(field, id, mask, val)\
85 regmap_fields_update_bits_base(field, id, mask, val, NULL, false, false)
Kuninori Morimotobbf2c462016-02-15 05:25:15 +000086
Mark Brownb83d2ff2012-03-11 11:49:17 +000087#ifdef CONFIG_REGMAP
88
Stephen Warren141eba22012-05-24 10:47:26 -060089enum regmap_endian {
90 /* Unspecified -> 0 -> Backwards compatible default */
91 REGMAP_ENDIAN_DEFAULT = 0,
92 REGMAP_ENDIAN_BIG,
93 REGMAP_ENDIAN_LITTLE,
94 REGMAP_ENDIAN_NATIVE,
95};
96
Davide Ciminaghi76aad392012-11-20 15:20:30 +010097/**
98 * A register range, used for access related checks
99 * (readable/writeable/volatile/precious checks)
100 *
101 * @range_min: address of first register
102 * @range_max: address of last register
103 */
104struct regmap_range {
105 unsigned int range_min;
106 unsigned int range_max;
107};
108
Laxman Dewangan6112fe62013-09-20 18:00:10 +0530109#define regmap_reg_range(low, high) { .range_min = low, .range_max = high, }
110
Davide Ciminaghi76aad392012-11-20 15:20:30 +0100111/*
112 * A table of ranges including some yes ranges and some no ranges.
113 * If a register belongs to a no_range, the corresponding check function
114 * will return false. If a register belongs to a yes range, the corresponding
115 * check function will return true. "no_ranges" are searched first.
116 *
117 * @yes_ranges : pointer to an array of regmap ranges used as "yes ranges"
118 * @n_yes_ranges: size of the above array
119 * @no_ranges: pointer to an array of regmap ranges used as "no ranges"
120 * @n_no_ranges: size of the above array
121 */
122struct regmap_access_table {
123 const struct regmap_range *yes_ranges;
124 unsigned int n_yes_ranges;
125 const struct regmap_range *no_ranges;
126 unsigned int n_no_ranges;
127};
128
Davide Ciminaghi0d4529c2012-10-16 15:56:59 +0200129typedef void (*regmap_lock)(void *);
130typedef void (*regmap_unlock)(void *);
131
Mark Brownbd20eb52011-08-19 18:09:38 +0900132/**
Mark Browndd898b22011-07-20 22:28:58 +0100133 * Configuration for the register map of a device.
134 *
Stephen Warrend3c242e2012-04-04 15:48:29 -0600135 * @name: Optional name of the regmap. Useful when a device has multiple
136 * register regions.
137 *
Mark Browndd898b22011-07-20 22:28:58 +0100138 * @reg_bits: Number of bits in a register address, mandatory.
Stephen Warrenf01ee602012-04-09 13:40:24 -0600139 * @reg_stride: The register address stride. Valid register addresses are a
140 * multiple of this value. If set to 0, a value of 1 will be
141 * used.
Mark Brown82159ba2012-01-18 10:52:25 +0000142 * @pad_bits: Number of bits of padding between register and value.
Mark Browndd898b22011-07-20 22:28:58 +0100143 * @val_bits: Number of bits in a register value, mandatory.
Mark Brown2e2ae662011-07-20 22:33:39 +0100144 *
Mark Brown3566cc92011-08-09 10:23:22 +0900145 * @writeable_reg: Optional callback returning true if the register
Davide Ciminaghi76aad392012-11-20 15:20:30 +0100146 * can be written to. If this field is NULL but wr_table
147 * (see below) is not, the check is performed on such table
148 * (a register is writeable if it belongs to one of the ranges
149 * specified by wr_table).
Mark Brown3566cc92011-08-09 10:23:22 +0900150 * @readable_reg: Optional callback returning true if the register
Davide Ciminaghi76aad392012-11-20 15:20:30 +0100151 * can be read from. If this field is NULL but rd_table
152 * (see below) is not, the check is performed on such table
153 * (a register is readable if it belongs to one of the ranges
154 * specified by rd_table).
Mark Brown3566cc92011-08-09 10:23:22 +0900155 * @volatile_reg: Optional callback returning true if the register
Davide Ciminaghi76aad392012-11-20 15:20:30 +0100156 * value can't be cached. If this field is NULL but
157 * volatile_table (see below) is not, the check is performed on
158 * such table (a register is volatile if it belongs to one of
159 * the ranges specified by volatile_table).
Laszlo Pappbdc39642014-01-09 14:13:41 +0000160 * @precious_reg: Optional callback returning true if the register
Davide Ciminaghi76aad392012-11-20 15:20:30 +0100161 * should not be read outside of a call from the driver
Laszlo Pappbdc39642014-01-09 14:13:41 +0000162 * (e.g., a clear on read interrupt status register). If this
Davide Ciminaghi76aad392012-11-20 15:20:30 +0100163 * field is NULL but precious_table (see below) is not, the
164 * check is performed on such table (a register is precious if
165 * it belongs to one of the ranges specified by precious_table).
166 * @lock: Optional lock callback (overrides regmap's default lock
167 * function, based on spinlock or mutex).
168 * @unlock: As above for unlocking.
169 * @lock_arg: this field is passed as the only argument of lock/unlock
170 * functions (ignored in case regular lock/unlock functions
171 * are not overridden).
Andrey Smirnovd2a58842013-01-27 10:49:05 -0800172 * @reg_read: Optional callback that if filled will be used to perform
173 * all the reads from the registers. Should only be provided for
Laszlo Pappbdc39642014-01-09 14:13:41 +0000174 * devices whose read operation cannot be represented as a simple
175 * read operation on a bus such as SPI, I2C, etc. Most of the
176 * devices do not need this.
Andrey Smirnovd2a58842013-01-27 10:49:05 -0800177 * @reg_write: Same as above for writing.
178 * @fast_io: Register IO is fast. Use a spinlock instead of a mutex
179 * to perform locking. This field is ignored if custom lock/unlock
180 * functions are used (see fields lock/unlock of struct regmap_config).
181 * This field is a duplicate of a similar file in
182 * 'struct regmap_bus' and serves exact same purpose.
183 * Use it only for "no-bus" cases.
Mark Brownbd20eb52011-08-19 18:09:38 +0900184 * @max_register: Optional, specifies the maximum valid register index.
Davide Ciminaghi76aad392012-11-20 15:20:30 +0100185 * @wr_table: Optional, points to a struct regmap_access_table specifying
186 * valid ranges for write access.
187 * @rd_table: As above, for read access.
188 * @volatile_table: As above, for volatile registers.
189 * @precious_table: As above, for precious registers.
Mark Brownbd20eb52011-08-19 18:09:38 +0900190 * @reg_defaults: Power on reset values for registers (for use with
191 * register cache support).
192 * @num_reg_defaults: Number of elements in reg_defaults.
Lars-Peter Clausen6f306442011-09-05 20:46:32 +0200193 *
194 * @read_flag_mask: Mask to be set in the top byte of the register when doing
195 * a read.
196 * @write_flag_mask: Mask to be set in the top byte of the register when doing
197 * a write. If both read_flag_mask and write_flag_mask are
198 * empty the regmap_bus default masks are used.
Ashish Jangam2e33caf2012-04-30 23:23:40 +0100199 * @use_single_rw: If set, converts the bulk read and write operations into
200 * a series of single read and write operations. This is useful
201 * for device that does not support bulk read and write.
Opensource [Anthony Olech]e894c3f2014-03-04 13:54:02 +0000202 * @can_multi_write: If set, the device supports the multi write mode of bulk
203 * write operations, if clear multi write requests will be
204 * split into individual write operations
Dimitris Papastamos9fabe242011-09-19 14:34:00 +0100205 *
206 * @cache_type: The actual cache type.
207 * @reg_defaults_raw: Power on reset values for registers (for use with
208 * register cache support).
209 * @num_reg_defaults_raw: Number of elements in reg_defaults_raw.
Stephen Warren141eba22012-05-24 10:47:26 -0600210 * @reg_format_endian: Endianness for formatted register addresses. If this is
211 * DEFAULT, the @reg_format_endian_default value from the
212 * regmap bus is used.
213 * @val_format_endian: Endianness for formatted register values. If this is
214 * DEFAULT, the @reg_format_endian_default value from the
215 * regmap bus is used.
Krystian Garbaciak6863ca62012-06-15 11:23:56 +0100216 *
217 * @ranges: Array of configuration entries for virtual address ranges.
218 * @num_ranges: Number of range configuration entries.
Mark Browndd898b22011-07-20 22:28:58 +0100219 */
Mark Brownb83a3132011-05-11 19:59:58 +0200220struct regmap_config {
Stephen Warrend3c242e2012-04-04 15:48:29 -0600221 const char *name;
222
Mark Brownb83a3132011-05-11 19:59:58 +0200223 int reg_bits;
Stephen Warrenf01ee602012-04-09 13:40:24 -0600224 int reg_stride;
Mark Brown82159ba2012-01-18 10:52:25 +0000225 int pad_bits;
Mark Brownb83a3132011-05-11 19:59:58 +0200226 int val_bits;
Mark Brown2e2ae662011-07-20 22:33:39 +0100227
Mark Brown2e2ae662011-07-20 22:33:39 +0100228 bool (*writeable_reg)(struct device *dev, unsigned int reg);
229 bool (*readable_reg)(struct device *dev, unsigned int reg);
230 bool (*volatile_reg)(struct device *dev, unsigned int reg);
Mark Brown18694882011-08-08 15:40:22 +0900231 bool (*precious_reg)(struct device *dev, unsigned int reg);
Davide Ciminaghi0d4529c2012-10-16 15:56:59 +0200232 regmap_lock lock;
233 regmap_unlock unlock;
234 void *lock_arg;
Mark Brownbd20eb52011-08-19 18:09:38 +0900235
Andrey Smirnovd2a58842013-01-27 10:49:05 -0800236 int (*reg_read)(void *context, unsigned int reg, unsigned int *val);
237 int (*reg_write)(void *context, unsigned int reg, unsigned int val);
238
239 bool fast_io;
240
Mark Brownbd20eb52011-08-19 18:09:38 +0900241 unsigned int max_register;
Davide Ciminaghi76aad392012-11-20 15:20:30 +0100242 const struct regmap_access_table *wr_table;
243 const struct regmap_access_table *rd_table;
244 const struct regmap_access_table *volatile_table;
245 const struct regmap_access_table *precious_table;
Lars-Peter Clausen720e4612011-11-16 16:28:17 +0100246 const struct reg_default *reg_defaults;
Dimitris Papastamos9fabe242011-09-19 14:34:00 +0100247 unsigned int num_reg_defaults;
248 enum regcache_type cache_type;
249 const void *reg_defaults_raw;
250 unsigned int num_reg_defaults_raw;
Lars-Peter Clausen6f306442011-09-05 20:46:32 +0200251
252 u8 read_flag_mask;
253 u8 write_flag_mask;
Ashish Jangam2e33caf2012-04-30 23:23:40 +0100254
255 bool use_single_rw;
Opensource [Anthony Olech]e894c3f2014-03-04 13:54:02 +0000256 bool can_multi_write;
Stephen Warren141eba22012-05-24 10:47:26 -0600257
258 enum regmap_endian reg_format_endian;
259 enum regmap_endian val_format_endian;
Mark Brown38e23192012-07-22 19:26:07 +0100260
Krystian Garbaciak6863ca62012-06-15 11:23:56 +0100261 const struct regmap_range_cfg *ranges;
Mark Browne3549cd2012-10-02 20:17:15 +0100262 unsigned int num_ranges;
Krystian Garbaciak6863ca62012-06-15 11:23:56 +0100263};
264
265/**
266 * Configuration for indirectly accessed or paged registers.
267 * Registers, mapped to this virtual range, are accessed in two steps:
268 * 1. page selector register update;
269 * 2. access through data window registers.
270 *
Mark Brownd058bb42012-10-03 12:40:47 +0100271 * @name: Descriptive name for diagnostics
272 *
Krystian Garbaciak6863ca62012-06-15 11:23:56 +0100273 * @range_min: Address of the lowest register address in virtual range.
274 * @range_max: Address of the highest register in virtual range.
275 *
276 * @page_sel_reg: Register with selector field.
277 * @page_sel_mask: Bit shift for selector value.
278 * @page_sel_shift: Bit mask for selector value.
279 *
280 * @window_start: Address of first (lowest) register in data window.
281 * @window_len: Number of registers in data window.
282 */
283struct regmap_range_cfg {
Mark Brownd058bb42012-10-03 12:40:47 +0100284 const char *name;
285
Krystian Garbaciak6863ca62012-06-15 11:23:56 +0100286 /* Registers of virtual address range */
287 unsigned int range_min;
288 unsigned int range_max;
289
290 /* Page selector for indirect addressing */
291 unsigned int selector_reg;
292 unsigned int selector_mask;
293 int selector_shift;
294
295 /* Data window (per each page) */
296 unsigned int window_start;
297 unsigned int window_len;
Mark Brownb83a3132011-05-11 19:59:58 +0200298};
299
Mark Brown0d509f22013-01-27 22:07:38 +0800300struct regmap_async;
301
Stephen Warren0135bbc2012-04-04 15:48:30 -0600302typedef int (*regmap_hw_write)(void *context, const void *data,
Mark Brownb83a3132011-05-11 19:59:58 +0200303 size_t count);
Stephen Warren0135bbc2012-04-04 15:48:30 -0600304typedef int (*regmap_hw_gather_write)(void *context,
Mark Brownb83a3132011-05-11 19:59:58 +0200305 const void *reg, size_t reg_len,
306 const void *val, size_t val_len);
Mark Brown0d509f22013-01-27 22:07:38 +0800307typedef int (*regmap_hw_async_write)(void *context,
308 const void *reg, size_t reg_len,
309 const void *val, size_t val_len,
310 struct regmap_async *async);
Stephen Warren0135bbc2012-04-04 15:48:30 -0600311typedef int (*regmap_hw_read)(void *context,
Mark Brownb83a3132011-05-11 19:59:58 +0200312 const void *reg_buf, size_t reg_size,
313 void *val_buf, size_t val_size);
Boris BREZILLON3ac17032014-04-17 11:40:11 +0200314typedef int (*regmap_hw_reg_read)(void *context, unsigned int reg,
315 unsigned int *val);
316typedef int (*regmap_hw_reg_write)(void *context, unsigned int reg,
317 unsigned int val);
Jon Ringle77792b12015-10-01 12:38:07 -0400318typedef int (*regmap_hw_reg_update_bits)(void *context, unsigned int reg,
319 unsigned int mask, unsigned int val);
Mark Brown0d509f22013-01-27 22:07:38 +0800320typedef struct regmap_async *(*regmap_hw_async_alloc)(void);
Stephen Warren0135bbc2012-04-04 15:48:30 -0600321typedef void (*regmap_hw_free_context)(void *context);
Mark Brownb83a3132011-05-11 19:59:58 +0200322
323/**
324 * Description of a hardware bus for the register map infrastructure.
325 *
Stephen Warrenbacdbe02012-04-04 15:48:28 -0600326 * @fast_io: Register IO is fast. Use a spinlock instead of a mutex
Davide Ciminaghi0d4529c2012-10-16 15:56:59 +0200327 * to perform locking. This field is ignored if custom lock/unlock
328 * functions are used (see fields lock/unlock of
329 * struct regmap_config).
Mark Brownb83a3132011-05-11 19:59:58 +0200330 * @write: Write operation.
331 * @gather_write: Write operation with split register/value, return -ENOTSUPP
332 * if not implemented on a given device.
Mark Brown0d509f22013-01-27 22:07:38 +0800333 * @async_write: Write operation which completes asynchronously, optional and
334 * must serialise with respect to non-async I/O.
Markus Pargmannc5f58f22015-08-21 10:26:40 +0200335 * @reg_write: Write a single register value to the given register address. This
336 * write operation has to complete when returning from the function.
Mark Brownb83a3132011-05-11 19:59:58 +0200337 * @read: Read operation. Data is returned in the buffer used to transmit
338 * data.
Markus Pargmannc5f58f22015-08-21 10:26:40 +0200339 * @reg_read: Read a single register value from a given register address.
340 * @free_context: Free context.
Mark Brown0d509f22013-01-27 22:07:38 +0800341 * @async_alloc: Allocate a regmap_async() structure.
Mark Brownb83a3132011-05-11 19:59:58 +0200342 * @read_flag_mask: Mask to be set in the top byte of the register when doing
343 * a read.
Stephen Warren141eba22012-05-24 10:47:26 -0600344 * @reg_format_endian_default: Default endianness for formatted register
345 * addresses. Used when the regmap_config specifies DEFAULT. If this is
346 * DEFAULT, BIG is assumed.
347 * @val_format_endian_default: Default endianness for formatted register
348 * values. Used when the regmap_config specifies DEFAULT. If this is
349 * DEFAULT, BIG is assumed.
Markus Pargmannadaac452015-08-30 09:33:53 +0200350 * @max_raw_read: Max raw read size that can be used on the bus.
351 * @max_raw_write: Max raw write size that can be used on the bus.
Mark Brownb83a3132011-05-11 19:59:58 +0200352 */
353struct regmap_bus {
Stephen Warrenbacdbe02012-04-04 15:48:28 -0600354 bool fast_io;
Mark Brownb83a3132011-05-11 19:59:58 +0200355 regmap_hw_write write;
356 regmap_hw_gather_write gather_write;
Mark Brown0d509f22013-01-27 22:07:38 +0800357 regmap_hw_async_write async_write;
Boris BREZILLON3ac17032014-04-17 11:40:11 +0200358 regmap_hw_reg_write reg_write;
Jon Ringle77792b12015-10-01 12:38:07 -0400359 regmap_hw_reg_update_bits reg_update_bits;
Mark Brownb83a3132011-05-11 19:59:58 +0200360 regmap_hw_read read;
Boris BREZILLON3ac17032014-04-17 11:40:11 +0200361 regmap_hw_reg_read reg_read;
Stephen Warren0135bbc2012-04-04 15:48:30 -0600362 regmap_hw_free_context free_context;
Mark Brown0d509f22013-01-27 22:07:38 +0800363 regmap_hw_async_alloc async_alloc;
Mark Brownb83a3132011-05-11 19:59:58 +0200364 u8 read_flag_mask;
Stephen Warren141eba22012-05-24 10:47:26 -0600365 enum regmap_endian reg_format_endian_default;
366 enum regmap_endian val_format_endian_default;
Markus Pargmannadaac452015-08-30 09:33:53 +0200367 size_t max_raw_read;
368 size_t max_raw_write;
Mark Brownb83a3132011-05-11 19:59:58 +0200369};
370
Nicolas Boichat3cfe7a72015-07-08 14:30:18 +0800371/*
372 * __regmap_init functions.
373 *
374 * These functions take a lock key and name parameter, and should not be called
375 * directly. Instead, use the regmap_init macros that generate a key and name
376 * for each call.
377 */
378struct regmap *__regmap_init(struct device *dev,
379 const struct regmap_bus *bus,
380 void *bus_context,
381 const struct regmap_config *config,
382 struct lock_class_key *lock_key,
383 const char *lock_name);
384struct regmap *__regmap_init_i2c(struct i2c_client *i2c,
385 const struct regmap_config *config,
386 struct lock_class_key *lock_key,
387 const char *lock_name);
388struct regmap *__regmap_init_spi(struct spi_device *dev,
389 const struct regmap_config *config,
390 struct lock_class_key *lock_key,
391 const char *lock_name);
392struct regmap *__regmap_init_spmi_base(struct spmi_device *dev,
393 const struct regmap_config *config,
394 struct lock_class_key *lock_key,
395 const char *lock_name);
396struct regmap *__regmap_init_spmi_ext(struct spmi_device *dev,
397 const struct regmap_config *config,
398 struct lock_class_key *lock_key,
399 const char *lock_name);
400struct regmap *__regmap_init_mmio_clk(struct device *dev, const char *clk_id,
401 void __iomem *regs,
402 const struct regmap_config *config,
403 struct lock_class_key *lock_key,
404 const char *lock_name);
405struct regmap *__regmap_init_ac97(struct snd_ac97 *ac97,
406 const struct regmap_config *config,
407 struct lock_class_key *lock_key,
408 const char *lock_name);
409
410struct regmap *__devm_regmap_init(struct device *dev,
411 const struct regmap_bus *bus,
412 void *bus_context,
413 const struct regmap_config *config,
414 struct lock_class_key *lock_key,
415 const char *lock_name);
416struct regmap *__devm_regmap_init_i2c(struct i2c_client *i2c,
417 const struct regmap_config *config,
418 struct lock_class_key *lock_key,
419 const char *lock_name);
420struct regmap *__devm_regmap_init_spi(struct spi_device *dev,
421 const struct regmap_config *config,
422 struct lock_class_key *lock_key,
423 const char *lock_name);
424struct regmap *__devm_regmap_init_spmi_base(struct spmi_device *dev,
425 const struct regmap_config *config,
426 struct lock_class_key *lock_key,
427 const char *lock_name);
428struct regmap *__devm_regmap_init_spmi_ext(struct spmi_device *dev,
429 const struct regmap_config *config,
430 struct lock_class_key *lock_key,
431 const char *lock_name);
432struct regmap *__devm_regmap_init_mmio_clk(struct device *dev,
433 const char *clk_id,
434 void __iomem *regs,
435 const struct regmap_config *config,
436 struct lock_class_key *lock_key,
437 const char *lock_name);
438struct regmap *__devm_regmap_init_ac97(struct snd_ac97 *ac97,
439 const struct regmap_config *config,
440 struct lock_class_key *lock_key,
441 const char *lock_name);
442
443/*
444 * Wrapper for regmap_init macros to include a unique lockdep key and name
445 * for each call. No-op if CONFIG_LOCKDEP is not set.
446 *
447 * @fn: Real function to call (in the form __[*_]regmap_init[_*])
448 * @name: Config variable name (#config in the calling macro)
449 **/
450#ifdef CONFIG_LOCKDEP
451#define __regmap_lockdep_wrapper(fn, name, ...) \
452( \
453 ({ \
454 static struct lock_class_key _key; \
455 fn(__VA_ARGS__, &_key, \
456 KBUILD_BASENAME ":" \
457 __stringify(__LINE__) ":" \
458 "(" name ")->lock"); \
459 }) \
460)
461#else
462#define __regmap_lockdep_wrapper(fn, name, ...) fn(__VA_ARGS__, NULL, NULL)
463#endif
464
Nicolas Boichat1ed81112015-08-11 18:04:21 +0800465/**
466 * regmap_init(): Initialise register map
467 *
468 * @dev: Device that will be interacted with
469 * @bus: Bus-specific callbacks to use with device
470 * @bus_context: Data passed to bus-specific callbacks
471 * @config: Configuration for register map
472 *
473 * The return value will be an ERR_PTR() on error or a valid pointer to
474 * a struct regmap. This function should generally not be called
475 * directly, it should be called by bus-specific init functions.
476 */
Nicolas Boichat3cfe7a72015-07-08 14:30:18 +0800477#define regmap_init(dev, bus, bus_context, config) \
478 __regmap_lockdep_wrapper(__regmap_init, #config, \
479 dev, bus, bus_context, config)
Michal Simek6cfec042014-02-10 16:22:33 +0100480int regmap_attach_dev(struct device *dev, struct regmap *map,
Nicolas Boichat3cfe7a72015-07-08 14:30:18 +0800481 const struct regmap_config *config);
Mark Browna676f082011-05-12 11:42:10 +0200482
Nicolas Boichat1ed81112015-08-11 18:04:21 +0800483/**
484 * regmap_init_i2c(): Initialise register map
485 *
486 * @i2c: Device that will be interacted with
487 * @config: Configuration for register map
488 *
489 * The return value will be an ERR_PTR() on error or a valid pointer to
490 * a struct regmap.
491 */
Nicolas Boichat3cfe7a72015-07-08 14:30:18 +0800492#define regmap_init_i2c(i2c, config) \
493 __regmap_lockdep_wrapper(__regmap_init_i2c, #config, \
494 i2c, config)
Mark Brown22853222014-11-18 19:45:51 +0100495
Nicolas Boichat1ed81112015-08-11 18:04:21 +0800496/**
497 * regmap_init_spi(): Initialise register map
498 *
499 * @spi: Device that will be interacted with
500 * @config: Configuration for register map
501 *
502 * The return value will be an ERR_PTR() on error or a valid pointer to
503 * a struct regmap.
504 */
Nicolas Boichat3cfe7a72015-07-08 14:30:18 +0800505#define regmap_init_spi(dev, config) \
506 __regmap_lockdep_wrapper(__regmap_init_spi, #config, \
507 dev, config)
Nicolas Boichat1ed81112015-08-11 18:04:21 +0800508
509/**
510 * regmap_init_spmi_base(): Create regmap for the Base register space
511 * @sdev: SPMI device that will be interacted with
512 * @config: Configuration for register map
513 *
514 * The return value will be an ERR_PTR() on error or a valid pointer to
515 * a struct regmap.
516 */
Nicolas Boichat3cfe7a72015-07-08 14:30:18 +0800517#define regmap_init_spmi_base(dev, config) \
518 __regmap_lockdep_wrapper(__regmap_init_spmi_base, #config, \
519 dev, config)
Nicolas Boichat1ed81112015-08-11 18:04:21 +0800520
521/**
522 * regmap_init_spmi_ext(): Create regmap for Ext register space
523 * @sdev: Device that will be interacted with
524 * @config: Configuration for register map
525 *
526 * The return value will be an ERR_PTR() on error or a valid pointer to
527 * a struct regmap.
528 */
Nicolas Boichat3cfe7a72015-07-08 14:30:18 +0800529#define regmap_init_spmi_ext(dev, config) \
530 __regmap_lockdep_wrapper(__regmap_init_spmi_ext, #config, \
531 dev, config)
Nicolas Boichat1ed81112015-08-11 18:04:21 +0800532
533/**
534 * regmap_init_mmio_clk(): Initialise register map with register clock
535 *
536 * @dev: Device that will be interacted with
537 * @clk_id: register clock consumer ID
538 * @regs: Pointer to memory-mapped IO region
539 * @config: Configuration for register map
540 *
541 * The return value will be an ERR_PTR() on error or a valid pointer to
542 * a struct regmap.
543 */
Nicolas Boichat3cfe7a72015-07-08 14:30:18 +0800544#define regmap_init_mmio_clk(dev, clk_id, regs, config) \
545 __regmap_lockdep_wrapper(__regmap_init_mmio_clk, #config, \
546 dev, clk_id, regs, config)
Philipp Zabel878ec672013-02-14 17:39:08 +0100547
548/**
549 * regmap_init_mmio(): Initialise register map
550 *
551 * @dev: Device that will be interacted with
552 * @regs: Pointer to memory-mapped IO region
553 * @config: Configuration for register map
554 *
555 * The return value will be an ERR_PTR() on error or a valid pointer to
556 * a struct regmap.
557 */
Nicolas Boichat3cfe7a72015-07-08 14:30:18 +0800558#define regmap_init_mmio(dev, regs, config) \
559 regmap_init_mmio_clk(dev, NULL, regs, config)
Philipp Zabel878ec672013-02-14 17:39:08 +0100560
561/**
Nicolas Boichat1ed81112015-08-11 18:04:21 +0800562 * regmap_init_ac97(): Initialise AC'97 register map
563 *
564 * @ac97: Device that will be interacted with
565 * @config: Configuration for register map
566 *
567 * The return value will be an ERR_PTR() on error or a valid pointer to
568 * a struct regmap.
569 */
570#define regmap_init_ac97(ac97, config) \
571 __regmap_lockdep_wrapper(__regmap_init_ac97, #config, \
572 ac97, config)
573bool regmap_ac97_default_volatile(struct device *dev, unsigned int reg);
574
575/**
576 * devm_regmap_init(): Initialise managed register map
577 *
578 * @dev: Device that will be interacted with
579 * @bus: Bus-specific callbacks to use with device
580 * @bus_context: Data passed to bus-specific callbacks
581 * @config: Configuration for register map
582 *
583 * The return value will be an ERR_PTR() on error or a valid pointer
584 * to a struct regmap. This function should generally not be called
585 * directly, it should be called by bus-specific init functions. The
586 * map will be automatically freed by the device management code.
587 */
588#define devm_regmap_init(dev, bus, bus_context, config) \
589 __regmap_lockdep_wrapper(__devm_regmap_init, #config, \
590 dev, bus, bus_context, config)
591
592/**
593 * devm_regmap_init_i2c(): Initialise managed register map
594 *
595 * @i2c: Device that will be interacted with
596 * @config: Configuration for register map
597 *
598 * The return value will be an ERR_PTR() on error or a valid pointer
599 * to a struct regmap. The regmap will be automatically freed by the
600 * device management code.
601 */
602#define devm_regmap_init_i2c(i2c, config) \
603 __regmap_lockdep_wrapper(__devm_regmap_init_i2c, #config, \
604 i2c, config)
605
606/**
607 * devm_regmap_init_spi(): Initialise register map
608 *
609 * @spi: Device that will be interacted with
610 * @config: Configuration for register map
611 *
612 * The return value will be an ERR_PTR() on error or a valid pointer
613 * to a struct regmap. The map will be automatically freed by the
614 * device management code.
615 */
616#define devm_regmap_init_spi(dev, config) \
617 __regmap_lockdep_wrapper(__devm_regmap_init_spi, #config, \
618 dev, config)
619
620/**
621 * devm_regmap_init_spmi_base(): Create managed regmap for Base register space
622 * @sdev: SPMI device that will be interacted with
623 * @config: Configuration for register map
624 *
625 * The return value will be an ERR_PTR() on error or a valid pointer
626 * to a struct regmap. The regmap will be automatically freed by the
627 * device management code.
628 */
629#define devm_regmap_init_spmi_base(dev, config) \
630 __regmap_lockdep_wrapper(__devm_regmap_init_spmi_base, #config, \
631 dev, config)
632
633/**
634 * devm_regmap_init_spmi_ext(): Create managed regmap for Ext register space
635 * @sdev: SPMI device that will be interacted with
636 * @config: Configuration for register map
637 *
638 * The return value will be an ERR_PTR() on error or a valid pointer
639 * to a struct regmap. The regmap will be automatically freed by the
640 * device management code.
641 */
642#define devm_regmap_init_spmi_ext(dev, config) \
643 __regmap_lockdep_wrapper(__devm_regmap_init_spmi_ext, #config, \
644 dev, config)
645
646/**
647 * devm_regmap_init_mmio_clk(): Initialise managed register map with clock
648 *
649 * @dev: Device that will be interacted with
650 * @clk_id: register clock consumer ID
651 * @regs: Pointer to memory-mapped IO region
652 * @config: Configuration for register map
653 *
654 * The return value will be an ERR_PTR() on error or a valid pointer
655 * to a struct regmap. The regmap will be automatically freed by the
656 * device management code.
657 */
658#define devm_regmap_init_mmio_clk(dev, clk_id, regs, config) \
659 __regmap_lockdep_wrapper(__devm_regmap_init_mmio_clk, #config, \
660 dev, clk_id, regs, config)
Philipp Zabel878ec672013-02-14 17:39:08 +0100661
662/**
663 * devm_regmap_init_mmio(): Initialise managed register map
664 *
665 * @dev: Device that will be interacted with
666 * @regs: Pointer to memory-mapped IO region
667 * @config: Configuration for register map
668 *
669 * The return value will be an ERR_PTR() on error or a valid pointer
670 * to a struct regmap. The regmap will be automatically freed by the
671 * device management code.
672 */
Nicolas Boichat3cfe7a72015-07-08 14:30:18 +0800673#define devm_regmap_init_mmio(dev, regs, config) \
674 devm_regmap_init_mmio_clk(dev, NULL, regs, config)
Mark Brownc0eb4672012-01-30 19:56:52 +0000675
Nicolas Boichat1ed81112015-08-11 18:04:21 +0800676/**
677 * devm_regmap_init_ac97(): Initialise AC'97 register map
678 *
679 * @ac97: Device that will be interacted with
680 * @config: Configuration for register map
681 *
682 * The return value will be an ERR_PTR() on error or a valid pointer
683 * to a struct regmap. The regmap will be automatically freed by the
684 * device management code.
685 */
686#define devm_regmap_init_ac97(ac97, config) \
687 __regmap_lockdep_wrapper(__devm_regmap_init_ac97, #config, \
688 ac97, config)
Mark Brownb83a3132011-05-11 19:59:58 +0200689
690void regmap_exit(struct regmap *map);
691int regmap_reinit_cache(struct regmap *map,
692 const struct regmap_config *config);
Mark Brown72b39f62012-05-08 17:44:40 +0100693struct regmap *dev_get_regmap(struct device *dev, const char *name);
Tuomas Tynkkynen8d7d3972014-07-21 18:38:47 +0300694struct device *regmap_get_device(struct regmap *map);
Mark Brownb83a3132011-05-11 19:59:58 +0200695int regmap_write(struct regmap *map, unsigned int reg, unsigned int val);
Mark Brown915f4412013-10-09 13:30:10 +0100696int regmap_write_async(struct regmap *map, unsigned int reg, unsigned int val);
Mark Brownb83a3132011-05-11 19:59:58 +0200697int regmap_raw_write(struct regmap *map, unsigned int reg,
698 const void *val, size_t val_len);
Laxman Dewangan8eaeb212012-02-12 19:49:43 +0530699int regmap_bulk_write(struct regmap *map, unsigned int reg, const void *val,
700 size_t val_count);
Nariman Poushin8019ff62015-07-16 16:36:21 +0100701int regmap_multi_reg_write(struct regmap *map, const struct reg_sequence *regs,
Anthony Oleche33fabd2013-10-11 15:31:11 +0100702 int num_regs);
Charles Keepax1d5b40b2014-02-25 13:45:50 +0000703int regmap_multi_reg_write_bypassed(struct regmap *map,
Nariman Poushin8019ff62015-07-16 16:36:21 +0100704 const struct reg_sequence *regs,
Charles Keepax1d5b40b2014-02-25 13:45:50 +0000705 int num_regs);
Mark Brown0d509f22013-01-27 22:07:38 +0800706int regmap_raw_write_async(struct regmap *map, unsigned int reg,
707 const void *val, size_t val_len);
Mark Brownb83a3132011-05-11 19:59:58 +0200708int regmap_read(struct regmap *map, unsigned int reg, unsigned int *val);
709int regmap_raw_read(struct regmap *map, unsigned int reg,
710 void *val, size_t val_len);
711int regmap_bulk_read(struct regmap *map, unsigned int reg, void *val,
712 size_t val_count);
Kuninori Morimoto91d31b92016-02-15 05:22:18 +0000713int regmap_update_bits_base(struct regmap *map, unsigned int reg,
714 unsigned int mask, unsigned int val,
715 bool *change, bool async, bool force);
Kuninori Morimotofd4b7286c2015-06-16 08:52:39 +0000716int regmap_write_bits(struct regmap *map, unsigned int reg,
717 unsigned int mask, unsigned int val);
Mark Browna6539c32012-02-17 14:20:14 -0800718int regmap_get_val_bytes(struct regmap *map);
Srinivas Kandagatla668abc72015-05-21 17:42:43 +0100719int regmap_get_max_register(struct regmap *map);
Srinivas Kandagatlaa2f776c2015-05-21 17:42:54 +0100720int regmap_get_reg_stride(struct regmap *map);
Mark Brown0d509f22013-01-27 22:07:38 +0800721int regmap_async_complete(struct regmap *map);
Mark Brown221ad7f2013-03-26 21:24:20 +0000722bool regmap_can_raw_write(struct regmap *map);
Markus Pargmannf50c9eb2015-08-30 09:33:54 +0200723size_t regmap_get_raw_read_max(struct regmap *map);
724size_t regmap_get_raw_write_max(struct regmap *map);
Mark Brownb83a3132011-05-11 19:59:58 +0200725
Mark Brown39a58432011-09-19 18:21:49 +0100726int regcache_sync(struct regmap *map);
Mark Brown4d4cfd12012-02-23 20:53:37 +0000727int regcache_sync_region(struct regmap *map, unsigned int min,
728 unsigned int max);
Mark Brown697e85b2013-05-08 13:55:22 +0100729int regcache_drop_region(struct regmap *map, unsigned int min,
730 unsigned int max);
Mark Brown92afb282011-09-19 18:22:14 +0100731void regcache_cache_only(struct regmap *map, bool enable);
Dimitris Papastamos6eb0f5e2011-09-29 14:36:27 +0100732void regcache_cache_bypass(struct regmap *map, bool enable);
Mark Brown8ae0d7e2011-10-26 10:34:22 +0200733void regcache_mark_dirty(struct regmap *map);
Mark Brown92afb282011-09-19 18:22:14 +0100734
Mark Brown154881e2013-05-08 13:55:23 +0100735bool regmap_check_range_table(struct regmap *map, unsigned int reg,
736 const struct regmap_access_table *table);
737
Nariman Poushin8019ff62015-07-16 16:36:21 +0100738int regmap_register_patch(struct regmap *map, const struct reg_sequence *regs,
Mark Brown22f0d902012-01-21 12:01:14 +0000739 int num_regs);
Nenghua Cao13ff50c2014-02-19 18:44:13 +0800740int regmap_parse_val(struct regmap *map, const void *buf,
741 unsigned int *val);
Mark Brown22f0d902012-01-21 12:01:14 +0000742
Davide Ciminaghi76aad392012-11-20 15:20:30 +0100743static inline bool regmap_reg_in_range(unsigned int reg,
744 const struct regmap_range *range)
745{
746 return reg >= range->range_min && reg <= range->range_max;
747}
748
749bool regmap_reg_in_ranges(unsigned int reg,
750 const struct regmap_range *ranges,
751 unsigned int nranges);
752
Mark Brownf8beab22011-10-28 23:50:49 +0200753/**
Srinivas Kandagatla67252282013-06-11 13:18:15 +0100754 * Description of an register field
755 *
756 * @reg: Offset of the register within the regmap bank
757 * @lsb: lsb of the register field.
Bintian Wangf27b37f2015-01-27 20:50:29 +0800758 * @msb: msb of the register field.
Kuninori Morimotoa0102372013-09-01 20:30:50 -0700759 * @id_size: port size if it has some ports
760 * @id_offset: address offset for each ports
Srinivas Kandagatla67252282013-06-11 13:18:15 +0100761 */
762struct reg_field {
763 unsigned int reg;
764 unsigned int lsb;
765 unsigned int msb;
Kuninori Morimotoa0102372013-09-01 20:30:50 -0700766 unsigned int id_size;
767 unsigned int id_offset;
Srinivas Kandagatla67252282013-06-11 13:18:15 +0100768};
769
770#define REG_FIELD(_reg, _lsb, _msb) { \
771 .reg = _reg, \
772 .lsb = _lsb, \
773 .msb = _msb, \
774 }
775
776struct regmap_field *regmap_field_alloc(struct regmap *regmap,
777 struct reg_field reg_field);
778void regmap_field_free(struct regmap_field *field);
779
780struct regmap_field *devm_regmap_field_alloc(struct device *dev,
781 struct regmap *regmap, struct reg_field reg_field);
782void devm_regmap_field_free(struct device *dev, struct regmap_field *field);
783
784int regmap_field_read(struct regmap_field *field, unsigned int *val);
Kuninori Morimoto28972ea2016-02-15 05:23:55 +0000785int regmap_field_update_bits_base(struct regmap_field *field,
786 unsigned int mask, unsigned int val,
787 bool *change, bool async, bool force);
Kuninori Morimotoe874e6c2015-06-16 08:52:55 +0000788int regmap_fields_force_write(struct regmap_field *field, unsigned int id,
789 unsigned int val);
Kuninori Morimotoa0102372013-09-01 20:30:50 -0700790int regmap_fields_read(struct regmap_field *field, unsigned int id,
791 unsigned int *val);
Kuninori Morimotoe126ede2016-02-15 05:24:51 +0000792int regmap_fields_update_bits_base(struct regmap_field *field, unsigned int id,
793 unsigned int mask, unsigned int val,
794 bool *change, bool async, bool force);
Srinivas Kandagatla67252282013-06-11 13:18:15 +0100795
796/**
Mark Brownf8beab22011-10-28 23:50:49 +0200797 * Description of an IRQ for the generic regmap irq_chip.
798 *
799 * @reg_offset: Offset of the status/mask register within the bank
800 * @mask: Mask used to flag/control the register.
Laxman Dewangan7a78479f2015-12-22 18:25:26 +0530801 * @type_reg_offset: Offset register for the irq type setting.
802 * @type_rising_mask: Mask bit to configure RISING type irq.
803 * @type_falling_mask: Mask bit to configure FALLING type irq.
Mark Brownf8beab22011-10-28 23:50:49 +0200804 */
805struct regmap_irq {
806 unsigned int reg_offset;
807 unsigned int mask;
Laxman Dewangan7a78479f2015-12-22 18:25:26 +0530808 unsigned int type_reg_offset;
809 unsigned int type_rising_mask;
810 unsigned int type_falling_mask;
Mark Brownf8beab22011-10-28 23:50:49 +0200811};
812
Qipeng Zhab4fe8ba2015-09-15 00:39:17 +0800813#define REGMAP_IRQ_REG(_irq, _off, _mask) \
814 [_irq] = { .reg_offset = (_off), .mask = (_mask) }
815
Mark Brownf8beab22011-10-28 23:50:49 +0200816/**
817 * Description of a generic regmap irq_chip. This is not intended to
818 * handle every possible interrupt controller, but it should handle a
819 * substantial proportion of those that are found in the wild.
820 *
821 * @name: Descriptive name for IRQ controller.
822 *
823 * @status_base: Base status register address.
824 * @mask_base: Base mask register address.
Guo Zeng7b7d1962015-09-17 05:23:20 +0000825 * @unmask_base: Base unmask register address. for chips who have
826 * separate mask and unmask registers
Alexander Shiyand3233432013-12-15 13:36:51 +0400827 * @ack_base: Base ack address. If zero then the chip is clear on read.
828 * Using zero value is possible with @use_ack bit.
Mark Browna43fd502012-06-05 14:34:03 +0100829 * @wake_base: Base address for wake enables. If zero unsupported.
Laxman Dewangan7a78479f2015-12-22 18:25:26 +0530830 * @type_base: Base address for irq type. If zero unsupported.
Graeme Gregory022f926a2012-05-14 22:40:43 +0900831 * @irq_reg_stride: Stride to use for chips where registers are not contiguous.
Philipp Zabel2753e6f2013-07-22 17:15:52 +0200832 * @init_ack_masked: Ack all masked interrupts once during initalization.
Philipp Zabel68622bd2013-07-24 10:26:48 +0200833 * @mask_invert: Inverted mask register: cleared bits are masked out.
Alexander Shiyand3233432013-12-15 13:36:51 +0400834 * @use_ack: Use @ack register even if it is zero.
Guo Zenga650fdd2015-09-17 05:23:21 +0000835 * @ack_invert: Inverted ack register: cleared bits for ack.
Philipp Zabel68622bd2013-07-24 10:26:48 +0200836 * @wake_invert: Inverted wake register: cleared bits are wake enabled.
Laxman Dewangan7a78479f2015-12-22 18:25:26 +0530837 * @type_invert: Invert the type flags.
Mark Brown0c00c502012-07-24 15:41:19 +0100838 * @runtime_pm: Hold a runtime PM lock on the device when accessing it.
Mark Brownf8beab22011-10-28 23:50:49 +0200839 *
840 * @num_regs: Number of registers in each control bank.
841 * @irqs: Descriptors for individual IRQs. Interrupt numbers are
842 * assigned based on the index in the array of the interrupt.
843 * @num_irqs: Number of descriptors.
Laxman Dewangan7a78479f2015-12-22 18:25:26 +0530844 * @num_type_reg: Number of type registers.
845 * @type_reg_stride: Stride to use for chips where type registers are not
846 * contiguous.
Mark Brownf8beab22011-10-28 23:50:49 +0200847 */
848struct regmap_irq_chip {
849 const char *name;
850
851 unsigned int status_base;
852 unsigned int mask_base;
Guo Zeng7b7d1962015-09-17 05:23:20 +0000853 unsigned int unmask_base;
Mark Brownf8beab22011-10-28 23:50:49 +0200854 unsigned int ack_base;
Mark Browna43fd502012-06-05 14:34:03 +0100855 unsigned int wake_base;
Laxman Dewangan7a78479f2015-12-22 18:25:26 +0530856 unsigned int type_base;
Graeme Gregory022f926a2012-05-14 22:40:43 +0900857 unsigned int irq_reg_stride;
Philipp Zabelf484f7a2013-07-24 10:26:42 +0200858 bool init_ack_masked:1;
859 bool mask_invert:1;
Alexander Shiyand3233432013-12-15 13:36:51 +0400860 bool use_ack:1;
Guo Zenga650fdd2015-09-17 05:23:21 +0000861 bool ack_invert:1;
Philipp Zabelf484f7a2013-07-24 10:26:42 +0200862 bool wake_invert:1;
863 bool runtime_pm:1;
Laxman Dewangan7a78479f2015-12-22 18:25:26 +0530864 bool type_invert:1;
Mark Brownf8beab22011-10-28 23:50:49 +0200865
866 int num_regs;
867
868 const struct regmap_irq *irqs;
869 int num_irqs;
Laxman Dewangan7a78479f2015-12-22 18:25:26 +0530870
871 int num_type_reg;
872 unsigned int type_reg_stride;
Mark Brownf8beab22011-10-28 23:50:49 +0200873};
874
875struct regmap_irq_chip_data;
876
877int regmap_add_irq_chip(struct regmap *map, int irq, int irq_flags,
Mark Brownb026ddb2012-05-31 21:01:46 +0100878 int irq_base, const struct regmap_irq_chip *chip,
Mark Brownf8beab22011-10-28 23:50:49 +0200879 struct regmap_irq_chip_data **data);
880void regmap_del_irq_chip(int irq, struct regmap_irq_chip_data *data);
Mark Brown209a6002011-12-05 16:10:15 +0000881int regmap_irq_chip_get_base(struct regmap_irq_chip_data *data);
Mark Brown4af8be62012-05-13 10:59:56 +0100882int regmap_irq_get_virq(struct regmap_irq_chip_data *data, int irq);
Mark Brown90f790d2012-08-20 21:45:05 +0100883struct irq_domain *regmap_irq_get_domain(struct regmap_irq_chip_data *data);
Mark Brownb83a3132011-05-11 19:59:58 +0200884
Mark Brown9cde5fc2012-02-17 14:49:51 -0800885#else
886
887/*
888 * These stubs should only ever be called by generic code which has
889 * regmap based facilities, if they ever get called at runtime
890 * something is going wrong and something probably needs to select
891 * REGMAP.
892 */
893
894static inline int regmap_write(struct regmap *map, unsigned int reg,
895 unsigned int val)
896{
897 WARN_ONCE(1, "regmap API is disabled");
898 return -EINVAL;
899}
900
Mark Brown915f4412013-10-09 13:30:10 +0100901static inline int regmap_write_async(struct regmap *map, unsigned int reg,
902 unsigned int val)
903{
904 WARN_ONCE(1, "regmap API is disabled");
905 return -EINVAL;
906}
907
Mark Brown9cde5fc2012-02-17 14:49:51 -0800908static inline int regmap_raw_write(struct regmap *map, unsigned int reg,
909 const void *val, size_t val_len)
910{
911 WARN_ONCE(1, "regmap API is disabled");
912 return -EINVAL;
913}
914
Mark Brown0d509f22013-01-27 22:07:38 +0800915static inline int regmap_raw_write_async(struct regmap *map, unsigned int reg,
916 const void *val, size_t val_len)
917{
918 WARN_ONCE(1, "regmap API is disabled");
919 return -EINVAL;
920}
921
Mark Brown9cde5fc2012-02-17 14:49:51 -0800922static inline int regmap_bulk_write(struct regmap *map, unsigned int reg,
923 const void *val, size_t val_count)
924{
925 WARN_ONCE(1, "regmap API is disabled");
926 return -EINVAL;
927}
928
929static inline int regmap_read(struct regmap *map, unsigned int reg,
930 unsigned int *val)
931{
932 WARN_ONCE(1, "regmap API is disabled");
933 return -EINVAL;
934}
935
936static inline int regmap_raw_read(struct regmap *map, unsigned int reg,
937 void *val, size_t val_len)
938{
939 WARN_ONCE(1, "regmap API is disabled");
940 return -EINVAL;
941}
942
943static inline int regmap_bulk_read(struct regmap *map, unsigned int reg,
944 void *val, size_t val_count)
945{
946 WARN_ONCE(1, "regmap API is disabled");
947 return -EINVAL;
948}
949
Kuninori Morimoto91d31b92016-02-15 05:22:18 +0000950static inline int regmap_update_bits_base(struct regmap *map, unsigned int reg,
951 unsigned int mask, unsigned int val,
952 bool *change, bool async, bool force)
953{
954 WARN_ONCE(1, "regmap API is disabled");
955 return -EINVAL;
956}
957
Kuninori Morimotofd4b7286c2015-06-16 08:52:39 +0000958static inline int regmap_write_bits(struct regmap *map, unsigned int reg,
959 unsigned int mask, unsigned int val)
960{
961 WARN_ONCE(1, "regmap API is disabled");
962 return -EINVAL;
963}
964
Kuninori Morimoto28972ea2016-02-15 05:23:55 +0000965static inline int regmap_field_update_bits_base(struct regmap_field *field,
966 unsigned int mask, unsigned int val,
967 bool *change, bool async, bool force)
968{
969 WARN_ONCE(1, "regmap API is disabled");
970 return -EINVAL;
971}
972
Kuninori Morimotoe126ede2016-02-15 05:24:51 +0000973static inline int regmap_fields_update_bits_base(struct regmap_field *field,
974 unsigned int id,
975 unsigned int mask, unsigned int val,
976 bool *change, bool async, bool force)
977{
978 WARN_ONCE(1, "regmap API is disabled");
979 return -EINVAL;
980}
981
Mark Brown9cde5fc2012-02-17 14:49:51 -0800982static inline int regmap_get_val_bytes(struct regmap *map)
983{
984 WARN_ONCE(1, "regmap API is disabled");
985 return -EINVAL;
986}
987
Srinivas Kandagatla668abc72015-05-21 17:42:43 +0100988static inline int regmap_get_max_register(struct regmap *map)
989{
990 WARN_ONCE(1, "regmap API is disabled");
991 return -EINVAL;
992}
993
Srinivas Kandagatlaa2f776c2015-05-21 17:42:54 +0100994static inline int regmap_get_reg_stride(struct regmap *map)
995{
996 WARN_ONCE(1, "regmap API is disabled");
997 return -EINVAL;
998}
999
Mark Brown9cde5fc2012-02-17 14:49:51 -08001000static inline int regcache_sync(struct regmap *map)
1001{
1002 WARN_ONCE(1, "regmap API is disabled");
1003 return -EINVAL;
1004}
1005
Mark Browna313f9f2012-02-23 19:49:43 +00001006static inline int regcache_sync_region(struct regmap *map, unsigned int min,
1007 unsigned int max)
1008{
1009 WARN_ONCE(1, "regmap API is disabled");
1010 return -EINVAL;
1011}
1012
Mark Brown697e85b2013-05-08 13:55:22 +01001013static inline int regcache_drop_region(struct regmap *map, unsigned int min,
1014 unsigned int max)
1015{
1016 WARN_ONCE(1, "regmap API is disabled");
1017 return -EINVAL;
1018}
1019
Mark Brown9cde5fc2012-02-17 14:49:51 -08001020static inline void regcache_cache_only(struct regmap *map, bool enable)
1021{
1022 WARN_ONCE(1, "regmap API is disabled");
1023}
1024
1025static inline void regcache_cache_bypass(struct regmap *map, bool enable)
1026{
1027 WARN_ONCE(1, "regmap API is disabled");
1028}
1029
1030static inline void regcache_mark_dirty(struct regmap *map)
1031{
1032 WARN_ONCE(1, "regmap API is disabled");
1033}
1034
Mark Brown0d509f22013-01-27 22:07:38 +08001035static inline void regmap_async_complete(struct regmap *map)
1036{
1037 WARN_ONCE(1, "regmap API is disabled");
1038}
1039
Mark Brown9cde5fc2012-02-17 14:49:51 -08001040static inline int regmap_register_patch(struct regmap *map,
Daniel Wagnera6baa3d2015-11-30 16:20:15 +01001041 const struct reg_sequence *regs,
Mark Brown9cde5fc2012-02-17 14:49:51 -08001042 int num_regs)
1043{
1044 WARN_ONCE(1, "regmap API is disabled");
1045 return -EINVAL;
1046}
1047
Nenghua Cao13ff50c2014-02-19 18:44:13 +08001048static inline int regmap_parse_val(struct regmap *map, const void *buf,
1049 unsigned int *val)
1050{
1051 WARN_ONCE(1, "regmap API is disabled");
1052 return -EINVAL;
1053}
1054
Mark Brown72b39f62012-05-08 17:44:40 +01001055static inline struct regmap *dev_get_regmap(struct device *dev,
1056 const char *name)
1057{
Mark Brown72b39f62012-05-08 17:44:40 +01001058 return NULL;
1059}
1060
Tuomas Tynkkynen8d7d3972014-07-21 18:38:47 +03001061static inline struct device *regmap_get_device(struct regmap *map)
1062{
1063 WARN_ONCE(1, "regmap API is disabled");
Mark Brown1d33dc62014-07-25 19:01:53 +01001064 return NULL;
Tuomas Tynkkynen8d7d3972014-07-21 18:38:47 +03001065}
1066
Mark Brown9cde5fc2012-02-17 14:49:51 -08001067#endif
1068
Mark Brownb83a3132011-05-11 19:59:58 +02001069#endif