blob: 6beef6691c4743a2168e234696f60e549ac319f3 [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);
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
Mark Brown31244e32011-07-20 22:56:53 +010042#ifdef CONFIG_DEBUG_FS
43 struct dentry *debugfs;
Stephen Warrend3c242e2012-04-04 15:48:29 -060044 const char *debugfs_name;
Mark Brown31244e32011-07-20 22:56:53 +010045#endif
46
Mark Brown93de9122011-07-20 22:35:37 +010047 unsigned int max_register;
48 bool (*writeable_reg)(struct device *dev, unsigned int reg);
49 bool (*readable_reg)(struct device *dev, unsigned int reg);
50 bool (*volatile_reg)(struct device *dev, unsigned int reg);
Mark Brown2efe1642011-08-08 15:41:46 +090051 bool (*precious_reg)(struct device *dev, unsigned int reg);
Lars-Peter Clausen6f306442011-09-05 20:46:32 +020052
53 u8 read_flag_mask;
54 u8 write_flag_mask;
Dimitris Papastamos9fabe242011-09-19 14:34:00 +010055
56 /* regcache specific members */
57 const struct regcache_ops *cache_ops;
58 enum regcache_type cache_type;
59
60 /* number of bytes in reg_defaults_raw */
61 unsigned int cache_size_raw;
62 /* number of bytes per word in reg_defaults_raw */
63 unsigned int cache_word_size;
64 /* number of entries in reg_defaults */
65 unsigned int num_reg_defaults;
66 /* number of entries in reg_defaults_raw */
67 unsigned int num_reg_defaults_raw;
68
69 /* if set, only the cache is modified not the HW */
Mark Brown847fb6f2012-02-06 18:01:35 +000070 u32 cache_only;
Dimitris Papastamos9fabe242011-09-19 14:34:00 +010071 /* if set, only the HW is modified not the cache */
Mark Brown847fb6f2012-02-06 18:01:35 +000072 u32 cache_bypass;
Dimitris Papastamos9fabe242011-09-19 14:34:00 +010073 /* if set, remember to free reg_defaults_raw */
Mark Brown847fb6f2012-02-06 18:01:35 +000074 bool cache_free;
Dimitris Papastamos9fabe242011-09-19 14:34:00 +010075
76 struct reg_default *reg_defaults;
77 const void *reg_defaults_raw;
78 void *cache;
Mark Brown847fb6f2012-02-06 18:01:35 +000079 u32 cache_dirty;
Mark Brown22f0d902012-01-21 12:01:14 +000080
81 struct reg_default *patch;
82 int patch_regs;
Dimitris Papastamos9fabe242011-09-19 14:34:00 +010083};
84
85struct regcache_ops {
86 const char *name;
87 enum regcache_type type;
88 int (*init)(struct regmap *map);
89 int (*exit)(struct regmap *map);
90 int (*read)(struct regmap *map, unsigned int reg, unsigned int *value);
91 int (*write)(struct regmap *map, unsigned int reg, unsigned int value);
Mark Brownac8d91c2012-02-23 19:31:04 +000092 int (*sync)(struct regmap *map, unsigned int min, unsigned int max);
Mark Brown93de9122011-07-20 22:35:37 +010093};
94
Mark Brown8de2f082011-08-10 17:14:41 +090095bool regmap_writeable(struct regmap *map, unsigned int reg);
96bool regmap_readable(struct regmap *map, unsigned int reg);
97bool regmap_volatile(struct regmap *map, unsigned int reg);
98bool regmap_precious(struct regmap *map, unsigned int reg);
99
Dimitris Papastamos4d2dc092011-09-29 10:39:07 +0100100int _regmap_write(struct regmap *map, unsigned int reg,
101 unsigned int val);
102
Mark Brown31244e32011-07-20 22:56:53 +0100103#ifdef CONFIG_DEBUG_FS
104extern void regmap_debugfs_initcall(void);
Stephen Warrend3c242e2012-04-04 15:48:29 -0600105extern void regmap_debugfs_init(struct regmap *map, const char *name);
Mark Brown31244e32011-07-20 22:56:53 +0100106extern void regmap_debugfs_exit(struct regmap *map);
107#else
Lars-Peter Clausenbbcf61c2011-09-05 22:06:13 +0200108static inline void regmap_debugfs_initcall(void) { }
109static inline void regmap_debugfs_init(struct regmap *map) { }
110static inline void regmap_debugfs_exit(struct regmap *map) { }
Mark Brown31244e32011-07-20 22:56:53 +0100111#endif
112
Dimitris Papastamos9fabe242011-09-19 14:34:00 +0100113/* regcache core declarations */
Lars-Peter Clausene5e3b8a2011-11-16 16:28:16 +0100114int regcache_init(struct regmap *map, const struct regmap_config *config);
Dimitris Papastamos9fabe242011-09-19 14:34:00 +0100115void regcache_exit(struct regmap *map);
116int regcache_read(struct regmap *map,
117 unsigned int reg, unsigned int *value);
118int regcache_write(struct regmap *map,
119 unsigned int reg, unsigned int value);
120int regcache_sync(struct regmap *map);
121
122unsigned int regcache_get_val(const void *base, unsigned int idx,
123 unsigned int word_size);
124bool regcache_set_val(void *base, unsigned int idx,
125 unsigned int val, unsigned int word_size);
126int regcache_lookup_reg(struct regmap *map, unsigned int reg);
Dimitris Papastamos9fabe242011-09-19 14:34:00 +0100127
Dimitris Papastamos28644c802011-09-19 14:34:02 +0100128extern struct regcache_ops regcache_rbtree_ops;
Dimitris Papastamos2cbbb572011-09-19 14:34:03 +0100129extern struct regcache_ops regcache_lzo_ops;
130
Mark Brown93de9122011-07-20 22:35:37 +0100131#endif