blob: 2a4435d760289118f00882fb89693346972ae996 [file] [log] [blame]
Mark Brown93de9122011-07-20 22:35:37 +01001/*
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
Mark Brown4f7d6dd2016-03-29 12:28:33 -070016#include <linux/device.h>
Mark Brown93de9122011-07-20 22:35:37 +010017#include <linux/regmap.h>
Mark Brown31244e32011-07-20 22:56:53 +010018#include <linux/fs.h>
Mark Brown5166b7c2012-12-11 01:24:29 +090019#include <linux/list.h>
Mark Brown0d509f22013-01-27 22:07:38 +080020#include <linux/wait.h>
Mark Brown93de9122011-07-20 22:35:37 +010021
22struct regmap;
Dimitris Papastamos9fabe242011-09-19 14:34:00 +010023struct regcache_ops;
Mark Brown93de9122011-07-20 22:35:37 +010024
Mark Brown5166b7c2012-12-11 01:24:29 +090025struct regmap_debugfs_off_cache {
26 struct list_head list;
27 off_t min;
28 off_t max;
29 unsigned int base_reg;
Dimitris Papastamosc2c1ee62013-02-08 12:47:14 +000030 unsigned int max_reg;
Mark Brown5166b7c2012-12-11 01:24:29 +090031};
32
Mark Brown93de9122011-07-20 22:35:37 +010033struct regmap_format {
34 size_t buf_size;
35 size_t reg_bytes;
Mark Brown82159ba2012-01-18 10:52:25 +000036 size_t pad_bytes;
Mark Brown93de9122011-07-20 22:35:37 +010037 size_t val_bytes;
38 void (*format_write)(struct regmap *map,
39 unsigned int reg, unsigned int val);
Marc Reillyd939fb92012-03-16 12:11:43 +110040 void (*format_reg)(void *buf, unsigned int reg, unsigned int shift);
41 void (*format_val)(void *buf, unsigned int val, unsigned int shift);
Mark Brown8a819ff2013-03-04 09:04:51 +080042 unsigned int (*parse_val)(const void *buf);
43 void (*parse_inplace)(void *buf);
Mark Brown93de9122011-07-20 22:35:37 +010044};
45
Mark Brown0d509f22013-01-27 22:07:38 +080046struct regmap_async {
47 struct list_head list;
Mark Brown0d509f22013-01-27 22:07:38 +080048 struct regmap *map;
49 void *work_buf;
50};
51
Mark Brown93de9122011-07-20 22:35:37 +010052struct regmap {
Wang, Yalin336fb812014-09-11 16:19:49 +080053 union {
54 struct mutex mutex;
Wang, Yalinf93d1be2014-12-15 16:05:50 +080055 struct {
56 spinlock_t spinlock;
57 unsigned long spinlock_flags;
58 };
Wang, Yalin336fb812014-09-11 16:19:49 +080059 };
Stephen Warrenbacdbe02012-04-04 15:48:28 -060060 regmap_lock lock;
61 regmap_unlock unlock;
Davide Ciminaghi0d4529c2012-10-16 15:56:59 +020062 void *lock_arg; /* This is passed to lock/unlock functions */
Stephen Boydb4a21fc2015-09-11 16:37:05 -070063 gfp_t alloc_flags;
Mark Brown93de9122011-07-20 22:35:37 +010064
65 struct device *dev; /* Device we do I/O on */
66 void *work_buf; /* Scratch buffer used to format I/O */
67 struct regmap_format format; /* Buffer format */
68 const struct regmap_bus *bus;
Stephen Warren0135bbc2012-04-04 15:48:30 -060069 void *bus_context;
Mark Brown72b39f62012-05-08 17:44:40 +010070 const char *name;
Mark Brown93de9122011-07-20 22:35:37 +010071
Mark Brown0a819802013-10-09 12:28:52 +010072 bool async;
Mark Brown0d509f22013-01-27 22:07:38 +080073 spinlock_t async_lock;
74 wait_queue_head_t async_waitq;
75 struct list_head async_list;
Mark Brown7e09a972013-10-07 23:00:24 +010076 struct list_head async_free;
Mark Brown0d509f22013-01-27 22:07:38 +080077 int async_ret;
78
Mark Brown31244e32011-07-20 22:56:53 +010079#ifdef CONFIG_DEBUG_FS
80 struct dentry *debugfs;
Stephen Warrend3c242e2012-04-04 15:48:29 -060081 const char *debugfs_name;
Mark Browncbc19382012-12-06 13:29:05 +090082
83 unsigned int debugfs_reg_len;
84 unsigned int debugfs_val_len;
85 unsigned int debugfs_tot_len;
Mark Brown5166b7c2012-12-11 01:24:29 +090086
87 struct list_head debugfs_off_cache;
Dimitris Papastamos065b4c52013-02-20 12:15:23 +000088 struct mutex cache_lock;
Mark Brown31244e32011-07-20 22:56:53 +010089#endif
90
Mark Brown93de9122011-07-20 22:35:37 +010091 unsigned int max_register;
92 bool (*writeable_reg)(struct device *dev, unsigned int reg);
93 bool (*readable_reg)(struct device *dev, unsigned int reg);
94 bool (*volatile_reg)(struct device *dev, unsigned int reg);
Mark Brown2efe1642011-08-08 15:41:46 +090095 bool (*precious_reg)(struct device *dev, unsigned int reg);
Davide Ciminaghi76aad392012-11-20 15:20:30 +010096 const struct regmap_access_table *wr_table;
97 const struct regmap_access_table *rd_table;
98 const struct regmap_access_table *volatile_table;
99 const struct regmap_access_table *precious_table;
Lars-Peter Clausen6f306442011-09-05 20:46:32 +0200100
Andrey Smirnovad278402013-01-12 12:54:12 -0800101 int (*reg_read)(void *context, unsigned int reg, unsigned int *val);
Andrey Smirnov07c320d2013-01-12 12:54:13 -0800102 int (*reg_write)(void *context, unsigned int reg, unsigned int val);
Jon Ringle77792b12015-10-01 12:38:07 -0400103 int (*reg_update_bits)(void *context, unsigned int reg,
104 unsigned int mask, unsigned int val);
Andrey Smirnovad278402013-01-12 12:54:12 -0800105
Andrey Smirnovd2a58842013-01-27 10:49:05 -0800106 bool defer_caching;
107
Tony Lindgrenf50e38c2016-09-15 13:56:10 -0700108 unsigned long read_flag_mask;
109 unsigned long write_flag_mask;
Dimitris Papastamos9fabe242011-09-19 14:34:00 +0100110
Marc Reillyd939fb92012-03-16 12:11:43 +1100111 /* number of bits to (left) shift the reg value when formatting*/
112 int reg_shift;
Stephen Warrenf01ee602012-04-09 13:40:24 -0600113 int reg_stride;
Xiubo Lica747be2016-01-04 18:00:33 +0800114 int reg_stride_order;
Marc Reillyd939fb92012-03-16 12:11:43 +1100115
Dimitris Papastamos9fabe242011-09-19 14:34:00 +0100116 /* regcache specific members */
117 const struct regcache_ops *cache_ops;
118 enum regcache_type cache_type;
119
120 /* number of bytes in reg_defaults_raw */
121 unsigned int cache_size_raw;
122 /* number of bytes per word in reg_defaults_raw */
123 unsigned int cache_word_size;
124 /* number of entries in reg_defaults */
125 unsigned int num_reg_defaults;
126 /* number of entries in reg_defaults_raw */
127 unsigned int num_reg_defaults_raw;
128
129 /* if set, only the cache is modified not the HW */
Viresh Kumar621a5f72015-09-26 15:04:07 -0700130 bool cache_only;
Dimitris Papastamos9fabe242011-09-19 14:34:00 +0100131 /* if set, only the HW is modified not the cache */
Viresh Kumar621a5f72015-09-26 15:04:07 -0700132 bool cache_bypass;
Dimitris Papastamos9fabe242011-09-19 14:34:00 +0100133 /* if set, remember to free reg_defaults_raw */
Mark Brown847fb6f2012-02-06 18:01:35 +0000134 bool cache_free;
Dimitris Papastamos9fabe242011-09-19 14:34:00 +0100135
136 struct reg_default *reg_defaults;
137 const void *reg_defaults_raw;
138 void *cache;
Kevin Cernekee1c797712015-05-05 15:14:14 -0700139 /* if set, the cache contains newer data than the HW */
Viresh Kumar621a5f72015-09-26 15:04:07 -0700140 bool cache_dirty;
Kevin Cernekee1c797712015-05-05 15:14:14 -0700141 /* if set, the HW registers are known to match map->reg_defaults */
142 bool no_sync_defaults;
Mark Brown22f0d902012-01-21 12:01:14 +0000143
Nariman Poushin8019ff62015-07-16 16:36:21 +0100144 struct reg_sequence *patch;
Mark Brown22f0d902012-01-21 12:01:14 +0000145 int patch_regs;
Ashish Jangam2e33caf2012-04-30 23:23:40 +0100146
Markus Pargmann67921a12015-08-21 10:26:42 +0200147 /* if set, converts bulk read to single read */
148 bool use_single_read;
149 /* if set, converts bulk read to single read */
150 bool use_single_write;
Opensource [Anthony Olech]e894c3f2014-03-04 13:54:02 +0000151 /* if set, the device supports multi write mode */
152 bool can_multi_write;
Krystian Garbaciak6863ca62012-06-15 11:23:56 +0100153
Markus Pargmannadaac452015-08-30 09:33:53 +0200154 /* if set, raw reads/writes are limited to this size */
155 size_t max_raw_read;
156 size_t max_raw_write;
157
Krystian Garbaciak6863ca62012-06-15 11:23:56 +0100158 struct rb_root range_tree;
159 void *selector_work_buf; /* Scratch buffer used for selector */
Dimitris Papastamos9fabe242011-09-19 14:34:00 +0100160};
161
162struct regcache_ops {
163 const char *name;
164 enum regcache_type type;
165 int (*init)(struct regmap *map);
166 int (*exit)(struct regmap *map);
Lars-Peter Clausen5e0cbe72014-08-24 15:32:27 +0200167#ifdef CONFIG_DEBUG_FS
168 void (*debugfs_init)(struct regmap *map);
169#endif
Dimitris Papastamos9fabe242011-09-19 14:34:00 +0100170 int (*read)(struct regmap *map, unsigned int reg, unsigned int *value);
171 int (*write)(struct regmap *map, unsigned int reg, unsigned int value);
Mark Brownac8d91c2012-02-23 19:31:04 +0000172 int (*sync)(struct regmap *map, unsigned int min, unsigned int max);
Mark Brown697e85b2013-05-08 13:55:22 +0100173 int (*drop)(struct regmap *map, unsigned int min, unsigned int max);
Mark Brown93de9122011-07-20 22:35:37 +0100174};
175
Cristian Birsan1ea975c2016-08-08 18:44:21 +0300176bool regmap_cached(struct regmap *map, unsigned int reg);
Mark Brown8de2f082011-08-10 17:14:41 +0900177bool regmap_writeable(struct regmap *map, unsigned int reg);
178bool regmap_readable(struct regmap *map, unsigned int reg);
179bool regmap_volatile(struct regmap *map, unsigned int reg);
180bool regmap_precious(struct regmap *map, unsigned int reg);
181
Dimitris Papastamos4d2dc092011-09-29 10:39:07 +0100182int _regmap_write(struct regmap *map, unsigned int reg,
183 unsigned int val);
184
Krystian Garbaciak6863ca62012-06-15 11:23:56 +0100185struct regmap_range_node {
186 struct rb_node node;
Mark Brownd058bb42012-10-03 12:40:47 +0100187 const char *name;
Mark Brown4b020b32012-10-03 13:13:16 +0100188 struct regmap *map;
Krystian Garbaciak6863ca62012-06-15 11:23:56 +0100189
190 unsigned int range_min;
191 unsigned int range_max;
192
193 unsigned int selector_reg;
194 unsigned int selector_mask;
195 int selector_shift;
196
197 unsigned int window_start;
198 unsigned int window_len;
199};
200
Srinivas Kandagatla67252282013-06-11 13:18:15 +0100201struct regmap_field {
202 struct regmap *regmap;
203 unsigned int mask;
204 /* lsb */
205 unsigned int shift;
206 unsigned int reg;
Kuninori Morimotoa0102372013-09-01 20:30:50 -0700207
208 unsigned int id_size;
209 unsigned int id_offset;
Srinivas Kandagatla67252282013-06-11 13:18:15 +0100210};
211
Mark Brown31244e32011-07-20 22:56:53 +0100212#ifdef CONFIG_DEBUG_FS
213extern void regmap_debugfs_initcall(void);
Stephen Warrend3c242e2012-04-04 15:48:29 -0600214extern void regmap_debugfs_init(struct regmap *map, const char *name);
Mark Brown31244e32011-07-20 22:56:53 +0100215extern void regmap_debugfs_exit(struct regmap *map);
216#else
Lars-Peter Clausenbbcf61c2011-09-05 22:06:13 +0200217static inline void regmap_debugfs_initcall(void) { }
Stephen Warrenabec95a2012-04-05 23:09:20 -0600218static inline void regmap_debugfs_init(struct regmap *map, const char *name) { }
Lars-Peter Clausenbbcf61c2011-09-05 22:06:13 +0200219static inline void regmap_debugfs_exit(struct regmap *map) { }
Mark Brown31244e32011-07-20 22:56:53 +0100220#endif
221
Dimitris Papastamos9fabe242011-09-19 14:34:00 +0100222/* regcache core declarations */
Lars-Peter Clausene5e3b8a2011-11-16 16:28:16 +0100223int regcache_init(struct regmap *map, const struct regmap_config *config);
Dimitris Papastamos9fabe242011-09-19 14:34:00 +0100224void regcache_exit(struct regmap *map);
225int regcache_read(struct regmap *map,
226 unsigned int reg, unsigned int *value);
227int regcache_write(struct regmap *map,
228 unsigned int reg, unsigned int value);
229int regcache_sync(struct regmap *map);
Mark Brownf8bd8222013-03-29 19:32:28 +0000230int regcache_sync_block(struct regmap *map, void *block,
Lars-Peter Clausen3f4ff562013-08-29 10:26:34 +0200231 unsigned long *cache_present,
Mark Brownf8bd8222013-03-29 19:32:28 +0000232 unsigned int block_base, unsigned int start,
233 unsigned int end);
Dimitris Papastamos9fabe242011-09-19 14:34:00 +0100234
Mark Brown88177962013-03-13 19:29:36 +0000235static inline const void *regcache_get_val_addr(struct regmap *map,
236 const void *base,
237 unsigned int idx)
238{
239 return base + (map->cache_word_size * idx);
240}
241
Mark Brown879082c2013-02-21 18:03:13 +0000242unsigned int regcache_get_val(struct regmap *map, const void *base,
243 unsigned int idx);
244bool regcache_set_val(struct regmap *map, void *base, unsigned int idx,
245 unsigned int val);
Dimitris Papastamos9fabe242011-09-19 14:34:00 +0100246int regcache_lookup_reg(struct regmap *map, unsigned int reg);
Dimitris Papastamos9fabe242011-09-19 14:34:00 +0100247
Mark Brown584de322013-03-13 19:19:34 +0000248int _regmap_raw_write(struct regmap *map, unsigned int reg,
Mark Brown0a819802013-10-09 12:28:52 +0100249 const void *val, size_t val_len);
Mark Brown584de322013-03-13 19:19:34 +0000250
Mark Brown0d509f22013-01-27 22:07:38 +0800251void regmap_async_complete_cb(struct regmap_async *async, int ret);
252
Guenter Roeck3c174d22015-02-03 10:01:18 -0800253enum regmap_endian regmap_get_val_endian(struct device *dev,
254 const struct regmap_bus *bus,
255 const struct regmap_config *config);
256
Dimitris Papastamos28644c802011-09-19 14:34:02 +0100257extern struct regcache_ops regcache_rbtree_ops;
Dimitris Papastamos2cbbb572011-09-19 14:34:03 +0100258extern struct regcache_ops regcache_lzo_ops;
Mark Brown2ac902c2012-12-19 14:51:55 +0000259extern struct regcache_ops regcache_flat_ops;
Dimitris Papastamos2cbbb572011-09-19 14:34:03 +0100260
Philipp Zabelc6b570d2015-03-09 12:20:13 +0100261static inline const char *regmap_name(const struct regmap *map)
262{
263 if (map->dev)
264 return dev_name(map->dev);
265
266 return map->name;
267}
268
Xiubo Lica747be2016-01-04 18:00:33 +0800269static inline unsigned int regmap_get_offset(const struct regmap *map,
270 unsigned int index)
271{
272 if (map->reg_stride_order >= 0)
273 return index << map->reg_stride_order;
274 else
275 return index * map->reg_stride;
276}
277
Xiubo Li8b31ec52016-01-04 18:00:34 +0800278static inline unsigned int regcache_get_index_by_order(const struct regmap *map,
279 unsigned int reg)
280{
281 return reg >> map->reg_stride_order;
282}
283
Mark Brown93de9122011-07-20 22:35:37 +0100284#endif