]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - include/linux/regmap.h
Linux 4.3-rc2
[mirror_ubuntu-bionic-kernel.git] / include / linux / regmap.h
CommitLineData
b83a313b
MB
1#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
b83a313b 16#include <linux/list.h>
6863ca62 17#include <linux/rbtree.h>
49ccc142 18#include <linux/err.h>
3f0fa9a8 19#include <linux/bug.h>
3cfe7a74 20#include <linux/lockdep.h>
b83a313b 21
de477254 22struct module;
313162d0 23struct device;
9943fa30 24struct i2c_client;
90f790d2 25struct irq_domain;
a676f083 26struct spi_device;
a01779f8 27struct spmi_device;
b83d2ff0 28struct regmap;
6863ca62 29struct regmap_range_cfg;
67252287 30struct regmap_field;
22853223 31struct snd_ac97;
9943fa30 32
9fabe24e
DP
33/* An enum of all the supported cache types */
34enum regcache_type {
35 REGCACHE_NONE,
28644c80 36 REGCACHE_RBTREE,
2ac902ce
MB
37 REGCACHE_COMPRESSED,
38 REGCACHE_FLAT,
9fabe24e
DP
39};
40
bd20eb54
MB
41/**
42 * 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
8019ff6c 54/**
2de9d600
NP
55 * Register/value pairs for sequences of writes with an optional delay in
56 * microseconds to be applied after each write.
8019ff6c
NP
57 *
58 * @reg: Register address.
59 * @def: Register value.
2de9d600 60 * @delay_us: Delay to be applied after the register write in microseconds
8019ff6c
NP
61 */
62struct reg_sequence {
63 unsigned int reg;
64 unsigned int def;
2de9d600 65 unsigned int delay_us;
8019ff6c
NP
66};
67
b83d2ff0
MB
68#ifdef CONFIG_REGMAP
69
141eba2e
SW
70enum regmap_endian {
71 /* Unspecified -> 0 -> Backwards compatible default */
72 REGMAP_ENDIAN_DEFAULT = 0,
73 REGMAP_ENDIAN_BIG,
74 REGMAP_ENDIAN_LITTLE,
75 REGMAP_ENDIAN_NATIVE,
76};
77
76aad392
DC
78/**
79 * A register range, used for access related checks
80 * (readable/writeable/volatile/precious checks)
81 *
82 * @range_min: address of first register
83 * @range_max: address of last register
84 */
85struct regmap_range {
86 unsigned int range_min;
87 unsigned int range_max;
88};
89
6112fe60
LD
90#define regmap_reg_range(low, high) { .range_min = low, .range_max = high, }
91
76aad392
DC
92/*
93 * A table of ranges including some yes ranges and some no ranges.
94 * If a register belongs to a no_range, the corresponding check function
95 * will return false. If a register belongs to a yes range, the corresponding
96 * check function will return true. "no_ranges" are searched first.
97 *
98 * @yes_ranges : pointer to an array of regmap ranges used as "yes ranges"
99 * @n_yes_ranges: size of the above array
100 * @no_ranges: pointer to an array of regmap ranges used as "no ranges"
101 * @n_no_ranges: size of the above array
102 */
103struct regmap_access_table {
104 const struct regmap_range *yes_ranges;
105 unsigned int n_yes_ranges;
106 const struct regmap_range *no_ranges;
107 unsigned int n_no_ranges;
108};
109
0d4529c5
DC
110typedef void (*regmap_lock)(void *);
111typedef void (*regmap_unlock)(void *);
112
dd898b20
MB
113/**
114 * Configuration for the register map of a device.
115 *
d3c242e1
SW
116 * @name: Optional name of the regmap. Useful when a device has multiple
117 * register regions.
118 *
dd898b20 119 * @reg_bits: Number of bits in a register address, mandatory.
f01ee60f
SW
120 * @reg_stride: The register address stride. Valid register addresses are a
121 * multiple of this value. If set to 0, a value of 1 will be
122 * used.
82159ba8 123 * @pad_bits: Number of bits of padding between register and value.
dd898b20 124 * @val_bits: Number of bits in a register value, mandatory.
2e2ae66d 125 *
3566cc9d 126 * @writeable_reg: Optional callback returning true if the register
76aad392
DC
127 * can be written to. If this field is NULL but wr_table
128 * (see below) is not, the check is performed on such table
129 * (a register is writeable if it belongs to one of the ranges
130 * specified by wr_table).
3566cc9d 131 * @readable_reg: Optional callback returning true if the register
76aad392
DC
132 * can be read from. If this field is NULL but rd_table
133 * (see below) is not, the check is performed on such table
134 * (a register is readable if it belongs to one of the ranges
135 * specified by rd_table).
3566cc9d 136 * @volatile_reg: Optional callback returning true if the register
76aad392
DC
137 * value can't be cached. If this field is NULL but
138 * volatile_table (see below) is not, the check is performed on
139 * such table (a register is volatile if it belongs to one of
140 * the ranges specified by volatile_table).
bdc39644 141 * @precious_reg: Optional callback returning true if the register
76aad392 142 * should not be read outside of a call from the driver
bdc39644 143 * (e.g., a clear on read interrupt status register). If this
76aad392
DC
144 * field is NULL but precious_table (see below) is not, the
145 * check is performed on such table (a register is precious if
146 * it belongs to one of the ranges specified by precious_table).
147 * @lock: Optional lock callback (overrides regmap's default lock
148 * function, based on spinlock or mutex).
149 * @unlock: As above for unlocking.
150 * @lock_arg: this field is passed as the only argument of lock/unlock
151 * functions (ignored in case regular lock/unlock functions
152 * are not overridden).
d2a5884a
AS
153 * @reg_read: Optional callback that if filled will be used to perform
154 * all the reads from the registers. Should only be provided for
bdc39644
LP
155 * devices whose read operation cannot be represented as a simple
156 * read operation on a bus such as SPI, I2C, etc. Most of the
157 * devices do not need this.
d2a5884a
AS
158 * @reg_write: Same as above for writing.
159 * @fast_io: Register IO is fast. Use a spinlock instead of a mutex
160 * to perform locking. This field is ignored if custom lock/unlock
161 * functions are used (see fields lock/unlock of struct regmap_config).
162 * This field is a duplicate of a similar file in
163 * 'struct regmap_bus' and serves exact same purpose.
164 * Use it only for "no-bus" cases.
bd20eb54 165 * @max_register: Optional, specifies the maximum valid register index.
76aad392
DC
166 * @wr_table: Optional, points to a struct regmap_access_table specifying
167 * valid ranges for write access.
168 * @rd_table: As above, for read access.
169 * @volatile_table: As above, for volatile registers.
170 * @precious_table: As above, for precious registers.
bd20eb54
MB
171 * @reg_defaults: Power on reset values for registers (for use with
172 * register cache support).
173 * @num_reg_defaults: Number of elements in reg_defaults.
6f306441
LPC
174 *
175 * @read_flag_mask: Mask to be set in the top byte of the register when doing
176 * a read.
177 * @write_flag_mask: Mask to be set in the top byte of the register when doing
178 * a write. If both read_flag_mask and write_flag_mask are
179 * empty the regmap_bus default masks are used.
2e33caf1
AJ
180 * @use_single_rw: If set, converts the bulk read and write operations into
181 * a series of single read and write operations. This is useful
182 * for device that does not support bulk read and write.
e894c3f4
OAO
183 * @can_multi_write: If set, the device supports the multi write mode of bulk
184 * write operations, if clear multi write requests will be
185 * split into individual write operations
9fabe24e
DP
186 *
187 * @cache_type: The actual cache type.
188 * @reg_defaults_raw: Power on reset values for registers (for use with
189 * register cache support).
190 * @num_reg_defaults_raw: Number of elements in reg_defaults_raw.
141eba2e
SW
191 * @reg_format_endian: Endianness for formatted register addresses. If this is
192 * DEFAULT, the @reg_format_endian_default value from the
193 * regmap bus is used.
194 * @val_format_endian: Endianness for formatted register values. If this is
195 * DEFAULT, the @reg_format_endian_default value from the
196 * regmap bus is used.
6863ca62
KG
197 *
198 * @ranges: Array of configuration entries for virtual address ranges.
199 * @num_ranges: Number of range configuration entries.
dd898b20 200 */
b83a313b 201struct regmap_config {
d3c242e1
SW
202 const char *name;
203
b83a313b 204 int reg_bits;
f01ee60f 205 int reg_stride;
82159ba8 206 int pad_bits;
b83a313b 207 int val_bits;
2e2ae66d 208
2e2ae66d
MB
209 bool (*writeable_reg)(struct device *dev, unsigned int reg);
210 bool (*readable_reg)(struct device *dev, unsigned int reg);
211 bool (*volatile_reg)(struct device *dev, unsigned int reg);
18694886 212 bool (*precious_reg)(struct device *dev, unsigned int reg);
0d4529c5
DC
213 regmap_lock lock;
214 regmap_unlock unlock;
215 void *lock_arg;
bd20eb54 216
d2a5884a
AS
217 int (*reg_read)(void *context, unsigned int reg, unsigned int *val);
218 int (*reg_write)(void *context, unsigned int reg, unsigned int val);
219
220 bool fast_io;
221
bd20eb54 222 unsigned int max_register;
76aad392
DC
223 const struct regmap_access_table *wr_table;
224 const struct regmap_access_table *rd_table;
225 const struct regmap_access_table *volatile_table;
226 const struct regmap_access_table *precious_table;
720e4616 227 const struct reg_default *reg_defaults;
9fabe24e
DP
228 unsigned int num_reg_defaults;
229 enum regcache_type cache_type;
230 const void *reg_defaults_raw;
231 unsigned int num_reg_defaults_raw;
6f306441
LPC
232
233 u8 read_flag_mask;
234 u8 write_flag_mask;
2e33caf1
AJ
235
236 bool use_single_rw;
e894c3f4 237 bool can_multi_write;
141eba2e
SW
238
239 enum regmap_endian reg_format_endian;
240 enum regmap_endian val_format_endian;
38e23194 241
6863ca62 242 const struct regmap_range_cfg *ranges;
e3549cd0 243 unsigned int num_ranges;
6863ca62
KG
244};
245
246/**
247 * Configuration for indirectly accessed or paged registers.
248 * Registers, mapped to this virtual range, are accessed in two steps:
249 * 1. page selector register update;
250 * 2. access through data window registers.
251 *
d058bb49
MB
252 * @name: Descriptive name for diagnostics
253 *
6863ca62
KG
254 * @range_min: Address of the lowest register address in virtual range.
255 * @range_max: Address of the highest register in virtual range.
256 *
257 * @page_sel_reg: Register with selector field.
258 * @page_sel_mask: Bit shift for selector value.
259 * @page_sel_shift: Bit mask for selector value.
260 *
261 * @window_start: Address of first (lowest) register in data window.
262 * @window_len: Number of registers in data window.
263 */
264struct regmap_range_cfg {
d058bb49
MB
265 const char *name;
266
6863ca62
KG
267 /* Registers of virtual address range */
268 unsigned int range_min;
269 unsigned int range_max;
270
271 /* Page selector for indirect addressing */
272 unsigned int selector_reg;
273 unsigned int selector_mask;
274 int selector_shift;
275
276 /* Data window (per each page) */
277 unsigned int window_start;
278 unsigned int window_len;
b83a313b
MB
279};
280
0d509f2b
MB
281struct regmap_async;
282
0135bbcc 283typedef int (*regmap_hw_write)(void *context, const void *data,
b83a313b 284 size_t count);
0135bbcc 285typedef int (*regmap_hw_gather_write)(void *context,
b83a313b
MB
286 const void *reg, size_t reg_len,
287 const void *val, size_t val_len);
0d509f2b
MB
288typedef int (*regmap_hw_async_write)(void *context,
289 const void *reg, size_t reg_len,
290 const void *val, size_t val_len,
291 struct regmap_async *async);
0135bbcc 292typedef int (*regmap_hw_read)(void *context,
b83a313b
MB
293 const void *reg_buf, size_t reg_size,
294 void *val_buf, size_t val_size);
3ac17037
BB
295typedef int (*regmap_hw_reg_read)(void *context, unsigned int reg,
296 unsigned int *val);
297typedef int (*regmap_hw_reg_write)(void *context, unsigned int reg,
298 unsigned int val);
0d509f2b 299typedef struct regmap_async *(*regmap_hw_async_alloc)(void);
0135bbcc 300typedef void (*regmap_hw_free_context)(void *context);
b83a313b
MB
301
302/**
303 * Description of a hardware bus for the register map infrastructure.
304 *
bacdbe07 305 * @fast_io: Register IO is fast. Use a spinlock instead of a mutex
0d4529c5
DC
306 * to perform locking. This field is ignored if custom lock/unlock
307 * functions are used (see fields lock/unlock of
308 * struct regmap_config).
b83a313b
MB
309 * @write: Write operation.
310 * @gather_write: Write operation with split register/value, return -ENOTSUPP
311 * if not implemented on a given device.
0d509f2b
MB
312 * @async_write: Write operation which completes asynchronously, optional and
313 * must serialise with respect to non-async I/O.
c5f58f2d
MP
314 * @reg_write: Write a single register value to the given register address. This
315 * write operation has to complete when returning from the function.
b83a313b
MB
316 * @read: Read operation. Data is returned in the buffer used to transmit
317 * data.
c5f58f2d
MP
318 * @reg_read: Read a single register value from a given register address.
319 * @free_context: Free context.
0d509f2b 320 * @async_alloc: Allocate a regmap_async() structure.
b83a313b
MB
321 * @read_flag_mask: Mask to be set in the top byte of the register when doing
322 * a read.
141eba2e
SW
323 * @reg_format_endian_default: Default endianness for formatted register
324 * addresses. Used when the regmap_config specifies DEFAULT. If this is
325 * DEFAULT, BIG is assumed.
326 * @val_format_endian_default: Default endianness for formatted register
327 * values. Used when the regmap_config specifies DEFAULT. If this is
328 * DEFAULT, BIG is assumed.
adaac459
MP
329 * @max_raw_read: Max raw read size that can be used on the bus.
330 * @max_raw_write: Max raw write size that can be used on the bus.
b83a313b
MB
331 */
332struct regmap_bus {
bacdbe07 333 bool fast_io;
b83a313b
MB
334 regmap_hw_write write;
335 regmap_hw_gather_write gather_write;
0d509f2b 336 regmap_hw_async_write async_write;
3ac17037 337 regmap_hw_reg_write reg_write;
b83a313b 338 regmap_hw_read read;
3ac17037 339 regmap_hw_reg_read reg_read;
0135bbcc 340 regmap_hw_free_context free_context;
0d509f2b 341 regmap_hw_async_alloc async_alloc;
b83a313b 342 u8 read_flag_mask;
141eba2e
SW
343 enum regmap_endian reg_format_endian_default;
344 enum regmap_endian val_format_endian_default;
adaac459
MP
345 size_t max_raw_read;
346 size_t max_raw_write;
b83a313b
MB
347};
348
3cfe7a74
NB
349/*
350 * __regmap_init functions.
351 *
352 * These functions take a lock key and name parameter, and should not be called
353 * directly. Instead, use the regmap_init macros that generate a key and name
354 * for each call.
355 */
356struct regmap *__regmap_init(struct device *dev,
357 const struct regmap_bus *bus,
358 void *bus_context,
359 const struct regmap_config *config,
360 struct lock_class_key *lock_key,
361 const char *lock_name);
362struct regmap *__regmap_init_i2c(struct i2c_client *i2c,
363 const struct regmap_config *config,
364 struct lock_class_key *lock_key,
365 const char *lock_name);
366struct regmap *__regmap_init_spi(struct spi_device *dev,
367 const struct regmap_config *config,
368 struct lock_class_key *lock_key,
369 const char *lock_name);
370struct regmap *__regmap_init_spmi_base(struct spmi_device *dev,
371 const struct regmap_config *config,
372 struct lock_class_key *lock_key,
373 const char *lock_name);
374struct regmap *__regmap_init_spmi_ext(struct spmi_device *dev,
375 const struct regmap_config *config,
376 struct lock_class_key *lock_key,
377 const char *lock_name);
378struct regmap *__regmap_init_mmio_clk(struct device *dev, const char *clk_id,
379 void __iomem *regs,
380 const struct regmap_config *config,
381 struct lock_class_key *lock_key,
382 const char *lock_name);
383struct regmap *__regmap_init_ac97(struct snd_ac97 *ac97,
384 const struct regmap_config *config,
385 struct lock_class_key *lock_key,
386 const char *lock_name);
387
388struct regmap *__devm_regmap_init(struct device *dev,
389 const struct regmap_bus *bus,
390 void *bus_context,
391 const struct regmap_config *config,
392 struct lock_class_key *lock_key,
393 const char *lock_name);
394struct regmap *__devm_regmap_init_i2c(struct i2c_client *i2c,
395 const struct regmap_config *config,
396 struct lock_class_key *lock_key,
397 const char *lock_name);
398struct regmap *__devm_regmap_init_spi(struct spi_device *dev,
399 const struct regmap_config *config,
400 struct lock_class_key *lock_key,
401 const char *lock_name);
402struct regmap *__devm_regmap_init_spmi_base(struct spmi_device *dev,
403 const struct regmap_config *config,
404 struct lock_class_key *lock_key,
405 const char *lock_name);
406struct regmap *__devm_regmap_init_spmi_ext(struct spmi_device *dev,
407 const struct regmap_config *config,
408 struct lock_class_key *lock_key,
409 const char *lock_name);
410struct regmap *__devm_regmap_init_mmio_clk(struct device *dev,
411 const char *clk_id,
412 void __iomem *regs,
413 const struct regmap_config *config,
414 struct lock_class_key *lock_key,
415 const char *lock_name);
416struct regmap *__devm_regmap_init_ac97(struct snd_ac97 *ac97,
417 const struct regmap_config *config,
418 struct lock_class_key *lock_key,
419 const char *lock_name);
22853223 420
3cfe7a74
NB
421/*
422 * Wrapper for regmap_init macros to include a unique lockdep key and name
423 * for each call. No-op if CONFIG_LOCKDEP is not set.
424 *
425 * @fn: Real function to call (in the form __[*_]regmap_init[_*])
426 * @name: Config variable name (#config in the calling macro)
427 **/
428#ifdef CONFIG_LOCKDEP
429#define __regmap_lockdep_wrapper(fn, name, ...) \
430( \
431 ({ \
432 static struct lock_class_key _key; \
433 fn(__VA_ARGS__, &_key, \
434 KBUILD_BASENAME ":" \
435 __stringify(__LINE__) ":" \
436 "(" name ")->lock"); \
437 }) \
438)
439#else
440#define __regmap_lockdep_wrapper(fn, name, ...) fn(__VA_ARGS__, NULL, NULL)
441#endif
442
1ed81114
NB
443/**
444 * regmap_init(): Initialise register map
445 *
446 * @dev: Device that will be interacted with
447 * @bus: Bus-specific callbacks to use with device
448 * @bus_context: Data passed to bus-specific callbacks
449 * @config: Configuration for register map
450 *
451 * The return value will be an ERR_PTR() on error or a valid pointer to
452 * a struct regmap. This function should generally not be called
453 * directly, it should be called by bus-specific init functions.
454 */
3cfe7a74
NB
455#define regmap_init(dev, bus, bus_context, config) \
456 __regmap_lockdep_wrapper(__regmap_init, #config, \
457 dev, bus, bus_context, config)
6cfec04b 458int regmap_attach_dev(struct device *dev, struct regmap *map,
3cfe7a74 459 const struct regmap_config *config);
22853223 460
1ed81114
NB
461/**
462 * regmap_init_i2c(): Initialise register map
463 *
464 * @i2c: Device that will be interacted with
465 * @config: Configuration for register map
466 *
467 * The return value will be an ERR_PTR() on error or a valid pointer to
468 * a struct regmap.
469 */
3cfe7a74
NB
470#define regmap_init_i2c(i2c, config) \
471 __regmap_lockdep_wrapper(__regmap_init_i2c, #config, \
472 i2c, config)
1ed81114
NB
473
474/**
475 * regmap_init_spi(): Initialise register map
476 *
477 * @spi: Device that will be interacted with
478 * @config: Configuration for register map
479 *
480 * The return value will be an ERR_PTR() on error or a valid pointer to
481 * a struct regmap.
482 */
3cfe7a74
NB
483#define regmap_init_spi(dev, config) \
484 __regmap_lockdep_wrapper(__regmap_init_spi, #config, \
485 dev, config)
1ed81114
NB
486
487/**
488 * regmap_init_spmi_base(): Create regmap for the Base register space
489 * @sdev: SPMI device that will be interacted with
490 * @config: Configuration for register map
491 *
492 * The return value will be an ERR_PTR() on error or a valid pointer to
493 * a struct regmap.
494 */
3cfe7a74
NB
495#define regmap_init_spmi_base(dev, config) \
496 __regmap_lockdep_wrapper(__regmap_init_spmi_base, #config, \
497 dev, config)
1ed81114
NB
498
499/**
500 * regmap_init_spmi_ext(): Create regmap for Ext register space
501 * @sdev: Device that will be interacted with
502 * @config: Configuration for register map
503 *
504 * The return value will be an ERR_PTR() on error or a valid pointer to
505 * a struct regmap.
506 */
3cfe7a74
NB
507#define regmap_init_spmi_ext(dev, config) \
508 __regmap_lockdep_wrapper(__regmap_init_spmi_ext, #config, \
509 dev, config)
1ed81114
NB
510
511/**
512 * regmap_init_mmio_clk(): Initialise register map with register clock
513 *
514 * @dev: Device that will be interacted with
515 * @clk_id: register clock consumer ID
516 * @regs: Pointer to memory-mapped IO region
517 * @config: Configuration for register map
518 *
519 * The return value will be an ERR_PTR() on error or a valid pointer to
520 * a struct regmap.
521 */
3cfe7a74
NB
522#define regmap_init_mmio_clk(dev, clk_id, regs, config) \
523 __regmap_lockdep_wrapper(__regmap_init_mmio_clk, #config, \
524 dev, clk_id, regs, config)
878ec67b
PZ
525
526/**
527 * regmap_init_mmio(): Initialise register map
528 *
529 * @dev: Device that will be interacted with
530 * @regs: Pointer to memory-mapped IO region
531 * @config: Configuration for register map
532 *
533 * The return value will be an ERR_PTR() on error or a valid pointer to
534 * a struct regmap.
535 */
1ed81114
NB
536#define regmap_init_mmio(dev, regs, config) \
537 regmap_init_mmio_clk(dev, NULL, regs, config)
538
539/**
540 * regmap_init_ac97(): Initialise AC'97 register map
541 *
542 * @ac97: Device that will be interacted with
543 * @config: Configuration for register map
544 *
545 * The return value will be an ERR_PTR() on error or a valid pointer to
546 * a struct regmap.
547 */
3cfe7a74
NB
548#define regmap_init_ac97(ac97, config) \
549 __regmap_lockdep_wrapper(__regmap_init_ac97, #config, \
550 ac97, config)
22853223 551bool regmap_ac97_default_volatile(struct device *dev, unsigned int reg);
878ec67b 552
1ed81114
NB
553/**
554 * devm_regmap_init(): Initialise managed register map
555 *
556 * @dev: Device that will be interacted with
557 * @bus: Bus-specific callbacks to use with device
558 * @bus_context: Data passed to bus-specific callbacks
559 * @config: Configuration for register map
560 *
561 * The return value will be an ERR_PTR() on error or a valid pointer
562 * to a struct regmap. This function should generally not be called
563 * directly, it should be called by bus-specific init functions. The
564 * map will be automatically freed by the device management code.
565 */
3cfe7a74
NB
566#define devm_regmap_init(dev, bus, bus_context, config) \
567 __regmap_lockdep_wrapper(__devm_regmap_init, #config, \
568 dev, bus, bus_context, config)
1ed81114
NB
569
570/**
571 * devm_regmap_init_i2c(): Initialise managed register map
572 *
573 * @i2c: Device that will be interacted with
574 * @config: Configuration for register map
575 *
576 * The return value will be an ERR_PTR() on error or a valid pointer
577 * to a struct regmap. The regmap will be automatically freed by the
578 * device management code.
579 */
3cfe7a74
NB
580#define devm_regmap_init_i2c(i2c, config) \
581 __regmap_lockdep_wrapper(__devm_regmap_init_i2c, #config, \
582 i2c, config)
1ed81114
NB
583
584/**
585 * devm_regmap_init_spi(): Initialise register map
586 *
587 * @spi: Device that will be interacted with
588 * @config: Configuration for register map
589 *
590 * The return value will be an ERR_PTR() on error or a valid pointer
591 * to a struct regmap. The map will be automatically freed by the
592 * device management code.
593 */
3cfe7a74
NB
594#define devm_regmap_init_spi(dev, config) \
595 __regmap_lockdep_wrapper(__devm_regmap_init_spi, #config, \
596 dev, config)
1ed81114
NB
597
598/**
599 * devm_regmap_init_spmi_base(): Create managed regmap for Base register space
600 * @sdev: SPMI device that will be interacted with
601 * @config: Configuration for register map
602 *
603 * The return value will be an ERR_PTR() on error or a valid pointer
604 * to a struct regmap. The regmap will be automatically freed by the
605 * device management code.
606 */
3cfe7a74
NB
607#define devm_regmap_init_spmi_base(dev, config) \
608 __regmap_lockdep_wrapper(__devm_regmap_init_spmi_base, #config, \
609 dev, config)
1ed81114
NB
610
611/**
612 * devm_regmap_init_spmi_ext(): Create managed regmap for Ext register space
613 * @sdev: SPMI device that will be interacted with
614 * @config: Configuration for register map
615 *
616 * The return value will be an ERR_PTR() on error or a valid pointer
617 * to a struct regmap. The regmap will be automatically freed by the
618 * device management code.
619 */
3cfe7a74
NB
620#define devm_regmap_init_spmi_ext(dev, config) \
621 __regmap_lockdep_wrapper(__devm_regmap_init_spmi_ext, #config, \
622 dev, config)
3cfe7a74 623
878ec67b 624/**
1ed81114 625 * devm_regmap_init_mmio_clk(): Initialise managed register map with clock
878ec67b
PZ
626 *
627 * @dev: Device that will be interacted with
1ed81114 628 * @clk_id: register clock consumer ID
878ec67b
PZ
629 * @regs: Pointer to memory-mapped IO region
630 * @config: Configuration for register map
631 *
1ed81114
NB
632 * The return value will be an ERR_PTR() on error or a valid pointer
633 * to a struct regmap. The regmap will be automatically freed by the
634 * device management code.
878ec67b 635 */
1ed81114
NB
636#define devm_regmap_init_mmio_clk(dev, clk_id, regs, config) \
637 __regmap_lockdep_wrapper(__devm_regmap_init_mmio_clk, #config, \
638 dev, clk_id, regs, config)
878ec67b
PZ
639
640/**
641 * devm_regmap_init_mmio(): Initialise managed register map
642 *
643 * @dev: Device that will be interacted with
644 * @regs: Pointer to memory-mapped IO region
645 * @config: Configuration for register map
646 *
647 * The return value will be an ERR_PTR() on error or a valid pointer
648 * to a struct regmap. The regmap will be automatically freed by the
649 * device management code.
650 */
3cfe7a74
NB
651#define devm_regmap_init_mmio(dev, regs, config) \
652 devm_regmap_init_mmio_clk(dev, NULL, regs, config)
c0eb4676 653
1ed81114
NB
654/**
655 * devm_regmap_init_ac97(): Initialise AC'97 register map
656 *
657 * @ac97: Device that will be interacted with
658 * @config: Configuration for register map
659 *
660 * The return value will be an ERR_PTR() on error or a valid pointer
661 * to a struct regmap. The regmap will be automatically freed by the
662 * device management code.
663 */
664#define devm_regmap_init_ac97(ac97, config) \
665 __regmap_lockdep_wrapper(__devm_regmap_init_ac97, #config, \
666 ac97, config)
c0eb4676 667
b83a313b 668void regmap_exit(struct regmap *map);
bf315173
MB
669int regmap_reinit_cache(struct regmap *map,
670 const struct regmap_config *config);
72b39f6f 671struct regmap *dev_get_regmap(struct device *dev, const char *name);
8d7d3972 672struct device *regmap_get_device(struct regmap *map);
b83a313b 673int regmap_write(struct regmap *map, unsigned int reg, unsigned int val);
915f441b 674int regmap_write_async(struct regmap *map, unsigned int reg, unsigned int val);
b83a313b
MB
675int regmap_raw_write(struct regmap *map, unsigned int reg,
676 const void *val, size_t val_len);
8eaeb219
LD
677int regmap_bulk_write(struct regmap *map, unsigned int reg, const void *val,
678 size_t val_count);
8019ff6c 679int regmap_multi_reg_write(struct regmap *map, const struct reg_sequence *regs,
e33fabd3 680 int num_regs);
1d5b40bc 681int regmap_multi_reg_write_bypassed(struct regmap *map,
8019ff6c 682 const struct reg_sequence *regs,
1d5b40bc 683 int num_regs);
0d509f2b
MB
684int regmap_raw_write_async(struct regmap *map, unsigned int reg,
685 const void *val, size_t val_len);
b83a313b
MB
686int regmap_read(struct regmap *map, unsigned int reg, unsigned int *val);
687int regmap_raw_read(struct regmap *map, unsigned int reg,
688 void *val, size_t val_len);
689int regmap_bulk_read(struct regmap *map, unsigned int reg, void *val,
690 size_t val_count);
691int regmap_update_bits(struct regmap *map, unsigned int reg,
692 unsigned int mask, unsigned int val);
fd4b7286
KM
693int regmap_write_bits(struct regmap *map, unsigned int reg,
694 unsigned int mask, unsigned int val);
915f441b
MB
695int regmap_update_bits_async(struct regmap *map, unsigned int reg,
696 unsigned int mask, unsigned int val);
018690d3
MB
697int regmap_update_bits_check(struct regmap *map, unsigned int reg,
698 unsigned int mask, unsigned int val,
699 bool *change);
915f441b
MB
700int regmap_update_bits_check_async(struct regmap *map, unsigned int reg,
701 unsigned int mask, unsigned int val,
702 bool *change);
a6539c32 703int regmap_get_val_bytes(struct regmap *map);
668abc72 704int regmap_get_max_register(struct regmap *map);
a2f776cb 705int regmap_get_reg_stride(struct regmap *map);
0d509f2b 706int regmap_async_complete(struct regmap *map);
221ad7f2 707bool regmap_can_raw_write(struct regmap *map);
f50c9eb4
MP
708size_t regmap_get_raw_read_max(struct regmap *map);
709size_t regmap_get_raw_write_max(struct regmap *map);
b83a313b 710
39a58439 711int regcache_sync(struct regmap *map);
4d4cfd16
MB
712int regcache_sync_region(struct regmap *map, unsigned int min,
713 unsigned int max);
697e85bc
MB
714int regcache_drop_region(struct regmap *map, unsigned int min,
715 unsigned int max);
92afb286 716void regcache_cache_only(struct regmap *map, bool enable);
6eb0f5e0 717void regcache_cache_bypass(struct regmap *map, bool enable);
8ae0d7e8 718void regcache_mark_dirty(struct regmap *map);
92afb286 719
154881e5
MB
720bool regmap_check_range_table(struct regmap *map, unsigned int reg,
721 const struct regmap_access_table *table);
722
8019ff6c 723int regmap_register_patch(struct regmap *map, const struct reg_sequence *regs,
22f0d90a 724 int num_regs);
13ff50c8
NC
725int regmap_parse_val(struct regmap *map, const void *buf,
726 unsigned int *val);
22f0d90a 727
76aad392
DC
728static inline bool regmap_reg_in_range(unsigned int reg,
729 const struct regmap_range *range)
730{
731 return reg >= range->range_min && reg <= range->range_max;
732}
733
734bool regmap_reg_in_ranges(unsigned int reg,
735 const struct regmap_range *ranges,
736 unsigned int nranges);
737
67252287
SK
738/**
739 * Description of an register field
740 *
741 * @reg: Offset of the register within the regmap bank
742 * @lsb: lsb of the register field.
f27b37f5 743 * @msb: msb of the register field.
a0102375
KM
744 * @id_size: port size if it has some ports
745 * @id_offset: address offset for each ports
67252287
SK
746 */
747struct reg_field {
748 unsigned int reg;
749 unsigned int lsb;
750 unsigned int msb;
a0102375
KM
751 unsigned int id_size;
752 unsigned int id_offset;
67252287
SK
753};
754
755#define REG_FIELD(_reg, _lsb, _msb) { \
756 .reg = _reg, \
757 .lsb = _lsb, \
758 .msb = _msb, \
759 }
760
761struct regmap_field *regmap_field_alloc(struct regmap *regmap,
762 struct reg_field reg_field);
763void regmap_field_free(struct regmap_field *field);
764
765struct regmap_field *devm_regmap_field_alloc(struct device *dev,
766 struct regmap *regmap, struct reg_field reg_field);
767void devm_regmap_field_free(struct device *dev, struct regmap_field *field);
768
769int regmap_field_read(struct regmap_field *field, unsigned int *val);
770int regmap_field_write(struct regmap_field *field, unsigned int val);
fdf20029
KM
771int regmap_field_update_bits(struct regmap_field *field,
772 unsigned int mask, unsigned int val);
76aad392 773
a0102375
KM
774int regmap_fields_write(struct regmap_field *field, unsigned int id,
775 unsigned int val);
e874e6c7
KM
776int regmap_fields_force_write(struct regmap_field *field, unsigned int id,
777 unsigned int val);
a0102375
KM
778int regmap_fields_read(struct regmap_field *field, unsigned int id,
779 unsigned int *val);
780int regmap_fields_update_bits(struct regmap_field *field, unsigned int id,
781 unsigned int mask, unsigned int val);
76aad392 782
f8beab2b
MB
783/**
784 * Description of an IRQ for the generic regmap irq_chip.
785 *
786 * @reg_offset: Offset of the status/mask register within the bank
787 * @mask: Mask used to flag/control the register.
788 */
789struct regmap_irq {
790 unsigned int reg_offset;
791 unsigned int mask;
792};
793
794/**
795 * Description of a generic regmap irq_chip. This is not intended to
796 * handle every possible interrupt controller, but it should handle a
797 * substantial proportion of those that are found in the wild.
798 *
799 * @name: Descriptive name for IRQ controller.
800 *
801 * @status_base: Base status register address.
802 * @mask_base: Base mask register address.
d3233433
AS
803 * @ack_base: Base ack address. If zero then the chip is clear on read.
804 * Using zero value is possible with @use_ack bit.
a43fd50d 805 * @wake_base: Base address for wake enables. If zero unsupported.
022f926a 806 * @irq_reg_stride: Stride to use for chips where registers are not contiguous.
2753e6f8 807 * @init_ack_masked: Ack all masked interrupts once during initalization.
68622bdf 808 * @mask_invert: Inverted mask register: cleared bits are masked out.
d3233433 809 * @use_ack: Use @ack register even if it is zero.
68622bdf 810 * @wake_invert: Inverted wake register: cleared bits are wake enabled.
0c00c50b 811 * @runtime_pm: Hold a runtime PM lock on the device when accessing it.
f8beab2b
MB
812 *
813 * @num_regs: Number of registers in each control bank.
814 * @irqs: Descriptors for individual IRQs. Interrupt numbers are
815 * assigned based on the index in the array of the interrupt.
816 * @num_irqs: Number of descriptors.
817 */
818struct regmap_irq_chip {
819 const char *name;
820
821 unsigned int status_base;
822 unsigned int mask_base;
823 unsigned int ack_base;
a43fd50d 824 unsigned int wake_base;
022f926a 825 unsigned int irq_reg_stride;
f484f7a6
PZ
826 bool init_ack_masked:1;
827 bool mask_invert:1;
d3233433 828 bool use_ack:1;
f484f7a6
PZ
829 bool wake_invert:1;
830 bool runtime_pm:1;
f8beab2b
MB
831
832 int num_regs;
833
834 const struct regmap_irq *irqs;
835 int num_irqs;
836};
837
838struct regmap_irq_chip_data;
839
840int regmap_add_irq_chip(struct regmap *map, int irq, int irq_flags,
b026ddbb 841 int irq_base, const struct regmap_irq_chip *chip,
f8beab2b
MB
842 struct regmap_irq_chip_data **data);
843void regmap_del_irq_chip(int irq, struct regmap_irq_chip_data *data);
209a6006 844int regmap_irq_chip_get_base(struct regmap_irq_chip_data *data);
4af8be67 845int regmap_irq_get_virq(struct regmap_irq_chip_data *data, int irq);
90f790d2 846struct irq_domain *regmap_irq_get_domain(struct regmap_irq_chip_data *data);
92afb286 847
9cde5fcd
MB
848#else
849
850/*
851 * These stubs should only ever be called by generic code which has
852 * regmap based facilities, if they ever get called at runtime
853 * something is going wrong and something probably needs to select
854 * REGMAP.
855 */
856
857static inline int regmap_write(struct regmap *map, unsigned int reg,
858 unsigned int val)
859{
860 WARN_ONCE(1, "regmap API is disabled");
861 return -EINVAL;
862}
863
915f441b
MB
864static inline int regmap_write_async(struct regmap *map, unsigned int reg,
865 unsigned int val)
866{
867 WARN_ONCE(1, "regmap API is disabled");
868 return -EINVAL;
869}
870
9cde5fcd
MB
871static inline int regmap_raw_write(struct regmap *map, unsigned int reg,
872 const void *val, size_t val_len)
873{
874 WARN_ONCE(1, "regmap API is disabled");
875 return -EINVAL;
876}
877
0d509f2b
MB
878static inline int regmap_raw_write_async(struct regmap *map, unsigned int reg,
879 const void *val, size_t val_len)
880{
881 WARN_ONCE(1, "regmap API is disabled");
882 return -EINVAL;
883}
884
9cde5fcd
MB
885static inline int regmap_bulk_write(struct regmap *map, unsigned int reg,
886 const void *val, size_t val_count)
887{
888 WARN_ONCE(1, "regmap API is disabled");
889 return -EINVAL;
890}
891
892static inline int regmap_read(struct regmap *map, unsigned int reg,
893 unsigned int *val)
894{
895 WARN_ONCE(1, "regmap API is disabled");
896 return -EINVAL;
897}
898
899static inline int regmap_raw_read(struct regmap *map, unsigned int reg,
900 void *val, size_t val_len)
901{
902 WARN_ONCE(1, "regmap API is disabled");
903 return -EINVAL;
904}
905
906static inline int regmap_bulk_read(struct regmap *map, unsigned int reg,
907 void *val, size_t val_count)
908{
909 WARN_ONCE(1, "regmap API is disabled");
910 return -EINVAL;
911}
912
913static inline int regmap_update_bits(struct regmap *map, unsigned int reg,
914 unsigned int mask, unsigned int val)
915{
916 WARN_ONCE(1, "regmap API is disabled");
917 return -EINVAL;
918}
919
fd4b7286
KM
920static inline int regmap_write_bits(struct regmap *map, unsigned int reg,
921 unsigned int mask, unsigned int val)
922{
923 WARN_ONCE(1, "regmap API is disabled");
924 return -EINVAL;
925}
926
915f441b
MB
927static inline int regmap_update_bits_async(struct regmap *map,
928 unsigned int reg,
929 unsigned int mask, unsigned int val)
930{
931 WARN_ONCE(1, "regmap API is disabled");
932 return -EINVAL;
933}
934
9cde5fcd
MB
935static inline int regmap_update_bits_check(struct regmap *map,
936 unsigned int reg,
937 unsigned int mask, unsigned int val,
938 bool *change)
939{
940 WARN_ONCE(1, "regmap API is disabled");
941 return -EINVAL;
942}
943
915f441b
MB
944static inline int regmap_update_bits_check_async(struct regmap *map,
945 unsigned int reg,
946 unsigned int mask,
947 unsigned int val,
948 bool *change)
949{
950 WARN_ONCE(1, "regmap API is disabled");
951 return -EINVAL;
952}
953
9cde5fcd
MB
954static inline int regmap_get_val_bytes(struct regmap *map)
955{
956 WARN_ONCE(1, "regmap API is disabled");
957 return -EINVAL;
958}
959
668abc72
SK
960static inline int regmap_get_max_register(struct regmap *map)
961{
962 WARN_ONCE(1, "regmap API is disabled");
963 return -EINVAL;
964}
965
a2f776cb
SK
966static inline int regmap_get_reg_stride(struct regmap *map)
967{
968 WARN_ONCE(1, "regmap API is disabled");
969 return -EINVAL;
970}
971
9cde5fcd
MB
972static inline int regcache_sync(struct regmap *map)
973{
974 WARN_ONCE(1, "regmap API is disabled");
975 return -EINVAL;
976}
977
a313f9f5
MB
978static inline int regcache_sync_region(struct regmap *map, unsigned int min,
979 unsigned int max)
980{
981 WARN_ONCE(1, "regmap API is disabled");
982 return -EINVAL;
983}
984
697e85bc
MB
985static inline int regcache_drop_region(struct regmap *map, unsigned int min,
986 unsigned int max)
987{
988 WARN_ONCE(1, "regmap API is disabled");
989 return -EINVAL;
990}
991
9cde5fcd
MB
992static inline void regcache_cache_only(struct regmap *map, bool enable)
993{
994 WARN_ONCE(1, "regmap API is disabled");
995}
996
997static inline void regcache_cache_bypass(struct regmap *map, bool enable)
998{
999 WARN_ONCE(1, "regmap API is disabled");
1000}
1001
1002static inline void regcache_mark_dirty(struct regmap *map)
1003{
1004 WARN_ONCE(1, "regmap API is disabled");
1005}
1006
0d509f2b
MB
1007static inline void regmap_async_complete(struct regmap *map)
1008{
1009 WARN_ONCE(1, "regmap API is disabled");
1010}
1011
9cde5fcd
MB
1012static inline int regmap_register_patch(struct regmap *map,
1013 const struct reg_default *regs,
1014 int num_regs)
1015{
1016 WARN_ONCE(1, "regmap API is disabled");
1017 return -EINVAL;
1018}
1019
13ff50c8
NC
1020static inline int regmap_parse_val(struct regmap *map, const void *buf,
1021 unsigned int *val)
1022{
1023 WARN_ONCE(1, "regmap API is disabled");
1024 return -EINVAL;
1025}
1026
72b39f6f
MB
1027static inline struct regmap *dev_get_regmap(struct device *dev,
1028 const char *name)
1029{
72b39f6f
MB
1030 return NULL;
1031}
1032
8d7d3972
TT
1033static inline struct device *regmap_get_device(struct regmap *map)
1034{
1035 WARN_ONCE(1, "regmap API is disabled");
1d33dc6b 1036 return NULL;
8d7d3972
TT
1037}
1038
9cde5fcd
MB
1039#endif
1040
b83a313b 1041#endif