diff options
author | Peng Fan <peng.fan@nxp.com> | 2024-05-14 21:18:33 +0800 |
---|---|---|
committer | Ulf Hansson <ulf.hansson@linaro.org> | 2024-06-05 11:54:43 +0200 |
commit | e5cddc34067acf7848f63c014761ed232172f027 (patch) | |
tree | 7f7b7836785750a76a5a4a42e7ad8061db3e5dd8 /drivers/pmdomain | |
parent | 196e9f5bf2c566682f52fb6a25276794dded2fe9 (diff) | |
download | linux-e5cddc34067acf7848f63c014761ed232172f027.tar.gz linux-e5cddc34067acf7848f63c014761ed232172f027.tar.bz2 linux-e5cddc34067acf7848f63c014761ed232172f027.zip |
pmdomain: arm: scmi_pm_domain: set flag GENPD_FLAG_ACTIVE_WAKEUP
Set flag GENPD_FLAG_ACTIVE_WAKEUP to scmi 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: Peng Fan <peng.fan@nxp.com>
Acked-by: Sudeep Holla <sudeep.holla@arm.com>
Link: https://lore.kernel.org/r/20240514131833.911703-1-peng.fan@oss.nxp.com
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
Diffstat (limited to 'drivers/pmdomain')
-rw-r--r-- | drivers/pmdomain/arm/scmi_pm_domain.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/pmdomain/arm/scmi_pm_domain.c b/drivers/pmdomain/arm/scmi_pm_domain.c index 0e05a79de82d..a7784a8bb5db 100644 --- a/drivers/pmdomain/arm/scmi_pm_domain.c +++ b/drivers/pmdomain/arm/scmi_pm_domain.c @@ -102,6 +102,7 @@ static int scmi_pm_domain_probe(struct scmi_device *sdev) scmi_pd->genpd.name = scmi_pd->name; scmi_pd->genpd.power_off = scmi_pd_power_off; scmi_pd->genpd.power_on = scmi_pd_power_on; + scmi_pd->genpd.flags = GENPD_FLAG_ACTIVE_WAKEUP; pm_genpd_init(&scmi_pd->genpd, NULL, state == SCMI_POWER_STATE_GENERIC_OFF); |