Merge tag 'range-macro' of git://git.kernel.org/pub/scm/linux/kernel/git/broonie...
[deliverable/linux.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>
b83a313b 20
de477254 21struct module;
313162d0 22struct device;
9943fa30 23struct i2c_client;
90f790d2 24struct irq_domain;
a676f083 25struct spi_device;
b83d2ff0 26struct regmap;
6863ca62 27struct regmap_range_cfg;
67252287 28struct regmap_field;
9943fa30 29
9fabe24e
DP
30/* An enum of all the supported cache types */
31enum regcache_type {
32 REGCACHE_NONE,
28644c80 33 REGCACHE_RBTREE,
2ac902ce
MB
34 REGCACHE_COMPRESSED,
35 REGCACHE_FLAT,
9fabe24e
DP
36};
37
bd20eb54
MB
38/**
39 * Default value for a register. We use an array of structs rather
40 * than a simple array as many modern devices have very sparse
41 * register maps.
42 *
43 * @reg: Register address.
44 * @def: Register default value.
45 */
46struct reg_default {
47 unsigned int reg;
48 unsigned int def;
49};
50
b83d2ff0
MB
51#ifdef CONFIG_REGMAP
52
141eba2e
SW
53enum regmap_endian {
54 /* Unspecified -> 0 -> Backwards compatible default */
55 REGMAP_ENDIAN_DEFAULT = 0,
56 REGMAP_ENDIAN_BIG,
57 REGMAP_ENDIAN_LITTLE,
58 REGMAP_ENDIAN_NATIVE,
59};
60
76aad392
DC
61/**
62 * A register range, used for access related checks
63 * (readable/writeable/volatile/precious checks)
64 *
65 * @range_min: address of first register
66 * @range_max: address of last register
67 */
68struct regmap_range {
69 unsigned int range_min;
70 unsigned int range_max;
71};
72
6112fe60
LD
73#define regmap_reg_range(low, high) { .range_min = low, .range_max = high, }
74
76aad392
DC
75/*
76 * A table of ranges including some yes ranges and some no ranges.
77 * If a register belongs to a no_range, the corresponding check function
78 * will return false. If a register belongs to a yes range, the corresponding
79 * check function will return true. "no_ranges" are searched first.
80 *
81 * @yes_ranges : pointer to an array of regmap ranges used as "yes ranges"
82 * @n_yes_ranges: size of the above array
83 * @no_ranges: pointer to an array of regmap ranges used as "no ranges"
84 * @n_no_ranges: size of the above array
85 */
86struct regmap_access_table {
87 const struct regmap_range *yes_ranges;
88 unsigned int n_yes_ranges;
89 const struct regmap_range *no_ranges;
90 unsigned int n_no_ranges;
91};
92
0d4529c5
DC
93typedef void (*regmap_lock)(void *);
94typedef void (*regmap_unlock)(void *);
95
dd898b20
MB
96/**
97 * Configuration for the register map of a device.
98 *
d3c242e1
SW
99 * @name: Optional name of the regmap. Useful when a device has multiple
100 * register regions.
101 *
dd898b20 102 * @reg_bits: Number of bits in a register address, mandatory.
f01ee60f
SW
103 * @reg_stride: The register address stride. Valid register addresses are a
104 * multiple of this value. If set to 0, a value of 1 will be
105 * used.
82159ba8 106 * @pad_bits: Number of bits of padding between register and value.
dd898b20 107 * @val_bits: Number of bits in a register value, mandatory.
2e2ae66d 108 *
3566cc9d 109 * @writeable_reg: Optional callback returning true if the register
76aad392
DC
110 * can be written to. If this field is NULL but wr_table
111 * (see below) is not, the check is performed on such table
112 * (a register is writeable if it belongs to one of the ranges
113 * specified by wr_table).
3566cc9d 114 * @readable_reg: Optional callback returning true if the register
76aad392
DC
115 * can be read from. If this field is NULL but rd_table
116 * (see below) is not, the check is performed on such table
117 * (a register is readable if it belongs to one of the ranges
118 * specified by rd_table).
3566cc9d 119 * @volatile_reg: Optional callback returning true if the register
76aad392
DC
120 * value can't be cached. If this field is NULL but
121 * volatile_table (see below) is not, the check is performed on
122 * such table (a register is volatile if it belongs to one of
123 * the ranges specified by volatile_table).
3566cc9d 124 * @precious_reg: Optional callback returning true if the rgister
76aad392
DC
125 * should not be read outside of a call from the driver
126 * (eg, a clear on read interrupt status register). If this
127 * field is NULL but precious_table (see below) is not, the
128 * check is performed on such table (a register is precious if
129 * it belongs to one of the ranges specified by precious_table).
130 * @lock: Optional lock callback (overrides regmap's default lock
131 * function, based on spinlock or mutex).
132 * @unlock: As above for unlocking.
133 * @lock_arg: this field is passed as the only argument of lock/unlock
134 * functions (ignored in case regular lock/unlock functions
135 * are not overridden).
d2a5884a
AS
136 * @reg_read: Optional callback that if filled will be used to perform
137 * all the reads from the registers. Should only be provided for
138 * devices whos read operation cannot be represented as a simple read
139 * operation on a bus such as SPI, I2C, etc. Most of the devices do
140 * not need this.
141 * @reg_write: Same as above for writing.
142 * @fast_io: Register IO is fast. Use a spinlock instead of a mutex
143 * to perform locking. This field is ignored if custom lock/unlock
144 * functions are used (see fields lock/unlock of struct regmap_config).
145 * This field is a duplicate of a similar file in
146 * 'struct regmap_bus' and serves exact same purpose.
147 * Use it only for "no-bus" cases.
bd20eb54 148 * @max_register: Optional, specifies the maximum valid register index.
76aad392
DC
149 * @wr_table: Optional, points to a struct regmap_access_table specifying
150 * valid ranges for write access.
151 * @rd_table: As above, for read access.
152 * @volatile_table: As above, for volatile registers.
153 * @precious_table: As above, for precious registers.
bd20eb54
MB
154 * @reg_defaults: Power on reset values for registers (for use with
155 * register cache support).
156 * @num_reg_defaults: Number of elements in reg_defaults.
6f306441
LPC
157 *
158 * @read_flag_mask: Mask to be set in the top byte of the register when doing
159 * a read.
160 * @write_flag_mask: Mask to be set in the top byte of the register when doing
161 * a write. If both read_flag_mask and write_flag_mask are
162 * empty the regmap_bus default masks are used.
2e33caf1
AJ
163 * @use_single_rw: If set, converts the bulk read and write operations into
164 * a series of single read and write operations. This is useful
165 * for device that does not support bulk read and write.
9fabe24e
DP
166 *
167 * @cache_type: The actual cache type.
168 * @reg_defaults_raw: Power on reset values for registers (for use with
169 * register cache support).
170 * @num_reg_defaults_raw: Number of elements in reg_defaults_raw.
141eba2e
SW
171 * @reg_format_endian: Endianness for formatted register addresses. If this is
172 * DEFAULT, the @reg_format_endian_default value from the
173 * regmap bus is used.
174 * @val_format_endian: Endianness for formatted register values. If this is
175 * DEFAULT, the @reg_format_endian_default value from the
176 * regmap bus is used.
6863ca62
KG
177 *
178 * @ranges: Array of configuration entries for virtual address ranges.
179 * @num_ranges: Number of range configuration entries.
dd898b20 180 */
b83a313b 181struct regmap_config {
d3c242e1
SW
182 const char *name;
183
b83a313b 184 int reg_bits;
f01ee60f 185 int reg_stride;
82159ba8 186 int pad_bits;
b83a313b 187 int val_bits;
2e2ae66d 188
2e2ae66d
MB
189 bool (*writeable_reg)(struct device *dev, unsigned int reg);
190 bool (*readable_reg)(struct device *dev, unsigned int reg);
191 bool (*volatile_reg)(struct device *dev, unsigned int reg);
18694886 192 bool (*precious_reg)(struct device *dev, unsigned int reg);
0d4529c5
DC
193 regmap_lock lock;
194 regmap_unlock unlock;
195 void *lock_arg;
bd20eb54 196
d2a5884a
AS
197 int (*reg_read)(void *context, unsigned int reg, unsigned int *val);
198 int (*reg_write)(void *context, unsigned int reg, unsigned int val);
199
200 bool fast_io;
201
bd20eb54 202 unsigned int max_register;
76aad392
DC
203 const struct regmap_access_table *wr_table;
204 const struct regmap_access_table *rd_table;
205 const struct regmap_access_table *volatile_table;
206 const struct regmap_access_table *precious_table;
720e4616 207 const struct reg_default *reg_defaults;
9fabe24e
DP
208 unsigned int num_reg_defaults;
209 enum regcache_type cache_type;
210 const void *reg_defaults_raw;
211 unsigned int num_reg_defaults_raw;
6f306441
LPC
212
213 u8 read_flag_mask;
214 u8 write_flag_mask;
2e33caf1
AJ
215
216 bool use_single_rw;
141eba2e
SW
217
218 enum regmap_endian reg_format_endian;
219 enum regmap_endian val_format_endian;
38e23194 220
6863ca62 221 const struct regmap_range_cfg *ranges;
e3549cd0 222 unsigned int num_ranges;
6863ca62
KG
223};
224
225/**
226 * Configuration for indirectly accessed or paged registers.
227 * Registers, mapped to this virtual range, are accessed in two steps:
228 * 1. page selector register update;
229 * 2. access through data window registers.
230 *
d058bb49
MB
231 * @name: Descriptive name for diagnostics
232 *
6863ca62
KG
233 * @range_min: Address of the lowest register address in virtual range.
234 * @range_max: Address of the highest register in virtual range.
235 *
236 * @page_sel_reg: Register with selector field.
237 * @page_sel_mask: Bit shift for selector value.
238 * @page_sel_shift: Bit mask for selector value.
239 *
240 * @window_start: Address of first (lowest) register in data window.
241 * @window_len: Number of registers in data window.
242 */
243struct regmap_range_cfg {
d058bb49
MB
244 const char *name;
245
6863ca62
KG
246 /* Registers of virtual address range */
247 unsigned int range_min;
248 unsigned int range_max;
249
250 /* Page selector for indirect addressing */
251 unsigned int selector_reg;
252 unsigned int selector_mask;
253 int selector_shift;
254
255 /* Data window (per each page) */
256 unsigned int window_start;
257 unsigned int window_len;
b83a313b
MB
258};
259
0d509f2b
MB
260struct regmap_async;
261
0135bbcc 262typedef int (*regmap_hw_write)(void *context, const void *data,
b83a313b 263 size_t count);
0135bbcc 264typedef int (*regmap_hw_gather_write)(void *context,
b83a313b
MB
265 const void *reg, size_t reg_len,
266 const void *val, size_t val_len);
0d509f2b
MB
267typedef int (*regmap_hw_async_write)(void *context,
268 const void *reg, size_t reg_len,
269 const void *val, size_t val_len,
270 struct regmap_async *async);
0135bbcc 271typedef int (*regmap_hw_read)(void *context,
b83a313b
MB
272 const void *reg_buf, size_t reg_size,
273 void *val_buf, size_t val_size);
0d509f2b 274typedef struct regmap_async *(*regmap_hw_async_alloc)(void);
0135bbcc 275typedef void (*regmap_hw_free_context)(void *context);
b83a313b
MB
276
277/**
278 * Description of a hardware bus for the register map infrastructure.
279 *
bacdbe07 280 * @fast_io: Register IO is fast. Use a spinlock instead of a mutex
0d4529c5
DC
281 * to perform locking. This field is ignored if custom lock/unlock
282 * functions are used (see fields lock/unlock of
283 * struct regmap_config).
b83a313b
MB
284 * @write: Write operation.
285 * @gather_write: Write operation with split register/value, return -ENOTSUPP
286 * if not implemented on a given device.
0d509f2b
MB
287 * @async_write: Write operation which completes asynchronously, optional and
288 * must serialise with respect to non-async I/O.
b83a313b
MB
289 * @read: Read operation. Data is returned in the buffer used to transmit
290 * data.
0d509f2b 291 * @async_alloc: Allocate a regmap_async() structure.
b83a313b
MB
292 * @read_flag_mask: Mask to be set in the top byte of the register when doing
293 * a read.
141eba2e
SW
294 * @reg_format_endian_default: Default endianness for formatted register
295 * addresses. Used when the regmap_config specifies DEFAULT. If this is
296 * DEFAULT, BIG is assumed.
297 * @val_format_endian_default: Default endianness for formatted register
298 * values. Used when the regmap_config specifies DEFAULT. If this is
299 * DEFAULT, BIG is assumed.
0d509f2b 300 * @async_size: Size of struct used for async work.
b83a313b
MB
301 */
302struct regmap_bus {
bacdbe07 303 bool fast_io;
b83a313b
MB
304 regmap_hw_write write;
305 regmap_hw_gather_write gather_write;
0d509f2b 306 regmap_hw_async_write async_write;
b83a313b 307 regmap_hw_read read;
0135bbcc 308 regmap_hw_free_context free_context;
0d509f2b 309 regmap_hw_async_alloc async_alloc;
b83a313b 310 u8 read_flag_mask;
141eba2e
SW
311 enum regmap_endian reg_format_endian_default;
312 enum regmap_endian val_format_endian_default;
b83a313b
MB
313};
314
315struct regmap *regmap_init(struct device *dev,
316 const struct regmap_bus *bus,
0135bbcc 317 void *bus_context,
b83a313b 318 const struct regmap_config *config);
9943fa30
MB
319struct regmap *regmap_init_i2c(struct i2c_client *i2c,
320 const struct regmap_config *config);
a676f083
MB
321struct regmap *regmap_init_spi(struct spi_device *dev,
322 const struct regmap_config *config);
878ec67b
PZ
323struct regmap *regmap_init_mmio_clk(struct device *dev, const char *clk_id,
324 void __iomem *regs,
325 const struct regmap_config *config);
a676f083 326
c0eb4676
MB
327struct regmap *devm_regmap_init(struct device *dev,
328 const struct regmap_bus *bus,
0135bbcc 329 void *bus_context,
c0eb4676
MB
330 const struct regmap_config *config);
331struct regmap *devm_regmap_init_i2c(struct i2c_client *i2c,
332 const struct regmap_config *config);
333struct regmap *devm_regmap_init_spi(struct spi_device *dev,
334 const struct regmap_config *config);
878ec67b
PZ
335struct regmap *devm_regmap_init_mmio_clk(struct device *dev, const char *clk_id,
336 void __iomem *regs,
337 const struct regmap_config *config);
338
339/**
340 * regmap_init_mmio(): Initialise register map
341 *
342 * @dev: Device that will be interacted with
343 * @regs: Pointer to memory-mapped IO region
344 * @config: Configuration for register map
345 *
346 * The return value will be an ERR_PTR() on error or a valid pointer to
347 * a struct regmap.
348 */
349static inline struct regmap *regmap_init_mmio(struct device *dev,
350 void __iomem *regs,
351 const struct regmap_config *config)
352{
353 return regmap_init_mmio_clk(dev, NULL, regs, config);
354}
355
356/**
357 * devm_regmap_init_mmio(): Initialise managed register map
358 *
359 * @dev: Device that will be interacted with
360 * @regs: Pointer to memory-mapped IO region
361 * @config: Configuration for register map
362 *
363 * The return value will be an ERR_PTR() on error or a valid pointer
364 * to a struct regmap. The regmap will be automatically freed by the
365 * device management code.
366 */
367static inline struct regmap *devm_regmap_init_mmio(struct device *dev,
368 void __iomem *regs,
369 const struct regmap_config *config)
370{
371 return devm_regmap_init_mmio_clk(dev, NULL, regs, config);
372}
c0eb4676 373
b83a313b 374void regmap_exit(struct regmap *map);
bf315173
MB
375int regmap_reinit_cache(struct regmap *map,
376 const struct regmap_config *config);
72b39f6f 377struct regmap *dev_get_regmap(struct device *dev, const char *name);
b83a313b
MB
378int regmap_write(struct regmap *map, unsigned int reg, unsigned int val);
379int regmap_raw_write(struct regmap *map, unsigned int reg,
380 const void *val, size_t val_len);
8eaeb219
LD
381int regmap_bulk_write(struct regmap *map, unsigned int reg, const void *val,
382 size_t val_count);
0d509f2b
MB
383int regmap_raw_write_async(struct regmap *map, unsigned int reg,
384 const void *val, size_t val_len);
b83a313b
MB
385int regmap_read(struct regmap *map, unsigned int reg, unsigned int *val);
386int regmap_raw_read(struct regmap *map, unsigned int reg,
387 void *val, size_t val_len);
388int regmap_bulk_read(struct regmap *map, unsigned int reg, void *val,
389 size_t val_count);
390int regmap_update_bits(struct regmap *map, unsigned int reg,
391 unsigned int mask, unsigned int val);
018690d3
MB
392int regmap_update_bits_check(struct regmap *map, unsigned int reg,
393 unsigned int mask, unsigned int val,
394 bool *change);
a6539c32 395int regmap_get_val_bytes(struct regmap *map);
0d509f2b 396int regmap_async_complete(struct regmap *map);
221ad7f2 397bool regmap_can_raw_write(struct regmap *map);
b83a313b 398
39a58439 399int regcache_sync(struct regmap *map);
4d4cfd16
MB
400int regcache_sync_region(struct regmap *map, unsigned int min,
401 unsigned int max);
697e85bc
MB
402int regcache_drop_region(struct regmap *map, unsigned int min,
403 unsigned int max);
92afb286 404void regcache_cache_only(struct regmap *map, bool enable);
6eb0f5e0 405void regcache_cache_bypass(struct regmap *map, bool enable);
8ae0d7e8 406void regcache_mark_dirty(struct regmap *map);
92afb286 407
154881e5
MB
408bool regmap_check_range_table(struct regmap *map, unsigned int reg,
409 const struct regmap_access_table *table);
410
22f0d90a
MB
411int regmap_register_patch(struct regmap *map, const struct reg_default *regs,
412 int num_regs);
413
76aad392
DC
414static inline bool regmap_reg_in_range(unsigned int reg,
415 const struct regmap_range *range)
416{
417 return reg >= range->range_min && reg <= range->range_max;
418}
419
420bool regmap_reg_in_ranges(unsigned int reg,
421 const struct regmap_range *ranges,
422 unsigned int nranges);
423
67252287
SK
424/**
425 * Description of an register field
426 *
427 * @reg: Offset of the register within the regmap bank
428 * @lsb: lsb of the register field.
429 * @reg: msb of the register field.
430 */
431struct reg_field {
432 unsigned int reg;
433 unsigned int lsb;
434 unsigned int msb;
435};
436
437#define REG_FIELD(_reg, _lsb, _msb) { \
438 .reg = _reg, \
439 .lsb = _lsb, \
440 .msb = _msb, \
441 }
442
443struct regmap_field *regmap_field_alloc(struct regmap *regmap,
444 struct reg_field reg_field);
445void regmap_field_free(struct regmap_field *field);
446
447struct regmap_field *devm_regmap_field_alloc(struct device *dev,
448 struct regmap *regmap, struct reg_field reg_field);
449void devm_regmap_field_free(struct device *dev, struct regmap_field *field);
450
451int regmap_field_read(struct regmap_field *field, unsigned int *val);
452int regmap_field_write(struct regmap_field *field, unsigned int val);
76aad392 453
f8beab2b
MB
454/**
455 * Description of an IRQ for the generic regmap irq_chip.
456 *
457 * @reg_offset: Offset of the status/mask register within the bank
458 * @mask: Mask used to flag/control the register.
459 */
460struct regmap_irq {
461 unsigned int reg_offset;
462 unsigned int mask;
463};
464
465/**
466 * Description of a generic regmap irq_chip. This is not intended to
467 * handle every possible interrupt controller, but it should handle a
468 * substantial proportion of those that are found in the wild.
469 *
470 * @name: Descriptive name for IRQ controller.
471 *
472 * @status_base: Base status register address.
473 * @mask_base: Base mask register address.
474 * @ack_base: Base ack address. If zero then the chip is clear on read.
a43fd50d 475 * @wake_base: Base address for wake enables. If zero unsupported.
022f926a 476 * @irq_reg_stride: Stride to use for chips where registers are not contiguous.
2753e6f8 477 * @init_ack_masked: Ack all masked interrupts once during initalization.
68622bdf
PZ
478 * @mask_invert: Inverted mask register: cleared bits are masked out.
479 * @wake_invert: Inverted wake register: cleared bits are wake enabled.
0c00c50b 480 * @runtime_pm: Hold a runtime PM lock on the device when accessing it.
f8beab2b
MB
481 *
482 * @num_regs: Number of registers in each control bank.
483 * @irqs: Descriptors for individual IRQs. Interrupt numbers are
484 * assigned based on the index in the array of the interrupt.
485 * @num_irqs: Number of descriptors.
486 */
487struct regmap_irq_chip {
488 const char *name;
489
490 unsigned int status_base;
491 unsigned int mask_base;
492 unsigned int ack_base;
a43fd50d 493 unsigned int wake_base;
022f926a 494 unsigned int irq_reg_stride;
f484f7a6
PZ
495 bool init_ack_masked:1;
496 bool mask_invert:1;
497 bool wake_invert:1;
498 bool runtime_pm:1;
f8beab2b
MB
499
500 int num_regs;
501
502 const struct regmap_irq *irqs;
503 int num_irqs;
504};
505
506struct regmap_irq_chip_data;
507
508int regmap_add_irq_chip(struct regmap *map, int irq, int irq_flags,
b026ddbb 509 int irq_base, const struct regmap_irq_chip *chip,
f8beab2b
MB
510 struct regmap_irq_chip_data **data);
511void regmap_del_irq_chip(int irq, struct regmap_irq_chip_data *data);
209a6006 512int regmap_irq_chip_get_base(struct regmap_irq_chip_data *data);
4af8be67 513int regmap_irq_get_virq(struct regmap_irq_chip_data *data, int irq);
90f790d2 514struct irq_domain *regmap_irq_get_domain(struct regmap_irq_chip_data *data);
92afb286 515
9cde5fcd
MB
516#else
517
518/*
519 * These stubs should only ever be called by generic code which has
520 * regmap based facilities, if they ever get called at runtime
521 * something is going wrong and something probably needs to select
522 * REGMAP.
523 */
524
525static inline int regmap_write(struct regmap *map, unsigned int reg,
526 unsigned int val)
527{
528 WARN_ONCE(1, "regmap API is disabled");
529 return -EINVAL;
530}
531
532static inline int regmap_raw_write(struct regmap *map, unsigned int reg,
533 const void *val, size_t val_len)
534{
535 WARN_ONCE(1, "regmap API is disabled");
536 return -EINVAL;
537}
538
0d509f2b
MB
539static inline int regmap_raw_write_async(struct regmap *map, unsigned int reg,
540 const void *val, size_t val_len)
541{
542 WARN_ONCE(1, "regmap API is disabled");
543 return -EINVAL;
544}
545
9cde5fcd
MB
546static inline int regmap_bulk_write(struct regmap *map, unsigned int reg,
547 const void *val, size_t val_count)
548{
549 WARN_ONCE(1, "regmap API is disabled");
550 return -EINVAL;
551}
552
553static inline int regmap_read(struct regmap *map, unsigned int reg,
554 unsigned int *val)
555{
556 WARN_ONCE(1, "regmap API is disabled");
557 return -EINVAL;
558}
559
560static inline int regmap_raw_read(struct regmap *map, unsigned int reg,
561 void *val, size_t val_len)
562{
563 WARN_ONCE(1, "regmap API is disabled");
564 return -EINVAL;
565}
566
567static inline int regmap_bulk_read(struct regmap *map, unsigned int reg,
568 void *val, size_t val_count)
569{
570 WARN_ONCE(1, "regmap API is disabled");
571 return -EINVAL;
572}
573
574static inline int regmap_update_bits(struct regmap *map, unsigned int reg,
575 unsigned int mask, unsigned int val)
576{
577 WARN_ONCE(1, "regmap API is disabled");
578 return -EINVAL;
579}
580
581static inline int regmap_update_bits_check(struct regmap *map,
582 unsigned int reg,
583 unsigned int mask, unsigned int val,
584 bool *change)
585{
586 WARN_ONCE(1, "regmap API is disabled");
587 return -EINVAL;
588}
589
590static inline int regmap_get_val_bytes(struct regmap *map)
591{
592 WARN_ONCE(1, "regmap API is disabled");
593 return -EINVAL;
594}
595
596static inline int regcache_sync(struct regmap *map)
597{
598 WARN_ONCE(1, "regmap API is disabled");
599 return -EINVAL;
600}
601
a313f9f5
MB
602static inline int regcache_sync_region(struct regmap *map, unsigned int min,
603 unsigned int max)
604{
605 WARN_ONCE(1, "regmap API is disabled");
606 return -EINVAL;
607}
608
697e85bc
MB
609static inline int regcache_drop_region(struct regmap *map, unsigned int min,
610 unsigned int max)
611{
612 WARN_ONCE(1, "regmap API is disabled");
613 return -EINVAL;
614}
615
9cde5fcd
MB
616static inline void regcache_cache_only(struct regmap *map, bool enable)
617{
618 WARN_ONCE(1, "regmap API is disabled");
619}
620
621static inline void regcache_cache_bypass(struct regmap *map, bool enable)
622{
623 WARN_ONCE(1, "regmap API is disabled");
624}
625
626static inline void regcache_mark_dirty(struct regmap *map)
627{
628 WARN_ONCE(1, "regmap API is disabled");
629}
630
0d509f2b
MB
631static inline void regmap_async_complete(struct regmap *map)
632{
633 WARN_ONCE(1, "regmap API is disabled");
634}
635
9cde5fcd
MB
636static inline int regmap_register_patch(struct regmap *map,
637 const struct reg_default *regs,
638 int num_regs)
639{
640 WARN_ONCE(1, "regmap API is disabled");
641 return -EINVAL;
642}
643
72b39f6f
MB
644static inline struct regmap *dev_get_regmap(struct device *dev,
645 const char *name)
646{
72b39f6f
MB
647 return NULL;
648}
649
9cde5fcd
MB
650#endif
651
b83a313b 652#endif
This page took 0.211713 seconds and 5 git commands to generate.