blob: 18d4afaac166418a1271bca2778c1690d5309ba1 [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
16#include <linux/device.h>
17#include <linux/list.h>
18#include <linux/module.h>
19
Mark Brown9943fa32011-06-20 19:02:29 +010020struct i2c_client;
Mark Browna676f082011-05-12 11:42:10 +020021struct spi_device;
Mark Brown9943fa32011-06-20 19:02:29 +010022
Mark Browndd898b22011-07-20 22:28:58 +010023/**
Mark Brownbd20eb52011-08-19 18:09:38 +090024 * Default value for a register. We use an array of structs rather
25 * than a simple array as many modern devices have very sparse
26 * register maps.
27 *
28 * @reg: Register address.
29 * @def: Register default value.
30 */
31struct reg_default {
32 unsigned int reg;
33 unsigned int def;
34};
35
36/**
Mark Browndd898b22011-07-20 22:28:58 +010037 * Configuration for the register map of a device.
38 *
39 * @reg_bits: Number of bits in a register address, mandatory.
40 * @val_bits: Number of bits in a register value, mandatory.
Mark Brown2e2ae662011-07-20 22:33:39 +010041 *
Mark Brown3566cc92011-08-09 10:23:22 +090042 * @writeable_reg: Optional callback returning true if the register
43 * can be written to.
44 * @readable_reg: Optional callback returning true if the register
45 * can be read from.
46 * @volatile_reg: Optional callback returning true if the register
47 * value can't be cached.
48 * @precious_reg: Optional callback returning true if the rgister
49 * should not be read outside of a call from the driver
50 * (eg, a clear on read interrupt status register).
Mark Brownbd20eb52011-08-19 18:09:38 +090051 *
52 * @max_register: Optional, specifies the maximum valid register index.
53 * @reg_defaults: Power on reset values for registers (for use with
54 * register cache support).
55 * @num_reg_defaults: Number of elements in reg_defaults.
Lars-Peter Clausen6f306442011-09-05 20:46:32 +020056 *
57 * @read_flag_mask: Mask to be set in the top byte of the register when doing
58 * a read.
59 * @write_flag_mask: Mask to be set in the top byte of the register when doing
60 * a write. If both read_flag_mask and write_flag_mask are
61 * empty the regmap_bus default masks are used.
Mark Browndd898b22011-07-20 22:28:58 +010062 */
Mark Brownb83a3132011-05-11 19:59:58 +020063struct regmap_config {
64 int reg_bits;
65 int val_bits;
Mark Brown2e2ae662011-07-20 22:33:39 +010066
Mark Brown2e2ae662011-07-20 22:33:39 +010067 bool (*writeable_reg)(struct device *dev, unsigned int reg);
68 bool (*readable_reg)(struct device *dev, unsigned int reg);
69 bool (*volatile_reg)(struct device *dev, unsigned int reg);
Mark Brown18694882011-08-08 15:40:22 +090070 bool (*precious_reg)(struct device *dev, unsigned int reg);
Mark Brownbd20eb52011-08-19 18:09:38 +090071
72 unsigned int max_register;
73 struct reg_default *reg_defaults;
74 int num_reg_defaults;
Lars-Peter Clausen6f306442011-09-05 20:46:32 +020075
76 u8 read_flag_mask;
77 u8 write_flag_mask;
Mark Brownb83a3132011-05-11 19:59:58 +020078};
79
80typedef int (*regmap_hw_write)(struct device *dev, const void *data,
81 size_t count);
82typedef int (*regmap_hw_gather_write)(struct device *dev,
83 const void *reg, size_t reg_len,
84 const void *val, size_t val_len);
85typedef int (*regmap_hw_read)(struct device *dev,
86 const void *reg_buf, size_t reg_size,
87 void *val_buf, size_t val_size);
88
89/**
90 * Description of a hardware bus for the register map infrastructure.
91 *
Mark Brownb83a3132011-05-11 19:59:58 +020092 * @write: Write operation.
93 * @gather_write: Write operation with split register/value, return -ENOTSUPP
94 * if not implemented on a given device.
95 * @read: Read operation. Data is returned in the buffer used to transmit
96 * data.
Mark Brownb83a3132011-05-11 19:59:58 +020097 * @read_flag_mask: Mask to be set in the top byte of the register when doing
98 * a read.
99 */
100struct regmap_bus {
Mark Brownb83a3132011-05-11 19:59:58 +0200101 regmap_hw_write write;
102 regmap_hw_gather_write gather_write;
103 regmap_hw_read read;
Mark Brownb83a3132011-05-11 19:59:58 +0200104 u8 read_flag_mask;
105};
106
107struct regmap *regmap_init(struct device *dev,
108 const struct regmap_bus *bus,
109 const struct regmap_config *config);
Mark Brown9943fa32011-06-20 19:02:29 +0100110struct regmap *regmap_init_i2c(struct i2c_client *i2c,
111 const struct regmap_config *config);
Mark Browna676f082011-05-12 11:42:10 +0200112struct regmap *regmap_init_spi(struct spi_device *dev,
113 const struct regmap_config *config);
114
Mark Brownb83a3132011-05-11 19:59:58 +0200115void regmap_exit(struct regmap *map);
116int regmap_write(struct regmap *map, unsigned int reg, unsigned int val);
117int regmap_raw_write(struct regmap *map, unsigned int reg,
118 const void *val, size_t val_len);
119int regmap_read(struct regmap *map, unsigned int reg, unsigned int *val);
120int regmap_raw_read(struct regmap *map, unsigned int reg,
121 void *val, size_t val_len);
122int regmap_bulk_read(struct regmap *map, unsigned int reg, void *val,
123 size_t val_count);
124int regmap_update_bits(struct regmap *map, unsigned int reg,
125 unsigned int mask, unsigned int val);
126
127#endif