cpuidle: psci: Extend information in log about OSI/PC mode
authorUlf Hansson <ulf.hansson@linaro.org>
Thu, 20 Oct 2022 11:55:13 +0000 (13:55 +0200)
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>
Fri, 28 Oct 2022 18:06:36 +0000 (20:06 +0200)
It's useful to understand whether we are using OS-initiated (OSI) mode or
Platform Coordinated (PC) mode, when initializing the CPU PM domains.
Therefore, let's extend the print in the log after a successful probe with
this information.

Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
Acked-by: Sudeep Holla <sudeep.holla@arm.com
Acked-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
drivers/cpuidle/cpuidle-psci-domain.c

index 8219849..c80cf9d 100644 (file)
@@ -181,7 +181,8 @@ static int psci_cpuidle_domain_probe(struct platform_device *pdev)
        if (ret)
                goto remove_pd;
 
-       pr_info("Initialized CPU PM domain topology\n");
+       pr_info("Initialized CPU PM domain topology using %s mode\n",
+               use_osi ? "OSI" : "PC");
        return 0;
 
 put_node: