blob: f9b7fbe35ab1ba0382b6e5e1791316f937aa28c9 [file] [log] [blame]
Mark Brownb83a3132011-05-11 19:59:58 +02001#ifndef __LINUX_REGMAP_H
2#define __LINUX_REGMAP_H
3
4/*
5 * Register map access API
6 *
7 * Copyright 2011 Wolfson Microelectronics plc
8 *
9 * Author: Mark Brown <broonie@opensource.wolfsonmicro.com>
10 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License version 2 as
13 * published by the Free Software Foundation.
14 */
15
Mark Brownb83a3132011-05-11 19:59:58 +020016#include <linux/list.h>
Krystian Garbaciak6863ca62012-06-15 11:23:56 +010017#include <linux/rbtree.h>
Mark Brownb83a3132011-05-11 19:59:58 +020018
Paul Gortmakerde477252011-05-26 13:46:22 -040019struct module;
Paul Gortmaker313162d2012-01-30 11:46:54 -050020struct device;
Mark Brown9943fa32011-06-20 19:02:29 +010021struct i2c_client;
Mark Brown90f790d2012-08-20 21:45:05 +010022struct irq_domain;
Mark Browna676f082011-05-12 11:42:10 +020023struct spi_device;
Mark Brownb83d2ff2012-03-11 11:49:17 +000024struct regmap;
Krystian Garbaciak6863ca62012-06-15 11:23:56 +010025struct regmap_range_cfg;
Mark Brown9943fa32011-06-20 19:02:29 +010026
Dimitris Papastamos9fabe242011-09-19 14:34:00 +010027/* An enum of all the supported cache types */
28enum regcache_type {
29 REGCACHE_NONE,
Dimitris Papastamos28644c802011-09-19 14:34:02 +010030 REGCACHE_RBTREE,
Mark Brown50b776f2011-11-02 15:00:03 +000031 REGCACHE_COMPRESSED
Dimitris Papastamos9fabe242011-09-19 14:34:00 +010032};
33
Mark Browndd898b22011-07-20 22:28:58 +010034/**
Mark Brownbd20eb52011-08-19 18:09:38 +090035 * Default value for a register. We use an array of structs rather
36 * than a simple array as many modern devices have very sparse
37 * register maps.
38 *
39 * @reg: Register address.
40 * @def: Register default value.
41 */
42struct reg_default {
43 unsigned int reg;
44 unsigned int def;
45};
46
Mark Brownb83d2ff2012-03-11 11:49:17 +000047#ifdef CONFIG_REGMAP
48
Stephen Warren141eba22012-05-24 10:47:26 -060049enum regmap_endian {
50 /* Unspecified -> 0 -> Backwards compatible default */
51 REGMAP_ENDIAN_DEFAULT = 0,
52 REGMAP_ENDIAN_BIG,
53 REGMAP_ENDIAN_LITTLE,
54 REGMAP_ENDIAN_NATIVE,
55};
56
Davide Ciminaghi76aad392012-11-20 15:20:30 +010057/**
58 * A register range, used for access related checks
59 * (readable/writeable/volatile/precious checks)
60 *
61 * @range_min: address of first register
62 * @range_max: address of last register
63 */
64struct regmap_range {
65 unsigned int range_min;
66 unsigned int range_max;
67};
68
69/*
70 * A table of ranges including some yes ranges and some no ranges.
71 * If a register belongs to a no_range, the corresponding check function
72 * will return false. If a register belongs to a yes range, the corresponding
73 * check function will return true. "no_ranges" are searched first.
74 *
75 * @yes_ranges : pointer to an array of regmap ranges used as "yes ranges"
76 * @n_yes_ranges: size of the above array
77 * @no_ranges: pointer to an array of regmap ranges used as "no ranges"
78 * @n_no_ranges: size of the above array
79 */
80struct regmap_access_table {
81 const struct regmap_range *yes_ranges;
82 unsigned int n_yes_ranges;
83 const struct regmap_range *no_ranges;
84 unsigned int n_no_ranges;
85};
86
Davide Ciminaghi0d4529c2012-10-16 15:56:59 +020087typedef void (*regmap_lock)(void *);
88typedef void (*regmap_unlock)(void *);
89
Mark Brownbd20eb52011-08-19 18:09:38 +090090/**
Mark Browndd898b22011-07-20 22:28:58 +010091 * Configuration for the register map of a device.
92 *
Stephen Warrend3c242e2012-04-04 15:48:29 -060093 * @name: Optional name of the regmap. Useful when a device has multiple
94 * register regions.
95 *
Mark Browndd898b22011-07-20 22:28:58 +010096 * @reg_bits: Number of bits in a register address, mandatory.
Stephen Warrenf01ee602012-04-09 13:40:24 -060097 * @reg_stride: The register address stride. Valid register addresses are a
98 * multiple of this value. If set to 0, a value of 1 will be
99 * used.
Mark Brown82159ba2012-01-18 10:52:25 +0000100 * @pad_bits: Number of bits of padding between register and value.
Mark Browndd898b22011-07-20 22:28:58 +0100101 * @val_bits: Number of bits in a register value, mandatory.
Mark Brown2e2ae662011-07-20 22:33:39 +0100102 *
Mark Brown3566cc92011-08-09 10:23:22 +0900103 * @writeable_reg: Optional callback returning true if the register
Davide Ciminaghi76aad392012-11-20 15:20:30 +0100104 * can be written to. If this field is NULL but wr_table
105 * (see below) is not, the check is performed on such table
106 * (a register is writeable if it belongs to one of the ranges
107 * specified by wr_table).
Mark Brown3566cc92011-08-09 10:23:22 +0900108 * @readable_reg: Optional callback returning true if the register
Davide Ciminaghi76aad392012-11-20 15:20:30 +0100109 * can be read from. If this field is NULL but rd_table
110 * (see below) is not, the check is performed on such table
111 * (a register is readable if it belongs to one of the ranges
112 * specified by rd_table).
Mark Brown3566cc92011-08-09 10:23:22 +0900113 * @volatile_reg: Optional callback returning true if the register
Davide Ciminaghi76aad392012-11-20 15:20:30 +0100114 * value can't be cached. If this field is NULL but
115 * volatile_table (see below) is not, the check is performed on
116 * such table (a register is volatile if it belongs to one of
117 * the ranges specified by volatile_table).
Mark Brown3566cc92011-08-09 10:23:22 +0900118 * @precious_reg: Optional callback returning true if the rgister
Davide Ciminaghi76aad392012-11-20 15:20:30 +0100119 * should not be read outside of a call from the driver
120 * (eg, a clear on read interrupt status register). If this
121 * field is NULL but precious_table (see below) is not, the
122 * check is performed on such table (a register is precious if
123 * it belongs to one of the ranges specified by precious_table).
124 * @lock: Optional lock callback (overrides regmap's default lock
125 * function, based on spinlock or mutex).
126 * @unlock: As above for unlocking.
127 * @lock_arg: this field is passed as the only argument of lock/unlock
128 * functions (ignored in case regular lock/unlock functions
129 * are not overridden).
Mark Brownbd20eb52011-08-19 18:09:38 +0900130 *
131 * @max_register: Optional, specifies the maximum valid register index.
Davide Ciminaghi76aad392012-11-20 15:20:30 +0100132 * @wr_table: Optional, points to a struct regmap_access_table specifying
133 * valid ranges for write access.
134 * @rd_table: As above, for read access.
135 * @volatile_table: As above, for volatile registers.
136 * @precious_table: As above, for precious registers.
Mark Brownbd20eb52011-08-19 18:09:38 +0900137 * @reg_defaults: Power on reset values for registers (for use with
138 * register cache support).
139 * @num_reg_defaults: Number of elements in reg_defaults.
Lars-Peter Clausen6f306442011-09-05 20:46:32 +0200140 *
141 * @read_flag_mask: Mask to be set in the top byte of the register when doing
142 * a read.
143 * @write_flag_mask: Mask to be set in the top byte of the register when doing
144 * a write. If both read_flag_mask and write_flag_mask are
145 * empty the regmap_bus default masks are used.
Ashish Jangam2e33caf2012-04-30 23:23:40 +0100146 * @use_single_rw: If set, converts the bulk read and write operations into
147 * a series of single read and write operations. This is useful
148 * for device that does not support bulk read and write.
Dimitris Papastamos9fabe242011-09-19 14:34:00 +0100149 *
150 * @cache_type: The actual cache type.
151 * @reg_defaults_raw: Power on reset values for registers (for use with
152 * register cache support).
153 * @num_reg_defaults_raw: Number of elements in reg_defaults_raw.
Stephen Warren141eba22012-05-24 10:47:26 -0600154 * @reg_format_endian: Endianness for formatted register addresses. If this is
155 * DEFAULT, the @reg_format_endian_default value from the
156 * regmap bus is used.
157 * @val_format_endian: Endianness for formatted register values. If this is
158 * DEFAULT, the @reg_format_endian_default value from the
159 * regmap bus is used.
Krystian Garbaciak6863ca62012-06-15 11:23:56 +0100160 *
161 * @ranges: Array of configuration entries for virtual address ranges.
162 * @num_ranges: Number of range configuration entries.
Mark Browndd898b22011-07-20 22:28:58 +0100163 */
Mark Brownb83a3132011-05-11 19:59:58 +0200164struct regmap_config {
Stephen Warrend3c242e2012-04-04 15:48:29 -0600165 const char *name;
166
Mark Brownb83a3132011-05-11 19:59:58 +0200167 int reg_bits;
Stephen Warrenf01ee602012-04-09 13:40:24 -0600168 int reg_stride;
Mark Brown82159ba2012-01-18 10:52:25 +0000169 int pad_bits;
Mark Brownb83a3132011-05-11 19:59:58 +0200170 int val_bits;
Mark Brown2e2ae662011-07-20 22:33:39 +0100171
Mark Brown2e2ae662011-07-20 22:33:39 +0100172 bool (*writeable_reg)(struct device *dev, unsigned int reg);
173 bool (*readable_reg)(struct device *dev, unsigned int reg);
174 bool (*volatile_reg)(struct device *dev, unsigned int reg);
Mark Brown18694882011-08-08 15:40:22 +0900175 bool (*precious_reg)(struct device *dev, unsigned int reg);
Davide Ciminaghi0d4529c2012-10-16 15:56:59 +0200176 regmap_lock lock;
177 regmap_unlock unlock;
178 void *lock_arg;
Mark Brownbd20eb52011-08-19 18:09:38 +0900179
180 unsigned int max_register;
Davide Ciminaghi76aad392012-11-20 15:20:30 +0100181 const struct regmap_access_table *wr_table;
182 const struct regmap_access_table *rd_table;
183 const struct regmap_access_table *volatile_table;
184 const struct regmap_access_table *precious_table;
Lars-Peter Clausen720e4612011-11-16 16:28:17 +0100185 const struct reg_default *reg_defaults;
Dimitris Papastamos9fabe242011-09-19 14:34:00 +0100186 unsigned int num_reg_defaults;
187 enum regcache_type cache_type;
188 const void *reg_defaults_raw;
189 unsigned int num_reg_defaults_raw;
Lars-Peter Clausen6f306442011-09-05 20:46:32 +0200190
191 u8 read_flag_mask;
192 u8 write_flag_mask;
Ashish Jangam2e33caf2012-04-30 23:23:40 +0100193
194 bool use_single_rw;
Stephen Warren141eba22012-05-24 10:47:26 -0600195
196 enum regmap_endian reg_format_endian;
197 enum regmap_endian val_format_endian;
Mark Brown38e23192012-07-22 19:26:07 +0100198
Krystian Garbaciak6863ca62012-06-15 11:23:56 +0100199 const struct regmap_range_cfg *ranges;
Mark Browne3549cd2012-10-02 20:17:15 +0100200 unsigned int num_ranges;
Krystian Garbaciak6863ca62012-06-15 11:23:56 +0100201};
202
203/**
204 * Configuration for indirectly accessed or paged registers.
205 * Registers, mapped to this virtual range, are accessed in two steps:
206 * 1. page selector register update;
207 * 2. access through data window registers.
208 *
Mark Brownd058bb42012-10-03 12:40:47 +0100209 * @name: Descriptive name for diagnostics
210 *
Krystian Garbaciak6863ca62012-06-15 11:23:56 +0100211 * @range_min: Address of the lowest register address in virtual range.
212 * @range_max: Address of the highest register in virtual range.
213 *
214 * @page_sel_reg: Register with selector field.
215 * @page_sel_mask: Bit shift for selector value.
216 * @page_sel_shift: Bit mask for selector value.
217 *
218 * @window_start: Address of first (lowest) register in data window.
219 * @window_len: Number of registers in data window.
220 */
221struct regmap_range_cfg {
Mark Brownd058bb42012-10-03 12:40:47 +0100222 const char *name;
223
Krystian Garbaciak6863ca62012-06-15 11:23:56 +0100224 /* Registers of virtual address range */
225 unsigned int range_min;
226 unsigned int range_max;
227
228 /* Page selector for indirect addressing */
229 unsigned int selector_reg;
230 unsigned int selector_mask;
231 int selector_shift;
232
233 /* Data window (per each page) */
234 unsigned int window_start;
235 unsigned int window_len;
Mark Brownb83a3132011-05-11 19:59:58 +0200236};
237
Mark Brown0d509f22013-01-27 22:07:38 +0800238struct regmap_async;
239
Stephen Warren0135bbc2012-04-04 15:48:30 -0600240typedef int (*regmap_hw_write)(void *context, const void *data,
Mark Brownb83a3132011-05-11 19:59:58 +0200241 size_t count);
Stephen Warren0135bbc2012-04-04 15:48:30 -0600242typedef int (*regmap_hw_gather_write)(void *context,
Mark Brownb83a3132011-05-11 19:59:58 +0200243 const void *reg, size_t reg_len,
244 const void *val, size_t val_len);
Mark Brown0d509f22013-01-27 22:07:38 +0800245typedef int (*regmap_hw_async_write)(void *context,
246 const void *reg, size_t reg_len,
247 const void *val, size_t val_len,
248 struct regmap_async *async);
Stephen Warren0135bbc2012-04-04 15:48:30 -0600249typedef int (*regmap_hw_read)(void *context,
Mark Brownb83a3132011-05-11 19:59:58 +0200250 const void *reg_buf, size_t reg_size,
251 void *val_buf, size_t val_size);
Mark Brown0d509f22013-01-27 22:07:38 +0800252typedef struct regmap_async *(*regmap_hw_async_alloc)(void);
Stephen Warren0135bbc2012-04-04 15:48:30 -0600253typedef void (*regmap_hw_free_context)(void *context);
Mark Brownb83a3132011-05-11 19:59:58 +0200254
255/**
256 * Description of a hardware bus for the register map infrastructure.
257 *
Stephen Warrenbacdbe02012-04-04 15:48:28 -0600258 * @fast_io: Register IO is fast. Use a spinlock instead of a mutex
Davide Ciminaghi0d4529c2012-10-16 15:56:59 +0200259 * to perform locking. This field is ignored if custom lock/unlock
260 * functions are used (see fields lock/unlock of
261 * struct regmap_config).
Mark Brownb83a3132011-05-11 19:59:58 +0200262 * @write: Write operation.
263 * @gather_write: Write operation with split register/value, return -ENOTSUPP
264 * if not implemented on a given device.
Mark Brown0d509f22013-01-27 22:07:38 +0800265 * @async_write: Write operation which completes asynchronously, optional and
266 * must serialise with respect to non-async I/O.
Mark Brownb83a3132011-05-11 19:59:58 +0200267 * @read: Read operation. Data is returned in the buffer used to transmit
268 * data.
Mark Brown0d509f22013-01-27 22:07:38 +0800269 * @async_alloc: Allocate a regmap_async() structure.
Mark Brownb83a3132011-05-11 19:59:58 +0200270 * @read_flag_mask: Mask to be set in the top byte of the register when doing
271 * a read.
Stephen Warren141eba22012-05-24 10:47:26 -0600272 * @reg_format_endian_default: Default endianness for formatted register
273 * addresses. Used when the regmap_config specifies DEFAULT. If this is
274 * DEFAULT, BIG is assumed.
275 * @val_format_endian_default: Default endianness for formatted register
276 * values. Used when the regmap_config specifies DEFAULT. If this is
277 * DEFAULT, BIG is assumed.
Mark Brown0d509f22013-01-27 22:07:38 +0800278 * @async_size: Size of struct used for async work.
Mark Brownb83a3132011-05-11 19:59:58 +0200279 */
280struct regmap_bus {
Stephen Warrenbacdbe02012-04-04 15:48:28 -0600281 bool fast_io;
Mark Brownb83a3132011-05-11 19:59:58 +0200282 regmap_hw_write write;
283 regmap_hw_gather_write gather_write;
Mark Brown0d509f22013-01-27 22:07:38 +0800284 regmap_hw_async_write async_write;
Mark Brownb83a3132011-05-11 19:59:58 +0200285 regmap_hw_read read;
Stephen Warren0135bbc2012-04-04 15:48:30 -0600286 regmap_hw_free_context free_context;
Mark Brown0d509f22013-01-27 22:07:38 +0800287 regmap_hw_async_alloc async_alloc;
Mark Brownb83a3132011-05-11 19:59:58 +0200288 u8 read_flag_mask;
Stephen Warren141eba22012-05-24 10:47:26 -0600289 enum regmap_endian reg_format_endian_default;
290 enum regmap_endian val_format_endian_default;
Mark Brownb83a3132011-05-11 19:59:58 +0200291};
292
293struct regmap *regmap_init(struct device *dev,
294 const struct regmap_bus *bus,
Stephen Warren0135bbc2012-04-04 15:48:30 -0600295 void *bus_context,
Mark Brownb83a3132011-05-11 19:59:58 +0200296 const struct regmap_config *config);
Mark Brown9943fa32011-06-20 19:02:29 +0100297struct regmap *regmap_init_i2c(struct i2c_client *i2c,
298 const struct regmap_config *config);
Mark Browna676f082011-05-12 11:42:10 +0200299struct regmap *regmap_init_spi(struct spi_device *dev,
300 const struct regmap_config *config);
Stephen Warren45f5ff82012-04-04 15:48:31 -0600301struct regmap *regmap_init_mmio(struct device *dev,
302 void __iomem *regs,
303 const struct regmap_config *config);
Mark Browna676f082011-05-12 11:42:10 +0200304
Mark Brownc0eb4672012-01-30 19:56:52 +0000305struct regmap *devm_regmap_init(struct device *dev,
306 const struct regmap_bus *bus,
Stephen Warren0135bbc2012-04-04 15:48:30 -0600307 void *bus_context,
Mark Brownc0eb4672012-01-30 19:56:52 +0000308 const struct regmap_config *config);
309struct regmap *devm_regmap_init_i2c(struct i2c_client *i2c,
310 const struct regmap_config *config);
311struct regmap *devm_regmap_init_spi(struct spi_device *dev,
312 const struct regmap_config *config);
Stephen Warren45f5ff82012-04-04 15:48:31 -0600313struct regmap *devm_regmap_init_mmio(struct device *dev,
314 void __iomem *regs,
315 const struct regmap_config *config);
Mark Brownc0eb4672012-01-30 19:56:52 +0000316
Mark Brownb83a3132011-05-11 19:59:58 +0200317void regmap_exit(struct regmap *map);
Mark Brownbf315172011-12-03 17:06:20 +0000318int regmap_reinit_cache(struct regmap *map,
319 const struct regmap_config *config);
Mark Brown72b39f62012-05-08 17:44:40 +0100320struct regmap *dev_get_regmap(struct device *dev, const char *name);
Mark Brownb83a3132011-05-11 19:59:58 +0200321int regmap_write(struct regmap *map, unsigned int reg, unsigned int val);
322int regmap_raw_write(struct regmap *map, unsigned int reg,
323 const void *val, size_t val_len);
Laxman Dewangan8eaeb212012-02-12 19:49:43 +0530324int regmap_bulk_write(struct regmap *map, unsigned int reg, const void *val,
325 size_t val_count);
Mark Brown0d509f22013-01-27 22:07:38 +0800326int regmap_raw_write_async(struct regmap *map, unsigned int reg,
327 const void *val, size_t val_len);
Mark Brownb83a3132011-05-11 19:59:58 +0200328int regmap_read(struct regmap *map, unsigned int reg, unsigned int *val);
329int regmap_raw_read(struct regmap *map, unsigned int reg,
330 void *val, size_t val_len);
331int regmap_bulk_read(struct regmap *map, unsigned int reg, void *val,
332 size_t val_count);
333int regmap_update_bits(struct regmap *map, unsigned int reg,
334 unsigned int mask, unsigned int val);
Mark Brown018690d2011-11-29 20:10:36 +0000335int regmap_update_bits_check(struct regmap *map, unsigned int reg,
336 unsigned int mask, unsigned int val,
337 bool *change);
Mark Browna6539c32012-02-17 14:20:14 -0800338int regmap_get_val_bytes(struct regmap *map);
Mark Brown0d509f22013-01-27 22:07:38 +0800339int regmap_async_complete(struct regmap *map);
Mark Brownb83a3132011-05-11 19:59:58 +0200340
Mark Brown39a58432011-09-19 18:21:49 +0100341int regcache_sync(struct regmap *map);
Mark Brown4d4cfd12012-02-23 20:53:37 +0000342int regcache_sync_region(struct regmap *map, unsigned int min,
343 unsigned int max);
Mark Brown92afb282011-09-19 18:22:14 +0100344void regcache_cache_only(struct regmap *map, bool enable);
Dimitris Papastamos6eb0f5e2011-09-29 14:36:27 +0100345void regcache_cache_bypass(struct regmap *map, bool enable);
Mark Brown8ae0d7e2011-10-26 10:34:22 +0200346void regcache_mark_dirty(struct regmap *map);
Mark Brown92afb282011-09-19 18:22:14 +0100347
Mark Brown22f0d902012-01-21 12:01:14 +0000348int regmap_register_patch(struct regmap *map, const struct reg_default *regs,
349 int num_regs);
350
Davide Ciminaghi76aad392012-11-20 15:20:30 +0100351static inline bool regmap_reg_in_range(unsigned int reg,
352 const struct regmap_range *range)
353{
354 return reg >= range->range_min && reg <= range->range_max;
355}
356
357bool regmap_reg_in_ranges(unsigned int reg,
358 const struct regmap_range *ranges,
359 unsigned int nranges);
360
Mark Brownf8beab22011-10-28 23:50:49 +0200361/**
362 * Description of an IRQ for the generic regmap irq_chip.
363 *
364 * @reg_offset: Offset of the status/mask register within the bank
365 * @mask: Mask used to flag/control the register.
366 */
367struct regmap_irq {
368 unsigned int reg_offset;
369 unsigned int mask;
370};
371
372/**
373 * Description of a generic regmap irq_chip. This is not intended to
374 * handle every possible interrupt controller, but it should handle a
375 * substantial proportion of those that are found in the wild.
376 *
377 * @name: Descriptive name for IRQ controller.
378 *
379 * @status_base: Base status register address.
380 * @mask_base: Base mask register address.
381 * @ack_base: Base ack address. If zero then the chip is clear on read.
Mark Browna43fd502012-06-05 14:34:03 +0100382 * @wake_base: Base address for wake enables. If zero unsupported.
Graeme Gregory022f926a2012-05-14 22:40:43 +0900383 * @irq_reg_stride: Stride to use for chips where registers are not contiguous.
Mark Brown0c00c502012-07-24 15:41:19 +0100384 * @runtime_pm: Hold a runtime PM lock on the device when accessing it.
Mark Brownf8beab22011-10-28 23:50:49 +0200385 *
386 * @num_regs: Number of registers in each control bank.
387 * @irqs: Descriptors for individual IRQs. Interrupt numbers are
388 * assigned based on the index in the array of the interrupt.
389 * @num_irqs: Number of descriptors.
390 */
391struct regmap_irq_chip {
392 const char *name;
393
394 unsigned int status_base;
395 unsigned int mask_base;
396 unsigned int ack_base;
Mark Browna43fd502012-06-05 14:34:03 +0100397 unsigned int wake_base;
Graeme Gregory022f926a2012-05-14 22:40:43 +0900398 unsigned int irq_reg_stride;
Xiaofan Tian36ac9142012-08-30 17:03:35 +0800399 unsigned int mask_invert;
Mark Brown0c00c502012-07-24 15:41:19 +0100400 bool runtime_pm;
Mark Brownf8beab22011-10-28 23:50:49 +0200401
402 int num_regs;
403
404 const struct regmap_irq *irqs;
405 int num_irqs;
406};
407
408struct regmap_irq_chip_data;
409
410int regmap_add_irq_chip(struct regmap *map, int irq, int irq_flags,
Mark Brownb026ddb2012-05-31 21:01:46 +0100411 int irq_base, const struct regmap_irq_chip *chip,
Mark Brownf8beab22011-10-28 23:50:49 +0200412 struct regmap_irq_chip_data **data);
413void regmap_del_irq_chip(int irq, struct regmap_irq_chip_data *data);
Mark Brown209a6002011-12-05 16:10:15 +0000414int regmap_irq_chip_get_base(struct regmap_irq_chip_data *data);
Mark Brown4af8be62012-05-13 10:59:56 +0100415int regmap_irq_get_virq(struct regmap_irq_chip_data *data, int irq);
Mark Brown90f790d2012-08-20 21:45:05 +0100416struct irq_domain *regmap_irq_get_domain(struct regmap_irq_chip_data *data);
Mark Brownb83a3132011-05-11 19:59:58 +0200417
Mark Brown9cde5fc2012-02-17 14:49:51 -0800418#else
419
420/*
421 * These stubs should only ever be called by generic code which has
422 * regmap based facilities, if they ever get called at runtime
423 * something is going wrong and something probably needs to select
424 * REGMAP.
425 */
426
427static inline int regmap_write(struct regmap *map, unsigned int reg,
428 unsigned int val)
429{
430 WARN_ONCE(1, "regmap API is disabled");
431 return -EINVAL;
432}
433
434static inline int regmap_raw_write(struct regmap *map, unsigned int reg,
435 const void *val, size_t val_len)
436{
437 WARN_ONCE(1, "regmap API is disabled");
438 return -EINVAL;
439}
440
Mark Brown0d509f22013-01-27 22:07:38 +0800441static inline int regmap_raw_write_async(struct regmap *map, unsigned int reg,
442 const void *val, size_t val_len)
443{
444 WARN_ONCE(1, "regmap API is disabled");
445 return -EINVAL;
446}
447
Mark Brown9cde5fc2012-02-17 14:49:51 -0800448static inline int regmap_bulk_write(struct regmap *map, unsigned int reg,
449 const void *val, size_t val_count)
450{
451 WARN_ONCE(1, "regmap API is disabled");
452 return -EINVAL;
453}
454
455static inline int regmap_read(struct regmap *map, unsigned int reg,
456 unsigned int *val)
457{
458 WARN_ONCE(1, "regmap API is disabled");
459 return -EINVAL;
460}
461
462static inline int regmap_raw_read(struct regmap *map, unsigned int reg,
463 void *val, size_t val_len)
464{
465 WARN_ONCE(1, "regmap API is disabled");
466 return -EINVAL;
467}
468
469static inline int regmap_bulk_read(struct regmap *map, unsigned int reg,
470 void *val, size_t val_count)
471{
472 WARN_ONCE(1, "regmap API is disabled");
473 return -EINVAL;
474}
475
476static inline int regmap_update_bits(struct regmap *map, unsigned int reg,
477 unsigned int mask, unsigned int val)
478{
479 WARN_ONCE(1, "regmap API is disabled");
480 return -EINVAL;
481}
482
483static inline int regmap_update_bits_check(struct regmap *map,
484 unsigned int reg,
485 unsigned int mask, unsigned int val,
486 bool *change)
487{
488 WARN_ONCE(1, "regmap API is disabled");
489 return -EINVAL;
490}
491
492static inline int regmap_get_val_bytes(struct regmap *map)
493{
494 WARN_ONCE(1, "regmap API is disabled");
495 return -EINVAL;
496}
497
498static inline int regcache_sync(struct regmap *map)
499{
500 WARN_ONCE(1, "regmap API is disabled");
501 return -EINVAL;
502}
503
Mark Browna313f9f2012-02-23 19:49:43 +0000504static inline int regcache_sync_region(struct regmap *map, unsigned int min,
505 unsigned int max)
506{
507 WARN_ONCE(1, "regmap API is disabled");
508 return -EINVAL;
509}
510
Mark Brown9cde5fc2012-02-17 14:49:51 -0800511static inline void regcache_cache_only(struct regmap *map, bool enable)
512{
513 WARN_ONCE(1, "regmap API is disabled");
514}
515
516static inline void regcache_cache_bypass(struct regmap *map, bool enable)
517{
518 WARN_ONCE(1, "regmap API is disabled");
519}
520
521static inline void regcache_mark_dirty(struct regmap *map)
522{
523 WARN_ONCE(1, "regmap API is disabled");
524}
525
Mark Brown0d509f22013-01-27 22:07:38 +0800526static inline void regmap_async_complete(struct regmap *map)
527{
528 WARN_ONCE(1, "regmap API is disabled");
529}
530
Mark Brown9cde5fc2012-02-17 14:49:51 -0800531static inline int regmap_register_patch(struct regmap *map,
532 const struct reg_default *regs,
533 int num_regs)
534{
535 WARN_ONCE(1, "regmap API is disabled");
536 return -EINVAL;
537}
538
Mark Brown72b39f62012-05-08 17:44:40 +0100539static inline struct regmap *dev_get_regmap(struct device *dev,
540 const char *name)
541{
Mark Brown72b39f62012-05-08 17:44:40 +0100542 return NULL;
543}
544
Mark Brown9cde5fc2012-02-17 14:49:51 -0800545#endif
546
Mark Brownb83a3132011-05-11 19:59:58 +0200547#endif