Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Simon Glass | 6494d70 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (C) 2013 Google, Inc |
| 4 | * |
| 5 | * (C) Copyright 2012 |
| 6 | * Pavel Herrmann <morpheus.ibis@gmail.com> |
| 7 | * Marek Vasut <marex@denx.de> |
Simon Glass | 6494d70 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 8 | */ |
| 9 | |
| 10 | #ifndef _DM_DEVICE_INTERNAL_H |
| 11 | #define _DM_DEVICE_INTERNAL_H |
| 12 | |
Simon Glass | 5b896ed | 2022-03-04 08:43:03 -0700 | [diff] [blame] | 13 | #include <event.h> |
Simon Glass | 607f9bc | 2021-03-15 17:25:14 +1300 | [diff] [blame] | 14 | #include <linker_lists.h> |
Simon Glass | 396e343 | 2017-05-18 20:09:05 -0600 | [diff] [blame] | 15 | #include <dm/ofnode.h> |
| 16 | |
| 17 | struct device_node; |
Simon Glass | bb36b9a | 2022-02-28 12:08:33 -0700 | [diff] [blame^] | 18 | struct driver_info; |
Heiko Schocher | 54c5d08 | 2014-05-22 12:43:05 +0200 | [diff] [blame] | 19 | struct udevice; |
Simon Glass | 6494d70 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 20 | |
Simon Glass | 607f9bc | 2021-03-15 17:25:14 +1300 | [diff] [blame] | 21 | /* |
| 22 | * These two macros DM_DEVICE_INST and DM_DEVICE_REF are only allowed in code |
| 23 | * generated by dtoc, because the ordering is important and if other instances |
| 24 | * creep in then they may mess up the ordering expected by dtoc. |
| 25 | * |
| 26 | * It is OK to use them with 'extern' though, since that does not actually |
| 27 | * add a new record to the linker_list. |
| 28 | */ |
| 29 | |
| 30 | /** |
| 31 | * DM_DEVICE_INST() - Declare a bound device ready for run-time use |
| 32 | * |
| 33 | * This adds an actual struct udevice to a list which is found by driver model |
| 34 | * on start-up. |
| 35 | * |
| 36 | * For example: |
| 37 | * |
| 38 | * extern U_BOOT_DRIVER(sandbox_fixed_clock); |
| 39 | * extern DM_UCLASS_INST(clk); |
| 40 | * |
| 41 | * DM_DEVICE_INST(clk_fixed) = { |
| 42 | * .driver = DM_DRIVER_REF(sandbox_fixed_clock), |
| 43 | * .name = "sandbox_fixed_clock", |
| 44 | * .plat_ = &_sandbox_fixed_clock_plat_clk_fixed, |
| 45 | * .uclass = DM_UCLASS_REF(clk), |
| 46 | * ... |
| 47 | * .seq_ = 0, |
| 48 | * }; |
| 49 | * |
| 50 | * @_name: Name of the udevice. This must be a valid C identifier, used by the |
| 51 | * linker_list. |
| 52 | */ |
| 53 | #define DM_DEVICE_INST(_name) \ |
| 54 | ll_entry_declare(struct udevice, _name, udevice) |
| 55 | |
| 56 | /** |
| 57 | * DM_DEVICE_REF() - Get a reference to a device |
| 58 | * |
| 59 | * This is useful in data structures and code for referencing a udevice at |
| 60 | * build time. Before this is used, an extern DM_DEVICE_INST() must have been |
| 61 | * declared. |
| 62 | * |
| 63 | * For example: |
| 64 | * |
| 65 | * extern DM_DEVICE_INST(clk_fixed); |
| 66 | * |
| 67 | * struct udevice *devs[] = { |
| 68 | * DM_DEVICE_REF(clk_fixed), |
| 69 | * }; |
| 70 | * |
| 71 | * @_name: Name of the udevice. This must be a valid C identifier, used by the |
| 72 | * linker_list |
| 73 | * @returns struct udevice * for the device |
| 74 | */ |
| 75 | #define DM_DEVICE_REF(_name) \ |
| 76 | ll_entry_ref(struct udevice, _name, udevice) |
| 77 | |
| 78 | /** |
| 79 | * DM_DEVICE_GET() - Get a pointer to a given device |
| 80 | * |
| 81 | * This is similar to DM_DEVICE_REF() except that it does not need the extern |
| 82 | * declaration before it. However it cannot be used in a data structures, only |
| 83 | * in code within a function. |
| 84 | * |
| 85 | * For example: |
| 86 | * |
| 87 | * void some_function() { |
| 88 | * struct udevice *dev = DM_DEVICE_GET(clk_fixed); |
| 89 | * ... |
| 90 | * } |
| 91 | */ |
| 92 | #define DM_DEVICE_GET(__name) \ |
| 93 | ll_entry_get(struct udevice, __name, udevice) |
| 94 | |
Simon Glass | 6494d70 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 95 | /** |
Simon Glass | e80be74 | 2020-11-28 17:50:06 -0700 | [diff] [blame] | 96 | * device_bind() - Create a device and bind it to a driver |
Simon Glass | 6494d70 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 97 | * |
| 98 | * Called to set up a new device attached to a driver. The device will either |
Simon Glass | caa4daa | 2020-12-03 16:55:18 -0700 | [diff] [blame] | 99 | * have plat, or a device tree node which can be used to create the |
| 100 | * plat. |
Simon Glass | 6494d70 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 101 | * |
| 102 | * Once bound a device exists but is not yet active until device_probe() is |
| 103 | * called. |
| 104 | * |
| 105 | * @parent: Pointer to device's parent, under which this driver will exist |
| 106 | * @drv: Device's driver |
| 107 | * @name: Name of device (e.g. device tree node name) |
Simon Glass | caa4daa | 2020-12-03 16:55:18 -0700 | [diff] [blame] | 108 | * @plat: Pointer to data for this device - the structure is device- |
Simon Glass | 6494d70 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 109 | * specific but may include the device's I/O address, etc.. This is NULL for |
| 110 | * devices which use device tree. |
Simon Glass | e80be74 | 2020-11-28 17:50:06 -0700 | [diff] [blame] | 111 | * @ofnode: Devicetree node for this device. This is ofnode_null() for |
| 112 | * devices which don't use devicetree or don't have a node. |
Masahiro Yamada | e6cabe4 | 2015-08-27 12:44:28 +0900 | [diff] [blame] | 113 | * @devp: if non-NULL, returns a pointer to the bound device |
Heinrich Schuchardt | 185f812 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 114 | * Return: 0 if OK, -ve on error |
Simon Glass | 6494d70 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 115 | */ |
Simon Glass | 734206d | 2020-11-28 17:50:01 -0700 | [diff] [blame] | 116 | int device_bind(struct udevice *parent, const struct driver *drv, |
Simon Glass | caa4daa | 2020-12-03 16:55:18 -0700 | [diff] [blame] | 117 | const char *name, void *plat, ofnode node, |
Simon Glass | 734206d | 2020-11-28 17:50:01 -0700 | [diff] [blame] | 118 | struct udevice **devp); |
Simon Glass | d677b00 | 2018-06-11 13:07:15 -0600 | [diff] [blame] | 119 | |
Simon Glass | 6494d70 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 120 | /** |
Stephen Warren | daac3bf | 2016-05-11 15:26:24 -0600 | [diff] [blame] | 121 | * device_bind_with_driver_data() - Create a device and bind it to a driver |
| 122 | * |
| 123 | * Called to set up a new device attached to a driver, in the case where the |
| 124 | * driver was matched to the device by means of a match table that provides |
| 125 | * driver_data. |
| 126 | * |
| 127 | * Once bound a device exists but is not yet active until device_probe() is |
| 128 | * called. |
| 129 | * |
| 130 | * @parent: Pointer to device's parent, under which this driver will exist |
| 131 | * @drv: Device's driver |
| 132 | * @name: Name of device (e.g. device tree node name) |
| 133 | * @driver_data: The driver_data field from the driver's match table. |
Simon Glass | 396e343 | 2017-05-18 20:09:05 -0600 | [diff] [blame] | 134 | * @node: Device tree node for this device. This is invalid for devices which |
| 135 | * don't use device tree. |
Stephen Warren | daac3bf | 2016-05-11 15:26:24 -0600 | [diff] [blame] | 136 | * @devp: if non-NULL, returns a pointer to the bound device |
Heinrich Schuchardt | 185f812 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 137 | * Return: 0 if OK, -ve on error |
Stephen Warren | daac3bf | 2016-05-11 15:26:24 -0600 | [diff] [blame] | 138 | */ |
| 139 | int device_bind_with_driver_data(struct udevice *parent, |
| 140 | const struct driver *drv, const char *name, |
Simon Glass | 396e343 | 2017-05-18 20:09:05 -0600 | [diff] [blame] | 141 | ulong driver_data, ofnode node, |
Stephen Warren | daac3bf | 2016-05-11 15:26:24 -0600 | [diff] [blame] | 142 | struct udevice **devp); |
Stephen Warren | daac3bf | 2016-05-11 15:26:24 -0600 | [diff] [blame] | 143 | /** |
Simon Glass | 6494d70 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 144 | * device_bind_by_name: Create a device and bind it to a driver |
| 145 | * |
| 146 | * This is a helper function used to bind devices which do not use device |
| 147 | * tree. |
| 148 | * |
| 149 | * @parent: Pointer to device's parent |
Bin Meng | 6244fc6 | 2018-10-10 22:06:59 -0700 | [diff] [blame] | 150 | * @pre_reloc_only: If true, bind the driver only if its DM_FLAG_PRE_RELOC flag |
| 151 | * is set. If false bind the driver always. |
Simon Glass | caa4daa | 2020-12-03 16:55:18 -0700 | [diff] [blame] | 152 | * @info: Name and plat for this device |
Masahiro Yamada | e6cabe4 | 2015-08-27 12:44:28 +0900 | [diff] [blame] | 153 | * @devp: if non-NULL, returns a pointer to the bound device |
Heinrich Schuchardt | 185f812 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 154 | * Return: 0 if OK, -ve on error |
Simon Glass | 6494d70 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 155 | */ |
Simon Glass | 00606d7 | 2014-07-23 06:55:03 -0600 | [diff] [blame] | 156 | int device_bind_by_name(struct udevice *parent, bool pre_reloc_only, |
Simon Glass | a294ead | 2020-10-03 11:31:33 -0600 | [diff] [blame] | 157 | const struct driver_info *info, struct udevice **devp); |
Simon Glass | 6494d70 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 158 | |
| 159 | /** |
Claudiu Beznea | cfecbaf | 2020-09-07 17:46:33 +0300 | [diff] [blame] | 160 | * device_reparent: reparent the device to a new parent |
| 161 | * |
| 162 | * @dev: pointer to device to be reparented |
| 163 | * @new_parent: pointer to new parent device |
Heinrich Schuchardt | 185f812 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 164 | * Return: 0 if OK, -ve on error |
Claudiu Beznea | cfecbaf | 2020-09-07 17:46:33 +0300 | [diff] [blame] | 165 | */ |
| 166 | int device_reparent(struct udevice *dev, struct udevice *new_parent); |
| 167 | |
| 168 | /** |
Simon Glass | d1998a9 | 2020-12-03 16:55:21 -0700 | [diff] [blame] | 169 | * device_of_to_plat() - Read platform data for a device |
Simon Glass | bcd90cb | 2019-12-29 21:19:20 -0700 | [diff] [blame] | 170 | * |
| 171 | * Read platform data for a device (typically from the device tree) so that |
| 172 | * the information needed to probe the device is present. |
| 173 | * |
| 174 | * This may cause some others devices to be probed if this one depends on them, |
| 175 | * e.g. a GPIO line will cause a GPIO device to be probed. |
| 176 | * |
| 177 | * All private data associated with the device is allocated. |
| 178 | * |
| 179 | * @dev: Pointer to device to process |
Heinrich Schuchardt | 185f812 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 180 | * Return: 0 if OK, -ve on error |
Simon Glass | bcd90cb | 2019-12-29 21:19:20 -0700 | [diff] [blame] | 181 | */ |
Simon Glass | d1998a9 | 2020-12-03 16:55:21 -0700 | [diff] [blame] | 182 | int device_of_to_plat(struct udevice *dev); |
Simon Glass | bcd90cb | 2019-12-29 21:19:20 -0700 | [diff] [blame] | 183 | |
| 184 | /** |
Simon Glass | 6494d70 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 185 | * device_probe() - Probe a device, activating it |
| 186 | * |
| 187 | * Activate a device so that it is ready for use. All its parents are probed |
| 188 | * first. |
| 189 | * |
| 190 | * @dev: Pointer to device to probe |
Heinrich Schuchardt | 185f812 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 191 | * Return: 0 if OK, -ve on error |
Simon Glass | 6494d70 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 192 | */ |
Heiko Schocher | 54c5d08 | 2014-05-22 12:43:05 +0200 | [diff] [blame] | 193 | int device_probe(struct udevice *dev); |
Simon Glass | 6494d70 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 194 | |
| 195 | /** |
| 196 | * device_remove() - Remove a device, de-activating it |
| 197 | * |
| 198 | * De-activate a device so that it is no longer ready for use. All its |
| 199 | * children are deactivated first. |
| 200 | * |
| 201 | * @dev: Pointer to device to remove |
Simon Glass | e88afcc | 2017-07-29 11:35:00 -0600 | [diff] [blame] | 202 | * @flags: Flags for selective device removal (DM_REMOVE_...) |
Heinrich Schuchardt | 185f812 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 203 | * Return: 0 if OK, -EKEYREJECTED if not removed due to flags, -EPROBE_DEFER if |
Marek Vasut | cc6f4c8 | 2021-01-24 14:32:46 -0700 | [diff] [blame] | 204 | * this is a vital device and flags is DM_REMOVE_NON_VITAL, other -ve on |
Simon Glass | c51d2e7 | 2021-01-24 14:32:45 -0700 | [diff] [blame] | 205 | * error (such an error here is normally a very bad thing) |
Simon Glass | 6494d70 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 206 | */ |
Masahiro Yamada | 0a5804b | 2015-08-12 07:31:52 +0900 | [diff] [blame] | 207 | #if CONFIG_IS_ENABLED(DM_DEVICE_REMOVE) |
Stefan Roese | 706865a | 2017-03-20 12:51:48 +0100 | [diff] [blame] | 208 | int device_remove(struct udevice *dev, uint flags); |
Simon Glass | 3ac435d | 2014-11-10 17:16:47 -0700 | [diff] [blame] | 209 | #else |
Stefan Roese | 706865a | 2017-03-20 12:51:48 +0100 | [diff] [blame] | 210 | static inline int device_remove(struct udevice *dev, uint flags) { return 0; } |
Simon Glass | 3ac435d | 2014-11-10 17:16:47 -0700 | [diff] [blame] | 211 | #endif |
Simon Glass | 6494d70 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 212 | |
| 213 | /** |
| 214 | * device_unbind() - Unbind a device, destroying it |
| 215 | * |
| 216 | * Unbind a device and remove all memory used by it |
| 217 | * |
| 218 | * @dev: Pointer to device to unbind |
Heinrich Schuchardt | 185f812 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 219 | * Return: 0 if OK, -ve on error |
Simon Glass | 6494d70 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 220 | */ |
Masahiro Yamada | 0a5804b | 2015-08-12 07:31:52 +0900 | [diff] [blame] | 221 | #if CONFIG_IS_ENABLED(DM_DEVICE_REMOVE) |
Heiko Schocher | 54c5d08 | 2014-05-22 12:43:05 +0200 | [diff] [blame] | 222 | int device_unbind(struct udevice *dev); |
Marek Vasut | 66c0315 | 2015-02-18 22:36:18 +0100 | [diff] [blame] | 223 | #else |
| 224 | static inline int device_unbind(struct udevice *dev) { return 0; } |
| 225 | #endif |
Simon Glass | 6494d70 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 226 | |
Masahiro Yamada | 0a5804b | 2015-08-12 07:31:52 +0900 | [diff] [blame] | 227 | #if CONFIG_IS_ENABLED(DM_DEVICE_REMOVE) |
Simon Glass | 3ac435d | 2014-11-10 17:16:47 -0700 | [diff] [blame] | 228 | void device_free(struct udevice *dev); |
| 229 | #else |
| 230 | static inline void device_free(struct udevice *dev) {} |
| 231 | #endif |
| 232 | |
Simon Glass | f330177 | 2015-07-07 20:53:44 -0600 | [diff] [blame] | 233 | /** |
Jean-Jacques Hiblot | 3be9bcb | 2018-08-09 16:17:45 +0200 | [diff] [blame] | 234 | * device_chld_unbind() - Unbind all device's children from the device if bound |
| 235 | * to drv |
| 236 | * |
| 237 | * On error, the function continues to unbind all children, and reports the |
| 238 | * first error. |
| 239 | * |
| 240 | * @dev: The device that is to be stripped of its children |
| 241 | * @drv: The targeted driver |
Heinrich Schuchardt | 185f812 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 242 | * Return: 0 on success, -ve on error |
Jean-Jacques Hiblot | 3be9bcb | 2018-08-09 16:17:45 +0200 | [diff] [blame] | 243 | */ |
| 244 | #if CONFIG_IS_ENABLED(DM_DEVICE_REMOVE) |
| 245 | int device_chld_unbind(struct udevice *dev, struct driver *drv); |
| 246 | #else |
| 247 | static inline int device_chld_unbind(struct udevice *dev, struct driver *drv) |
| 248 | { |
| 249 | return 0; |
| 250 | } |
| 251 | #endif |
| 252 | |
| 253 | /** |
| 254 | * device_chld_remove() - Stop all device's children |
Simon Glass | c51d2e7 | 2021-01-24 14:32:45 -0700 | [diff] [blame] | 255 | * |
| 256 | * This continues through all children recursively stopping part-way through if |
| 257 | * an error occurs. Return values of -EKEYREJECTED are ignored and processing |
| 258 | * continues, since they just indicate that the child did not elect to be |
Marek Vasut | cc6f4c8 | 2021-01-24 14:32:46 -0700 | [diff] [blame] | 259 | * removed based on the value of @flags. Return values of -EPROBE_DEFER cause |
| 260 | * processing of other children to continue, but the function will return |
| 261 | * -EPROBE_DEFER. |
Simon Glass | c51d2e7 | 2021-01-24 14:32:45 -0700 | [diff] [blame] | 262 | * |
Jean-Jacques Hiblot | 3be9bcb | 2018-08-09 16:17:45 +0200 | [diff] [blame] | 263 | * @dev: The device whose children are to be removed |
| 264 | * @drv: The targeted driver |
| 265 | * @flags: Flag, if this functions is called in the pre-OS stage |
Heinrich Schuchardt | 185f812 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 266 | * Return: 0 on success, -EPROBE_DEFER if any child failed to remove, other |
Marek Vasut | cc6f4c8 | 2021-01-24 14:32:46 -0700 | [diff] [blame] | 267 | * -ve on error |
Jean-Jacques Hiblot | 3be9bcb | 2018-08-09 16:17:45 +0200 | [diff] [blame] | 268 | */ |
| 269 | #if CONFIG_IS_ENABLED(DM_DEVICE_REMOVE) |
| 270 | int device_chld_remove(struct udevice *dev, struct driver *drv, |
| 271 | uint flags); |
| 272 | #else |
| 273 | static inline int device_chld_remove(struct udevice *dev, struct driver *drv, |
| 274 | uint flags) |
| 275 | { |
| 276 | return 0; |
| 277 | } |
| 278 | #endif |
| 279 | |
| 280 | /** |
Simon Glass | 12559f5 | 2020-12-22 19:30:27 -0700 | [diff] [blame] | 281 | * dev_set_priv() - Set the private data for a device |
| 282 | * |
| 283 | * This is normally handled by driver model, which automatically allocates |
| 284 | * private data when an 'auto' size if provided by the driver. |
| 285 | * |
| 286 | * Use this function to override normal operation for special situations, such |
| 287 | * as needing to allocate a variable amount of data. |
| 288 | * |
Simon Glass | e81bf6d | 2021-03-15 17:25:41 +1300 | [diff] [blame] | 289 | * If OF_PLATDATA_RT is enabled, this function cannot be used out of core driver |
| 290 | * model code, since the pointer must be within the gd->dm_priv_base region. |
| 291 | * |
Simon Glass | 12559f5 | 2020-12-22 19:30:27 -0700 | [diff] [blame] | 292 | * @dev Device to check |
| 293 | * @priv New private-data pointer |
| 294 | */ |
| 295 | void dev_set_priv(struct udevice *dev, void *priv); |
| 296 | |
| 297 | /** |
| 298 | * dev_set_parent_priv() - Set the parent-private data for a device |
| 299 | * |
| 300 | * This is normally handled by driver model, which automatically allocates |
| 301 | * parent-private data when an 'auto' size if provided by the driver. |
| 302 | * |
| 303 | * Use this function to override normal operation for special situations, such |
| 304 | * as needing to allocate a variable amount of data. |
| 305 | * |
Simon Glass | e81bf6d | 2021-03-15 17:25:41 +1300 | [diff] [blame] | 306 | * If OF_PLATDATA_RT is enabled, this function cannot be used out of core driver |
| 307 | * model code, since the pointer must be within the gd->dm_priv_base region. |
| 308 | * |
Simon Glass | 12559f5 | 2020-12-22 19:30:27 -0700 | [diff] [blame] | 309 | * @dev: Device to update |
| 310 | * @parent_priv: New parent-private data |
| 311 | */ |
| 312 | void dev_set_parent_priv(struct udevice *dev, void *parent_priv); |
| 313 | |
| 314 | /** |
| 315 | * dev_set_uclass_priv() - Set the uclass private data for a device |
| 316 | * |
| 317 | * This is normally handled by driver model, which automatically allocates |
| 318 | * uclass-private data when an 'auto' size if provided by the driver. |
| 319 | * |
| 320 | * Use this function to override normal operation for special situations, such |
| 321 | * as needing to allocate a variable amount of data. |
| 322 | * |
Simon Glass | e81bf6d | 2021-03-15 17:25:41 +1300 | [diff] [blame] | 323 | * If OF_PLATDATA_RT is enabled, this function cannot be used out of core driver |
| 324 | * model code, since the pointer must be within the gd->dm_priv_base region. |
| 325 | * |
Simon Glass | 12559f5 | 2020-12-22 19:30:27 -0700 | [diff] [blame] | 326 | * @dev: Device to update |
| 327 | * @uclass_priv: New uclass private data |
| 328 | */ |
| 329 | void dev_set_uclass_priv(struct udevice *dev, void *uclass_priv); |
| 330 | |
| 331 | /** |
| 332 | * dev_set_plat() - Set the platform data for a device |
| 333 | * |
| 334 | * This is normally handled by driver model, which automatically allocates |
| 335 | * platform data when an 'auto' size if provided by the driver. |
| 336 | * |
| 337 | * Use this function to override normal operation for special situations, such |
| 338 | * as needing to allocate a variable amount of data. |
| 339 | * |
Simon Glass | e81bf6d | 2021-03-15 17:25:41 +1300 | [diff] [blame] | 340 | * If OF_PLATDATA_RT is enabled, this function cannot be used out of core driver |
| 341 | * model code, since the pointer must be within the gd->dm_priv_base region. |
| 342 | * |
Simon Glass | 12559f5 | 2020-12-22 19:30:27 -0700 | [diff] [blame] | 343 | * @dev Device to check |
| 344 | * @plat New platform-data pointer |
| 345 | */ |
| 346 | void dev_set_plat(struct udevice *dev, void *priv); |
| 347 | |
| 348 | /** |
| 349 | * dev_set_parent_plat() - Set the parent platform data for a device |
| 350 | * |
| 351 | * This is normally handled by driver model, which automatically allocates |
| 352 | * parent platform data when an 'auto' size if provided by the driver. |
| 353 | * |
| 354 | * Use this function to override normal operation for special situations, such |
| 355 | * as needing to allocate a variable amount of data. |
| 356 | * |
Simon Glass | e81bf6d | 2021-03-15 17:25:41 +1300 | [diff] [blame] | 357 | * If OF_PLATDATA_RT is enabled, this function cannot be used out of core driver |
| 358 | * model code, since the pointer must be within the gd->dm_priv_base region. |
| 359 | * |
Simon Glass | 12559f5 | 2020-12-22 19:30:27 -0700 | [diff] [blame] | 360 | * @dev: Device to update |
| 361 | * @parent_plat: New parent platform data |
| 362 | */ |
| 363 | void dev_set_parent_plat(struct udevice *dev, void *parent_plat); |
| 364 | |
| 365 | /** |
| 366 | * dev_set_uclass_plat() - Set the uclass platform data for a device |
| 367 | * |
| 368 | * This is normally handled by driver model, which automatically allocates |
| 369 | * uclass platform data when an 'auto' size if provided by the driver. |
| 370 | * |
| 371 | * Use this function to override normal operation for special situations, such |
| 372 | * as needing to allocate a variable amount of data. |
| 373 | * |
Simon Glass | e81bf6d | 2021-03-15 17:25:41 +1300 | [diff] [blame] | 374 | * If OF_PLATDATA_RT is enabled, this function cannot be used out of core driver |
| 375 | * model code, since the pointer must be within the gd->dm_priv_base region. |
| 376 | * |
Simon Glass | 12559f5 | 2020-12-22 19:30:27 -0700 | [diff] [blame] | 377 | * @dev: Device to update |
| 378 | * @uclass_plat: New uclass platform data |
| 379 | */ |
| 380 | void dev_set_uclass_plat(struct udevice *dev, void *uclass_plat); |
| 381 | |
| 382 | /** |
Simon Glass | f330177 | 2015-07-07 20:53:44 -0600 | [diff] [blame] | 383 | * simple_bus_translate() - translate a bus address to a system address |
| 384 | * |
| 385 | * This handles the 'ranges' property in a simple bus. It translates the |
| 386 | * device address @addr to a system address using this property. |
| 387 | * |
| 388 | * @dev: Simple bus device (parent of target device) |
| 389 | * @addr: Address to translate |
Heinrich Schuchardt | 185f812 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 390 | * Return: new address |
Simon Glass | f330177 | 2015-07-07 20:53:44 -0600 | [diff] [blame] | 391 | */ |
| 392 | fdt_addr_t simple_bus_translate(struct udevice *dev, fdt_addr_t addr); |
| 393 | |
Simon Glass | 89876a5 | 2014-06-11 23:29:49 -0600 | [diff] [blame] | 394 | /* Cast away any volatile pointer */ |
| 395 | #define DM_ROOT_NON_CONST (((gd_t *)gd)->dm_root) |
| 396 | #define DM_UCLASS_ROOT_NON_CONST (((gd_t *)gd)->uclass_root) |
Simon Glass | 8a71553 | 2020-12-19 10:40:17 -0700 | [diff] [blame] | 397 | #define DM_UCLASS_ROOT_S_NON_CONST (((gd_t *)gd)->uclass_root_s) |
Simon Glass | 89876a5 | 2014-06-11 23:29:49 -0600 | [diff] [blame] | 398 | |
Masahiro Yamada | 608f26c | 2015-07-25 21:52:35 +0900 | [diff] [blame] | 399 | /* device resource management */ |
Masahiro Yamada | e2282d7 | 2015-07-25 21:52:37 +0900 | [diff] [blame] | 400 | #ifdef CONFIG_DEVRES |
| 401 | |
Masahiro Yamada | 608f26c | 2015-07-25 21:52:35 +0900 | [diff] [blame] | 402 | /** |
| 403 | * devres_release_probe - Release managed resources allocated after probing |
| 404 | * @dev: Device to release resources for |
| 405 | * |
| 406 | * Release all resources allocated for @dev when it was probed or later. |
| 407 | * This function is called on driver removal. |
| 408 | */ |
| 409 | void devres_release_probe(struct udevice *dev); |
| 410 | |
| 411 | /** |
| 412 | * devres_release_all - Release all managed resources |
| 413 | * @dev: Device to release resources for |
| 414 | * |
| 415 | * Release all resources associated with @dev. This function is |
| 416 | * called on driver unbinding. |
| 417 | */ |
| 418 | void devres_release_all(struct udevice *dev); |
| 419 | |
Masahiro Yamada | e2282d7 | 2015-07-25 21:52:37 +0900 | [diff] [blame] | 420 | #else /* ! CONFIG_DEVRES */ |
| 421 | |
| 422 | static inline void devres_release_probe(struct udevice *dev) |
| 423 | { |
| 424 | } |
| 425 | |
| 426 | static inline void devres_release_all(struct udevice *dev) |
| 427 | { |
| 428 | } |
| 429 | |
| 430 | #endif /* ! CONFIG_DEVRES */ |
Simon Glass | 5b896ed | 2022-03-04 08:43:03 -0700 | [diff] [blame] | 431 | |
| 432 | static inline int device_notify(const struct udevice *dev, enum event_t type) |
| 433 | { |
| 434 | #if CONFIG_IS_ENABLED(DM_EVENT) |
| 435 | return event_notify(type, &dev, sizeof(dev)); |
| 436 | #else |
| 437 | return 0; |
| 438 | #endif |
| 439 | } |
Simon Glass | 6494d70 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 440 | #endif |