Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Simon Glass | d6ffb00 | 2017-05-17 17:18:04 -0600 | [diff] [blame] | 2 | /* |
| 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 Glass | d6ffb00 | 2017-05-17 17:18:04 -0600 | [diff] [blame] | 8 | */ |
| 9 | |
Simon Glass | 38d21b4 | 2017-05-18 20:08:59 -0600 | [diff] [blame] | 10 | #ifndef _DM_FDTADDR_H |
| 11 | #define _DM_FDTADDR_H |
Simon Glass | d6ffb00 | 2017-05-17 17:18:04 -0600 | [diff] [blame] | 12 | |
| 13 | #include <fdtdec.h> |
| 14 | |
| 15 | struct udevice; |
| 16 | |
| 17 | /** |
Simon Glass | a821c4a | 2017-05-17 17:18:05 -0600 | [diff] [blame] | 18 | * devfdt_get_addr() - Get the reg property of a device |
Simon Glass | d6ffb00 | 2017-05-17 17:18:04 -0600 | [diff] [blame] | 19 | * |
| 20 | * @dev: Pointer to a device |
| 21 | * |
Patrick Delaunay | 5ebb527 | 2022-01-12 10:55:41 +0100 | [diff] [blame] | 22 | * Return: addr |
Simon Glass | d6ffb00 | 2017-05-17 17:18:04 -0600 | [diff] [blame] | 23 | */ |
Simon Glass | d975ce2 | 2020-01-27 08:49:39 -0700 | [diff] [blame] | 24 | fdt_addr_t devfdt_get_addr(const struct udevice *dev); |
Simon Glass | d6ffb00 | 2017-05-17 17:18:04 -0600 | [diff] [blame] | 25 | |
| 26 | /** |
Simon Glass | a821c4a | 2017-05-17 17:18:05 -0600 | [diff] [blame] | 27 | * devfdt_get_addr_ptr() - Return pointer to the address of the reg property |
Simon Glass | d6ffb00 | 2017-05-17 17:18:04 -0600 | [diff] [blame] | 28 | * of a device |
| 29 | * |
| 30 | * @dev: Pointer to a device |
| 31 | * |
Patrick Delaunay | 5ebb527 | 2022-01-12 10:55:41 +0100 | [diff] [blame] | 32 | * Return: Pointer to addr, or NULL if there is no such property |
Simon Glass | d6ffb00 | 2017-05-17 17:18:04 -0600 | [diff] [blame] | 33 | */ |
Simon Glass | d975ce2 | 2020-01-27 08:49:39 -0700 | [diff] [blame] | 34 | void *devfdt_get_addr_ptr(const struct udevice *dev); |
Simon Glass | d6ffb00 | 2017-05-17 17:18:04 -0600 | [diff] [blame] | 35 | |
| 36 | /** |
Álvaro Fernández Rojas | 30a90f5 | 2018-04-29 21:56:54 +0200 | [diff] [blame] | 37 | * 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 Delaunay | 5ebb527 | 2022-01-12 10:55:41 +0100 | [diff] [blame] | 42 | * Return: Pointer to addr, or NULL if there is no such property |
Álvaro Fernández Rojas | 30a90f5 | 2018-04-29 21:56:54 +0200 | [diff] [blame] | 43 | */ |
Simon Glass | d975ce2 | 2020-01-27 08:49:39 -0700 | [diff] [blame] | 44 | void *devfdt_remap_addr(const struct udevice *dev); |
Álvaro Fernández Rojas | 30a90f5 | 2018-04-29 21:56:54 +0200 | [diff] [blame] | 45 | |
| 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 Delaunay | 5ebb527 | 2022-01-12 10:55:41 +0100 | [diff] [blame] | 54 | * Return: Pointer to addr, or NULL if there is no such property |
Álvaro Fernández Rojas | 30a90f5 | 2018-04-29 21:56:54 +0200 | [diff] [blame] | 55 | */ |
Simon Glass | d975ce2 | 2020-01-27 08:49:39 -0700 | [diff] [blame] | 56 | void *devfdt_remap_addr_index(const struct udevice *dev, int index); |
Álvaro Fernández Rojas | 30a90f5 | 2018-04-29 21:56:54 +0200 | [diff] [blame] | 57 | |
| 58 | /** |
Álvaro Fernández Rojas | 7959882 | 2018-12-03 19:37:09 +0100 | [diff] [blame] | 59 | * 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 |
| 62 | * 'reg-names' property providing named-based identification. @index |
| 63 | * indicates the value to search for in 'reg-names'. |
| 64 | * |
| 65 | * @dev: Pointer to a device |
| 66 | * |
Patrick Delaunay | 5ebb527 | 2022-01-12 10:55:41 +0100 | [diff] [blame] | 67 | * Return: Pointer to addr, or NULL if there is no such property |
Álvaro Fernández Rojas | 7959882 | 2018-12-03 19:37:09 +0100 | [diff] [blame] | 68 | */ |
Simon Glass | d975ce2 | 2020-01-27 08:49:39 -0700 | [diff] [blame] | 69 | void *devfdt_remap_addr_name(const struct udevice *dev, const char *name); |
Álvaro Fernández Rojas | 7959882 | 2018-12-03 19:37:09 +0100 | [diff] [blame] | 70 | |
| 71 | /** |
Simon Glass | a821c4a | 2017-05-17 17:18:05 -0600 | [diff] [blame] | 72 | * devfdt_map_physmem() - Read device address from reg property of the |
Simon Glass | d6ffb00 | 2017-05-17 17:18:04 -0600 | [diff] [blame] | 73 | * 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 Delaunay | 5ebb527 | 2022-01-12 10:55:41 +0100 | [diff] [blame] | 79 | * Return: mapped address, or NULL if the device does not have reg property. |
Simon Glass | d6ffb00 | 2017-05-17 17:18:04 -0600 | [diff] [blame] | 80 | */ |
Simon Glass | d975ce2 | 2020-01-27 08:49:39 -0700 | [diff] [blame] | 81 | void *devfdt_map_physmem(const struct udevice *dev, unsigned long size); |
Simon Glass | d6ffb00 | 2017-05-17 17:18:04 -0600 | [diff] [blame] | 82 | |
| 83 | /** |
Simon Glass | a821c4a | 2017-05-17 17:18:05 -0600 | [diff] [blame] | 84 | * devfdt_get_addr_index() - Get the indexed reg property of a device |
Simon Glass | d6ffb00 | 2017-05-17 17:18:04 -0600 | [diff] [blame] | 85 | * |
| 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 | * |
Patrick Delaunay | 5ebb527 | 2022-01-12 10:55:41 +0100 | [diff] [blame] | 90 | * Return: addr |
Simon Glass | d6ffb00 | 2017-05-17 17:18:04 -0600 | [diff] [blame] | 91 | */ |
Simon Glass | d975ce2 | 2020-01-27 08:49:39 -0700 | [diff] [blame] | 92 | fdt_addr_t devfdt_get_addr_index(const struct udevice *dev, int index); |
Simon Glass | d6ffb00 | 2017-05-17 17:18:04 -0600 | [diff] [blame] | 93 | |
| 94 | /** |
Bin Meng | fb9bec8 | 2021-09-12 11:15:12 +0800 | [diff] [blame] | 95 | * 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 Delaunay | 5ebb527 | 2022-01-12 10:55:41 +0100 | [diff] [blame] | 102 | * Return: Pointer to addr, or NULL if there is no such property |
Bin Meng | fb9bec8 | 2021-09-12 11:15:12 +0800 | [diff] [blame] | 103 | */ |
| 104 | void *devfdt_get_addr_index_ptr(const struct udevice *dev, int index); |
| 105 | |
| 106 | /** |
Simon Glass | a821c4a | 2017-05-17 17:18:05 -0600 | [diff] [blame] | 107 | * devfdt_get_addr_size_index() - Get the indexed reg property of a device |
Simon Glass | d6ffb00 | 2017-05-17 17:18:04 -0600 | [diff] [blame] | 108 | * |
| 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 |
| 114 | * @size: Pointer to size varible - this function returns the size |
| 115 | * specified in the 'reg' property here |
| 116 | * |
Patrick Delaunay | 5ebb527 | 2022-01-12 10:55:41 +0100 | [diff] [blame] | 117 | * Return: addr |
Simon Glass | d6ffb00 | 2017-05-17 17:18:04 -0600 | [diff] [blame] | 118 | */ |
Simon Glass | d975ce2 | 2020-01-27 08:49:39 -0700 | [diff] [blame] | 119 | fdt_addr_t devfdt_get_addr_size_index(const struct udevice *dev, int index, |
| 120 | fdt_size_t *size); |
Simon Glass | d6ffb00 | 2017-05-17 17:18:04 -0600 | [diff] [blame] | 121 | |
| 122 | /** |
Simon Glass | a821c4a | 2017-05-17 17:18:05 -0600 | [diff] [blame] | 123 | * devfdt_get_addr_name() - Get the reg property of a device, indexed by name |
Simon Glass | d6ffb00 | 2017-05-17 17:18:04 -0600 | [diff] [blame] | 124 | * |
| 125 | * @dev: Pointer to a device |
| 126 | * @name: the 'reg' property can hold a list of <addr, size> pairs, with the |
| 127 | * 'reg-names' property providing named-based identification. @index |
| 128 | * indicates the value to search for in 'reg-names'. |
| 129 | * |
Patrick Delaunay | 5ebb527 | 2022-01-12 10:55:41 +0100 | [diff] [blame] | 130 | * Return: addr |
Simon Glass | d6ffb00 | 2017-05-17 17:18:04 -0600 | [diff] [blame] | 131 | */ |
Simon Glass | d975ce2 | 2020-01-27 08:49:39 -0700 | [diff] [blame] | 132 | fdt_addr_t devfdt_get_addr_name(const struct udevice *dev, const char *name); |
Simon Glass | d6ffb00 | 2017-05-17 17:18:04 -0600 | [diff] [blame] | 133 | |
Sekhar Nori | f5b9047 | 2019-08-01 19:12:56 +0530 | [diff] [blame] | 134 | /** |
| 135 | * devfdt_get_addr_size_name() - Get the reg property and its size for a device, |
| 136 | * indexed by name |
| 137 | * |
| 138 | * Returns the address and size specified in the 'reg' property of a device. |
| 139 | * |
| 140 | * @dev: Pointer to a device |
| 141 | * @name: the 'reg' property can hold a list of <addr, size> pairs, with the |
| 142 | * 'reg-names' property providing named-based identification. @index |
| 143 | * indicates the value to search for in 'reg-names'. |
| 144 | * @size: Pointer to size variable - this function returns the size |
| 145 | * specified in the 'reg' property here |
| 146 | * |
Patrick Delaunay | 5ebb527 | 2022-01-12 10:55:41 +0100 | [diff] [blame] | 147 | * Return: addr |
Sekhar Nori | f5b9047 | 2019-08-01 19:12:56 +0530 | [diff] [blame] | 148 | */ |
Simon Glass | d975ce2 | 2020-01-27 08:49:39 -0700 | [diff] [blame] | 149 | fdt_addr_t devfdt_get_addr_size_name(const struct udevice *dev, |
| 150 | const char *name, fdt_size_t *size); |
Sekhar Nori | f5b9047 | 2019-08-01 19:12:56 +0530 | [diff] [blame] | 151 | |
Simon Glass | 33c215a | 2019-09-15 12:08:58 -0600 | [diff] [blame] | 152 | /** |
| 153 | * devfdt_get_addr_pci() - Read an address and handle PCI address translation |
| 154 | * |
| 155 | * @dev: Device to read from |
Patrick Delaunay | 5ebb527 | 2022-01-12 10:55:41 +0100 | [diff] [blame] | 156 | * Return: address or FDT_ADDR_T_NONE if not found |
Simon Glass | 33c215a | 2019-09-15 12:08:58 -0600 | [diff] [blame] | 157 | */ |
Simon Glass | d975ce2 | 2020-01-27 08:49:39 -0700 | [diff] [blame] | 158 | fdt_addr_t devfdt_get_addr_pci(const struct udevice *dev); |
Simon Glass | 33c215a | 2019-09-15 12:08:58 -0600 | [diff] [blame] | 159 | |
Simon Glass | d6ffb00 | 2017-05-17 17:18:04 -0600 | [diff] [blame] | 160 | #endif |