Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Simon Glass | dd6ab88 | 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 | dd6ab88 | 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 | 322b290 | 2017-05-18 20:09:05 -0600 | [diff] [blame] | 13 | #include <dm/ofnode.h> |
| 14 | |
| 15 | struct device_node; |
Heiko Schocher | b74fcb4 | 2014-05-22 12:43:05 +0200 | [diff] [blame] | 16 | struct udevice; |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 17 | |
| 18 | /** |
Simon Glass | 16b4f94 | 2020-11-28 17:50:06 -0700 | [diff] [blame] | 19 | * device_bind() - Create a device and bind it to a driver |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 20 | * |
| 21 | * Called to set up a new device attached to a driver. The device will either |
Simon Glass | 71fa5b4 | 2020-12-03 16:55:18 -0700 | [diff] [blame] | 22 | * have plat, or a device tree node which can be used to create the |
| 23 | * plat. |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 24 | * |
| 25 | * Once bound a device exists but is not yet active until device_probe() is |
| 26 | * called. |
| 27 | * |
| 28 | * @parent: Pointer to device's parent, under which this driver will exist |
| 29 | * @drv: Device's driver |
| 30 | * @name: Name of device (e.g. device tree node name) |
Simon Glass | 71fa5b4 | 2020-12-03 16:55:18 -0700 | [diff] [blame] | 31 | * @plat: Pointer to data for this device - the structure is device- |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 32 | * specific but may include the device's I/O address, etc.. This is NULL for |
| 33 | * devices which use device tree. |
Simon Glass | 16b4f94 | 2020-11-28 17:50:06 -0700 | [diff] [blame] | 34 | * @ofnode: Devicetree node for this device. This is ofnode_null() for |
| 35 | * devices which don't use devicetree or don't have a node. |
Masahiro Yamada | e1cc1f0 | 2015-08-27 12:44:28 +0900 | [diff] [blame] | 36 | * @devp: if non-NULL, returns a pointer to the bound device |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 37 | * @return 0 if OK, -ve on error |
| 38 | */ |
Simon Glass | 884870f | 2020-11-28 17:50:01 -0700 | [diff] [blame] | 39 | int device_bind(struct udevice *parent, const struct driver *drv, |
Simon Glass | 71fa5b4 | 2020-12-03 16:55:18 -0700 | [diff] [blame] | 40 | const char *name, void *plat, ofnode node, |
Simon Glass | 884870f | 2020-11-28 17:50:01 -0700 | [diff] [blame] | 41 | struct udevice **devp); |
Simon Glass | 9eb151e | 2018-06-11 13:07:15 -0600 | [diff] [blame] | 42 | |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 43 | /** |
Stephen Warren | 8c93df1 | 2016-05-11 15:26:24 -0600 | [diff] [blame] | 44 | * device_bind_with_driver_data() - Create a device and bind it to a driver |
| 45 | * |
| 46 | * Called to set up a new device attached to a driver, in the case where the |
| 47 | * driver was matched to the device by means of a match table that provides |
| 48 | * driver_data. |
| 49 | * |
| 50 | * Once bound a device exists but is not yet active until device_probe() is |
| 51 | * called. |
| 52 | * |
| 53 | * @parent: Pointer to device's parent, under which this driver will exist |
| 54 | * @drv: Device's driver |
| 55 | * @name: Name of device (e.g. device tree node name) |
| 56 | * @driver_data: The driver_data field from the driver's match table. |
Simon Glass | 322b290 | 2017-05-18 20:09:05 -0600 | [diff] [blame] | 57 | * @node: Device tree node for this device. This is invalid for devices which |
| 58 | * don't use device tree. |
Stephen Warren | 8c93df1 | 2016-05-11 15:26:24 -0600 | [diff] [blame] | 59 | * @devp: if non-NULL, returns a pointer to the bound device |
| 60 | * @return 0 if OK, -ve on error |
| 61 | */ |
| 62 | int device_bind_with_driver_data(struct udevice *parent, |
| 63 | const struct driver *drv, const char *name, |
Simon Glass | 322b290 | 2017-05-18 20:09:05 -0600 | [diff] [blame] | 64 | ulong driver_data, ofnode node, |
Stephen Warren | 8c93df1 | 2016-05-11 15:26:24 -0600 | [diff] [blame] | 65 | struct udevice **devp); |
Stephen Warren | 8c93df1 | 2016-05-11 15:26:24 -0600 | [diff] [blame] | 66 | /** |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 67 | * device_bind_by_name: Create a device and bind it to a driver |
| 68 | * |
| 69 | * This is a helper function used to bind devices which do not use device |
| 70 | * tree. |
| 71 | * |
| 72 | * @parent: Pointer to device's parent |
Bin Meng | 004323a | 2018-10-10 22:06:59 -0700 | [diff] [blame] | 73 | * @pre_reloc_only: If true, bind the driver only if its DM_FLAG_PRE_RELOC flag |
| 74 | * is set. If false bind the driver always. |
Simon Glass | 71fa5b4 | 2020-12-03 16:55:18 -0700 | [diff] [blame] | 75 | * @info: Name and plat for this device |
Masahiro Yamada | e1cc1f0 | 2015-08-27 12:44:28 +0900 | [diff] [blame] | 76 | * @devp: if non-NULL, returns a pointer to the bound device |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 77 | * @return 0 if OK, -ve on error |
| 78 | */ |
Simon Glass | fef72b7 | 2014-07-23 06:55:03 -0600 | [diff] [blame] | 79 | int device_bind_by_name(struct udevice *parent, bool pre_reloc_only, |
Simon Glass | cfd6a00 | 2020-10-03 11:31:33 -0600 | [diff] [blame] | 80 | const struct driver_info *info, struct udevice **devp); |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 81 | |
| 82 | /** |
Claudiu Beznea | bf5b823 | 2020-09-07 17:46:33 +0300 | [diff] [blame] | 83 | * device_reparent: reparent the device to a new parent |
| 84 | * |
| 85 | * @dev: pointer to device to be reparented |
| 86 | * @new_parent: pointer to new parent device |
| 87 | * @return 0 if OK, -ve on error |
| 88 | */ |
| 89 | int device_reparent(struct udevice *dev, struct udevice *new_parent); |
| 90 | |
| 91 | /** |
Simon Glass | aad29ae | 2020-12-03 16:55:21 -0700 | [diff] [blame] | 92 | * device_of_to_plat() - Read platform data for a device |
Simon Glass | 4a26385 | 2019-12-29 21:19:20 -0700 | [diff] [blame] | 93 | * |
| 94 | * Read platform data for a device (typically from the device tree) so that |
| 95 | * the information needed to probe the device is present. |
| 96 | * |
| 97 | * This may cause some others devices to be probed if this one depends on them, |
| 98 | * e.g. a GPIO line will cause a GPIO device to be probed. |
| 99 | * |
| 100 | * All private data associated with the device is allocated. |
| 101 | * |
| 102 | * @dev: Pointer to device to process |
| 103 | * @return 0 if OK, -ve on error |
| 104 | */ |
Simon Glass | aad29ae | 2020-12-03 16:55:21 -0700 | [diff] [blame] | 105 | int device_of_to_plat(struct udevice *dev); |
Simon Glass | 4a26385 | 2019-12-29 21:19:20 -0700 | [diff] [blame] | 106 | |
| 107 | /** |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 108 | * device_probe() - Probe a device, activating it |
| 109 | * |
| 110 | * Activate a device so that it is ready for use. All its parents are probed |
| 111 | * first. |
| 112 | * |
| 113 | * @dev: Pointer to device to probe |
| 114 | * @return 0 if OK, -ve on error |
| 115 | */ |
Heiko Schocher | b74fcb4 | 2014-05-22 12:43:05 +0200 | [diff] [blame] | 116 | int device_probe(struct udevice *dev); |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 117 | |
| 118 | /** |
| 119 | * device_remove() - Remove a device, de-activating it |
| 120 | * |
| 121 | * De-activate a device so that it is no longer ready for use. All its |
| 122 | * children are deactivated first. |
| 123 | * |
| 124 | * @dev: Pointer to device to remove |
Simon Glass | 856e020 | 2017-07-29 11:35:00 -0600 | [diff] [blame] | 125 | * @flags: Flags for selective device removal (DM_REMOVE_...) |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 126 | * @return 0 if OK, -ve on error (an error here is normally a very bad thing) |
| 127 | */ |
Masahiro Yamada | 04aa00d | 2015-08-12 07:31:52 +0900 | [diff] [blame] | 128 | #if CONFIG_IS_ENABLED(DM_DEVICE_REMOVE) |
Stefan Roese | 80b5bc9 | 2017-03-20 12:51:48 +0100 | [diff] [blame] | 129 | int device_remove(struct udevice *dev, uint flags); |
Simon Glass | b38ea5a | 2014-11-10 17:16:47 -0700 | [diff] [blame] | 130 | #else |
Stefan Roese | 80b5bc9 | 2017-03-20 12:51:48 +0100 | [diff] [blame] | 131 | static inline int device_remove(struct udevice *dev, uint flags) { return 0; } |
Simon Glass | b38ea5a | 2014-11-10 17:16:47 -0700 | [diff] [blame] | 132 | #endif |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 133 | |
| 134 | /** |
| 135 | * device_unbind() - Unbind a device, destroying it |
| 136 | * |
| 137 | * Unbind a device and remove all memory used by it |
| 138 | * |
| 139 | * @dev: Pointer to device to unbind |
| 140 | * @return 0 if OK, -ve on error |
| 141 | */ |
Masahiro Yamada | 04aa00d | 2015-08-12 07:31:52 +0900 | [diff] [blame] | 142 | #if CONFIG_IS_ENABLED(DM_DEVICE_REMOVE) |
Heiko Schocher | b74fcb4 | 2014-05-22 12:43:05 +0200 | [diff] [blame] | 143 | int device_unbind(struct udevice *dev); |
Marek Vasut | 45a9335 | 2015-02-18 22:36:18 +0100 | [diff] [blame] | 144 | #else |
| 145 | static inline int device_unbind(struct udevice *dev) { return 0; } |
| 146 | #endif |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 147 | |
Masahiro Yamada | 04aa00d | 2015-08-12 07:31:52 +0900 | [diff] [blame] | 148 | #if CONFIG_IS_ENABLED(DM_DEVICE_REMOVE) |
Simon Glass | b38ea5a | 2014-11-10 17:16:47 -0700 | [diff] [blame] | 149 | void device_free(struct udevice *dev); |
| 150 | #else |
| 151 | static inline void device_free(struct udevice *dev) {} |
| 152 | #endif |
| 153 | |
Simon Glass | 59b6196 | 2015-07-07 20:53:44 -0600 | [diff] [blame] | 154 | /** |
Jean-Jacques Hiblot | 2c556a1 | 2018-08-09 16:17:45 +0200 | [diff] [blame] | 155 | * device_chld_unbind() - Unbind all device's children from the device if bound |
| 156 | * to drv |
| 157 | * |
| 158 | * On error, the function continues to unbind all children, and reports the |
| 159 | * first error. |
| 160 | * |
| 161 | * @dev: The device that is to be stripped of its children |
| 162 | * @drv: The targeted driver |
| 163 | * @return 0 on success, -ve on error |
| 164 | */ |
| 165 | #if CONFIG_IS_ENABLED(DM_DEVICE_REMOVE) |
| 166 | int device_chld_unbind(struct udevice *dev, struct driver *drv); |
| 167 | #else |
| 168 | static inline int device_chld_unbind(struct udevice *dev, struct driver *drv) |
| 169 | { |
| 170 | return 0; |
| 171 | } |
| 172 | #endif |
| 173 | |
| 174 | /** |
| 175 | * device_chld_remove() - Stop all device's children |
| 176 | * @dev: The device whose children are to be removed |
| 177 | * @drv: The targeted driver |
| 178 | * @flags: Flag, if this functions is called in the pre-OS stage |
| 179 | * @return 0 on success, -ve on error |
| 180 | */ |
| 181 | #if CONFIG_IS_ENABLED(DM_DEVICE_REMOVE) |
| 182 | int device_chld_remove(struct udevice *dev, struct driver *drv, |
| 183 | uint flags); |
| 184 | #else |
| 185 | static inline int device_chld_remove(struct udevice *dev, struct driver *drv, |
| 186 | uint flags) |
| 187 | { |
| 188 | return 0; |
| 189 | } |
| 190 | #endif |
| 191 | |
| 192 | /** |
Simon Glass | d4f0c94 | 2020-12-22 19:30:27 -0700 | [diff] [blame] | 193 | * dev_set_priv() - Set the private data for a device |
| 194 | * |
| 195 | * This is normally handled by driver model, which automatically allocates |
| 196 | * private data when an 'auto' size if provided by the driver. |
| 197 | * |
| 198 | * Use this function to override normal operation for special situations, such |
| 199 | * as needing to allocate a variable amount of data. |
| 200 | * |
| 201 | * @dev Device to check |
| 202 | * @priv New private-data pointer |
| 203 | */ |
| 204 | void dev_set_priv(struct udevice *dev, void *priv); |
| 205 | |
| 206 | /** |
| 207 | * dev_set_parent_priv() - Set the parent-private data for a device |
| 208 | * |
| 209 | * This is normally handled by driver model, which automatically allocates |
| 210 | * parent-private data when an 'auto' size if provided by the driver. |
| 211 | * |
| 212 | * Use this function to override normal operation for special situations, such |
| 213 | * as needing to allocate a variable amount of data. |
| 214 | * |
| 215 | * @dev: Device to update |
| 216 | * @parent_priv: New parent-private data |
| 217 | */ |
| 218 | void dev_set_parent_priv(struct udevice *dev, void *parent_priv); |
| 219 | |
| 220 | /** |
| 221 | * dev_set_uclass_priv() - Set the uclass private data for a device |
| 222 | * |
| 223 | * This is normally handled by driver model, which automatically allocates |
| 224 | * uclass-private data when an 'auto' size if provided by the driver. |
| 225 | * |
| 226 | * Use this function to override normal operation for special situations, such |
| 227 | * as needing to allocate a variable amount of data. |
| 228 | * |
| 229 | * @dev: Device to update |
| 230 | * @uclass_priv: New uclass private data |
| 231 | */ |
| 232 | void dev_set_uclass_priv(struct udevice *dev, void *uclass_priv); |
| 233 | |
| 234 | /** |
| 235 | * dev_set_plat() - Set the platform data for a device |
| 236 | * |
| 237 | * This is normally handled by driver model, which automatically allocates |
| 238 | * platform data when an 'auto' size if provided by the driver. |
| 239 | * |
| 240 | * Use this function to override normal operation for special situations, such |
| 241 | * as needing to allocate a variable amount of data. |
| 242 | * |
| 243 | * @dev Device to check |
| 244 | * @plat New platform-data pointer |
| 245 | */ |
| 246 | void dev_set_plat(struct udevice *dev, void *priv); |
| 247 | |
| 248 | /** |
| 249 | * dev_set_parent_plat() - Set the parent platform data for a device |
| 250 | * |
| 251 | * This is normally handled by driver model, which automatically allocates |
| 252 | * parent platform data when an 'auto' size if provided by the driver. |
| 253 | * |
| 254 | * Use this function to override normal operation for special situations, such |
| 255 | * as needing to allocate a variable amount of data. |
| 256 | * |
| 257 | * @dev: Device to update |
| 258 | * @parent_plat: New parent platform data |
| 259 | */ |
| 260 | void dev_set_parent_plat(struct udevice *dev, void *parent_plat); |
| 261 | |
| 262 | /** |
| 263 | * dev_set_uclass_plat() - Set the uclass platform data for a device |
| 264 | * |
| 265 | * This is normally handled by driver model, which automatically allocates |
| 266 | * uclass platform data when an 'auto' size if provided by the driver. |
| 267 | * |
| 268 | * Use this function to override normal operation for special situations, such |
| 269 | * as needing to allocate a variable amount of data. |
| 270 | * |
| 271 | * @dev: Device to update |
| 272 | * @uclass_plat: New uclass platform data |
| 273 | */ |
| 274 | void dev_set_uclass_plat(struct udevice *dev, void *uclass_plat); |
| 275 | |
| 276 | /** |
Simon Glass | 59b6196 | 2015-07-07 20:53:44 -0600 | [diff] [blame] | 277 | * simple_bus_translate() - translate a bus address to a system address |
| 278 | * |
| 279 | * This handles the 'ranges' property in a simple bus. It translates the |
| 280 | * device address @addr to a system address using this property. |
| 281 | * |
| 282 | * @dev: Simple bus device (parent of target device) |
| 283 | * @addr: Address to translate |
| 284 | * @return new address |
| 285 | */ |
| 286 | fdt_addr_t simple_bus_translate(struct udevice *dev, fdt_addr_t addr); |
| 287 | |
Simon Glass | 34a1d35 | 2014-06-11 23:29:49 -0600 | [diff] [blame] | 288 | /* Cast away any volatile pointer */ |
| 289 | #define DM_ROOT_NON_CONST (((gd_t *)gd)->dm_root) |
| 290 | #define DM_UCLASS_ROOT_NON_CONST (((gd_t *)gd)->uclass_root) |
Simon Glass | 784cd9e | 2020-12-19 10:40:17 -0700 | [diff] [blame] | 291 | #define DM_UCLASS_ROOT_S_NON_CONST (((gd_t *)gd)->uclass_root_s) |
Simon Glass | 34a1d35 | 2014-06-11 23:29:49 -0600 | [diff] [blame] | 292 | |
Masahiro Yamada | 8b15b16 | 2015-07-25 21:52:35 +0900 | [diff] [blame] | 293 | /* device resource management */ |
Masahiro Yamada | 029bfca | 2015-07-25 21:52:37 +0900 | [diff] [blame] | 294 | #ifdef CONFIG_DEVRES |
| 295 | |
Masahiro Yamada | 8b15b16 | 2015-07-25 21:52:35 +0900 | [diff] [blame] | 296 | /** |
| 297 | * devres_release_probe - Release managed resources allocated after probing |
| 298 | * @dev: Device to release resources for |
| 299 | * |
| 300 | * Release all resources allocated for @dev when it was probed or later. |
| 301 | * This function is called on driver removal. |
| 302 | */ |
| 303 | void devres_release_probe(struct udevice *dev); |
| 304 | |
| 305 | /** |
| 306 | * devres_release_all - Release all managed resources |
| 307 | * @dev: Device to release resources for |
| 308 | * |
| 309 | * Release all resources associated with @dev. This function is |
| 310 | * called on driver unbinding. |
| 311 | */ |
| 312 | void devres_release_all(struct udevice *dev); |
| 313 | |
Masahiro Yamada | 029bfca | 2015-07-25 21:52:37 +0900 | [diff] [blame] | 314 | #else /* ! CONFIG_DEVRES */ |
| 315 | |
| 316 | static inline void devres_release_probe(struct udevice *dev) |
| 317 | { |
| 318 | } |
| 319 | |
| 320 | static inline void devres_release_all(struct udevice *dev) |
| 321 | { |
| 322 | } |
| 323 | |
| 324 | #endif /* ! CONFIG_DEVRES */ |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 325 | #endif |