blob: 4de137bc16a77adca41db6e0c8f35432927f996e [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/**
24 * Configuration for the register map of a device.
25 *
26 * @reg_bits: Number of bits in a register address, mandatory.
27 * @val_bits: Number of bits in a register value, mandatory.
Mark Brown2e2ae662011-07-20 22:33:39 +010028 *
29 * @max_register: Optional, specifies the maximum valid register index.
Mark Brown3566cc92011-08-09 10:23:22 +090030 * @writeable_reg: Optional callback returning true if the register
31 * can be written to.
32 * @readable_reg: Optional callback returning true if the register
33 * can be read from.
34 * @volatile_reg: Optional callback returning true if the register
35 * value can't be cached.
36 * @precious_reg: Optional callback returning true if the rgister
37 * should not be read outside of a call from the driver
38 * (eg, a clear on read interrupt status register).
Mark Browndd898b22011-07-20 22:28:58 +010039 */
Mark Brownb83a3132011-05-11 19:59:58 +020040struct regmap_config {
41 int reg_bits;
42 int val_bits;
Mark Brown2e2ae662011-07-20 22:33:39 +010043
44 unsigned int max_register;
45 bool (*writeable_reg)(struct device *dev, unsigned int reg);
46 bool (*readable_reg)(struct device *dev, unsigned int reg);
47 bool (*volatile_reg)(struct device *dev, unsigned int reg);
Mark Brown18694882011-08-08 15:40:22 +090048 bool (*precious_reg)(struct device *dev, unsigned int reg);
Mark Brownb83a3132011-05-11 19:59:58 +020049};
50
51typedef int (*regmap_hw_write)(struct device *dev, const void *data,
52 size_t count);
53typedef int (*regmap_hw_gather_write)(struct device *dev,
54 const void *reg, size_t reg_len,
55 const void *val, size_t val_len);
56typedef int (*regmap_hw_read)(struct device *dev,
57 const void *reg_buf, size_t reg_size,
58 void *val_buf, size_t val_size);
59
60/**
61 * Description of a hardware bus for the register map infrastructure.
62 *
63 * @list: Internal use.
64 * @type: Bus type, used to identify bus to be used for a device.
65 * @write: Write operation.
66 * @gather_write: Write operation with split register/value, return -ENOTSUPP
67 * if not implemented on a given device.
68 * @read: Read operation. Data is returned in the buffer used to transmit
69 * data.
70 * @owner: Module with the bus implementation, used to pin the implementation
71 * in memory.
72 * @read_flag_mask: Mask to be set in the top byte of the register when doing
73 * a read.
74 */
75struct regmap_bus {
76 struct list_head list;
77 struct bus_type *type;
78 regmap_hw_write write;
79 regmap_hw_gather_write gather_write;
80 regmap_hw_read read;
81 struct module *owner;
82 u8 read_flag_mask;
83};
84
85struct regmap *regmap_init(struct device *dev,
86 const struct regmap_bus *bus,
87 const struct regmap_config *config);
Mark Brown9943fa32011-06-20 19:02:29 +010088struct regmap *regmap_init_i2c(struct i2c_client *i2c,
89 const struct regmap_config *config);
Mark Browna676f082011-05-12 11:42:10 +020090struct regmap *regmap_init_spi(struct spi_device *dev,
91 const struct regmap_config *config);
92
Mark Brownb83a3132011-05-11 19:59:58 +020093void regmap_exit(struct regmap *map);
94int regmap_write(struct regmap *map, unsigned int reg, unsigned int val);
95int regmap_raw_write(struct regmap *map, unsigned int reg,
96 const void *val, size_t val_len);
97int regmap_read(struct regmap *map, unsigned int reg, unsigned int *val);
98int regmap_raw_read(struct regmap *map, unsigned int reg,
99 void *val, size_t val_len);
100int regmap_bulk_read(struct regmap *map, unsigned int reg, void *val,
101 size_t val_count);
102int regmap_update_bits(struct regmap *map, unsigned int reg,
103 unsigned int mask, unsigned int val);
104
105#endif