blob: b55fde5d216a911950104c0ae915c3f7199a0600 [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 Brown93de9122011-07-20 22:35:37 +010019
20struct regmap;
Dimitris Papastamos9fabe242011-09-19 14:34:00 +010021struct regcache_ops;
Mark Brown93de9122011-07-20 22:35:37 +010022
Mark Brown5166b7c2012-12-11 01:24:29 +090023struct regmap_debugfs_off_cache {
24 struct list_head list;
25 off_t min;
26 off_t max;
27 unsigned int base_reg;
28};
29
Mark Brown93de9122011-07-20 22:35:37 +010030struct regmap_format {
31 size_t buf_size;
32 size_t reg_bytes;
Mark Brown82159ba2012-01-18 10:52:25 +000033 size_t pad_bytes;
Mark Brown93de9122011-07-20 22:35:37 +010034 size_t val_bytes;
35 void (*format_write)(struct regmap *map,
36 unsigned int reg, unsigned int val);
Marc Reillyd939fb92012-03-16 12:11:43 +110037 void (*format_reg)(void *buf, unsigned int reg, unsigned int shift);
38 void (*format_val)(void *buf, unsigned int val, unsigned int shift);
Mark Brown93de9122011-07-20 22:35:37 +010039 unsigned int (*parse_val)(void *buf);
40};
41
42struct regmap {
Stephen Warrenbacdbe02012-04-04 15:48:28 -060043 struct mutex mutex;
44 spinlock_t spinlock;
45 regmap_lock lock;
46 regmap_unlock unlock;
Davide Ciminaghi0d4529c2012-10-16 15:56:59 +020047 void *lock_arg; /* This is passed to lock/unlock functions */
Mark Brown93de9122011-07-20 22:35:37 +010048
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;
Stephen Warren0135bbc2012-04-04 15:48:30 -060053 void *bus_context;
Mark Brown72b39f62012-05-08 17:44:40 +010054 const char *name;
Mark Brown93de9122011-07-20 22:35:37 +010055
Mark Brown31244e32011-07-20 22:56:53 +010056#ifdef CONFIG_DEBUG_FS
57 struct dentry *debugfs;
Stephen Warrend3c242e2012-04-04 15:48:29 -060058 const char *debugfs_name;
Mark Browncbc19382012-12-06 13:29:05 +090059
60 unsigned int debugfs_reg_len;
61 unsigned int debugfs_val_len;
62 unsigned int debugfs_tot_len;
Mark Brown5166b7c2012-12-11 01:24:29 +090063
64 struct list_head debugfs_off_cache;
Mark Brown31244e32011-07-20 22:56:53 +010065#endif
66
Mark Brown93de9122011-07-20 22:35:37 +010067 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);
Mark Brown2efe1642011-08-08 15:41:46 +090071 bool (*precious_reg)(struct device *dev, unsigned int reg);
Davide Ciminaghi76aad392012-11-20 15:20:30 +010072 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;
Lars-Peter Clausen6f306442011-09-05 20:46:32 +020076
Andrey Smirnovad278402013-01-12 12:54:12 -080077 int (*reg_read)(void *context, unsigned int reg, unsigned int *val);
Andrey Smirnov07c320d2013-01-12 12:54:13 -080078 int (*reg_write)(void *context, unsigned int reg, unsigned int val);
Andrey Smirnovad278402013-01-12 12:54:12 -080079
Andrey Smirnovd2a58842013-01-27 10:49:05 -080080 bool defer_caching;
81
Lars-Peter Clausen6f306442011-09-05 20:46:32 +020082 u8 read_flag_mask;
83 u8 write_flag_mask;
Dimitris Papastamos9fabe242011-09-19 14:34:00 +010084
Marc Reillyd939fb92012-03-16 12:11:43 +110085 /* number of bits to (left) shift the reg value when formatting*/
86 int reg_shift;
Stephen Warrenf01ee602012-04-09 13:40:24 -060087 int reg_stride;
Marc Reillyd939fb92012-03-16 12:11:43 +110088
Dimitris Papastamos9fabe242011-09-19 14:34:00 +010089 /* regcache specific members */
90 const struct regcache_ops *cache_ops;
91 enum regcache_type cache_type;
92
93 /* number of bytes in reg_defaults_raw */
94 unsigned int cache_size_raw;
95 /* number of bytes per word in reg_defaults_raw */
96 unsigned int cache_word_size;
97 /* number of entries in reg_defaults */
98 unsigned int num_reg_defaults;
99 /* number of entries in reg_defaults_raw */
100 unsigned int num_reg_defaults_raw;
101
102 /* if set, only the cache is modified not the HW */
Mark Brown847fb6f2012-02-06 18:01:35 +0000103 u32 cache_only;
Dimitris Papastamos9fabe242011-09-19 14:34:00 +0100104 /* if set, only the HW is modified not the cache */
Mark Brown847fb6f2012-02-06 18:01:35 +0000105 u32 cache_bypass;
Dimitris Papastamos9fabe242011-09-19 14:34:00 +0100106 /* if set, remember to free reg_defaults_raw */
Mark Brown847fb6f2012-02-06 18:01:35 +0000107 bool cache_free;
Dimitris Papastamos9fabe242011-09-19 14:34:00 +0100108
109 struct reg_default *reg_defaults;
110 const void *reg_defaults_raw;
111 void *cache;
Mark Brown847fb6f2012-02-06 18:01:35 +0000112 u32 cache_dirty;
Mark Brown22f0d902012-01-21 12:01:14 +0000113
114 struct reg_default *patch;
115 int patch_regs;
Ashish Jangam2e33caf2012-04-30 23:23:40 +0100116
117 /* if set, converts bulk rw to single rw */
118 bool use_single_rw;
Krystian Garbaciak6863ca62012-06-15 11:23:56 +0100119
120 struct rb_root range_tree;
121 void *selector_work_buf; /* Scratch buffer used for selector */
Dimitris Papastamos9fabe242011-09-19 14:34:00 +0100122};
123
124struct regcache_ops {
125 const char *name;
126 enum regcache_type type;
127 int (*init)(struct regmap *map);
128 int (*exit)(struct regmap *map);
129 int (*read)(struct regmap *map, unsigned int reg, unsigned int *value);
130 int (*write)(struct regmap *map, unsigned int reg, unsigned int value);
Mark Brownac8d91c2012-02-23 19:31:04 +0000131 int (*sync)(struct regmap *map, unsigned int min, unsigned int max);
Mark Brown93de9122011-07-20 22:35:37 +0100132};
133
Mark Brown8de2f082011-08-10 17:14:41 +0900134bool regmap_writeable(struct regmap *map, unsigned int reg);
135bool regmap_readable(struct regmap *map, unsigned int reg);
136bool regmap_volatile(struct regmap *map, unsigned int reg);
137bool regmap_precious(struct regmap *map, unsigned int reg);
138
Dimitris Papastamos4d2dc092011-09-29 10:39:07 +0100139int _regmap_write(struct regmap *map, unsigned int reg,
140 unsigned int val);
141
Krystian Garbaciak6863ca62012-06-15 11:23:56 +0100142struct regmap_range_node {
143 struct rb_node node;
Mark Brownd058bb42012-10-03 12:40:47 +0100144 const char *name;
Mark Brown4b020b32012-10-03 13:13:16 +0100145 struct regmap *map;
Krystian Garbaciak6863ca62012-06-15 11:23:56 +0100146
147 unsigned int range_min;
148 unsigned int range_max;
149
150 unsigned int selector_reg;
151 unsigned int selector_mask;
152 int selector_shift;
153
154 unsigned int window_start;
155 unsigned int window_len;
156};
157
Mark Brown31244e32011-07-20 22:56:53 +0100158#ifdef CONFIG_DEBUG_FS
159extern void regmap_debugfs_initcall(void);
Stephen Warrend3c242e2012-04-04 15:48:29 -0600160extern void regmap_debugfs_init(struct regmap *map, const char *name);
Mark Brown31244e32011-07-20 22:56:53 +0100161extern void regmap_debugfs_exit(struct regmap *map);
162#else
Lars-Peter Clausenbbcf61c2011-09-05 22:06:13 +0200163static inline void regmap_debugfs_initcall(void) { }
Stephen Warrenabec95a2012-04-05 23:09:20 -0600164static inline void regmap_debugfs_init(struct regmap *map, const char *name) { }
Lars-Peter Clausenbbcf61c2011-09-05 22:06:13 +0200165static inline void regmap_debugfs_exit(struct regmap *map) { }
Mark Brown31244e32011-07-20 22:56:53 +0100166#endif
167
Dimitris Papastamos9fabe242011-09-19 14:34:00 +0100168/* regcache core declarations */
Lars-Peter Clausene5e3b8a2011-11-16 16:28:16 +0100169int regcache_init(struct regmap *map, const struct regmap_config *config);
Dimitris Papastamos9fabe242011-09-19 14:34:00 +0100170void regcache_exit(struct regmap *map);
171int regcache_read(struct regmap *map,
172 unsigned int reg, unsigned int *value);
173int regcache_write(struct regmap *map,
174 unsigned int reg, unsigned int value);
175int regcache_sync(struct regmap *map);
176
177unsigned int regcache_get_val(const void *base, unsigned int idx,
178 unsigned int word_size);
179bool regcache_set_val(void *base, unsigned int idx,
180 unsigned int val, unsigned int word_size);
181int regcache_lookup_reg(struct regmap *map, unsigned int reg);
Dimitris Papastamos9fabe242011-09-19 14:34:00 +0100182
Dimitris Papastamos28644c802011-09-19 14:34:02 +0100183extern struct regcache_ops regcache_rbtree_ops;
Dimitris Papastamos2cbbb572011-09-19 14:34:03 +0100184extern struct regcache_ops regcache_lzo_ops;
185
Mark Brown93de9122011-07-20 22:35:37 +0100186#endif