blob: 32f75e06f598d7543be751e18eaa93785f760055 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Simon Glass6f98b752015-06-23 15:38:42 -06002/*
3 * Copyright (c) 2015 Google, Inc
4 * Written by Simon Glass <sjg@chromium.org>
Simon Glass6f98b752015-06-23 15:38:42 -06005 */
6
7#ifndef __REGMAP_H
8#define __REGMAP_H
9
10/**
11 * struct regmap_range - a register map range
12 *
13 * @start: Start address
14 * @size: Size in bytes
15 */
16struct regmap_range {
17 ulong start;
18 ulong size;
19};
20
21/**
22 * struct regmap - a way of accessing hardware/bus registers
23 *
Mario Six604b6692018-10-04 09:00:41 +020024 * @range_count: Number of ranges available within the map
25 * @ranges: Array of ranges
Simon Glass6f98b752015-06-23 15:38:42 -060026 */
27struct regmap {
Simon Glass6f98b752015-06-23 15:38:42 -060028 int range_count;
Masahiro Yamada8c1de5e2018-04-19 12:14:01 +090029 struct regmap_range ranges[0];
Simon Glass6f98b752015-06-23 15:38:42 -060030};
31
32/*
33 * Interface to provide access to registers either through a direct memory
34 * bus or through a peripheral bus like I2C, SPI.
35 */
Mario Six604b6692018-10-04 09:00:41 +020036
37/**
38 * regmap_write() - Write a 32-bit value to a regmap
39 *
40 * @map: Regmap to write to
41 * @offset: Offset in the regmap to write to
42 * @val: Data to write to the regmap at the specified offset
43 *
44 * Return: 0 if OK, -ve on error
45 */
Simon Glass6f98b752015-06-23 15:38:42 -060046int regmap_write(struct regmap *map, uint offset, uint val);
Mario Six604b6692018-10-04 09:00:41 +020047
48/**
49 * regmap_read() - Read a 32-bit value from a regmap
50 *
51 * @map: Regmap to read from
52 * @offset: Offset in the regmap to read from
53 * @valp: Pointer to the buffer to receive the data read from the regmap
54 * at the specified offset
55 *
56 * Return: 0 if OK, -ve on error
57 */
Simon Glass6f98b752015-06-23 15:38:42 -060058int regmap_read(struct regmap *map, uint offset, uint *valp);
59
60#define regmap_write32(map, ptr, member, val) \
61 regmap_write(map, (uint32_t *)(ptr)->member - (uint32_t *)(ptr), val)
62
63#define regmap_read32(map, ptr, member, valp) \
64 regmap_read(map, (uint32_t *)(ptr)->member - (uint32_t *)(ptr), valp)
65
66/**
Neil Armstrong285cbcf2018-04-27 11:56:14 +020067 * regmap_update_bits() - Perform a read/modify/write using a mask
68 *
69 * @map: The map returned by regmap_init_mem*()
70 * @offset: Offset of the memory
71 * @mask: Mask to apply to the read value
72 * @val: Value to apply to the value to write
Mario Six604b6692018-10-04 09:00:41 +020073 * Return: 0 if OK, -ve on error
Neil Armstrong285cbcf2018-04-27 11:56:14 +020074 */
75int regmap_update_bits(struct regmap *map, uint offset, uint mask, uint val);
76
77/**
Simon Glass6f98b752015-06-23 15:38:42 -060078 * regmap_init_mem() - Set up a new register map that uses memory access
79 *
Masahiro Yamadad3581232018-04-19 12:14:03 +090080 * @node: Device node that uses this map
Simon Glass6f98b752015-06-23 15:38:42 -060081 * @mapp: Returns allocated map
Mario Six604b6692018-10-04 09:00:41 +020082 * Return: 0 if OK, -ve on error
83 *
84 * Use regmap_uninit() to free it.
Simon Glass6f98b752015-06-23 15:38:42 -060085 */
Masahiro Yamadad3581232018-04-19 12:14:03 +090086int regmap_init_mem(ofnode node, struct regmap **mapp);
Simon Glass6f98b752015-06-23 15:38:42 -060087
Simon Glass1e6ca1a2016-07-04 11:58:22 -060088/**
Mario Six604b6692018-10-04 09:00:41 +020089 * regmap_init_mem_platdata() - Set up a new memory register map for
90 * of-platdata
91 *
92 * @dev: Device that uses this map
93 * @reg: List of address, size pairs
94 * @count: Number of pairs (e.g. 1 if the regmap has a single entry)
95 * @mapp: Returns allocated map
96 * Return: 0 if OK, -ve on error
Simon Glass1e6ca1a2016-07-04 11:58:22 -060097 *
98 * This creates a new regmap with a list of regions passed in, rather than
99 * using the device tree. It only supports 32-bit machines.
100 *
101 * Use regmap_uninit() to free it.
102 *
Simon Glass1e6ca1a2016-07-04 11:58:22 -0600103 */
Simon Glassc20ee0e2017-08-29 14:15:50 -0600104int regmap_init_mem_platdata(struct udevice *dev, fdt_val_t *reg, int count,
Simon Glass3b2a29e2016-07-04 11:57:59 -0600105 struct regmap **mapp);
106
Simon Glass6f98b752015-06-23 15:38:42 -0600107/**
108 * regmap_get_range() - Obtain the base memory address of a regmap range
109 *
110 * @map: Regmap to query
111 * @range_num: Range to look up
Mario Six604b6692018-10-04 09:00:41 +0200112 * Return: Pointer to the range in question if OK, NULL on error
Simon Glass6f98b752015-06-23 15:38:42 -0600113 */
114void *regmap_get_range(struct regmap *map, unsigned int range_num);
115
116/**
117 * regmap_uninit() - free a previously inited regmap
Mario Six604b6692018-10-04 09:00:41 +0200118 *
119 * @map: Regmap to free
120 * Return: 0 if OK, -ve on error
Simon Glass6f98b752015-06-23 15:38:42 -0600121 */
122int regmap_uninit(struct regmap *map);
123
124#endif