Commit 562cdead authored by Stefan Wahren's avatar Stefan Wahren Committed by Ulf Hansson

pmdomain: raspberrypi-power: set flag GENPD_FLAG_ACTIVE_WAKEUP

Set flag GENPD_FLAG_ACTIVE_WAKEUP to rpi_power genpd, then when a device
is set as wakeup source using device_set_wakeup_enable, the power
domain could be kept on to make sure the device could wakeup the system.
Signed-off-by: default avatarStefan Wahren <wahrenst@gmx.net>
Link: https://lore.kernel.org/r/20240728114200.75559-6-wahrenst@gmx.netSigned-off-by: default avatarUlf Hansson <ulf.hansson@linaro.org>
parent eb3896ea
...@@ -91,6 +91,7 @@ static void rpi_common_init_power_domain(struct rpi_power_domains *rpi_domains, ...@@ -91,6 +91,7 @@ static void rpi_common_init_power_domain(struct rpi_power_domains *rpi_domains,
dom->fw = rpi_domains->fw; dom->fw = rpi_domains->fw;
dom->base.name = name; dom->base.name = name;
dom->base.flags = GENPD_FLAG_ACTIVE_WAKEUP;
dom->base.power_on = rpi_domain_on; dom->base.power_on = rpi_domain_on;
dom->base.power_off = rpi_domain_off; dom->base.power_off = rpi_domain_off;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment