blob: aef2b36a8ccfd6c2a201d44ddd69ac32151da63b [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.
30 * @writeable_register: Optional callback returning true if the register
31 * can be written to.
32 * @readable_register: Optional callback returning true if the register
33 * can be read from.
34 * @volatile_register: Optional callback returning true if the register
35 * value can't be cached.
Mark Browndd898b22011-07-20 22:28:58 +010036 */
Mark Brownb83a3132011-05-11 19:59:58 +020037struct regmap_config {
38 int reg_bits;
39 int val_bits;
Mark Brown2e2ae662011-07-20 22:33:39 +010040
41 unsigned int max_register;
42 bool (*writeable_reg)(struct device *dev, unsigned int reg);
43 bool (*readable_reg)(struct device *dev, unsigned int reg);
44 bool (*volatile_reg)(struct device *dev, unsigned int reg);
Mark Brownb83a3132011-05-11 19:59:58 +020045};
46
47typedef int (*regmap_hw_write)(struct device *dev, const void *data,
48 size_t count);
49typedef int (*regmap_hw_gather_write)(struct device *dev,
50 const void *reg, size_t reg_len,
51 const void *val, size_t val_len);
52typedef int (*regmap_hw_read)(struct device *dev,
53 const void *reg_buf, size_t reg_size,
54 void *val_buf, size_t val_size);
55
56/**
57 * Description of a hardware bus for the register map infrastructure.
58 *
59 * @list: Internal use.
60 * @type: Bus type, used to identify bus to be used for a device.
61 * @write: Write operation.
62 * @gather_write: Write operation with split register/value, return -ENOTSUPP
63 * if not implemented on a given device.
64 * @read: Read operation. Data is returned in the buffer used to transmit
65 * data.
66 * @owner: Module with the bus implementation, used to pin the implementation
67 * in memory.
68 * @read_flag_mask: Mask to be set in the top byte of the register when doing
69 * a read.
70 */
71struct regmap_bus {
72 struct list_head list;
73 struct bus_type *type;
74 regmap_hw_write write;
75 regmap_hw_gather_write gather_write;
76 regmap_hw_read read;
77 struct module *owner;
78 u8 read_flag_mask;
79};
80
81struct regmap *regmap_init(struct device *dev,
82 const struct regmap_bus *bus,
83 const struct regmap_config *config);
Mark Brown9943fa32011-06-20 19:02:29 +010084struct regmap *regmap_init_i2c(struct i2c_client *i2c,
85 const struct regmap_config *config);
Mark Browna676f082011-05-12 11:42:10 +020086struct regmap *regmap_init_spi(struct spi_device *dev,
87 const struct regmap_config *config);
88
Mark Brownb83a3132011-05-11 19:59:58 +020089void regmap_exit(struct regmap *map);
90int regmap_write(struct regmap *map, unsigned int reg, unsigned int val);
91int regmap_raw_write(struct regmap *map, unsigned int reg,
92 const void *val, size_t val_len);
93int regmap_read(struct regmap *map, unsigned int reg, unsigned int *val);
94int regmap_raw_read(struct regmap *map, unsigned int reg,
95 void *val, size_t val_len);
96int regmap_bulk_read(struct regmap *map, unsigned int reg, void *val,
97 size_t val_count);
98int regmap_update_bits(struct regmap *map, unsigned int reg,
99 unsigned int mask, unsigned int val);
100
101#endif