| Mark Brown | 93de912 | 2011-07-20 22:35:37 +0100 | [diff] [blame] | 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> | 
| Mark Brown | 31244e3 | 2011-07-20 22:56:53 +0100 | [diff] [blame] | 17 | #include <linux/fs.h> | 
| Mark Brown | 93de912 | 2011-07-20 22:35:37 +0100 | [diff] [blame] | 18 |  | 
|  | 19 | struct regmap; | 
| Dimitris Papastamos | 9fabe24 | 2011-09-19 14:34:00 +0100 | [diff] [blame] | 20 | struct regcache_ops; | 
| Mark Brown | 93de912 | 2011-07-20 22:35:37 +0100 | [diff] [blame] | 21 |  | 
|  | 22 | struct regmap_format { | 
|  | 23 | size_t buf_size; | 
|  | 24 | size_t reg_bytes; | 
|  | 25 | size_t val_bytes; | 
|  | 26 | void (*format_write)(struct regmap *map, | 
|  | 27 | unsigned int reg, unsigned int val); | 
|  | 28 | void (*format_reg)(void *buf, unsigned int reg); | 
|  | 29 | void (*format_val)(void *buf, unsigned int val); | 
|  | 30 | unsigned int (*parse_val)(void *buf); | 
|  | 31 | }; | 
|  | 32 |  | 
|  | 33 | struct regmap { | 
|  | 34 | struct mutex lock; | 
|  | 35 |  | 
|  | 36 | struct device *dev; /* Device we do I/O on */ | 
|  | 37 | void *work_buf;     /* Scratch buffer used to format I/O */ | 
|  | 38 | struct regmap_format format;  /* Buffer format */ | 
|  | 39 | const struct regmap_bus *bus; | 
|  | 40 |  | 
| Mark Brown | 31244e3 | 2011-07-20 22:56:53 +0100 | [diff] [blame] | 41 | #ifdef CONFIG_DEBUG_FS | 
|  | 42 | struct dentry *debugfs; | 
|  | 43 | #endif | 
|  | 44 |  | 
| Mark Brown | 93de912 | 2011-07-20 22:35:37 +0100 | [diff] [blame] | 45 | unsigned int max_register; | 
|  | 46 | bool (*writeable_reg)(struct device *dev, unsigned int reg); | 
|  | 47 | bool (*readable_reg)(struct device *dev, unsigned int reg); | 
|  | 48 | bool (*volatile_reg)(struct device *dev, unsigned int reg); | 
| Mark Brown | 2efe164 | 2011-08-08 15:41:46 +0900 | [diff] [blame] | 49 | bool (*precious_reg)(struct device *dev, unsigned int reg); | 
| Lars-Peter Clausen | 6f30644 | 2011-09-05 20:46:32 +0200 | [diff] [blame] | 50 |  | 
|  | 51 | u8 read_flag_mask; | 
|  | 52 | u8 write_flag_mask; | 
| Dimitris Papastamos | 9fabe24 | 2011-09-19 14:34:00 +0100 | [diff] [blame] | 53 |  | 
|  | 54 | /* regcache specific members */ | 
|  | 55 | const struct regcache_ops *cache_ops; | 
|  | 56 | enum regcache_type cache_type; | 
|  | 57 |  | 
|  | 58 | /* number of bytes in reg_defaults_raw */ | 
|  | 59 | unsigned int cache_size_raw; | 
|  | 60 | /* number of bytes per word in reg_defaults_raw */ | 
|  | 61 | unsigned int cache_word_size; | 
|  | 62 | /* number of entries in reg_defaults */ | 
|  | 63 | unsigned int num_reg_defaults; | 
|  | 64 | /* number of entries in reg_defaults_raw */ | 
|  | 65 | unsigned int num_reg_defaults_raw; | 
|  | 66 |  | 
|  | 67 | /* if set, only the cache is modified not the HW */ | 
|  | 68 | unsigned int cache_only:1; | 
|  | 69 | /* if set, only the HW is modified not the cache */ | 
|  | 70 | unsigned int cache_bypass:1; | 
|  | 71 | /* if set, remember to free reg_defaults_raw */ | 
|  | 72 | unsigned int cache_free:1; | 
|  | 73 |  | 
|  | 74 | struct reg_default *reg_defaults; | 
|  | 75 | const void *reg_defaults_raw; | 
|  | 76 | void *cache; | 
|  | 77 | }; | 
|  | 78 |  | 
|  | 79 | struct regcache_ops { | 
|  | 80 | const char *name; | 
|  | 81 | enum regcache_type type; | 
|  | 82 | int (*init)(struct regmap *map); | 
|  | 83 | int (*exit)(struct regmap *map); | 
|  | 84 | int (*read)(struct regmap *map, unsigned int reg, unsigned int *value); | 
|  | 85 | int (*write)(struct regmap *map, unsigned int reg, unsigned int value); | 
|  | 86 | int (*sync)(struct regmap *map); | 
| Mark Brown | 93de912 | 2011-07-20 22:35:37 +0100 | [diff] [blame] | 87 | }; | 
|  | 88 |  | 
| Mark Brown | 8de2f08 | 2011-08-10 17:14:41 +0900 | [diff] [blame] | 89 | bool regmap_writeable(struct regmap *map, unsigned int reg); | 
|  | 90 | bool regmap_readable(struct regmap *map, unsigned int reg); | 
|  | 91 | bool regmap_volatile(struct regmap *map, unsigned int reg); | 
|  | 92 | bool regmap_precious(struct regmap *map, unsigned int reg); | 
|  | 93 |  | 
| Dimitris Papastamos | 4d2dc09 | 2011-09-29 10:39:07 +0100 | [diff] [blame] | 94 | int _regmap_write(struct regmap *map, unsigned int reg, | 
|  | 95 | unsigned int val); | 
|  | 96 |  | 
| Mark Brown | 31244e3 | 2011-07-20 22:56:53 +0100 | [diff] [blame] | 97 | #ifdef CONFIG_DEBUG_FS | 
|  | 98 | extern void regmap_debugfs_initcall(void); | 
|  | 99 | extern void regmap_debugfs_init(struct regmap *map); | 
|  | 100 | extern void regmap_debugfs_exit(struct regmap *map); | 
|  | 101 | #else | 
| Lars-Peter Clausen | bbcf61c | 2011-09-05 22:06:13 +0200 | [diff] [blame] | 102 | static inline void regmap_debugfs_initcall(void) { } | 
|  | 103 | static inline void regmap_debugfs_init(struct regmap *map) { } | 
|  | 104 | static inline void regmap_debugfs_exit(struct regmap *map) { } | 
| Mark Brown | 31244e3 | 2011-07-20 22:56:53 +0100 | [diff] [blame] | 105 | #endif | 
|  | 106 |  | 
| Dimitris Papastamos | 9fabe24 | 2011-09-19 14:34:00 +0100 | [diff] [blame] | 107 | /* regcache core declarations */ | 
|  | 108 | int regcache_init(struct regmap *map); | 
|  | 109 | void regcache_exit(struct regmap *map); | 
|  | 110 | int regcache_read(struct regmap *map, | 
|  | 111 | unsigned int reg, unsigned int *value); | 
|  | 112 | int regcache_write(struct regmap *map, | 
|  | 113 | unsigned int reg, unsigned int value); | 
|  | 114 | int regcache_sync(struct regmap *map); | 
|  | 115 |  | 
|  | 116 | unsigned int regcache_get_val(const void *base, unsigned int idx, | 
|  | 117 | unsigned int word_size); | 
|  | 118 | bool regcache_set_val(void *base, unsigned int idx, | 
|  | 119 | unsigned int val, unsigned int word_size); | 
|  | 120 | int regcache_lookup_reg(struct regmap *map, unsigned int reg); | 
|  | 121 | int regcache_insert_reg(struct regmap *map, unsigned int reg, | 
|  | 122 | unsigned int val); | 
|  | 123 |  | 
| Dimitris Papastamos | 195af65 | 2011-09-19 14:34:01 +0100 | [diff] [blame] | 124 | extern struct regcache_ops regcache_indexed_ops; | 
| Dimitris Papastamos | 28644c8 | 2011-09-19 14:34:02 +0100 | [diff] [blame] | 125 | extern struct regcache_ops regcache_rbtree_ops; | 
| Dimitris Papastamos | 2cbbb57 | 2011-09-19 14:34:03 +0100 | [diff] [blame] | 126 | extern struct regcache_ops regcache_lzo_ops; | 
|  | 127 |  | 
| Mark Brown | 93de912 | 2011-07-20 22:35:37 +0100 | [diff] [blame] | 128 | #endif |