aboutsummaryrefslogtreecommitdiff
path: root/drivers/core
diff options
context:
space:
mode:
authorAnatolij Gustschin <agust@denx.de>2019-09-27 13:48:15 +0530
committerSimon Glass <sjg@chromium.org>2019-10-15 08:40:03 -0600
commit52edfed65de967a86983a55c51ba0727090efc43 (patch)
tree9c11b27f24155ddfad86ea477046d4b05c2c50c2 /drivers/core
parent0cf795a8024f36e2aaea3db8ab8b4d3805dc541c (diff)
downloadu-boot-52edfed65de967a86983a55c51ba0727090efc43.zip
u-boot-52edfed65de967a86983a55c51ba0727090efc43.tar.gz
u-boot-52edfed65de967a86983a55c51ba0727090efc43.tar.bz2
dm: core: device: switch off power domain after device removal
The power domain associated with a device is enabled when probing, but currently the domain remains enabled when the device is removed. Some boards started to disable power domains for selected devices via custom board_quiesce_devices(), but it doesn't work in many cases, i. e. because devices still can be accessed later in .remove() callback on behalf of dm_remove_devices_flags(). Utilize the DM core to power off the device power domain, but add a device flag to be able to selectively let the power domain enabled after device removal. This might be required for devices that must remain enabled when booting OS, i. e. serial console for debug output, etc. Signed-off-by: Anatolij Gustschin <agust@denx.de> Signed-off-by: Lokesh Vutla <lokeshvutla@ti.com> Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'drivers/core')
-rw-r--r--drivers/core/device-remove.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/core/device-remove.c b/drivers/core/device-remove.c
index 586fade..5c8dc4a 100644
--- a/drivers/core/device-remove.c
+++ b/drivers/core/device-remove.c
@@ -16,6 +16,7 @@
#include <dm/uclass.h>
#include <dm/uclass-internal.h>
#include <dm/util.h>
+#include <power-domain.h>
int device_chld_unbind(struct udevice *dev, struct driver *drv)
{
@@ -192,6 +193,10 @@ int device_remove(struct udevice *dev, uint flags)
}
}
+ if (!(drv->flags & DM_FLAG_DEFAULT_PD_CTRL_OFF) &&
+ (dev != gd->cur_serial_dev))
+ dev_power_domain_off(dev);
+
if (flags_remove(flags, drv->flags)) {
device_free(dev);