blob: b9e99799965d1e3858e6efbe41b5e436ad08c9c0 [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 Brown90f790d2012-08-20 21:45:05 +010022struct irq_domain;
Mark Browna676f082011-05-12 11:42:10 +020023struct spi_device;
Mark Brownb83d2ff2012-03-11 11:49:17 +000024struct regmap;
Krystian Garbaciak6863ca62012-06-15 11:23:56 +010025struct regmap_range_cfg;
Mark Brown9943fa32011-06-20 19:02:29 +010026
Dimitris Papastamos9fabe242011-09-19 14:34:00 +010027/* An enum of all the supported cache types */
28enum regcache_type {
29 REGCACHE_NONE,
Dimitris Papastamos28644c802011-09-19 14:34:02 +010030 REGCACHE_RBTREE,
Mark Brown50b776f2011-11-02 15:00:03 +000031 REGCACHE_COMPRESSED
Dimitris Papastamos9fabe242011-09-19 14:34:00 +010032};
33
Mark Browndd898b22011-07-20 22:28:58 +010034/**
Mark Brownbd20eb52011-08-19 18:09:38 +090035 * Default value for a register. We use an array of structs rather
36 * than a simple array as many modern devices have very sparse
37 * register maps.
38 *
39 * @reg: Register address.
40 * @def: Register default value.
41 */
42struct reg_default {
43 unsigned int reg;
44 unsigned int def;
45};
46
Mark Brownb83d2ff2012-03-11 11:49:17 +000047#ifdef CONFIG_REGMAP
48
Stephen Warren141eba22012-05-24 10:47:26 -060049enum regmap_endian {
50 /* Unspecified -> 0 -> Backwards compatible default */
51 REGMAP_ENDIAN_DEFAULT = 0,
52 REGMAP_ENDIAN_BIG,
53 REGMAP_ENDIAN_LITTLE,
54 REGMAP_ENDIAN_NATIVE,
55};
56
Mark Brownbd20eb52011-08-19 18:09:38 +090057/**
Mark Browndd898b22011-07-20 22:28:58 +010058 * Configuration for the register map of a device.
59 *
Stephen Warrend3c242e2012-04-04 15:48:29 -060060 * @name: Optional name of the regmap. Useful when a device has multiple
61 * register regions.
62 *
Mark Browndd898b22011-07-20 22:28:58 +010063 * @reg_bits: Number of bits in a register address, mandatory.
Stephen Warrenf01ee602012-04-09 13:40:24 -060064 * @reg_stride: The register address stride. Valid register addresses are a
65 * multiple of this value. If set to 0, a value of 1 will be
66 * used.
Mark Brown82159ba2012-01-18 10:52:25 +000067 * @pad_bits: Number of bits of padding between register and value.
Mark Browndd898b22011-07-20 22:28:58 +010068 * @val_bits: Number of bits in a register value, mandatory.
Mark Brown2e2ae662011-07-20 22:33:39 +010069 *
Mark Brown3566cc92011-08-09 10:23:22 +090070 * @writeable_reg: Optional callback returning true if the register
71 * can be written to.
72 * @readable_reg: Optional callback returning true if the register
73 * can be read from.
74 * @volatile_reg: Optional callback returning true if the register
75 * value can't be cached.
76 * @precious_reg: Optional callback returning true if the rgister
77 * should not be read outside of a call from the driver
78 * (eg, a clear on read interrupt status register).
Mark Brownbd20eb52011-08-19 18:09:38 +090079 *
80 * @max_register: Optional, specifies the maximum valid register index.
81 * @reg_defaults: Power on reset values for registers (for use with
82 * register cache support).
83 * @num_reg_defaults: Number of elements in reg_defaults.
Lars-Peter Clausen6f306442011-09-05 20:46:32 +020084 *
85 * @read_flag_mask: Mask to be set in the top byte of the register when doing
86 * a read.
87 * @write_flag_mask: Mask to be set in the top byte of the register when doing
88 * a write. If both read_flag_mask and write_flag_mask are
89 * empty the regmap_bus default masks are used.
Ashish Jangam2e33caf2012-04-30 23:23:40 +010090 * @use_single_rw: If set, converts the bulk read and write operations into
91 * a series of single read and write operations. This is useful
92 * for device that does not support bulk read and write.
Dimitris Papastamos9fabe242011-09-19 14:34:00 +010093 *
94 * @cache_type: The actual cache type.
95 * @reg_defaults_raw: Power on reset values for registers (for use with
96 * register cache support).
97 * @num_reg_defaults_raw: Number of elements in reg_defaults_raw.
Stephen Warren141eba22012-05-24 10:47:26 -060098 * @reg_format_endian: Endianness for formatted register addresses. If this is
99 * DEFAULT, the @reg_format_endian_default value from the
100 * regmap bus is used.
101 * @val_format_endian: Endianness for formatted register values. If this is
102 * DEFAULT, the @reg_format_endian_default value from the
103 * regmap bus is used.
Krystian Garbaciak6863ca62012-06-15 11:23:56 +0100104 *
105 * @ranges: Array of configuration entries for virtual address ranges.
106 * @num_ranges: Number of range configuration entries.
Mark Browndd898b22011-07-20 22:28:58 +0100107 */
Mark Brownb83a3132011-05-11 19:59:58 +0200108struct regmap_config {
Stephen Warrend3c242e2012-04-04 15:48:29 -0600109 const char *name;
110
Mark Brownb83a3132011-05-11 19:59:58 +0200111 int reg_bits;
Stephen Warrenf01ee602012-04-09 13:40:24 -0600112 int reg_stride;
Mark Brown82159ba2012-01-18 10:52:25 +0000113 int pad_bits;
Mark Brownb83a3132011-05-11 19:59:58 +0200114 int val_bits;
Mark Brown2e2ae662011-07-20 22:33:39 +0100115
Mark Brown2e2ae662011-07-20 22:33:39 +0100116 bool (*writeable_reg)(struct device *dev, unsigned int reg);
117 bool (*readable_reg)(struct device *dev, unsigned int reg);
118 bool (*volatile_reg)(struct device *dev, unsigned int reg);
Mark Brown18694882011-08-08 15:40:22 +0900119 bool (*precious_reg)(struct device *dev, unsigned int reg);
Mark Brownbd20eb52011-08-19 18:09:38 +0900120
121 unsigned int max_register;
Lars-Peter Clausen720e4612011-11-16 16:28:17 +0100122 const struct reg_default *reg_defaults;
Dimitris Papastamos9fabe242011-09-19 14:34:00 +0100123 unsigned int num_reg_defaults;
124 enum regcache_type cache_type;
125 const void *reg_defaults_raw;
126 unsigned int num_reg_defaults_raw;
Lars-Peter Clausen6f306442011-09-05 20:46:32 +0200127
128 u8 read_flag_mask;
129 u8 write_flag_mask;
Ashish Jangam2e33caf2012-04-30 23:23:40 +0100130
131 bool use_single_rw;
Stephen Warren141eba22012-05-24 10:47:26 -0600132
133 enum regmap_endian reg_format_endian;
134 enum regmap_endian val_format_endian;
Mark Brown38e23192012-07-22 19:26:07 +0100135
Krystian Garbaciak6863ca62012-06-15 11:23:56 +0100136 const struct regmap_range_cfg *ranges;
137 unsigned int n_ranges;
138};
139
140/**
141 * Configuration for indirectly accessed or paged registers.
142 * Registers, mapped to this virtual range, are accessed in two steps:
143 * 1. page selector register update;
144 * 2. access through data window registers.
145 *
146 * @range_min: Address of the lowest register address in virtual range.
147 * @range_max: Address of the highest register in virtual range.
148 *
149 * @page_sel_reg: Register with selector field.
150 * @page_sel_mask: Bit shift for selector value.
151 * @page_sel_shift: Bit mask for selector value.
152 *
153 * @window_start: Address of first (lowest) register in data window.
154 * @window_len: Number of registers in data window.
155 */
156struct regmap_range_cfg {
157 /* Registers of virtual address range */
158 unsigned int range_min;
159 unsigned int range_max;
160
161 /* Page selector for indirect addressing */
162 unsigned int selector_reg;
163 unsigned int selector_mask;
164 int selector_shift;
165
166 /* Data window (per each page) */
167 unsigned int window_start;
168 unsigned int window_len;
Mark Brownb83a3132011-05-11 19:59:58 +0200169};
170
Stephen Warren0135bbc2012-04-04 15:48:30 -0600171typedef int (*regmap_hw_write)(void *context, const void *data,
Mark Brownb83a3132011-05-11 19:59:58 +0200172 size_t count);
Stephen Warren0135bbc2012-04-04 15:48:30 -0600173typedef int (*regmap_hw_gather_write)(void *context,
Mark Brownb83a3132011-05-11 19:59:58 +0200174 const void *reg, size_t reg_len,
175 const void *val, size_t val_len);
Stephen Warren0135bbc2012-04-04 15:48:30 -0600176typedef int (*regmap_hw_read)(void *context,
Mark Brownb83a3132011-05-11 19:59:58 +0200177 const void *reg_buf, size_t reg_size,
178 void *val_buf, size_t val_size);
Stephen Warren0135bbc2012-04-04 15:48:30 -0600179typedef void (*regmap_hw_free_context)(void *context);
Mark Brownb83a3132011-05-11 19:59:58 +0200180
181/**
182 * Description of a hardware bus for the register map infrastructure.
183 *
Stephen Warrenbacdbe02012-04-04 15:48:28 -0600184 * @fast_io: Register IO is fast. Use a spinlock instead of a mutex
185 * to perform locking.
Mark Brownb83a3132011-05-11 19:59:58 +0200186 * @write: Write operation.
187 * @gather_write: Write operation with split register/value, return -ENOTSUPP
188 * if not implemented on a given device.
189 * @read: Read operation. Data is returned in the buffer used to transmit
190 * data.
Mark Brownb83a3132011-05-11 19:59:58 +0200191 * @read_flag_mask: Mask to be set in the top byte of the register when doing
192 * a read.
Stephen Warren141eba22012-05-24 10:47:26 -0600193 * @reg_format_endian_default: Default endianness for formatted register
194 * addresses. Used when the regmap_config specifies DEFAULT. If this is
195 * DEFAULT, BIG is assumed.
196 * @val_format_endian_default: Default endianness for formatted register
197 * values. Used when the regmap_config specifies DEFAULT. If this is
198 * DEFAULT, BIG is assumed.
Mark Brownb83a3132011-05-11 19:59:58 +0200199 */
200struct regmap_bus {
Stephen Warrenbacdbe02012-04-04 15:48:28 -0600201 bool fast_io;
Mark Brownb83a3132011-05-11 19:59:58 +0200202 regmap_hw_write write;
203 regmap_hw_gather_write gather_write;
204 regmap_hw_read read;
Stephen Warren0135bbc2012-04-04 15:48:30 -0600205 regmap_hw_free_context free_context;
Mark Brownb83a3132011-05-11 19:59:58 +0200206 u8 read_flag_mask;
Stephen Warren141eba22012-05-24 10:47:26 -0600207 enum regmap_endian reg_format_endian_default;
208 enum regmap_endian val_format_endian_default;
Mark Brownb83a3132011-05-11 19:59:58 +0200209};
210
211struct regmap *regmap_init(struct device *dev,
212 const struct regmap_bus *bus,
Stephen Warren0135bbc2012-04-04 15:48:30 -0600213 void *bus_context,
Mark Brownb83a3132011-05-11 19:59:58 +0200214 const struct regmap_config *config);
Mark Brown9943fa32011-06-20 19:02:29 +0100215struct regmap *regmap_init_i2c(struct i2c_client *i2c,
216 const struct regmap_config *config);
Mark Browna676f082011-05-12 11:42:10 +0200217struct regmap *regmap_init_spi(struct spi_device *dev,
218 const struct regmap_config *config);
Stephen Warren45f5ff82012-04-04 15:48:31 -0600219struct regmap *regmap_init_mmio(struct device *dev,
220 void __iomem *regs,
221 const struct regmap_config *config);
Mark Browna676f082011-05-12 11:42:10 +0200222
Mark Brownc0eb4672012-01-30 19:56:52 +0000223struct regmap *devm_regmap_init(struct device *dev,
224 const struct regmap_bus *bus,
Stephen Warren0135bbc2012-04-04 15:48:30 -0600225 void *bus_context,
Mark Brownc0eb4672012-01-30 19:56:52 +0000226 const struct regmap_config *config);
227struct regmap *devm_regmap_init_i2c(struct i2c_client *i2c,
228 const struct regmap_config *config);
229struct regmap *devm_regmap_init_spi(struct spi_device *dev,
230 const struct regmap_config *config);
Stephen Warren45f5ff82012-04-04 15:48:31 -0600231struct regmap *devm_regmap_init_mmio(struct device *dev,
232 void __iomem *regs,
233 const struct regmap_config *config);
Mark Brownc0eb4672012-01-30 19:56:52 +0000234
Mark Brownb83a3132011-05-11 19:59:58 +0200235void regmap_exit(struct regmap *map);
Mark Brownbf315172011-12-03 17:06:20 +0000236int regmap_reinit_cache(struct regmap *map,
237 const struct regmap_config *config);
Mark Brown72b39f62012-05-08 17:44:40 +0100238struct regmap *dev_get_regmap(struct device *dev, const char *name);
Mark Brownb83a3132011-05-11 19:59:58 +0200239int regmap_write(struct regmap *map, unsigned int reg, unsigned int val);
240int regmap_raw_write(struct regmap *map, unsigned int reg,
241 const void *val, size_t val_len);
Laxman Dewangan8eaeb212012-02-12 19:49:43 +0530242int regmap_bulk_write(struct regmap *map, unsigned int reg, const void *val,
243 size_t val_count);
Mark Brownb83a3132011-05-11 19:59:58 +0200244int regmap_read(struct regmap *map, unsigned int reg, unsigned int *val);
245int regmap_raw_read(struct regmap *map, unsigned int reg,
246 void *val, size_t val_len);
247int regmap_bulk_read(struct regmap *map, unsigned int reg, void *val,
248 size_t val_count);
249int regmap_update_bits(struct regmap *map, unsigned int reg,
250 unsigned int mask, unsigned int val);
Mark Brown018690d2011-11-29 20:10:36 +0000251int regmap_update_bits_check(struct regmap *map, unsigned int reg,
252 unsigned int mask, unsigned int val,
253 bool *change);
Mark Browna6539c32012-02-17 14:20:14 -0800254int regmap_get_val_bytes(struct regmap *map);
Mark Brownb83a3132011-05-11 19:59:58 +0200255
Mark Brown39a58432011-09-19 18:21:49 +0100256int regcache_sync(struct regmap *map);
Mark Brown4d4cfd12012-02-23 20:53:37 +0000257int regcache_sync_region(struct regmap *map, unsigned int min,
258 unsigned int max);
Mark Brown92afb282011-09-19 18:22:14 +0100259void regcache_cache_only(struct regmap *map, bool enable);
Dimitris Papastamos6eb0f5e2011-09-29 14:36:27 +0100260void regcache_cache_bypass(struct regmap *map, bool enable);
Mark Brown8ae0d7e2011-10-26 10:34:22 +0200261void regcache_mark_dirty(struct regmap *map);
Mark Brown92afb282011-09-19 18:22:14 +0100262
Mark Brown22f0d902012-01-21 12:01:14 +0000263int regmap_register_patch(struct regmap *map, const struct reg_default *regs,
264 int num_regs);
265
Mark Brownf8beab22011-10-28 23:50:49 +0200266/**
267 * Description of an IRQ for the generic regmap irq_chip.
268 *
269 * @reg_offset: Offset of the status/mask register within the bank
270 * @mask: Mask used to flag/control the register.
271 */
272struct regmap_irq {
273 unsigned int reg_offset;
274 unsigned int mask;
275};
276
277/**
278 * Description of a generic regmap irq_chip. This is not intended to
279 * handle every possible interrupt controller, but it should handle a
280 * substantial proportion of those that are found in the wild.
281 *
282 * @name: Descriptive name for IRQ controller.
283 *
284 * @status_base: Base status register address.
285 * @mask_base: Base mask register address.
286 * @ack_base: Base ack address. If zero then the chip is clear on read.
Mark Browna43fd502012-06-05 14:34:03 +0100287 * @wake_base: Base address for wake enables. If zero unsupported.
Graeme Gregory022f926a2012-05-14 22:40:43 +0900288 * @irq_reg_stride: Stride to use for chips where registers are not contiguous.
Mark Brown0c00c502012-07-24 15:41:19 +0100289 * @runtime_pm: Hold a runtime PM lock on the device when accessing it.
Mark Brownf8beab22011-10-28 23:50:49 +0200290 *
291 * @num_regs: Number of registers in each control bank.
292 * @irqs: Descriptors for individual IRQs. Interrupt numbers are
293 * assigned based on the index in the array of the interrupt.
294 * @num_irqs: Number of descriptors.
295 */
296struct regmap_irq_chip {
297 const char *name;
298
299 unsigned int status_base;
300 unsigned int mask_base;
301 unsigned int ack_base;
Mark Browna43fd502012-06-05 14:34:03 +0100302 unsigned int wake_base;
Graeme Gregory022f926a2012-05-14 22:40:43 +0900303 unsigned int irq_reg_stride;
Xiaofan Tian36ac9142012-08-30 17:03:35 +0800304 unsigned int mask_invert;
Mark Brown0c00c502012-07-24 15:41:19 +0100305 bool runtime_pm;
Mark Brownf8beab22011-10-28 23:50:49 +0200306
307 int num_regs;
308
309 const struct regmap_irq *irqs;
310 int num_irqs;
311};
312
313struct regmap_irq_chip_data;
314
315int regmap_add_irq_chip(struct regmap *map, int irq, int irq_flags,
Mark Brownb026ddb2012-05-31 21:01:46 +0100316 int irq_base, const struct regmap_irq_chip *chip,
Mark Brownf8beab22011-10-28 23:50:49 +0200317 struct regmap_irq_chip_data **data);
318void regmap_del_irq_chip(int irq, struct regmap_irq_chip_data *data);
Mark Brown209a6002011-12-05 16:10:15 +0000319int regmap_irq_chip_get_base(struct regmap_irq_chip_data *data);
Mark Brown4af8be62012-05-13 10:59:56 +0100320int regmap_irq_get_virq(struct regmap_irq_chip_data *data, int irq);
Mark Brown90f790d2012-08-20 21:45:05 +0100321struct irq_domain *regmap_irq_get_domain(struct regmap_irq_chip_data *data);
Mark Brownb83a3132011-05-11 19:59:58 +0200322
Mark Brown9cde5fc2012-02-17 14:49:51 -0800323#else
324
325/*
326 * These stubs should only ever be called by generic code which has
327 * regmap based facilities, if they ever get called at runtime
328 * something is going wrong and something probably needs to select
329 * REGMAP.
330 */
331
332static inline int regmap_write(struct regmap *map, unsigned int reg,
333 unsigned int val)
334{
335 WARN_ONCE(1, "regmap API is disabled");
336 return -EINVAL;
337}
338
339static inline int regmap_raw_write(struct regmap *map, unsigned int reg,
340 const void *val, size_t val_len)
341{
342 WARN_ONCE(1, "regmap API is disabled");
343 return -EINVAL;
344}
345
346static inline int regmap_bulk_write(struct regmap *map, unsigned int reg,
347 const void *val, size_t val_count)
348{
349 WARN_ONCE(1, "regmap API is disabled");
350 return -EINVAL;
351}
352
353static inline int regmap_read(struct regmap *map, unsigned int reg,
354 unsigned int *val)
355{
356 WARN_ONCE(1, "regmap API is disabled");
357 return -EINVAL;
358}
359
360static inline int regmap_raw_read(struct regmap *map, unsigned int reg,
361 void *val, size_t val_len)
362{
363 WARN_ONCE(1, "regmap API is disabled");
364 return -EINVAL;
365}
366
367static inline int regmap_bulk_read(struct regmap *map, unsigned int reg,
368 void *val, size_t val_count)
369{
370 WARN_ONCE(1, "regmap API is disabled");
371 return -EINVAL;
372}
373
374static inline int regmap_update_bits(struct regmap *map, unsigned int reg,
375 unsigned int mask, unsigned int val)
376{
377 WARN_ONCE(1, "regmap API is disabled");
378 return -EINVAL;
379}
380
381static inline int regmap_update_bits_check(struct regmap *map,
382 unsigned int reg,
383 unsigned int mask, unsigned int val,
384 bool *change)
385{
386 WARN_ONCE(1, "regmap API is disabled");
387 return -EINVAL;
388}
389
390static inline int regmap_get_val_bytes(struct regmap *map)
391{
392 WARN_ONCE(1, "regmap API is disabled");
393 return -EINVAL;
394}
395
396static inline int regcache_sync(struct regmap *map)
397{
398 WARN_ONCE(1, "regmap API is disabled");
399 return -EINVAL;
400}
401
Mark Browna313f9f2012-02-23 19:49:43 +0000402static inline int regcache_sync_region(struct regmap *map, unsigned int min,
403 unsigned int max)
404{
405 WARN_ONCE(1, "regmap API is disabled");
406 return -EINVAL;
407}
408
Mark Brown9cde5fc2012-02-17 14:49:51 -0800409static inline void regcache_cache_only(struct regmap *map, bool enable)
410{
411 WARN_ONCE(1, "regmap API is disabled");
412}
413
414static inline void regcache_cache_bypass(struct regmap *map, bool enable)
415{
416 WARN_ONCE(1, "regmap API is disabled");
417}
418
419static inline void regcache_mark_dirty(struct regmap *map)
420{
421 WARN_ONCE(1, "regmap API is disabled");
422}
423
424static inline int regmap_register_patch(struct regmap *map,
425 const struct reg_default *regs,
426 int num_regs)
427{
428 WARN_ONCE(1, "regmap API is disabled");
429 return -EINVAL;
430}
431
Mark Brown72b39f62012-05-08 17:44:40 +0100432static inline struct regmap *dev_get_regmap(struct device *dev,
433 const char *name)
434{
Mark Brown72b39f62012-05-08 17:44:40 +0100435 return NULL;
436}
437
Mark Brown9cde5fc2012-02-17 14:49:51 -0800438#endif
439
Mark Brownb83a3132011-05-11 19:59:58 +0200440#endif