internal.h 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. /*
  3. * Register map access API internal header
  4. *
  5. * Copyright 2011 Wolfson Microelectronics plc
  6. *
  7. * Author: Mark Brown <[email protected]>
  8. */
  9. #ifndef _REGMAP_INTERNAL_H
  10. #define _REGMAP_INTERNAL_H
  11. #include <linux/device.h>
  12. #include <linux/regmap.h>
  13. #include <linux/fs.h>
  14. #include <linux/list.h>
  15. #include <linux/wait.h>
  16. struct regmap;
  17. struct regcache_ops;
  18. struct regmap_debugfs_off_cache {
  19. struct list_head list;
  20. off_t min;
  21. off_t max;
  22. unsigned int base_reg;
  23. unsigned int max_reg;
  24. };
  25. struct regmap_format {
  26. size_t buf_size;
  27. size_t reg_bytes;
  28. size_t pad_bytes;
  29. size_t val_bytes;
  30. void (*format_write)(struct regmap *map,
  31. unsigned int reg, unsigned int val);
  32. void (*format_reg)(void *buf, unsigned int reg, unsigned int shift);
  33. void (*format_val)(void *buf, unsigned int val, unsigned int shift);
  34. unsigned int (*parse_val)(const void *buf);
  35. void (*parse_inplace)(void *buf);
  36. };
  37. struct regmap_async {
  38. struct list_head list;
  39. struct regmap *map;
  40. void *work_buf;
  41. };
  42. struct regmap {
  43. union {
  44. struct mutex mutex;
  45. struct {
  46. spinlock_t spinlock;
  47. unsigned long spinlock_flags;
  48. };
  49. };
  50. regmap_lock lock;
  51. regmap_unlock unlock;
  52. void *lock_arg; /* This is passed to lock/unlock functions */
  53. gfp_t alloc_flags;
  54. struct device *dev; /* Device we do I/O on */
  55. void *work_buf; /* Scratch buffer used to format I/O */
  56. struct regmap_format format; /* Buffer format */
  57. const struct regmap_bus *bus;
  58. void *bus_context;
  59. const char *name;
  60. bool async;
  61. spinlock_t async_lock;
  62. wait_queue_head_t async_waitq;
  63. struct list_head async_list;
  64. struct list_head async_free;
  65. int async_ret;
  66. #ifdef CONFIG_DEBUG_FS
  67. bool debugfs_disable;
  68. struct dentry *debugfs;
  69. const char *debugfs_name;
  70. unsigned int debugfs_reg_len;
  71. unsigned int debugfs_val_len;
  72. unsigned int debugfs_tot_len;
  73. struct list_head debugfs_off_cache;
  74. struct mutex cache_lock;
  75. #endif
  76. unsigned int max_register;
  77. bool (*writeable_reg)(struct device *dev, unsigned int reg);
  78. bool (*readable_reg)(struct device *dev, unsigned int reg);
  79. bool (*volatile_reg)(struct device *dev, unsigned int reg);
  80. bool (*precious_reg)(struct device *dev, unsigned int reg);
  81. bool (*writeable_noinc_reg)(struct device *dev, unsigned int reg);
  82. bool (*readable_noinc_reg)(struct device *dev, unsigned int reg);
  83. const struct regmap_access_table *wr_table;
  84. const struct regmap_access_table *rd_table;
  85. const struct regmap_access_table *volatile_table;
  86. const struct regmap_access_table *precious_table;
  87. const struct regmap_access_table *wr_noinc_table;
  88. const struct regmap_access_table *rd_noinc_table;
  89. int (*reg_read)(void *context, unsigned int reg, unsigned int *val);
  90. int (*reg_write)(void *context, unsigned int reg, unsigned int val);
  91. int (*reg_update_bits)(void *context, unsigned int reg,
  92. unsigned int mask, unsigned int val);
  93. bool defer_caching;
  94. unsigned long read_flag_mask;
  95. unsigned long write_flag_mask;
  96. /* number of bits to (left) shift the reg value when formatting*/
  97. int reg_shift;
  98. int reg_stride;
  99. int reg_stride_order;
  100. /* regcache specific members */
  101. const struct regcache_ops *cache_ops;
  102. enum regcache_type cache_type;
  103. /* number of bytes in reg_defaults_raw */
  104. unsigned int cache_size_raw;
  105. /* number of bytes per word in reg_defaults_raw */
  106. unsigned int cache_word_size;
  107. /* number of entries in reg_defaults */
  108. unsigned int num_reg_defaults;
  109. /* number of entries in reg_defaults_raw */
  110. unsigned int num_reg_defaults_raw;
  111. /* if set, only the cache is modified not the HW */
  112. bool cache_only;
  113. /* if set, only the HW is modified not the cache */
  114. bool cache_bypass;
  115. /* if set, remember to free reg_defaults_raw */
  116. bool cache_free;
  117. struct reg_default *reg_defaults;
  118. const void *reg_defaults_raw;
  119. void *cache;
  120. /* if set, the cache contains newer data than the HW */
  121. bool cache_dirty;
  122. /* if set, the HW registers are known to match map->reg_defaults */
  123. bool no_sync_defaults;
  124. struct reg_sequence *patch;
  125. int patch_regs;
  126. /* if set, converts bulk read to single read */
  127. bool use_single_read;
  128. /* if set, converts bulk write to single write */
  129. bool use_single_write;
  130. /* if set, the device supports multi write mode */
  131. bool can_multi_write;
  132. /* if set, raw reads/writes are limited to this size */
  133. size_t max_raw_read;
  134. size_t max_raw_write;
  135. struct rb_root range_tree;
  136. void *selector_work_buf; /* Scratch buffer used for selector */
  137. struct hwspinlock *hwlock;
  138. /* if set, the regmap core can sleep */
  139. bool can_sleep;
  140. };
  141. struct regcache_ops {
  142. const char *name;
  143. enum regcache_type type;
  144. int (*init)(struct regmap *map);
  145. int (*exit)(struct regmap *map);
  146. #ifdef CONFIG_DEBUG_FS
  147. void (*debugfs_init)(struct regmap *map);
  148. #endif
  149. int (*read)(struct regmap *map, unsigned int reg, unsigned int *value);
  150. int (*write)(struct regmap *map, unsigned int reg, unsigned int value);
  151. int (*sync)(struct regmap *map, unsigned int min, unsigned int max);
  152. int (*drop)(struct regmap *map, unsigned int min, unsigned int max);
  153. };
  154. bool regmap_cached(struct regmap *map, unsigned int reg);
  155. bool regmap_writeable(struct regmap *map, unsigned int reg);
  156. bool regmap_readable(struct regmap *map, unsigned int reg);
  157. bool regmap_volatile(struct regmap *map, unsigned int reg);
  158. bool regmap_precious(struct regmap *map, unsigned int reg);
  159. bool regmap_writeable_noinc(struct regmap *map, unsigned int reg);
  160. bool regmap_readable_noinc(struct regmap *map, unsigned int reg);
  161. int _regmap_write(struct regmap *map, unsigned int reg,
  162. unsigned int val);
  163. struct regmap_range_node {
  164. struct rb_node node;
  165. const char *name;
  166. struct regmap *map;
  167. unsigned int range_min;
  168. unsigned int range_max;
  169. unsigned int selector_reg;
  170. unsigned int selector_mask;
  171. int selector_shift;
  172. unsigned int window_start;
  173. unsigned int window_len;
  174. };
  175. struct regmap_field {
  176. struct regmap *regmap;
  177. unsigned int mask;
  178. /* lsb */
  179. unsigned int shift;
  180. unsigned int reg;
  181. unsigned int id_size;
  182. unsigned int id_offset;
  183. };
  184. #ifdef CONFIG_DEBUG_FS
  185. extern void regmap_debugfs_initcall(void);
  186. extern void regmap_debugfs_init(struct regmap *map);
  187. extern void regmap_debugfs_exit(struct regmap *map);
  188. static inline void regmap_debugfs_disable(struct regmap *map)
  189. {
  190. map->debugfs_disable = true;
  191. }
  192. #else
  193. static inline void regmap_debugfs_initcall(void) { }
  194. static inline void regmap_debugfs_init(struct regmap *map) { }
  195. static inline void regmap_debugfs_exit(struct regmap *map) { }
  196. static inline void regmap_debugfs_disable(struct regmap *map) { }
  197. #endif
  198. /* regcache core declarations */
  199. int regcache_init(struct regmap *map, const struct regmap_config *config);
  200. void regcache_exit(struct regmap *map);
  201. int regcache_read(struct regmap *map,
  202. unsigned int reg, unsigned int *value);
  203. int regcache_write(struct regmap *map,
  204. unsigned int reg, unsigned int value);
  205. int regcache_sync(struct regmap *map);
  206. int regcache_sync_block(struct regmap *map, void *block,
  207. unsigned long *cache_present,
  208. unsigned int block_base, unsigned int start,
  209. unsigned int end);
  210. static inline const void *regcache_get_val_addr(struct regmap *map,
  211. const void *base,
  212. unsigned int idx)
  213. {
  214. return base + (map->cache_word_size * idx);
  215. }
  216. unsigned int regcache_get_val(struct regmap *map, const void *base,
  217. unsigned int idx);
  218. bool regcache_set_val(struct regmap *map, void *base, unsigned int idx,
  219. unsigned int val);
  220. int regcache_lookup_reg(struct regmap *map, unsigned int reg);
  221. int _regmap_raw_write(struct regmap *map, unsigned int reg,
  222. const void *val, size_t val_len, bool noinc);
  223. void regmap_async_complete_cb(struct regmap_async *async, int ret);
  224. enum regmap_endian regmap_get_val_endian(struct device *dev,
  225. const struct regmap_bus *bus,
  226. const struct regmap_config *config);
  227. extern struct regcache_ops regcache_rbtree_ops;
  228. extern struct regcache_ops regcache_lzo_ops;
  229. extern struct regcache_ops regcache_flat_ops;
  230. static inline const char *regmap_name(const struct regmap *map)
  231. {
  232. if (map->dev)
  233. return dev_name(map->dev);
  234. return map->name;
  235. }
  236. static inline unsigned int regmap_get_offset(const struct regmap *map,
  237. unsigned int index)
  238. {
  239. if (map->reg_stride_order >= 0)
  240. return index << map->reg_stride_order;
  241. else
  242. return index * map->reg_stride;
  243. }
  244. static inline unsigned int regcache_get_index_by_order(const struct regmap *map,
  245. unsigned int reg)
  246. {
  247. return reg >> map->reg_stride_order;
  248. }
  249. #endif