blob: 5c79526245c2e3309a28766b781a9f2bccc850d5 [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
16#include <linux/regmap.h>
Mark Brown31244e32011-07-20 22:56:53 +010017#include <linux/fs.h>
Mark Brown5166b7c2012-12-11 01:24:29 +090018#include <linux/list.h>
Mark Brown0d509f22013-01-27 22:07:38 +080019#include <linux/wait.h>
Mark Brown93de9122011-07-20 22:35:37 +010020
21struct regmap;
Dimitris Papastamos9fabe242011-09-19 14:34:00 +010022struct regcache_ops;
Mark Brown93de9122011-07-20 22:35:37 +010023
Mark Brown5166b7c2012-12-11 01:24:29 +090024struct regmap_debugfs_off_cache {
25 struct list_head list;
26 off_t min;
27 off_t max;
28 unsigned int base_reg;
Dimitris Papastamosc2c1ee62013-02-08 12:47:14 +000029 unsigned int max_reg;
Mark Brown5166b7c2012-12-11 01:24:29 +090030};
31
Mark Brown93de9122011-07-20 22:35:37 +010032struct regmap_format {
33 size_t buf_size;
34 size_t reg_bytes;
Mark Brown82159ba2012-01-18 10:52:25 +000035 size_t pad_bytes;
Mark Brown93de9122011-07-20 22:35:37 +010036 size_t val_bytes;
37 void (*format_write)(struct regmap *map,
38 unsigned int reg, unsigned int val);
Marc Reillyd939fb92012-03-16 12:11:43 +110039 void (*format_reg)(void *buf, unsigned int reg, unsigned int shift);
40 void (*format_val)(void *buf, unsigned int val, unsigned int shift);
Mark Brown8a819ff2013-03-04 09:04:51 +080041 unsigned int (*parse_val)(const void *buf);
42 void (*parse_inplace)(void *buf);
Mark Brown93de9122011-07-20 22:35:37 +010043};
44
Mark Brown0d509f22013-01-27 22:07:38 +080045struct regmap_async {
46 struct list_head list;
Mark Brown0d509f22013-01-27 22:07:38 +080047 struct regmap *map;
48 void *work_buf;
49};
50
Mark Brown93de9122011-07-20 22:35:37 +010051struct regmap {
Wang, Yalin336fb812014-09-11 16:19:49 +080052 union {
53 struct mutex mutex;
Wang, Yalinf93d1be2014-12-15 16:05:50 +080054 struct {
55 spinlock_t spinlock;
56 unsigned long spinlock_flags;
57 };
Wang, Yalin336fb812014-09-11 16:19:49 +080058 };
Stephen Warrenbacdbe02012-04-04 15:48:28 -060059 regmap_lock lock;
60 regmap_unlock unlock;
Davide Ciminaghi0d4529c2012-10-16 15:56:59 +020061 void *lock_arg; /* This is passed to lock/unlock functions */
Stephen Boydb4a21fc2015-09-11 16:37:05 -070062 gfp_t alloc_flags;
Mark Brown93de9122011-07-20 22:35:37 +010063
64 struct device *dev; /* Device we do I/O on */
65 void *work_buf; /* Scratch buffer used to format I/O */
66 struct regmap_format format; /* Buffer format */
67 const struct regmap_bus *bus;
Stephen Warren0135bbc2012-04-04 15:48:30 -060068 void *bus_context;
Mark Brown72b39f62012-05-08 17:44:40 +010069 const char *name;
Mark Brown93de9122011-07-20 22:35:37 +010070
Mark Brown0a819802013-10-09 12:28:52 +010071 bool async;
Mark Brown0d509f22013-01-27 22:07:38 +080072 spinlock_t async_lock;
73 wait_queue_head_t async_waitq;
74 struct list_head async_list;
Mark Brown7e09a972013-10-07 23:00:24 +010075 struct list_head async_free;
Mark Brown0d509f22013-01-27 22:07:38 +080076 int async_ret;
77
Mark Brown31244e32011-07-20 22:56:53 +010078#ifdef CONFIG_DEBUG_FS
79 struct dentry *debugfs;
Stephen Warrend3c242e2012-04-04 15:48:29 -060080 const char *debugfs_name;
Mark Browncbc19382012-12-06 13:29:05 +090081
82 unsigned int debugfs_reg_len;
83 unsigned int debugfs_val_len;
84 unsigned int debugfs_tot_len;
Mark Brown5166b7c2012-12-11 01:24:29 +090085
86 struct list_head debugfs_off_cache;
Dimitris Papastamos065b4c52013-02-20 12:15:23 +000087 struct mutex cache_lock;
Mark Brown31244e32011-07-20 22:56:53 +010088#endif
89
Mark Brown93de9122011-07-20 22:35:37 +010090 unsigned int max_register;
91 bool (*writeable_reg)(struct device *dev, unsigned int reg);
92 bool (*readable_reg)(struct device *dev, unsigned int reg);
93 bool (*volatile_reg)(struct device *dev, unsigned int reg);
Mark Brown2efe1642011-08-08 15:41:46 +090094 bool (*precious_reg)(struct device *dev, unsigned int reg);
Davide Ciminaghi76aad392012-11-20 15:20:30 +010095 const struct regmap_access_table *wr_table;
96 const struct regmap_access_table *rd_table;
97 const struct regmap_access_table *volatile_table;
98 const struct regmap_access_table *precious_table;
Lars-Peter Clausen6f306442011-09-05 20:46:32 +020099
Andrey Smirnovad278402013-01-12 12:54:12 -0800100 int (*reg_read)(void *context, unsigned int reg, unsigned int *val);
Andrey Smirnov07c320d2013-01-12 12:54:13 -0800101 int (*reg_write)(void *context, unsigned int reg, unsigned int val);
Jon Ringle77792b12015-10-01 12:38:07 -0400102 int (*reg_update_bits)(void *context, unsigned int reg,
103 unsigned int mask, unsigned int val);
Andrey Smirnovad278402013-01-12 12:54:12 -0800104
Andrey Smirnovd2a58842013-01-27 10:49:05 -0800105 bool defer_caching;
106
Lars-Peter Clausen6f306442011-09-05 20:46:32 +0200107 u8 read_flag_mask;
108 u8 write_flag_mask;
Dimitris Papastamos9fabe242011-09-19 14:34:00 +0100109
Marc Reillyd939fb92012-03-16 12:11:43 +1100110 /* number of bits to (left) shift the reg value when formatting*/
111 int reg_shift;
Stephen Warrenf01ee602012-04-09 13:40:24 -0600112 int reg_stride;
Xiubo Lica747be2016-01-04 18:00:33 +0800113 int reg_stride_order;
Marc Reillyd939fb92012-03-16 12:11:43 +1100114
Dimitris Papastamos9fabe242011-09-19 14:34:00 +0100115 /* regcache specific members */
116 const struct regcache_ops *cache_ops;
117 enum regcache_type cache_type;
118
119 /* number of bytes in reg_defaults_raw */
120 unsigned int cache_size_raw;
121 /* number of bytes per word in reg_defaults_raw */
122 unsigned int cache_word_size;
123 /* number of entries in reg_defaults */
124 unsigned int num_reg_defaults;
125 /* number of entries in reg_defaults_raw */
126 unsigned int num_reg_defaults_raw;
127
128 /* if set, only the cache is modified not the HW */
Viresh Kumar621a5f72015-09-26 15:04:07 -0700129 bool cache_only;
Dimitris Papastamos9fabe242011-09-19 14:34:00 +0100130 /* if set, only the HW is modified not the cache */
Viresh Kumar621a5f72015-09-26 15:04:07 -0700131 bool cache_bypass;
Dimitris Papastamos9fabe242011-09-19 14:34:00 +0100132 /* if set, remember to free reg_defaults_raw */
Mark Brown847fb6f2012-02-06 18:01:35 +0000133 bool cache_free;
Dimitris Papastamos9fabe242011-09-19 14:34:00 +0100134
135 struct reg_default *reg_defaults;
136 const void *reg_defaults_raw;
137 void *cache;
Kevin Cernekee1c797712015-05-05 15:14:14 -0700138 /* if set, the cache contains newer data than the HW */
Viresh Kumar621a5f72015-09-26 15:04:07 -0700139 bool cache_dirty;
Kevin Cernekee1c797712015-05-05 15:14:14 -0700140 /* if set, the HW registers are known to match map->reg_defaults */
141 bool no_sync_defaults;
Mark Brown22f0d902012-01-21 12:01:14 +0000142
Nariman Poushin8019ff62015-07-16 16:36:21 +0100143 struct reg_sequence *patch;
Mark Brown22f0d902012-01-21 12:01:14 +0000144 int patch_regs;
Ashish Jangam2e33caf2012-04-30 23:23:40 +0100145
Markus Pargmann67921a12015-08-21 10:26:42 +0200146 /* if set, converts bulk read to single read */
147 bool use_single_read;
148 /* if set, converts bulk read to single read */
149 bool use_single_write;
Opensource [Anthony Olech]e894c3f2014-03-04 13:54:02 +0000150 /* if set, the device supports multi write mode */
151 bool can_multi_write;
Krystian Garbaciak6863ca62012-06-15 11:23:56 +0100152
Markus Pargmannadaac452015-08-30 09:33:53 +0200153 /* if set, raw reads/writes are limited to this size */
154 size_t max_raw_read;
155 size_t max_raw_write;
156
Krystian Garbaciak6863ca62012-06-15 11:23:56 +0100157 struct rb_root range_tree;
158 void *selector_work_buf; /* Scratch buffer used for selector */
Dimitris Papastamos9fabe242011-09-19 14:34:00 +0100159};
160
161struct regcache_ops {
162 const char *name;
163 enum regcache_type type;
164 int (*init)(struct regmap *map);
165 int (*exit)(struct regmap *map);
Lars-Peter Clausen5e0cbe72014-08-24 15:32:27 +0200166#ifdef CONFIG_DEBUG_FS
167 void (*debugfs_init)(struct regmap *map);
168#endif
Dimitris Papastamos9fabe242011-09-19 14:34:00 +0100169 int (*read)(struct regmap *map, unsigned int reg, unsigned int *value);
170 int (*write)(struct regmap *map, unsigned int reg, unsigned int value);
Mark Brownac8d91c2012-02-23 19:31:04 +0000171 int (*sync)(struct regmap *map, unsigned int min, unsigned int max);
Mark Brown697e85b2013-05-08 13:55:22 +0100172 int (*drop)(struct regmap *map, unsigned int min, unsigned int max);
Mark Brown93de9122011-07-20 22:35:37 +0100173};
174
Mark Brown8de2f082011-08-10 17:14:41 +0900175bool regmap_writeable(struct regmap *map, unsigned int reg);
176bool regmap_readable(struct regmap *map, unsigned int reg);
177bool regmap_volatile(struct regmap *map, unsigned int reg);
178bool regmap_precious(struct regmap *map, unsigned int reg);
179
Dimitris Papastamos4d2dc092011-09-29 10:39:07 +0100180int _regmap_write(struct regmap *map, unsigned int reg,
181 unsigned int val);
182
Krystian Garbaciak6863ca62012-06-15 11:23:56 +0100183struct regmap_range_node {
184 struct rb_node node;
Mark Brownd058bb42012-10-03 12:40:47 +0100185 const char *name;
Mark Brown4b020b32012-10-03 13:13:16 +0100186 struct regmap *map;
Krystian Garbaciak6863ca62012-06-15 11:23:56 +0100187
188 unsigned int range_min;
189 unsigned int range_max;
190
191 unsigned int selector_reg;
192 unsigned int selector_mask;
193 int selector_shift;
194
195 unsigned int window_start;
196 unsigned int window_len;
197};
198
Srinivas Kandagatla67252282013-06-11 13:18:15 +0100199struct regmap_field {
200 struct regmap *regmap;
201 unsigned int mask;
202 /* lsb */
203 unsigned int shift;
204 unsigned int reg;
Kuninori Morimotoa0102372013-09-01 20:30:50 -0700205
206 unsigned int id_size;
207 unsigned int id_offset;
Srinivas Kandagatla67252282013-06-11 13:18:15 +0100208};
209
Mark Brown31244e32011-07-20 22:56:53 +0100210#ifdef CONFIG_DEBUG_FS
211extern void regmap_debugfs_initcall(void);
Stephen Warrend3c242e2012-04-04 15:48:29 -0600212extern void regmap_debugfs_init(struct regmap *map, const char *name);
Mark Brown31244e32011-07-20 22:56:53 +0100213extern void regmap_debugfs_exit(struct regmap *map);
214#else
Lars-Peter Clausenbbcf61c2011-09-05 22:06:13 +0200215static inline void regmap_debugfs_initcall(void) { }
Stephen Warrenabec95a2012-04-05 23:09:20 -0600216static inline void regmap_debugfs_init(struct regmap *map, const char *name) { }
Lars-Peter Clausenbbcf61c2011-09-05 22:06:13 +0200217static inline void regmap_debugfs_exit(struct regmap *map) { }
Mark Brown31244e32011-07-20 22:56:53 +0100218#endif
219
Dimitris Papastamos9fabe242011-09-19 14:34:00 +0100220/* regcache core declarations */
Lars-Peter Clausene5e3b8a2011-11-16 16:28:16 +0100221int regcache_init(struct regmap *map, const struct regmap_config *config);
Dimitris Papastamos9fabe242011-09-19 14:34:00 +0100222void regcache_exit(struct regmap *map);
223int regcache_read(struct regmap *map,
224 unsigned int reg, unsigned int *value);
225int regcache_write(struct regmap *map,
226 unsigned int reg, unsigned int value);
227int regcache_sync(struct regmap *map);
Mark Brownf8bd8222013-03-29 19:32:28 +0000228int regcache_sync_block(struct regmap *map, void *block,
Lars-Peter Clausen3f4ff562013-08-29 10:26:34 +0200229 unsigned long *cache_present,
Mark Brownf8bd8222013-03-29 19:32:28 +0000230 unsigned int block_base, unsigned int start,
231 unsigned int end);
Dimitris Papastamos9fabe242011-09-19 14:34:00 +0100232
Mark Brown88177962013-03-13 19:29:36 +0000233static inline const void *regcache_get_val_addr(struct regmap *map,
234 const void *base,
235 unsigned int idx)
236{
237 return base + (map->cache_word_size * idx);
238}
239
Mark Brown879082c2013-02-21 18:03:13 +0000240unsigned int regcache_get_val(struct regmap *map, const void *base,
241 unsigned int idx);
242bool regcache_set_val(struct regmap *map, void *base, unsigned int idx,
243 unsigned int val);
Dimitris Papastamos9fabe242011-09-19 14:34:00 +0100244int regcache_lookup_reg(struct regmap *map, unsigned int reg);
Dimitris Papastamos9fabe242011-09-19 14:34:00 +0100245
Mark Brown584de322013-03-13 19:19:34 +0000246int _regmap_raw_write(struct regmap *map, unsigned int reg,
Mark Brown0a819802013-10-09 12:28:52 +0100247 const void *val, size_t val_len);
Mark Brown584de322013-03-13 19:19:34 +0000248
Mark Brown0d509f22013-01-27 22:07:38 +0800249void regmap_async_complete_cb(struct regmap_async *async, int ret);
250
Guenter Roeck3c174d22015-02-03 10:01:18 -0800251enum regmap_endian regmap_get_val_endian(struct device *dev,
252 const struct regmap_bus *bus,
253 const struct regmap_config *config);
254
Dimitris Papastamos28644c802011-09-19 14:34:02 +0100255extern struct regcache_ops regcache_rbtree_ops;
Dimitris Papastamos2cbbb572011-09-19 14:34:03 +0100256extern struct regcache_ops regcache_lzo_ops;
Mark Brown2ac902c2012-12-19 14:51:55 +0000257extern struct regcache_ops regcache_flat_ops;
Dimitris Papastamos2cbbb572011-09-19 14:34:03 +0100258
Philipp Zabelc6b570d2015-03-09 12:20:13 +0100259static inline const char *regmap_name(const struct regmap *map)
260{
261 if (map->dev)
262 return dev_name(map->dev);
263
264 return map->name;
265}
266
Xiubo Lica747be2016-01-04 18:00:33 +0800267static inline unsigned int regmap_get_offset(const struct regmap *map,
268 unsigned int index)
269{
270 if (map->reg_stride_order >= 0)
271 return index << map->reg_stride_order;
272 else
273 return index * map->reg_stride;
274}
275
Xiubo Li8b31ec52016-01-04 18:00:34 +0800276static inline unsigned int regcache_get_index_by_order(const struct regmap *map,
277 unsigned int reg)
278{
279 return reg >> map->reg_stride_order;
280}
281
Mark Brown93de9122011-07-20 22:35:37 +0100282#endif