blob: 0e819e3cebce6f3b3ebd1d741a55471f85b5bfc9 [file] [log] [blame]
Mark Brownb83a3132011-05-11 19:59:58 +02001#ifndef __LINUX_REGMAP_H
2#define __LINUX_REGMAP_H
3
4/*
5 * Register map access API
6 *
7 * Copyright 2011 Wolfson Microelectronics plc
8 *
9 * Author: Mark Brown <broonie@opensource.wolfsonmicro.com>
10 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License version 2 as
13 * published by the Free Software Foundation.
14 */
15
Mark Brownb83a3132011-05-11 19:59:58 +020016#include <linux/list.h>
Krystian Garbaciak6863ca62012-06-15 11:23:56 +010017#include <linux/rbtree.h>
Mark Brownb83a3132011-05-11 19:59:58 +020018
Paul Gortmakerde477252011-05-26 13:46:22 -040019struct module;
Paul Gortmaker313162d2012-01-30 11:46:54 -050020struct device;
Mark Brown9943fa32011-06-20 19:02:29 +010021struct i2c_client;
Mark Browna676f082011-05-12 11:42:10 +020022struct spi_device;
Mark Brownb83d2ff2012-03-11 11:49:17 +000023struct regmap;
Krystian Garbaciak6863ca62012-06-15 11:23:56 +010024struct regmap_range_cfg;
Mark Brown9943fa32011-06-20 19:02:29 +010025
Dimitris Papastamos9fabe242011-09-19 14:34:00 +010026/* An enum of all the supported cache types */
27enum regcache_type {
28 REGCACHE_NONE,
Dimitris Papastamos28644c802011-09-19 14:34:02 +010029 REGCACHE_RBTREE,
Mark Brown50b776f2011-11-02 15:00:03 +000030 REGCACHE_COMPRESSED
Dimitris Papastamos9fabe242011-09-19 14:34:00 +010031};
32
Mark Browndd898b22011-07-20 22:28:58 +010033/**
Mark Brownbd20eb52011-08-19 18:09:38 +090034 * Default value for a register. We use an array of structs rather
35 * than a simple array as many modern devices have very sparse
36 * register maps.
37 *
38 * @reg: Register address.
39 * @def: Register default value.
40 */
41struct reg_default {
42 unsigned int reg;
43 unsigned int def;
44};
45
Mark Brownb83d2ff2012-03-11 11:49:17 +000046#ifdef CONFIG_REGMAP
47
Stephen Warren141eba22012-05-24 10:47:26 -060048enum regmap_endian {
49 /* Unspecified -> 0 -> Backwards compatible default */
50 REGMAP_ENDIAN_DEFAULT = 0,
51 REGMAP_ENDIAN_BIG,
52 REGMAP_ENDIAN_LITTLE,
53 REGMAP_ENDIAN_NATIVE,
54};
55
Davide Ciminaghi0d4529c2012-10-16 15:56:59 +020056typedef void (*regmap_lock)(void *);
57typedef void (*regmap_unlock)(void *);
58
Mark Brownbd20eb52011-08-19 18:09:38 +090059/**
Mark Browndd898b22011-07-20 22:28:58 +010060 * Configuration for the register map of a device.
61 *
Stephen Warrend3c242e2012-04-04 15:48:29 -060062 * @name: Optional name of the regmap. Useful when a device has multiple
63 * register regions.
64 *
Mark Browndd898b22011-07-20 22:28:58 +010065 * @reg_bits: Number of bits in a register address, mandatory.
Stephen Warrenf01ee602012-04-09 13:40:24 -060066 * @reg_stride: The register address stride. Valid register addresses are a
67 * multiple of this value. If set to 0, a value of 1 will be
68 * used.
Mark Brown82159ba2012-01-18 10:52:25 +000069 * @pad_bits: Number of bits of padding between register and value.
Mark Browndd898b22011-07-20 22:28:58 +010070 * @val_bits: Number of bits in a register value, mandatory.
Mark Brown2e2ae662011-07-20 22:33:39 +010071 *
Mark Brown3566cc92011-08-09 10:23:22 +090072 * @writeable_reg: Optional callback returning true if the register
73 * can be written to.
74 * @readable_reg: Optional callback returning true if the register
75 * can be read from.
76 * @volatile_reg: Optional callback returning true if the register
77 * value can't be cached.
78 * @precious_reg: Optional callback returning true if the rgister
79 * should not be read outside of a call from the driver
80 * (eg, a clear on read interrupt status register).
Davide Ciminaghi0d4529c2012-10-16 15:56:59 +020081 * @lock: Optional lock callback (overrides regmap's default lock
82 * function, based on spinlock or mutex).
83 * @unlock: As above for unlocking.
84 * @lock_arg: this field is passed as the only argument of lock/unlock
85 * functions (ignored in case regular lock/unlock functions
86 * are not overridden).
Mark Brownbd20eb52011-08-19 18:09:38 +090087 *
88 * @max_register: Optional, specifies the maximum valid register index.
89 * @reg_defaults: Power on reset values for registers (for use with
90 * register cache support).
91 * @num_reg_defaults: Number of elements in reg_defaults.
Lars-Peter Clausen6f306442011-09-05 20:46:32 +020092 *
93 * @read_flag_mask: Mask to be set in the top byte of the register when doing
94 * a read.
95 * @write_flag_mask: Mask to be set in the top byte of the register when doing
96 * a write. If both read_flag_mask and write_flag_mask are
97 * empty the regmap_bus default masks are used.
Ashish Jangam2e33caf2012-04-30 23:23:40 +010098 * @use_single_rw: If set, converts the bulk read and write operations into
99 * a series of single read and write operations. This is useful
100 * for device that does not support bulk read and write.
Dimitris Papastamos9fabe242011-09-19 14:34:00 +0100101 *
102 * @cache_type: The actual cache type.
103 * @reg_defaults_raw: Power on reset values for registers (for use with
104 * register cache support).
105 * @num_reg_defaults_raw: Number of elements in reg_defaults_raw.
Stephen Warren141eba22012-05-24 10:47:26 -0600106 * @reg_format_endian: Endianness for formatted register addresses. If this is
107 * DEFAULT, the @reg_format_endian_default value from the
108 * regmap bus is used.
109 * @val_format_endian: Endianness for formatted register values. If this is
110 * DEFAULT, the @reg_format_endian_default value from the
111 * regmap bus is used.
Krystian Garbaciak6863ca62012-06-15 11:23:56 +0100112 *
113 * @ranges: Array of configuration entries for virtual address ranges.
114 * @num_ranges: Number of range configuration entries.
Mark Browndd898b22011-07-20 22:28:58 +0100115 */
Mark Brownb83a3132011-05-11 19:59:58 +0200116struct regmap_config {
Stephen Warrend3c242e2012-04-04 15:48:29 -0600117 const char *name;
118
Mark Brownb83a3132011-05-11 19:59:58 +0200119 int reg_bits;
Stephen Warrenf01ee602012-04-09 13:40:24 -0600120 int reg_stride;
Mark Brown82159ba2012-01-18 10:52:25 +0000121 int pad_bits;
Mark Brownb83a3132011-05-11 19:59:58 +0200122 int val_bits;
Mark Brown2e2ae662011-07-20 22:33:39 +0100123
Mark Brown2e2ae662011-07-20 22:33:39 +0100124 bool (*writeable_reg)(struct device *dev, unsigned int reg);
125 bool (*readable_reg)(struct device *dev, unsigned int reg);
126 bool (*volatile_reg)(struct device *dev, unsigned int reg);
Mark Brown18694882011-08-08 15:40:22 +0900127 bool (*precious_reg)(struct device *dev, unsigned int reg);
Davide Ciminaghi0d4529c2012-10-16 15:56:59 +0200128 regmap_lock lock;
129 regmap_unlock unlock;
130 void *lock_arg;
Mark Brownbd20eb52011-08-19 18:09:38 +0900131
132 unsigned int max_register;
Lars-Peter Clausen720e4612011-11-16 16:28:17 +0100133 const struct reg_default *reg_defaults;
Dimitris Papastamos9fabe242011-09-19 14:34:00 +0100134 unsigned int num_reg_defaults;
135 enum regcache_type cache_type;
136 const void *reg_defaults_raw;
137 unsigned int num_reg_defaults_raw;
Lars-Peter Clausen6f306442011-09-05 20:46:32 +0200138
139 u8 read_flag_mask;
140 u8 write_flag_mask;
Ashish Jangam2e33caf2012-04-30 23:23:40 +0100141
142 bool use_single_rw;
Stephen Warren141eba22012-05-24 10:47:26 -0600143
144 enum regmap_endian reg_format_endian;
145 enum regmap_endian val_format_endian;
Mark Brown38e23192012-07-22 19:26:07 +0100146
Krystian Garbaciak6863ca62012-06-15 11:23:56 +0100147 const struct regmap_range_cfg *ranges;
Mark Browne3549cd2012-10-02 20:17:15 +0100148 unsigned int num_ranges;
Krystian Garbaciak6863ca62012-06-15 11:23:56 +0100149};
150
151/**
152 * Configuration for indirectly accessed or paged registers.
153 * Registers, mapped to this virtual range, are accessed in two steps:
154 * 1. page selector register update;
155 * 2. access through data window registers.
156 *
Mark Brownd058bb42012-10-03 12:40:47 +0100157 * @name: Descriptive name for diagnostics
158 *
Krystian Garbaciak6863ca62012-06-15 11:23:56 +0100159 * @range_min: Address of the lowest register address in virtual range.
160 * @range_max: Address of the highest register in virtual range.
161 *
162 * @page_sel_reg: Register with selector field.
163 * @page_sel_mask: Bit shift for selector value.
164 * @page_sel_shift: Bit mask for selector value.
165 *
166 * @window_start: Address of first (lowest) register in data window.
167 * @window_len: Number of registers in data window.
168 */
169struct regmap_range_cfg {
Mark Brownd058bb42012-10-03 12:40:47 +0100170 const char *name;
171
Krystian Garbaciak6863ca62012-06-15 11:23:56 +0100172 /* Registers of virtual address range */
173 unsigned int range_min;
174 unsigned int range_max;
175
176 /* Page selector for indirect addressing */
177 unsigned int selector_reg;
178 unsigned int selector_mask;
179 int selector_shift;
180
181 /* Data window (per each page) */
182 unsigned int window_start;
183 unsigned int window_len;
Mark Brownb83a3132011-05-11 19:59:58 +0200184};
185
Stephen Warren0135bbc2012-04-04 15:48:30 -0600186typedef int (*regmap_hw_write)(void *context, const void *data,
Mark Brownb83a3132011-05-11 19:59:58 +0200187 size_t count);
Stephen Warren0135bbc2012-04-04 15:48:30 -0600188typedef int (*regmap_hw_gather_write)(void *context,
Mark Brownb83a3132011-05-11 19:59:58 +0200189 const void *reg, size_t reg_len,
190 const void *val, size_t val_len);
Stephen Warren0135bbc2012-04-04 15:48:30 -0600191typedef int (*regmap_hw_read)(void *context,
Mark Brownb83a3132011-05-11 19:59:58 +0200192 const void *reg_buf, size_t reg_size,
193 void *val_buf, size_t val_size);
Stephen Warren0135bbc2012-04-04 15:48:30 -0600194typedef void (*regmap_hw_free_context)(void *context);
Mark Brownb83a3132011-05-11 19:59:58 +0200195
196/**
197 * Description of a hardware bus for the register map infrastructure.
198 *
Stephen Warrenbacdbe02012-04-04 15:48:28 -0600199 * @fast_io: Register IO is fast. Use a spinlock instead of a mutex
Davide Ciminaghi0d4529c2012-10-16 15:56:59 +0200200 * to perform locking. This field is ignored if custom lock/unlock
201 * functions are used (see fields lock/unlock of
202 * struct regmap_config).
Mark Brownb83a3132011-05-11 19:59:58 +0200203 * @write: Write operation.
204 * @gather_write: Write operation with split register/value, return -ENOTSUPP
205 * if not implemented on a given device.
206 * @read: Read operation. Data is returned in the buffer used to transmit
207 * data.
Mark Brownb83a3132011-05-11 19:59:58 +0200208 * @read_flag_mask: Mask to be set in the top byte of the register when doing
209 * a read.
Stephen Warren141eba22012-05-24 10:47:26 -0600210 * @reg_format_endian_default: Default endianness for formatted register
211 * addresses. Used when the regmap_config specifies DEFAULT. If this is
212 * DEFAULT, BIG is assumed.
213 * @val_format_endian_default: Default endianness for formatted register
214 * values. Used when the regmap_config specifies DEFAULT. If this is
215 * DEFAULT, BIG is assumed.
Mark Brownb83a3132011-05-11 19:59:58 +0200216 */
217struct regmap_bus {
Stephen Warrenbacdbe02012-04-04 15:48:28 -0600218 bool fast_io;
Mark Brownb83a3132011-05-11 19:59:58 +0200219 regmap_hw_write write;
220 regmap_hw_gather_write gather_write;
221 regmap_hw_read read;
Stephen Warren0135bbc2012-04-04 15:48:30 -0600222 regmap_hw_free_context free_context;
Mark Brownb83a3132011-05-11 19:59:58 +0200223 u8 read_flag_mask;
Stephen Warren141eba22012-05-24 10:47:26 -0600224 enum regmap_endian reg_format_endian_default;
225 enum regmap_endian val_format_endian_default;
Mark Brownb83a3132011-05-11 19:59:58 +0200226};
227
228struct regmap *regmap_init(struct device *dev,
229 const struct regmap_bus *bus,
Stephen Warren0135bbc2012-04-04 15:48:30 -0600230 void *bus_context,
Mark Brownb83a3132011-05-11 19:59:58 +0200231 const struct regmap_config *config);
Mark Brown9943fa32011-06-20 19:02:29 +0100232struct regmap *regmap_init_i2c(struct i2c_client *i2c,
233 const struct regmap_config *config);
Mark Browna676f082011-05-12 11:42:10 +0200234struct regmap *regmap_init_spi(struct spi_device *dev,
235 const struct regmap_config *config);
Stephen Warren45f5ff812012-04-04 15:48:31 -0600236struct regmap *regmap_init_mmio(struct device *dev,
237 void __iomem *regs,
238 const struct regmap_config *config);
Mark Browna676f082011-05-12 11:42:10 +0200239
Mark Brownc0eb4672012-01-30 19:56:52 +0000240struct regmap *devm_regmap_init(struct device *dev,
241 const struct regmap_bus *bus,
Stephen Warren0135bbc2012-04-04 15:48:30 -0600242 void *bus_context,
Mark Brownc0eb4672012-01-30 19:56:52 +0000243 const struct regmap_config *config);
244struct regmap *devm_regmap_init_i2c(struct i2c_client *i2c,
245 const struct regmap_config *config);
246struct regmap *devm_regmap_init_spi(struct spi_device *dev,
247 const struct regmap_config *config);
Stephen Warren45f5ff812012-04-04 15:48:31 -0600248struct regmap *devm_regmap_init_mmio(struct device *dev,
249 void __iomem *regs,
250 const struct regmap_config *config);
Mark Brownc0eb4672012-01-30 19:56:52 +0000251
Mark Brownb83a3132011-05-11 19:59:58 +0200252void regmap_exit(struct regmap *map);
Mark Brownbf315172011-12-03 17:06:20 +0000253int regmap_reinit_cache(struct regmap *map,
254 const struct regmap_config *config);
Mark Brown72b39f62012-05-08 17:44:40 +0100255struct regmap *dev_get_regmap(struct device *dev, const char *name);
Mark Brownb83a3132011-05-11 19:59:58 +0200256int regmap_write(struct regmap *map, unsigned int reg, unsigned int val);
257int regmap_raw_write(struct regmap *map, unsigned int reg,
258 const void *val, size_t val_len);
Laxman Dewangan8eaeb212012-02-12 19:49:43 +0530259int regmap_bulk_write(struct regmap *map, unsigned int reg, const void *val,
260 size_t val_count);
Mark Brownb83a3132011-05-11 19:59:58 +0200261int regmap_read(struct regmap *map, unsigned int reg, unsigned int *val);
262int regmap_raw_read(struct regmap *map, unsigned int reg,
263 void *val, size_t val_len);
264int regmap_bulk_read(struct regmap *map, unsigned int reg, void *val,
265 size_t val_count);
266int regmap_update_bits(struct regmap *map, unsigned int reg,
267 unsigned int mask, unsigned int val);
Mark Brown018690d2011-11-29 20:10:36 +0000268int regmap_update_bits_check(struct regmap *map, unsigned int reg,
269 unsigned int mask, unsigned int val,
270 bool *change);
Mark Browna6539c32012-02-17 14:20:14 -0800271int regmap_get_val_bytes(struct regmap *map);
Mark Brownb83a3132011-05-11 19:59:58 +0200272
Mark Brown39a58432011-09-19 18:21:49 +0100273int regcache_sync(struct regmap *map);
Mark Brown4d4cfd12012-02-23 20:53:37 +0000274int regcache_sync_region(struct regmap *map, unsigned int min,
275 unsigned int max);
Mark Brown92afb282011-09-19 18:22:14 +0100276void regcache_cache_only(struct regmap *map, bool enable);
Dimitris Papastamos6eb0f5e2011-09-29 14:36:27 +0100277void regcache_cache_bypass(struct regmap *map, bool enable);
Mark Brown8ae0d7e2011-10-26 10:34:22 +0200278void regcache_mark_dirty(struct regmap *map);
Mark Brown92afb282011-09-19 18:22:14 +0100279
Mark Brown22f0d902012-01-21 12:01:14 +0000280int regmap_register_patch(struct regmap *map, const struct reg_default *regs,
281 int num_regs);
282
Mark Brownf8beab22011-10-28 23:50:49 +0200283/**
284 * Description of an IRQ for the generic regmap irq_chip.
285 *
286 * @reg_offset: Offset of the status/mask register within the bank
287 * @mask: Mask used to flag/control the register.
288 */
289struct regmap_irq {
290 unsigned int reg_offset;
291 unsigned int mask;
292};
293
294/**
295 * Description of a generic regmap irq_chip. This is not intended to
296 * handle every possible interrupt controller, but it should handle a
297 * substantial proportion of those that are found in the wild.
298 *
299 * @name: Descriptive name for IRQ controller.
300 *
301 * @status_base: Base status register address.
302 * @mask_base: Base mask register address.
303 * @ack_base: Base ack address. If zero then the chip is clear on read.
Mark Browna43fd502012-06-05 14:34:03 +0100304 * @wake_base: Base address for wake enables. If zero unsupported.
Graeme Gregory022f926a2012-05-14 22:40:43 +0900305 * @irq_reg_stride: Stride to use for chips where registers are not contiguous.
Mark Brown0c00c502012-07-24 15:41:19 +0100306 * @runtime_pm: Hold a runtime PM lock on the device when accessing it.
Mark Brownf8beab22011-10-28 23:50:49 +0200307 *
308 * @num_regs: Number of registers in each control bank.
309 * @irqs: Descriptors for individual IRQs. Interrupt numbers are
310 * assigned based on the index in the array of the interrupt.
311 * @num_irqs: Number of descriptors.
312 */
313struct regmap_irq_chip {
314 const char *name;
315
316 unsigned int status_base;
317 unsigned int mask_base;
318 unsigned int ack_base;
Mark Browna43fd502012-06-05 14:34:03 +0100319 unsigned int wake_base;
Graeme Gregory022f926a2012-05-14 22:40:43 +0900320 unsigned int irq_reg_stride;
Xiaofan Tian36ac9142012-08-30 17:03:35 +0800321 unsigned int mask_invert;
Mark Brown0c00c502012-07-24 15:41:19 +0100322 bool runtime_pm;
Mark Brownf8beab22011-10-28 23:50:49 +0200323
324 int num_regs;
325
326 const struct regmap_irq *irqs;
327 int num_irqs;
328};
329
330struct regmap_irq_chip_data;
331
332int regmap_add_irq_chip(struct regmap *map, int irq, int irq_flags,
Mark Brownb026ddb2012-05-31 21:01:46 +0100333 int irq_base, const struct regmap_irq_chip *chip,
Mark Brownf8beab22011-10-28 23:50:49 +0200334 struct regmap_irq_chip_data **data);
335void regmap_del_irq_chip(int irq, struct regmap_irq_chip_data *data);
Mark Brown209a6002011-12-05 16:10:15 +0000336int regmap_irq_chip_get_base(struct regmap_irq_chip_data *data);
Mark Brown4af8be62012-05-13 10:59:56 +0100337int regmap_irq_get_virq(struct regmap_irq_chip_data *data, int irq);
Mark Brownb83a3132011-05-11 19:59:58 +0200338
Mark Brown9cde5fc2012-02-17 14:49:51 -0800339#else
340
341/*
342 * These stubs should only ever be called by generic code which has
343 * regmap based facilities, if they ever get called at runtime
344 * something is going wrong and something probably needs to select
345 * REGMAP.
346 */
347
348static inline int regmap_write(struct regmap *map, unsigned int reg,
349 unsigned int val)
350{
351 WARN_ONCE(1, "regmap API is disabled");
352 return -EINVAL;
353}
354
355static inline int regmap_raw_write(struct regmap *map, unsigned int reg,
356 const void *val, size_t val_len)
357{
358 WARN_ONCE(1, "regmap API is disabled");
359 return -EINVAL;
360}
361
362static inline int regmap_bulk_write(struct regmap *map, unsigned int reg,
363 const void *val, size_t val_count)
364{
365 WARN_ONCE(1, "regmap API is disabled");
366 return -EINVAL;
367}
368
369static inline int regmap_read(struct regmap *map, unsigned int reg,
370 unsigned int *val)
371{
372 WARN_ONCE(1, "regmap API is disabled");
373 return -EINVAL;
374}
375
376static inline int regmap_raw_read(struct regmap *map, unsigned int reg,
377 void *val, size_t val_len)
378{
379 WARN_ONCE(1, "regmap API is disabled");
380 return -EINVAL;
381}
382
383static inline int regmap_bulk_read(struct regmap *map, unsigned int reg,
384 void *val, size_t val_count)
385{
386 WARN_ONCE(1, "regmap API is disabled");
387 return -EINVAL;
388}
389
390static inline int regmap_update_bits(struct regmap *map, unsigned int reg,
391 unsigned int mask, unsigned int val)
392{
393 WARN_ONCE(1, "regmap API is disabled");
394 return -EINVAL;
395}
396
397static inline int regmap_update_bits_check(struct regmap *map,
398 unsigned int reg,
399 unsigned int mask, unsigned int val,
400 bool *change)
401{
402 WARN_ONCE(1, "regmap API is disabled");
403 return -EINVAL;
404}
405
406static inline int regmap_get_val_bytes(struct regmap *map)
407{
408 WARN_ONCE(1, "regmap API is disabled");
409 return -EINVAL;
410}
411
412static inline int regcache_sync(struct regmap *map)
413{
414 WARN_ONCE(1, "regmap API is disabled");
415 return -EINVAL;
416}
417
Mark Browna313f9f2012-02-23 19:49:43 +0000418static inline int regcache_sync_region(struct regmap *map, unsigned int min,
419 unsigned int max)
420{
421 WARN_ONCE(1, "regmap API is disabled");
422 return -EINVAL;
423}
424
Mark Brown9cde5fc2012-02-17 14:49:51 -0800425static inline void regcache_cache_only(struct regmap *map, bool enable)
426{
427 WARN_ONCE(1, "regmap API is disabled");
428}
429
430static inline void regcache_cache_bypass(struct regmap *map, bool enable)
431{
432 WARN_ONCE(1, "regmap API is disabled");
433}
434
435static inline void regcache_mark_dirty(struct regmap *map)
436{
437 WARN_ONCE(1, "regmap API is disabled");
438}
439
440static inline int regmap_register_patch(struct regmap *map,
441 const struct reg_default *regs,
442 int num_regs)
443{
444 WARN_ONCE(1, "regmap API is disabled");
445 return -EINVAL;
446}
447
Mark Brown72b39f62012-05-08 17:44:40 +0100448static inline struct regmap *dev_get_regmap(struct device *dev,
449 const char *name)
450{
Mark Brown72b39f62012-05-08 17:44:40 +0100451 return NULL;
452}
453
Mark Brown9cde5fc2012-02-17 14:49:51 -0800454#endif
455
Mark Brownb83a3132011-05-11 19:59:58 +0200456#endif