diff options
author | Simon Glass <sjg@chromium.org> | 2015-03-05 19:25:22 (GMT) |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2015-04-17 01:27:42 (GMT) |
commit | 02c07b3741f1b825934b1a6eb8f23530532dc426 (patch) | |
tree | db9511b8172e15dc4f0ad4a44a0cc05474851cc0 /include/dm/uclass.h | |
parent | 02eeb1bbb1749903b157140de5dedebf7e44edcf (diff) | |
download | u-boot-fsl-qoriq-02c07b3741f1b825934b1a6eb8f23530532dc426.tar.xz |
dm: core: Add a uclass pre_probe() method for devices
Some uclasses want to set up a device before it is probed. Add a method
for this.
An example is with PCI, where a PCI uclass wants to set up its private
data for later use. This allows the device's uclass() method to make calls
whcih use that data (for example, read PCI memory regions from device
tree, set up bus numbers).
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include/dm/uclass.h')
-rw-r--r-- | include/dm/uclass.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/dm/uclass.h b/include/dm/uclass.h index d6c40c6..d57d804 100644 --- a/include/dm/uclass.h +++ b/include/dm/uclass.h @@ -53,6 +53,7 @@ struct udevice; * @id: ID number of this uclass * @post_bind: Called after a new device is bound to this uclass * @pre_unbind: Called before a device is unbound from this uclass + * @pre_probe: Called before a new device is probed * @post_probe: Called after a new device is probed * @pre_remove: Called before a device is removed * @child_post_bind: Called after a child is bound to a device in this uclass @@ -80,6 +81,7 @@ struct uclass_driver { enum uclass_id id; int (*post_bind)(struct udevice *dev); int (*pre_unbind)(struct udevice *dev); + int (*pre_probe)(struct udevice *dev); int (*post_probe)(struct udevice *dev); int (*pre_remove)(struct udevice *dev); int (*child_post_bind)(struct udevice *dev); |