regmap: Add support for padding between register and address
[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>
93de9124
MB
18
19struct regmap;
9fabe24e 20struct regcache_ops;
93de9124
MB
21
22struct regmap_format {
23 size_t buf_size;
24 size_t reg_bytes;
82159ba8 25 size_t pad_bytes;
93de9124
MB
26 size_t val_bytes;
27 void (*format_write)(struct regmap *map,
28 unsigned int reg, unsigned int val);
29 void (*format_reg)(void *buf, unsigned int reg);
30 void (*format_val)(void *buf, unsigned int val);
31 unsigned int (*parse_val)(void *buf);
32};
33
34struct regmap {
35 struct mutex lock;
36
37 struct device *dev; /* Device we do I/O on */
38 void *work_buf; /* Scratch buffer used to format I/O */
39 struct regmap_format format; /* Buffer format */
40 const struct regmap_bus *bus;
41
31244e39
MB
42#ifdef CONFIG_DEBUG_FS
43 struct dentry *debugfs;
44#endif
45
93de9124
MB
46 unsigned int max_register;
47 bool (*writeable_reg)(struct device *dev, unsigned int reg);
48 bool (*readable_reg)(struct device *dev, unsigned int reg);
49 bool (*volatile_reg)(struct device *dev, unsigned int reg);
2efe1642 50 bool (*precious_reg)(struct device *dev, unsigned int reg);
6f306441
LPC
51
52 u8 read_flag_mask;
53 u8 write_flag_mask;
9fabe24e
DP
54
55 /* regcache specific members */
56 const struct regcache_ops *cache_ops;
57 enum regcache_type cache_type;
58
59 /* number of bytes in reg_defaults_raw */
60 unsigned int cache_size_raw;
61 /* number of bytes per word in reg_defaults_raw */
62 unsigned int cache_word_size;
63 /* number of entries in reg_defaults */
64 unsigned int num_reg_defaults;
65 /* number of entries in reg_defaults_raw */
66 unsigned int num_reg_defaults_raw;
67
68 /* if set, only the cache is modified not the HW */
69 unsigned int cache_only:1;
70 /* if set, only the HW is modified not the cache */
71 unsigned int cache_bypass:1;
72 /* if set, remember to free reg_defaults_raw */
73 unsigned int cache_free:1;
74
75 struct reg_default *reg_defaults;
76 const void *reg_defaults_raw;
77 void *cache;
8ae0d7e8 78 bool cache_dirty;
9fabe24e
DP
79};
80
81struct regcache_ops {
82 const char *name;
83 enum regcache_type type;
84 int (*init)(struct regmap *map);
85 int (*exit)(struct regmap *map);
86 int (*read)(struct regmap *map, unsigned int reg, unsigned int *value);
87 int (*write)(struct regmap *map, unsigned int reg, unsigned int value);
88 int (*sync)(struct regmap *map);
93de9124
MB
89};
90
8de2f081
MB
91bool regmap_writeable(struct regmap *map, unsigned int reg);
92bool regmap_readable(struct regmap *map, unsigned int reg);
93bool regmap_volatile(struct regmap *map, unsigned int reg);
94bool regmap_precious(struct regmap *map, unsigned int reg);
95
4d2dc095
DP
96int _regmap_write(struct regmap *map, unsigned int reg,
97 unsigned int val);
98
31244e39
MB
99#ifdef CONFIG_DEBUG_FS
100extern void regmap_debugfs_initcall(void);
101extern void regmap_debugfs_init(struct regmap *map);
102extern void regmap_debugfs_exit(struct regmap *map);
103#else
bbcf61ca
LPC
104static inline void regmap_debugfs_initcall(void) { }
105static inline void regmap_debugfs_init(struct regmap *map) { }
106static inline void regmap_debugfs_exit(struct regmap *map) { }
31244e39
MB
107#endif
108
9fabe24e 109/* regcache core declarations */
e5e3b8ab 110int regcache_init(struct regmap *map, const struct regmap_config *config);
9fabe24e
DP
111void regcache_exit(struct regmap *map);
112int regcache_read(struct regmap *map,
113 unsigned int reg, unsigned int *value);
114int regcache_write(struct regmap *map,
115 unsigned int reg, unsigned int value);
116int regcache_sync(struct regmap *map);
117
118unsigned int regcache_get_val(const void *base, unsigned int idx,
119 unsigned int word_size);
120bool regcache_set_val(void *base, unsigned int idx,
121 unsigned int val, unsigned int word_size);
122int regcache_lookup_reg(struct regmap *map, unsigned int reg);
9fabe24e 123
28644c80 124extern struct regcache_ops regcache_rbtree_ops;
2cbbb579
DP
125extern struct regcache_ops regcache_lzo_ops;
126
93de9124 127#endif
This page took 0.098545 seconds and 5 git commands to generate.