]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - include/linux/regmap.h
regmap: Add the indexed cache support
[mirror_ubuntu-bionic-kernel.git] / include / linux / regmap.h
CommitLineData
b83a313b
MB
1#ifndef __LINUX_REGMAP_H
2#define __LINUX_REGMAP_H
3
4/*
5 * Register map access API
6 *
7 * Copyright 2011 Wolfson Microelectronics plc
8 *
9 * Author: Mark Brown <broonie@opensource.wolfsonmicro.com>
10 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License version 2 as
13 * published by the Free Software Foundation.
14 */
15
16#include <linux/device.h>
17#include <linux/list.h>
18#include <linux/module.h>
19
9943fa30 20struct i2c_client;
a676f083 21struct spi_device;
9943fa30 22
9fabe24e
DP
23/* An enum of all the supported cache types */
24enum regcache_type {
25 REGCACHE_NONE,
195af65c 26 REGCACHE_INDEXED,
9fabe24e
DP
27};
28
bd20eb54
MB
29/**
30 * Default value for a register. We use an array of structs rather
31 * than a simple array as many modern devices have very sparse
32 * register maps.
33 *
34 * @reg: Register address.
35 * @def: Register default value.
36 */
37struct reg_default {
38 unsigned int reg;
39 unsigned int def;
40};
41
dd898b20
MB
42/**
43 * Configuration for the register map of a device.
44 *
45 * @reg_bits: Number of bits in a register address, mandatory.
46 * @val_bits: Number of bits in a register value, mandatory.
2e2ae66d 47 *
3566cc9d
MB
48 * @writeable_reg: Optional callback returning true if the register
49 * can be written to.
50 * @readable_reg: Optional callback returning true if the register
51 * can be read from.
52 * @volatile_reg: Optional callback returning true if the register
53 * value can't be cached.
54 * @precious_reg: Optional callback returning true if the rgister
55 * should not be read outside of a call from the driver
56 * (eg, a clear on read interrupt status register).
bd20eb54
MB
57 *
58 * @max_register: Optional, specifies the maximum valid register index.
59 * @reg_defaults: Power on reset values for registers (for use with
60 * register cache support).
61 * @num_reg_defaults: Number of elements in reg_defaults.
6f306441
LPC
62 *
63 * @read_flag_mask: Mask to be set in the top byte of the register when doing
64 * a read.
65 * @write_flag_mask: Mask to be set in the top byte of the register when doing
66 * a write. If both read_flag_mask and write_flag_mask are
67 * empty the regmap_bus default masks are used.
9fabe24e
DP
68 *
69 * @cache_type: The actual cache type.
70 * @reg_defaults_raw: Power on reset values for registers (for use with
71 * register cache support).
72 * @num_reg_defaults_raw: Number of elements in reg_defaults_raw.
dd898b20 73 */
b83a313b
MB
74struct regmap_config {
75 int reg_bits;
76 int val_bits;
2e2ae66d 77
2e2ae66d
MB
78 bool (*writeable_reg)(struct device *dev, unsigned int reg);
79 bool (*readable_reg)(struct device *dev, unsigned int reg);
80 bool (*volatile_reg)(struct device *dev, unsigned int reg);
18694886 81 bool (*precious_reg)(struct device *dev, unsigned int reg);
bd20eb54
MB
82
83 unsigned int max_register;
84 struct reg_default *reg_defaults;
9fabe24e
DP
85 unsigned int num_reg_defaults;
86 enum regcache_type cache_type;
87 const void *reg_defaults_raw;
88 unsigned int num_reg_defaults_raw;
6f306441
LPC
89
90 u8 read_flag_mask;
91 u8 write_flag_mask;
b83a313b
MB
92};
93
94typedef int (*regmap_hw_write)(struct device *dev, const void *data,
95 size_t count);
96typedef int (*regmap_hw_gather_write)(struct device *dev,
97 const void *reg, size_t reg_len,
98 const void *val, size_t val_len);
99typedef int (*regmap_hw_read)(struct device *dev,
100 const void *reg_buf, size_t reg_size,
101 void *val_buf, size_t val_size);
102
103/**
104 * Description of a hardware bus for the register map infrastructure.
105 *
b83a313b
MB
106 * @write: Write operation.
107 * @gather_write: Write operation with split register/value, return -ENOTSUPP
108 * if not implemented on a given device.
109 * @read: Read operation. Data is returned in the buffer used to transmit
110 * data.
b83a313b
MB
111 * @read_flag_mask: Mask to be set in the top byte of the register when doing
112 * a read.
113 */
114struct regmap_bus {
b83a313b
MB
115 regmap_hw_write write;
116 regmap_hw_gather_write gather_write;
117 regmap_hw_read read;
b83a313b
MB
118 u8 read_flag_mask;
119};
120
121struct regmap *regmap_init(struct device *dev,
122 const struct regmap_bus *bus,
123 const struct regmap_config *config);
9943fa30
MB
124struct regmap *regmap_init_i2c(struct i2c_client *i2c,
125 const struct regmap_config *config);
a676f083
MB
126struct regmap *regmap_init_spi(struct spi_device *dev,
127 const struct regmap_config *config);
128
b83a313b
MB
129void regmap_exit(struct regmap *map);
130int regmap_write(struct regmap *map, unsigned int reg, unsigned int val);
131int regmap_raw_write(struct regmap *map, unsigned int reg,
132 const void *val, size_t val_len);
133int regmap_read(struct regmap *map, unsigned int reg, unsigned int *val);
134int regmap_raw_read(struct regmap *map, unsigned int reg,
135 void *val, size_t val_len);
136int regmap_bulk_read(struct regmap *map, unsigned int reg, void *val,
137 size_t val_count);
138int regmap_update_bits(struct regmap *map, unsigned int reg,
139 unsigned int mask, unsigned int val);
140
141#endif