summaryrefslogtreecommitdiffstats
path: root/drivers/base/regmap/internal.h
blob: ac3f0d3c0f206f81d46382c59ede7b2617e6d8e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
/* SPDX-License-Identifier: GPL-2.0-only */
#ifndef REGMAP_INTERNAL_H_
#define REGMAP_INTERNAL_H_

#include <linux/list.h>
#include <driver.h>

struct regmap_bus;

struct regmap_format {
	size_t buf_size;
	size_t reg_bytes;
	size_t pad_bytes;
	size_t val_bytes;
	void (*format_write)(struct regmap *map,
			     unsigned int reg, unsigned int val);
	void (*format_reg)(void *buf, unsigned int reg, unsigned int shift);
	void (*format_val)(void *buf, unsigned int val, unsigned int shift);
	unsigned int (*parse_val)(const void *buf);
};

struct regmap {
	struct device *dev;
	const struct regmap_bus *bus;
	const char *name;
	void *bus_context;
	struct list_head list;
	int reg_stride;
	void *work_buf;     /* Scratch buffer used to format I/O */
	struct regmap_format format;
	unsigned int read_flag_mask;
	unsigned int write_flag_mask;
	int reg_shift;
	unsigned int max_register;

	struct cdev cdev;

	int (*reg_read)(void *context, unsigned int reg,
			unsigned int *val);
	int (*reg_write)(void *context, unsigned int reg,
			 unsigned int val);
};

enum regmap_endian regmap_get_val_endian(struct device *dev,
					 const struct regmap_bus *bus,
					 const struct regmap_config *config);

#ifdef CONFIG_REGMAP_FORMATTED
int regmap_formatted_init(struct regmap *map, const struct regmap_config *);
#else
static inline int regmap_formatted_init(struct regmap *map, const struct regmap_config *cfg)
{
	return -ENOSYS;
}
#endif

#endif