Re: [PATCH v3 17/22] firmware: arm_scmi: add device power domain support using genpd
From: Sudeep Holla <hidden>
Date: 2017-09-29 13:41:17
Also in:
linux-arm-kernel, lkml
On 28/09/17 22:18, Ulf Hansson wrote:
On 28 September 2017 at 15:11, Sudeep Holla [off-list ref] wrote:quoted
This patch hooks up the support for device power domain provided by SCMI using the Linux generic power domain infrastructure. Cc: Kevin Hilman <khilman-rdvid1DuHRBWk0Htik3J/w@public.gmane.org> Cc: Ulf Hansson <redacted> Signed-off-by: Sudeep Holla <redacted> --- drivers/firmware/Kconfig | 13 +++ drivers/firmware/arm_scmi/Makefile | 1 + drivers/firmware/arm_scmi/scmi_pm_domain.c | 134 +++++++++++++++++++++++++++++ 3 files changed, 148 insertions(+) create mode 100644 drivers/firmware/arm_scmi/scmi_pm_domain.c
[...]
quoted
+ for (i = 0; i < num_domains; i++, scmi_pd++) { + domains[i] = &scmi_pd->genpd; + + scmi_pd->domain = i; + scmi_pd->handle = handle; + scmi_pd->name = handle->power_ops->name_get(handle, i); + 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; + + /* + * Treat all power domains as off at boot. + * + * The SCP firmware itself may have switched on some domains, + * but for reference counting purpose, keep it this way. + */I think it would be better to give the correct information about the state of the PM domain. Otherwise genpd may end up thinking a PM domain is off, while in fact it's on - thus wasting power.
Agreed, I missed to notice that. I will fixup and send the update. -- Regards, Sudeep -- To unsubscribe from this list: send the line "unsubscribe devicetree" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html