Linux 3.8-rc1
[deliverable/linux.git] / drivers / base / regmap / internal.h
CommitLineData
93de9124
MB
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>
31244e39 17#include <linux/fs.h>
5166b7c0 18#include <linux/list.h>
93de9124
MB
19
20struct regmap;
9fabe24e 21struct regcache_ops;
93de9124 22
5166b7c0
MB
23struct regmap_debugfs_off_cache {
24 struct list_head list;
25 off_t min;
26 off_t max;
27 unsigned int base_reg;
28};
29
93de9124
MB
30struct regmap_format {
31 size_t buf_size;
32 size_t reg_bytes;
82159ba8 33 size_t pad_bytes;
93de9124
MB
34 size_t val_bytes;
35 void (*format_write)(struct regmap *map,
36 unsigned int reg, unsigned int val);
d939fb9a
MR
37 void (*format_reg)(void *buf, unsigned int reg, unsigned int shift);
38 void (*format_val)(void *buf, unsigned int val, unsigned int shift);
93de9124
MB
39 unsigned int (*parse_val)(void *buf);
40};
41
42struct regmap {
bacdbe07
SW
43 struct mutex mutex;
44 spinlock_t spinlock;
45 regmap_lock lock;
46 regmap_unlock unlock;
0d4529c5 47 void *lock_arg; /* This is passed to lock/unlock functions */
93de9124
MB
48
49 struct device *dev; /* Device we do I/O on */
50 void *work_buf; /* Scratch buffer used to format I/O */
51 struct regmap_format format; /* Buffer format */
52 const struct regmap_bus *bus;
0135bbcc 53 void *bus_context;
72b39f6f 54 const char *name;
93de9124 55
31244e39
MB
56#ifdef CONFIG_DEBUG_FS
57 struct dentry *debugfs;
d3c242e1 58 const char *debugfs_name;
cbc1938b
MB
59
60 unsigned int debugfs_reg_len;
61 unsigned int debugfs_val_len;
62 unsigned int debugfs_tot_len;
5166b7c0
MB
63
64 struct list_head debugfs_off_cache;
31244e39
MB
65#endif
66
93de9124
MB
67 unsigned int max_register;
68 bool (*writeable_reg)(struct device *dev, unsigned int reg);
69 bool (*readable_reg)(struct device *dev, unsigned int reg);
70 bool (*volatile_reg)(struct device *dev, unsigned int reg);
2efe1642 71 bool (*precious_reg)(struct device *dev, unsigned int reg);
76aad392
DC
72 const struct regmap_access_table *wr_table;
73 const struct regmap_access_table *rd_table;
74 const struct regmap_access_table *volatile_table;
75 const struct regmap_access_table *precious_table;
6f306441
LPC
76
77 u8 read_flag_mask;
78 u8 write_flag_mask;
9fabe24e 79
d939fb9a
MR
80 /* number of bits to (left) shift the reg value when formatting*/
81 int reg_shift;
f01ee60f 82 int reg_stride;
d939fb9a 83
9fabe24e
DP
84 /* regcache specific members */
85 const struct regcache_ops *cache_ops;
86 enum regcache_type cache_type;
87
88 /* number of bytes in reg_defaults_raw */
89 unsigned int cache_size_raw;
90 /* number of bytes per word in reg_defaults_raw */
91 unsigned int cache_word_size;
92 /* number of entries in reg_defaults */
93 unsigned int num_reg_defaults;
94 /* number of entries in reg_defaults_raw */
95 unsigned int num_reg_defaults_raw;
96
97 /* if set, only the cache is modified not the HW */
847fb6fd 98 u32 cache_only;
9fabe24e 99 /* if set, only the HW is modified not the cache */
847fb6fd 100 u32 cache_bypass;
9fabe24e 101 /* if set, remember to free reg_defaults_raw */
847fb6fd 102 bool cache_free;
9fabe24e
DP
103
104 struct reg_default *reg_defaults;
105 const void *reg_defaults_raw;
106 void *cache;
847fb6fd 107 u32 cache_dirty;
22f0d90a
MB
108
109 struct reg_default *patch;
110 int patch_regs;
2e33caf1
AJ
111
112 /* if set, converts bulk rw to single rw */
113 bool use_single_rw;
6863ca62
KG
114
115 struct rb_root range_tree;
116 void *selector_work_buf; /* Scratch buffer used for selector */
9fabe24e
DP
117};
118
119struct regcache_ops {
120 const char *name;
121 enum regcache_type type;
122 int (*init)(struct regmap *map);
123 int (*exit)(struct regmap *map);
124 int (*read)(struct regmap *map, unsigned int reg, unsigned int *value);
125 int (*write)(struct regmap *map, unsigned int reg, unsigned int value);
ac8d91c8 126 int (*sync)(struct regmap *map, unsigned int min, unsigned int max);
93de9124
MB
127};
128
8de2f081
MB
129bool regmap_writeable(struct regmap *map, unsigned int reg);
130bool regmap_readable(struct regmap *map, unsigned int reg);
131bool regmap_volatile(struct regmap *map, unsigned int reg);
132bool regmap_precious(struct regmap *map, unsigned int reg);
133
4d2dc095
DP
134int _regmap_write(struct regmap *map, unsigned int reg,
135 unsigned int val);
136
6863ca62
KG
137struct regmap_range_node {
138 struct rb_node node;
d058bb49 139 const char *name;
4b020b3f 140 struct regmap *map;
6863ca62
KG
141
142 unsigned int range_min;
143 unsigned int range_max;
144
145 unsigned int selector_reg;
146 unsigned int selector_mask;
147 int selector_shift;
148
149 unsigned int window_start;
150 unsigned int window_len;
151};
152
31244e39
MB
153#ifdef CONFIG_DEBUG_FS
154extern void regmap_debugfs_initcall(void);
d3c242e1 155extern void regmap_debugfs_init(struct regmap *map, const char *name);
31244e39
MB
156extern void regmap_debugfs_exit(struct regmap *map);
157#else
bbcf61ca 158static inline void regmap_debugfs_initcall(void) { }
abec95ad 159static inline void regmap_debugfs_init(struct regmap *map, const char *name) { }
bbcf61ca 160static inline void regmap_debugfs_exit(struct regmap *map) { }
31244e39
MB
161#endif
162
9fabe24e 163/* regcache core declarations */
e5e3b8ab 164int regcache_init(struct regmap *map, const struct regmap_config *config);
9fabe24e
DP
165void regcache_exit(struct regmap *map);
166int regcache_read(struct regmap *map,
167 unsigned int reg, unsigned int *value);
168int regcache_write(struct regmap *map,
169 unsigned int reg, unsigned int value);
170int regcache_sync(struct regmap *map);
171
172unsigned int regcache_get_val(const void *base, unsigned int idx,
173 unsigned int word_size);
174bool regcache_set_val(void *base, unsigned int idx,
175 unsigned int val, unsigned int word_size);
176int regcache_lookup_reg(struct regmap *map, unsigned int reg);
9fabe24e 177
28644c80 178extern struct regcache_ops regcache_rbtree_ops;
2cbbb579
DP
179extern struct regcache_ops regcache_lzo_ops;
180
93de9124 181#endif
This page took 0.077191 seconds and 5 git commands to generate.