blob: 9f228d7f7ac48da7e8875a816a73b505686a586c [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
Mark Brownbd20eb52011-08-19 18:09:38 +090056/**
Mark Browndd898b22011-07-20 22:28:58 +010057 * Configuration for the register map of a device.
58 *
Stephen Warrend3c242e2012-04-04 15:48:29 -060059 * @name: Optional name of the regmap. Useful when a device has multiple
60 * register regions.
61 *
Mark Browndd898b22011-07-20 22:28:58 +010062 * @reg_bits: Number of bits in a register address, mandatory.
Stephen Warrenf01ee602012-04-09 13:40:24 -060063 * @reg_stride: The register address stride. Valid register addresses are a
64 * multiple of this value. If set to 0, a value of 1 will be
65 * used.
Mark Brown82159ba2012-01-18 10:52:25 +000066 * @pad_bits: Number of bits of padding between register and value.
Mark Browndd898b22011-07-20 22:28:58 +010067 * @val_bits: Number of bits in a register value, mandatory.
Mark Brown2e2ae662011-07-20 22:33:39 +010068 *
Mark Brown3566cc92011-08-09 10:23:22 +090069 * @writeable_reg: Optional callback returning true if the register
70 * can be written to.
71 * @readable_reg: Optional callback returning true if the register
72 * can be read from.
73 * @volatile_reg: Optional callback returning true if the register
74 * value can't be cached.
75 * @precious_reg: Optional callback returning true if the rgister
76 * should not be read outside of a call from the driver
77 * (eg, a clear on read interrupt status register).
Mark Brownbd20eb52011-08-19 18:09:38 +090078 *
79 * @max_register: Optional, specifies the maximum valid register index.
80 * @reg_defaults: Power on reset values for registers (for use with
81 * register cache support).
82 * @num_reg_defaults: Number of elements in reg_defaults.
Lars-Peter Clausen6f306442011-09-05 20:46:32 +020083 *
84 * @read_flag_mask: Mask to be set in the top byte of the register when doing
85 * a read.
86 * @write_flag_mask: Mask to be set in the top byte of the register when doing
87 * a write. If both read_flag_mask and write_flag_mask are
88 * empty the regmap_bus default masks are used.
Ashish Jangam2e33caf2012-04-30 23:23:40 +010089 * @use_single_rw: If set, converts the bulk read and write operations into
90 * a series of single read and write operations. This is useful
91 * for device that does not support bulk read and write.
Dimitris Papastamos9fabe242011-09-19 14:34:00 +010092 *
93 * @cache_type: The actual cache type.
94 * @reg_defaults_raw: Power on reset values for registers (for use with
95 * register cache support).
96 * @num_reg_defaults_raw: Number of elements in reg_defaults_raw.
Stephen Warren141eba22012-05-24 10:47:26 -060097 * @reg_format_endian: Endianness for formatted register addresses. If this is
98 * DEFAULT, the @reg_format_endian_default value from the
99 * regmap bus is used.
100 * @val_format_endian: Endianness for formatted register values. If this is
101 * DEFAULT, the @reg_format_endian_default value from the
102 * regmap bus is used.
Krystian Garbaciak6863ca62012-06-15 11:23:56 +0100103 *
104 * @ranges: Array of configuration entries for virtual address ranges.
105 * @num_ranges: Number of range configuration entries.
Mark Browndd898b22011-07-20 22:28:58 +0100106 */
Mark Brownb83a3132011-05-11 19:59:58 +0200107struct regmap_config {
Stephen Warrend3c242e2012-04-04 15:48:29 -0600108 const char *name;
109
Mark Brownb83a3132011-05-11 19:59:58 +0200110 int reg_bits;
Stephen Warrenf01ee602012-04-09 13:40:24 -0600111 int reg_stride;
Mark Brown82159ba2012-01-18 10:52:25 +0000112 int pad_bits;
Mark Brownb83a3132011-05-11 19:59:58 +0200113 int val_bits;
Mark Brown2e2ae662011-07-20 22:33:39 +0100114
Mark Brown2e2ae662011-07-20 22:33:39 +0100115 bool (*writeable_reg)(struct device *dev, unsigned int reg);
116 bool (*readable_reg)(struct device *dev, unsigned int reg);
117 bool (*volatile_reg)(struct device *dev, unsigned int reg);
Mark Brown18694882011-08-08 15:40:22 +0900118 bool (*precious_reg)(struct device *dev, unsigned int reg);
Mark Brownbd20eb52011-08-19 18:09:38 +0900119
120 unsigned int max_register;
Lars-Peter Clausen720e4612011-11-16 16:28:17 +0100121 const struct reg_default *reg_defaults;
Dimitris Papastamos9fabe242011-09-19 14:34:00 +0100122 unsigned int num_reg_defaults;
123 enum regcache_type cache_type;
124 const void *reg_defaults_raw;
125 unsigned int num_reg_defaults_raw;
Lars-Peter Clausen6f306442011-09-05 20:46:32 +0200126
127 u8 read_flag_mask;
128 u8 write_flag_mask;
Ashish Jangam2e33caf2012-04-30 23:23:40 +0100129
130 bool use_single_rw;
Stephen Warren141eba22012-05-24 10:47:26 -0600131
132 enum regmap_endian reg_format_endian;
133 enum regmap_endian val_format_endian;
Mark Brown38e23192012-07-22 19:26:07 +0100134
Krystian Garbaciak6863ca62012-06-15 11:23:56 +0100135 const struct regmap_range_cfg *ranges;
Mark Browne3549cd2012-10-02 20:17:15 +0100136 unsigned int num_ranges;
Krystian Garbaciak6863ca62012-06-15 11:23:56 +0100137};
138
139/**
140 * Configuration for indirectly accessed or paged registers.
141 * Registers, mapped to this virtual range, are accessed in two steps:
142 * 1. page selector register update;
143 * 2. access through data window registers.
144 *
Mark Brownd058bb42012-10-03 12:40:47 +0100145 * @name: Descriptive name for diagnostics
146 *
Krystian Garbaciak6863ca62012-06-15 11:23:56 +0100147 * @range_min: Address of the lowest register address in virtual range.
148 * @range_max: Address of the highest register in virtual range.
149 *
150 * @page_sel_reg: Register with selector field.
151 * @page_sel_mask: Bit shift for selector value.
152 * @page_sel_shift: Bit mask for selector value.
153 *
154 * @window_start: Address of first (lowest) register in data window.
155 * @window_len: Number of registers in data window.
156 */
157struct regmap_range_cfg {
Mark Brownd058bb42012-10-03 12:40:47 +0100158 const char *name;
159
Krystian Garbaciak6863ca62012-06-15 11:23:56 +0100160 /* Registers of virtual address range */
161 unsigned int range_min;
162 unsigned int range_max;
163
164 /* Page selector for indirect addressing */
165 unsigned int selector_reg;
166 unsigned int selector_mask;
167 int selector_shift;
168
169 /* Data window (per each page) */
170 unsigned int window_start;
171 unsigned int window_len;
Mark Brownb83a3132011-05-11 19:59:58 +0200172};
173
Stephen Warren0135bbc2012-04-04 15:48:30 -0600174typedef int (*regmap_hw_write)(void *context, const void *data,
Mark Brownb83a3132011-05-11 19:59:58 +0200175 size_t count);
Stephen Warren0135bbc2012-04-04 15:48:30 -0600176typedef int (*regmap_hw_gather_write)(void *context,
Mark Brownb83a3132011-05-11 19:59:58 +0200177 const void *reg, size_t reg_len,
178 const void *val, size_t val_len);
Stephen Warren0135bbc2012-04-04 15:48:30 -0600179typedef int (*regmap_hw_read)(void *context,
Mark Brownb83a3132011-05-11 19:59:58 +0200180 const void *reg_buf, size_t reg_size,
181 void *val_buf, size_t val_size);
Stephen Warren0135bbc2012-04-04 15:48:30 -0600182typedef void (*regmap_hw_free_context)(void *context);
Mark Brownb83a3132011-05-11 19:59:58 +0200183
184/**
185 * Description of a hardware bus for the register map infrastructure.
186 *
Stephen Warrenbacdbe02012-04-04 15:48:28 -0600187 * @fast_io: Register IO is fast. Use a spinlock instead of a mutex
188 * to perform locking.
Mark Brownb83a3132011-05-11 19:59:58 +0200189 * @write: Write operation.
190 * @gather_write: Write operation with split register/value, return -ENOTSUPP
191 * if not implemented on a given device.
192 * @read: Read operation. Data is returned in the buffer used to transmit
193 * data.
Mark Brownb83a3132011-05-11 19:59:58 +0200194 * @read_flag_mask: Mask to be set in the top byte of the register when doing
195 * a read.
Stephen Warren141eba22012-05-24 10:47:26 -0600196 * @reg_format_endian_default: Default endianness for formatted register
197 * addresses. Used when the regmap_config specifies DEFAULT. If this is
198 * DEFAULT, BIG is assumed.
199 * @val_format_endian_default: Default endianness for formatted register
200 * values. Used when the regmap_config specifies DEFAULT. If this is
201 * DEFAULT, BIG is assumed.
Mark Brownb83a3132011-05-11 19:59:58 +0200202 */
203struct regmap_bus {
Stephen Warrenbacdbe02012-04-04 15:48:28 -0600204 bool fast_io;
Mark Brownb83a3132011-05-11 19:59:58 +0200205 regmap_hw_write write;
206 regmap_hw_gather_write gather_write;
207 regmap_hw_read read;
Stephen Warren0135bbc2012-04-04 15:48:30 -0600208 regmap_hw_free_context free_context;
Mark Brownb83a3132011-05-11 19:59:58 +0200209 u8 read_flag_mask;
Stephen Warren141eba22012-05-24 10:47:26 -0600210 enum regmap_endian reg_format_endian_default;
211 enum regmap_endian val_format_endian_default;
Mark Brownb83a3132011-05-11 19:59:58 +0200212};
213
214struct regmap *regmap_init(struct device *dev,
215 const struct regmap_bus *bus,
Stephen Warren0135bbc2012-04-04 15:48:30 -0600216 void *bus_context,
Mark Brownb83a3132011-05-11 19:59:58 +0200217 const struct regmap_config *config);
Mark Brown9943fa32011-06-20 19:02:29 +0100218struct regmap *regmap_init_i2c(struct i2c_client *i2c,
219 const struct regmap_config *config);
Mark Browna676f082011-05-12 11:42:10 +0200220struct regmap *regmap_init_spi(struct spi_device *dev,
221 const struct regmap_config *config);
Stephen Warren45f5ff82012-04-04 15:48:31 -0600222struct regmap *regmap_init_mmio(struct device *dev,
223 void __iomem *regs,
224 const struct regmap_config *config);
Mark Browna676f082011-05-12 11:42:10 +0200225
Mark Brownc0eb4672012-01-30 19:56:52 +0000226struct regmap *devm_regmap_init(struct device *dev,
227 const struct regmap_bus *bus,
Stephen Warren0135bbc2012-04-04 15:48:30 -0600228 void *bus_context,
Mark Brownc0eb4672012-01-30 19:56:52 +0000229 const struct regmap_config *config);
230struct regmap *devm_regmap_init_i2c(struct i2c_client *i2c,
231 const struct regmap_config *config);
232struct regmap *devm_regmap_init_spi(struct spi_device *dev,
233 const struct regmap_config *config);
Stephen Warren45f5ff82012-04-04 15:48:31 -0600234struct regmap *devm_regmap_init_mmio(struct device *dev,
235 void __iomem *regs,
236 const struct regmap_config *config);
Mark Brownc0eb4672012-01-30 19:56:52 +0000237
Mark Brownb83a3132011-05-11 19:59:58 +0200238void regmap_exit(struct regmap *map);
Mark Brownbf315172011-12-03 17:06:20 +0000239int regmap_reinit_cache(struct regmap *map,
240 const struct regmap_config *config);
Mark Brown72b39f62012-05-08 17:44:40 +0100241struct regmap *dev_get_regmap(struct device *dev, const char *name);
Mark Brownb83a3132011-05-11 19:59:58 +0200242int regmap_write(struct regmap *map, unsigned int reg, unsigned int val);
243int regmap_raw_write(struct regmap *map, unsigned int reg,
244 const void *val, size_t val_len);
Laxman Dewangan8eaeb212012-02-12 19:49:43 +0530245int regmap_bulk_write(struct regmap *map, unsigned int reg, const void *val,
246 size_t val_count);
Mark Brownb83a3132011-05-11 19:59:58 +0200247int regmap_read(struct regmap *map, unsigned int reg, unsigned int *val);
248int regmap_raw_read(struct regmap *map, unsigned int reg,
249 void *val, size_t val_len);
250int regmap_bulk_read(struct regmap *map, unsigned int reg, void *val,
251 size_t val_count);
252int regmap_update_bits(struct regmap *map, unsigned int reg,
253 unsigned int mask, unsigned int val);
Mark Brown018690d2011-11-29 20:10:36 +0000254int regmap_update_bits_check(struct regmap *map, unsigned int reg,
255 unsigned int mask, unsigned int val,
256 bool *change);
Mark Browna6539c32012-02-17 14:20:14 -0800257int regmap_get_val_bytes(struct regmap *map);
Mark Brownb83a3132011-05-11 19:59:58 +0200258
Mark Brown39a58432011-09-19 18:21:49 +0100259int regcache_sync(struct regmap *map);
Mark Brown4d4cfd12012-02-23 20:53:37 +0000260int regcache_sync_region(struct regmap *map, unsigned int min,
261 unsigned int max);
Mark Brown92afb282011-09-19 18:22:14 +0100262void regcache_cache_only(struct regmap *map, bool enable);
Dimitris Papastamos6eb0f5e2011-09-29 14:36:27 +0100263void regcache_cache_bypass(struct regmap *map, bool enable);
Mark Brown8ae0d7e2011-10-26 10:34:22 +0200264void regcache_mark_dirty(struct regmap *map);
Mark Brown92afb282011-09-19 18:22:14 +0100265
Mark Brown22f0d902012-01-21 12:01:14 +0000266int regmap_register_patch(struct regmap *map, const struct reg_default *regs,
267 int num_regs);
268
Mark Brownf8beab22011-10-28 23:50:49 +0200269/**
270 * Description of an IRQ for the generic regmap irq_chip.
271 *
272 * @reg_offset: Offset of the status/mask register within the bank
273 * @mask: Mask used to flag/control the register.
274 */
275struct regmap_irq {
276 unsigned int reg_offset;
277 unsigned int mask;
278};
279
280/**
281 * Description of a generic regmap irq_chip. This is not intended to
282 * handle every possible interrupt controller, but it should handle a
283 * substantial proportion of those that are found in the wild.
284 *
285 * @name: Descriptive name for IRQ controller.
286 *
287 * @status_base: Base status register address.
288 * @mask_base: Base mask register address.
289 * @ack_base: Base ack address. If zero then the chip is clear on read.
Mark Browna43fd502012-06-05 14:34:03 +0100290 * @wake_base: Base address for wake enables. If zero unsupported.
Graeme Gregory022f926a2012-05-14 22:40:43 +0900291 * @irq_reg_stride: Stride to use for chips where registers are not contiguous.
Mark Brown0c00c502012-07-24 15:41:19 +0100292 * @runtime_pm: Hold a runtime PM lock on the device when accessing it.
Mark Brownf8beab22011-10-28 23:50:49 +0200293 *
294 * @num_regs: Number of registers in each control bank.
295 * @irqs: Descriptors for individual IRQs. Interrupt numbers are
296 * assigned based on the index in the array of the interrupt.
297 * @num_irqs: Number of descriptors.
298 */
299struct regmap_irq_chip {
300 const char *name;
301
302 unsigned int status_base;
303 unsigned int mask_base;
304 unsigned int ack_base;
Mark Browna43fd502012-06-05 14:34:03 +0100305 unsigned int wake_base;
Graeme Gregory022f926a2012-05-14 22:40:43 +0900306 unsigned int irq_reg_stride;
Xiaofan Tian36ac9142012-08-30 17:03:35 +0800307 unsigned int mask_invert;
Mark Brown0c00c502012-07-24 15:41:19 +0100308 bool runtime_pm;
Mark Brownf8beab22011-10-28 23:50:49 +0200309
310 int num_regs;
311
312 const struct regmap_irq *irqs;
313 int num_irqs;
314};
315
316struct regmap_irq_chip_data;
317
318int regmap_add_irq_chip(struct regmap *map, int irq, int irq_flags,
Mark Brownb026ddb2012-05-31 21:01:46 +0100319 int irq_base, const struct regmap_irq_chip *chip,
Mark Brownf8beab22011-10-28 23:50:49 +0200320 struct regmap_irq_chip_data **data);
321void regmap_del_irq_chip(int irq, struct regmap_irq_chip_data *data);
Mark Brown209a6002011-12-05 16:10:15 +0000322int regmap_irq_chip_get_base(struct regmap_irq_chip_data *data);
Mark Brown4af8be62012-05-13 10:59:56 +0100323int regmap_irq_get_virq(struct regmap_irq_chip_data *data, int irq);
Mark Brownb83a3132011-05-11 19:59:58 +0200324
Mark Brown9cde5fc2012-02-17 14:49:51 -0800325#else
326
327/*
328 * These stubs should only ever be called by generic code which has
329 * regmap based facilities, if they ever get called at runtime
330 * something is going wrong and something probably needs to select
331 * REGMAP.
332 */
333
334static inline int regmap_write(struct regmap *map, unsigned int reg,
335 unsigned int val)
336{
337 WARN_ONCE(1, "regmap API is disabled");
338 return -EINVAL;
339}
340
341static inline int regmap_raw_write(struct regmap *map, unsigned int reg,
342 const void *val, size_t val_len)
343{
344 WARN_ONCE(1, "regmap API is disabled");
345 return -EINVAL;
346}
347
348static inline int regmap_bulk_write(struct regmap *map, unsigned int reg,
349 const void *val, size_t val_count)
350{
351 WARN_ONCE(1, "regmap API is disabled");
352 return -EINVAL;
353}
354
355static inline int regmap_read(struct regmap *map, unsigned int reg,
356 unsigned int *val)
357{
358 WARN_ONCE(1, "regmap API is disabled");
359 return -EINVAL;
360}
361
362static inline int regmap_raw_read(struct regmap *map, unsigned int reg,
363 void *val, size_t val_len)
364{
365 WARN_ONCE(1, "regmap API is disabled");
366 return -EINVAL;
367}
368
369static inline int regmap_bulk_read(struct regmap *map, unsigned int reg,
370 void *val, size_t val_count)
371{
372 WARN_ONCE(1, "regmap API is disabled");
373 return -EINVAL;
374}
375
376static inline int regmap_update_bits(struct regmap *map, unsigned int reg,
377 unsigned int mask, unsigned int val)
378{
379 WARN_ONCE(1, "regmap API is disabled");
380 return -EINVAL;
381}
382
383static inline int regmap_update_bits_check(struct regmap *map,
384 unsigned int reg,
385 unsigned int mask, unsigned int val,
386 bool *change)
387{
388 WARN_ONCE(1, "regmap API is disabled");
389 return -EINVAL;
390}
391
392static inline int regmap_get_val_bytes(struct regmap *map)
393{
394 WARN_ONCE(1, "regmap API is disabled");
395 return -EINVAL;
396}
397
398static inline int regcache_sync(struct regmap *map)
399{
400 WARN_ONCE(1, "regmap API is disabled");
401 return -EINVAL;
402}
403
Mark Browna313f9f2012-02-23 19:49:43 +0000404static inline int regcache_sync_region(struct regmap *map, unsigned int min,
405 unsigned int max)
406{
407 WARN_ONCE(1, "regmap API is disabled");
408 return -EINVAL;
409}
410
Mark Brown9cde5fc2012-02-17 14:49:51 -0800411static inline void regcache_cache_only(struct regmap *map, bool enable)
412{
413 WARN_ONCE(1, "regmap API is disabled");
414}
415
416static inline void regcache_cache_bypass(struct regmap *map, bool enable)
417{
418 WARN_ONCE(1, "regmap API is disabled");
419}
420
421static inline void regcache_mark_dirty(struct regmap *map)
422{
423 WARN_ONCE(1, "regmap API is disabled");
424}
425
426static inline int regmap_register_patch(struct regmap *map,
427 const struct reg_default *regs,
428 int num_regs)
429{
430 WARN_ONCE(1, "regmap API is disabled");
431 return -EINVAL;
432}
433
Mark Brown72b39f62012-05-08 17:44:40 +0100434static inline struct regmap *dev_get_regmap(struct device *dev,
435 const char *name)
436{
Mark Brown72b39f62012-05-08 17:44:40 +0100437 return NULL;
438}
439
Mark Brown9cde5fc2012-02-17 14:49:51 -0800440#endif
441
Mark Brownb83a3132011-05-11 19:59:58 +0200442#endif