blob: b1ee824e2a5f12b533c23f0259ea3c6a587935be [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
34struct regmap {
Stephen Warrenbacdbe02012-04-04 15:48:28 -060035 struct mutex mutex;
36 spinlock_t spinlock;
37 regmap_lock lock;
38 regmap_unlock unlock;
Davide Ciminaghi0d4529c2012-10-16 15:56:59 +020039 void *lock_arg; /* This is passed to lock/unlock functions */
Mark Brown93de9122011-07-20 22:35:37 +010040
41 struct device *dev; /* Device we do I/O on */
42 void *work_buf; /* Scratch buffer used to format I/O */
43 struct regmap_format format; /* Buffer format */
44 const struct regmap_bus *bus;
Stephen Warren0135bbc2012-04-04 15:48:30 -060045 void *bus_context;
Mark Brown72b39f62012-05-08 17:44:40 +010046 const char *name;
Mark Brown93de9122011-07-20 22:35:37 +010047
Mark Brown31244e32011-07-20 22:56:53 +010048#ifdef CONFIG_DEBUG_FS
49 struct dentry *debugfs;
Stephen Warrend3c242e2012-04-04 15:48:29 -060050 const char *debugfs_name;
Mark Brown31244e32011-07-20 22:56:53 +010051#endif
52
Mark Brown93de9122011-07-20 22:35:37 +010053 unsigned int max_register;
54 bool (*writeable_reg)(struct device *dev, unsigned int reg);
55 bool (*readable_reg)(struct device *dev, unsigned int reg);
56 bool (*volatile_reg)(struct device *dev, unsigned int reg);
Mark Brown2efe1642011-08-08 15:41:46 +090057 bool (*precious_reg)(struct device *dev, unsigned int reg);
Lars-Peter Clausen6f306442011-09-05 20:46:32 +020058
59 u8 read_flag_mask;
60 u8 write_flag_mask;
Dimitris Papastamos9fabe242011-09-19 14:34:00 +010061
Marc Reillyd939fb92012-03-16 12:11:43 +110062 /* number of bits to (left) shift the reg value when formatting*/
63 int reg_shift;
Stephen Warrenf01ee602012-04-09 13:40:24 -060064 int reg_stride;
Marc Reillyd939fb92012-03-16 12:11:43 +110065
Dimitris Papastamos9fabe242011-09-19 14:34:00 +010066 /* regcache specific members */
67 const struct regcache_ops *cache_ops;
68 enum regcache_type cache_type;
69
70 /* number of bytes in reg_defaults_raw */
71 unsigned int cache_size_raw;
72 /* number of bytes per word in reg_defaults_raw */
73 unsigned int cache_word_size;
74 /* number of entries in reg_defaults */
75 unsigned int num_reg_defaults;
76 /* number of entries in reg_defaults_raw */
77 unsigned int num_reg_defaults_raw;
78
79 /* if set, only the cache is modified not the HW */
Mark Brown847fb6f2012-02-06 18:01:35 +000080 u32 cache_only;
Dimitris Papastamos9fabe242011-09-19 14:34:00 +010081 /* if set, only the HW is modified not the cache */
Mark Brown847fb6f2012-02-06 18:01:35 +000082 u32 cache_bypass;
Dimitris Papastamos9fabe242011-09-19 14:34:00 +010083 /* if set, remember to free reg_defaults_raw */
Mark Brown847fb6f2012-02-06 18:01:35 +000084 bool cache_free;
Dimitris Papastamos9fabe242011-09-19 14:34:00 +010085
86 struct reg_default *reg_defaults;
87 const void *reg_defaults_raw;
88 void *cache;
Mark Brown847fb6f2012-02-06 18:01:35 +000089 u32 cache_dirty;
Mark Brown22f0d902012-01-21 12:01:14 +000090
91 struct reg_default *patch;
92 int patch_regs;
Ashish Jangam2e33caf2012-04-30 23:23:40 +010093
94 /* if set, converts bulk rw to single rw */
95 bool use_single_rw;
Krystian Garbaciak6863ca62012-06-15 11:23:56 +010096
97 struct rb_root range_tree;
98 void *selector_work_buf; /* Scratch buffer used for selector */
Dimitris Papastamos9fabe242011-09-19 14:34:00 +010099};
100
101struct regcache_ops {
102 const char *name;
103 enum regcache_type type;
104 int (*init)(struct regmap *map);
105 int (*exit)(struct regmap *map);
106 int (*read)(struct regmap *map, unsigned int reg, unsigned int *value);
107 int (*write)(struct regmap *map, unsigned int reg, unsigned int value);
Mark Brownac8d91c2012-02-23 19:31:04 +0000108 int (*sync)(struct regmap *map, unsigned int min, unsigned int max);
Mark Brown93de9122011-07-20 22:35:37 +0100109};
110
Mark Brown8de2f082011-08-10 17:14:41 +0900111bool regmap_writeable(struct regmap *map, unsigned int reg);
112bool regmap_readable(struct regmap *map, unsigned int reg);
113bool regmap_volatile(struct regmap *map, unsigned int reg);
114bool regmap_precious(struct regmap *map, unsigned int reg);
115
Dimitris Papastamos4d2dc092011-09-29 10:39:07 +0100116int _regmap_write(struct regmap *map, unsigned int reg,
117 unsigned int val);
118
Krystian Garbaciak6863ca62012-06-15 11:23:56 +0100119struct regmap_range_node {
120 struct rb_node node;
121
122 unsigned int range_min;
123 unsigned int range_max;
124
125 unsigned int selector_reg;
126 unsigned int selector_mask;
127 int selector_shift;
128
129 unsigned int window_start;
130 unsigned int window_len;
131};
132
Mark Brown31244e32011-07-20 22:56:53 +0100133#ifdef CONFIG_DEBUG_FS
134extern void regmap_debugfs_initcall(void);
Stephen Warrend3c242e2012-04-04 15:48:29 -0600135extern void regmap_debugfs_init(struct regmap *map, const char *name);
Mark Brown31244e32011-07-20 22:56:53 +0100136extern void regmap_debugfs_exit(struct regmap *map);
137#else
Lars-Peter Clausenbbcf61c2011-09-05 22:06:13 +0200138static inline void regmap_debugfs_initcall(void) { }
Stephen Warrenabec95a2012-04-05 23:09:20 -0600139static inline void regmap_debugfs_init(struct regmap *map, const char *name) { }
Lars-Peter Clausenbbcf61c2011-09-05 22:06:13 +0200140static inline void regmap_debugfs_exit(struct regmap *map) { }
Mark Brown31244e32011-07-20 22:56:53 +0100141#endif
142
Dimitris Papastamos9fabe242011-09-19 14:34:00 +0100143/* regcache core declarations */
Lars-Peter Clausene5e3b8a2011-11-16 16:28:16 +0100144int regcache_init(struct regmap *map, const struct regmap_config *config);
Dimitris Papastamos9fabe242011-09-19 14:34:00 +0100145void regcache_exit(struct regmap *map);
146int regcache_read(struct regmap *map,
147 unsigned int reg, unsigned int *value);
148int regcache_write(struct regmap *map,
149 unsigned int reg, unsigned int value);
150int regcache_sync(struct regmap *map);
151
152unsigned int regcache_get_val(const void *base, unsigned int idx,
153 unsigned int word_size);
154bool regcache_set_val(void *base, unsigned int idx,
155 unsigned int val, unsigned int word_size);
156int regcache_lookup_reg(struct regmap *map, unsigned int reg);
Dimitris Papastamos9fabe242011-09-19 14:34:00 +0100157
Dimitris Papastamos28644c802011-09-19 14:34:02 +0100158extern struct regcache_ops regcache_rbtree_ops;
Dimitris Papastamos2cbbb572011-09-19 14:34:03 +0100159extern struct regcache_ops regcache_lzo_ops;
160
Mark Brown93de9122011-07-20 22:35:37 +0100161#endif