blob: bf8132deb864a85ce6743f30608ba43470580351 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Simon Glassd6ffb002017-05-17 17:18:04 -06002/*
3 * Copyright (c) 2017 Google, Inc
4 *
5 * (C) Copyright 2012
6 * Pavel Herrmann <morpheus.ibis@gmail.com>
7 * Marek Vasut <marex@denx.de>
Simon Glassd6ffb002017-05-17 17:18:04 -06008 */
9
Simon Glass38d21b42017-05-18 20:08:59 -060010#ifndef _DM_FDTADDR_H
11#define _DM_FDTADDR_H
Simon Glassd6ffb002017-05-17 17:18:04 -060012
13#include <fdtdec.h>
14
15struct udevice;
16
17/**
Simon Glassa821c4a2017-05-17 17:18:05 -060018 * devfdt_get_addr() - Get the reg property of a device
Simon Glassd6ffb002017-05-17 17:18:04 -060019 *
20 * @dev: Pointer to a device
21 *
Matthias Schiffere42c4d62023-09-27 15:33:30 +020022 * Return: Address, or FDT_ADDR_T_NONE if there is no such property
Simon Glassd6ffb002017-05-17 17:18:04 -060023 */
Simon Glassd975ce22020-01-27 08:49:39 -070024fdt_addr_t devfdt_get_addr(const struct udevice *dev);
Simon Glassd6ffb002017-05-17 17:18:04 -060025
26/**
Simon Glassa821c4a2017-05-17 17:18:05 -060027 * devfdt_get_addr_ptr() - Return pointer to the address of the reg property
Simon Glassd6ffb002017-05-17 17:18:04 -060028 * of a device
29 *
30 * @dev: Pointer to a device
31 *
Patrick Delaunay5ebb5272022-01-12 10:55:41 +010032 * Return: Pointer to addr, or NULL if there is no such property
Simon Glassd6ffb002017-05-17 17:18:04 -060033 */
Simon Glassd975ce22020-01-27 08:49:39 -070034void *devfdt_get_addr_ptr(const struct udevice *dev);
Simon Glassd6ffb002017-05-17 17:18:04 -060035
36/**
Álvaro Fernández Rojas30a90f52018-04-29 21:56:54 +020037 * devfdt_remap_addr() - Return pointer to the memory-mapped I/O address
38 * of the reg property of a device
39 *
40 * @dev: Pointer to a device
41 *
Patrick Delaunay5ebb5272022-01-12 10:55:41 +010042 * Return: Pointer to addr, or NULL if there is no such property
Álvaro Fernández Rojas30a90f52018-04-29 21:56:54 +020043 */
Simon Glassd975ce22020-01-27 08:49:39 -070044void *devfdt_remap_addr(const struct udevice *dev);
Álvaro Fernández Rojas30a90f52018-04-29 21:56:54 +020045
46/**
47 * devfdt_remap_addr_index() - Return indexed pointer to the memory-mapped
48 * I/O address of the reg property of a device
49 * @index: the 'reg' property can hold a list of <addr, size> pairs
50 * and @index is used to select which one is required
51 *
52 * @dev: Pointer to a device
53 *
Patrick Delaunay5ebb5272022-01-12 10:55:41 +010054 * Return: Pointer to addr, or NULL if there is no such property
Álvaro Fernández Rojas30a90f52018-04-29 21:56:54 +020055 */
Simon Glassd975ce22020-01-27 08:49:39 -070056void *devfdt_remap_addr_index(const struct udevice *dev, int index);
Álvaro Fernández Rojas30a90f52018-04-29 21:56:54 +020057
58/**
Álvaro Fernández Rojas79598822018-12-03 19:37:09 +010059 * devfdt_remap_addr_name() - Get the reg property of a device, indexed by
60 * name, as a memory-mapped I/O pointer
61 * @name: the 'reg' property can hold a list of <addr, size> pairs, with the
Matthias Schiffere42c4d62023-09-27 15:33:30 +020062 * 'reg-names' property providing named-based identification. @name
Álvaro Fernández Rojas79598822018-12-03 19:37:09 +010063 * indicates the value to search for in 'reg-names'.
64 *
65 * @dev: Pointer to a device
66 *
Patrick Delaunay5ebb5272022-01-12 10:55:41 +010067 * Return: Pointer to addr, or NULL if there is no such property
Álvaro Fernández Rojas79598822018-12-03 19:37:09 +010068 */
Simon Glassd975ce22020-01-27 08:49:39 -070069void *devfdt_remap_addr_name(const struct udevice *dev, const char *name);
Álvaro Fernández Rojas79598822018-12-03 19:37:09 +010070
71/**
Simon Glassa821c4a2017-05-17 17:18:05 -060072 * devfdt_map_physmem() - Read device address from reg property of the
Simon Glassd6ffb002017-05-17 17:18:04 -060073 * device node and map the address into CPU address
74 * space.
75 *
76 * @dev: Pointer to device
77 * @size: size of the memory to map
78 *
Patrick Delaunay5ebb5272022-01-12 10:55:41 +010079 * Return: mapped address, or NULL if the device does not have reg property.
Simon Glassd6ffb002017-05-17 17:18:04 -060080 */
Simon Glassd975ce22020-01-27 08:49:39 -070081void *devfdt_map_physmem(const struct udevice *dev, unsigned long size);
Simon Glassd6ffb002017-05-17 17:18:04 -060082
83/**
Simon Glassa821c4a2017-05-17 17:18:05 -060084 * devfdt_get_addr_index() - Get the indexed reg property of a device
Simon Glassd6ffb002017-05-17 17:18:04 -060085 *
86 * @dev: Pointer to a device
87 * @index: the 'reg' property can hold a list of <addr, size> pairs
88 * and @index is used to select which one is required
89 *
Matthias Schiffere42c4d62023-09-27 15:33:30 +020090 * Return: Address, or FDT_ADDR_T_NONE if there is no such property
Simon Glassd6ffb002017-05-17 17:18:04 -060091 */
Simon Glassd975ce22020-01-27 08:49:39 -070092fdt_addr_t devfdt_get_addr_index(const struct udevice *dev, int index);
Simon Glassd6ffb002017-05-17 17:18:04 -060093
94/**
Bin Mengfb9bec82021-09-12 11:15:12 +080095 * devfdt_get_addr_index_ptr() - Return indexed pointer to the address of the
96 * reg property of a device
97 *
98 * @dev: Pointer to a device
99 * @index: the 'reg' property can hold a list of <addr, size> pairs
100 * and @index is used to select which one is required
101 *
Patrick Delaunay5ebb5272022-01-12 10:55:41 +0100102 * Return: Pointer to addr, or NULL if there is no such property
Bin Mengfb9bec82021-09-12 11:15:12 +0800103 */
104void *devfdt_get_addr_index_ptr(const struct udevice *dev, int index);
105
106/**
Simon Glassa821c4a2017-05-17 17:18:05 -0600107 * devfdt_get_addr_size_index() - Get the indexed reg property of a device
Simon Glassd6ffb002017-05-17 17:18:04 -0600108 *
109 * Returns the address and size specified in the 'reg' property of a device.
110 *
111 * @dev: Pointer to a device
112 * @index: the 'reg' property can hold a list of <addr, size> pairs
113 * and @index is used to select which one is required
Johan Jonkeraa4f61a2023-04-21 17:33:58 +0200114 * @size: Pointer to size variable - this function returns the size
Simon Glassd6ffb002017-05-17 17:18:04 -0600115 * specified in the 'reg' property here
116 *
Matthias Schiffere42c4d62023-09-27 15:33:30 +0200117 * Return: Address, or FDT_ADDR_T_NONE if there is no such property
Simon Glassd6ffb002017-05-17 17:18:04 -0600118 */
Simon Glassd975ce22020-01-27 08:49:39 -0700119fdt_addr_t devfdt_get_addr_size_index(const struct udevice *dev, int index,
120 fdt_size_t *size);
Simon Glassd6ffb002017-05-17 17:18:04 -0600121
122/**
Johan Jonkeraa4f61a2023-04-21 17:33:58 +0200123 * devfdt_get_addr_size_index_ptr() - Return indexed pointer to the address of the
124 * reg property of a device
125 *
126 * @dev: Pointer to a device
127 * @index: the 'reg' property can hold a list of <addr, size> pairs
128 * and @index is used to select which one is required
129 * @size: Pointer to size variable - this function returns the size
130 * specified in the 'reg' property here
131 *
132 * Return: Pointer to addr, or NULL if there is no such property
133 */
134void *devfdt_get_addr_size_index_ptr(const struct udevice *dev, int index,
135 fdt_size_t *size);
136
137/**
Simon Glassa821c4a2017-05-17 17:18:05 -0600138 * devfdt_get_addr_name() - Get the reg property of a device, indexed by name
Simon Glassd6ffb002017-05-17 17:18:04 -0600139 *
140 * @dev: Pointer to a device
141 * @name: the 'reg' property can hold a list of <addr, size> pairs, with the
Matthias Schiffere42c4d62023-09-27 15:33:30 +0200142 * 'reg-names' property providing named-based identification. @name
Simon Glassd6ffb002017-05-17 17:18:04 -0600143 * indicates the value to search for in 'reg-names'.
144 *
Matthias Schiffere3673052023-09-27 15:33:31 +0200145 * Return: Address, or FDT_ADDR_T_NONE if there is no such property
Simon Glassd6ffb002017-05-17 17:18:04 -0600146 */
Simon Glassd975ce22020-01-27 08:49:39 -0700147fdt_addr_t devfdt_get_addr_name(const struct udevice *dev, const char *name);
Simon Glassd6ffb002017-05-17 17:18:04 -0600148
Sekhar Norif5b90472019-08-01 19:12:56 +0530149/**
Matthias Schifferbc8fa1c2023-09-27 15:33:32 +0200150 * devfdt_get_addr_name_ptr() - Get the reg property of a device as a pointer,
151 * indexed by name
152 *
153 * @dev: Pointer to a device
154 * @name: the 'reg' property can hold a list of <addr, size> pairs, with the
155 * 'reg-names' property providing named-based identification. @name
156 * indicates the value to search for in 'reg-names'.
157 *
158 * Return: Pointer to addr, or NULL if there is no such property
159 */
160void *devfdt_get_addr_name_ptr(const struct udevice *dev, const char *name);
161
162/**
Sekhar Norif5b90472019-08-01 19:12:56 +0530163 * devfdt_get_addr_size_name() - Get the reg property and its size for a device,
164 * indexed by name
165 *
166 * Returns the address and size specified in the 'reg' property of a device.
167 *
168 * @dev: Pointer to a device
169 * @name: the 'reg' property can hold a list of <addr, size> pairs, with the
Matthias Schiffere42c4d62023-09-27 15:33:30 +0200170 * 'reg-names' property providing named-based identification. @name
Sekhar Norif5b90472019-08-01 19:12:56 +0530171 * indicates the value to search for in 'reg-names'.
172 * @size: Pointer to size variable - this function returns the size
173 * specified in the 'reg' property here
174 *
Matthias Schiffere3673052023-09-27 15:33:31 +0200175 * Return: Address, or FDT_ADDR_T_NONE if there is no such property
Sekhar Norif5b90472019-08-01 19:12:56 +0530176 */
Simon Glassd975ce22020-01-27 08:49:39 -0700177fdt_addr_t devfdt_get_addr_size_name(const struct udevice *dev,
178 const char *name, fdt_size_t *size);
Sekhar Norif5b90472019-08-01 19:12:56 +0530179
Simon Glass33c215a2019-09-15 12:08:58 -0600180/**
Matthias Schifferbc8fa1c2023-09-27 15:33:32 +0200181 * devfdt_get_addr_size_name_ptr() - Get the reg property for a device as a
182 * pointer, indexed by name
183 *
184 * Returns the address and size specified in the 'reg' property of a device.
185 *
186 * @dev: Pointer to a device
187 * @name: the 'reg' property can hold a list of <addr, size> pairs, with the
188 * 'reg-names' property providing named-based identification. @name
189 * indicates the value to search for in 'reg-names'.
190 * @size: Pointer to size variable - this function returns the size
191 * specified in the 'reg' property here
192 *
193 * Return: Pointer to addr, or NULL if there is no such property
194 */
195void *devfdt_get_addr_size_name_ptr(const struct udevice *dev,
196 const char *name, fdt_size_t *size);
197
198/**
Simon Glass33c215a2019-09-15 12:08:58 -0600199 * devfdt_get_addr_pci() - Read an address and handle PCI address translation
200 *
201 * @dev: Device to read from
Simon Glassf69d3d62023-09-26 08:14:58 -0600202 * @sizep: If non-NULL, returns size of address space
Patrick Delaunay5ebb5272022-01-12 10:55:41 +0100203 * Return: address or FDT_ADDR_T_NONE if not found
Simon Glass33c215a2019-09-15 12:08:58 -0600204 */
Simon Glassf69d3d62023-09-26 08:14:58 -0600205fdt_addr_t devfdt_get_addr_pci(const struct udevice *dev, fdt_size_t *sizep);
Simon Glass33c215a2019-09-15 12:08:58 -0600206
Simon Glassd6ffb002017-05-17 17:18:04 -0600207#endif