]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blob - drivers/base/regmap/internal.h
regmap: introduce tables for readable/writeable/volatile/precious checks
[mirror_ubuntu-zesty-kernel.git] / drivers / base / regmap / internal.h
1 /*
2 * Register map access API internal header
3 *
4 * Copyright 2011 Wolfson Microelectronics plc
5 *
6 * Author: Mark Brown <broonie@opensource.wolfsonmicro.com>
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
11 */
12
13 #ifndef _REGMAP_INTERNAL_H
14 #define _REGMAP_INTERNAL_H
15
16 #include <linux/regmap.h>
17 #include <linux/fs.h>
18
19 struct regmap;
20 struct regcache_ops;
21
22 struct regmap_format {
23 size_t buf_size;
24 size_t reg_bytes;
25 size_t pad_bytes;
26 size_t val_bytes;
27 void (*format_write)(struct regmap *map,
28 unsigned int reg, unsigned int val);
29 void (*format_reg)(void *buf, unsigned int reg, unsigned int shift);
30 void (*format_val)(void *buf, unsigned int val, unsigned int shift);
31 unsigned int (*parse_val)(void *buf);
32 };
33
34 struct regmap {
35 struct mutex mutex;
36 spinlock_t spinlock;
37 regmap_lock lock;
38 regmap_unlock unlock;
39 void *lock_arg; /* This is passed to lock/unlock functions */
40
41 struct device *dev; /* Device we do I/O on */
42 void *work_buf; /* Scratch buffer used to format I/O */
43 struct regmap_format format; /* Buffer format */
44 const struct regmap_bus *bus;
45 void *bus_context;
46 const char *name;
47
48 #ifdef CONFIG_DEBUG_FS
49 struct dentry *debugfs;
50 const char *debugfs_name;
51 #endif
52
53 unsigned int max_register;
54 bool (*writeable_reg)(struct device *dev, unsigned int reg);
55 bool (*readable_reg)(struct device *dev, unsigned int reg);
56 bool (*volatile_reg)(struct device *dev, unsigned int reg);
57 bool (*precious_reg)(struct device *dev, unsigned int reg);
58 const struct regmap_access_table *wr_table;
59 const struct regmap_access_table *rd_table;
60 const struct regmap_access_table *volatile_table;
61 const struct regmap_access_table *precious_table;
62
63 u8 read_flag_mask;
64 u8 write_flag_mask;
65
66 /* number of bits to (left) shift the reg value when formatting*/
67 int reg_shift;
68 int reg_stride;
69
70 /* regcache specific members */
71 const struct regcache_ops *cache_ops;
72 enum regcache_type cache_type;
73
74 /* number of bytes in reg_defaults_raw */
75 unsigned int cache_size_raw;
76 /* number of bytes per word in reg_defaults_raw */
77 unsigned int cache_word_size;
78 /* number of entries in reg_defaults */
79 unsigned int num_reg_defaults;
80 /* number of entries in reg_defaults_raw */
81 unsigned int num_reg_defaults_raw;
82
83 /* if set, only the cache is modified not the HW */
84 u32 cache_only;
85 /* if set, only the HW is modified not the cache */
86 u32 cache_bypass;
87 /* if set, remember to free reg_defaults_raw */
88 bool cache_free;
89
90 struct reg_default *reg_defaults;
91 const void *reg_defaults_raw;
92 void *cache;
93 u32 cache_dirty;
94
95 struct reg_default *patch;
96 int patch_regs;
97
98 /* if set, converts bulk rw to single rw */
99 bool use_single_rw;
100
101 struct rb_root range_tree;
102 void *selector_work_buf; /* Scratch buffer used for selector */
103 };
104
105 struct regcache_ops {
106 const char *name;
107 enum regcache_type type;
108 int (*init)(struct regmap *map);
109 int (*exit)(struct regmap *map);
110 int (*read)(struct regmap *map, unsigned int reg, unsigned int *value);
111 int (*write)(struct regmap *map, unsigned int reg, unsigned int value);
112 int (*sync)(struct regmap *map, unsigned int min, unsigned int max);
113 };
114
115 bool regmap_writeable(struct regmap *map, unsigned int reg);
116 bool regmap_readable(struct regmap *map, unsigned int reg);
117 bool regmap_volatile(struct regmap *map, unsigned int reg);
118 bool regmap_precious(struct regmap *map, unsigned int reg);
119
120 int _regmap_write(struct regmap *map, unsigned int reg,
121 unsigned int val);
122
123 struct regmap_range_node {
124 struct rb_node node;
125 const char *name;
126 struct regmap *map;
127
128 unsigned int range_min;
129 unsigned int range_max;
130
131 unsigned int selector_reg;
132 unsigned int selector_mask;
133 int selector_shift;
134
135 unsigned int window_start;
136 unsigned int window_len;
137 };
138
139 #ifdef CONFIG_DEBUG_FS
140 extern void regmap_debugfs_initcall(void);
141 extern void regmap_debugfs_init(struct regmap *map, const char *name);
142 extern void regmap_debugfs_exit(struct regmap *map);
143 #else
144 static inline void regmap_debugfs_initcall(void) { }
145 static inline void regmap_debugfs_init(struct regmap *map, const char *name) { }
146 static inline void regmap_debugfs_exit(struct regmap *map) { }
147 #endif
148
149 /* regcache core declarations */
150 int regcache_init(struct regmap *map, const struct regmap_config *config);
151 void regcache_exit(struct regmap *map);
152 int regcache_read(struct regmap *map,
153 unsigned int reg, unsigned int *value);
154 int regcache_write(struct regmap *map,
155 unsigned int reg, unsigned int value);
156 int regcache_sync(struct regmap *map);
157
158 unsigned int regcache_get_val(const void *base, unsigned int idx,
159 unsigned int word_size);
160 bool regcache_set_val(void *base, unsigned int idx,
161 unsigned int val, unsigned int word_size);
162 int regcache_lookup_reg(struct regmap *map, unsigned int reg);
163
164 extern struct regcache_ops regcache_rbtree_ops;
165 extern struct regcache_ops regcache_lzo_ops;
166
167 #endif