Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0-only */
0002 #ifndef __LINUX_REGMAP_H
0003 #define __LINUX_REGMAP_H
0004 
0005 /*
0006  * Register map access API
0007  *
0008  * Copyright 2011 Wolfson Microelectronics plc
0009  *
0010  * Author: Mark Brown <broonie@opensource.wolfsonmicro.com>
0011  */
0012 
0013 #include <linux/list.h>
0014 #include <linux/rbtree.h>
0015 #include <linux/ktime.h>
0016 #include <linux/delay.h>
0017 #include <linux/err.h>
0018 #include <linux/bug.h>
0019 #include <linux/lockdep.h>
0020 #include <linux/iopoll.h>
0021 #include <linux/fwnode.h>
0022 
0023 struct module;
0024 struct clk;
0025 struct device;
0026 struct device_node;
0027 struct i2c_client;
0028 struct i3c_device;
0029 struct irq_domain;
0030 struct mdio_device;
0031 struct slim_device;
0032 struct spi_device;
0033 struct spmi_device;
0034 struct regmap;
0035 struct regmap_range_cfg;
0036 struct regmap_field;
0037 struct snd_ac97;
0038 struct sdw_slave;
0039 
0040 /* An enum of all the supported cache types */
0041 enum regcache_type {
0042     REGCACHE_NONE,
0043     REGCACHE_RBTREE,
0044     REGCACHE_COMPRESSED,
0045     REGCACHE_FLAT,
0046 };
0047 
0048 /**
0049  * struct reg_default - Default value for a register.
0050  *
0051  * @reg: Register address.
0052  * @def: Register default value.
0053  *
0054  * We use an array of structs rather than a simple array as many modern devices
0055  * have very sparse register maps.
0056  */
0057 struct reg_default {
0058     unsigned int reg;
0059     unsigned int def;
0060 };
0061 
0062 /**
0063  * struct reg_sequence - An individual write from a sequence of writes.
0064  *
0065  * @reg: Register address.
0066  * @def: Register value.
0067  * @delay_us: Delay to be applied after the register write in microseconds
0068  *
0069  * Register/value pairs for sequences of writes with an optional delay in
0070  * microseconds to be applied after each write.
0071  */
0072 struct reg_sequence {
0073     unsigned int reg;
0074     unsigned int def;
0075     unsigned int delay_us;
0076 };
0077 
0078 #define REG_SEQ(_reg, _def, _delay_us) {        \
0079                 .reg = _reg,        \
0080                 .def = _def,        \
0081                 .delay_us = _delay_us,  \
0082                 }
0083 #define REG_SEQ0(_reg, _def)    REG_SEQ(_reg, _def, 0)
0084 
0085 /**
0086  * regmap_read_poll_timeout - Poll until a condition is met or a timeout occurs
0087  *
0088  * @map: Regmap to read from
0089  * @addr: Address to poll
0090  * @val: Unsigned integer variable to read the value into
0091  * @cond: Break condition (usually involving @val)
0092  * @sleep_us: Maximum time to sleep between reads in us (0
0093  *            tight-loops).  Should be less than ~20ms since usleep_range
0094  *            is used (see Documentation/timers/timers-howto.rst).
0095  * @timeout_us: Timeout in us, 0 means never timeout
0096  *
0097  * Returns 0 on success and -ETIMEDOUT upon a timeout or the regmap_read
0098  * error return value in case of a error read. In the two former cases,
0099  * the last read value at @addr is stored in @val. Must not be called
0100  * from atomic context if sleep_us or timeout_us are used.
0101  *
0102  * This is modelled after the readx_poll_timeout macros in linux/iopoll.h.
0103  */
0104 #define regmap_read_poll_timeout(map, addr, val, cond, sleep_us, timeout_us) \
0105 ({ \
0106     int __ret, __tmp; \
0107     __tmp = read_poll_timeout(regmap_read, __ret, __ret || (cond), \
0108             sleep_us, timeout_us, false, (map), (addr), &(val)); \
0109     __ret ?: __tmp; \
0110 })
0111 
0112 /**
0113  * regmap_read_poll_timeout_atomic - Poll until a condition is met or a timeout occurs
0114  *
0115  * @map: Regmap to read from
0116  * @addr: Address to poll
0117  * @val: Unsigned integer variable to read the value into
0118  * @cond: Break condition (usually involving @val)
0119  * @delay_us: Time to udelay between reads in us (0 tight-loops).
0120  *            Should be less than ~10us since udelay is used
0121  *            (see Documentation/timers/timers-howto.rst).
0122  * @timeout_us: Timeout in us, 0 means never timeout
0123  *
0124  * Returns 0 on success and -ETIMEDOUT upon a timeout or the regmap_read
0125  * error return value in case of a error read. In the two former cases,
0126  * the last read value at @addr is stored in @val.
0127  *
0128  * This is modelled after the readx_poll_timeout_atomic macros in linux/iopoll.h.
0129  *
0130  * Note: In general regmap cannot be used in atomic context. If you want to use
0131  * this macro then first setup your regmap for atomic use (flat or no cache
0132  * and MMIO regmap).
0133  */
0134 #define regmap_read_poll_timeout_atomic(map, addr, val, cond, delay_us, timeout_us) \
0135 ({ \
0136     u64 __timeout_us = (timeout_us); \
0137     unsigned long __delay_us = (delay_us); \
0138     ktime_t __timeout = ktime_add_us(ktime_get(), __timeout_us); \
0139     int __ret; \
0140     for (;;) { \
0141         __ret = regmap_read((map), (addr), &(val)); \
0142         if (__ret) \
0143             break; \
0144         if (cond) \
0145             break; \
0146         if ((__timeout_us) && \
0147             ktime_compare(ktime_get(), __timeout) > 0) { \
0148             __ret = regmap_read((map), (addr), &(val)); \
0149             break; \
0150         } \
0151         if (__delay_us) \
0152             udelay(__delay_us); \
0153     } \
0154     __ret ?: ((cond) ? 0 : -ETIMEDOUT); \
0155 })
0156 
0157 /**
0158  * regmap_field_read_poll_timeout - Poll until a condition is met or timeout
0159  *
0160  * @field: Regmap field to read from
0161  * @val: Unsigned integer variable to read the value into
0162  * @cond: Break condition (usually involving @val)
0163  * @sleep_us: Maximum time to sleep between reads in us (0
0164  *            tight-loops).  Should be less than ~20ms since usleep_range
0165  *            is used (see Documentation/timers/timers-howto.rst).
0166  * @timeout_us: Timeout in us, 0 means never timeout
0167  *
0168  * Returns 0 on success and -ETIMEDOUT upon a timeout or the regmap_field_read
0169  * error return value in case of a error read. In the two former cases,
0170  * the last read value at @addr is stored in @val. Must not be called
0171  * from atomic context if sleep_us or timeout_us are used.
0172  *
0173  * This is modelled after the readx_poll_timeout macros in linux/iopoll.h.
0174  */
0175 #define regmap_field_read_poll_timeout(field, val, cond, sleep_us, timeout_us) \
0176 ({ \
0177     int __ret, __tmp; \
0178     __tmp = read_poll_timeout(regmap_field_read, __ret, __ret || (cond), \
0179             sleep_us, timeout_us, false, (field), &(val)); \
0180     __ret ?: __tmp; \
0181 })
0182 
0183 #ifdef CONFIG_REGMAP
0184 
0185 enum regmap_endian {
0186     /* Unspecified -> 0 -> Backwards compatible default */
0187     REGMAP_ENDIAN_DEFAULT = 0,
0188     REGMAP_ENDIAN_BIG,
0189     REGMAP_ENDIAN_LITTLE,
0190     REGMAP_ENDIAN_NATIVE,
0191 };
0192 
0193 /**
0194  * struct regmap_range - A register range, used for access related checks
0195  *                       (readable/writeable/volatile/precious checks)
0196  *
0197  * @range_min: address of first register
0198  * @range_max: address of last register
0199  */
0200 struct regmap_range {
0201     unsigned int range_min;
0202     unsigned int range_max;
0203 };
0204 
0205 #define regmap_reg_range(low, high) { .range_min = low, .range_max = high, }
0206 
0207 /**
0208  * struct regmap_access_table - A table of register ranges for access checks
0209  *
0210  * @yes_ranges : pointer to an array of regmap ranges used as "yes ranges"
0211  * @n_yes_ranges: size of the above array
0212  * @no_ranges: pointer to an array of regmap ranges used as "no ranges"
0213  * @n_no_ranges: size of the above array
0214  *
0215  * A table of ranges including some yes ranges and some no ranges.
0216  * If a register belongs to a no_range, the corresponding check function
0217  * will return false. If a register belongs to a yes range, the corresponding
0218  * check function will return true. "no_ranges" are searched first.
0219  */
0220 struct regmap_access_table {
0221     const struct regmap_range *yes_ranges;
0222     unsigned int n_yes_ranges;
0223     const struct regmap_range *no_ranges;
0224     unsigned int n_no_ranges;
0225 };
0226 
0227 typedef void (*regmap_lock)(void *);
0228 typedef void (*regmap_unlock)(void *);
0229 
0230 /**
0231  * struct regmap_config - Configuration for the register map of a device.
0232  *
0233  * @name: Optional name of the regmap. Useful when a device has multiple
0234  *        register regions.
0235  *
0236  * @reg_bits: Number of bits in a register address, mandatory.
0237  * @reg_stride: The register address stride. Valid register addresses are a
0238  *              multiple of this value. If set to 0, a value of 1 will be
0239  *              used.
0240  * @reg_downshift: The number of bits to downshift the register before
0241  *         performing any operations.
0242  * @reg_base: Value to be added to every register address before performing any
0243  *        operation.
0244  * @pad_bits: Number of bits of padding between register and value.
0245  * @val_bits: Number of bits in a register value, mandatory.
0246  *
0247  * @writeable_reg: Optional callback returning true if the register
0248  *         can be written to. If this field is NULL but wr_table
0249  *         (see below) is not, the check is performed on such table
0250  *                 (a register is writeable if it belongs to one of the ranges
0251  *                  specified by wr_table).
0252  * @readable_reg: Optional callback returning true if the register
0253  *        can be read from. If this field is NULL but rd_table
0254  *         (see below) is not, the check is performed on such table
0255  *                 (a register is readable if it belongs to one of the ranges
0256  *                  specified by rd_table).
0257  * @volatile_reg: Optional callback returning true if the register
0258  *        value can't be cached. If this field is NULL but
0259  *        volatile_table (see below) is not, the check is performed on
0260  *                such table (a register is volatile if it belongs to one of
0261  *                the ranges specified by volatile_table).
0262  * @precious_reg: Optional callback returning true if the register
0263  *        should not be read outside of a call from the driver
0264  *        (e.g., a clear on read interrupt status register). If this
0265  *                field is NULL but precious_table (see below) is not, the
0266  *                check is performed on such table (a register is precious if
0267  *                it belongs to one of the ranges specified by precious_table).
0268  * @writeable_noinc_reg: Optional callback returning true if the register
0269  *          supports multiple write operations without incrementing
0270  *          the register number. If this field is NULL but
0271  *          wr_noinc_table (see below) is not, the check is
0272  *          performed on such table (a register is no increment
0273  *          writeable if it belongs to one of the ranges specified
0274  *          by wr_noinc_table).
0275  * @readable_noinc_reg: Optional callback returning true if the register
0276  *          supports multiple read operations without incrementing
0277  *          the register number. If this field is NULL but
0278  *          rd_noinc_table (see below) is not, the check is
0279  *          performed on such table (a register is no increment
0280  *          readable if it belongs to one of the ranges specified
0281  *          by rd_noinc_table).
0282  * @disable_locking: This regmap is either protected by external means or
0283  *                   is guaranteed not to be accessed from multiple threads.
0284  *                   Don't use any locking mechanisms.
0285  * @lock:     Optional lock callback (overrides regmap's default lock
0286  *        function, based on spinlock or mutex).
0287  * @unlock:   As above for unlocking.
0288  * @lock_arg:     this field is passed as the only argument of lock/unlock
0289  *        functions (ignored in case regular lock/unlock functions
0290  *        are not overridden).
0291  * @reg_read:     Optional callback that if filled will be used to perform
0292  *                all the reads from the registers. Should only be provided for
0293  *        devices whose read operation cannot be represented as a simple
0294  *        read operation on a bus such as SPI, I2C, etc. Most of the
0295  *        devices do not need this.
0296  * @reg_write:    Same as above for writing.
0297  * @reg_update_bits: Optional callback that if filled will be used to perform
0298  *           all the update_bits(rmw) operation. Should only be provided
0299  *           if the function require special handling with lock and reg
0300  *           handling and the operation cannot be represented as a simple
0301  *           update_bits operation on a bus such as SPI, I2C, etc.
0302  * @read: Optional callback that if filled will be used to perform all the
0303  *        bulk reads from the registers. Data is returned in the buffer used
0304  *        to transmit data.
0305  * @write: Same as above for writing.
0306  * @max_raw_read: Max raw read size that can be used on the device.
0307  * @max_raw_write: Max raw write size that can be used on the device.
0308  * @fast_io:      Register IO is fast. Use a spinlock instead of a mutex
0309  *            to perform locking. This field is ignored if custom lock/unlock
0310  *            functions are used (see fields lock/unlock of struct regmap_config).
0311  *        This field is a duplicate of a similar file in
0312  *        'struct regmap_bus' and serves exact same purpose.
0313  *         Use it only for "no-bus" cases.
0314  * @max_register: Optional, specifies the maximum valid register address.
0315  * @wr_table:     Optional, points to a struct regmap_access_table specifying
0316  *                valid ranges for write access.
0317  * @rd_table:     As above, for read access.
0318  * @volatile_table: As above, for volatile registers.
0319  * @precious_table: As above, for precious registers.
0320  * @wr_noinc_table: As above, for no increment writeable registers.
0321  * @rd_noinc_table: As above, for no increment readable registers.
0322  * @reg_defaults: Power on reset values for registers (for use with
0323  *                register cache support).
0324  * @num_reg_defaults: Number of elements in reg_defaults.
0325  *
0326  * @read_flag_mask: Mask to be set in the top bytes of the register when doing
0327  *                  a read.
0328  * @write_flag_mask: Mask to be set in the top bytes of the register when doing
0329  *                   a write. If both read_flag_mask and write_flag_mask are
0330  *                   empty and zero_flag_mask is not set the regmap_bus default
0331  *                   masks are used.
0332  * @zero_flag_mask: If set, read_flag_mask and write_flag_mask are used even
0333  *                   if they are both empty.
0334  * @use_relaxed_mmio: If set, MMIO R/W operations will not use memory barriers.
0335  *                    This can avoid load on devices which don't require strict
0336  *                    orderings, but drivers should carefully add any explicit
0337  *                    memory barriers when they may require them.
0338  * @use_single_read: If set, converts the bulk read operation into a series of
0339  *                   single read operations. This is useful for a device that
0340  *                   does not support  bulk read.
0341  * @use_single_write: If set, converts the bulk write operation into a series of
0342  *                    single write operations. This is useful for a device that
0343  *                    does not support bulk write.
0344  * @can_multi_write: If set, the device supports the multi write mode of bulk
0345  *                   write operations, if clear multi write requests will be
0346  *                   split into individual write operations
0347  *
0348  * @cache_type: The actual cache type.
0349  * @reg_defaults_raw: Power on reset values for registers (for use with
0350  *                    register cache support).
0351  * @num_reg_defaults_raw: Number of elements in reg_defaults_raw.
0352  * @reg_format_endian: Endianness for formatted register addresses. If this is
0353  *                     DEFAULT, the @reg_format_endian_default value from the
0354  *                     regmap bus is used.
0355  * @val_format_endian: Endianness for formatted register values. If this is
0356  *                     DEFAULT, the @reg_format_endian_default value from the
0357  *                     regmap bus is used.
0358  *
0359  * @ranges: Array of configuration entries for virtual address ranges.
0360  * @num_ranges: Number of range configuration entries.
0361  * @use_hwlock: Indicate if a hardware spinlock should be used.
0362  * @use_raw_spinlock: Indicate if a raw spinlock should be used.
0363  * @hwlock_id: Specify the hardware spinlock id.
0364  * @hwlock_mode: The hardware spinlock mode, should be HWLOCK_IRQSTATE,
0365  *       HWLOCK_IRQ or 0.
0366  * @can_sleep: Optional, specifies whether regmap operations can sleep.
0367  */
0368 struct regmap_config {
0369     const char *name;
0370 
0371     int reg_bits;
0372     int reg_stride;
0373     int reg_downshift;
0374     unsigned int reg_base;
0375     int pad_bits;
0376     int val_bits;
0377 
0378     bool (*writeable_reg)(struct device *dev, unsigned int reg);
0379     bool (*readable_reg)(struct device *dev, unsigned int reg);
0380     bool (*volatile_reg)(struct device *dev, unsigned int reg);
0381     bool (*precious_reg)(struct device *dev, unsigned int reg);
0382     bool (*writeable_noinc_reg)(struct device *dev, unsigned int reg);
0383     bool (*readable_noinc_reg)(struct device *dev, unsigned int reg);
0384 
0385     bool disable_locking;
0386     regmap_lock lock;
0387     regmap_unlock unlock;
0388     void *lock_arg;
0389 
0390     int (*reg_read)(void *context, unsigned int reg, unsigned int *val);
0391     int (*reg_write)(void *context, unsigned int reg, unsigned int val);
0392     int (*reg_update_bits)(void *context, unsigned int reg,
0393                    unsigned int mask, unsigned int val);
0394     /* Bulk read/write */
0395     int (*read)(void *context, const void *reg_buf, size_t reg_size,
0396             void *val_buf, size_t val_size);
0397     int (*write)(void *context, const void *data, size_t count);
0398     size_t max_raw_read;
0399     size_t max_raw_write;
0400 
0401     bool fast_io;
0402 
0403     unsigned int max_register;
0404     const struct regmap_access_table *wr_table;
0405     const struct regmap_access_table *rd_table;
0406     const struct regmap_access_table *volatile_table;
0407     const struct regmap_access_table *precious_table;
0408     const struct regmap_access_table *wr_noinc_table;
0409     const struct regmap_access_table *rd_noinc_table;
0410     const struct reg_default *reg_defaults;
0411     unsigned int num_reg_defaults;
0412     enum regcache_type cache_type;
0413     const void *reg_defaults_raw;
0414     unsigned int num_reg_defaults_raw;
0415 
0416     unsigned long read_flag_mask;
0417     unsigned long write_flag_mask;
0418     bool zero_flag_mask;
0419 
0420     bool use_single_read;
0421     bool use_single_write;
0422     bool use_relaxed_mmio;
0423     bool can_multi_write;
0424 
0425     enum regmap_endian reg_format_endian;
0426     enum regmap_endian val_format_endian;
0427 
0428     const struct regmap_range_cfg *ranges;
0429     unsigned int num_ranges;
0430 
0431     bool use_hwlock;
0432     bool use_raw_spinlock;
0433     unsigned int hwlock_id;
0434     unsigned int hwlock_mode;
0435 
0436     bool can_sleep;
0437 };
0438 
0439 /**
0440  * struct regmap_range_cfg - Configuration for indirectly accessed or paged
0441  *                           registers.
0442  *
0443  * @name: Descriptive name for diagnostics
0444  *
0445  * @range_min: Address of the lowest register address in virtual range.
0446  * @range_max: Address of the highest register in virtual range.
0447  *
0448  * @selector_reg: Register with selector field.
0449  * @selector_mask: Bit mask for selector value.
0450  * @selector_shift: Bit shift for selector value.
0451  *
0452  * @window_start: Address of first (lowest) register in data window.
0453  * @window_len: Number of registers in data window.
0454  *
0455  * Registers, mapped to this virtual range, are accessed in two steps:
0456  *     1. page selector register update;
0457  *     2. access through data window registers.
0458  */
0459 struct regmap_range_cfg {
0460     const char *name;
0461 
0462     /* Registers of virtual address range */
0463     unsigned int range_min;
0464     unsigned int range_max;
0465 
0466     /* Page selector for indirect addressing */
0467     unsigned int selector_reg;
0468     unsigned int selector_mask;
0469     int selector_shift;
0470 
0471     /* Data window (per each page) */
0472     unsigned int window_start;
0473     unsigned int window_len;
0474 };
0475 
0476 struct regmap_async;
0477 
0478 typedef int (*regmap_hw_write)(void *context, const void *data,
0479                    size_t count);
0480 typedef int (*regmap_hw_gather_write)(void *context,
0481                       const void *reg, size_t reg_len,
0482                       const void *val, size_t val_len);
0483 typedef int (*regmap_hw_async_write)(void *context,
0484                      const void *reg, size_t reg_len,
0485                      const void *val, size_t val_len,
0486                      struct regmap_async *async);
0487 typedef int (*regmap_hw_read)(void *context,
0488                   const void *reg_buf, size_t reg_size,
0489                   void *val_buf, size_t val_size);
0490 typedef int (*regmap_hw_reg_read)(void *context, unsigned int reg,
0491                   unsigned int *val);
0492 typedef int (*regmap_hw_reg_write)(void *context, unsigned int reg,
0493                    unsigned int val);
0494 typedef int (*regmap_hw_reg_update_bits)(void *context, unsigned int reg,
0495                      unsigned int mask, unsigned int val);
0496 typedef struct regmap_async *(*regmap_hw_async_alloc)(void);
0497 typedef void (*regmap_hw_free_context)(void *context);
0498 
0499 /**
0500  * struct regmap_bus - Description of a hardware bus for the register map
0501  *                     infrastructure.
0502  *
0503  * @fast_io: Register IO is fast. Use a spinlock instead of a mutex
0504  *       to perform locking. This field is ignored if custom lock/unlock
0505  *       functions are used (see fields lock/unlock of
0506  *       struct regmap_config).
0507  * @write: Write operation.
0508  * @gather_write: Write operation with split register/value, return -ENOTSUPP
0509  *                if not implemented  on a given device.
0510  * @async_write: Write operation which completes asynchronously, optional and
0511  *               must serialise with respect to non-async I/O.
0512  * @reg_write: Write a single register value to the given register address. This
0513  *             write operation has to complete when returning from the function.
0514  * @reg_update_bits: Update bits operation to be used against volatile
0515  *                   registers, intended for devices supporting some mechanism
0516  *                   for setting clearing bits without having to
0517  *                   read/modify/write.
0518  * @read: Read operation.  Data is returned in the buffer used to transmit
0519  *         data.
0520  * @reg_read: Read a single register value from a given register address.
0521  * @free_context: Free context.
0522  * @async_alloc: Allocate a regmap_async() structure.
0523  * @read_flag_mask: Mask to be set in the top byte of the register when doing
0524  *                  a read.
0525  * @reg_format_endian_default: Default endianness for formatted register
0526  *     addresses. Used when the regmap_config specifies DEFAULT. If this is
0527  *     DEFAULT, BIG is assumed.
0528  * @val_format_endian_default: Default endianness for formatted register
0529  *     values. Used when the regmap_config specifies DEFAULT. If this is
0530  *     DEFAULT, BIG is assumed.
0531  * @max_raw_read: Max raw read size that can be used on the bus.
0532  * @max_raw_write: Max raw write size that can be used on the bus.
0533  * @free_on_exit: kfree this on exit of regmap
0534  */
0535 struct regmap_bus {
0536     bool fast_io;
0537     regmap_hw_write write;
0538     regmap_hw_gather_write gather_write;
0539     regmap_hw_async_write async_write;
0540     regmap_hw_reg_write reg_write;
0541     regmap_hw_reg_update_bits reg_update_bits;
0542     regmap_hw_read read;
0543     regmap_hw_reg_read reg_read;
0544     regmap_hw_free_context free_context;
0545     regmap_hw_async_alloc async_alloc;
0546     u8 read_flag_mask;
0547     enum regmap_endian reg_format_endian_default;
0548     enum regmap_endian val_format_endian_default;
0549     size_t max_raw_read;
0550     size_t max_raw_write;
0551     bool free_on_exit;
0552 };
0553 
0554 /*
0555  * __regmap_init functions.
0556  *
0557  * These functions take a lock key and name parameter, and should not be called
0558  * directly. Instead, use the regmap_init macros that generate a key and name
0559  * for each call.
0560  */
0561 struct regmap *__regmap_init(struct device *dev,
0562                  const struct regmap_bus *bus,
0563                  void *bus_context,
0564                  const struct regmap_config *config,
0565                  struct lock_class_key *lock_key,
0566                  const char *lock_name);
0567 struct regmap *__regmap_init_i2c(struct i2c_client *i2c,
0568                  const struct regmap_config *config,
0569                  struct lock_class_key *lock_key,
0570                  const char *lock_name);
0571 struct regmap *__regmap_init_mdio(struct mdio_device *mdio_dev,
0572                  const struct regmap_config *config,
0573                  struct lock_class_key *lock_key,
0574                  const char *lock_name);
0575 struct regmap *__regmap_init_sccb(struct i2c_client *i2c,
0576                   const struct regmap_config *config,
0577                   struct lock_class_key *lock_key,
0578                   const char *lock_name);
0579 struct regmap *__regmap_init_slimbus(struct slim_device *slimbus,
0580                  const struct regmap_config *config,
0581                  struct lock_class_key *lock_key,
0582                  const char *lock_name);
0583 struct regmap *__regmap_init_spi(struct spi_device *dev,
0584                  const struct regmap_config *config,
0585                  struct lock_class_key *lock_key,
0586                  const char *lock_name);
0587 struct regmap *__regmap_init_spmi_base(struct spmi_device *dev,
0588                        const struct regmap_config *config,
0589                        struct lock_class_key *lock_key,
0590                        const char *lock_name);
0591 struct regmap *__regmap_init_spmi_ext(struct spmi_device *dev,
0592                       const struct regmap_config *config,
0593                       struct lock_class_key *lock_key,
0594                       const char *lock_name);
0595 struct regmap *__regmap_init_w1(struct device *w1_dev,
0596                  const struct regmap_config *config,
0597                  struct lock_class_key *lock_key,
0598                  const char *lock_name);
0599 struct regmap *__regmap_init_mmio_clk(struct device *dev, const char *clk_id,
0600                       void __iomem *regs,
0601                       const struct regmap_config *config,
0602                       struct lock_class_key *lock_key,
0603                       const char *lock_name);
0604 struct regmap *__regmap_init_ac97(struct snd_ac97 *ac97,
0605                   const struct regmap_config *config,
0606                   struct lock_class_key *lock_key,
0607                   const char *lock_name);
0608 struct regmap *__regmap_init_sdw(struct sdw_slave *sdw,
0609                  const struct regmap_config *config,
0610                  struct lock_class_key *lock_key,
0611                  const char *lock_name);
0612 struct regmap *__regmap_init_sdw_mbq(struct sdw_slave *sdw,
0613                      const struct regmap_config *config,
0614                      struct lock_class_key *lock_key,
0615                      const char *lock_name);
0616 struct regmap *__regmap_init_spi_avmm(struct spi_device *spi,
0617                       const struct regmap_config *config,
0618                       struct lock_class_key *lock_key,
0619                       const char *lock_name);
0620 
0621 struct regmap *__devm_regmap_init(struct device *dev,
0622                   const struct regmap_bus *bus,
0623                   void *bus_context,
0624                   const struct regmap_config *config,
0625                   struct lock_class_key *lock_key,
0626                   const char *lock_name);
0627 struct regmap *__devm_regmap_init_i2c(struct i2c_client *i2c,
0628                       const struct regmap_config *config,
0629                       struct lock_class_key *lock_key,
0630                       const char *lock_name);
0631 struct regmap *__devm_regmap_init_mdio(struct mdio_device *mdio_dev,
0632                       const struct regmap_config *config,
0633                       struct lock_class_key *lock_key,
0634                       const char *lock_name);
0635 struct regmap *__devm_regmap_init_sccb(struct i2c_client *i2c,
0636                        const struct regmap_config *config,
0637                        struct lock_class_key *lock_key,
0638                        const char *lock_name);
0639 struct regmap *__devm_regmap_init_spi(struct spi_device *dev,
0640                       const struct regmap_config *config,
0641                       struct lock_class_key *lock_key,
0642                       const char *lock_name);
0643 struct regmap *__devm_regmap_init_spmi_base(struct spmi_device *dev,
0644                         const struct regmap_config *config,
0645                         struct lock_class_key *lock_key,
0646                         const char *lock_name);
0647 struct regmap *__devm_regmap_init_spmi_ext(struct spmi_device *dev,
0648                        const struct regmap_config *config,
0649                        struct lock_class_key *lock_key,
0650                        const char *lock_name);
0651 struct regmap *__devm_regmap_init_w1(struct device *w1_dev,
0652                       const struct regmap_config *config,
0653                       struct lock_class_key *lock_key,
0654                       const char *lock_name);
0655 struct regmap *__devm_regmap_init_mmio_clk(struct device *dev,
0656                        const char *clk_id,
0657                        void __iomem *regs,
0658                        const struct regmap_config *config,
0659                        struct lock_class_key *lock_key,
0660                        const char *lock_name);
0661 struct regmap *__devm_regmap_init_ac97(struct snd_ac97 *ac97,
0662                        const struct regmap_config *config,
0663                        struct lock_class_key *lock_key,
0664                        const char *lock_name);
0665 struct regmap *__devm_regmap_init_sdw(struct sdw_slave *sdw,
0666                  const struct regmap_config *config,
0667                  struct lock_class_key *lock_key,
0668                  const char *lock_name);
0669 struct regmap *__devm_regmap_init_sdw_mbq(struct sdw_slave *sdw,
0670                       const struct regmap_config *config,
0671                       struct lock_class_key *lock_key,
0672                       const char *lock_name);
0673 struct regmap *__devm_regmap_init_slimbus(struct slim_device *slimbus,
0674                  const struct regmap_config *config,
0675                  struct lock_class_key *lock_key,
0676                  const char *lock_name);
0677 struct regmap *__devm_regmap_init_i3c(struct i3c_device *i3c,
0678                  const struct regmap_config *config,
0679                  struct lock_class_key *lock_key,
0680                  const char *lock_name);
0681 struct regmap *__devm_regmap_init_spi_avmm(struct spi_device *spi,
0682                        const struct regmap_config *config,
0683                        struct lock_class_key *lock_key,
0684                        const char *lock_name);
0685 /*
0686  * Wrapper for regmap_init macros to include a unique lockdep key and name
0687  * for each call. No-op if CONFIG_LOCKDEP is not set.
0688  *
0689  * @fn: Real function to call (in the form __[*_]regmap_init[_*])
0690  * @name: Config variable name (#config in the calling macro)
0691  **/
0692 #ifdef CONFIG_LOCKDEP
0693 #define __regmap_lockdep_wrapper(fn, name, ...)             \
0694 (                                   \
0695     ({                              \
0696         static struct lock_class_key _key;          \
0697         fn(__VA_ARGS__, &_key,                  \
0698             KBUILD_BASENAME ":"             \
0699             __stringify(__LINE__) ":"           \
0700             "(" name ")->lock");                \
0701     })                              \
0702 )
0703 #else
0704 #define __regmap_lockdep_wrapper(fn, name, ...) fn(__VA_ARGS__, NULL, NULL)
0705 #endif
0706 
0707 /**
0708  * regmap_init() - Initialise register map
0709  *
0710  * @dev: Device that will be interacted with
0711  * @bus: Bus-specific callbacks to use with device
0712  * @bus_context: Data passed to bus-specific callbacks
0713  * @config: Configuration for register map
0714  *
0715  * The return value will be an ERR_PTR() on error or a valid pointer to
0716  * a struct regmap.  This function should generally not be called
0717  * directly, it should be called by bus-specific init functions.
0718  */
0719 #define regmap_init(dev, bus, bus_context, config)          \
0720     __regmap_lockdep_wrapper(__regmap_init, #config,        \
0721                 dev, bus, bus_context, config)
0722 int regmap_attach_dev(struct device *dev, struct regmap *map,
0723               const struct regmap_config *config);
0724 
0725 /**
0726  * regmap_init_i2c() - Initialise register map
0727  *
0728  * @i2c: Device that will be interacted with
0729  * @config: Configuration for register map
0730  *
0731  * The return value will be an ERR_PTR() on error or a valid pointer to
0732  * a struct regmap.
0733  */
0734 #define regmap_init_i2c(i2c, config)                    \
0735     __regmap_lockdep_wrapper(__regmap_init_i2c, #config,        \
0736                 i2c, config)
0737 
0738 /**
0739  * regmap_init_mdio() - Initialise register map
0740  *
0741  * @mdio_dev: Device that will be interacted with
0742  * @config: Configuration for register map
0743  *
0744  * The return value will be an ERR_PTR() on error or a valid pointer to
0745  * a struct regmap.
0746  */
0747 #define regmap_init_mdio(mdio_dev, config)              \
0748     __regmap_lockdep_wrapper(__regmap_init_mdio, #config,       \
0749                 mdio_dev, config)
0750 
0751 /**
0752  * regmap_init_sccb() - Initialise register map
0753  *
0754  * @i2c: Device that will be interacted with
0755  * @config: Configuration for register map
0756  *
0757  * The return value will be an ERR_PTR() on error or a valid pointer to
0758  * a struct regmap.
0759  */
0760 #define regmap_init_sccb(i2c, config)                   \
0761     __regmap_lockdep_wrapper(__regmap_init_sccb, #config,       \
0762                 i2c, config)
0763 
0764 /**
0765  * regmap_init_slimbus() - Initialise register map
0766  *
0767  * @slimbus: Device that will be interacted with
0768  * @config: Configuration for register map
0769  *
0770  * The return value will be an ERR_PTR() on error or a valid pointer to
0771  * a struct regmap.
0772  */
0773 #define regmap_init_slimbus(slimbus, config)                \
0774     __regmap_lockdep_wrapper(__regmap_init_slimbus, #config,    \
0775                 slimbus, config)
0776 
0777 /**
0778  * regmap_init_spi() - Initialise register map
0779  *
0780  * @dev: Device that will be interacted with
0781  * @config: Configuration for register map
0782  *
0783  * The return value will be an ERR_PTR() on error or a valid pointer to
0784  * a struct regmap.
0785  */
0786 #define regmap_init_spi(dev, config)                    \
0787     __regmap_lockdep_wrapper(__regmap_init_spi, #config,        \
0788                 dev, config)
0789 
0790 /**
0791  * regmap_init_spmi_base() - Create regmap for the Base register space
0792  *
0793  * @dev:    SPMI device that will be interacted with
0794  * @config: Configuration for register map
0795  *
0796  * The return value will be an ERR_PTR() on error or a valid pointer to
0797  * a struct regmap.
0798  */
0799 #define regmap_init_spmi_base(dev, config)              \
0800     __regmap_lockdep_wrapper(__regmap_init_spmi_base, #config,  \
0801                 dev, config)
0802 
0803 /**
0804  * regmap_init_spmi_ext() - Create regmap for Ext register space
0805  *
0806  * @dev:    Device that will be interacted with
0807  * @config: Configuration for register map
0808  *
0809  * The return value will be an ERR_PTR() on error or a valid pointer to
0810  * a struct regmap.
0811  */
0812 #define regmap_init_spmi_ext(dev, config)               \
0813     __regmap_lockdep_wrapper(__regmap_init_spmi_ext, #config,   \
0814                 dev, config)
0815 
0816 /**
0817  * regmap_init_w1() - Initialise register map
0818  *
0819  * @w1_dev: Device that will be interacted with
0820  * @config: Configuration for register map
0821  *
0822  * The return value will be an ERR_PTR() on error or a valid pointer to
0823  * a struct regmap.
0824  */
0825 #define regmap_init_w1(w1_dev, config)                  \
0826     __regmap_lockdep_wrapper(__regmap_init_w1, #config,     \
0827                 w1_dev, config)
0828 
0829 /**
0830  * regmap_init_mmio_clk() - Initialise register map with register clock
0831  *
0832  * @dev: Device that will be interacted with
0833  * @clk_id: register clock consumer ID
0834  * @regs: Pointer to memory-mapped IO region
0835  * @config: Configuration for register map
0836  *
0837  * The return value will be an ERR_PTR() on error or a valid pointer to
0838  * a struct regmap.
0839  */
0840 #define regmap_init_mmio_clk(dev, clk_id, regs, config)         \
0841     __regmap_lockdep_wrapper(__regmap_init_mmio_clk, #config,   \
0842                 dev, clk_id, regs, config)
0843 
0844 /**
0845  * regmap_init_mmio() - Initialise register map
0846  *
0847  * @dev: Device that will be interacted with
0848  * @regs: Pointer to memory-mapped IO region
0849  * @config: Configuration for register map
0850  *
0851  * The return value will be an ERR_PTR() on error or a valid pointer to
0852  * a struct regmap.
0853  */
0854 #define regmap_init_mmio(dev, regs, config)     \
0855     regmap_init_mmio_clk(dev, NULL, regs, config)
0856 
0857 /**
0858  * regmap_init_ac97() - Initialise AC'97 register map
0859  *
0860  * @ac97: Device that will be interacted with
0861  * @config: Configuration for register map
0862  *
0863  * The return value will be an ERR_PTR() on error or a valid pointer to
0864  * a struct regmap.
0865  */
0866 #define regmap_init_ac97(ac97, config)                  \
0867     __regmap_lockdep_wrapper(__regmap_init_ac97, #config,       \
0868                 ac97, config)
0869 bool regmap_ac97_default_volatile(struct device *dev, unsigned int reg);
0870 
0871 /**
0872  * regmap_init_sdw() - Initialise register map
0873  *
0874  * @sdw: Device that will be interacted with
0875  * @config: Configuration for register map
0876  *
0877  * The return value will be an ERR_PTR() on error or a valid pointer to
0878  * a struct regmap.
0879  */
0880 #define regmap_init_sdw(sdw, config)                    \
0881     __regmap_lockdep_wrapper(__regmap_init_sdw, #config,        \
0882                 sdw, config)
0883 
0884 /**
0885  * regmap_init_sdw_mbq() - Initialise register map
0886  *
0887  * @sdw: Device that will be interacted with
0888  * @config: Configuration for register map
0889  *
0890  * The return value will be an ERR_PTR() on error or a valid pointer to
0891  * a struct regmap.
0892  */
0893 #define regmap_init_sdw_mbq(sdw, config)                    \
0894     __regmap_lockdep_wrapper(__regmap_init_sdw_mbq, #config,        \
0895                 sdw, config)
0896 
0897 /**
0898  * regmap_init_spi_avmm() - Initialize register map for Intel SPI Slave
0899  * to AVMM Bus Bridge
0900  *
0901  * @spi: Device that will be interacted with
0902  * @config: Configuration for register map
0903  *
0904  * The return value will be an ERR_PTR() on error or a valid pointer
0905  * to a struct regmap.
0906  */
0907 #define regmap_init_spi_avmm(spi, config)                   \
0908     __regmap_lockdep_wrapper(__regmap_init_spi_avmm, #config,       \
0909                  spi, config)
0910 
0911 /**
0912  * devm_regmap_init() - Initialise managed register map
0913  *
0914  * @dev: Device that will be interacted with
0915  * @bus: Bus-specific callbacks to use with device
0916  * @bus_context: Data passed to bus-specific callbacks
0917  * @config: Configuration for register map
0918  *
0919  * The return value will be an ERR_PTR() on error or a valid pointer
0920  * to a struct regmap.  This function should generally not be called
0921  * directly, it should be called by bus-specific init functions.  The
0922  * map will be automatically freed by the device management code.
0923  */
0924 #define devm_regmap_init(dev, bus, bus_context, config)         \
0925     __regmap_lockdep_wrapper(__devm_regmap_init, #config,       \
0926                 dev, bus, bus_context, config)
0927 
0928 /**
0929  * devm_regmap_init_i2c() - Initialise managed register map
0930  *
0931  * @i2c: Device that will be interacted with
0932  * @config: Configuration for register map
0933  *
0934  * The return value will be an ERR_PTR() on error or a valid pointer
0935  * to a struct regmap.  The regmap will be automatically freed by the
0936  * device management code.
0937  */
0938 #define devm_regmap_init_i2c(i2c, config)               \
0939     __regmap_lockdep_wrapper(__devm_regmap_init_i2c, #config,   \
0940                 i2c, config)
0941 
0942 /**
0943  * devm_regmap_init_mdio() - Initialise managed register map
0944  *
0945  * @mdio_dev: Device that will be interacted with
0946  * @config: Configuration for register map
0947  *
0948  * The return value will be an ERR_PTR() on error or a valid pointer
0949  * to a struct regmap.  The regmap will be automatically freed by the
0950  * device management code.
0951  */
0952 #define devm_regmap_init_mdio(mdio_dev, config)             \
0953     __regmap_lockdep_wrapper(__devm_regmap_init_mdio, #config,  \
0954                 mdio_dev, config)
0955 
0956 /**
0957  * devm_regmap_init_sccb() - Initialise managed register map
0958  *
0959  * @i2c: Device that will be interacted with
0960  * @config: Configuration for register map
0961  *
0962  * The return value will be an ERR_PTR() on error or a valid pointer
0963  * to a struct regmap.  The regmap will be automatically freed by the
0964  * device management code.
0965  */
0966 #define devm_regmap_init_sccb(i2c, config)              \
0967     __regmap_lockdep_wrapper(__devm_regmap_init_sccb, #config,  \
0968                 i2c, config)
0969 
0970 /**
0971  * devm_regmap_init_spi() - Initialise register map
0972  *
0973  * @dev: Device that will be interacted with
0974  * @config: Configuration for register map
0975  *
0976  * The return value will be an ERR_PTR() on error or a valid pointer
0977  * to a struct regmap.  The map will be automatically freed by the
0978  * device management code.
0979  */
0980 #define devm_regmap_init_spi(dev, config)               \
0981     __regmap_lockdep_wrapper(__devm_regmap_init_spi, #config,   \
0982                 dev, config)
0983 
0984 /**
0985  * devm_regmap_init_spmi_base() - Create managed regmap for Base register space
0986  *
0987  * @dev:    SPMI device that will be interacted with
0988  * @config: Configuration for register map
0989  *
0990  * The return value will be an ERR_PTR() on error or a valid pointer
0991  * to a struct regmap.  The regmap will be automatically freed by the
0992  * device management code.
0993  */
0994 #define devm_regmap_init_spmi_base(dev, config)             \
0995     __regmap_lockdep_wrapper(__devm_regmap_init_spmi_base, #config, \
0996                 dev, config)
0997 
0998 /**
0999  * devm_regmap_init_spmi_ext() - Create managed regmap for Ext register space
1000  *
1001  * @dev:    SPMI device that will be interacted with
1002  * @config: Configuration for register map
1003  *
1004  * The return value will be an ERR_PTR() on error or a valid pointer
1005  * to a struct regmap.  The regmap will be automatically freed by the
1006  * device management code.
1007  */
1008 #define devm_regmap_init_spmi_ext(dev, config)              \
1009     __regmap_lockdep_wrapper(__devm_regmap_init_spmi_ext, #config,  \
1010                 dev, config)
1011 
1012 /**
1013  * devm_regmap_init_w1() - Initialise managed register map
1014  *
1015  * @w1_dev: Device that will be interacted with
1016  * @config: Configuration for register map
1017  *
1018  * The return value will be an ERR_PTR() on error or a valid pointer
1019  * to a struct regmap.  The regmap will be automatically freed by the
1020  * device management code.
1021  */
1022 #define devm_regmap_init_w1(w1_dev, config)             \
1023     __regmap_lockdep_wrapper(__devm_regmap_init_w1, #config,    \
1024                 w1_dev, config)
1025 /**
1026  * devm_regmap_init_mmio_clk() - Initialise managed register map with clock
1027  *
1028  * @dev: Device that will be interacted with
1029  * @clk_id: register clock consumer ID
1030  * @regs: Pointer to memory-mapped IO region
1031  * @config: Configuration for register map
1032  *
1033  * The return value will be an ERR_PTR() on error or a valid pointer
1034  * to a struct regmap.  The regmap will be automatically freed by the
1035  * device management code.
1036  */
1037 #define devm_regmap_init_mmio_clk(dev, clk_id, regs, config)        \
1038     __regmap_lockdep_wrapper(__devm_regmap_init_mmio_clk, #config,  \
1039                 dev, clk_id, regs, config)
1040 
1041 /**
1042  * devm_regmap_init_mmio() - Initialise managed register map
1043  *
1044  * @dev: Device that will be interacted with
1045  * @regs: Pointer to memory-mapped IO region
1046  * @config: Configuration for register map
1047  *
1048  * The return value will be an ERR_PTR() on error or a valid pointer
1049  * to a struct regmap.  The regmap will be automatically freed by the
1050  * device management code.
1051  */
1052 #define devm_regmap_init_mmio(dev, regs, config)        \
1053     devm_regmap_init_mmio_clk(dev, NULL, regs, config)
1054 
1055 /**
1056  * devm_regmap_init_ac97() - Initialise AC'97 register map
1057  *
1058  * @ac97: Device that will be interacted with
1059  * @config: Configuration for register map
1060  *
1061  * The return value will be an ERR_PTR() on error or a valid pointer
1062  * to a struct regmap.  The regmap will be automatically freed by the
1063  * device management code.
1064  */
1065 #define devm_regmap_init_ac97(ac97, config)             \
1066     __regmap_lockdep_wrapper(__devm_regmap_init_ac97, #config,  \
1067                 ac97, config)
1068 
1069 /**
1070  * devm_regmap_init_sdw() - Initialise managed register map
1071  *
1072  * @sdw: Device that will be interacted with
1073  * @config: Configuration for register map
1074  *
1075  * The return value will be an ERR_PTR() on error or a valid pointer
1076  * to a struct regmap. The regmap will be automatically freed by the
1077  * device management code.
1078  */
1079 #define devm_regmap_init_sdw(sdw, config)               \
1080     __regmap_lockdep_wrapper(__devm_regmap_init_sdw, #config,   \
1081                 sdw, config)
1082 
1083 /**
1084  * devm_regmap_init_sdw_mbq() - Initialise managed register map
1085  *
1086  * @sdw: Device that will be interacted with
1087  * @config: Configuration for register map
1088  *
1089  * The return value will be an ERR_PTR() on error or a valid pointer
1090  * to a struct regmap. The regmap will be automatically freed by the
1091  * device management code.
1092  */
1093 #define devm_regmap_init_sdw_mbq(sdw, config)           \
1094     __regmap_lockdep_wrapper(__devm_regmap_init_sdw_mbq, #config,   \
1095                 sdw, config)
1096 
1097 /**
1098  * devm_regmap_init_slimbus() - Initialise managed register map
1099  *
1100  * @slimbus: Device that will be interacted with
1101  * @config: Configuration for register map
1102  *
1103  * The return value will be an ERR_PTR() on error or a valid pointer
1104  * to a struct regmap. The regmap will be automatically freed by the
1105  * device management code.
1106  */
1107 #define devm_regmap_init_slimbus(slimbus, config)           \
1108     __regmap_lockdep_wrapper(__devm_regmap_init_slimbus, #config,   \
1109                 slimbus, config)
1110 
1111 /**
1112  * devm_regmap_init_i3c() - Initialise managed register map
1113  *
1114  * @i3c: Device that will be interacted with
1115  * @config: Configuration for register map
1116  *
1117  * The return value will be an ERR_PTR() on error or a valid pointer
1118  * to a struct regmap.  The regmap will be automatically freed by the
1119  * device management code.
1120  */
1121 #define devm_regmap_init_i3c(i3c, config)               \
1122     __regmap_lockdep_wrapper(__devm_regmap_init_i3c, #config,   \
1123                 i3c, config)
1124 
1125 /**
1126  * devm_regmap_init_spi_avmm() - Initialize register map for Intel SPI Slave
1127  * to AVMM Bus Bridge
1128  *
1129  * @spi: Device that will be interacted with
1130  * @config: Configuration for register map
1131  *
1132  * The return value will be an ERR_PTR() on error or a valid pointer
1133  * to a struct regmap.  The map will be automatically freed by the
1134  * device management code.
1135  */
1136 #define devm_regmap_init_spi_avmm(spi, config)              \
1137     __regmap_lockdep_wrapper(__devm_regmap_init_spi_avmm, #config,  \
1138                  spi, config)
1139 
1140 int regmap_mmio_attach_clk(struct regmap *map, struct clk *clk);
1141 void regmap_mmio_detach_clk(struct regmap *map);
1142 void regmap_exit(struct regmap *map);
1143 int regmap_reinit_cache(struct regmap *map,
1144             const struct regmap_config *config);
1145 struct regmap *dev_get_regmap(struct device *dev, const char *name);
1146 struct device *regmap_get_device(struct regmap *map);
1147 int regmap_write(struct regmap *map, unsigned int reg, unsigned int val);
1148 int regmap_write_async(struct regmap *map, unsigned int reg, unsigned int val);
1149 int regmap_raw_write(struct regmap *map, unsigned int reg,
1150              const void *val, size_t val_len);
1151 int regmap_noinc_write(struct regmap *map, unsigned int reg,
1152              const void *val, size_t val_len);
1153 int regmap_bulk_write(struct regmap *map, unsigned int reg, const void *val,
1154             size_t val_count);
1155 int regmap_multi_reg_write(struct regmap *map, const struct reg_sequence *regs,
1156             int num_regs);
1157 int regmap_multi_reg_write_bypassed(struct regmap *map,
1158                     const struct reg_sequence *regs,
1159                     int num_regs);
1160 int regmap_raw_write_async(struct regmap *map, unsigned int reg,
1161                const void *val, size_t val_len);
1162 int regmap_read(struct regmap *map, unsigned int reg, unsigned int *val);
1163 int regmap_raw_read(struct regmap *map, unsigned int reg,
1164             void *val, size_t val_len);
1165 int regmap_noinc_read(struct regmap *map, unsigned int reg,
1166               void *val, size_t val_len);
1167 int regmap_bulk_read(struct regmap *map, unsigned int reg, void *val,
1168              size_t val_count);
1169 int regmap_update_bits_base(struct regmap *map, unsigned int reg,
1170                 unsigned int mask, unsigned int val,
1171                 bool *change, bool async, bool force);
1172 
1173 static inline int regmap_update_bits(struct regmap *map, unsigned int reg,
1174                      unsigned int mask, unsigned int val)
1175 {
1176     return regmap_update_bits_base(map, reg, mask, val, NULL, false, false);
1177 }
1178 
1179 static inline int regmap_update_bits_async(struct regmap *map, unsigned int reg,
1180                        unsigned int mask, unsigned int val)
1181 {
1182     return regmap_update_bits_base(map, reg, mask, val, NULL, true, false);
1183 }
1184 
1185 static inline int regmap_update_bits_check(struct regmap *map, unsigned int reg,
1186                        unsigned int mask, unsigned int val,
1187                        bool *change)
1188 {
1189     return regmap_update_bits_base(map, reg, mask, val,
1190                        change, false, false);
1191 }
1192 
1193 static inline int
1194 regmap_update_bits_check_async(struct regmap *map, unsigned int reg,
1195                    unsigned int mask, unsigned int val,
1196                    bool *change)
1197 {
1198     return regmap_update_bits_base(map, reg, mask, val,
1199                        change, true, false);
1200 }
1201 
1202 static inline int regmap_write_bits(struct regmap *map, unsigned int reg,
1203                     unsigned int mask, unsigned int val)
1204 {
1205     return regmap_update_bits_base(map, reg, mask, val, NULL, false, true);
1206 }
1207 
1208 int regmap_get_val_bytes(struct regmap *map);
1209 int regmap_get_max_register(struct regmap *map);
1210 int regmap_get_reg_stride(struct regmap *map);
1211 int regmap_async_complete(struct regmap *map);
1212 bool regmap_can_raw_write(struct regmap *map);
1213 size_t regmap_get_raw_read_max(struct regmap *map);
1214 size_t regmap_get_raw_write_max(struct regmap *map);
1215 
1216 int regcache_sync(struct regmap *map);
1217 int regcache_sync_region(struct regmap *map, unsigned int min,
1218              unsigned int max);
1219 int regcache_drop_region(struct regmap *map, unsigned int min,
1220              unsigned int max);
1221 void regcache_cache_only(struct regmap *map, bool enable);
1222 void regcache_cache_bypass(struct regmap *map, bool enable);
1223 void regcache_mark_dirty(struct regmap *map);
1224 
1225 bool regmap_check_range_table(struct regmap *map, unsigned int reg,
1226                   const struct regmap_access_table *table);
1227 
1228 int regmap_register_patch(struct regmap *map, const struct reg_sequence *regs,
1229               int num_regs);
1230 int regmap_parse_val(struct regmap *map, const void *buf,
1231                 unsigned int *val);
1232 
1233 static inline bool regmap_reg_in_range(unsigned int reg,
1234                        const struct regmap_range *range)
1235 {
1236     return reg >= range->range_min && reg <= range->range_max;
1237 }
1238 
1239 bool regmap_reg_in_ranges(unsigned int reg,
1240               const struct regmap_range *ranges,
1241               unsigned int nranges);
1242 
1243 static inline int regmap_set_bits(struct regmap *map,
1244                   unsigned int reg, unsigned int bits)
1245 {
1246     return regmap_update_bits_base(map, reg, bits, bits,
1247                        NULL, false, false);
1248 }
1249 
1250 static inline int regmap_clear_bits(struct regmap *map,
1251                     unsigned int reg, unsigned int bits)
1252 {
1253     return regmap_update_bits_base(map, reg, bits, 0, NULL, false, false);
1254 }
1255 
1256 int regmap_test_bits(struct regmap *map, unsigned int reg, unsigned int bits);
1257 
1258 /**
1259  * struct reg_field - Description of an register field
1260  *
1261  * @reg: Offset of the register within the regmap bank
1262  * @lsb: lsb of the register field.
1263  * @msb: msb of the register field.
1264  * @id_size: port size if it has some ports
1265  * @id_offset: address offset for each ports
1266  */
1267 struct reg_field {
1268     unsigned int reg;
1269     unsigned int lsb;
1270     unsigned int msb;
1271     unsigned int id_size;
1272     unsigned int id_offset;
1273 };
1274 
1275 #define REG_FIELD(_reg, _lsb, _msb) {       \
1276                 .reg = _reg,    \
1277                 .lsb = _lsb,    \
1278                 .msb = _msb,    \
1279                 }
1280 
1281 #define REG_FIELD_ID(_reg, _lsb, _msb, _size, _offset) {    \
1282                 .reg = _reg,            \
1283                 .lsb = _lsb,            \
1284                 .msb = _msb,            \
1285                 .id_size = _size,       \
1286                 .id_offset = _offset,       \
1287                 }
1288 
1289 struct regmap_field *regmap_field_alloc(struct regmap *regmap,
1290         struct reg_field reg_field);
1291 void regmap_field_free(struct regmap_field *field);
1292 
1293 struct regmap_field *devm_regmap_field_alloc(struct device *dev,
1294         struct regmap *regmap, struct reg_field reg_field);
1295 void devm_regmap_field_free(struct device *dev, struct regmap_field *field);
1296 
1297 int regmap_field_bulk_alloc(struct regmap *regmap,
1298                  struct regmap_field **rm_field,
1299                  const struct reg_field *reg_field,
1300                  int num_fields);
1301 void regmap_field_bulk_free(struct regmap_field *field);
1302 int devm_regmap_field_bulk_alloc(struct device *dev, struct regmap *regmap,
1303                  struct regmap_field **field,
1304                  const struct reg_field *reg_field,
1305                  int num_fields);
1306 void devm_regmap_field_bulk_free(struct device *dev,
1307                  struct regmap_field *field);
1308 
1309 int regmap_field_read(struct regmap_field *field, unsigned int *val);
1310 int regmap_field_update_bits_base(struct regmap_field *field,
1311                   unsigned int mask, unsigned int val,
1312                   bool *change, bool async, bool force);
1313 int regmap_fields_read(struct regmap_field *field, unsigned int id,
1314                unsigned int *val);
1315 int regmap_fields_update_bits_base(struct regmap_field *field,  unsigned int id,
1316                    unsigned int mask, unsigned int val,
1317                    bool *change, bool async, bool force);
1318 
1319 static inline int regmap_field_write(struct regmap_field *field,
1320                      unsigned int val)
1321 {
1322     return regmap_field_update_bits_base(field, ~0, val,
1323                          NULL, false, false);
1324 }
1325 
1326 static inline int regmap_field_force_write(struct regmap_field *field,
1327                        unsigned int val)
1328 {
1329     return regmap_field_update_bits_base(field, ~0, val, NULL, false, true);
1330 }
1331 
1332 static inline int regmap_field_update_bits(struct regmap_field *field,
1333                        unsigned int mask, unsigned int val)
1334 {
1335     return regmap_field_update_bits_base(field, mask, val,
1336                          NULL, false, false);
1337 }
1338 
1339 static inline int regmap_field_set_bits(struct regmap_field *field,
1340                     unsigned int bits)
1341 {
1342     return regmap_field_update_bits_base(field, bits, bits, NULL, false,
1343                          false);
1344 }
1345 
1346 static inline int regmap_field_clear_bits(struct regmap_field *field,
1347                       unsigned int bits)
1348 {
1349     return regmap_field_update_bits_base(field, bits, 0, NULL, false,
1350                          false);
1351 }
1352 
1353 int regmap_field_test_bits(struct regmap_field *field, unsigned int bits);
1354 
1355 static inline int
1356 regmap_field_force_update_bits(struct regmap_field *field,
1357                    unsigned int mask, unsigned int val)
1358 {
1359     return regmap_field_update_bits_base(field, mask, val,
1360                          NULL, false, true);
1361 }
1362 
1363 static inline int regmap_fields_write(struct regmap_field *field,
1364                       unsigned int id, unsigned int val)
1365 {
1366     return regmap_fields_update_bits_base(field, id, ~0, val,
1367                           NULL, false, false);
1368 }
1369 
1370 static inline int regmap_fields_force_write(struct regmap_field *field,
1371                         unsigned int id, unsigned int val)
1372 {
1373     return regmap_fields_update_bits_base(field, id, ~0, val,
1374                           NULL, false, true);
1375 }
1376 
1377 static inline int
1378 regmap_fields_update_bits(struct regmap_field *field, unsigned int id,
1379               unsigned int mask, unsigned int val)
1380 {
1381     return regmap_fields_update_bits_base(field, id, mask, val,
1382                           NULL, false, false);
1383 }
1384 
1385 static inline int
1386 regmap_fields_force_update_bits(struct regmap_field *field, unsigned int id,
1387                 unsigned int mask, unsigned int val)
1388 {
1389     return regmap_fields_update_bits_base(field, id, mask, val,
1390                           NULL, false, true);
1391 }
1392 
1393 /**
1394  * struct regmap_irq_type - IRQ type definitions.
1395  *
1396  * @type_reg_offset: Offset register for the irq type setting.
1397  * @type_rising_val: Register value to configure RISING type irq.
1398  * @type_falling_val: Register value to configure FALLING type irq.
1399  * @type_level_low_val: Register value to configure LEVEL_LOW type irq.
1400  * @type_level_high_val: Register value to configure LEVEL_HIGH type irq.
1401  * @types_supported: logical OR of IRQ_TYPE_* flags indicating supported types.
1402  */
1403 struct regmap_irq_type {
1404     unsigned int type_reg_offset;
1405     unsigned int type_reg_mask;
1406     unsigned int type_rising_val;
1407     unsigned int type_falling_val;
1408     unsigned int type_level_low_val;
1409     unsigned int type_level_high_val;
1410     unsigned int types_supported;
1411 };
1412 
1413 /**
1414  * struct regmap_irq - Description of an IRQ for the generic regmap irq_chip.
1415  *
1416  * @reg_offset: Offset of the status/mask register within the bank
1417  * @mask:       Mask used to flag/control the register.
1418  * @type:   IRQ trigger type setting details if supported.
1419  */
1420 struct regmap_irq {
1421     unsigned int reg_offset;
1422     unsigned int mask;
1423     struct regmap_irq_type type;
1424 };
1425 
1426 #define REGMAP_IRQ_REG(_irq, _off, _mask)       \
1427     [_irq] = { .reg_offset = (_off), .mask = (_mask) }
1428 
1429 #define REGMAP_IRQ_REG_LINE(_id, _reg_bits) \
1430     [_id] = {               \
1431         .mask = BIT((_id) % (_reg_bits)),   \
1432         .reg_offset = (_id) / (_reg_bits),  \
1433     }
1434 
1435 #define REGMAP_IRQ_MAIN_REG_OFFSET(arr)             \
1436     { .num_regs = ARRAY_SIZE((arr)), .offset = &(arr)[0] }
1437 
1438 struct regmap_irq_sub_irq_map {
1439     unsigned int num_regs;
1440     unsigned int *offset;
1441 };
1442 
1443 struct regmap_irq_chip_data;
1444 
1445 /**
1446  * struct regmap_irq_chip - Description of a generic regmap irq_chip.
1447  *
1448  * @name:        Descriptive name for IRQ controller.
1449  *
1450  * @main_status: Base main status register address. For chips which have
1451  *       interrupts arranged in separate sub-irq blocks with own IRQ
1452  *       registers and which have a main IRQ registers indicating
1453  *       sub-irq blocks with unhandled interrupts. For such chips fill
1454  *       sub-irq register information in status_base, mask_base and
1455  *       ack_base.
1456  * @num_main_status_bits: Should be given to chips where number of meaningfull
1457  *            main status bits differs from num_regs.
1458  * @sub_reg_offsets: arrays of mappings from main register bits to sub irq
1459  *           registers. First item in array describes the registers
1460  *           for first main status bit. Second array for second bit etc.
1461  *           Offset is given as sub register status offset to
1462  *           status_base. Should contain num_regs arrays.
1463  *           Can be provided for chips with more complex mapping than
1464  *           1.st bit to 1.st sub-reg, 2.nd bit to 2.nd sub-reg, ...
1465  *           When used with not_fixed_stride, each one-element array
1466  *           member contains offset calculated as address from each
1467  *           peripheral to first peripheral.
1468  * @num_main_regs: Number of 'main status' irq registers for chips which have
1469  *         main_status set.
1470  *
1471  * @status_base: Base status register address.
1472  * @mask_base:   Base mask register address. Mask bits are set to 1 when an
1473  *               interrupt is masked, 0 when unmasked.
1474  * @unmask_base:  Base unmask register address. Unmask bits are set to 1 when
1475  *                an interrupt is unmasked and 0 when masked.
1476  * @ack_base:    Base ack address. If zero then the chip is clear on read.
1477  *               Using zero value is possible with @use_ack bit.
1478  * @wake_base:   Base address for wake enables.  If zero unsupported.
1479  * @type_base:   Base address for irq type.  If zero unsupported.  Deprecated,
1480  *       use @config_base instead.
1481  * @virt_reg_base:   Base addresses for extra config regs. Deprecated, use
1482  *           @config_base instead.
1483  * @config_base: Base address for IRQ type config regs. If null unsupported.
1484  * @irq_reg_stride:  Stride to use for chips where registers are not contiguous.
1485  * @init_ack_masked: Ack all masked interrupts once during initalization.
1486  * @mask_invert: Inverted mask register: cleared bits are masked out.
1487  *       Deprecated; prefer describing an inverted mask register as
1488  *       an unmask register.
1489  * @mask_unmask_non_inverted: Controls mask bit inversion for chips that set
1490  *  both @mask_base and @unmask_base. If false, mask and unmask bits are
1491  *  inverted (which is deprecated behavior); if true, bits will not be
1492  *  inverted and the registers keep their normal behavior. Note that if
1493  *  you use only one of @mask_base or @unmask_base, this flag has no
1494  *  effect and is unnecessary. Any new drivers that set both @mask_base
1495  *  and @unmask_base should set this to true to avoid relying on the
1496  *  deprecated behavior.
1497  * @use_ack:     Use @ack register even if it is zero.
1498  * @ack_invert:  Inverted ack register: cleared bits for ack.
1499  * @clear_ack:  Use this to set 1 and 0 or vice-versa to clear interrupts.
1500  * @wake_invert: Inverted wake register: cleared bits are wake enabled.
1501  * @type_invert: Invert the type flags. Deprecated, use config registers
1502  *       instead.
1503  * @type_in_mask: Use the mask registers for controlling irq type. Use this if
1504  *        the hardware provides separate bits for rising/falling edge
1505  *        or low/high level interrupts and they should be combined into
1506  *        a single logical interrupt. Use &struct regmap_irq_type data
1507  *        to define the mask bit for each irq type.
1508  * @clear_on_unmask: For chips with interrupts cleared on read: read the status
1509  *                   registers before unmasking interrupts to clear any bits
1510  *                   set when they were masked.
1511  * @not_fixed_stride: Used when chip peripherals are not laid out with fixed
1512  *            stride. Must be used with sub_reg_offsets containing the
1513  *            offsets to each peripheral. Deprecated; the same thing
1514  *            can be accomplished with a @get_irq_reg callback, without
1515  *            the need for a @sub_reg_offsets table.
1516  * @status_invert: Inverted status register: cleared bits are active interrupts.
1517  * @runtime_pm:  Hold a runtime PM lock on the device when accessing it.
1518  *
1519  * @num_regs:    Number of registers in each control bank.
1520  * @irqs:        Descriptors for individual IRQs.  Interrupt numbers are
1521  *               assigned based on the index in the array of the interrupt.
1522  * @num_irqs:    Number of descriptors.
1523  * @num_type_reg:    Number of type registers. Deprecated, use config registers
1524  *           instead.
1525  * @num_virt_regs:   Number of non-standard irq configuration registers.
1526  *           If zero unsupported. Deprecated, use config registers
1527  *           instead.
1528  * @num_config_bases:   Number of config base registers.
1529  * @num_config_regs:    Number of config registers for each config base register.
1530  * @handle_pre_irq:  Driver specific callback to handle interrupt from device
1531  *           before regmap_irq_handler process the interrupts.
1532  * @handle_post_irq: Driver specific callback to handle interrupt from device
1533  *           after handling the interrupts in regmap_irq_handler().
1534  * @set_type_virt:   Driver specific callback to extend regmap_irq_set_type()
1535  *           and configure virt regs. Deprecated, use @set_type_config
1536  *           callback and config registers instead.
1537  * @set_type_config: Callback used for configuring irq types.
1538  * @get_irq_reg: Callback for mapping (base register, index) pairs to register
1539  *       addresses. The base register will be one of @status_base,
1540  *       @mask_base, etc., @main_status, or any of @config_base.
1541  *       The index will be in the range [0, num_main_regs[ for the
1542  *       main status base, [0, num_type_settings[ for any config
1543  *       register base, and [0, num_regs[ for any other base.
1544  *       If unspecified then regmap_irq_get_irq_reg_linear() is used.
1545  * @irq_drv_data:    Driver specific IRQ data which is passed as parameter when
1546  *           driver specific pre/post interrupt handler is called.
1547  *
1548  * This is not intended to handle every possible interrupt controller, but
1549  * it should handle a substantial proportion of those that are found in the
1550  * wild.
1551  */
1552 struct regmap_irq_chip {
1553     const char *name;
1554 
1555     unsigned int main_status;
1556     unsigned int num_main_status_bits;
1557     struct regmap_irq_sub_irq_map *sub_reg_offsets;
1558     int num_main_regs;
1559 
1560     unsigned int status_base;
1561     unsigned int mask_base;
1562     unsigned int unmask_base;
1563     unsigned int ack_base;
1564     unsigned int wake_base;
1565     unsigned int type_base;
1566     unsigned int *virt_reg_base;
1567     const unsigned int *config_base;
1568     unsigned int irq_reg_stride;
1569     unsigned int init_ack_masked:1;
1570     unsigned int mask_invert:1;
1571     unsigned int mask_unmask_non_inverted:1;
1572     unsigned int use_ack:1;
1573     unsigned int ack_invert:1;
1574     unsigned int clear_ack:1;
1575     unsigned int wake_invert:1;
1576     unsigned int runtime_pm:1;
1577     unsigned int type_invert:1;
1578     unsigned int type_in_mask:1;
1579     unsigned int clear_on_unmask:1;
1580     unsigned int not_fixed_stride:1;
1581     unsigned int status_invert:1;
1582 
1583     int num_regs;
1584 
1585     const struct regmap_irq *irqs;
1586     int num_irqs;
1587 
1588     int num_type_reg;
1589     int num_virt_regs;
1590     int num_config_bases;
1591     int num_config_regs;
1592 
1593     int (*handle_pre_irq)(void *irq_drv_data);
1594     int (*handle_post_irq)(void *irq_drv_data);
1595     int (*set_type_virt)(unsigned int **buf, unsigned int type,
1596                  unsigned long hwirq, int reg);
1597     int (*set_type_config)(unsigned int **buf, unsigned int type,
1598                    const struct regmap_irq *irq_data, int idx);
1599     unsigned int (*get_irq_reg)(struct regmap_irq_chip_data *data,
1600                     unsigned int base, int index);
1601     void *irq_drv_data;
1602 };
1603 
1604 unsigned int regmap_irq_get_irq_reg_linear(struct regmap_irq_chip_data *data,
1605                        unsigned int base, int index);
1606 int regmap_irq_set_type_config_simple(unsigned int **buf, unsigned int type,
1607                       const struct regmap_irq *irq_data, int idx);
1608 
1609 int regmap_add_irq_chip(struct regmap *map, int irq, int irq_flags,
1610             int irq_base, const struct regmap_irq_chip *chip,
1611             struct regmap_irq_chip_data **data);
1612 int regmap_add_irq_chip_fwnode(struct fwnode_handle *fwnode,
1613                    struct regmap *map, int irq,
1614                    int irq_flags, int irq_base,
1615                    const struct regmap_irq_chip *chip,
1616                    struct regmap_irq_chip_data **data);
1617 void regmap_del_irq_chip(int irq, struct regmap_irq_chip_data *data);
1618 
1619 int devm_regmap_add_irq_chip(struct device *dev, struct regmap *map, int irq,
1620                  int irq_flags, int irq_base,
1621                  const struct regmap_irq_chip *chip,
1622                  struct regmap_irq_chip_data **data);
1623 int devm_regmap_add_irq_chip_fwnode(struct device *dev,
1624                     struct fwnode_handle *fwnode,
1625                     struct regmap *map, int irq,
1626                     int irq_flags, int irq_base,
1627                     const struct regmap_irq_chip *chip,
1628                     struct regmap_irq_chip_data **data);
1629 void devm_regmap_del_irq_chip(struct device *dev, int irq,
1630                   struct regmap_irq_chip_data *data);
1631 
1632 int regmap_irq_chip_get_base(struct regmap_irq_chip_data *data);
1633 int regmap_irq_get_virq(struct regmap_irq_chip_data *data, int irq);
1634 struct irq_domain *regmap_irq_get_domain(struct regmap_irq_chip_data *data);
1635 
1636 #else
1637 
1638 /*
1639  * These stubs should only ever be called by generic code which has
1640  * regmap based facilities, if they ever get called at runtime
1641  * something is going wrong and something probably needs to select
1642  * REGMAP.
1643  */
1644 
1645 static inline int regmap_write(struct regmap *map, unsigned int reg,
1646                    unsigned int val)
1647 {
1648     WARN_ONCE(1, "regmap API is disabled");
1649     return -EINVAL;
1650 }
1651 
1652 static inline int regmap_write_async(struct regmap *map, unsigned int reg,
1653                      unsigned int val)
1654 {
1655     WARN_ONCE(1, "regmap API is disabled");
1656     return -EINVAL;
1657 }
1658 
1659 static inline int regmap_raw_write(struct regmap *map, unsigned int reg,
1660                    const void *val, size_t val_len)
1661 {
1662     WARN_ONCE(1, "regmap API is disabled");
1663     return -EINVAL;
1664 }
1665 
1666 static inline int regmap_raw_write_async(struct regmap *map, unsigned int reg,
1667                      const void *val, size_t val_len)
1668 {
1669     WARN_ONCE(1, "regmap API is disabled");
1670     return -EINVAL;
1671 }
1672 
1673 static inline int regmap_noinc_write(struct regmap *map, unsigned int reg,
1674                     const void *val, size_t val_len)
1675 {
1676     WARN_ONCE(1, "regmap API is disabled");
1677     return -EINVAL;
1678 }
1679 
1680 static inline int regmap_bulk_write(struct regmap *map, unsigned int reg,
1681                     const void *val, size_t val_count)
1682 {
1683     WARN_ONCE(1, "regmap API is disabled");
1684     return -EINVAL;
1685 }
1686 
1687 static inline int regmap_read(struct regmap *map, unsigned int reg,
1688                   unsigned int *val)
1689 {
1690     WARN_ONCE(1, "regmap API is disabled");
1691     return -EINVAL;
1692 }
1693 
1694 static inline int regmap_raw_read(struct regmap *map, unsigned int reg,
1695                   void *val, size_t val_len)
1696 {
1697     WARN_ONCE(1, "regmap API is disabled");
1698     return -EINVAL;
1699 }
1700 
1701 static inline int regmap_noinc_read(struct regmap *map, unsigned int reg,
1702                     void *val, size_t val_len)
1703 {
1704     WARN_ONCE(1, "regmap API is disabled");
1705     return -EINVAL;
1706 }
1707 
1708 static inline int regmap_bulk_read(struct regmap *map, unsigned int reg,
1709                    void *val, size_t val_count)
1710 {
1711     WARN_ONCE(1, "regmap API is disabled");
1712     return -EINVAL;
1713 }
1714 
1715 static inline int regmap_update_bits_base(struct regmap *map, unsigned int reg,
1716                       unsigned int mask, unsigned int val,
1717                       bool *change, bool async, bool force)
1718 {
1719     WARN_ONCE(1, "regmap API is disabled");
1720     return -EINVAL;
1721 }
1722 
1723 static inline int regmap_set_bits(struct regmap *map,
1724                   unsigned int reg, unsigned int bits)
1725 {
1726     WARN_ONCE(1, "regmap API is disabled");
1727     return -EINVAL;
1728 }
1729 
1730 static inline int regmap_clear_bits(struct regmap *map,
1731                     unsigned int reg, unsigned int bits)
1732 {
1733     WARN_ONCE(1, "regmap API is disabled");
1734     return -EINVAL;
1735 }
1736 
1737 static inline int regmap_test_bits(struct regmap *map,
1738                    unsigned int reg, unsigned int bits)
1739 {
1740     WARN_ONCE(1, "regmap API is disabled");
1741     return -EINVAL;
1742 }
1743 
1744 static inline int regmap_field_update_bits_base(struct regmap_field *field,
1745                     unsigned int mask, unsigned int val,
1746                     bool *change, bool async, bool force)
1747 {
1748     WARN_ONCE(1, "regmap API is disabled");
1749     return -EINVAL;
1750 }
1751 
1752 static inline int regmap_fields_update_bits_base(struct regmap_field *field,
1753                    unsigned int id,
1754                    unsigned int mask, unsigned int val,
1755                    bool *change, bool async, bool force)
1756 {
1757     WARN_ONCE(1, "regmap API is disabled");
1758     return -EINVAL;
1759 }
1760 
1761 static inline int regmap_update_bits(struct regmap *map, unsigned int reg,
1762                      unsigned int mask, unsigned int val)
1763 {
1764     WARN_ONCE(1, "regmap API is disabled");
1765     return -EINVAL;
1766 }
1767 
1768 static inline int regmap_update_bits_async(struct regmap *map, unsigned int reg,
1769                        unsigned int mask, unsigned int val)
1770 {
1771     WARN_ONCE(1, "regmap API is disabled");
1772     return -EINVAL;
1773 }
1774 
1775 static inline int regmap_update_bits_check(struct regmap *map, unsigned int reg,
1776                        unsigned int mask, unsigned int val,
1777                        bool *change)
1778 {
1779     WARN_ONCE(1, "regmap API is disabled");
1780     return -EINVAL;
1781 }
1782 
1783 static inline int
1784 regmap_update_bits_check_async(struct regmap *map, unsigned int reg,
1785                    unsigned int mask, unsigned int val,
1786                    bool *change)
1787 {
1788     WARN_ONCE(1, "regmap API is disabled");
1789     return -EINVAL;
1790 }
1791 
1792 static inline int regmap_write_bits(struct regmap *map, unsigned int reg,
1793                     unsigned int mask, unsigned int val)
1794 {
1795     WARN_ONCE(1, "regmap API is disabled");
1796     return -EINVAL;
1797 }
1798 
1799 static inline int regmap_field_write(struct regmap_field *field,
1800                      unsigned int val)
1801 {
1802     WARN_ONCE(1, "regmap API is disabled");
1803     return -EINVAL;
1804 }
1805 
1806 static inline int regmap_field_force_write(struct regmap_field *field,
1807                        unsigned int val)
1808 {
1809     WARN_ONCE(1, "regmap API is disabled");
1810     return -EINVAL;
1811 }
1812 
1813 static inline int regmap_field_update_bits(struct regmap_field *field,
1814                        unsigned int mask, unsigned int val)
1815 {
1816     WARN_ONCE(1, "regmap API is disabled");
1817     return -EINVAL;
1818 }
1819 
1820 static inline int
1821 regmap_field_force_update_bits(struct regmap_field *field,
1822                    unsigned int mask, unsigned int val)
1823 {
1824     WARN_ONCE(1, "regmap API is disabled");
1825     return -EINVAL;
1826 }
1827 
1828 static inline int regmap_field_set_bits(struct regmap_field *field,
1829                     unsigned int bits)
1830 {
1831     WARN_ONCE(1, "regmap API is disabled");
1832     return -EINVAL;
1833 }
1834 
1835 static inline int regmap_field_clear_bits(struct regmap_field *field,
1836                       unsigned int bits)
1837 {
1838     WARN_ONCE(1, "regmap API is disabled");
1839     return -EINVAL;
1840 }
1841 
1842 static inline int regmap_field_test_bits(struct regmap_field *field,
1843                      unsigned int bits)
1844 {
1845     WARN_ONCE(1, "regmap API is disabled");
1846     return -EINVAL;
1847 }
1848 
1849 static inline int regmap_fields_write(struct regmap_field *field,
1850                       unsigned int id, unsigned int val)
1851 {
1852     WARN_ONCE(1, "regmap API is disabled");
1853     return -EINVAL;
1854 }
1855 
1856 static inline int regmap_fields_force_write(struct regmap_field *field,
1857                         unsigned int id, unsigned int val)
1858 {
1859     WARN_ONCE(1, "regmap API is disabled");
1860     return -EINVAL;
1861 }
1862 
1863 static inline int
1864 regmap_fields_update_bits(struct regmap_field *field, unsigned int id,
1865               unsigned int mask, unsigned int val)
1866 {
1867     WARN_ONCE(1, "regmap API is disabled");
1868     return -EINVAL;
1869 }
1870 
1871 static inline int
1872 regmap_fields_force_update_bits(struct regmap_field *field, unsigned int id,
1873                 unsigned int mask, unsigned int val)
1874 {
1875     WARN_ONCE(1, "regmap API is disabled");
1876     return -EINVAL;
1877 }
1878 
1879 static inline int regmap_get_val_bytes(struct regmap *map)
1880 {
1881     WARN_ONCE(1, "regmap API is disabled");
1882     return -EINVAL;
1883 }
1884 
1885 static inline int regmap_get_max_register(struct regmap *map)
1886 {
1887     WARN_ONCE(1, "regmap API is disabled");
1888     return -EINVAL;
1889 }
1890 
1891 static inline int regmap_get_reg_stride(struct regmap *map)
1892 {
1893     WARN_ONCE(1, "regmap API is disabled");
1894     return -EINVAL;
1895 }
1896 
1897 static inline int regcache_sync(struct regmap *map)
1898 {
1899     WARN_ONCE(1, "regmap API is disabled");
1900     return -EINVAL;
1901 }
1902 
1903 static inline int regcache_sync_region(struct regmap *map, unsigned int min,
1904                        unsigned int max)
1905 {
1906     WARN_ONCE(1, "regmap API is disabled");
1907     return -EINVAL;
1908 }
1909 
1910 static inline int regcache_drop_region(struct regmap *map, unsigned int min,
1911                        unsigned int max)
1912 {
1913     WARN_ONCE(1, "regmap API is disabled");
1914     return -EINVAL;
1915 }
1916 
1917 static inline void regcache_cache_only(struct regmap *map, bool enable)
1918 {
1919     WARN_ONCE(1, "regmap API is disabled");
1920 }
1921 
1922 static inline void regcache_cache_bypass(struct regmap *map, bool enable)
1923 {
1924     WARN_ONCE(1, "regmap API is disabled");
1925 }
1926 
1927 static inline void regcache_mark_dirty(struct regmap *map)
1928 {
1929     WARN_ONCE(1, "regmap API is disabled");
1930 }
1931 
1932 static inline void regmap_async_complete(struct regmap *map)
1933 {
1934     WARN_ONCE(1, "regmap API is disabled");
1935 }
1936 
1937 static inline int regmap_register_patch(struct regmap *map,
1938                     const struct reg_sequence *regs,
1939                     int num_regs)
1940 {
1941     WARN_ONCE(1, "regmap API is disabled");
1942     return -EINVAL;
1943 }
1944 
1945 static inline int regmap_parse_val(struct regmap *map, const void *buf,
1946                 unsigned int *val)
1947 {
1948     WARN_ONCE(1, "regmap API is disabled");
1949     return -EINVAL;
1950 }
1951 
1952 static inline struct regmap *dev_get_regmap(struct device *dev,
1953                         const char *name)
1954 {
1955     return NULL;
1956 }
1957 
1958 static inline struct device *regmap_get_device(struct regmap *map)
1959 {
1960     WARN_ONCE(1, "regmap API is disabled");
1961     return NULL;
1962 }
1963 
1964 #endif
1965 
1966 #endif