mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-09-10 17:00:41 -04:00
Merge tag 'pmdomain-v7.3-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/linux-pm
Pull pmdomain and cpuidle fixes from Ulf Hansson: "pmdomain providers: - mediatek: Fix Kconfig for Airoha power domains - qcom: Revert adding the missing power domains for Eliza cpuidle: - psci: Fix support for probe deferral by dropping the faux device - dt_idle_genpd: Free the original name allocation" * tag 'pmdomain-v7.3-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/linux-pm: cpuidle: dt_idle_genpd: kfree() the original name allocation pmdomain: airoha: fix unselectable AIROHA_CPU_PM_DOMAIN kconfig cpuidle: psci: Fix support for probe deferral by dropping the faux device Revert "pmdomain: qcom: rpmhpd: Add missing MXC and MMCX power domains for Eliza"
This commit is contained in:
@@ -16,7 +16,7 @@
|
||||
#include <linux/kernel.h>
|
||||
#include <linux/module.h>
|
||||
#include <linux/of.h>
|
||||
#include <linux/device/faux.h>
|
||||
#include <linux/platform_device.h>
|
||||
#include <linux/psci.h>
|
||||
#include <linux/pm_domain.h>
|
||||
#include <linux/pm_runtime.h>
|
||||
@@ -428,14 +428,14 @@ static int psci_idle_init_cpu(struct device *dev, int cpu)
|
||||
* to register cpuidle driver then rollback to cancel all CPUs
|
||||
* registration.
|
||||
*/
|
||||
static int psci_cpuidle_probe(struct faux_device *fdev)
|
||||
static int psci_cpuidle_probe(struct platform_device *pdev)
|
||||
{
|
||||
int cpu, ret;
|
||||
struct cpuidle_driver *drv;
|
||||
struct cpuidle_device *dev;
|
||||
|
||||
for_each_present_cpu(cpu) {
|
||||
ret = psci_idle_init_cpu(&fdev->dev, cpu);
|
||||
ret = psci_idle_init_cpu(&pdev->dev, cpu);
|
||||
if (ret)
|
||||
goto out_fail;
|
||||
}
|
||||
@@ -455,36 +455,26 @@ static int psci_cpuidle_probe(struct faux_device *fdev)
|
||||
return ret;
|
||||
}
|
||||
|
||||
static struct faux_device_ops psci_cpuidle_ops = {
|
||||
static struct platform_driver psci_cpuidle_driver = {
|
||||
.probe = psci_cpuidle_probe,
|
||||
.driver = {
|
||||
.name = "psci-cpuidle",
|
||||
},
|
||||
};
|
||||
|
||||
static bool __init dt_idle_state_present(void)
|
||||
{
|
||||
struct device_node *cpu_node __free(device_node) =
|
||||
of_cpu_device_node_get(cpumask_first(cpu_possible_mask));
|
||||
if (!cpu_node)
|
||||
return false;
|
||||
|
||||
struct device_node *state_node __free(device_node) =
|
||||
of_get_cpu_state_node(cpu_node, 0);
|
||||
if (!state_node)
|
||||
return false;
|
||||
|
||||
return !!of_match_node(psci_idle_state_match, state_node);
|
||||
}
|
||||
|
||||
static int __init psci_idle_init(void)
|
||||
{
|
||||
struct faux_device *fdev;
|
||||
struct platform_device *pdev;
|
||||
int ret;
|
||||
|
||||
if (!dt_idle_state_present())
|
||||
return 0;
|
||||
ret = platform_driver_register(&psci_cpuidle_driver);
|
||||
if (ret)
|
||||
return ret;
|
||||
|
||||
fdev = faux_device_create("psci-cpuidle", NULL, &psci_cpuidle_ops);
|
||||
if (!fdev) {
|
||||
pr_err("Failed to create psci-cpuidle device\n");
|
||||
return -ENODEV;
|
||||
pdev = platform_device_register_simple("psci-cpuidle", -1, NULL, 0);
|
||||
if (IS_ERR(pdev)) {
|
||||
platform_driver_unregister(&psci_cpuidle_driver);
|
||||
return PTR_ERR(pdev);
|
||||
}
|
||||
|
||||
return 0;
|
||||
|
||||
@@ -99,7 +99,7 @@ struct generic_pm_domain *dt_idle_pd_alloc(struct device_node *np,
|
||||
if (!pd)
|
||||
goto out;
|
||||
|
||||
pd->name = kasprintf(GFP_KERNEL, "%pOF", np);
|
||||
pd->name = kstrdup(kbasename(of_node_full_name(np)), GFP_KERNEL);
|
||||
if (!pd->name)
|
||||
goto free_pd;
|
||||
|
||||
@@ -112,7 +112,6 @@ struct generic_pm_domain *dt_idle_pd_alloc(struct device_node *np,
|
||||
goto free_name;
|
||||
|
||||
pd->free_states = pd_free_states;
|
||||
pd->name = kbasename(pd->name);
|
||||
pd->states = states;
|
||||
pd->state_count = state_count;
|
||||
|
||||
|
||||
@@ -43,9 +43,12 @@ config MTK_MFG_PM_DOMAIN
|
||||
This driver is required for the Mali GPU to work at all on MT8196 and
|
||||
MT6991.
|
||||
|
||||
endmenu
|
||||
|
||||
config AIROHA_CPU_PM_DOMAIN
|
||||
tristate "Airoha CPU power domain"
|
||||
default ARCH_AIROHA
|
||||
depends on ARCH_AIROHA || COMPILE_TEST
|
||||
depends on HAVE_ARM_SMCCC
|
||||
depends on PM
|
||||
select PM_GENERIC_DOMAINS
|
||||
@@ -54,5 +57,3 @@ config AIROHA_CPU_PM_DOMAIN
|
||||
|
||||
CPU frequency and power is controlled by ATF with SMC command to
|
||||
set performance states.
|
||||
|
||||
endmenu
|
||||
|
||||
@@ -241,13 +241,9 @@ static struct rpmhpd *eliza_rpmhpds[] = {
|
||||
[RPMHPD_GFX] = &gfx,
|
||||
[RPMHPD_LCX] = &lcx,
|
||||
[RPMHPD_LMX] = &lmx,
|
||||
[RPMHPD_MMCX] = &mmcx,
|
||||
[RPMHPD_MMCX_AO] = &mmcx_ao,
|
||||
[RPMHPD_MSS] = &mss,
|
||||
[RPMHPD_MX] = &mx,
|
||||
[RPMHPD_MX_AO] = &mx_ao,
|
||||
[RPMHPD_MXC] = &mxc,
|
||||
[RPMHPD_MXC_AO] = &mxc_ao,
|
||||
[RPMHPD_NSP] = &nsp,
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user