blob: 16414ccace966037df31391389bdf5230184fe58 [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
Mark Brown72465732017-12-12 16:56:43 +000080 bool debugfs_disable;
Mark Brown31244e32011-07-20 22:56:53 +010081 struct dentry *debugfs;
Stephen Warrend3c242e2012-04-04 15:48:29 -060082 const char *debugfs_name;
Mark Browncbc19382012-12-06 13:29:05 +090083
84 unsigned int debugfs_reg_len;
85 unsigned int debugfs_val_len;
86 unsigned int debugfs_tot_len;
Mark Brown5166b7c2012-12-11 01:24:29 +090087
88 struct list_head debugfs_off_cache;
Dimitris Papastamos065b4c52013-02-20 12:15:23 +000089 struct mutex cache_lock;
Mark Brown31244e32011-07-20 22:56:53 +010090#endif
91
Mark Brown93de9122011-07-20 22:35:37 +010092 unsigned int max_register;
93 bool (*writeable_reg)(struct device *dev, unsigned int reg);
94 bool (*readable_reg)(struct device *dev, unsigned int reg);
95 bool (*volatile_reg)(struct device *dev, unsigned int reg);
Mark Brown2efe1642011-08-08 15:41:46 +090096 bool (*precious_reg)(struct device *dev, unsigned int reg);
Crestez Dan Leonard74fe7b52018-08-07 17:52:17 +030097 bool (*readable_noinc_reg)(struct device *dev, unsigned int reg);
Davide Ciminaghi76aad392012-11-20 15:20:30 +010098 const struct regmap_access_table *wr_table;
99 const struct regmap_access_table *rd_table;
100 const struct regmap_access_table *volatile_table;
101 const struct regmap_access_table *precious_table;
Crestez Dan Leonard74fe7b52018-08-07 17:52:17 +0300102 const struct regmap_access_table *rd_noinc_table;
Lars-Peter Clausen6f306442011-09-05 20:46:32 +0200103
Andrey Smirnovad278402013-01-12 12:54:12 -0800104 int (*reg_read)(void *context, unsigned int reg, unsigned int *val);
Andrey Smirnov07c320d2013-01-12 12:54:13 -0800105 int (*reg_write)(void *context, unsigned int reg, unsigned int val);
Jon Ringle77792b12015-10-01 12:38:07 -0400106 int (*reg_update_bits)(void *context, unsigned int reg,
107 unsigned int mask, unsigned int val);
Andrey Smirnovad278402013-01-12 12:54:12 -0800108
Andrey Smirnovd2a58842013-01-27 10:49:05 -0800109 bool defer_caching;
110
Tony Lindgrenf50e38c2016-09-15 13:56:10 -0700111 unsigned long read_flag_mask;
112 unsigned long write_flag_mask;
Dimitris Papastamos9fabe242011-09-19 14:34:00 +0100113
Marc Reillyd939fb92012-03-16 12:11:43 +1100114 /* number of bits to (left) shift the reg value when formatting*/
115 int reg_shift;
Stephen Warrenf01ee602012-04-09 13:40:24 -0600116 int reg_stride;
Xiubo Lica747be2016-01-04 18:00:33 +0800117 int reg_stride_order;
Marc Reillyd939fb92012-03-16 12:11:43 +1100118
Dimitris Papastamos9fabe242011-09-19 14:34:00 +0100119 /* regcache specific members */
120 const struct regcache_ops *cache_ops;
121 enum regcache_type cache_type;
122
123 /* number of bytes in reg_defaults_raw */
124 unsigned int cache_size_raw;
125 /* number of bytes per word in reg_defaults_raw */
126 unsigned int cache_word_size;
127 /* number of entries in reg_defaults */
128 unsigned int num_reg_defaults;
129 /* number of entries in reg_defaults_raw */
130 unsigned int num_reg_defaults_raw;
131
132 /* if set, only the cache is modified not the HW */
Viresh Kumar621a5f72015-09-26 15:04:07 -0700133 bool cache_only;
Dimitris Papastamos9fabe242011-09-19 14:34:00 +0100134 /* if set, only the HW is modified not the cache */
Viresh Kumar621a5f72015-09-26 15:04:07 -0700135 bool cache_bypass;
Dimitris Papastamos9fabe242011-09-19 14:34:00 +0100136 /* if set, remember to free reg_defaults_raw */
Mark Brown847fb6f2012-02-06 18:01:35 +0000137 bool cache_free;
Dimitris Papastamos9fabe242011-09-19 14:34:00 +0100138
139 struct reg_default *reg_defaults;
140 const void *reg_defaults_raw;
141 void *cache;
Kevin Cernekee1c797712015-05-05 15:14:14 -0700142 /* if set, the cache contains newer data than the HW */
Viresh Kumar621a5f72015-09-26 15:04:07 -0700143 bool cache_dirty;
Kevin Cernekee1c797712015-05-05 15:14:14 -0700144 /* if set, the HW registers are known to match map->reg_defaults */
145 bool no_sync_defaults;
Mark Brown22f0d902012-01-21 12:01:14 +0000146
Nariman Poushin8019ff62015-07-16 16:36:21 +0100147 struct reg_sequence *patch;
Mark Brown22f0d902012-01-21 12:01:14 +0000148 int patch_regs;
Ashish Jangam2e33caf2012-04-30 23:23:40 +0100149
Markus Pargmann67921a12015-08-21 10:26:42 +0200150 /* if set, converts bulk read to single read */
151 bool use_single_read;
David Frey9ad8eb02018-09-01 09:50:40 -0700152 /* if set, converts bulk write to single write */
Markus Pargmann67921a12015-08-21 10:26:42 +0200153 bool use_single_write;
Opensource [Anthony Olech]e894c3f2014-03-04 13:54:02 +0000154 /* if set, the device supports multi write mode */
155 bool can_multi_write;
Krystian Garbaciak6863ca62012-06-15 11:23:56 +0100156
Markus Pargmannadaac452015-08-30 09:33:53 +0200157 /* if set, raw reads/writes are limited to this size */
158 size_t max_raw_read;
159 size_t max_raw_write;
160
Krystian Garbaciak6863ca62012-06-15 11:23:56 +0100161 struct rb_root range_tree;
162 void *selector_work_buf; /* Scratch buffer used for selector */
Baolin Wang8698b932017-11-01 10:11:55 +0800163
164 struct hwspinlock *hwlock;
Dimitris Papastamos9fabe242011-09-19 14:34:00 +0100165};
166
167struct regcache_ops {
168 const char *name;
169 enum regcache_type type;
170 int (*init)(struct regmap *map);
171 int (*exit)(struct regmap *map);
Lars-Peter Clausen5e0cbe72014-08-24 15:32:27 +0200172#ifdef CONFIG_DEBUG_FS
173 void (*debugfs_init)(struct regmap *map);
174#endif
Dimitris Papastamos9fabe242011-09-19 14:34:00 +0100175 int (*read)(struct regmap *map, unsigned int reg, unsigned int *value);
176 int (*write)(struct regmap *map, unsigned int reg, unsigned int value);
Mark Brownac8d91c2012-02-23 19:31:04 +0000177 int (*sync)(struct regmap *map, unsigned int min, unsigned int max);
Mark Brown697e85b2013-05-08 13:55:22 +0100178 int (*drop)(struct regmap *map, unsigned int min, unsigned int max);
Mark Brown93de9122011-07-20 22:35:37 +0100179};
180
Cristian Birsan1ea975c2016-08-08 18:44:21 +0300181bool regmap_cached(struct regmap *map, unsigned int reg);
Mark Brown8de2f082011-08-10 17:14:41 +0900182bool regmap_writeable(struct regmap *map, unsigned int reg);
183bool regmap_readable(struct regmap *map, unsigned int reg);
184bool regmap_volatile(struct regmap *map, unsigned int reg);
185bool regmap_precious(struct regmap *map, unsigned int reg);
Crestez Dan Leonard74fe7b52018-08-07 17:52:17 +0300186bool regmap_readable_noinc(struct regmap *map, unsigned int reg);
Mark Brown8de2f082011-08-10 17:14:41 +0900187
Dimitris Papastamos4d2dc092011-09-29 10:39:07 +0100188int _regmap_write(struct regmap *map, unsigned int reg,
189 unsigned int val);
190
Krystian Garbaciak6863ca62012-06-15 11:23:56 +0100191struct regmap_range_node {
192 struct rb_node node;
Mark Brownd058bb42012-10-03 12:40:47 +0100193 const char *name;
Mark Brown4b020b32012-10-03 13:13:16 +0100194 struct regmap *map;
Krystian Garbaciak6863ca62012-06-15 11:23:56 +0100195
196 unsigned int range_min;
197 unsigned int range_max;
198
199 unsigned int selector_reg;
200 unsigned int selector_mask;
201 int selector_shift;
202
203 unsigned int window_start;
204 unsigned int window_len;
205};
206
Srinivas Kandagatla67252282013-06-11 13:18:15 +0100207struct regmap_field {
208 struct regmap *regmap;
209 unsigned int mask;
210 /* lsb */
211 unsigned int shift;
212 unsigned int reg;
Kuninori Morimotoa0102372013-09-01 20:30:50 -0700213
214 unsigned int id_size;
215 unsigned int id_offset;
Srinivas Kandagatla67252282013-06-11 13:18:15 +0100216};
217
Mark Brown31244e32011-07-20 22:56:53 +0100218#ifdef CONFIG_DEBUG_FS
219extern void regmap_debugfs_initcall(void);
Stephen Warrend3c242e2012-04-04 15:48:29 -0600220extern void regmap_debugfs_init(struct regmap *map, const char *name);
Mark Brown31244e32011-07-20 22:56:53 +0100221extern void regmap_debugfs_exit(struct regmap *map);
Mark Brown72465732017-12-12 16:56:43 +0000222
223static inline void regmap_debugfs_disable(struct regmap *map)
224{
225 map->debugfs_disable = true;
226}
227
Mark Brown31244e32011-07-20 22:56:53 +0100228#else
Lars-Peter Clausenbbcf61c2011-09-05 22:06:13 +0200229static inline void regmap_debugfs_initcall(void) { }
Stephen Warrenabec95a2012-04-05 23:09:20 -0600230static inline void regmap_debugfs_init(struct regmap *map, const char *name) { }
Lars-Peter Clausenbbcf61c2011-09-05 22:06:13 +0200231static inline void regmap_debugfs_exit(struct regmap *map) { }
Mark Brown72465732017-12-12 16:56:43 +0000232static inline void regmap_debugfs_disable(struct regmap *map) { }
Mark Brown31244e32011-07-20 22:56:53 +0100233#endif
234
Dimitris Papastamos9fabe242011-09-19 14:34:00 +0100235/* regcache core declarations */
Lars-Peter Clausene5e3b8a2011-11-16 16:28:16 +0100236int regcache_init(struct regmap *map, const struct regmap_config *config);
Dimitris Papastamos9fabe242011-09-19 14:34:00 +0100237void regcache_exit(struct regmap *map);
238int regcache_read(struct regmap *map,
239 unsigned int reg, unsigned int *value);
240int regcache_write(struct regmap *map,
241 unsigned int reg, unsigned int value);
242int regcache_sync(struct regmap *map);
Mark Brownf8bd8222013-03-29 19:32:28 +0000243int regcache_sync_block(struct regmap *map, void *block,
Lars-Peter Clausen3f4ff562013-08-29 10:26:34 +0200244 unsigned long *cache_present,
Mark Brownf8bd8222013-03-29 19:32:28 +0000245 unsigned int block_base, unsigned int start,
246 unsigned int end);
Dimitris Papastamos9fabe242011-09-19 14:34:00 +0100247
Mark Brown88177962013-03-13 19:29:36 +0000248static inline const void *regcache_get_val_addr(struct regmap *map,
249 const void *base,
250 unsigned int idx)
251{
252 return base + (map->cache_word_size * idx);
253}
254
Mark Brown879082c2013-02-21 18:03:13 +0000255unsigned int regcache_get_val(struct regmap *map, const void *base,
256 unsigned int idx);
257bool regcache_set_val(struct regmap *map, void *base, unsigned int idx,
258 unsigned int val);
Dimitris Papastamos9fabe242011-09-19 14:34:00 +0100259int regcache_lookup_reg(struct regmap *map, unsigned int reg);
Dimitris Papastamos9fabe242011-09-19 14:34:00 +0100260
Mark Brown584de322013-03-13 19:19:34 +0000261int _regmap_raw_write(struct regmap *map, unsigned int reg,
Mark Brown0a819802013-10-09 12:28:52 +0100262 const void *val, size_t val_len);
Mark Brown584de322013-03-13 19:19:34 +0000263
Mark Brown0d509f22013-01-27 22:07:38 +0800264void regmap_async_complete_cb(struct regmap_async *async, int ret);
265
Guenter Roeck3c174d22015-02-03 10:01:18 -0800266enum regmap_endian regmap_get_val_endian(struct device *dev,
267 const struct regmap_bus *bus,
268 const struct regmap_config *config);
269
Dimitris Papastamos28644c802011-09-19 14:34:02 +0100270extern struct regcache_ops regcache_rbtree_ops;
Dimitris Papastamos2cbbb572011-09-19 14:34:03 +0100271extern struct regcache_ops regcache_lzo_ops;
Mark Brown2ac902c2012-12-19 14:51:55 +0000272extern struct regcache_ops regcache_flat_ops;
Dimitris Papastamos2cbbb572011-09-19 14:34:03 +0100273
Philipp Zabelc6b570d2015-03-09 12:20:13 +0100274static inline const char *regmap_name(const struct regmap *map)
275{
276 if (map->dev)
277 return dev_name(map->dev);
278
279 return map->name;
280}
281
Xiubo Lica747be2016-01-04 18:00:33 +0800282static inline unsigned int regmap_get_offset(const struct regmap *map,
283 unsigned int index)
284{
285 if (map->reg_stride_order >= 0)
286 return index << map->reg_stride_order;
287 else
288 return index * map->reg_stride;
289}
290
Xiubo Li8b31ec52016-01-04 18:00:34 +0800291static inline unsigned int regcache_get_index_by_order(const struct regmap *map,
292 unsigned int reg)
293{
294 return reg >> map->reg_stride_order;
295}
296
Mark Brown93de9122011-07-20 22:35:37 +0100297#endif