blob: 3f5abc86b6b5f8caa30995e2b2e646b5d607f207 [file] [log] [blame]
Mark Brownb83a3132011-05-11 19:59:58 +02001#ifndef __LINUX_REGMAP_H
2#define __LINUX_REGMAP_H
3
4/*
5 * Register map access API
6 *
7 * Copyright 2011 Wolfson Microelectronics plc
8 *
9 * Author: Mark Brown <broonie@opensource.wolfsonmicro.com>
10 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License version 2 as
13 * published by the Free Software Foundation.
14 */
15
Mark Brownb83a3132011-05-11 19:59:58 +020016#include <linux/list.h>
Krystian Garbaciak6863ca62012-06-15 11:23:56 +010017#include <linux/rbtree.h>
Mateusz Krawczuk49ccc142013-08-06 18:34:40 +020018#include <linux/err.h>
Kevin Hilman3f0fa9a2013-08-14 16:05:02 -070019#include <linux/bug.h>
Mark Brownb83a3132011-05-11 19:59:58 +020020
Paul Gortmakerde477252011-05-26 13:46:22 -040021struct module;
Paul Gortmaker313162d2012-01-30 11:46:54 -050022struct device;
Mark Brown9943fa32011-06-20 19:02:29 +010023struct i2c_client;
Mark Brown90f790d2012-08-20 21:45:05 +010024struct irq_domain;
Mark Browna676f082011-05-12 11:42:10 +020025struct spi_device;
Josh Cartwrighta01779f2013-10-28 13:12:35 -050026struct spmi_device;
Mark Brownb83d2ff2012-03-11 11:49:17 +000027struct regmap;
Krystian Garbaciak6863ca62012-06-15 11:23:56 +010028struct regmap_range_cfg;
Srinivas Kandagatla67252282013-06-11 13:18:15 +010029struct regmap_field;
Mark Brown9943fa32011-06-20 19:02:29 +010030
Dimitris Papastamos9fabe242011-09-19 14:34:00 +010031/* An enum of all the supported cache types */
32enum regcache_type {
33 REGCACHE_NONE,
Dimitris Papastamos28644c802011-09-19 14:34:02 +010034 REGCACHE_RBTREE,
Mark Brown2ac902c2012-12-19 14:51:55 +000035 REGCACHE_COMPRESSED,
36 REGCACHE_FLAT,
Dimitris Papastamos9fabe242011-09-19 14:34:00 +010037};
38
Mark Browndd898b22011-07-20 22:28:58 +010039/**
Mark Brownbd20eb52011-08-19 18:09:38 +090040 * Default value for a register. We use an array of structs rather
41 * than a simple array as many modern devices have very sparse
42 * register maps.
43 *
44 * @reg: Register address.
45 * @def: Register default value.
46 */
47struct reg_default {
48 unsigned int reg;
49 unsigned int def;
50};
51
Mark Brownb83d2ff2012-03-11 11:49:17 +000052#ifdef CONFIG_REGMAP
53
Stephen Warren141eba22012-05-24 10:47:26 -060054enum regmap_endian {
55 /* Unspecified -> 0 -> Backwards compatible default */
56 REGMAP_ENDIAN_DEFAULT = 0,
57 REGMAP_ENDIAN_BIG,
58 REGMAP_ENDIAN_LITTLE,
59 REGMAP_ENDIAN_NATIVE,
60};
61
Davide Ciminaghi76aad392012-11-20 15:20:30 +010062/**
63 * A register range, used for access related checks
64 * (readable/writeable/volatile/precious checks)
65 *
66 * @range_min: address of first register
67 * @range_max: address of last register
68 */
69struct regmap_range {
70 unsigned int range_min;
71 unsigned int range_max;
72};
73
74/*
75 * A table of ranges including some yes ranges and some no ranges.
76 * If a register belongs to a no_range, the corresponding check function
77 * will return false. If a register belongs to a yes range, the corresponding
78 * check function will return true. "no_ranges" are searched first.
79 *
80 * @yes_ranges : pointer to an array of regmap ranges used as "yes ranges"
81 * @n_yes_ranges: size of the above array
82 * @no_ranges: pointer to an array of regmap ranges used as "no ranges"
83 * @n_no_ranges: size of the above array
84 */
85struct regmap_access_table {
86 const struct regmap_range *yes_ranges;
87 unsigned int n_yes_ranges;
88 const struct regmap_range *no_ranges;
89 unsigned int n_no_ranges;
90};
91
Davide Ciminaghi0d4529c2012-10-16 15:56:59 +020092typedef void (*regmap_lock)(void *);
93typedef void (*regmap_unlock)(void *);
94
Mark Brownbd20eb52011-08-19 18:09:38 +090095/**
Mark Browndd898b22011-07-20 22:28:58 +010096 * Configuration for the register map of a device.
97 *
Stephen Warrend3c242e2012-04-04 15:48:29 -060098 * @name: Optional name of the regmap. Useful when a device has multiple
99 * register regions.
100 *
Mark Browndd898b22011-07-20 22:28:58 +0100101 * @reg_bits: Number of bits in a register address, mandatory.
Stephen Warrenf01ee602012-04-09 13:40:24 -0600102 * @reg_stride: The register address stride. Valid register addresses are a
103 * multiple of this value. If set to 0, a value of 1 will be
104 * used.
Mark Brown82159ba2012-01-18 10:52:25 +0000105 * @pad_bits: Number of bits of padding between register and value.
Mark Browndd898b22011-07-20 22:28:58 +0100106 * @val_bits: Number of bits in a register value, mandatory.
Mark Brown2e2ae662011-07-20 22:33:39 +0100107 *
Mark Brown3566cc92011-08-09 10:23:22 +0900108 * @writeable_reg: Optional callback returning true if the register
Davide Ciminaghi76aad392012-11-20 15:20:30 +0100109 * can be written to. If this field is NULL but wr_table
110 * (see below) is not, the check is performed on such table
111 * (a register is writeable if it belongs to one of the ranges
112 * specified by wr_table).
Mark Brown3566cc92011-08-09 10:23:22 +0900113 * @readable_reg: Optional callback returning true if the register
Davide Ciminaghi76aad392012-11-20 15:20:30 +0100114 * can be read from. If this field is NULL but rd_table
115 * (see below) is not, the check is performed on such table
116 * (a register is readable if it belongs to one of the ranges
117 * specified by rd_table).
Mark Brown3566cc92011-08-09 10:23:22 +0900118 * @volatile_reg: Optional callback returning true if the register
Davide Ciminaghi76aad392012-11-20 15:20:30 +0100119 * value can't be cached. If this field is NULL but
120 * volatile_table (see below) is not, the check is performed on
121 * such table (a register is volatile if it belongs to one of
122 * the ranges specified by volatile_table).
Mark Brown3566cc92011-08-09 10:23:22 +0900123 * @precious_reg: Optional callback returning true if the rgister
Davide Ciminaghi76aad392012-11-20 15:20:30 +0100124 * should not be read outside of a call from the driver
125 * (eg, a clear on read interrupt status register). If this
126 * field is NULL but precious_table (see below) is not, the
127 * check is performed on such table (a register is precious if
128 * it belongs to one of the ranges specified by precious_table).
129 * @lock: Optional lock callback (overrides regmap's default lock
130 * function, based on spinlock or mutex).
131 * @unlock: As above for unlocking.
132 * @lock_arg: this field is passed as the only argument of lock/unlock
133 * functions (ignored in case regular lock/unlock functions
134 * are not overridden).
Andrey Smirnovd2a58842013-01-27 10:49:05 -0800135 * @reg_read: Optional callback that if filled will be used to perform
136 * all the reads from the registers. Should only be provided for
137 * devices whos read operation cannot be represented as a simple read
138 * operation on a bus such as SPI, I2C, etc. Most of the devices do
139 * not need this.
140 * @reg_write: Same as above for writing.
141 * @fast_io: Register IO is fast. Use a spinlock instead of a mutex
142 * to perform locking. This field is ignored if custom lock/unlock
143 * functions are used (see fields lock/unlock of struct regmap_config).
144 * This field is a duplicate of a similar file in
145 * 'struct regmap_bus' and serves exact same purpose.
146 * Use it only for "no-bus" cases.
Mark Brownbd20eb52011-08-19 18:09:38 +0900147 * @max_register: Optional, specifies the maximum valid register index.
Davide Ciminaghi76aad392012-11-20 15:20:30 +0100148 * @wr_table: Optional, points to a struct regmap_access_table specifying
149 * valid ranges for write access.
150 * @rd_table: As above, for read access.
151 * @volatile_table: As above, for volatile registers.
152 * @precious_table: As above, for precious registers.
Mark Brownbd20eb52011-08-19 18:09:38 +0900153 * @reg_defaults: Power on reset values for registers (for use with
154 * register cache support).
155 * @num_reg_defaults: Number of elements in reg_defaults.
Lars-Peter Clausen6f306442011-09-05 20:46:32 +0200156 *
157 * @read_flag_mask: Mask to be set in the top byte of the register when doing
158 * a read.
159 * @write_flag_mask: Mask to be set in the top byte of the register when doing
160 * a write. If both read_flag_mask and write_flag_mask are
161 * empty the regmap_bus default masks are used.
Ashish Jangam2e33caf2012-04-30 23:23:40 +0100162 * @use_single_rw: If set, converts the bulk read and write operations into
163 * a series of single read and write operations. This is useful
164 * for device that does not support bulk read and write.
Dimitris Papastamos9fabe242011-09-19 14:34:00 +0100165 *
166 * @cache_type: The actual cache type.
167 * @reg_defaults_raw: Power on reset values for registers (for use with
168 * register cache support).
169 * @num_reg_defaults_raw: Number of elements in reg_defaults_raw.
Stephen Warren141eba22012-05-24 10:47:26 -0600170 * @reg_format_endian: Endianness for formatted register addresses. If this is
171 * DEFAULT, the @reg_format_endian_default value from the
172 * regmap bus is used.
173 * @val_format_endian: Endianness for formatted register values. If this is
174 * DEFAULT, the @reg_format_endian_default value from the
175 * regmap bus is used.
Krystian Garbaciak6863ca62012-06-15 11:23:56 +0100176 *
177 * @ranges: Array of configuration entries for virtual address ranges.
178 * @num_ranges: Number of range configuration entries.
Mark Browndd898b22011-07-20 22:28:58 +0100179 */
Mark Brownb83a3132011-05-11 19:59:58 +0200180struct regmap_config {
Stephen Warrend3c242e2012-04-04 15:48:29 -0600181 const char *name;
182
Mark Brownb83a3132011-05-11 19:59:58 +0200183 int reg_bits;
Stephen Warrenf01ee602012-04-09 13:40:24 -0600184 int reg_stride;
Mark Brown82159ba2012-01-18 10:52:25 +0000185 int pad_bits;
Mark Brownb83a3132011-05-11 19:59:58 +0200186 int val_bits;
Mark Brown2e2ae662011-07-20 22:33:39 +0100187
Mark Brown2e2ae662011-07-20 22:33:39 +0100188 bool (*writeable_reg)(struct device *dev, unsigned int reg);
189 bool (*readable_reg)(struct device *dev, unsigned int reg);
190 bool (*volatile_reg)(struct device *dev, unsigned int reg);
Mark Brown18694882011-08-08 15:40:22 +0900191 bool (*precious_reg)(struct device *dev, unsigned int reg);
Davide Ciminaghi0d4529c2012-10-16 15:56:59 +0200192 regmap_lock lock;
193 regmap_unlock unlock;
194 void *lock_arg;
Mark Brownbd20eb52011-08-19 18:09:38 +0900195
Andrey Smirnovd2a58842013-01-27 10:49:05 -0800196 int (*reg_read)(void *context, unsigned int reg, unsigned int *val);
197 int (*reg_write)(void *context, unsigned int reg, unsigned int val);
198
199 bool fast_io;
200
Mark Brownbd20eb52011-08-19 18:09:38 +0900201 unsigned int max_register;
Davide Ciminaghi76aad392012-11-20 15:20:30 +0100202 const struct regmap_access_table *wr_table;
203 const struct regmap_access_table *rd_table;
204 const struct regmap_access_table *volatile_table;
205 const struct regmap_access_table *precious_table;
Lars-Peter Clausen720e4612011-11-16 16:28:17 +0100206 const struct reg_default *reg_defaults;
Dimitris Papastamos9fabe242011-09-19 14:34:00 +0100207 unsigned int num_reg_defaults;
208 enum regcache_type cache_type;
209 const void *reg_defaults_raw;
210 unsigned int num_reg_defaults_raw;
Lars-Peter Clausen6f306442011-09-05 20:46:32 +0200211
212 u8 read_flag_mask;
213 u8 write_flag_mask;
Ashish Jangam2e33caf2012-04-30 23:23:40 +0100214
215 bool use_single_rw;
Stephen Warren141eba22012-05-24 10:47:26 -0600216
217 enum regmap_endian reg_format_endian;
218 enum regmap_endian val_format_endian;
Mark Brown38e23192012-07-22 19:26:07 +0100219
Krystian Garbaciak6863ca62012-06-15 11:23:56 +0100220 const struct regmap_range_cfg *ranges;
Mark Browne3549cd2012-10-02 20:17:15 +0100221 unsigned int num_ranges;
Krystian Garbaciak6863ca62012-06-15 11:23:56 +0100222};
223
224/**
225 * Configuration for indirectly accessed or paged registers.
226 * Registers, mapped to this virtual range, are accessed in two steps:
227 * 1. page selector register update;
228 * 2. access through data window registers.
229 *
Mark Brownd058bb42012-10-03 12:40:47 +0100230 * @name: Descriptive name for diagnostics
231 *
Krystian Garbaciak6863ca62012-06-15 11:23:56 +0100232 * @range_min: Address of the lowest register address in virtual range.
233 * @range_max: Address of the highest register in virtual range.
234 *
235 * @page_sel_reg: Register with selector field.
236 * @page_sel_mask: Bit shift for selector value.
237 * @page_sel_shift: Bit mask for selector value.
238 *
239 * @window_start: Address of first (lowest) register in data window.
240 * @window_len: Number of registers in data window.
241 */
242struct regmap_range_cfg {
Mark Brownd058bb42012-10-03 12:40:47 +0100243 const char *name;
244
Krystian Garbaciak6863ca62012-06-15 11:23:56 +0100245 /* Registers of virtual address range */
246 unsigned int range_min;
247 unsigned int range_max;
248
249 /* Page selector for indirect addressing */
250 unsigned int selector_reg;
251 unsigned int selector_mask;
252 int selector_shift;
253
254 /* Data window (per each page) */
255 unsigned int window_start;
256 unsigned int window_len;
Mark Brownb83a3132011-05-11 19:59:58 +0200257};
258
Mark Brown0d509f22013-01-27 22:07:38 +0800259struct regmap_async;
260
Stephen Warren0135bbc2012-04-04 15:48:30 -0600261typedef int (*regmap_hw_write)(void *context, const void *data,
Mark Brownb83a3132011-05-11 19:59:58 +0200262 size_t count);
Stephen Warren0135bbc2012-04-04 15:48:30 -0600263typedef int (*regmap_hw_gather_write)(void *context,
Mark Brownb83a3132011-05-11 19:59:58 +0200264 const void *reg, size_t reg_len,
265 const void *val, size_t val_len);
Mark Brown0d509f22013-01-27 22:07:38 +0800266typedef int (*regmap_hw_async_write)(void *context,
267 const void *reg, size_t reg_len,
268 const void *val, size_t val_len,
269 struct regmap_async *async);
Stephen Warren0135bbc2012-04-04 15:48:30 -0600270typedef int (*regmap_hw_read)(void *context,
Mark Brownb83a3132011-05-11 19:59:58 +0200271 const void *reg_buf, size_t reg_size,
272 void *val_buf, size_t val_size);
Mark Brown0d509f22013-01-27 22:07:38 +0800273typedef struct regmap_async *(*regmap_hw_async_alloc)(void);
Stephen Warren0135bbc2012-04-04 15:48:30 -0600274typedef void (*regmap_hw_free_context)(void *context);
Mark Brownb83a3132011-05-11 19:59:58 +0200275
276/**
277 * Description of a hardware bus for the register map infrastructure.
278 *
Stephen Warrenbacdbe02012-04-04 15:48:28 -0600279 * @fast_io: Register IO is fast. Use a spinlock instead of a mutex
Davide Ciminaghi0d4529c2012-10-16 15:56:59 +0200280 * to perform locking. This field is ignored if custom lock/unlock
281 * functions are used (see fields lock/unlock of
282 * struct regmap_config).
Mark Brownb83a3132011-05-11 19:59:58 +0200283 * @write: Write operation.
284 * @gather_write: Write operation with split register/value, return -ENOTSUPP
285 * if not implemented on a given device.
Mark Brown0d509f22013-01-27 22:07:38 +0800286 * @async_write: Write operation which completes asynchronously, optional and
287 * must serialise with respect to non-async I/O.
Mark Brownb83a3132011-05-11 19:59:58 +0200288 * @read: Read operation. Data is returned in the buffer used to transmit
289 * data.
Mark Brown0d509f22013-01-27 22:07:38 +0800290 * @async_alloc: Allocate a regmap_async() structure.
Mark Brownb83a3132011-05-11 19:59:58 +0200291 * @read_flag_mask: Mask to be set in the top byte of the register when doing
292 * a read.
Stephen Warren141eba22012-05-24 10:47:26 -0600293 * @reg_format_endian_default: Default endianness for formatted register
294 * addresses. Used when the regmap_config specifies DEFAULT. If this is
295 * DEFAULT, BIG is assumed.
296 * @val_format_endian_default: Default endianness for formatted register
297 * values. Used when the regmap_config specifies DEFAULT. If this is
298 * DEFAULT, BIG is assumed.
Mark Brown0d509f22013-01-27 22:07:38 +0800299 * @async_size: Size of struct used for async work.
Mark Brownb83a3132011-05-11 19:59:58 +0200300 */
301struct regmap_bus {
Stephen Warrenbacdbe02012-04-04 15:48:28 -0600302 bool fast_io;
Mark Brownb83a3132011-05-11 19:59:58 +0200303 regmap_hw_write write;
304 regmap_hw_gather_write gather_write;
Mark Brown0d509f22013-01-27 22:07:38 +0800305 regmap_hw_async_write async_write;
Mark Brownb83a3132011-05-11 19:59:58 +0200306 regmap_hw_read read;
Stephen Warren0135bbc2012-04-04 15:48:30 -0600307 regmap_hw_free_context free_context;
Mark Brown0d509f22013-01-27 22:07:38 +0800308 regmap_hw_async_alloc async_alloc;
Mark Brownb83a3132011-05-11 19:59:58 +0200309 u8 read_flag_mask;
Stephen Warren141eba22012-05-24 10:47:26 -0600310 enum regmap_endian reg_format_endian_default;
311 enum regmap_endian val_format_endian_default;
Mark Brownb83a3132011-05-11 19:59:58 +0200312};
313
314struct regmap *regmap_init(struct device *dev,
315 const struct regmap_bus *bus,
Stephen Warren0135bbc2012-04-04 15:48:30 -0600316 void *bus_context,
Mark Brownb83a3132011-05-11 19:59:58 +0200317 const struct regmap_config *config);
Mark Brown9943fa32011-06-20 19:02:29 +0100318struct regmap *regmap_init_i2c(struct i2c_client *i2c,
319 const struct regmap_config *config);
Mark Browna676f082011-05-12 11:42:10 +0200320struct regmap *regmap_init_spi(struct spi_device *dev,
321 const struct regmap_config *config);
Josh Cartwrighta01779f2013-10-28 13:12:35 -0500322struct regmap *regmap_init_spmi(struct spmi_device *dev,
323 const struct regmap_config *config);
Philipp Zabel878ec672013-02-14 17:39:08 +0100324struct regmap *regmap_init_mmio_clk(struct device *dev, const char *clk_id,
325 void __iomem *regs,
326 const struct regmap_config *config);
Mark Browna676f082011-05-12 11:42:10 +0200327
Mark Brownc0eb4672012-01-30 19:56:52 +0000328struct regmap *devm_regmap_init(struct device *dev,
329 const struct regmap_bus *bus,
Stephen Warren0135bbc2012-04-04 15:48:30 -0600330 void *bus_context,
Mark Brownc0eb4672012-01-30 19:56:52 +0000331 const struct regmap_config *config);
332struct regmap *devm_regmap_init_i2c(struct i2c_client *i2c,
333 const struct regmap_config *config);
334struct regmap *devm_regmap_init_spi(struct spi_device *dev,
335 const struct regmap_config *config);
Josh Cartwrighta01779f2013-10-28 13:12:35 -0500336struct regmap *devm_regmap_init_spmi(struct spmi_device *dev,
337 const struct regmap_config *config);
Philipp Zabel878ec672013-02-14 17:39:08 +0100338struct regmap *devm_regmap_init_mmio_clk(struct device *dev, const char *clk_id,
339 void __iomem *regs,
340 const struct regmap_config *config);
341
342/**
343 * regmap_init_mmio(): Initialise register map
344 *
345 * @dev: Device that will be interacted with
346 * @regs: Pointer to memory-mapped IO region
347 * @config: Configuration for register map
348 *
349 * The return value will be an ERR_PTR() on error or a valid pointer to
350 * a struct regmap.
351 */
352static inline struct regmap *regmap_init_mmio(struct device *dev,
353 void __iomem *regs,
354 const struct regmap_config *config)
355{
356 return regmap_init_mmio_clk(dev, NULL, regs, config);
357}
358
359/**
360 * devm_regmap_init_mmio(): Initialise managed register map
361 *
362 * @dev: Device that will be interacted with
363 * @regs: Pointer to memory-mapped IO region
364 * @config: Configuration for register map
365 *
366 * The return value will be an ERR_PTR() on error or a valid pointer
367 * to a struct regmap. The regmap will be automatically freed by the
368 * device management code.
369 */
370static inline struct regmap *devm_regmap_init_mmio(struct device *dev,
371 void __iomem *regs,
372 const struct regmap_config *config)
373{
374 return devm_regmap_init_mmio_clk(dev, NULL, regs, config);
375}
Mark Brownc0eb4672012-01-30 19:56:52 +0000376
Mark Brownb83a3132011-05-11 19:59:58 +0200377void regmap_exit(struct regmap *map);
Mark Brownbf315172011-12-03 17:06:20 +0000378int regmap_reinit_cache(struct regmap *map,
379 const struct regmap_config *config);
Mark Brown72b39f62012-05-08 17:44:40 +0100380struct regmap *dev_get_regmap(struct device *dev, const char *name);
Mark Brownb83a3132011-05-11 19:59:58 +0200381int regmap_write(struct regmap *map, unsigned int reg, unsigned int val);
382int regmap_raw_write(struct regmap *map, unsigned int reg,
383 const void *val, size_t val_len);
Laxman Dewangan8eaeb212012-02-12 19:49:43 +0530384int regmap_bulk_write(struct regmap *map, unsigned int reg, const void *val,
385 size_t val_count);
Mark Brown0d509f22013-01-27 22:07:38 +0800386int regmap_raw_write_async(struct regmap *map, unsigned int reg,
387 const void *val, size_t val_len);
Mark Brownb83a3132011-05-11 19:59:58 +0200388int regmap_read(struct regmap *map, unsigned int reg, unsigned int *val);
389int regmap_raw_read(struct regmap *map, unsigned int reg,
390 void *val, size_t val_len);
391int regmap_bulk_read(struct regmap *map, unsigned int reg, void *val,
392 size_t val_count);
393int regmap_update_bits(struct regmap *map, unsigned int reg,
394 unsigned int mask, unsigned int val);
Mark Brown018690d2011-11-29 20:10:36 +0000395int regmap_update_bits_check(struct regmap *map, unsigned int reg,
396 unsigned int mask, unsigned int val,
397 bool *change);
Mark Browna6539c32012-02-17 14:20:14 -0800398int regmap_get_val_bytes(struct regmap *map);
Mark Brown0d509f22013-01-27 22:07:38 +0800399int regmap_async_complete(struct regmap *map);
Mark Brown221ad7f2013-03-26 21:24:20 +0000400bool regmap_can_raw_write(struct regmap *map);
Mark Brownb83a3132011-05-11 19:59:58 +0200401
Mark Brown39a58432011-09-19 18:21:49 +0100402int regcache_sync(struct regmap *map);
Mark Brown4d4cfd12012-02-23 20:53:37 +0000403int regcache_sync_region(struct regmap *map, unsigned int min,
404 unsigned int max);
Mark Brown697e85b2013-05-08 13:55:22 +0100405int regcache_drop_region(struct regmap *map, unsigned int min,
406 unsigned int max);
Mark Brown92afb282011-09-19 18:22:14 +0100407void regcache_cache_only(struct regmap *map, bool enable);
Dimitris Papastamos6eb0f5e2011-09-29 14:36:27 +0100408void regcache_cache_bypass(struct regmap *map, bool enable);
Mark Brown8ae0d7e2011-10-26 10:34:22 +0200409void regcache_mark_dirty(struct regmap *map);
Mark Brown92afb282011-09-19 18:22:14 +0100410
Mark Brown154881e2013-05-08 13:55:23 +0100411bool regmap_check_range_table(struct regmap *map, unsigned int reg,
412 const struct regmap_access_table *table);
413
Mark Brown22f0d902012-01-21 12:01:14 +0000414int regmap_register_patch(struct regmap *map, const struct reg_default *regs,
415 int num_regs);
416
Davide Ciminaghi76aad392012-11-20 15:20:30 +0100417static inline bool regmap_reg_in_range(unsigned int reg,
418 const struct regmap_range *range)
419{
420 return reg >= range->range_min && reg <= range->range_max;
421}
422
423bool regmap_reg_in_ranges(unsigned int reg,
424 const struct regmap_range *ranges,
425 unsigned int nranges);
426
Mark Brownf8beab22011-10-28 23:50:49 +0200427/**
Srinivas Kandagatla67252282013-06-11 13:18:15 +0100428 * Description of an register field
429 *
430 * @reg: Offset of the register within the regmap bank
431 * @lsb: lsb of the register field.
432 * @reg: msb of the register field.
433 */
434struct reg_field {
435 unsigned int reg;
436 unsigned int lsb;
437 unsigned int msb;
438};
439
440#define REG_FIELD(_reg, _lsb, _msb) { \
441 .reg = _reg, \
442 .lsb = _lsb, \
443 .msb = _msb, \
444 }
445
446struct regmap_field *regmap_field_alloc(struct regmap *regmap,
447 struct reg_field reg_field);
448void regmap_field_free(struct regmap_field *field);
449
450struct regmap_field *devm_regmap_field_alloc(struct device *dev,
451 struct regmap *regmap, struct reg_field reg_field);
452void devm_regmap_field_free(struct device *dev, struct regmap_field *field);
453
454int regmap_field_read(struct regmap_field *field, unsigned int *val);
455int regmap_field_write(struct regmap_field *field, unsigned int val);
456
457/**
Mark Brownf8beab22011-10-28 23:50:49 +0200458 * Description of an IRQ for the generic regmap irq_chip.
459 *
460 * @reg_offset: Offset of the status/mask register within the bank
461 * @mask: Mask used to flag/control the register.
462 */
463struct regmap_irq {
464 unsigned int reg_offset;
465 unsigned int mask;
466};
467
468/**
469 * Description of a generic regmap irq_chip. This is not intended to
470 * handle every possible interrupt controller, but it should handle a
471 * substantial proportion of those that are found in the wild.
472 *
473 * @name: Descriptive name for IRQ controller.
474 *
475 * @status_base: Base status register address.
476 * @mask_base: Base mask register address.
477 * @ack_base: Base ack address. If zero then the chip is clear on read.
Mark Browna43fd502012-06-05 14:34:03 +0100478 * @wake_base: Base address for wake enables. If zero unsupported.
Graeme Gregory022f926a2012-05-14 22:40:43 +0900479 * @irq_reg_stride: Stride to use for chips where registers are not contiguous.
Philipp Zabel2753e6f2013-07-22 17:15:52 +0200480 * @init_ack_masked: Ack all masked interrupts once during initalization.
Philipp Zabel68622bdf2013-07-24 10:26:48 +0200481 * @mask_invert: Inverted mask register: cleared bits are masked out.
482 * @wake_invert: Inverted wake register: cleared bits are wake enabled.
Mark Brown0c00c502012-07-24 15:41:19 +0100483 * @runtime_pm: Hold a runtime PM lock on the device when accessing it.
Mark Brownf8beab22011-10-28 23:50:49 +0200484 *
485 * @num_regs: Number of registers in each control bank.
486 * @irqs: Descriptors for individual IRQs. Interrupt numbers are
487 * assigned based on the index in the array of the interrupt.
488 * @num_irqs: Number of descriptors.
489 */
490struct regmap_irq_chip {
491 const char *name;
492
493 unsigned int status_base;
494 unsigned int mask_base;
495 unsigned int ack_base;
Mark Browna43fd502012-06-05 14:34:03 +0100496 unsigned int wake_base;
Graeme Gregory022f926a2012-05-14 22:40:43 +0900497 unsigned int irq_reg_stride;
Philipp Zabelf484f7a2013-07-24 10:26:42 +0200498 bool init_ack_masked:1;
499 bool mask_invert:1;
500 bool wake_invert:1;
501 bool runtime_pm:1;
Mark Brownf8beab22011-10-28 23:50:49 +0200502
503 int num_regs;
504
505 const struct regmap_irq *irqs;
506 int num_irqs;
507};
508
509struct regmap_irq_chip_data;
510
511int regmap_add_irq_chip(struct regmap *map, int irq, int irq_flags,
Mark Brownb026ddb2012-05-31 21:01:46 +0100512 int irq_base, const struct regmap_irq_chip *chip,
Mark Brownf8beab22011-10-28 23:50:49 +0200513 struct regmap_irq_chip_data **data);
514void regmap_del_irq_chip(int irq, struct regmap_irq_chip_data *data);
Mark Brown209a6002011-12-05 16:10:15 +0000515int regmap_irq_chip_get_base(struct regmap_irq_chip_data *data);
Mark Brown4af8be62012-05-13 10:59:56 +0100516int regmap_irq_get_virq(struct regmap_irq_chip_data *data, int irq);
Mark Brown90f790d2012-08-20 21:45:05 +0100517struct irq_domain *regmap_irq_get_domain(struct regmap_irq_chip_data *data);
Mark Brownb83a3132011-05-11 19:59:58 +0200518
Mark Brown9cde5fc2012-02-17 14:49:51 -0800519#else
520
521/*
522 * These stubs should only ever be called by generic code which has
523 * regmap based facilities, if they ever get called at runtime
524 * something is going wrong and something probably needs to select
525 * REGMAP.
526 */
527
528static inline int regmap_write(struct regmap *map, unsigned int reg,
529 unsigned int val)
530{
531 WARN_ONCE(1, "regmap API is disabled");
532 return -EINVAL;
533}
534
535static inline int regmap_raw_write(struct regmap *map, unsigned int reg,
536 const void *val, size_t val_len)
537{
538 WARN_ONCE(1, "regmap API is disabled");
539 return -EINVAL;
540}
541
Mark Brown0d509f22013-01-27 22:07:38 +0800542static inline int regmap_raw_write_async(struct regmap *map, unsigned int reg,
543 const void *val, size_t val_len)
544{
545 WARN_ONCE(1, "regmap API is disabled");
546 return -EINVAL;
547}
548
Mark Brown9cde5fc2012-02-17 14:49:51 -0800549static inline int regmap_bulk_write(struct regmap *map, unsigned int reg,
550 const void *val, size_t val_count)
551{
552 WARN_ONCE(1, "regmap API is disabled");
553 return -EINVAL;
554}
555
556static inline int regmap_read(struct regmap *map, unsigned int reg,
557 unsigned int *val)
558{
559 WARN_ONCE(1, "regmap API is disabled");
560 return -EINVAL;
561}
562
563static inline int regmap_raw_read(struct regmap *map, unsigned int reg,
564 void *val, size_t val_len)
565{
566 WARN_ONCE(1, "regmap API is disabled");
567 return -EINVAL;
568}
569
570static inline int regmap_bulk_read(struct regmap *map, unsigned int reg,
571 void *val, size_t val_count)
572{
573 WARN_ONCE(1, "regmap API is disabled");
574 return -EINVAL;
575}
576
577static inline int regmap_update_bits(struct regmap *map, unsigned int reg,
578 unsigned int mask, unsigned int val)
579{
580 WARN_ONCE(1, "regmap API is disabled");
581 return -EINVAL;
582}
583
584static inline int regmap_update_bits_check(struct regmap *map,
585 unsigned int reg,
586 unsigned int mask, unsigned int val,
587 bool *change)
588{
589 WARN_ONCE(1, "regmap API is disabled");
590 return -EINVAL;
591}
592
593static inline int regmap_get_val_bytes(struct regmap *map)
594{
595 WARN_ONCE(1, "regmap API is disabled");
596 return -EINVAL;
597}
598
599static inline int regcache_sync(struct regmap *map)
600{
601 WARN_ONCE(1, "regmap API is disabled");
602 return -EINVAL;
603}
604
Mark Browna313f9f2012-02-23 19:49:43 +0000605static inline int regcache_sync_region(struct regmap *map, unsigned int min,
606 unsigned int max)
607{
608 WARN_ONCE(1, "regmap API is disabled");
609 return -EINVAL;
610}
611
Mark Brown697e85b2013-05-08 13:55:22 +0100612static inline int regcache_drop_region(struct regmap *map, unsigned int min,
613 unsigned int max)
614{
615 WARN_ONCE(1, "regmap API is disabled");
616 return -EINVAL;
617}
618
Mark Brown9cde5fc2012-02-17 14:49:51 -0800619static inline void regcache_cache_only(struct regmap *map, bool enable)
620{
621 WARN_ONCE(1, "regmap API is disabled");
622}
623
624static inline void regcache_cache_bypass(struct regmap *map, bool enable)
625{
626 WARN_ONCE(1, "regmap API is disabled");
627}
628
629static inline void regcache_mark_dirty(struct regmap *map)
630{
631 WARN_ONCE(1, "regmap API is disabled");
632}
633
Mark Brown0d509f22013-01-27 22:07:38 +0800634static inline void regmap_async_complete(struct regmap *map)
635{
636 WARN_ONCE(1, "regmap API is disabled");
637}
638
Mark Brown9cde5fc2012-02-17 14:49:51 -0800639static inline int regmap_register_patch(struct regmap *map,
640 const struct reg_default *regs,
641 int num_regs)
642{
643 WARN_ONCE(1, "regmap API is disabled");
644 return -EINVAL;
645}
646
Mark Brown72b39f62012-05-08 17:44:40 +0100647static inline struct regmap *dev_get_regmap(struct device *dev,
648 const char *name)
649{
Mark Brown72b39f62012-05-08 17:44:40 +0100650 return NULL;
651}
652
Mark Brown9cde5fc2012-02-17 14:49:51 -0800653#endif
654
Mark Brownb83a3132011-05-11 19:59:58 +0200655#endif