Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Simon Glass | 34ef0c2 | 2017-05-18 20:09:03 -0600 | [diff] [blame] | 2 | /* |
| 3 | * Function to read values from the device tree node attached to a udevice. |
| 4 | * |
| 5 | * Copyright (c) 2017 Google, Inc |
| 6 | * Written by Simon Glass <sjg@chromium.org> |
Simon Glass | 34ef0c2 | 2017-05-18 20:09:03 -0600 | [diff] [blame] | 7 | */ |
| 8 | |
| 9 | #ifndef _DM_READ_H |
| 10 | #define _DM_READ_H |
| 11 | |
Dan Murphy | d3aa90e | 2020-07-23 07:01:38 -0500 | [diff] [blame] | 12 | #include <linux/errno.h> |
| 13 | |
Simon Glass | 992b603 | 2020-07-19 10:15:39 -0600 | [diff] [blame] | 14 | #include <dm/device.h> |
Simon Glass | 34ef0c2 | 2017-05-18 20:09:03 -0600 | [diff] [blame] | 15 | #include <dm/fdtaddr.h> |
| 16 | #include <dm/ofnode.h> |
| 17 | #include <dm/uclass.h> |
| 18 | |
Simon Glass | 170e17c | 2017-06-12 06:21:29 -0600 | [diff] [blame] | 19 | struct resource; |
| 20 | |
Simon Glass | 34ef0c2 | 2017-05-18 20:09:03 -0600 | [diff] [blame] | 21 | #if CONFIG_IS_ENABLED(OF_LIVE) |
Simon Glass | 2f9a612 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 22 | static inline const struct device_node *dev_np(const struct udevice *dev) |
Simon Glass | 34ef0c2 | 2017-05-18 20:09:03 -0600 | [diff] [blame] | 23 | { |
Simon Glass | a7ece58 | 2020-12-19 10:40:14 -0700 | [diff] [blame] | 24 | return ofnode_to_np(dev_ofnode(dev)); |
Simon Glass | 34ef0c2 | 2017-05-18 20:09:03 -0600 | [diff] [blame] | 25 | } |
| 26 | #else |
Simon Glass | 2f9a612 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 27 | static inline const struct device_node *dev_np(const struct udevice *dev) |
Simon Glass | 34ef0c2 | 2017-05-18 20:09:03 -0600 | [diff] [blame] | 28 | { |
| 29 | return NULL; |
| 30 | } |
| 31 | #endif |
| 32 | |
Simon Glass | 77f7c1e | 2021-01-21 13:57:10 -0700 | [diff] [blame] | 33 | #if !defined(CONFIG_DM_DEV_READ_INLINE) || CONFIG_IS_ENABLED(OF_PLATDATA) |
Simon Glass | cfdae5c | 2017-05-18 20:09:04 -0600 | [diff] [blame] | 34 | /** |
Stefan Herbrechtsmeier | 1b090e6 | 2022-06-14 15:21:30 +0200 | [diff] [blame] | 35 | * dev_read_u8() - read a 8-bit integer from a device's DT property |
| 36 | * |
| 37 | * @dev: device to read DT property from |
| 38 | * @propname: name of the property to read from |
| 39 | * @outp: place to put value (if found) |
| 40 | * Return: 0 if OK, -ve on error |
| 41 | */ |
| 42 | int dev_read_u8(const struct udevice *dev, const char *propname, u8 *outp); |
| 43 | |
| 44 | /** |
| 45 | * dev_read_u8_default() - read a 8-bit integer from a device's DT property |
| 46 | * |
| 47 | * @dev: device to read DT property from |
| 48 | * @propname: name of the property to read from |
| 49 | * @def: default value to return if the property has no value |
| 50 | * Return: property value, or @def if not found |
| 51 | */ |
| 52 | u8 dev_read_u8_default(const struct udevice *dev, const char *propname, u8 def); |
| 53 | |
| 54 | /** |
| 55 | * dev_read_u16() - read a 16-bit integer from a device's DT property |
| 56 | * |
| 57 | * @dev: device to read DT property from |
| 58 | * @propname: name of the property to read from |
| 59 | * @outp: place to put value (if found) |
| 60 | * Return: 0 if OK, -ve on error |
| 61 | */ |
| 62 | int dev_read_u16(const struct udevice *dev, const char *propname, u16 *outp); |
| 63 | |
| 64 | /** |
| 65 | * dev_read_u16_default() - read a 16-bit integer from a device's DT property |
| 66 | * |
| 67 | * @dev: device to read DT property from |
| 68 | * @propname: name of the property to read from |
| 69 | * @def: default value to return if the property has no value |
| 70 | * Return: property value, or @def if not found |
| 71 | */ |
| 72 | u16 dev_read_u16_default(const struct udevice *dev, const char *propname, |
| 73 | u16 def); |
| 74 | |
| 75 | /** |
Masahiro Yamada | 71d115f | 2017-12-30 02:00:05 +0900 | [diff] [blame] | 76 | * dev_read_u32() - read a 32-bit integer from a device's DT property |
| 77 | * |
| 78 | * @dev: device to read DT property from |
| 79 | * @propname: name of the property to read from |
| 80 | * @outp: place to put value (if found) |
Patrick Delaunay | cb3d6d6 | 2022-01-12 10:53:48 +0100 | [diff] [blame] | 81 | * Return: 0 if OK, -ve on error |
Masahiro Yamada | 71d115f | 2017-12-30 02:00:05 +0900 | [diff] [blame] | 82 | */ |
Simon Glass | 2f9a612 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 83 | int dev_read_u32(const struct udevice *dev, const char *propname, u32 *outp); |
Masahiro Yamada | 71d115f | 2017-12-30 02:00:05 +0900 | [diff] [blame] | 84 | |
| 85 | /** |
Simon Glass | cfdae5c | 2017-05-18 20:09:04 -0600 | [diff] [blame] | 86 | * dev_read_u32_default() - read a 32-bit integer from a device's DT property |
| 87 | * |
| 88 | * @dev: device to read DT property from |
| 89 | * @propname: name of the property to read from |
| 90 | * @def: default value to return if the property has no value |
Patrick Delaunay | cb3d6d6 | 2022-01-12 10:53:48 +0100 | [diff] [blame] | 91 | * Return: property value, or @def if not found |
Simon Glass | cfdae5c | 2017-05-18 20:09:04 -0600 | [diff] [blame] | 92 | */ |
Simon Glass | 2f9a612 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 93 | int dev_read_u32_default(const struct udevice *dev, const char *propname, |
| 94 | int def); |
Simon Glass | 34ef0c2 | 2017-05-18 20:09:03 -0600 | [diff] [blame] | 95 | |
| 96 | /** |
Dario Binacchi | 81d80b5 | 2020-03-29 18:04:41 +0200 | [diff] [blame] | 97 | * dev_read_u32_index() - read an indexed 32-bit integer from a device's DT |
| 98 | * property |
| 99 | * |
| 100 | * @dev: device to read DT property from |
| 101 | * @propname: name of the property to read from |
| 102 | * @index: index of the integer to return |
| 103 | * @outp: place to put value (if found) |
Patrick Delaunay | cb3d6d6 | 2022-01-12 10:53:48 +0100 | [diff] [blame] | 104 | * Return: 0 if OK, -ve on error |
Dario Binacchi | 81d80b5 | 2020-03-29 18:04:41 +0200 | [diff] [blame] | 105 | */ |
| 106 | int dev_read_u32_index(struct udevice *dev, const char *propname, int index, |
| 107 | u32 *outp); |
| 108 | |
| 109 | /** |
| 110 | * dev_read_u32_index_default() - read an indexed 32-bit integer from a device's |
| 111 | * DT property |
| 112 | * |
| 113 | * @dev: device to read DT property from |
| 114 | * @propname: name of the property to read from |
| 115 | * @index: index of the integer to return |
| 116 | * @def: default value to return if the property has no value |
Patrick Delaunay | cb3d6d6 | 2022-01-12 10:53:48 +0100 | [diff] [blame] | 117 | * Return: property value, or @def if not found |
Dario Binacchi | 81d80b5 | 2020-03-29 18:04:41 +0200 | [diff] [blame] | 118 | */ |
| 119 | u32 dev_read_u32_index_default(struct udevice *dev, const char *propname, |
| 120 | int index, u32 def); |
| 121 | |
| 122 | /** |
Simon Glass | 6df01f9 | 2018-12-10 10:37:37 -0700 | [diff] [blame] | 123 | * dev_read_s32() - read a signed 32-bit integer from a device's DT property |
| 124 | * |
| 125 | * @dev: device to read DT property from |
| 126 | * @propname: name of the property to read from |
| 127 | * @outp: place to put value (if found) |
Patrick Delaunay | cb3d6d6 | 2022-01-12 10:53:48 +0100 | [diff] [blame] | 128 | * Return: 0 if OK, -ve on error |
Simon Glass | 6df01f9 | 2018-12-10 10:37:37 -0700 | [diff] [blame] | 129 | */ |
Simon Glass | 2f9a612 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 130 | int dev_read_s32(const struct udevice *dev, const char *propname, s32 *outp); |
Simon Glass | 6df01f9 | 2018-12-10 10:37:37 -0700 | [diff] [blame] | 131 | |
| 132 | /** |
| 133 | * dev_read_s32_default() - read a signed 32-bit int from a device's DT property |
| 134 | * |
| 135 | * @dev: device to read DT property from |
| 136 | * @propname: name of the property to read from |
| 137 | * @def: default value to return if the property has no value |
Patrick Delaunay | cb3d6d6 | 2022-01-12 10:53:48 +0100 | [diff] [blame] | 138 | * Return: property value, or @def if not found |
Simon Glass | 6df01f9 | 2018-12-10 10:37:37 -0700 | [diff] [blame] | 139 | */ |
Simon Glass | 2f9a612 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 140 | int dev_read_s32_default(const struct udevice *dev, const char *propname, |
| 141 | int def); |
Simon Glass | 6df01f9 | 2018-12-10 10:37:37 -0700 | [diff] [blame] | 142 | |
| 143 | /** |
| 144 | * dev_read_u32u() - read a 32-bit integer from a device's DT property |
| 145 | * |
| 146 | * This version uses a standard uint type. |
| 147 | * |
| 148 | * @dev: device to read DT property from |
| 149 | * @propname: name of the property to read from |
| 150 | * @outp: place to put value (if found) |
Patrick Delaunay | cb3d6d6 | 2022-01-12 10:53:48 +0100 | [diff] [blame] | 151 | * Return: 0 if OK, -ve on error |
Simon Glass | 6df01f9 | 2018-12-10 10:37:37 -0700 | [diff] [blame] | 152 | */ |
Simon Glass | 2f9a612 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 153 | int dev_read_u32u(const struct udevice *dev, const char *propname, uint *outp); |
Simon Glass | 6df01f9 | 2018-12-10 10:37:37 -0700 | [diff] [blame] | 154 | |
| 155 | /** |
T Karthik Reddy | 478860d | 2019-09-02 16:34:30 +0200 | [diff] [blame] | 156 | * dev_read_u64() - read a 64-bit integer from a device's DT property |
| 157 | * |
| 158 | * @dev: device to read DT property from |
| 159 | * @propname: name of the property to read from |
| 160 | * @outp: place to put value (if found) |
Patrick Delaunay | cb3d6d6 | 2022-01-12 10:53:48 +0100 | [diff] [blame] | 161 | * Return: 0 if OK, -ve on error |
T Karthik Reddy | 478860d | 2019-09-02 16:34:30 +0200 | [diff] [blame] | 162 | */ |
Simon Glass | 2f9a612 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 163 | int dev_read_u64(const struct udevice *dev, const char *propname, u64 *outp); |
T Karthik Reddy | 478860d | 2019-09-02 16:34:30 +0200 | [diff] [blame] | 164 | |
| 165 | /** |
| 166 | * dev_read_u64_default() - read a 64-bit integer from a device's DT property |
| 167 | * |
| 168 | * @dev: device to read DT property from |
| 169 | * @propname: name of the property to read from |
| 170 | * @def: default value to return if the property has no value |
Patrick Delaunay | cb3d6d6 | 2022-01-12 10:53:48 +0100 | [diff] [blame] | 171 | * Return: property value, or @def if not found |
T Karthik Reddy | 478860d | 2019-09-02 16:34:30 +0200 | [diff] [blame] | 172 | */ |
Simon Glass | 2f9a612 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 173 | u64 dev_read_u64_default(const struct udevice *dev, const char *propname, |
| 174 | u64 def); |
T Karthik Reddy | 478860d | 2019-09-02 16:34:30 +0200 | [diff] [blame] | 175 | |
| 176 | /** |
Simon Glass | 34ef0c2 | 2017-05-18 20:09:03 -0600 | [diff] [blame] | 177 | * dev_read_string() - Read a string from a device's DT property |
| 178 | * |
| 179 | * @dev: device to read DT property from |
| 180 | * @propname: name of the property to read |
Patrick Delaunay | cb3d6d6 | 2022-01-12 10:53:48 +0100 | [diff] [blame] | 181 | * Return: string from property value, or NULL if there is no such property |
Simon Glass | 34ef0c2 | 2017-05-18 20:09:03 -0600 | [diff] [blame] | 182 | */ |
Simon Glass | 2f9a612 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 183 | const char *dev_read_string(const struct udevice *dev, const char *propname); |
Simon Glass | 34ef0c2 | 2017-05-18 20:09:03 -0600 | [diff] [blame] | 184 | |
| 185 | /** |
| 186 | * dev_read_bool() - read a boolean value from a device's DT property |
| 187 | * |
| 188 | * @dev: device to read DT property from |
| 189 | * @propname: name of property to read |
Patrick Delaunay | cb3d6d6 | 2022-01-12 10:53:48 +0100 | [diff] [blame] | 190 | * Return: true if property is present (meaning true), false if not present |
Simon Glass | 34ef0c2 | 2017-05-18 20:09:03 -0600 | [diff] [blame] | 191 | */ |
Simon Glass | 2f9a612 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 192 | bool dev_read_bool(const struct udevice *dev, const char *propname); |
Simon Glass | 34ef0c2 | 2017-05-18 20:09:03 -0600 | [diff] [blame] | 193 | |
| 194 | /** |
| 195 | * dev_read_subnode() - find a named subnode of a device |
| 196 | * |
| 197 | * @dev: device whose DT node contains the subnode |
| 198 | * @subnode_name: name of subnode to find |
Patrick Delaunay | cb3d6d6 | 2022-01-12 10:53:48 +0100 | [diff] [blame] | 199 | * Return: reference to subnode (which can be invalid if there is no such |
Simon Glass | 34ef0c2 | 2017-05-18 20:09:03 -0600 | [diff] [blame] | 200 | * subnode) |
| 201 | */ |
Patrick Delaunay | cb3d6d6 | 2022-01-12 10:53:48 +0100 | [diff] [blame] | 202 | ofnode dev_read_subnode(const struct udevice *dev, const char *subnode_name); |
Simon Glass | 34ef0c2 | 2017-05-18 20:09:03 -0600 | [diff] [blame] | 203 | |
| 204 | /** |
| 205 | * dev_read_size() - read the size of a property |
| 206 | * |
| 207 | * @dev: device to check |
| 208 | * @propname: property to check |
Patrick Delaunay | cb3d6d6 | 2022-01-12 10:53:48 +0100 | [diff] [blame] | 209 | * Return: size of property if present, or -EINVAL if not |
Simon Glass | 34ef0c2 | 2017-05-18 20:09:03 -0600 | [diff] [blame] | 210 | */ |
Simon Glass | 2f9a612 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 211 | int dev_read_size(const struct udevice *dev, const char *propname); |
Simon Glass | 34ef0c2 | 2017-05-18 20:09:03 -0600 | [diff] [blame] | 212 | |
| 213 | /** |
| 214 | * dev_read_addr_index() - Get the indexed reg property of a device |
| 215 | * |
| 216 | * @dev: Device to read from |
| 217 | * @index: the 'reg' property can hold a list of <addr, size> pairs |
| 218 | * and @index is used to select which one is required |
| 219 | * |
Patrick Delaunay | cb3d6d6 | 2022-01-12 10:53:48 +0100 | [diff] [blame] | 220 | * Return: address or FDT_ADDR_T_NONE if not found |
Simon Glass | 34ef0c2 | 2017-05-18 20:09:03 -0600 | [diff] [blame] | 221 | */ |
Simon Glass | 2f9a612 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 222 | fdt_addr_t dev_read_addr_index(const struct udevice *dev, int index); |
Simon Glass | 34ef0c2 | 2017-05-18 20:09:03 -0600 | [diff] [blame] | 223 | |
| 224 | /** |
Bin Meng | 21cdfea | 2021-09-12 11:15:13 +0800 | [diff] [blame] | 225 | * dev_read_addr_index_ptr() - Get the indexed reg property of a device |
| 226 | * as a pointer |
| 227 | * |
| 228 | * @dev: Device to read from |
| 229 | * @index: the 'reg' property can hold a list of <addr, size> pairs |
| 230 | * and @index is used to select which one is required |
| 231 | * |
Patrick Delaunay | cb3d6d6 | 2022-01-12 10:53:48 +0100 | [diff] [blame] | 232 | * Return: pointer or NULL if not found |
Bin Meng | 21cdfea | 2021-09-12 11:15:13 +0800 | [diff] [blame] | 233 | */ |
| 234 | void *dev_read_addr_index_ptr(const struct udevice *dev, int index); |
| 235 | |
| 236 | /** |
Sekhar Nori | f677c6f | 2019-08-01 19:12:56 +0530 | [diff] [blame] | 237 | * dev_read_addr_size_index() - Get the indexed reg property of a device |
| 238 | * |
| 239 | * @dev: Device to read from |
| 240 | * @index: the 'reg' property can hold a list of <addr, size> pairs |
| 241 | * and @index is used to select which one is required |
| 242 | * @size: place to put size value (on success) |
| 243 | * |
Patrick Delaunay | cb3d6d6 | 2022-01-12 10:53:48 +0100 | [diff] [blame] | 244 | * Return: address or FDT_ADDR_T_NONE if not found |
Sekhar Nori | f677c6f | 2019-08-01 19:12:56 +0530 | [diff] [blame] | 245 | */ |
Simon Glass | 2f9a612 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 246 | fdt_addr_t dev_read_addr_size_index(const struct udevice *dev, int index, |
Sekhar Nori | f677c6f | 2019-08-01 19:12:56 +0530 | [diff] [blame] | 247 | fdt_size_t *size); |
| 248 | |
| 249 | /** |
Jonas Karlman | 3b00730 | 2023-07-22 13:30:15 +0000 | [diff] [blame] | 250 | * dev_read_addr_size_index_ptr() - Get the indexed reg property of a device |
| 251 | * as a pointer |
| 252 | * |
| 253 | * @dev: Device to read from |
| 254 | * @index: the 'reg' property can hold a list of <addr, size> pairs |
| 255 | * and @index is used to select which one is required |
| 256 | * @size: place to put size value (on success) |
| 257 | * |
| 258 | * Return: pointer or NULL if not found |
| 259 | */ |
| 260 | void *dev_read_addr_size_index_ptr(const struct udevice *dev, int index, |
| 261 | fdt_size_t *size); |
| 262 | |
| 263 | /** |
Ălvaro FernĂĄndez Rojas | 67036129 | 2018-04-29 21:56:54 +0200 | [diff] [blame] | 264 | * dev_remap_addr_index() - Get the indexed reg property of a device |
| 265 | * as a memory-mapped I/O pointer |
| 266 | * |
| 267 | * @dev: Device to read from |
| 268 | * @index: the 'reg' property can hold a list of <addr, size> pairs |
| 269 | * and @index is used to select which one is required |
| 270 | * |
Patrick Delaunay | cb3d6d6 | 2022-01-12 10:53:48 +0100 | [diff] [blame] | 271 | * Return: pointer or NULL if not found |
Ălvaro FernĂĄndez Rojas | 67036129 | 2018-04-29 21:56:54 +0200 | [diff] [blame] | 272 | */ |
Simon Glass | 2f9a612 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 273 | void *dev_remap_addr_index(const struct udevice *dev, int index); |
Ălvaro FernĂĄndez Rojas | 67036129 | 2018-04-29 21:56:54 +0200 | [diff] [blame] | 274 | |
| 275 | /** |
Ălvaro FernĂĄndez Rojas | a318115 | 2018-12-03 19:37:09 +0100 | [diff] [blame] | 276 | * dev_read_addr_name() - Get the reg property of a device, indexed by name |
| 277 | * |
| 278 | * @dev: Device to read from |
| 279 | * @name: the 'reg' property can hold a list of <addr, size> pairs, with the |
| 280 | * 'reg-names' property providing named-based identification. @index |
| 281 | * indicates the value to search for in 'reg-names'. |
| 282 | * |
Patrick Delaunay | cb3d6d6 | 2022-01-12 10:53:48 +0100 | [diff] [blame] | 283 | * Return: address or FDT_ADDR_T_NONE if not found |
Ălvaro FernĂĄndez Rojas | a318115 | 2018-12-03 19:37:09 +0100 | [diff] [blame] | 284 | */ |
Simon Glass | 2f9a612 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 285 | fdt_addr_t dev_read_addr_name(const struct udevice *dev, const char *name); |
Ălvaro FernĂĄndez Rojas | a318115 | 2018-12-03 19:37:09 +0100 | [diff] [blame] | 286 | |
| 287 | /** |
Sekhar Nori | f677c6f | 2019-08-01 19:12:56 +0530 | [diff] [blame] | 288 | * dev_read_addr_size_name() - Get the reg property of a device, indexed by name |
| 289 | * |
| 290 | * @dev: Device to read from |
| 291 | * @name: the 'reg' property can hold a list of <addr, size> pairs, with the |
| 292 | * 'reg-names' property providing named-based identification. @index |
| 293 | * indicates the value to search for in 'reg-names'. |
| 294 | * @size: place to put size value (on success) |
| 295 | * |
Patrick Delaunay | cb3d6d6 | 2022-01-12 10:53:48 +0100 | [diff] [blame] | 296 | * Return: address or FDT_ADDR_T_NONE if not found |
Sekhar Nori | f677c6f | 2019-08-01 19:12:56 +0530 | [diff] [blame] | 297 | */ |
Simon Glass | 2f9a612 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 298 | fdt_addr_t dev_read_addr_size_name(const struct udevice *dev, const char *name, |
Sekhar Nori | f677c6f | 2019-08-01 19:12:56 +0530 | [diff] [blame] | 299 | fdt_size_t *size); |
| 300 | |
| 301 | /** |
Ălvaro FernĂĄndez Rojas | a318115 | 2018-12-03 19:37:09 +0100 | [diff] [blame] | 302 | * dev_remap_addr_name() - Get the reg property of a device, indexed by name, |
| 303 | * as a memory-mapped I/O pointer |
| 304 | * |
| 305 | * @dev: Device to read from |
| 306 | * @name: the 'reg' property can hold a list of <addr, size> pairs, with the |
| 307 | * 'reg-names' property providing named-based identification. @index |
| 308 | * indicates the value to search for in 'reg-names'. |
| 309 | * |
Patrick Delaunay | cb3d6d6 | 2022-01-12 10:53:48 +0100 | [diff] [blame] | 310 | * Return: pointer or NULL if not found |
Ălvaro FernĂĄndez Rojas | a318115 | 2018-12-03 19:37:09 +0100 | [diff] [blame] | 311 | */ |
Simon Glass | 2f9a612 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 312 | void *dev_remap_addr_name(const struct udevice *dev, const char *name); |
Ălvaro FernĂĄndez Rojas | a318115 | 2018-12-03 19:37:09 +0100 | [diff] [blame] | 313 | |
| 314 | /** |
Simon Glass | 34ef0c2 | 2017-05-18 20:09:03 -0600 | [diff] [blame] | 315 | * dev_read_addr() - Get the reg property of a device |
| 316 | * |
| 317 | * @dev: Device to read from |
| 318 | * |
Patrick Delaunay | cb3d6d6 | 2022-01-12 10:53:48 +0100 | [diff] [blame] | 319 | * Return: address or FDT_ADDR_T_NONE if not found |
Simon Glass | 34ef0c2 | 2017-05-18 20:09:03 -0600 | [diff] [blame] | 320 | */ |
Simon Glass | 2f9a612 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 321 | fdt_addr_t dev_read_addr(const struct udevice *dev); |
Simon Glass | 34ef0c2 | 2017-05-18 20:09:03 -0600 | [diff] [blame] | 322 | |
| 323 | /** |
Philipp Tomsich | 7719b39 | 2017-09-11 22:04:12 +0200 | [diff] [blame] | 324 | * dev_read_addr_ptr() - Get the reg property of a device |
| 325 | * as a pointer |
| 326 | * |
| 327 | * @dev: Device to read from |
| 328 | * |
Patrick Delaunay | cb3d6d6 | 2022-01-12 10:53:48 +0100 | [diff] [blame] | 329 | * Return: pointer or NULL if not found |
Philipp Tomsich | 7719b39 | 2017-09-11 22:04:12 +0200 | [diff] [blame] | 330 | */ |
Simon Glass | 2f9a612 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 331 | void *dev_read_addr_ptr(const struct udevice *dev); |
Philipp Tomsich | 7719b39 | 2017-09-11 22:04:12 +0200 | [diff] [blame] | 332 | |
| 333 | /** |
Simon Glass | 23b2759 | 2019-09-15 12:08:58 -0600 | [diff] [blame] | 334 | * dev_read_addr_pci() - Read an address and handle PCI address translation |
| 335 | * |
| 336 | * At present U-Boot does not have address translation logic for PCI in the |
| 337 | * livetree implementation (of_addr.c). This special function supports this for |
| 338 | * the flat tree implementation. |
| 339 | * |
| 340 | * This function should be removed (and code should use dev_read() instead) |
| 341 | * once: |
| 342 | * |
| 343 | * 1. PCI address translation is added; and either |
| 344 | * 2. everything uses livetree where PCI translation is used (which is feasible |
| 345 | * in SPL and U-Boot proper) or PCI address translation is added to |
| 346 | * fdtdec_get_addr() and friends. |
| 347 | * |
| 348 | * @dev: Device to read from |
Patrick Delaunay | cb3d6d6 | 2022-01-12 10:53:48 +0100 | [diff] [blame] | 349 | * Return: address or FDT_ADDR_T_NONE if not found |
Simon Glass | 23b2759 | 2019-09-15 12:08:58 -0600 | [diff] [blame] | 350 | */ |
Simon Glass | 2f9a612 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 351 | fdt_addr_t dev_read_addr_pci(const struct udevice *dev); |
Simon Glass | 23b2759 | 2019-09-15 12:08:58 -0600 | [diff] [blame] | 352 | |
| 353 | /** |
Ălvaro FernĂĄndez Rojas | 67036129 | 2018-04-29 21:56:54 +0200 | [diff] [blame] | 354 | * dev_remap_addr() - Get the reg property of a device as a |
| 355 | * memory-mapped I/O pointer |
| 356 | * |
| 357 | * @dev: Device to read from |
| 358 | * |
Patrick Delaunay | cb3d6d6 | 2022-01-12 10:53:48 +0100 | [diff] [blame] | 359 | * Return: pointer or NULL if not found |
Ălvaro FernĂĄndez Rojas | 67036129 | 2018-04-29 21:56:54 +0200 | [diff] [blame] | 360 | */ |
Simon Glass | 2f9a612 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 361 | void *dev_remap_addr(const struct udevice *dev); |
Ălvaro FernĂĄndez Rojas | 67036129 | 2018-04-29 21:56:54 +0200 | [diff] [blame] | 362 | |
| 363 | /** |
John Keeping | ab62d0b | 2023-06-01 15:11:19 +0100 | [diff] [blame] | 364 | * dev_read_addr_size() - Get the reg property of a device |
Simon Glass | 34ef0c2 | 2017-05-18 20:09:03 -0600 | [diff] [blame] | 365 | * |
| 366 | * @dev: Device to read from |
Simon Glass | 34ef0c2 | 2017-05-18 20:09:03 -0600 | [diff] [blame] | 367 | * @sizep: place to put size value (on success) |
Patrick Delaunay | cb3d6d6 | 2022-01-12 10:53:48 +0100 | [diff] [blame] | 368 | * Return: address value, or FDT_ADDR_T_NONE on error |
Simon Glass | 34ef0c2 | 2017-05-18 20:09:03 -0600 | [diff] [blame] | 369 | */ |
John Keeping | ab62d0b | 2023-06-01 15:11:19 +0100 | [diff] [blame] | 370 | fdt_addr_t dev_read_addr_size(const struct udevice *dev, fdt_size_t *sizep); |
Simon Glass | 34ef0c2 | 2017-05-18 20:09:03 -0600 | [diff] [blame] | 371 | |
| 372 | /** |
| 373 | * dev_read_name() - get the name of a device's node |
| 374 | * |
Bin Meng | 4cf914d | 2019-07-05 09:23:18 -0700 | [diff] [blame] | 375 | * @dev: Device to read from |
Patrick Delaunay | cb3d6d6 | 2022-01-12 10:53:48 +0100 | [diff] [blame] | 376 | * Return: name of node |
Simon Glass | 34ef0c2 | 2017-05-18 20:09:03 -0600 | [diff] [blame] | 377 | */ |
Simon Glass | 2f9a612 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 378 | const char *dev_read_name(const struct udevice *dev); |
Simon Glass | 34ef0c2 | 2017-05-18 20:09:03 -0600 | [diff] [blame] | 379 | |
| 380 | /** |
| 381 | * dev_read_stringlist_search() - find string in a string list and return index |
| 382 | * |
| 383 | * Note that it is possible for this function to succeed on property values |
| 384 | * that are not NUL-terminated. That's because the function will stop after |
| 385 | * finding the first occurrence of @string. This can for example happen with |
| 386 | * small-valued cell properties, such as #address-cells, when searching for |
| 387 | * the empty string. |
| 388 | * |
| 389 | * @dev: device to check |
| 390 | * @propname: name of the property containing the string list |
| 391 | * @string: string to look up in the string list |
| 392 | * |
Patrick Delaunay | cb3d6d6 | 2022-01-12 10:53:48 +0100 | [diff] [blame] | 393 | * Return: |
Simon Glass | 34ef0c2 | 2017-05-18 20:09:03 -0600 | [diff] [blame] | 394 | * the index of the string in the list of strings |
| 395 | * -ENODATA if the property is not found |
| 396 | * -EINVAL on some other error |
| 397 | */ |
Patrick Delaunay | cb3d6d6 | 2022-01-12 10:53:48 +0100 | [diff] [blame] | 398 | int dev_read_stringlist_search(const struct udevice *dev, const char *propname, |
Simon Glass | 2f9a612 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 399 | const char *string); |
Simon Glass | 34ef0c2 | 2017-05-18 20:09:03 -0600 | [diff] [blame] | 400 | |
| 401 | /** |
Jean-Jacques Hiblot | 8365ebd | 2017-09-21 17:03:09 +0200 | [diff] [blame] | 402 | * dev_read_string_index() - obtain an indexed string from a string list |
| 403 | * |
| 404 | * @dev: device to examine |
| 405 | * @propname: name of the property containing the string list |
| 406 | * @index: index of the string to return |
Patrick Delaunay | cb3d6d6 | 2022-01-12 10:53:48 +0100 | [diff] [blame] | 407 | * @outp: return location for the string |
Jean-Jacques Hiblot | 8365ebd | 2017-09-21 17:03:09 +0200 | [diff] [blame] | 408 | * |
Patrick Delaunay | cb3d6d6 | 2022-01-12 10:53:48 +0100 | [diff] [blame] | 409 | * Return: |
Jean-Jacques Hiblot | 8365ebd | 2017-09-21 17:03:09 +0200 | [diff] [blame] | 410 | * length of string, if found or -ve error value if not found |
| 411 | */ |
Simon Glass | 2f9a612 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 412 | int dev_read_string_index(const struct udevice *dev, const char *propname, |
| 413 | int index, const char **outp); |
Jean-Jacques Hiblot | 8365ebd | 2017-09-21 17:03:09 +0200 | [diff] [blame] | 414 | |
| 415 | /** |
| 416 | * dev_read_string_count() - find the number of strings in a string list |
| 417 | * |
| 418 | * @dev: device to examine |
| 419 | * @propname: name of the property containing the string list |
Patrick Delaunay | cb3d6d6 | 2022-01-12 10:53:48 +0100 | [diff] [blame] | 420 | * Return: |
Jean-Jacques Hiblot | 8365ebd | 2017-09-21 17:03:09 +0200 | [diff] [blame] | 421 | * number of strings in the list, or -ve error value if not found |
| 422 | */ |
Simon Glass | 2f9a612 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 423 | int dev_read_string_count(const struct udevice *dev, const char *propname); |
Simon Glass | 9580bfc | 2021-10-23 17:26:07 -0600 | [diff] [blame] | 424 | |
| 425 | /** |
| 426 | * dev_read_string_list() - read a list of strings |
| 427 | * |
| 428 | * This produces a list of string pointers with each one pointing to a string |
| 429 | * in the string list. If the property does not exist, it returns {NULL}. |
| 430 | * |
| 431 | * The data is allocated and the caller is reponsible for freeing the return |
| 432 | * value (the list of string pointers). The strings themselves may not be |
| 433 | * changed as they point directly into the devicetree property. |
| 434 | * |
| 435 | * @dev: device to examine |
| 436 | * @propname: name of the property containing the string list |
| 437 | * @listp: returns an allocated, NULL-terminated list of strings if the return |
| 438 | * value is > 0, else is set to NULL |
Patrick Delaunay | cb3d6d6 | 2022-01-12 10:53:48 +0100 | [diff] [blame] | 439 | * Return: |
| 440 | * number of strings in list, 0 if none, -ENOMEM if out of memory, |
| 441 | * -ENOENT if no such property |
Simon Glass | 9580bfc | 2021-10-23 17:26:07 -0600 | [diff] [blame] | 442 | */ |
| 443 | int dev_read_string_list(const struct udevice *dev, const char *propname, |
| 444 | const char ***listp); |
| 445 | |
Jean-Jacques Hiblot | 8365ebd | 2017-09-21 17:03:09 +0200 | [diff] [blame] | 446 | /** |
Simon Glass | 34ef0c2 | 2017-05-18 20:09:03 -0600 | [diff] [blame] | 447 | * dev_read_phandle_with_args() - Find a node pointed by phandle in a list |
| 448 | * |
| 449 | * This function is useful to parse lists of phandles and their arguments. |
| 450 | * Returns 0 on success and fills out_args, on error returns appropriate |
| 451 | * errno value. |
| 452 | * |
| 453 | * Caller is responsible to call of_node_put() on the returned out_args->np |
| 454 | * pointer. |
| 455 | * |
| 456 | * Example: |
| 457 | * |
Patrick Delaunay | cb3d6d6 | 2022-01-12 10:53:48 +0100 | [diff] [blame] | 458 | * .. code-block:: |
Simon Glass | 34ef0c2 | 2017-05-18 20:09:03 -0600 | [diff] [blame] | 459 | * |
Patrick Delaunay | cb3d6d6 | 2022-01-12 10:53:48 +0100 | [diff] [blame] | 460 | * phandle1: node1 { |
| 461 | * #list-cells = <2>; |
| 462 | * }; |
| 463 | * phandle2: node2 { |
| 464 | * #list-cells = <1>; |
| 465 | * }; |
| 466 | * node3 { |
| 467 | * list = <&phandle1 1 2 &phandle2 3>; |
| 468 | * }; |
Simon Glass | 34ef0c2 | 2017-05-18 20:09:03 -0600 | [diff] [blame] | 469 | * |
| 470 | * To get a device_node of the `node2' node you may call this: |
| 471 | * dev_read_phandle_with_args(dev, "list", "#list-cells", 0, 1, &args); |
| 472 | * |
| 473 | * @dev: device whose node containing a list |
| 474 | * @list_name: property name that contains a list |
| 475 | * @cells_name: property name that specifies phandles' arguments count |
Patrick Delaunay | cb3d6d6 | 2022-01-12 10:53:48 +0100 | [diff] [blame] | 476 | * @cell_count: Cell count to use if @cells_name is NULL |
Simon Glass | 34ef0c2 | 2017-05-18 20:09:03 -0600 | [diff] [blame] | 477 | * @index: index of a phandle to parse out |
| 478 | * @out_args: optional pointer to output arguments structure (will be filled) |
Patrick Delaunay | cb3d6d6 | 2022-01-12 10:53:48 +0100 | [diff] [blame] | 479 | * Return: 0 on success (with @out_args filled out if not NULL), -ENOENT if |
Simon Glass | 34ef0c2 | 2017-05-18 20:09:03 -0600 | [diff] [blame] | 480 | * @list_name does not exist, -EINVAL if a phandle was not found, |
| 481 | * @cells_name could not be found, the arguments were truncated or there |
| 482 | * were too many arguments. |
| 483 | */ |
Simon Glass | 2f9a612 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 484 | int dev_read_phandle_with_args(const struct udevice *dev, const char *list_name, |
| 485 | const char *cells_name, int cell_count, |
| 486 | int index, struct ofnode_phandle_args *out_args); |
Simon Glass | 34ef0c2 | 2017-05-18 20:09:03 -0600 | [diff] [blame] | 487 | |
| 488 | /** |
Patrice Chotard | be7dd60 | 2017-07-18 11:57:08 +0200 | [diff] [blame] | 489 | * dev_count_phandle_with_args() - Return phandle number in a list |
| 490 | * |
| 491 | * This function is usefull to get phandle number contained in a property list. |
| 492 | * For example, this allows to allocate the right amount of memory to keep |
| 493 | * clock's reference contained into the "clocks" property. |
| 494 | * |
Patrice Chotard | be7dd60 | 2017-07-18 11:57:08 +0200 | [diff] [blame] | 495 | * @dev: device whose node containing a list |
| 496 | * @list_name: property name that contains a list |
| 497 | * @cells_name: property name that specifies phandles' arguments count |
Patrick Delaunay | cb3d6d6 | 2022-01-12 10:53:48 +0100 | [diff] [blame] | 498 | * @cell_count: Cell count to use if @cells_name is NULL |
| 499 | * Return: number of phandle found on success, on error returns appropriate |
Patrice Chotard | be7dd60 | 2017-07-18 11:57:08 +0200 | [diff] [blame] | 500 | * errno value. |
| 501 | */ |
| 502 | |
Simon Glass | 2f9a612 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 503 | int dev_count_phandle_with_args(const struct udevice *dev, |
Patrick Delaunay | d776a84 | 2020-09-25 09:41:14 +0200 | [diff] [blame] | 504 | const char *list_name, const char *cells_name, |
| 505 | int cell_count); |
Patrice Chotard | be7dd60 | 2017-07-18 11:57:08 +0200 | [diff] [blame] | 506 | |
| 507 | /** |
Simon Glass | 34ef0c2 | 2017-05-18 20:09:03 -0600 | [diff] [blame] | 508 | * dev_read_addr_cells() - Get the number of address cells for a device's node |
| 509 | * |
| 510 | * This walks back up the tree to find the closest #address-cells property |
| 511 | * which controls the given node. |
| 512 | * |
Mario Six | 16408ee | 2018-01-15 11:09:36 +0100 | [diff] [blame] | 513 | * @dev: device to check |
Patrick Delaunay | cb3d6d6 | 2022-01-12 10:53:48 +0100 | [diff] [blame] | 514 | * Return: number of address cells this node uses |
Simon Glass | 34ef0c2 | 2017-05-18 20:09:03 -0600 | [diff] [blame] | 515 | */ |
Simon Glass | 2f9a612 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 516 | int dev_read_addr_cells(const struct udevice *dev); |
Simon Glass | 34ef0c2 | 2017-05-18 20:09:03 -0600 | [diff] [blame] | 517 | |
| 518 | /** |
| 519 | * dev_read_size_cells() - Get the number of size cells for a device's node |
| 520 | * |
| 521 | * This walks back up the tree to find the closest #size-cells property |
| 522 | * which controls the given node. |
| 523 | * |
Mario Six | 16408ee | 2018-01-15 11:09:36 +0100 | [diff] [blame] | 524 | * @dev: device to check |
Patrick Delaunay | cb3d6d6 | 2022-01-12 10:53:48 +0100 | [diff] [blame] | 525 | * Return: number of size cells this node uses |
Simon Glass | 34ef0c2 | 2017-05-18 20:09:03 -0600 | [diff] [blame] | 526 | */ |
Simon Glass | 2f9a612 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 527 | int dev_read_size_cells(const struct udevice *dev); |
Simon Glass | 34ef0c2 | 2017-05-18 20:09:03 -0600 | [diff] [blame] | 528 | |
| 529 | /** |
Simon Glass | 4191dc1 | 2017-06-12 06:21:31 -0600 | [diff] [blame] | 530 | * dev_read_addr_cells() - Get the address cells property in a node |
| 531 | * |
| 532 | * This function matches fdt_address_cells(). |
| 533 | * |
Mario Six | 16408ee | 2018-01-15 11:09:36 +0100 | [diff] [blame] | 534 | * @dev: device to check |
Patrick Delaunay | cb3d6d6 | 2022-01-12 10:53:48 +0100 | [diff] [blame] | 535 | * Return: number of address cells this node uses |
Simon Glass | 4191dc1 | 2017-06-12 06:21:31 -0600 | [diff] [blame] | 536 | */ |
Simon Glass | 2f9a612 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 537 | int dev_read_simple_addr_cells(const struct udevice *dev); |
Simon Glass | 4191dc1 | 2017-06-12 06:21:31 -0600 | [diff] [blame] | 538 | |
| 539 | /** |
| 540 | * dev_read_size_cells() - Get the size cells property in a node |
| 541 | * |
| 542 | * This function matches fdt_size_cells(). |
| 543 | * |
Mario Six | 16408ee | 2018-01-15 11:09:36 +0100 | [diff] [blame] | 544 | * @dev: device to check |
Patrick Delaunay | cb3d6d6 | 2022-01-12 10:53:48 +0100 | [diff] [blame] | 545 | * Return: number of size cells this node uses |
Simon Glass | 4191dc1 | 2017-06-12 06:21:31 -0600 | [diff] [blame] | 546 | */ |
Simon Glass | 2f9a612 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 547 | int dev_read_simple_size_cells(const struct udevice *dev); |
Simon Glass | 4191dc1 | 2017-06-12 06:21:31 -0600 | [diff] [blame] | 548 | |
| 549 | /** |
Simon Glass | 34ef0c2 | 2017-05-18 20:09:03 -0600 | [diff] [blame] | 550 | * dev_read_phandle() - Get the phandle from a device |
| 551 | * |
| 552 | * @dev: device to check |
Patrick Delaunay | cb3d6d6 | 2022-01-12 10:53:48 +0100 | [diff] [blame] | 553 | * Return: phandle (1 or greater), or 0 if no phandle or other error |
Simon Glass | 34ef0c2 | 2017-05-18 20:09:03 -0600 | [diff] [blame] | 554 | */ |
Simon Glass | 2f9a612 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 555 | int dev_read_phandle(const struct udevice *dev); |
Simon Glass | 34ef0c2 | 2017-05-18 20:09:03 -0600 | [diff] [blame] | 556 | |
| 557 | /** |
| 558 | * dev_read_prop()- - read a property from a device's node |
| 559 | * |
| 560 | * @dev: device to check |
| 561 | * @propname: property to read |
| 562 | * @lenp: place to put length on success |
Patrick Delaunay | cb3d6d6 | 2022-01-12 10:53:48 +0100 | [diff] [blame] | 563 | * Return: pointer to property, or NULL if not found |
Simon Glass | 34ef0c2 | 2017-05-18 20:09:03 -0600 | [diff] [blame] | 564 | */ |
Simon Glass | 2f9a612 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 565 | const void *dev_read_prop(const struct udevice *dev, const char *propname, |
| 566 | int *lenp); |
Simon Glass | 34ef0c2 | 2017-05-18 20:09:03 -0600 | [diff] [blame] | 567 | |
| 568 | /** |
Patrick Delaunay | caee155 | 2020-01-13 11:34:56 +0100 | [diff] [blame] | 569 | * dev_read_first_prop()- get the reference of the first property |
| 570 | * |
| 571 | * Get reference to the first property of the node, it is used to iterate |
| 572 | * and read all the property with dev_read_prop_by_prop(). |
| 573 | * |
| 574 | * @dev: device to check |
| 575 | * @prop: place to put argument reference |
Patrick Delaunay | cb3d6d6 | 2022-01-12 10:53:48 +0100 | [diff] [blame] | 576 | * Return: 0 if OK, -ve on error. -FDT_ERR_NOTFOUND if not found |
Patrick Delaunay | caee155 | 2020-01-13 11:34:56 +0100 | [diff] [blame] | 577 | */ |
| 578 | int dev_read_first_prop(const struct udevice *dev, struct ofprop *prop); |
| 579 | |
| 580 | /** |
Simon Glass | fec058d | 2022-09-06 20:27:13 -0600 | [diff] [blame] | 581 | * ofnode_next_property() - get the reference of the next property |
Patrick Delaunay | caee155 | 2020-01-13 11:34:56 +0100 | [diff] [blame] | 582 | * |
| 583 | * Get reference to the next property of the node, it is used to iterate |
| 584 | * and read all the property with dev_read_prop_by_prop(). |
| 585 | * |
| 586 | * @prop: reference of current argument and place to put reference of next one |
Patrick Delaunay | cb3d6d6 | 2022-01-12 10:53:48 +0100 | [diff] [blame] | 587 | * Return: 0 if OK, -ve on error. -FDT_ERR_NOTFOUND if not found |
Patrick Delaunay | caee155 | 2020-01-13 11:34:56 +0100 | [diff] [blame] | 588 | */ |
| 589 | int dev_read_next_prop(struct ofprop *prop); |
| 590 | |
| 591 | /** |
| 592 | * dev_read_prop_by_prop() - get a pointer to the value of a property |
| 593 | * |
| 594 | * Get value for the property identified by the provided reference. |
| 595 | * |
| 596 | * @prop: reference on property |
| 597 | * @propname: If non-NULL, place to property name on success, |
| 598 | * @lenp: If non-NULL, place to put length on success |
Patrick Delaunay | cb3d6d6 | 2022-01-12 10:53:48 +0100 | [diff] [blame] | 599 | * Return: 0 if OK, -ve on error. -FDT_ERR_NOTFOUND if not found |
Patrick Delaunay | caee155 | 2020-01-13 11:34:56 +0100 | [diff] [blame] | 600 | */ |
| 601 | const void *dev_read_prop_by_prop(struct ofprop *prop, |
| 602 | const char **propname, int *lenp); |
| 603 | |
| 604 | /** |
Simon Glass | 34ef0c2 | 2017-05-18 20:09:03 -0600 | [diff] [blame] | 605 | * dev_read_alias_seq() - Get the alias sequence number of a node |
| 606 | * |
| 607 | * This works out whether a node is pointed to by an alias, and if so, the |
| 608 | * sequence number of that alias. Aliases are of the form <base><num> where |
| 609 | * <num> is the sequence number. For example spi2 would be sequence number 2. |
| 610 | * |
| 611 | * @dev: device to look up |
| 612 | * @devnump: set to the sequence number if one is found |
Patrick Delaunay | cb3d6d6 | 2022-01-12 10:53:48 +0100 | [diff] [blame] | 613 | * Return: 0 if a sequence was found, -ve if not |
Simon Glass | 34ef0c2 | 2017-05-18 20:09:03 -0600 | [diff] [blame] | 614 | */ |
Simon Glass | 2f9a612 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 615 | int dev_read_alias_seq(const struct udevice *dev, int *devnump); |
Simon Glass | 34ef0c2 | 2017-05-18 20:09:03 -0600 | [diff] [blame] | 616 | |
| 617 | /** |
| 618 | * dev_read_u32_array() - Find and read an array of 32 bit integers |
| 619 | * |
| 620 | * Search for a property in a device node and read 32-bit value(s) from |
| 621 | * it. |
| 622 | * |
| 623 | * The out_values is modified only if a valid u32 value can be decoded. |
| 624 | * |
| 625 | * @dev: device to look up |
| 626 | * @propname: name of the property to read |
| 627 | * @out_values: pointer to return value, modified only if return value is 0 |
| 628 | * @sz: number of array elements to read |
Patrick Delaunay | cb3d6d6 | 2022-01-12 10:53:48 +0100 | [diff] [blame] | 629 | * Return: 0 on success, -EINVAL if the property does not exist, -ENODATA if |
Simon Glass | 34ef0c2 | 2017-05-18 20:09:03 -0600 | [diff] [blame] | 630 | * property does not have a value, and -EOVERFLOW if the property data isn't |
| 631 | * large enough. |
| 632 | */ |
Simon Glass | 2f9a612 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 633 | int dev_read_u32_array(const struct udevice *dev, const char *propname, |
Simon Glass | cfdae5c | 2017-05-18 20:09:04 -0600 | [diff] [blame] | 634 | u32 *out_values, size_t sz); |
Simon Glass | 34ef0c2 | 2017-05-18 20:09:03 -0600 | [diff] [blame] | 635 | |
| 636 | /** |
| 637 | * dev_read_first_subnode() - find the first subnode of a device's node |
| 638 | * |
| 639 | * @dev: device to look up |
Patrick Delaunay | cb3d6d6 | 2022-01-12 10:53:48 +0100 | [diff] [blame] | 640 | * Return: reference to the first subnode (which can be invalid if the device's |
Simon Glass | 34ef0c2 | 2017-05-18 20:09:03 -0600 | [diff] [blame] | 641 | * node has no subnodes) |
| 642 | */ |
Simon Glass | 2f9a612 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 643 | ofnode dev_read_first_subnode(const struct udevice *dev); |
Simon Glass | 34ef0c2 | 2017-05-18 20:09:03 -0600 | [diff] [blame] | 644 | |
| 645 | /** |
| 646 | * ofnode_next_subnode() - find the next sibling of a subnode |
| 647 | * |
| 648 | * @node: valid reference to previous node (sibling) |
Patrick Delaunay | cb3d6d6 | 2022-01-12 10:53:48 +0100 | [diff] [blame] | 649 | * Return: reference to the next subnode (which can be invalid if the node |
Simon Glass | 34ef0c2 | 2017-05-18 20:09:03 -0600 | [diff] [blame] | 650 | * has no more siblings) |
| 651 | */ |
Simon Glass | cfdae5c | 2017-05-18 20:09:04 -0600 | [diff] [blame] | 652 | ofnode dev_read_next_subnode(ofnode node); |
Simon Glass | 34ef0c2 | 2017-05-18 20:09:03 -0600 | [diff] [blame] | 653 | |
| 654 | /** |
| 655 | * dev_read_u8_array_ptr() - find an 8-bit array |
| 656 | * |
| 657 | * Look up a device's node property and return a pointer to its contents as a |
| 658 | * byte array of given length. The property must have at least enough data |
| 659 | * for the array (count bytes). It may have more, but this will be ignored. |
| 660 | * The data is not copied. |
| 661 | * |
| 662 | * @dev: device to look up |
| 663 | * @propname: name of property to find |
| 664 | * @sz: number of array elements |
Patrick Delaunay | cb3d6d6 | 2022-01-12 10:53:48 +0100 | [diff] [blame] | 665 | * Return: |
| 666 | * pointer to byte array if found, or NULL if the property is not found or |
| 667 | * there is not enough data |
Simon Glass | 34ef0c2 | 2017-05-18 20:09:03 -0600 | [diff] [blame] | 668 | */ |
Simon Glass | 2f9a612 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 669 | const uint8_t *dev_read_u8_array_ptr(const struct udevice *dev, |
| 670 | const char *propname, size_t sz); |
Simon Glass | cfdae5c | 2017-05-18 20:09:04 -0600 | [diff] [blame] | 671 | |
Simon Glass | fa031f8 | 2017-06-12 06:21:30 -0600 | [diff] [blame] | 672 | /** |
| 673 | * dev_read_enabled() - check whether a node is enabled |
| 674 | * |
| 675 | * This looks for a 'status' property. If this exists, then returns 1 if |
| 676 | * the status is 'ok' and 0 otherwise. If there is no status property, |
| 677 | * it returns 1 on the assumption that anything mentioned should be enabled |
| 678 | * by default. |
| 679 | * |
| 680 | * @dev: device to examine |
Patrick Delaunay | cb3d6d6 | 2022-01-12 10:53:48 +0100 | [diff] [blame] | 681 | * Return: integer value 0 (not enabled) or 1 (enabled) |
Simon Glass | fa031f8 | 2017-06-12 06:21:30 -0600 | [diff] [blame] | 682 | */ |
Simon Glass | 2f9a612 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 683 | int dev_read_enabled(const struct udevice *dev); |
Simon Glass | fa031f8 | 2017-06-12 06:21:30 -0600 | [diff] [blame] | 684 | |
Simon Glass | f7bfcc4 | 2017-07-25 08:29:55 -0600 | [diff] [blame] | 685 | /** |
| 686 | * dev_read_resource() - obtain an indexed resource from a device. |
| 687 | * |
Masahiro Yamada | 4dada2c | 2017-08-26 01:12:30 +0900 | [diff] [blame] | 688 | * @dev: device to examine |
Patrick Delaunay | cb3d6d6 | 2022-01-12 10:53:48 +0100 | [diff] [blame] | 689 | * @index: index of the resource to retrieve (0 = first) |
| 690 | * @res: returns the resource |
| 691 | * Return: 0 if ok, negative on error |
Simon Glass | f7bfcc4 | 2017-07-25 08:29:55 -0600 | [diff] [blame] | 692 | */ |
Simon Glass | 2f9a612 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 693 | int dev_read_resource(const struct udevice *dev, uint index, |
| 694 | struct resource *res); |
Simon Glass | f7bfcc4 | 2017-07-25 08:29:55 -0600 | [diff] [blame] | 695 | |
Masahiro Yamada | 4dada2c | 2017-08-26 01:12:30 +0900 | [diff] [blame] | 696 | /** |
| 697 | * dev_read_resource_byname() - obtain a named resource from a device. |
| 698 | * |
| 699 | * @dev: device to examine |
| 700 | * @name: name of the resource to retrieve |
| 701 | * @res: returns the resource |
Patrick Delaunay | cb3d6d6 | 2022-01-12 10:53:48 +0100 | [diff] [blame] | 702 | * Return: 0 if ok, negative on error |
Masahiro Yamada | 4dada2c | 2017-08-26 01:12:30 +0900 | [diff] [blame] | 703 | */ |
Simon Glass | 2f9a612 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 704 | int dev_read_resource_byname(const struct udevice *dev, const char *name, |
Masahiro Yamada | 4dada2c | 2017-08-26 01:12:30 +0900 | [diff] [blame] | 705 | struct resource *res); |
| 706 | |
Mario Six | aefac06 | 2018-01-15 11:07:19 +0100 | [diff] [blame] | 707 | /** |
Fabien Dessenne | 22236e0 | 2019-05-31 15:11:30 +0200 | [diff] [blame] | 708 | * dev_translate_address() - Translate a device-tree address |
Mario Six | aefac06 | 2018-01-15 11:07:19 +0100 | [diff] [blame] | 709 | * |
| 710 | * Translate an address from the device-tree into a CPU physical address. This |
| 711 | * function walks up the tree and applies the various bus mappings along the |
| 712 | * way. |
| 713 | * |
| 714 | * @dev: device giving the context in which to translate the address |
| 715 | * @in_addr: pointer to the address to translate |
Patrick Delaunay | cb3d6d6 | 2022-01-12 10:53:48 +0100 | [diff] [blame] | 716 | * Return: the translated address; OF_BAD_ADDR on error |
Mario Six | aefac06 | 2018-01-15 11:07:19 +0100 | [diff] [blame] | 717 | */ |
Simon Glass | 2f9a612 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 718 | u64 dev_translate_address(const struct udevice *dev, const fdt32_t *in_addr); |
Michal Simek | d0e30a0 | 2019-01-31 16:30:59 +0100 | [diff] [blame] | 719 | |
| 720 | /** |
Fabien Dessenne | 22236e0 | 2019-05-31 15:11:30 +0200 | [diff] [blame] | 721 | * dev_translate_dma_address() - Translate a device-tree DMA address |
| 722 | * |
| 723 | * Translate a DMA address from the device-tree into a CPU physical address. |
| 724 | * This function walks up the tree and applies the various bus mappings along |
| 725 | * the way. |
| 726 | * |
| 727 | * @dev: device giving the context in which to translate the DMA address |
| 728 | * @in_addr: pointer to the DMA address to translate |
Patrick Delaunay | cb3d6d6 | 2022-01-12 10:53:48 +0100 | [diff] [blame] | 729 | * Return: the translated DMA address; OF_BAD_ADDR on error |
Fabien Dessenne | 22236e0 | 2019-05-31 15:11:30 +0200 | [diff] [blame] | 730 | */ |
Simon Glass | 2f9a612 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 731 | u64 dev_translate_dma_address(const struct udevice *dev, |
| 732 | const fdt32_t *in_addr); |
Fabien Dessenne | 22236e0 | 2019-05-31 15:11:30 +0200 | [diff] [blame] | 733 | |
| 734 | /** |
Nicolas Saenz Julienne | 50d2fa4 | 2021-01-12 13:55:22 +0100 | [diff] [blame] | 735 | * dev_get_dma_range() - Get a device's DMA constraints |
| 736 | * |
| 737 | * Provide the address bases and size of the linear mapping between the CPU and |
| 738 | * a device's BUS address space. |
| 739 | * |
| 740 | * @dev: device giving the context in which to translate the DMA address |
| 741 | * @cpu: base address for CPU's view of memory |
| 742 | * @bus: base address for BUS's view of memory |
| 743 | * @size: size of the address space |
Patrick Delaunay | cb3d6d6 | 2022-01-12 10:53:48 +0100 | [diff] [blame] | 744 | * Return: 0 if ok, negative on error |
Nicolas Saenz Julienne | 50d2fa4 | 2021-01-12 13:55:22 +0100 | [diff] [blame] | 745 | */ |
| 746 | int dev_get_dma_range(const struct udevice *dev, phys_addr_t *cpu, |
| 747 | dma_addr_t *bus, u64 *size); |
| 748 | |
| 749 | /** |
Michal Simek | d0e30a0 | 2019-01-31 16:30:59 +0100 | [diff] [blame] | 750 | * dev_read_alias_highest_id - Get highest alias id for the given stem |
| 751 | * @stem: Alias stem to be examined |
| 752 | * |
| 753 | * The function travels the lookup table to get the highest alias id for the |
| 754 | * given alias stem. |
Patrick Delaunay | cb3d6d6 | 2022-01-12 10:53:48 +0100 | [diff] [blame] | 755 | * Return: alias ID, if found, else -1 |
Michal Simek | d0e30a0 | 2019-01-31 16:30:59 +0100 | [diff] [blame] | 756 | */ |
| 757 | int dev_read_alias_highest_id(const char *stem); |
| 758 | |
developer | d93c8b4 | 2020-05-02 11:35:09 +0200 | [diff] [blame] | 759 | /** |
| 760 | * dev_get_child_count() - get the child count of a device |
| 761 | * |
Patrick Delaunay | cb3d6d6 | 2022-01-12 10:53:48 +0100 | [diff] [blame] | 762 | * @dev: device to use for interation (`struct udevice *`) |
| 763 | * Return: the count of child subnode |
developer | d93c8b4 | 2020-05-02 11:35:09 +0200 | [diff] [blame] | 764 | */ |
| 765 | int dev_get_child_count(const struct udevice *dev); |
| 766 | |
Stefan Roese | 0a9ecc5 | 2020-08-05 13:56:11 +0200 | [diff] [blame] | 767 | /** |
| 768 | * dev_read_pci_bus_range - Read PCI bus-range resource |
| 769 | * |
| 770 | * Look at the bus range property of a device node and return the pci bus |
| 771 | * range for this node. |
| 772 | * |
| 773 | * @dev: device to examine |
Patrick Delaunay | cb3d6d6 | 2022-01-12 10:53:48 +0100 | [diff] [blame] | 774 | * @res: returns the resource |
| 775 | * Return: 0 if ok, negative on error |
Stefan Roese | 0a9ecc5 | 2020-08-05 13:56:11 +0200 | [diff] [blame] | 776 | */ |
| 777 | int dev_read_pci_bus_range(const struct udevice *dev, struct resource *res); |
| 778 | |
Dario Binacchi | 836cc9d | 2020-12-30 00:16:26 +0100 | [diff] [blame] | 779 | /** |
| 780 | * dev_decode_display_timing() - decode display timings |
| 781 | * |
| 782 | * Decode display timings from the supplied 'display-timings' node. |
| 783 | * See doc/device-tree-bindings/video/display-timing.txt for binding |
| 784 | * information. |
| 785 | * |
| 786 | * @dev: device to read DT display timings from. The node linked to the device |
| 787 | * contains a child node called 'display-timings' which in turn contains |
| 788 | * one or more display timing nodes. |
| 789 | * @index: index number to read (0=first timing subnode) |
| 790 | * @config: place to put timings |
Patrick Delaunay | cb3d6d6 | 2022-01-12 10:53:48 +0100 | [diff] [blame] | 791 | * Return: 0 if OK, -FDT_ERR_NOTFOUND if not found |
Dario Binacchi | 836cc9d | 2020-12-30 00:16:26 +0100 | [diff] [blame] | 792 | */ |
| 793 | int dev_decode_display_timing(const struct udevice *dev, int index, |
| 794 | struct display_timing *config); |
| 795 | |
Marek BehĂșn | f4f1ddc | 2022-04-07 00:32:57 +0200 | [diff] [blame] | 796 | /** |
Nikhil M Jain | ff40706 | 2023-01-31 15:35:14 +0530 | [diff] [blame] | 797 | * dev_decode_panel_timing() - decode panel timings |
| 798 | * |
| 799 | * Decode display timings from the supplied 'panel-timings' node. |
| 800 | * |
| 801 | * @dev: device to read DT display timings from. The node linked to the device |
| 802 | * contains a child node called 'display-timings' which in turn contains |
| 803 | * one or more display timing nodes. |
| 804 | * @config: place to put timings |
| 805 | * Return: 0 if OK, -FDT_ERR_NOTFOUND if not found |
| 806 | */ |
| 807 | int dev_decode_panel_timing(const struct udevice *dev, |
| 808 | struct display_timing *config); |
| 809 | |
| 810 | /** |
Marek BehĂșn | f4f1ddc | 2022-04-07 00:32:57 +0200 | [diff] [blame] | 811 | * dev_get_phy_node() - Get PHY node for a MAC (if not fixed-link) |
| 812 | * |
| 813 | * This function parses PHY handle from the Ethernet controller's ofnode |
| 814 | * (trying all possible PHY handle property names), and returns the PHY ofnode. |
| 815 | * |
| 816 | * Before this is used, ofnode_phy_is_fixed_link() should be checked first, and |
| 817 | * if the result to that is true, this function should not be called. |
| 818 | * |
| 819 | * @dev: device representing the MAC |
| 820 | * Return: ofnode of the PHY, if it exists, otherwise an invalid ofnode |
| 821 | */ |
| 822 | ofnode dev_get_phy_node(const struct udevice *dev); |
| 823 | |
Marek BehĂșn | bc19477 | 2022-04-07 00:33:01 +0200 | [diff] [blame] | 824 | /** |
| 825 | * dev_read_phy_mode() - Read PHY connection type from a MAC |
| 826 | * |
| 827 | * This function parses the "phy-mode" / "phy-connection-type" property and |
| 828 | * returns the corresponding PHY interface type. |
| 829 | * |
| 830 | * @dev: device representing the MAC |
Marek BehĂșn | 48631e4 | 2022-04-07 00:33:03 +0200 | [diff] [blame] | 831 | * Return: one of PHY_INTERFACE_MODE_* constants, PHY_INTERFACE_MODE_NA on |
Marek BehĂșn | bc19477 | 2022-04-07 00:33:01 +0200 | [diff] [blame] | 832 | * error |
| 833 | */ |
| 834 | phy_interface_t dev_read_phy_mode(const struct udevice *dev); |
| 835 | |
Simon Glass | cfdae5c | 2017-05-18 20:09:04 -0600 | [diff] [blame] | 836 | #else /* CONFIG_DM_DEV_READ_INLINE is enabled */ |
Simon Glass | 3ba929a | 2020-10-30 21:38:53 -0600 | [diff] [blame] | 837 | #include <asm/global_data.h> |
Simon Glass | cfdae5c | 2017-05-18 20:09:04 -0600 | [diff] [blame] | 838 | |
Stefan Herbrechtsmeier | 1b090e6 | 2022-06-14 15:21:30 +0200 | [diff] [blame] | 839 | static inline int dev_read_u8(const struct udevice *dev, |
| 840 | const char *propname, u8 *outp) |
| 841 | { |
| 842 | return ofnode_read_u8(dev_ofnode(dev), propname, outp); |
| 843 | } |
| 844 | |
| 845 | static inline int dev_read_u8_default(const struct udevice *dev, |
| 846 | const char *propname, u8 def) |
| 847 | { |
| 848 | return ofnode_read_u8_default(dev_ofnode(dev), propname, def); |
| 849 | } |
| 850 | |
| 851 | static inline int dev_read_u16(const struct udevice *dev, |
| 852 | const char *propname, u16 *outp) |
| 853 | { |
| 854 | return ofnode_read_u16(dev_ofnode(dev), propname, outp); |
| 855 | } |
| 856 | |
| 857 | static inline int dev_read_u16_default(const struct udevice *dev, |
| 858 | const char *propname, u16 def) |
| 859 | { |
| 860 | return ofnode_read_u16_default(dev_ofnode(dev), propname, def); |
| 861 | } |
| 862 | |
Simon Glass | 2f9a612 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 863 | static inline int dev_read_u32(const struct udevice *dev, |
Masahiro Yamada | 71d115f | 2017-12-30 02:00:05 +0900 | [diff] [blame] | 864 | const char *propname, u32 *outp) |
| 865 | { |
| 866 | return ofnode_read_u32(dev_ofnode(dev), propname, outp); |
| 867 | } |
| 868 | |
Simon Glass | 2f9a612 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 869 | static inline int dev_read_u32_default(const struct udevice *dev, |
Simon Glass | cfdae5c | 2017-05-18 20:09:04 -0600 | [diff] [blame] | 870 | const char *propname, int def) |
| 871 | { |
| 872 | return ofnode_read_u32_default(dev_ofnode(dev), propname, def); |
| 873 | } |
| 874 | |
Dario Binacchi | 81d80b5 | 2020-03-29 18:04:41 +0200 | [diff] [blame] | 875 | static inline int dev_read_u32_index(struct udevice *dev, |
| 876 | const char *propname, int index, u32 *outp) |
| 877 | { |
| 878 | return ofnode_read_u32_index(dev_ofnode(dev), propname, index, outp); |
| 879 | } |
| 880 | |
| 881 | static inline u32 dev_read_u32_index_default(struct udevice *dev, |
| 882 | const char *propname, int index, |
| 883 | u32 def) |
| 884 | { |
| 885 | return ofnode_read_u32_index_default(dev_ofnode(dev), propname, index, |
| 886 | def); |
| 887 | } |
| 888 | |
Simon Glass | 2f9a612 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 889 | static inline int dev_read_s32(const struct udevice *dev, |
Simon Glass | 6df01f9 | 2018-12-10 10:37:37 -0700 | [diff] [blame] | 890 | const char *propname, s32 *outp) |
| 891 | { |
| 892 | return ofnode_read_s32(dev_ofnode(dev), propname, outp); |
| 893 | } |
| 894 | |
Simon Glass | 2f9a612 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 895 | static inline int dev_read_s32_default(const struct udevice *dev, |
Simon Glass | 6df01f9 | 2018-12-10 10:37:37 -0700 | [diff] [blame] | 896 | const char *propname, int def) |
| 897 | { |
| 898 | return ofnode_read_s32_default(dev_ofnode(dev), propname, def); |
| 899 | } |
| 900 | |
Simon Glass | 2f9a612 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 901 | static inline int dev_read_u32u(const struct udevice *dev, |
Simon Glass | 6df01f9 | 2018-12-10 10:37:37 -0700 | [diff] [blame] | 902 | const char *propname, uint *outp) |
| 903 | { |
| 904 | u32 val; |
| 905 | int ret; |
| 906 | |
| 907 | ret = ofnode_read_u32(dev_ofnode(dev), propname, &val); |
| 908 | if (ret) |
| 909 | return ret; |
| 910 | *outp = val; |
| 911 | |
| 912 | return 0; |
| 913 | } |
| 914 | |
Simon Glass | 2f9a612 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 915 | static inline int dev_read_u64(const struct udevice *dev, |
T Karthik Reddy | 478860d | 2019-09-02 16:34:30 +0200 | [diff] [blame] | 916 | const char *propname, u64 *outp) |
| 917 | { |
| 918 | return ofnode_read_u64(dev_ofnode(dev), propname, outp); |
| 919 | } |
| 920 | |
Simon Glass | 2f9a612 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 921 | static inline u64 dev_read_u64_default(const struct udevice *dev, |
T Karthik Reddy | 478860d | 2019-09-02 16:34:30 +0200 | [diff] [blame] | 922 | const char *propname, u64 def) |
| 923 | { |
| 924 | return ofnode_read_u64_default(dev_ofnode(dev), propname, def); |
| 925 | } |
| 926 | |
Simon Glass | 2f9a612 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 927 | static inline const char *dev_read_string(const struct udevice *dev, |
Simon Glass | cfdae5c | 2017-05-18 20:09:04 -0600 | [diff] [blame] | 928 | const char *propname) |
| 929 | { |
| 930 | return ofnode_read_string(dev_ofnode(dev), propname); |
| 931 | } |
| 932 | |
Simon Glass | 2f9a612 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 933 | static inline bool dev_read_bool(const struct udevice *dev, |
| 934 | const char *propname) |
Simon Glass | cfdae5c | 2017-05-18 20:09:04 -0600 | [diff] [blame] | 935 | { |
| 936 | return ofnode_read_bool(dev_ofnode(dev), propname); |
| 937 | } |
| 938 | |
Simon Glass | 2f9a612 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 939 | static inline ofnode dev_read_subnode(const struct udevice *dev, |
Simon Glass | cfdae5c | 2017-05-18 20:09:04 -0600 | [diff] [blame] | 940 | const char *subbnode_name) |
| 941 | { |
| 942 | return ofnode_find_subnode(dev_ofnode(dev), subbnode_name); |
| 943 | } |
| 944 | |
Simon Glass | 2f9a612 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 945 | static inline int dev_read_size(const struct udevice *dev, const char *propname) |
Simon Glass | cfdae5c | 2017-05-18 20:09:04 -0600 | [diff] [blame] | 946 | { |
| 947 | return ofnode_read_size(dev_ofnode(dev), propname); |
| 948 | } |
| 949 | |
Simon Glass | 2f9a612 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 950 | static inline fdt_addr_t dev_read_addr_index(const struct udevice *dev, |
| 951 | int index) |
Simon Glass | cfdae5c | 2017-05-18 20:09:04 -0600 | [diff] [blame] | 952 | { |
| 953 | return devfdt_get_addr_index(dev, index); |
| 954 | } |
| 955 | |
Bin Meng | 21cdfea | 2021-09-12 11:15:13 +0800 | [diff] [blame] | 956 | static inline void *dev_read_addr_index_ptr(const struct udevice *dev, |
| 957 | int index) |
| 958 | { |
| 959 | return devfdt_get_addr_index_ptr(dev, index); |
| 960 | } |
| 961 | |
Simon Glass | 2f9a612 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 962 | static inline fdt_addr_t dev_read_addr_size_index(const struct udevice *dev, |
Sekhar Nori | f677c6f | 2019-08-01 19:12:56 +0530 | [diff] [blame] | 963 | int index, |
| 964 | fdt_size_t *size) |
| 965 | { |
| 966 | return devfdt_get_addr_size_index(dev, index, size); |
| 967 | } |
| 968 | |
Jonas Karlman | 3b00730 | 2023-07-22 13:30:15 +0000 | [diff] [blame] | 969 | static inline void *dev_read_addr_size_index_ptr(const struct udevice *dev, |
| 970 | int index, |
| 971 | fdt_size_t *size) |
| 972 | { |
| 973 | return devfdt_get_addr_size_index_ptr(dev, index, size); |
| 974 | } |
| 975 | |
Simon Glass | 2f9a612 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 976 | static inline fdt_addr_t dev_read_addr_name(const struct udevice *dev, |
Ălvaro FernĂĄndez Rojas | a318115 | 2018-12-03 19:37:09 +0100 | [diff] [blame] | 977 | const char *name) |
| 978 | { |
| 979 | return devfdt_get_addr_name(dev, name); |
| 980 | } |
| 981 | |
Simon Glass | 2f9a612 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 982 | static inline fdt_addr_t dev_read_addr_size_name(const struct udevice *dev, |
Sekhar Nori | f677c6f | 2019-08-01 19:12:56 +0530 | [diff] [blame] | 983 | const char *name, |
| 984 | fdt_size_t *size) |
| 985 | { |
| 986 | return devfdt_get_addr_size_name(dev, name, size); |
| 987 | } |
| 988 | |
Simon Glass | 2f9a612 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 989 | static inline fdt_addr_t dev_read_addr(const struct udevice *dev) |
Simon Glass | cfdae5c | 2017-05-18 20:09:04 -0600 | [diff] [blame] | 990 | { |
| 991 | return devfdt_get_addr(dev); |
| 992 | } |
| 993 | |
Simon Glass | 2f9a612 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 994 | static inline void *dev_read_addr_ptr(const struct udevice *dev) |
Philipp Tomsich | 7719b39 | 2017-09-11 22:04:12 +0200 | [diff] [blame] | 995 | { |
Ovidiu Panait | a633f00 | 2020-08-03 22:17:35 +0300 | [diff] [blame] | 996 | return devfdt_get_addr_ptr(dev); |
Philipp Tomsich | 7719b39 | 2017-09-11 22:04:12 +0200 | [diff] [blame] | 997 | } |
| 998 | |
Simon Glass | 2f9a612 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 999 | static inline fdt_addr_t dev_read_addr_pci(const struct udevice *dev) |
Simon Glass | 23b2759 | 2019-09-15 12:08:58 -0600 | [diff] [blame] | 1000 | { |
| 1001 | return devfdt_get_addr_pci(dev); |
| 1002 | } |
| 1003 | |
Simon Glass | 2f9a612 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 1004 | static inline void *dev_remap_addr(const struct udevice *dev) |
Ălvaro FernĂĄndez Rojas | 67036129 | 2018-04-29 21:56:54 +0200 | [diff] [blame] | 1005 | { |
| 1006 | return devfdt_remap_addr(dev); |
| 1007 | } |
| 1008 | |
Simon Glass | 2f9a612 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 1009 | static inline void *dev_remap_addr_index(const struct udevice *dev, int index) |
Ălvaro FernĂĄndez Rojas | 67036129 | 2018-04-29 21:56:54 +0200 | [diff] [blame] | 1010 | { |
| 1011 | return devfdt_remap_addr_index(dev, index); |
| 1012 | } |
| 1013 | |
Simon Glass | 2f9a612 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 1014 | static inline void *dev_remap_addr_name(const struct udevice *dev, |
| 1015 | const char *name) |
Ălvaro FernĂĄndez Rojas | a318115 | 2018-12-03 19:37:09 +0100 | [diff] [blame] | 1016 | { |
| 1017 | return devfdt_remap_addr_name(dev, name); |
| 1018 | } |
| 1019 | |
Simon Glass | 2f9a612 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 1020 | static inline fdt_addr_t dev_read_addr_size(const struct udevice *dev, |
Simon Glass | cfdae5c | 2017-05-18 20:09:04 -0600 | [diff] [blame] | 1021 | fdt_size_t *sizep) |
| 1022 | { |
John Keeping | ab62d0b | 2023-06-01 15:11:19 +0100 | [diff] [blame] | 1023 | return dev_read_addr_size_index(dev, 0, sizep); |
Simon Glass | cfdae5c | 2017-05-18 20:09:04 -0600 | [diff] [blame] | 1024 | } |
| 1025 | |
Simon Glass | 2f9a612 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 1026 | static inline const char *dev_read_name(const struct udevice *dev) |
Simon Glass | cfdae5c | 2017-05-18 20:09:04 -0600 | [diff] [blame] | 1027 | { |
| 1028 | return ofnode_get_name(dev_ofnode(dev)); |
| 1029 | } |
| 1030 | |
Simon Glass | 2f9a612 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 1031 | static inline int dev_read_stringlist_search(const struct udevice *dev, |
Simon Glass | cfdae5c | 2017-05-18 20:09:04 -0600 | [diff] [blame] | 1032 | const char *propname, |
| 1033 | const char *string) |
| 1034 | { |
| 1035 | return ofnode_stringlist_search(dev_ofnode(dev), propname, string); |
| 1036 | } |
| 1037 | |
Simon Glass | 2f9a612 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 1038 | static inline int dev_read_string_index(const struct udevice *dev, |
Jean-Jacques Hiblot | 8365ebd | 2017-09-21 17:03:09 +0200 | [diff] [blame] | 1039 | const char *propname, int index, |
| 1040 | const char **outp) |
| 1041 | { |
| 1042 | return ofnode_read_string_index(dev_ofnode(dev), propname, index, outp); |
| 1043 | } |
| 1044 | |
Simon Glass | 2f9a612 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 1045 | static inline int dev_read_string_count(const struct udevice *dev, |
Jean-Jacques Hiblot | 8365ebd | 2017-09-21 17:03:09 +0200 | [diff] [blame] | 1046 | const char *propname) |
| 1047 | { |
| 1048 | return ofnode_read_string_count(dev_ofnode(dev), propname); |
| 1049 | } |
| 1050 | |
Simon Glass | 9580bfc | 2021-10-23 17:26:07 -0600 | [diff] [blame] | 1051 | static inline int dev_read_string_list(const struct udevice *dev, |
| 1052 | const char *propname, |
| 1053 | const char ***listp) |
| 1054 | { |
| 1055 | return ofnode_read_string_list(dev_ofnode(dev), propname, listp); |
| 1056 | } |
| 1057 | |
Simon Glass | 2f9a612 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 1058 | static inline int dev_read_phandle_with_args(const struct udevice *dev, |
Simon Glass | cfdae5c | 2017-05-18 20:09:04 -0600 | [diff] [blame] | 1059 | const char *list_name, const char *cells_name, int cell_count, |
| 1060 | int index, struct ofnode_phandle_args *out_args) |
| 1061 | { |
| 1062 | return ofnode_parse_phandle_with_args(dev_ofnode(dev), list_name, |
| 1063 | cells_name, cell_count, index, |
| 1064 | out_args); |
| 1065 | } |
| 1066 | |
Simon Glass | 2f9a612 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 1067 | static inline int dev_count_phandle_with_args(const struct udevice *dev, |
Patrick Delaunay | d776a84 | 2020-09-25 09:41:14 +0200 | [diff] [blame] | 1068 | const char *list_name, const char *cells_name, int cell_count) |
Patrice Chotard | be7dd60 | 2017-07-18 11:57:08 +0200 | [diff] [blame] | 1069 | { |
| 1070 | return ofnode_count_phandle_with_args(dev_ofnode(dev), list_name, |
Patrick Delaunay | d776a84 | 2020-09-25 09:41:14 +0200 | [diff] [blame] | 1071 | cells_name, cell_count); |
Patrice Chotard | be7dd60 | 2017-07-18 11:57:08 +0200 | [diff] [blame] | 1072 | } |
| 1073 | |
Simon Glass | 2f9a612 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 1074 | static inline int dev_read_addr_cells(const struct udevice *dev) |
Simon Glass | cfdae5c | 2017-05-18 20:09:04 -0600 | [diff] [blame] | 1075 | { |
Heinrich Schuchardt | 60a84af | 2020-07-25 21:38:49 +0200 | [diff] [blame] | 1076 | int parent = fdt_parent_offset(gd->fdt_blob, dev_of_offset(dev)); |
| 1077 | |
| 1078 | return fdt_address_cells(gd->fdt_blob, parent); |
Simon Glass | cfdae5c | 2017-05-18 20:09:04 -0600 | [diff] [blame] | 1079 | } |
| 1080 | |
Simon Glass | 2f9a612 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 1081 | static inline int dev_read_size_cells(const struct udevice *dev) |
Simon Glass | cfdae5c | 2017-05-18 20:09:04 -0600 | [diff] [blame] | 1082 | { |
Heinrich Schuchardt | 60a84af | 2020-07-25 21:38:49 +0200 | [diff] [blame] | 1083 | int parent = fdt_parent_offset(gd->fdt_blob, dev_of_offset(dev)); |
| 1084 | |
| 1085 | return fdt_size_cells(gd->fdt_blob, parent); |
Simon Glass | 4191dc1 | 2017-06-12 06:21:31 -0600 | [diff] [blame] | 1086 | } |
| 1087 | |
Simon Glass | 2f9a612 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 1088 | static inline int dev_read_simple_addr_cells(const struct udevice *dev) |
Simon Glass | 4191dc1 | 2017-06-12 06:21:31 -0600 | [diff] [blame] | 1089 | { |
| 1090 | return fdt_address_cells(gd->fdt_blob, dev_of_offset(dev)); |
| 1091 | } |
| 1092 | |
Simon Glass | 2f9a612 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 1093 | static inline int dev_read_simple_size_cells(const struct udevice *dev) |
Simon Glass | 4191dc1 | 2017-06-12 06:21:31 -0600 | [diff] [blame] | 1094 | { |
Simon Glass | cfdae5c | 2017-05-18 20:09:04 -0600 | [diff] [blame] | 1095 | return fdt_size_cells(gd->fdt_blob, dev_of_offset(dev)); |
| 1096 | } |
| 1097 | |
Simon Glass | 2f9a612 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 1098 | static inline int dev_read_phandle(const struct udevice *dev) |
Simon Glass | cfdae5c | 2017-05-18 20:09:04 -0600 | [diff] [blame] | 1099 | { |
| 1100 | return fdt_get_phandle(gd->fdt_blob, dev_of_offset(dev)); |
| 1101 | } |
| 1102 | |
Simon Glass | 2f9a612 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 1103 | static inline const void *dev_read_prop(const struct udevice *dev, |
Masahiro Yamada | baebec1 | 2017-07-17 12:18:39 +0900 | [diff] [blame] | 1104 | const char *propname, int *lenp) |
Simon Glass | cfdae5c | 2017-05-18 20:09:04 -0600 | [diff] [blame] | 1105 | { |
Masahiro Yamada | 9cf85cb | 2017-06-22 16:54:05 +0900 | [diff] [blame] | 1106 | return ofnode_get_property(dev_ofnode(dev), propname, lenp); |
Simon Glass | cfdae5c | 2017-05-18 20:09:04 -0600 | [diff] [blame] | 1107 | } |
| 1108 | |
Patrick Delaunay | caee155 | 2020-01-13 11:34:56 +0100 | [diff] [blame] | 1109 | static inline int dev_read_first_prop(const struct udevice *dev, struct ofprop *prop) |
| 1110 | { |
Simon Glass | fec058d | 2022-09-06 20:27:13 -0600 | [diff] [blame] | 1111 | return ofnode_first_property(dev_ofnode(dev), prop); |
Patrick Delaunay | caee155 | 2020-01-13 11:34:56 +0100 | [diff] [blame] | 1112 | } |
| 1113 | |
| 1114 | static inline int dev_read_next_prop(struct ofprop *prop) |
| 1115 | { |
Simon Glass | fec058d | 2022-09-06 20:27:13 -0600 | [diff] [blame] | 1116 | return ofnode_next_property(prop); |
Patrick Delaunay | caee155 | 2020-01-13 11:34:56 +0100 | [diff] [blame] | 1117 | } |
| 1118 | |
| 1119 | static inline const void *dev_read_prop_by_prop(struct ofprop *prop, |
| 1120 | const char **propname, |
| 1121 | int *lenp) |
| 1122 | { |
Simon Glass | d0aff8b | 2022-09-06 20:27:14 -0600 | [diff] [blame] | 1123 | return ofprop_get_property(prop, propname, lenp); |
Patrick Delaunay | caee155 | 2020-01-13 11:34:56 +0100 | [diff] [blame] | 1124 | } |
| 1125 | |
Simon Glass | 2f9a612 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 1126 | static inline int dev_read_alias_seq(const struct udevice *dev, int *devnump) |
Simon Glass | cfdae5c | 2017-05-18 20:09:04 -0600 | [diff] [blame] | 1127 | { |
Marcel Ziswiler | 65c2bf6 | 2019-05-20 02:44:57 +0200 | [diff] [blame] | 1128 | #if CONFIG_IS_ENABLED(OF_CONTROL) |
Simon Glass | cfdae5c | 2017-05-18 20:09:04 -0600 | [diff] [blame] | 1129 | return fdtdec_get_alias_seq(gd->fdt_blob, dev->uclass->uc_drv->name, |
| 1130 | dev_of_offset(dev), devnump); |
Marcel Ziswiler | 65c2bf6 | 2019-05-20 02:44:57 +0200 | [diff] [blame] | 1131 | #else |
| 1132 | return -ENOTSUPP; |
| 1133 | #endif |
Simon Glass | cfdae5c | 2017-05-18 20:09:04 -0600 | [diff] [blame] | 1134 | } |
| 1135 | |
Simon Glass | 2f9a612 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 1136 | static inline int dev_read_u32_array(const struct udevice *dev, |
| 1137 | const char *propname, u32 *out_values, |
| 1138 | size_t sz) |
Simon Glass | cfdae5c | 2017-05-18 20:09:04 -0600 | [diff] [blame] | 1139 | { |
| 1140 | return ofnode_read_u32_array(dev_ofnode(dev), propname, out_values, sz); |
| 1141 | } |
| 1142 | |
Simon Glass | 2f9a612 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 1143 | static inline ofnode dev_read_first_subnode(const struct udevice *dev) |
Simon Glass | cfdae5c | 2017-05-18 20:09:04 -0600 | [diff] [blame] | 1144 | { |
| 1145 | return ofnode_first_subnode(dev_ofnode(dev)); |
| 1146 | } |
| 1147 | |
| 1148 | static inline ofnode dev_read_next_subnode(ofnode node) |
| 1149 | { |
| 1150 | return ofnode_next_subnode(node); |
| 1151 | } |
| 1152 | |
Simon Glass | 2f9a612 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 1153 | static inline const uint8_t *dev_read_u8_array_ptr(const struct udevice *dev, |
Simon Glass | 000676b | 2020-01-27 08:49:47 -0700 | [diff] [blame] | 1154 | const char *propname, |
| 1155 | size_t sz) |
Simon Glass | 34ef0c2 | 2017-05-18 20:09:03 -0600 | [diff] [blame] | 1156 | { |
| 1157 | return ofnode_read_u8_array_ptr(dev_ofnode(dev), propname, sz); |
| 1158 | } |
| 1159 | |
Simon Glass | 2f9a612 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 1160 | static inline int dev_read_enabled(const struct udevice *dev) |
Simon Glass | fa031f8 | 2017-06-12 06:21:30 -0600 | [diff] [blame] | 1161 | { |
| 1162 | return fdtdec_get_is_enabled(gd->fdt_blob, dev_of_offset(dev)); |
| 1163 | } |
| 1164 | |
Simon Glass | 2f9a612 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 1165 | static inline int dev_read_resource(const struct udevice *dev, uint index, |
Simon Glass | f7bfcc4 | 2017-07-25 08:29:55 -0600 | [diff] [blame] | 1166 | struct resource *res) |
| 1167 | { |
| 1168 | return ofnode_read_resource(dev_ofnode(dev), index, res); |
| 1169 | } |
| 1170 | |
Simon Glass | 2f9a612 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 1171 | static inline int dev_read_resource_byname(const struct udevice *dev, |
Masahiro Yamada | 4dada2c | 2017-08-26 01:12:30 +0900 | [diff] [blame] | 1172 | const char *name, |
| 1173 | struct resource *res) |
| 1174 | { |
| 1175 | return ofnode_read_resource_byname(dev_ofnode(dev), name, res); |
| 1176 | } |
| 1177 | |
Simon Glass | 2f9a612 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 1178 | static inline u64 dev_translate_address(const struct udevice *dev, |
| 1179 | const fdt32_t *in_addr) |
Mario Six | aefac06 | 2018-01-15 11:07:19 +0100 | [diff] [blame] | 1180 | { |
| 1181 | return ofnode_translate_address(dev_ofnode(dev), in_addr); |
| 1182 | } |
| 1183 | |
Simon Glass | 2f9a612 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 1184 | static inline u64 dev_translate_dma_address(const struct udevice *dev, |
| 1185 | const fdt32_t *in_addr) |
Fabien Dessenne | 22236e0 | 2019-05-31 15:11:30 +0200 | [diff] [blame] | 1186 | { |
| 1187 | return ofnode_translate_dma_address(dev_ofnode(dev), in_addr); |
| 1188 | } |
| 1189 | |
Nicolas Saenz Julienne | 50d2fa4 | 2021-01-12 13:55:22 +0100 | [diff] [blame] | 1190 | static inline int dev_get_dma_range(const struct udevice *dev, phys_addr_t *cpu, |
| 1191 | dma_addr_t *bus, u64 *size) |
| 1192 | { |
| 1193 | return ofnode_get_dma_range(dev_ofnode(dev), cpu, bus, size); |
| 1194 | } |
| 1195 | |
Michal Simek | d0e30a0 | 2019-01-31 16:30:59 +0100 | [diff] [blame] | 1196 | static inline int dev_read_alias_highest_id(const char *stem) |
| 1197 | { |
Stanislav Pinchuk | e864940 | 2021-01-20 21:52:23 +0300 | [diff] [blame] | 1198 | if (!CONFIG_IS_ENABLED(OF_LIBFDT) || !gd->fdt_blob) |
Michael Walle | eccf2d0 | 2020-06-02 01:47:08 +0200 | [diff] [blame] | 1199 | return -1; |
Michal Simek | d0e30a0 | 2019-01-31 16:30:59 +0100 | [diff] [blame] | 1200 | return fdtdec_get_alias_highest_id(gd->fdt_blob, stem); |
| 1201 | } |
| 1202 | |
developer | d93c8b4 | 2020-05-02 11:35:09 +0200 | [diff] [blame] | 1203 | static inline int dev_get_child_count(const struct udevice *dev) |
| 1204 | { |
| 1205 | return ofnode_get_child_count(dev_ofnode(dev)); |
| 1206 | } |
| 1207 | |
Dario Binacchi | 836cc9d | 2020-12-30 00:16:26 +0100 | [diff] [blame] | 1208 | static inline int dev_decode_display_timing(const struct udevice *dev, |
| 1209 | int index, |
| 1210 | struct display_timing *config) |
| 1211 | { |
| 1212 | return ofnode_decode_display_timing(dev_ofnode(dev), index, config); |
| 1213 | } |
| 1214 | |
Nikhil M Jain | ff40706 | 2023-01-31 15:35:14 +0530 | [diff] [blame] | 1215 | static inline int dev_decode_panel_timing(const struct udevice *dev, |
| 1216 | struct display_timing *config) |
| 1217 | { |
| 1218 | return ofnode_decode_panel_timing(dev_ofnode(dev), config); |
| 1219 | } |
| 1220 | |
Marek BehĂșn | f4f1ddc | 2022-04-07 00:32:57 +0200 | [diff] [blame] | 1221 | static inline ofnode dev_get_phy_node(const struct udevice *dev) |
| 1222 | { |
| 1223 | return ofnode_get_phy_node(dev_ofnode(dev)); |
| 1224 | } |
| 1225 | |
Marek BehĂșn | bc19477 | 2022-04-07 00:33:01 +0200 | [diff] [blame] | 1226 | static inline phy_interface_t dev_read_phy_mode(const struct udevice *dev) |
| 1227 | { |
| 1228 | return ofnode_read_phy_mode(dev_ofnode(dev)); |
| 1229 | } |
| 1230 | |
Simon Glass | 34ef0c2 | 2017-05-18 20:09:03 -0600 | [diff] [blame] | 1231 | #endif /* CONFIG_DM_DEV_READ_INLINE */ |
| 1232 | |
| 1233 | /** |
| 1234 | * dev_for_each_subnode() - Helper function to iterate through subnodes |
| 1235 | * |
| 1236 | * This creates a for() loop which works through the subnodes in a device's |
| 1237 | * device-tree node. |
| 1238 | * |
| 1239 | * @subnode: ofnode holding the current subnode |
Patrick Delaunay | cb3d6d6 | 2022-01-12 10:53:48 +0100 | [diff] [blame] | 1240 | * @dev: device to use for interation (`struct udevice *`) |
Simon Glass | 34ef0c2 | 2017-05-18 20:09:03 -0600 | [diff] [blame] | 1241 | */ |
| 1242 | #define dev_for_each_subnode(subnode, dev) \ |
| 1243 | for (subnode = dev_read_first_subnode(dev); \ |
| 1244 | ofnode_valid(subnode); \ |
| 1245 | subnode = ofnode_next_subnode(subnode)) |
| 1246 | |
Patrick Delaunay | caee155 | 2020-01-13 11:34:56 +0100 | [diff] [blame] | 1247 | /** |
| 1248 | * dev_for_each_property() - Helper function to iterate through property |
| 1249 | * |
| 1250 | * This creates a for() loop which works through the property in a device's |
| 1251 | * device-tree node. |
| 1252 | * |
| 1253 | * @prop: struct ofprop holding the current property |
Patrick Delaunay | cb3d6d6 | 2022-01-12 10:53:48 +0100 | [diff] [blame] | 1254 | * @dev: device to use for interation (`struct udevice *`) |
Patrick Delaunay | caee155 | 2020-01-13 11:34:56 +0100 | [diff] [blame] | 1255 | */ |
| 1256 | #define dev_for_each_property(prop, dev) \ |
| 1257 | for (int ret_prop = dev_read_first_prop(dev, &prop); \ |
| 1258 | !ret_prop; \ |
| 1259 | ret_prop = dev_read_next_prop(&prop)) |
| 1260 | |
Simon Glass | 34ef0c2 | 2017-05-18 20:09:03 -0600 | [diff] [blame] | 1261 | #endif |