blob: e2200f21c6027e9ed3505fa8250f062efae001db [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.
Mark Browndd898b22011-07-20 22:28:58 +010056 */
Mark Brownb83a3132011-05-11 19:59:58 +020057struct regmap_config {
58 int reg_bits;
59 int val_bits;
Mark Brown2e2ae662011-07-20 22:33:39 +010060
Mark Brown2e2ae662011-07-20 22:33:39 +010061 bool (*writeable_reg)(struct device *dev, unsigned int reg);
62 bool (*readable_reg)(struct device *dev, unsigned int reg);
63 bool (*volatile_reg)(struct device *dev, unsigned int reg);
Mark Brown18694882011-08-08 15:40:22 +090064 bool (*precious_reg)(struct device *dev, unsigned int reg);
Mark Brownbd20eb52011-08-19 18:09:38 +090065
66 unsigned int max_register;
67 struct reg_default *reg_defaults;
68 int num_reg_defaults;
Mark Brownb83a3132011-05-11 19:59:58 +020069};
70
71typedef int (*regmap_hw_write)(struct device *dev, const void *data,
72 size_t count);
73typedef int (*regmap_hw_gather_write)(struct device *dev,
74 const void *reg, size_t reg_len,
75 const void *val, size_t val_len);
76typedef int (*regmap_hw_read)(struct device *dev,
77 const void *reg_buf, size_t reg_size,
78 void *val_buf, size_t val_size);
79
80/**
81 * Description of a hardware bus for the register map infrastructure.
82 *
83 * @list: Internal use.
84 * @type: Bus type, used to identify bus to be used for a device.
85 * @write: Write operation.
86 * @gather_write: Write operation with split register/value, return -ENOTSUPP
87 * if not implemented on a given device.
88 * @read: Read operation. Data is returned in the buffer used to transmit
89 * data.
90 * @owner: Module with the bus implementation, used to pin the implementation
91 * in memory.
92 * @read_flag_mask: Mask to be set in the top byte of the register when doing
93 * a read.
94 */
95struct regmap_bus {
96 struct list_head list;
97 struct bus_type *type;
98 regmap_hw_write write;
99 regmap_hw_gather_write gather_write;
100 regmap_hw_read read;
101 struct module *owner;
102 u8 read_flag_mask;
103};
104
105struct regmap *regmap_init(struct device *dev,
106 const struct regmap_bus *bus,
107 const struct regmap_config *config);
Mark Brown9943fa32011-06-20 19:02:29 +0100108struct regmap *regmap_init_i2c(struct i2c_client *i2c,
109 const struct regmap_config *config);
Mark Browna676f082011-05-12 11:42:10 +0200110struct regmap *regmap_init_spi(struct spi_device *dev,
111 const struct regmap_config *config);
112
Mark Brownb83a3132011-05-11 19:59:58 +0200113void regmap_exit(struct regmap *map);
114int regmap_write(struct regmap *map, unsigned int reg, unsigned int val);
115int regmap_raw_write(struct regmap *map, unsigned int reg,
116 const void *val, size_t val_len);
117int regmap_read(struct regmap *map, unsigned int reg, unsigned int *val);
118int regmap_raw_read(struct regmap *map, unsigned int reg,
119 void *val, size_t val_len);
120int regmap_bulk_read(struct regmap *map, unsigned int reg, void *val,
121 size_t val_count);
122int regmap_update_bits(struct regmap *map, unsigned int reg,
123 unsigned int mask, unsigned int val);
124
125#endif