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