blob: 1abcd27e2d0ff707cd20caba5238b63ef5eb89ae [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 Brown93de9122011-07-20 22:35:37 +010018
19struct regmap;
Dimitris Papastamos9fabe242011-09-19 14:34:00 +010020struct regcache_ops;
Mark Brown93de9122011-07-20 22:35:37 +010021
22struct regmap_format {
23 size_t buf_size;
24 size_t reg_bytes;
Mark Brown82159ba2012-01-18 10:52:25 +000025 size_t pad_bytes;
Mark Brown93de9122011-07-20 22:35:37 +010026 size_t val_bytes;
27 void (*format_write)(struct regmap *map,
28 unsigned int reg, unsigned int val);
Marc Reillyd939fb92012-03-16 12:11:43 +110029 void (*format_reg)(void *buf, unsigned int reg, unsigned int shift);
30 void (*format_val)(void *buf, unsigned int val, unsigned int shift);
Mark Brown93de9122011-07-20 22:35:37 +010031 unsigned int (*parse_val)(void *buf);
32};
33
Stephen Warrenbacdbe02012-04-04 15:48:28 -060034typedef void (*regmap_lock)(struct regmap *map);
35typedef void (*regmap_unlock)(struct regmap *map);
36
Mark Brown93de9122011-07-20 22:35:37 +010037struct regmap {
Stephen Warrenbacdbe02012-04-04 15:48:28 -060038 struct mutex mutex;
39 spinlock_t spinlock;
40 regmap_lock lock;
41 regmap_unlock unlock;
Mark Brown93de9122011-07-20 22:35:37 +010042
43 struct device *dev; /* Device we do I/O on */
44 void *work_buf; /* Scratch buffer used to format I/O */
45 struct regmap_format format; /* Buffer format */
46 const struct regmap_bus *bus;
Stephen Warren0135bbc2012-04-04 15:48:30 -060047 void *bus_context;
Mark Brown72b39f62012-05-08 17:44:40 +010048 const char *name;
Mark Brown93de9122011-07-20 22:35:37 +010049
Mark Brown31244e32011-07-20 22:56:53 +010050#ifdef CONFIG_DEBUG_FS
51 struct dentry *debugfs;
Stephen Warrend3c242e2012-04-04 15:48:29 -060052 const char *debugfs_name;
Mark Browncbc19382012-12-06 13:29:05 +090053
54 unsigned int debugfs_reg_len;
55 unsigned int debugfs_val_len;
56 unsigned int debugfs_tot_len;
Mark Brown31244e32011-07-20 22:56:53 +010057#endif
58
Mark Brown93de9122011-07-20 22:35:37 +010059 unsigned int max_register;
60 bool (*writeable_reg)(struct device *dev, unsigned int reg);
61 bool (*readable_reg)(struct device *dev, unsigned int reg);
62 bool (*volatile_reg)(struct device *dev, unsigned int reg);
Mark Brown2efe1642011-08-08 15:41:46 +090063 bool (*precious_reg)(struct device *dev, unsigned int reg);
Lars-Peter Clausen6f306442011-09-05 20:46:32 +020064
65 u8 read_flag_mask;
66 u8 write_flag_mask;
Dimitris Papastamos9fabe242011-09-19 14:34:00 +010067
Marc Reillyd939fb92012-03-16 12:11:43 +110068 /* number of bits to (left) shift the reg value when formatting*/
69 int reg_shift;
Stephen Warrenf01ee602012-04-09 13:40:24 -060070 int reg_stride;
Marc Reillyd939fb92012-03-16 12:11:43 +110071
Dimitris Papastamos9fabe242011-09-19 14:34:00 +010072 /* regcache specific members */
73 const struct regcache_ops *cache_ops;
74 enum regcache_type cache_type;
75
76 /* number of bytes in reg_defaults_raw */
77 unsigned int cache_size_raw;
78 /* number of bytes per word in reg_defaults_raw */
79 unsigned int cache_word_size;
80 /* number of entries in reg_defaults */
81 unsigned int num_reg_defaults;
82 /* number of entries in reg_defaults_raw */
83 unsigned int num_reg_defaults_raw;
84
85 /* if set, only the cache is modified not the HW */
Mark Brown847fb6f2012-02-06 18:01:35 +000086 u32 cache_only;
Dimitris Papastamos9fabe242011-09-19 14:34:00 +010087 /* if set, only the HW is modified not the cache */
Mark Brown847fb6f2012-02-06 18:01:35 +000088 u32 cache_bypass;
Dimitris Papastamos9fabe242011-09-19 14:34:00 +010089 /* if set, remember to free reg_defaults_raw */
Mark Brown847fb6f2012-02-06 18:01:35 +000090 bool cache_free;
Dimitris Papastamos9fabe242011-09-19 14:34:00 +010091
92 struct reg_default *reg_defaults;
93 const void *reg_defaults_raw;
94 void *cache;
Mark Brown847fb6f2012-02-06 18:01:35 +000095 u32 cache_dirty;
Mark Brown22f0d902012-01-21 12:01:14 +000096
97 struct reg_default *patch;
98 int patch_regs;
Ashish Jangam2e33caf2012-04-30 23:23:40 +010099
100 /* if set, converts bulk rw to single rw */
101 bool use_single_rw;
Krystian Garbaciak6863ca62012-06-15 11:23:56 +0100102
103 struct rb_root range_tree;
104 void *selector_work_buf; /* Scratch buffer used for selector */
Dimitris Papastamos9fabe242011-09-19 14:34:00 +0100105};
106
107struct regcache_ops {
108 const char *name;
109 enum regcache_type type;
110 int (*init)(struct regmap *map);
111 int (*exit)(struct regmap *map);
112 int (*read)(struct regmap *map, unsigned int reg, unsigned int *value);
113 int (*write)(struct regmap *map, unsigned int reg, unsigned int value);
Mark Brownac8d91c2012-02-23 19:31:04 +0000114 int (*sync)(struct regmap *map, unsigned int min, unsigned int max);
Mark Brown93de9122011-07-20 22:35:37 +0100115};
116
Mark Brown8de2f082011-08-10 17:14:41 +0900117bool regmap_writeable(struct regmap *map, unsigned int reg);
118bool regmap_readable(struct regmap *map, unsigned int reg);
119bool regmap_volatile(struct regmap *map, unsigned int reg);
120bool regmap_precious(struct regmap *map, unsigned int reg);
121
Dimitris Papastamos4d2dc092011-09-29 10:39:07 +0100122int _regmap_write(struct regmap *map, unsigned int reg,
123 unsigned int val);
124
Krystian Garbaciak6863ca62012-06-15 11:23:56 +0100125struct regmap_range_node {
126 struct rb_node node;
Mark Brownd058bb42012-10-03 12:40:47 +0100127 const char *name;
Mark Brown4b020b32012-10-03 13:13:16 +0100128 struct regmap *map;
Krystian Garbaciak6863ca62012-06-15 11:23:56 +0100129
130 unsigned int range_min;
131 unsigned int range_max;
132
133 unsigned int selector_reg;
134 unsigned int selector_mask;
135 int selector_shift;
136
137 unsigned int window_start;
138 unsigned int window_len;
139};
140
Mark Brown31244e32011-07-20 22:56:53 +0100141#ifdef CONFIG_DEBUG_FS
142extern void regmap_debugfs_initcall(void);
Stephen Warrend3c242e2012-04-04 15:48:29 -0600143extern void regmap_debugfs_init(struct regmap *map, const char *name);
Mark Brown31244e32011-07-20 22:56:53 +0100144extern void regmap_debugfs_exit(struct regmap *map);
145#else
Lars-Peter Clausenbbcf61c2011-09-05 22:06:13 +0200146static inline void regmap_debugfs_initcall(void) { }
Stephen Warrenabec95a2012-04-05 23:09:20 -0600147static inline void regmap_debugfs_init(struct regmap *map, const char *name) { }
Lars-Peter Clausenbbcf61c2011-09-05 22:06:13 +0200148static inline void regmap_debugfs_exit(struct regmap *map) { }
Mark Brown31244e32011-07-20 22:56:53 +0100149#endif
150
Dimitris Papastamos9fabe242011-09-19 14:34:00 +0100151/* regcache core declarations */
Lars-Peter Clausene5e3b8a2011-11-16 16:28:16 +0100152int regcache_init(struct regmap *map, const struct regmap_config *config);
Dimitris Papastamos9fabe242011-09-19 14:34:00 +0100153void regcache_exit(struct regmap *map);
154int regcache_read(struct regmap *map,
155 unsigned int reg, unsigned int *value);
156int regcache_write(struct regmap *map,
157 unsigned int reg, unsigned int value);
158int regcache_sync(struct regmap *map);
159
160unsigned int regcache_get_val(const void *base, unsigned int idx,
161 unsigned int word_size);
162bool regcache_set_val(void *base, unsigned int idx,
163 unsigned int val, unsigned int word_size);
164int regcache_lookup_reg(struct regmap *map, unsigned int reg);
Dimitris Papastamos9fabe242011-09-19 14:34:00 +0100165
Dimitris Papastamos28644c802011-09-19 14:34:02 +0100166extern struct regcache_ops regcache_rbtree_ops;
Dimitris Papastamos2cbbb572011-09-19 14:34:03 +0100167extern struct regcache_ops regcache_lzo_ops;
168
Mark Brown93de9122011-07-20 22:35:37 +0100169#endif