diff options
author | Mario Six <mario.six@gdsys.cc> | 2018-07-31 14:24:13 +0200 |
---|---|---|
committer | Anatolij Gustschin <agust@denx.de> | 2018-08-11 16:00:19 +0200 |
commit | 440bc11f2e10dd80c7f5e717bc52daff73091bd5 (patch) | |
tree | 7f24a33cc0fecf3f543035182777225e17d1b6ed /include | |
parent | 3958bffeb3cb536f378072ee1935c7106db91e06 (diff) | |
download | u-boot-440bc11f2e10dd80c7f5e717bc52daff73091bd5.tar.gz u-boot-440bc11f2e10dd80c7f5e717bc52daff73091bd5.tar.xz u-boot-440bc11f2e10dd80c7f5e717bc52daff73091bd5.zip |
misc: uclass: Add enable/disable function
Add generic enable/disable function to the misc uclass.
Reviewed-by: Simon Glass <sjg@chromium.org>
Signed-off-by: Mario Six <mario.six@gdsys.cc>
Diffstat (limited to 'include')
-rw-r--r-- | include/misc.h | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/include/misc.h b/include/misc.h index ce2f05dfd4..50515852b2 100644 --- a/include/misc.h +++ b/include/misc.h @@ -60,6 +60,23 @@ int misc_call(struct udevice *dev, int msgid, void *tx_msg, int tx_size, void *rx_msg, int rx_size); /** + * misc_set_enabled() - Enable or disable a device. + * @dev: the device to enable or disable. + * @val: the flag that tells the driver to either enable or disable the device. + * + * The semantics of "disable" and "enable" should be understood here as + * activating or deactivating the device's primary function, hence a "disabled" + * device should be dormant, but still answer to commands and queries. + * + * A probed device may start in a disabled or enabled state, depending on the + * driver and hardware. + * + * Return: -ve on error, 0 if the previous state was "disabled", 1 if the + * previous state was "enabled" + */ +int misc_set_enabled(struct udevice *dev, bool val); + +/* * struct misc_ops - Driver model Misc operations * * The uclass interface is implemented by all miscellaneous devices which @@ -112,6 +129,16 @@ struct misc_ops { */ int (*call)(struct udevice *dev, int msgid, void *tx_msg, int tx_size, void *rx_msg, int rx_size); + /** + * Enable or disable a device, optional. + * @dev: the device to enable. + * @val: the flag that tells the driver to either enable or disable the + * device. + * + * Return: -ve on error, 0 if the previous state was "disabled", 1 if + * the previous state was "enabled" + */ + int (*set_enabled)(struct udevice *dev, bool val); }; #endif /* _MISC_H_ */ |