Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Simon Glass | f11c7ab | 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 | f11c7ab | 2017-05-18 20:09:03 -0600 | [diff] [blame] | 7 | */ |
| 8 | |
| 9 | #ifndef _DM_READ_H |
| 10 | #define _DM_READ_H |
| 11 | |
Dan Murphy | 9beacb6 | 2020-07-23 07:01:38 -0500 | [diff] [blame] | 12 | #include <linux/errno.h> |
| 13 | |
Simon Glass | 2a64ada | 2020-07-19 10:15:39 -0600 | [diff] [blame] | 14 | #include <dm/device.h> |
Simon Glass | f11c7ab | 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 | a448101 | 2017-06-12 06:21:29 -0600 | [diff] [blame] | 19 | struct resource; |
| 20 | |
Simon Glass | f11c7ab | 2017-05-18 20:09:03 -0600 | [diff] [blame] | 21 | #if CONFIG_IS_ENABLED(OF_LIVE) |
Simon Glass | 88b3a37 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 22 | static inline const struct device_node *dev_np(const struct udevice *dev) |
Simon Glass | f11c7ab | 2017-05-18 20:09:03 -0600 | [diff] [blame] | 23 | { |
| 24 | return ofnode_to_np(dev->node); |
| 25 | } |
| 26 | #else |
Simon Glass | 88b3a37 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 27 | static inline const struct device_node *dev_np(const struct udevice *dev) |
Simon Glass | f11c7ab | 2017-05-18 20:09:03 -0600 | [diff] [blame] | 28 | { |
| 29 | return NULL; |
| 30 | } |
| 31 | #endif |
| 32 | |
| 33 | /** |
| 34 | * dev_ofnode() - get the DT node reference associated with a udevice |
| 35 | * |
| 36 | * @dev: device to check |
| 37 | * @return reference of the the device's DT node |
| 38 | */ |
Simon Glass | fc347fb | 2020-01-27 08:49:36 -0700 | [diff] [blame] | 39 | static inline ofnode dev_ofnode(const struct udevice *dev) |
Simon Glass | f11c7ab | 2017-05-18 20:09:03 -0600 | [diff] [blame] | 40 | { |
| 41 | return dev->node; |
| 42 | } |
| 43 | |
Simon Glass | fc347fb | 2020-01-27 08:49:36 -0700 | [diff] [blame] | 44 | static inline bool dev_of_valid(const struct udevice *dev) |
Simon Glass | f11c7ab | 2017-05-18 20:09:03 -0600 | [diff] [blame] | 45 | { |
| 46 | return ofnode_valid(dev_ofnode(dev)); |
| 47 | } |
| 48 | |
Simon Glass | 47a0fd3 | 2017-05-18 20:09:04 -0600 | [diff] [blame] | 49 | #ifndef CONFIG_DM_DEV_READ_INLINE |
T Karthik Reddy | 3f3d771 | 2019-09-02 16:34:30 +0200 | [diff] [blame] | 50 | |
Simon Glass | 47a0fd3 | 2017-05-18 20:09:04 -0600 | [diff] [blame] | 51 | /** |
Masahiro Yamada | 3ab48f6 | 2017-12-30 02:00:05 +0900 | [diff] [blame] | 52 | * dev_read_u32() - read a 32-bit integer from a device's DT property |
| 53 | * |
| 54 | * @dev: device to read DT property from |
| 55 | * @propname: name of the property to read from |
| 56 | * @outp: place to put value (if found) |
| 57 | * @return 0 if OK, -ve on error |
| 58 | */ |
Simon Glass | 88b3a37 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 59 | int dev_read_u32(const struct udevice *dev, const char *propname, u32 *outp); |
Masahiro Yamada | 3ab48f6 | 2017-12-30 02:00:05 +0900 | [diff] [blame] | 60 | |
| 61 | /** |
Simon Glass | 47a0fd3 | 2017-05-18 20:09:04 -0600 | [diff] [blame] | 62 | * dev_read_u32_default() - read a 32-bit integer from a device's DT property |
| 63 | * |
| 64 | * @dev: device to read DT property from |
| 65 | * @propname: name of the property to read from |
| 66 | * @def: default value to return if the property has no value |
| 67 | * @return property value, or @def if not found |
| 68 | */ |
Simon Glass | 88b3a37 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 69 | int dev_read_u32_default(const struct udevice *dev, const char *propname, |
| 70 | int def); |
Simon Glass | f11c7ab | 2017-05-18 20:09:03 -0600 | [diff] [blame] | 71 | |
| 72 | /** |
Dario Binacchi | 4bb7075 | 2020-03-29 18:04:41 +0200 | [diff] [blame] | 73 | * dev_read_u32_index() - read an indexed 32-bit integer from a device's DT |
| 74 | * property |
| 75 | * |
| 76 | * @dev: device to read DT property from |
| 77 | * @propname: name of the property to read from |
| 78 | * @index: index of the integer to return |
| 79 | * @outp: place to put value (if found) |
| 80 | * @return 0 if OK, -ve on error |
| 81 | */ |
| 82 | int dev_read_u32_index(struct udevice *dev, const char *propname, int index, |
| 83 | u32 *outp); |
| 84 | |
| 85 | /** |
| 86 | * dev_read_u32_index_default() - read an indexed 32-bit integer from a device's |
| 87 | * DT property |
| 88 | * |
| 89 | * @dev: device to read DT property from |
| 90 | * @propname: name of the property to read from |
| 91 | * @index: index of the integer to return |
| 92 | * @def: default value to return if the property has no value |
| 93 | * @return property value, or @def if not found |
| 94 | */ |
| 95 | u32 dev_read_u32_index_default(struct udevice *dev, const char *propname, |
| 96 | int index, u32 def); |
| 97 | |
| 98 | /** |
Simon Glass | a1b17e4 | 2018-12-10 10:37:37 -0700 | [diff] [blame] | 99 | * dev_read_s32() - read a signed 32-bit integer from a device's DT property |
| 100 | * |
| 101 | * @dev: device to read DT property from |
| 102 | * @propname: name of the property to read from |
| 103 | * @outp: place to put value (if found) |
| 104 | * @return 0 if OK, -ve on error |
| 105 | */ |
Simon Glass | 88b3a37 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 106 | int dev_read_s32(const struct udevice *dev, const char *propname, s32 *outp); |
Simon Glass | a1b17e4 | 2018-12-10 10:37:37 -0700 | [diff] [blame] | 107 | |
| 108 | /** |
| 109 | * dev_read_s32_default() - read a signed 32-bit int from a device's DT property |
| 110 | * |
| 111 | * @dev: device to read DT property from |
| 112 | * @propname: name of the property to read from |
| 113 | * @def: default value to return if the property has no value |
| 114 | * @return property value, or @def if not found |
| 115 | */ |
Simon Glass | 88b3a37 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 116 | int dev_read_s32_default(const struct udevice *dev, const char *propname, |
| 117 | int def); |
Simon Glass | a1b17e4 | 2018-12-10 10:37:37 -0700 | [diff] [blame] | 118 | |
| 119 | /** |
| 120 | * dev_read_u32u() - read a 32-bit integer from a device's DT property |
| 121 | * |
| 122 | * This version uses a standard uint type. |
| 123 | * |
| 124 | * @dev: device to read DT property from |
| 125 | * @propname: name of the property to read from |
| 126 | * @outp: place to put value (if found) |
| 127 | * @return 0 if OK, -ve on error |
| 128 | */ |
Simon Glass | 88b3a37 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 129 | int dev_read_u32u(const struct udevice *dev, const char *propname, uint *outp); |
Simon Glass | a1b17e4 | 2018-12-10 10:37:37 -0700 | [diff] [blame] | 130 | |
| 131 | /** |
T Karthik Reddy | 3f3d771 | 2019-09-02 16:34:30 +0200 | [diff] [blame] | 132 | * dev_read_u64() - read a 64-bit integer from a device's DT property |
| 133 | * |
| 134 | * @dev: device to read DT property from |
| 135 | * @propname: name of the property to read from |
| 136 | * @outp: place to put value (if found) |
| 137 | * @return 0 if OK, -ve on error |
| 138 | */ |
Simon Glass | 88b3a37 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 139 | int dev_read_u64(const struct udevice *dev, const char *propname, u64 *outp); |
T Karthik Reddy | 3f3d771 | 2019-09-02 16:34:30 +0200 | [diff] [blame] | 140 | |
| 141 | /** |
| 142 | * dev_read_u64_default() - read a 64-bit integer from a device's DT property |
| 143 | * |
| 144 | * @dev: device to read DT property from |
| 145 | * @propname: name of the property to read from |
| 146 | * @def: default value to return if the property has no value |
| 147 | * @return property value, or @def if not found |
| 148 | */ |
Simon Glass | 88b3a37 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 149 | u64 dev_read_u64_default(const struct udevice *dev, const char *propname, |
| 150 | u64 def); |
T Karthik Reddy | 3f3d771 | 2019-09-02 16:34:30 +0200 | [diff] [blame] | 151 | |
| 152 | /** |
Simon Glass | f11c7ab | 2017-05-18 20:09:03 -0600 | [diff] [blame] | 153 | * dev_read_string() - Read a string from a device's DT property |
| 154 | * |
| 155 | * @dev: device to read DT property from |
| 156 | * @propname: name of the property to read |
| 157 | * @return string from property value, or NULL if there is no such property |
| 158 | */ |
Simon Glass | 88b3a37 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 159 | const char *dev_read_string(const struct udevice *dev, const char *propname); |
Simon Glass | f11c7ab | 2017-05-18 20:09:03 -0600 | [diff] [blame] | 160 | |
| 161 | /** |
| 162 | * dev_read_bool() - read a boolean value from a device's DT property |
| 163 | * |
| 164 | * @dev: device to read DT property from |
| 165 | * @propname: name of property to read |
| 166 | * @return true if property is present (meaning true), false if not present |
| 167 | */ |
Simon Glass | 88b3a37 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 168 | bool dev_read_bool(const struct udevice *dev, const char *propname); |
Simon Glass | f11c7ab | 2017-05-18 20:09:03 -0600 | [diff] [blame] | 169 | |
| 170 | /** |
| 171 | * dev_read_subnode() - find a named subnode of a device |
| 172 | * |
| 173 | * @dev: device whose DT node contains the subnode |
| 174 | * @subnode_name: name of subnode to find |
| 175 | * @return reference to subnode (which can be invalid if there is no such |
| 176 | * subnode) |
| 177 | */ |
Simon Glass | 88b3a37 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 178 | ofnode dev_read_subnode(const struct udevice *dev, const char *subbnode_name); |
Simon Glass | f11c7ab | 2017-05-18 20:09:03 -0600 | [diff] [blame] | 179 | |
| 180 | /** |
| 181 | * dev_read_size() - read the size of a property |
| 182 | * |
| 183 | * @dev: device to check |
| 184 | * @propname: property to check |
| 185 | * @return size of property if present, or -EINVAL if not |
| 186 | */ |
Simon Glass | 88b3a37 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 187 | int dev_read_size(const struct udevice *dev, const char *propname); |
Simon Glass | f11c7ab | 2017-05-18 20:09:03 -0600 | [diff] [blame] | 188 | |
| 189 | /** |
| 190 | * dev_read_addr_index() - Get the indexed reg property of a device |
| 191 | * |
| 192 | * @dev: Device to read from |
| 193 | * @index: the 'reg' property can hold a list of <addr, size> pairs |
| 194 | * and @index is used to select which one is required |
| 195 | * |
| 196 | * @return address or FDT_ADDR_T_NONE if not found |
| 197 | */ |
Simon Glass | 88b3a37 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 198 | fdt_addr_t dev_read_addr_index(const struct udevice *dev, int index); |
Simon Glass | f11c7ab | 2017-05-18 20:09:03 -0600 | [diff] [blame] | 199 | |
| 200 | /** |
Sekhar Nori | f5b9047 | 2019-08-01 19:12:56 +0530 | [diff] [blame] | 201 | * dev_read_addr_size_index() - Get the indexed reg property of a device |
| 202 | * |
| 203 | * @dev: Device to read from |
| 204 | * @index: the 'reg' property can hold a list of <addr, size> pairs |
| 205 | * and @index is used to select which one is required |
| 206 | * @size: place to put size value (on success) |
| 207 | * |
| 208 | * @return address or FDT_ADDR_T_NONE if not found |
| 209 | */ |
Simon Glass | 88b3a37 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 210 | fdt_addr_t dev_read_addr_size_index(const struct udevice *dev, int index, |
Sekhar Nori | f5b9047 | 2019-08-01 19:12:56 +0530 | [diff] [blame] | 211 | fdt_size_t *size); |
| 212 | |
| 213 | /** |
Álvaro Fernández Rojas | 30a90f5 | 2018-04-29 21:56:54 +0200 | [diff] [blame] | 214 | * dev_remap_addr_index() - Get the indexed reg property of a device |
| 215 | * as a memory-mapped I/O pointer |
| 216 | * |
| 217 | * @dev: Device to read from |
| 218 | * @index: the 'reg' property can hold a list of <addr, size> pairs |
| 219 | * and @index is used to select which one is required |
| 220 | * |
| 221 | * @return pointer or NULL if not found |
| 222 | */ |
Simon Glass | 88b3a37 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 223 | void *dev_remap_addr_index(const struct udevice *dev, int index); |
Álvaro Fernández Rojas | 30a90f5 | 2018-04-29 21:56:54 +0200 | [diff] [blame] | 224 | |
| 225 | /** |
Álvaro Fernández Rojas | 7959882 | 2018-12-03 19:37:09 +0100 | [diff] [blame] | 226 | * dev_read_addr_name() - Get the reg property of a device, indexed by name |
| 227 | * |
| 228 | * @dev: Device to read from |
| 229 | * @name: the 'reg' property can hold a list of <addr, size> pairs, with the |
| 230 | * 'reg-names' property providing named-based identification. @index |
| 231 | * indicates the value to search for in 'reg-names'. |
| 232 | * |
| 233 | * @return address or FDT_ADDR_T_NONE if not found |
| 234 | */ |
Simon Glass | 88b3a37 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 235 | fdt_addr_t dev_read_addr_name(const struct udevice *dev, const char *name); |
Álvaro Fernández Rojas | 7959882 | 2018-12-03 19:37:09 +0100 | [diff] [blame] | 236 | |
| 237 | /** |
Sekhar Nori | f5b9047 | 2019-08-01 19:12:56 +0530 | [diff] [blame] | 238 | * dev_read_addr_size_name() - Get the reg property of a device, indexed by name |
| 239 | * |
| 240 | * @dev: Device to read from |
| 241 | * @name: the 'reg' property can hold a list of <addr, size> pairs, with the |
| 242 | * 'reg-names' property providing named-based identification. @index |
| 243 | * indicates the value to search for in 'reg-names'. |
| 244 | * @size: place to put size value (on success) |
| 245 | * |
| 246 | * @return address or FDT_ADDR_T_NONE if not found |
| 247 | */ |
Simon Glass | 88b3a37 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 248 | fdt_addr_t dev_read_addr_size_name(const struct udevice *dev, const char *name, |
Sekhar Nori | f5b9047 | 2019-08-01 19:12:56 +0530 | [diff] [blame] | 249 | fdt_size_t *size); |
| 250 | |
| 251 | /** |
Álvaro Fernández Rojas | 7959882 | 2018-12-03 19:37:09 +0100 | [diff] [blame] | 252 | * dev_remap_addr_name() - Get the reg property of a device, indexed by name, |
| 253 | * as a memory-mapped I/O pointer |
| 254 | * |
| 255 | * @dev: Device to read from |
| 256 | * @name: the 'reg' property can hold a list of <addr, size> pairs, with the |
| 257 | * 'reg-names' property providing named-based identification. @index |
| 258 | * indicates the value to search for in 'reg-names'. |
| 259 | * |
| 260 | * @return pointer or NULL if not found |
| 261 | */ |
Simon Glass | 88b3a37 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 262 | void *dev_remap_addr_name(const struct udevice *dev, const char *name); |
Álvaro Fernández Rojas | 7959882 | 2018-12-03 19:37:09 +0100 | [diff] [blame] | 263 | |
| 264 | /** |
Simon Glass | f11c7ab | 2017-05-18 20:09:03 -0600 | [diff] [blame] | 265 | * dev_read_addr() - Get the reg property of a device |
| 266 | * |
| 267 | * @dev: Device to read from |
| 268 | * |
| 269 | * @return address or FDT_ADDR_T_NONE if not found |
| 270 | */ |
Simon Glass | 88b3a37 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 271 | fdt_addr_t dev_read_addr(const struct udevice *dev); |
Simon Glass | f11c7ab | 2017-05-18 20:09:03 -0600 | [diff] [blame] | 272 | |
| 273 | /** |
Philipp Tomsich | c131c8b | 2017-09-11 22:04:12 +0200 | [diff] [blame] | 274 | * dev_read_addr_ptr() - Get the reg property of a device |
| 275 | * as a pointer |
| 276 | * |
| 277 | * @dev: Device to read from |
| 278 | * |
| 279 | * @return pointer or NULL if not found |
| 280 | */ |
Simon Glass | 88b3a37 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 281 | void *dev_read_addr_ptr(const struct udevice *dev); |
Philipp Tomsich | c131c8b | 2017-09-11 22:04:12 +0200 | [diff] [blame] | 282 | |
| 283 | /** |
Simon Glass | 33c215a | 2019-09-15 12:08:58 -0600 | [diff] [blame] | 284 | * dev_read_addr_pci() - Read an address and handle PCI address translation |
| 285 | * |
| 286 | * At present U-Boot does not have address translation logic for PCI in the |
| 287 | * livetree implementation (of_addr.c). This special function supports this for |
| 288 | * the flat tree implementation. |
| 289 | * |
| 290 | * This function should be removed (and code should use dev_read() instead) |
| 291 | * once: |
| 292 | * |
| 293 | * 1. PCI address translation is added; and either |
| 294 | * 2. everything uses livetree where PCI translation is used (which is feasible |
| 295 | * in SPL and U-Boot proper) or PCI address translation is added to |
| 296 | * fdtdec_get_addr() and friends. |
| 297 | * |
| 298 | * @dev: Device to read from |
| 299 | * @return address or FDT_ADDR_T_NONE if not found |
| 300 | */ |
Simon Glass | 88b3a37 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 301 | fdt_addr_t dev_read_addr_pci(const struct udevice *dev); |
Simon Glass | 33c215a | 2019-09-15 12:08:58 -0600 | [diff] [blame] | 302 | |
| 303 | /** |
Álvaro Fernández Rojas | 30a90f5 | 2018-04-29 21:56:54 +0200 | [diff] [blame] | 304 | * dev_remap_addr() - Get the reg property of a device as a |
| 305 | * memory-mapped I/O pointer |
| 306 | * |
| 307 | * @dev: Device to read from |
| 308 | * |
| 309 | * @return pointer or NULL if not found |
| 310 | */ |
Simon Glass | 88b3a37 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 311 | void *dev_remap_addr(const struct udevice *dev); |
Álvaro Fernández Rojas | 30a90f5 | 2018-04-29 21:56:54 +0200 | [diff] [blame] | 312 | |
| 313 | /** |
Simon Glass | f11c7ab | 2017-05-18 20:09:03 -0600 | [diff] [blame] | 314 | * dev_read_addr_size() - get address and size from a device property |
| 315 | * |
| 316 | * This does no address translation. It simply reads an property that contains |
| 317 | * an address and a size value, one after the other. |
| 318 | * |
| 319 | * @dev: Device to read from |
| 320 | * @propname: property to read |
| 321 | * @sizep: place to put size value (on success) |
| 322 | * @return address value, or FDT_ADDR_T_NONE on error |
| 323 | */ |
Simon Glass | 88b3a37 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 324 | fdt_addr_t dev_read_addr_size(const struct udevice *dev, const char *propname, |
| 325 | fdt_size_t *sizep); |
Simon Glass | f11c7ab | 2017-05-18 20:09:03 -0600 | [diff] [blame] | 326 | |
| 327 | /** |
| 328 | * dev_read_name() - get the name of a device's node |
| 329 | * |
Bin Meng | 15d61d0 | 2019-07-05 09:23:18 -0700 | [diff] [blame] | 330 | * @dev: Device to read from |
Simon Glass | f11c7ab | 2017-05-18 20:09:03 -0600 | [diff] [blame] | 331 | * @return name of node |
| 332 | */ |
Simon Glass | 88b3a37 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 333 | const char *dev_read_name(const struct udevice *dev); |
Simon Glass | f11c7ab | 2017-05-18 20:09:03 -0600 | [diff] [blame] | 334 | |
| 335 | /** |
| 336 | * dev_read_stringlist_search() - find string in a string list and return index |
| 337 | * |
| 338 | * Note that it is possible for this function to succeed on property values |
| 339 | * that are not NUL-terminated. That's because the function will stop after |
| 340 | * finding the first occurrence of @string. This can for example happen with |
| 341 | * small-valued cell properties, such as #address-cells, when searching for |
| 342 | * the empty string. |
| 343 | * |
| 344 | * @dev: device to check |
| 345 | * @propname: name of the property containing the string list |
| 346 | * @string: string to look up in the string list |
| 347 | * |
| 348 | * @return: |
| 349 | * the index of the string in the list of strings |
| 350 | * -ENODATA if the property is not found |
| 351 | * -EINVAL on some other error |
| 352 | */ |
Simon Glass | 88b3a37 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 353 | int dev_read_stringlist_search(const struct udevice *dev, const char *property, |
| 354 | const char *string); |
Simon Glass | f11c7ab | 2017-05-18 20:09:03 -0600 | [diff] [blame] | 355 | |
| 356 | /** |
Jean-Jacques Hiblot | b5a144a | 2017-09-21 17:03:09 +0200 | [diff] [blame] | 357 | * dev_read_string_index() - obtain an indexed string from a string list |
| 358 | * |
| 359 | * @dev: device to examine |
| 360 | * @propname: name of the property containing the string list |
| 361 | * @index: index of the string to return |
| 362 | * @out: return location for the string |
| 363 | * |
| 364 | * @return: |
| 365 | * length of string, if found or -ve error value if not found |
| 366 | */ |
Simon Glass | 88b3a37 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 367 | int dev_read_string_index(const struct udevice *dev, const char *propname, |
| 368 | int index, const char **outp); |
Jean-Jacques Hiblot | b5a144a | 2017-09-21 17:03:09 +0200 | [diff] [blame] | 369 | |
| 370 | /** |
| 371 | * dev_read_string_count() - find the number of strings in a string list |
| 372 | * |
| 373 | * @dev: device to examine |
| 374 | * @propname: name of the property containing the string list |
| 375 | * @return: |
| 376 | * number of strings in the list, or -ve error value if not found |
| 377 | */ |
Simon Glass | 88b3a37 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 378 | int dev_read_string_count(const struct udevice *dev, const char *propname); |
Jean-Jacques Hiblot | b5a144a | 2017-09-21 17:03:09 +0200 | [diff] [blame] | 379 | /** |
Simon Glass | f11c7ab | 2017-05-18 20:09:03 -0600 | [diff] [blame] | 380 | * dev_read_phandle_with_args() - Find a node pointed by phandle in a list |
| 381 | * |
| 382 | * This function is useful to parse lists of phandles and their arguments. |
| 383 | * Returns 0 on success and fills out_args, on error returns appropriate |
| 384 | * errno value. |
| 385 | * |
| 386 | * Caller is responsible to call of_node_put() on the returned out_args->np |
| 387 | * pointer. |
| 388 | * |
| 389 | * Example: |
| 390 | * |
| 391 | * phandle1: node1 { |
| 392 | * #list-cells = <2>; |
| 393 | * } |
| 394 | * |
| 395 | * phandle2: node2 { |
| 396 | * #list-cells = <1>; |
| 397 | * } |
| 398 | * |
| 399 | * node3 { |
| 400 | * list = <&phandle1 1 2 &phandle2 3>; |
| 401 | * } |
| 402 | * |
| 403 | * To get a device_node of the `node2' node you may call this: |
| 404 | * dev_read_phandle_with_args(dev, "list", "#list-cells", 0, 1, &args); |
| 405 | * |
| 406 | * @dev: device whose node containing a list |
| 407 | * @list_name: property name that contains a list |
| 408 | * @cells_name: property name that specifies phandles' arguments count |
| 409 | * @cells_count: Cell count to use if @cells_name is NULL |
| 410 | * @index: index of a phandle to parse out |
| 411 | * @out_args: optional pointer to output arguments structure (will be filled) |
| 412 | * @return 0 on success (with @out_args filled out if not NULL), -ENOENT if |
| 413 | * @list_name does not exist, -EINVAL if a phandle was not found, |
| 414 | * @cells_name could not be found, the arguments were truncated or there |
| 415 | * were too many arguments. |
| 416 | */ |
Simon Glass | 88b3a37 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 417 | int dev_read_phandle_with_args(const struct udevice *dev, const char *list_name, |
| 418 | const char *cells_name, int cell_count, |
| 419 | int index, struct ofnode_phandle_args *out_args); |
Simon Glass | f11c7ab | 2017-05-18 20:09:03 -0600 | [diff] [blame] | 420 | |
| 421 | /** |
Patrice Chotard | 642346a | 2017-07-18 11:57:08 +0200 | [diff] [blame] | 422 | * dev_count_phandle_with_args() - Return phandle number in a list |
| 423 | * |
| 424 | * This function is usefull to get phandle number contained in a property list. |
| 425 | * For example, this allows to allocate the right amount of memory to keep |
| 426 | * clock's reference contained into the "clocks" property. |
| 427 | * |
| 428 | * |
| 429 | * @dev: device whose node containing a list |
| 430 | * @list_name: property name that contains a list |
| 431 | * @cells_name: property name that specifies phandles' arguments count |
| 432 | * @Returns number of phandle found on success, on error returns appropriate |
| 433 | * errno value. |
| 434 | */ |
| 435 | |
Simon Glass | 88b3a37 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 436 | int dev_count_phandle_with_args(const struct udevice *dev, |
| 437 | const char *list_name, const char *cells_name); |
Patrice Chotard | 642346a | 2017-07-18 11:57:08 +0200 | [diff] [blame] | 438 | |
| 439 | /** |
Simon Glass | f11c7ab | 2017-05-18 20:09:03 -0600 | [diff] [blame] | 440 | * dev_read_addr_cells() - Get the number of address cells for a device's node |
| 441 | * |
| 442 | * This walks back up the tree to find the closest #address-cells property |
| 443 | * which controls the given node. |
| 444 | * |
Mario Six | 7ba5041 | 2018-01-15 11:09:36 +0100 | [diff] [blame] | 445 | * @dev: device to check |
Simon Glass | f11c7ab | 2017-05-18 20:09:03 -0600 | [diff] [blame] | 446 | * @return number of address cells this node uses |
| 447 | */ |
Simon Glass | 88b3a37 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 448 | int dev_read_addr_cells(const struct udevice *dev); |
Simon Glass | f11c7ab | 2017-05-18 20:09:03 -0600 | [diff] [blame] | 449 | |
| 450 | /** |
| 451 | * dev_read_size_cells() - Get the number of size cells for a device's node |
| 452 | * |
| 453 | * This walks back up the tree to find the closest #size-cells property |
| 454 | * which controls the given node. |
| 455 | * |
Mario Six | 7ba5041 | 2018-01-15 11:09:36 +0100 | [diff] [blame] | 456 | * @dev: device to check |
Simon Glass | f11c7ab | 2017-05-18 20:09:03 -0600 | [diff] [blame] | 457 | * @return number of size cells this node uses |
| 458 | */ |
Simon Glass | 88b3a37 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 459 | int dev_read_size_cells(const struct udevice *dev); |
Simon Glass | f11c7ab | 2017-05-18 20:09:03 -0600 | [diff] [blame] | 460 | |
| 461 | /** |
Simon Glass | 878d68c | 2017-06-12 06:21:31 -0600 | [diff] [blame] | 462 | * dev_read_addr_cells() - Get the address cells property in a node |
| 463 | * |
| 464 | * This function matches fdt_address_cells(). |
| 465 | * |
Mario Six | 7ba5041 | 2018-01-15 11:09:36 +0100 | [diff] [blame] | 466 | * @dev: device to check |
Simon Glass | 878d68c | 2017-06-12 06:21:31 -0600 | [diff] [blame] | 467 | * @return number of address cells this node uses |
| 468 | */ |
Simon Glass | 88b3a37 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 469 | int dev_read_simple_addr_cells(const struct udevice *dev); |
Simon Glass | 878d68c | 2017-06-12 06:21:31 -0600 | [diff] [blame] | 470 | |
| 471 | /** |
| 472 | * dev_read_size_cells() - Get the size cells property in a node |
| 473 | * |
| 474 | * This function matches fdt_size_cells(). |
| 475 | * |
Mario Six | 7ba5041 | 2018-01-15 11:09:36 +0100 | [diff] [blame] | 476 | * @dev: device to check |
Simon Glass | 878d68c | 2017-06-12 06:21:31 -0600 | [diff] [blame] | 477 | * @return number of size cells this node uses |
| 478 | */ |
Simon Glass | 88b3a37 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 479 | int dev_read_simple_size_cells(const struct udevice *dev); |
Simon Glass | 878d68c | 2017-06-12 06:21:31 -0600 | [diff] [blame] | 480 | |
| 481 | /** |
Simon Glass | f11c7ab | 2017-05-18 20:09:03 -0600 | [diff] [blame] | 482 | * dev_read_phandle() - Get the phandle from a device |
| 483 | * |
| 484 | * @dev: device to check |
| 485 | * @return phandle (1 or greater), or 0 if no phandle or other error |
| 486 | */ |
Simon Glass | 88b3a37 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 487 | int dev_read_phandle(const struct udevice *dev); |
Simon Glass | f11c7ab | 2017-05-18 20:09:03 -0600 | [diff] [blame] | 488 | |
| 489 | /** |
| 490 | * dev_read_prop()- - read a property from a device's node |
| 491 | * |
| 492 | * @dev: device to check |
| 493 | * @propname: property to read |
| 494 | * @lenp: place to put length on success |
| 495 | * @return pointer to property, or NULL if not found |
| 496 | */ |
Simon Glass | 88b3a37 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 497 | const void *dev_read_prop(const struct udevice *dev, const char *propname, |
| 498 | int *lenp); |
Simon Glass | f11c7ab | 2017-05-18 20:09:03 -0600 | [diff] [blame] | 499 | |
| 500 | /** |
Patrick Delaunay | ce891fca | 2020-01-13 11:34:56 +0100 | [diff] [blame] | 501 | * dev_read_first_prop()- get the reference of the first property |
| 502 | * |
| 503 | * Get reference to the first property of the node, it is used to iterate |
| 504 | * and read all the property with dev_read_prop_by_prop(). |
| 505 | * |
| 506 | * @dev: device to check |
| 507 | * @prop: place to put argument reference |
| 508 | * @return 0 if OK, -ve on error. -FDT_ERR_NOTFOUND if not found |
| 509 | */ |
| 510 | int dev_read_first_prop(const struct udevice *dev, struct ofprop *prop); |
| 511 | |
| 512 | /** |
| 513 | * ofnode_get_next_property() - get the reference of the next property |
| 514 | * |
| 515 | * Get reference to the next property of the node, it is used to iterate |
| 516 | * and read all the property with dev_read_prop_by_prop(). |
| 517 | * |
| 518 | * @prop: reference of current argument and place to put reference of next one |
| 519 | * @return 0 if OK, -ve on error. -FDT_ERR_NOTFOUND if not found |
| 520 | */ |
| 521 | int dev_read_next_prop(struct ofprop *prop); |
| 522 | |
| 523 | /** |
| 524 | * dev_read_prop_by_prop() - get a pointer to the value of a property |
| 525 | * |
| 526 | * Get value for the property identified by the provided reference. |
| 527 | * |
| 528 | * @prop: reference on property |
| 529 | * @propname: If non-NULL, place to property name on success, |
| 530 | * @lenp: If non-NULL, place to put length on success |
| 531 | * @return 0 if OK, -ve on error. -FDT_ERR_NOTFOUND if not found |
| 532 | */ |
| 533 | const void *dev_read_prop_by_prop(struct ofprop *prop, |
| 534 | const char **propname, int *lenp); |
| 535 | |
| 536 | /** |
Simon Glass | f11c7ab | 2017-05-18 20:09:03 -0600 | [diff] [blame] | 537 | * dev_read_alias_seq() - Get the alias sequence number of a node |
| 538 | * |
| 539 | * This works out whether a node is pointed to by an alias, and if so, the |
| 540 | * sequence number of that alias. Aliases are of the form <base><num> where |
| 541 | * <num> is the sequence number. For example spi2 would be sequence number 2. |
| 542 | * |
| 543 | * @dev: device to look up |
| 544 | * @devnump: set to the sequence number if one is found |
| 545 | * @return 0 if a sequence was found, -ve if not |
| 546 | */ |
Simon Glass | 88b3a37 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 547 | int dev_read_alias_seq(const struct udevice *dev, int *devnump); |
Simon Glass | f11c7ab | 2017-05-18 20:09:03 -0600 | [diff] [blame] | 548 | |
| 549 | /** |
| 550 | * dev_read_u32_array() - Find and read an array of 32 bit integers |
| 551 | * |
| 552 | * Search for a property in a device node and read 32-bit value(s) from |
| 553 | * it. |
| 554 | * |
| 555 | * The out_values is modified only if a valid u32 value can be decoded. |
| 556 | * |
| 557 | * @dev: device to look up |
| 558 | * @propname: name of the property to read |
| 559 | * @out_values: pointer to return value, modified only if return value is 0 |
| 560 | * @sz: number of array elements to read |
| 561 | * @return 0 on success, -EINVAL if the property does not exist, -ENODATA if |
| 562 | * property does not have a value, and -EOVERFLOW if the property data isn't |
| 563 | * large enough. |
| 564 | */ |
Simon Glass | 88b3a37 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 565 | int dev_read_u32_array(const struct udevice *dev, const char *propname, |
Simon Glass | 47a0fd3 | 2017-05-18 20:09:04 -0600 | [diff] [blame] | 566 | u32 *out_values, size_t sz); |
Simon Glass | f11c7ab | 2017-05-18 20:09:03 -0600 | [diff] [blame] | 567 | |
| 568 | /** |
| 569 | * dev_read_first_subnode() - find the first subnode of a device's node |
| 570 | * |
| 571 | * @dev: device to look up |
| 572 | * @return reference to the first subnode (which can be invalid if the device's |
| 573 | * node has no subnodes) |
| 574 | */ |
Simon Glass | 88b3a37 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 575 | ofnode dev_read_first_subnode(const struct udevice *dev); |
Simon Glass | f11c7ab | 2017-05-18 20:09:03 -0600 | [diff] [blame] | 576 | |
| 577 | /** |
| 578 | * ofnode_next_subnode() - find the next sibling of a subnode |
| 579 | * |
| 580 | * @node: valid reference to previous node (sibling) |
| 581 | * @return reference to the next subnode (which can be invalid if the node |
| 582 | * has no more siblings) |
| 583 | */ |
Simon Glass | 47a0fd3 | 2017-05-18 20:09:04 -0600 | [diff] [blame] | 584 | ofnode dev_read_next_subnode(ofnode node); |
Simon Glass | f11c7ab | 2017-05-18 20:09:03 -0600 | [diff] [blame] | 585 | |
| 586 | /** |
| 587 | * dev_read_u8_array_ptr() - find an 8-bit array |
| 588 | * |
| 589 | * Look up a device's node property and return a pointer to its contents as a |
| 590 | * byte array of given length. The property must have at least enough data |
| 591 | * for the array (count bytes). It may have more, but this will be ignored. |
| 592 | * The data is not copied. |
| 593 | * |
| 594 | * @dev: device to look up |
| 595 | * @propname: name of property to find |
| 596 | * @sz: number of array elements |
| 597 | * @return pointer to byte array if found, or NULL if the property is not |
| 598 | * found or there is not enough data |
| 599 | */ |
Simon Glass | 88b3a37 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 600 | const uint8_t *dev_read_u8_array_ptr(const struct udevice *dev, |
| 601 | const char *propname, size_t sz); |
Simon Glass | 47a0fd3 | 2017-05-18 20:09:04 -0600 | [diff] [blame] | 602 | |
Simon Glass | f7d6fcf | 2017-06-12 06:21:30 -0600 | [diff] [blame] | 603 | /** |
| 604 | * dev_read_enabled() - check whether a node is enabled |
| 605 | * |
| 606 | * This looks for a 'status' property. If this exists, then returns 1 if |
| 607 | * the status is 'ok' and 0 otherwise. If there is no status property, |
| 608 | * it returns 1 on the assumption that anything mentioned should be enabled |
| 609 | * by default. |
| 610 | * |
| 611 | * @dev: device to examine |
| 612 | * @return integer value 0 (not enabled) or 1 (enabled) |
| 613 | */ |
Simon Glass | 88b3a37 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 614 | int dev_read_enabled(const struct udevice *dev); |
Simon Glass | f7d6fcf | 2017-06-12 06:21:30 -0600 | [diff] [blame] | 615 | |
Simon Glass | dcf9885 | 2017-07-25 08:29:55 -0600 | [diff] [blame] | 616 | /** |
| 617 | * dev_read_resource() - obtain an indexed resource from a device. |
| 618 | * |
Masahiro Yamada | 7b8b47b | 2017-08-26 01:12:30 +0900 | [diff] [blame] | 619 | * @dev: device to examine |
Simon Glass | dcf9885 | 2017-07-25 08:29:55 -0600 | [diff] [blame] | 620 | * @index index of the resource to retrieve (0 = first) |
| 621 | * @res returns the resource |
| 622 | * @return 0 if ok, negative on error |
| 623 | */ |
Simon Glass | 88b3a37 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 624 | int dev_read_resource(const struct udevice *dev, uint index, |
| 625 | struct resource *res); |
Simon Glass | dcf9885 | 2017-07-25 08:29:55 -0600 | [diff] [blame] | 626 | |
Masahiro Yamada | 7b8b47b | 2017-08-26 01:12:30 +0900 | [diff] [blame] | 627 | /** |
| 628 | * dev_read_resource_byname() - obtain a named resource from a device. |
| 629 | * |
| 630 | * @dev: device to examine |
| 631 | * @name: name of the resource to retrieve |
| 632 | * @res: returns the resource |
| 633 | * @return 0 if ok, negative on error |
| 634 | */ |
Simon Glass | 88b3a37 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 635 | int dev_read_resource_byname(const struct udevice *dev, const char *name, |
Masahiro Yamada | 7b8b47b | 2017-08-26 01:12:30 +0900 | [diff] [blame] | 636 | struct resource *res); |
| 637 | |
Mario Six | 147c607 | 2018-01-15 11:07:19 +0100 | [diff] [blame] | 638 | /** |
Fabien Dessenne | 641067f | 2019-05-31 15:11:30 +0200 | [diff] [blame] | 639 | * dev_translate_address() - Translate a device-tree address |
Mario Six | 147c607 | 2018-01-15 11:07:19 +0100 | [diff] [blame] | 640 | * |
| 641 | * Translate an address from the device-tree into a CPU physical address. This |
| 642 | * function walks up the tree and applies the various bus mappings along the |
| 643 | * way. |
| 644 | * |
| 645 | * @dev: device giving the context in which to translate the address |
| 646 | * @in_addr: pointer to the address to translate |
| 647 | * @return the translated address; OF_BAD_ADDR on error |
| 648 | */ |
Simon Glass | 88b3a37 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 649 | u64 dev_translate_address(const struct udevice *dev, const fdt32_t *in_addr); |
Michal Simek | 83e4c7e | 2019-01-31 16:30:59 +0100 | [diff] [blame] | 650 | |
| 651 | /** |
Fabien Dessenne | 641067f | 2019-05-31 15:11:30 +0200 | [diff] [blame] | 652 | * dev_translate_dma_address() - Translate a device-tree DMA address |
| 653 | * |
| 654 | * Translate a DMA address from the device-tree into a CPU physical address. |
| 655 | * This function walks up the tree and applies the various bus mappings along |
| 656 | * the way. |
| 657 | * |
| 658 | * @dev: device giving the context in which to translate the DMA address |
| 659 | * @in_addr: pointer to the DMA address to translate |
| 660 | * @return the translated DMA address; OF_BAD_ADDR on error |
| 661 | */ |
Simon Glass | 88b3a37 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 662 | u64 dev_translate_dma_address(const struct udevice *dev, |
| 663 | const fdt32_t *in_addr); |
Fabien Dessenne | 641067f | 2019-05-31 15:11:30 +0200 | [diff] [blame] | 664 | |
| 665 | /** |
Michal Simek | 83e4c7e | 2019-01-31 16:30:59 +0100 | [diff] [blame] | 666 | * dev_read_alias_highest_id - Get highest alias id for the given stem |
| 667 | * @stem: Alias stem to be examined |
| 668 | * |
| 669 | * The function travels the lookup table to get the highest alias id for the |
| 670 | * given alias stem. |
| 671 | * @return alias ID, if found, else -1 |
| 672 | */ |
| 673 | int dev_read_alias_highest_id(const char *stem); |
| 674 | |
Chunfeng Yun | 89b84b8 | 2020-05-02 11:35:09 +0200 | [diff] [blame] | 675 | /** |
| 676 | * dev_get_child_count() - get the child count of a device |
| 677 | * |
| 678 | * @dev: device to use for interation (struct udevice *) |
| 679 | * @return the count of child subnode |
| 680 | */ |
| 681 | int dev_get_child_count(const struct udevice *dev); |
| 682 | |
Stefan Roese | 68f81b8 | 2020-08-05 13:56:11 +0200 | [diff] [blame^] | 683 | /** |
| 684 | * dev_read_pci_bus_range - Read PCI bus-range resource |
| 685 | * |
| 686 | * Look at the bus range property of a device node and return the pci bus |
| 687 | * range for this node. |
| 688 | * |
| 689 | * @dev: device to examine |
| 690 | * @res returns the resource |
| 691 | * @return 0 if ok, negative on error |
| 692 | */ |
| 693 | int dev_read_pci_bus_range(const struct udevice *dev, struct resource *res); |
| 694 | |
Simon Glass | 47a0fd3 | 2017-05-18 20:09:04 -0600 | [diff] [blame] | 695 | #else /* CONFIG_DM_DEV_READ_INLINE is enabled */ |
| 696 | |
Simon Glass | 88b3a37 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 697 | static inline int dev_read_u32(const struct udevice *dev, |
Masahiro Yamada | 3ab48f6 | 2017-12-30 02:00:05 +0900 | [diff] [blame] | 698 | const char *propname, u32 *outp) |
| 699 | { |
| 700 | return ofnode_read_u32(dev_ofnode(dev), propname, outp); |
| 701 | } |
| 702 | |
Simon Glass | 88b3a37 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 703 | static inline int dev_read_u32_default(const struct udevice *dev, |
Simon Glass | 47a0fd3 | 2017-05-18 20:09:04 -0600 | [diff] [blame] | 704 | const char *propname, int def) |
| 705 | { |
| 706 | return ofnode_read_u32_default(dev_ofnode(dev), propname, def); |
| 707 | } |
| 708 | |
Dario Binacchi | 4bb7075 | 2020-03-29 18:04:41 +0200 | [diff] [blame] | 709 | static inline int dev_read_u32_index(struct udevice *dev, |
| 710 | const char *propname, int index, u32 *outp) |
| 711 | { |
| 712 | return ofnode_read_u32_index(dev_ofnode(dev), propname, index, outp); |
| 713 | } |
| 714 | |
| 715 | static inline u32 dev_read_u32_index_default(struct udevice *dev, |
| 716 | const char *propname, int index, |
| 717 | u32 def) |
| 718 | { |
| 719 | return ofnode_read_u32_index_default(dev_ofnode(dev), propname, index, |
| 720 | def); |
| 721 | } |
| 722 | |
Simon Glass | 88b3a37 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 723 | static inline int dev_read_s32(const struct udevice *dev, |
Simon Glass | a1b17e4 | 2018-12-10 10:37:37 -0700 | [diff] [blame] | 724 | const char *propname, s32 *outp) |
| 725 | { |
| 726 | return ofnode_read_s32(dev_ofnode(dev), propname, outp); |
| 727 | } |
| 728 | |
Simon Glass | 88b3a37 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 729 | static inline int dev_read_s32_default(const struct udevice *dev, |
Simon Glass | a1b17e4 | 2018-12-10 10:37:37 -0700 | [diff] [blame] | 730 | const char *propname, int def) |
| 731 | { |
| 732 | return ofnode_read_s32_default(dev_ofnode(dev), propname, def); |
| 733 | } |
| 734 | |
Simon Glass | 88b3a37 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 735 | static inline int dev_read_u32u(const struct udevice *dev, |
Simon Glass | a1b17e4 | 2018-12-10 10:37:37 -0700 | [diff] [blame] | 736 | const char *propname, uint *outp) |
| 737 | { |
| 738 | u32 val; |
| 739 | int ret; |
| 740 | |
| 741 | ret = ofnode_read_u32(dev_ofnode(dev), propname, &val); |
| 742 | if (ret) |
| 743 | return ret; |
| 744 | *outp = val; |
| 745 | |
| 746 | return 0; |
| 747 | } |
| 748 | |
Simon Glass | 88b3a37 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 749 | static inline int dev_read_u64(const struct udevice *dev, |
T Karthik Reddy | 3f3d771 | 2019-09-02 16:34:30 +0200 | [diff] [blame] | 750 | const char *propname, u64 *outp) |
| 751 | { |
| 752 | return ofnode_read_u64(dev_ofnode(dev), propname, outp); |
| 753 | } |
| 754 | |
Simon Glass | 88b3a37 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 755 | static inline u64 dev_read_u64_default(const struct udevice *dev, |
T Karthik Reddy | 3f3d771 | 2019-09-02 16:34:30 +0200 | [diff] [blame] | 756 | const char *propname, u64 def) |
| 757 | { |
| 758 | return ofnode_read_u64_default(dev_ofnode(dev), propname, def); |
| 759 | } |
| 760 | |
Simon Glass | 88b3a37 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 761 | static inline const char *dev_read_string(const struct udevice *dev, |
Simon Glass | 47a0fd3 | 2017-05-18 20:09:04 -0600 | [diff] [blame] | 762 | const char *propname) |
| 763 | { |
| 764 | return ofnode_read_string(dev_ofnode(dev), propname); |
| 765 | } |
| 766 | |
Simon Glass | 88b3a37 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 767 | static inline bool dev_read_bool(const struct udevice *dev, |
| 768 | const char *propname) |
Simon Glass | 47a0fd3 | 2017-05-18 20:09:04 -0600 | [diff] [blame] | 769 | { |
| 770 | return ofnode_read_bool(dev_ofnode(dev), propname); |
| 771 | } |
| 772 | |
Simon Glass | 88b3a37 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 773 | static inline ofnode dev_read_subnode(const struct udevice *dev, |
Simon Glass | 47a0fd3 | 2017-05-18 20:09:04 -0600 | [diff] [blame] | 774 | const char *subbnode_name) |
| 775 | { |
| 776 | return ofnode_find_subnode(dev_ofnode(dev), subbnode_name); |
| 777 | } |
| 778 | |
Simon Glass | 88b3a37 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 779 | static inline int dev_read_size(const struct udevice *dev, const char *propname) |
Simon Glass | 47a0fd3 | 2017-05-18 20:09:04 -0600 | [diff] [blame] | 780 | { |
| 781 | return ofnode_read_size(dev_ofnode(dev), propname); |
| 782 | } |
| 783 | |
Simon Glass | 88b3a37 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 784 | static inline fdt_addr_t dev_read_addr_index(const struct udevice *dev, |
| 785 | int index) |
Simon Glass | 47a0fd3 | 2017-05-18 20:09:04 -0600 | [diff] [blame] | 786 | { |
| 787 | return devfdt_get_addr_index(dev, index); |
| 788 | } |
| 789 | |
Simon Glass | 88b3a37 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 790 | static inline fdt_addr_t dev_read_addr_size_index(const struct udevice *dev, |
Sekhar Nori | f5b9047 | 2019-08-01 19:12:56 +0530 | [diff] [blame] | 791 | int index, |
| 792 | fdt_size_t *size) |
| 793 | { |
| 794 | return devfdt_get_addr_size_index(dev, index, size); |
| 795 | } |
| 796 | |
Simon Glass | 88b3a37 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 797 | static inline fdt_addr_t dev_read_addr_name(const struct udevice *dev, |
Álvaro Fernández Rojas | 7959882 | 2018-12-03 19:37:09 +0100 | [diff] [blame] | 798 | const char *name) |
| 799 | { |
| 800 | return devfdt_get_addr_name(dev, name); |
| 801 | } |
| 802 | |
Simon Glass | 88b3a37 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 803 | static inline fdt_addr_t dev_read_addr_size_name(const struct udevice *dev, |
Sekhar Nori | f5b9047 | 2019-08-01 19:12:56 +0530 | [diff] [blame] | 804 | const char *name, |
| 805 | fdt_size_t *size) |
| 806 | { |
| 807 | return devfdt_get_addr_size_name(dev, name, size); |
| 808 | } |
| 809 | |
Simon Glass | 88b3a37 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 810 | static inline fdt_addr_t dev_read_addr(const struct udevice *dev) |
Simon Glass | 47a0fd3 | 2017-05-18 20:09:04 -0600 | [diff] [blame] | 811 | { |
| 812 | return devfdt_get_addr(dev); |
| 813 | } |
| 814 | |
Simon Glass | 88b3a37 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 815 | static inline void *dev_read_addr_ptr(const struct udevice *dev) |
Philipp Tomsich | c131c8b | 2017-09-11 22:04:12 +0200 | [diff] [blame] | 816 | { |
Ovidiu Panait | 3fe69d3 | 2020-08-03 22:17:35 +0300 | [diff] [blame] | 817 | return devfdt_get_addr_ptr(dev); |
Philipp Tomsich | c131c8b | 2017-09-11 22:04:12 +0200 | [diff] [blame] | 818 | } |
| 819 | |
Simon Glass | 88b3a37 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 820 | static inline fdt_addr_t dev_read_addr_pci(const struct udevice *dev) |
Simon Glass | 33c215a | 2019-09-15 12:08:58 -0600 | [diff] [blame] | 821 | { |
| 822 | return devfdt_get_addr_pci(dev); |
| 823 | } |
| 824 | |
Simon Glass | 88b3a37 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 825 | static inline void *dev_remap_addr(const struct udevice *dev) |
Álvaro Fernández Rojas | 30a90f5 | 2018-04-29 21:56:54 +0200 | [diff] [blame] | 826 | { |
| 827 | return devfdt_remap_addr(dev); |
| 828 | } |
| 829 | |
Simon Glass | 88b3a37 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 830 | static inline void *dev_remap_addr_index(const struct udevice *dev, int index) |
Álvaro Fernández Rojas | 30a90f5 | 2018-04-29 21:56:54 +0200 | [diff] [blame] | 831 | { |
| 832 | return devfdt_remap_addr_index(dev, index); |
| 833 | } |
| 834 | |
Simon Glass | 88b3a37 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 835 | static inline void *dev_remap_addr_name(const struct udevice *dev, |
| 836 | const char *name) |
Álvaro Fernández Rojas | 7959882 | 2018-12-03 19:37:09 +0100 | [diff] [blame] | 837 | { |
| 838 | return devfdt_remap_addr_name(dev, name); |
| 839 | } |
| 840 | |
Simon Glass | 88b3a37 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 841 | static inline fdt_addr_t dev_read_addr_size(const struct udevice *dev, |
Simon Glass | 47a0fd3 | 2017-05-18 20:09:04 -0600 | [diff] [blame] | 842 | const char *propname, |
| 843 | fdt_size_t *sizep) |
| 844 | { |
| 845 | return ofnode_get_addr_size(dev_ofnode(dev), propname, sizep); |
| 846 | } |
| 847 | |
Simon Glass | 88b3a37 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 848 | static inline const char *dev_read_name(const struct udevice *dev) |
Simon Glass | 47a0fd3 | 2017-05-18 20:09:04 -0600 | [diff] [blame] | 849 | { |
| 850 | return ofnode_get_name(dev_ofnode(dev)); |
| 851 | } |
| 852 | |
Simon Glass | 88b3a37 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 853 | static inline int dev_read_stringlist_search(const struct udevice *dev, |
Simon Glass | 47a0fd3 | 2017-05-18 20:09:04 -0600 | [diff] [blame] | 854 | const char *propname, |
| 855 | const char *string) |
| 856 | { |
| 857 | return ofnode_stringlist_search(dev_ofnode(dev), propname, string); |
| 858 | } |
| 859 | |
Simon Glass | 88b3a37 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 860 | static inline int dev_read_string_index(const struct udevice *dev, |
Jean-Jacques Hiblot | b5a144a | 2017-09-21 17:03:09 +0200 | [diff] [blame] | 861 | const char *propname, int index, |
| 862 | const char **outp) |
| 863 | { |
| 864 | return ofnode_read_string_index(dev_ofnode(dev), propname, index, outp); |
| 865 | } |
| 866 | |
Simon Glass | 88b3a37 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 867 | static inline int dev_read_string_count(const struct udevice *dev, |
Jean-Jacques Hiblot | b5a144a | 2017-09-21 17:03:09 +0200 | [diff] [blame] | 868 | const char *propname) |
| 869 | { |
| 870 | return ofnode_read_string_count(dev_ofnode(dev), propname); |
| 871 | } |
| 872 | |
Simon Glass | 88b3a37 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 873 | static inline int dev_read_phandle_with_args(const struct udevice *dev, |
Simon Glass | 47a0fd3 | 2017-05-18 20:09:04 -0600 | [diff] [blame] | 874 | const char *list_name, const char *cells_name, int cell_count, |
| 875 | int index, struct ofnode_phandle_args *out_args) |
| 876 | { |
| 877 | return ofnode_parse_phandle_with_args(dev_ofnode(dev), list_name, |
| 878 | cells_name, cell_count, index, |
| 879 | out_args); |
| 880 | } |
| 881 | |
Simon Glass | 88b3a37 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 882 | static inline int dev_count_phandle_with_args(const struct udevice *dev, |
Patrice Chotard | 642346a | 2017-07-18 11:57:08 +0200 | [diff] [blame] | 883 | const char *list_name, const char *cells_name) |
| 884 | { |
| 885 | return ofnode_count_phandle_with_args(dev_ofnode(dev), list_name, |
| 886 | cells_name); |
| 887 | } |
| 888 | |
Simon Glass | 88b3a37 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 889 | static inline int dev_read_addr_cells(const struct udevice *dev) |
Simon Glass | 47a0fd3 | 2017-05-18 20:09:04 -0600 | [diff] [blame] | 890 | { |
Heinrich Schuchardt | ae6b33d | 2020-07-25 21:38:49 +0200 | [diff] [blame] | 891 | int parent = fdt_parent_offset(gd->fdt_blob, dev_of_offset(dev)); |
| 892 | |
| 893 | return fdt_address_cells(gd->fdt_blob, parent); |
Simon Glass | 47a0fd3 | 2017-05-18 20:09:04 -0600 | [diff] [blame] | 894 | } |
| 895 | |
Simon Glass | 88b3a37 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 896 | static inline int dev_read_size_cells(const struct udevice *dev) |
Simon Glass | 47a0fd3 | 2017-05-18 20:09:04 -0600 | [diff] [blame] | 897 | { |
Heinrich Schuchardt | ae6b33d | 2020-07-25 21:38:49 +0200 | [diff] [blame] | 898 | int parent = fdt_parent_offset(gd->fdt_blob, dev_of_offset(dev)); |
| 899 | |
| 900 | return fdt_size_cells(gd->fdt_blob, parent); |
Simon Glass | 878d68c | 2017-06-12 06:21:31 -0600 | [diff] [blame] | 901 | } |
| 902 | |
Simon Glass | 88b3a37 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 903 | static inline int dev_read_simple_addr_cells(const struct udevice *dev) |
Simon Glass | 878d68c | 2017-06-12 06:21:31 -0600 | [diff] [blame] | 904 | { |
| 905 | return fdt_address_cells(gd->fdt_blob, dev_of_offset(dev)); |
| 906 | } |
| 907 | |
Simon Glass | 88b3a37 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 908 | static inline int dev_read_simple_size_cells(const struct udevice *dev) |
Simon Glass | 878d68c | 2017-06-12 06:21:31 -0600 | [diff] [blame] | 909 | { |
Simon Glass | 47a0fd3 | 2017-05-18 20:09:04 -0600 | [diff] [blame] | 910 | return fdt_size_cells(gd->fdt_blob, dev_of_offset(dev)); |
| 911 | } |
| 912 | |
Simon Glass | 88b3a37 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 913 | static inline int dev_read_phandle(const struct udevice *dev) |
Simon Glass | 47a0fd3 | 2017-05-18 20:09:04 -0600 | [diff] [blame] | 914 | { |
| 915 | return fdt_get_phandle(gd->fdt_blob, dev_of_offset(dev)); |
| 916 | } |
| 917 | |
Simon Glass | 88b3a37 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 918 | static inline const void *dev_read_prop(const struct udevice *dev, |
Masahiro Yamada | fd73621 | 2017-07-17 12:18:39 +0900 | [diff] [blame] | 919 | const char *propname, int *lenp) |
Simon Glass | 47a0fd3 | 2017-05-18 20:09:04 -0600 | [diff] [blame] | 920 | { |
Masahiro Yamada | 61e51ba | 2017-06-22 16:54:05 +0900 | [diff] [blame] | 921 | return ofnode_get_property(dev_ofnode(dev), propname, lenp); |
Simon Glass | 47a0fd3 | 2017-05-18 20:09:04 -0600 | [diff] [blame] | 922 | } |
| 923 | |
Patrick Delaunay | ce891fca | 2020-01-13 11:34:56 +0100 | [diff] [blame] | 924 | static inline int dev_read_first_prop(const struct udevice *dev, struct ofprop *prop) |
| 925 | { |
| 926 | return ofnode_get_first_property(dev_ofnode(dev), prop); |
| 927 | } |
| 928 | |
| 929 | static inline int dev_read_next_prop(struct ofprop *prop) |
| 930 | { |
| 931 | return ofnode_get_next_property(prop); |
| 932 | } |
| 933 | |
| 934 | static inline const void *dev_read_prop_by_prop(struct ofprop *prop, |
| 935 | const char **propname, |
| 936 | int *lenp) |
| 937 | { |
| 938 | return ofnode_get_property_by_prop(prop, propname, lenp); |
| 939 | } |
| 940 | |
Simon Glass | 88b3a37 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 941 | static inline int dev_read_alias_seq(const struct udevice *dev, int *devnump) |
Simon Glass | 47a0fd3 | 2017-05-18 20:09:04 -0600 | [diff] [blame] | 942 | { |
Marcel Ziswiler | 45224e8 | 2019-05-20 02:44:57 +0200 | [diff] [blame] | 943 | #if CONFIG_IS_ENABLED(OF_CONTROL) |
Simon Glass | 47a0fd3 | 2017-05-18 20:09:04 -0600 | [diff] [blame] | 944 | return fdtdec_get_alias_seq(gd->fdt_blob, dev->uclass->uc_drv->name, |
| 945 | dev_of_offset(dev), devnump); |
Marcel Ziswiler | 45224e8 | 2019-05-20 02:44:57 +0200 | [diff] [blame] | 946 | #else |
| 947 | return -ENOTSUPP; |
| 948 | #endif |
Simon Glass | 47a0fd3 | 2017-05-18 20:09:04 -0600 | [diff] [blame] | 949 | } |
| 950 | |
Simon Glass | 88b3a37 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 951 | static inline int dev_read_u32_array(const struct udevice *dev, |
| 952 | const char *propname, u32 *out_values, |
| 953 | size_t sz) |
Simon Glass | 47a0fd3 | 2017-05-18 20:09:04 -0600 | [diff] [blame] | 954 | { |
| 955 | return ofnode_read_u32_array(dev_ofnode(dev), propname, out_values, sz); |
| 956 | } |
| 957 | |
Simon Glass | 88b3a37 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 958 | static inline ofnode dev_read_first_subnode(const struct udevice *dev) |
Simon Glass | 47a0fd3 | 2017-05-18 20:09:04 -0600 | [diff] [blame] | 959 | { |
| 960 | return ofnode_first_subnode(dev_ofnode(dev)); |
| 961 | } |
| 962 | |
| 963 | static inline ofnode dev_read_next_subnode(ofnode node) |
| 964 | { |
| 965 | return ofnode_next_subnode(node); |
| 966 | } |
| 967 | |
Simon Glass | 88b3a37 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 968 | static inline const uint8_t *dev_read_u8_array_ptr(const struct udevice *dev, |
Simon Glass | f262d4c | 2020-01-27 08:49:47 -0700 | [diff] [blame] | 969 | const char *propname, |
| 970 | size_t sz) |
Simon Glass | f11c7ab | 2017-05-18 20:09:03 -0600 | [diff] [blame] | 971 | { |
| 972 | return ofnode_read_u8_array_ptr(dev_ofnode(dev), propname, sz); |
| 973 | } |
| 974 | |
Simon Glass | 88b3a37 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 975 | static inline int dev_read_enabled(const struct udevice *dev) |
Simon Glass | f7d6fcf | 2017-06-12 06:21:30 -0600 | [diff] [blame] | 976 | { |
| 977 | return fdtdec_get_is_enabled(gd->fdt_blob, dev_of_offset(dev)); |
| 978 | } |
| 979 | |
Simon Glass | 88b3a37 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 980 | static inline int dev_read_resource(const struct udevice *dev, uint index, |
Simon Glass | dcf9885 | 2017-07-25 08:29:55 -0600 | [diff] [blame] | 981 | struct resource *res) |
| 982 | { |
| 983 | return ofnode_read_resource(dev_ofnode(dev), index, res); |
| 984 | } |
| 985 | |
Simon Glass | 88b3a37 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 986 | static inline int dev_read_resource_byname(const struct udevice *dev, |
Masahiro Yamada | 7b8b47b | 2017-08-26 01:12:30 +0900 | [diff] [blame] | 987 | const char *name, |
| 988 | struct resource *res) |
| 989 | { |
| 990 | return ofnode_read_resource_byname(dev_ofnode(dev), name, res); |
| 991 | } |
| 992 | |
Simon Glass | 88b3a37 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 993 | static inline u64 dev_translate_address(const struct udevice *dev, |
| 994 | const fdt32_t *in_addr) |
Mario Six | 147c607 | 2018-01-15 11:07:19 +0100 | [diff] [blame] | 995 | { |
| 996 | return ofnode_translate_address(dev_ofnode(dev), in_addr); |
| 997 | } |
| 998 | |
Simon Glass | 88b3a37 | 2020-01-27 08:49:40 -0700 | [diff] [blame] | 999 | static inline u64 dev_translate_dma_address(const struct udevice *dev, |
| 1000 | const fdt32_t *in_addr) |
Fabien Dessenne | 641067f | 2019-05-31 15:11:30 +0200 | [diff] [blame] | 1001 | { |
| 1002 | return ofnode_translate_dma_address(dev_ofnode(dev), in_addr); |
| 1003 | } |
| 1004 | |
Michal Simek | 83e4c7e | 2019-01-31 16:30:59 +0100 | [diff] [blame] | 1005 | static inline int dev_read_alias_highest_id(const char *stem) |
| 1006 | { |
Michael Walle | 0a6b75f | 2020-06-02 01:47:08 +0200 | [diff] [blame] | 1007 | if (!CONFIG_IS_ENABLED(OF_LIBFDT)) |
| 1008 | return -1; |
Michal Simek | 83e4c7e | 2019-01-31 16:30:59 +0100 | [diff] [blame] | 1009 | return fdtdec_get_alias_highest_id(gd->fdt_blob, stem); |
| 1010 | } |
| 1011 | |
Chunfeng Yun | 89b84b8 | 2020-05-02 11:35:09 +0200 | [diff] [blame] | 1012 | static inline int dev_get_child_count(const struct udevice *dev) |
| 1013 | { |
| 1014 | return ofnode_get_child_count(dev_ofnode(dev)); |
| 1015 | } |
| 1016 | |
Simon Glass | f11c7ab | 2017-05-18 20:09:03 -0600 | [diff] [blame] | 1017 | #endif /* CONFIG_DM_DEV_READ_INLINE */ |
| 1018 | |
| 1019 | /** |
| 1020 | * dev_for_each_subnode() - Helper function to iterate through subnodes |
| 1021 | * |
| 1022 | * This creates a for() loop which works through the subnodes in a device's |
| 1023 | * device-tree node. |
| 1024 | * |
| 1025 | * @subnode: ofnode holding the current subnode |
| 1026 | * @dev: device to use for interation (struct udevice *) |
| 1027 | */ |
| 1028 | #define dev_for_each_subnode(subnode, dev) \ |
| 1029 | for (subnode = dev_read_first_subnode(dev); \ |
| 1030 | ofnode_valid(subnode); \ |
| 1031 | subnode = ofnode_next_subnode(subnode)) |
| 1032 | |
Patrick Delaunay | ce891fca | 2020-01-13 11:34:56 +0100 | [diff] [blame] | 1033 | /** |
| 1034 | * dev_for_each_property() - Helper function to iterate through property |
| 1035 | * |
| 1036 | * This creates a for() loop which works through the property in a device's |
| 1037 | * device-tree node. |
| 1038 | * |
| 1039 | * @prop: struct ofprop holding the current property |
| 1040 | * @dev: device to use for interation (struct udevice *) |
| 1041 | */ |
| 1042 | #define dev_for_each_property(prop, dev) \ |
| 1043 | for (int ret_prop = dev_read_first_prop(dev, &prop); \ |
| 1044 | !ret_prop; \ |
| 1045 | ret_prop = dev_read_next_prop(&prop)) |
| 1046 | |
Simon Glass | f11c7ab | 2017-05-18 20:09:03 -0600 | [diff] [blame] | 1047 | #endif |