cpuidle-psci-domain.c 4.59 KB
Newer Older
1 2 3 4 5 6 7 8 9
// SPDX-License-Identifier: GPL-2.0
/*
 * PM domains for CPUs via genpd - managed by cpuidle-psci.
 *
 * Copyright (C) 2019 Linaro Ltd.
 * Author: Ulf Hansson <ulf.hansson@linaro.org>
 *
 */

10 11
#define pr_fmt(fmt) "CPUidle PSCI: " fmt

12 13 14
#include <linux/cpu.h>
#include <linux/device.h>
#include <linux/kernel.h>
15
#include <linux/platform_device.h>
16 17
#include <linux/pm_domain.h>
#include <linux/pm_runtime.h>
18 19 20
#include <linux/psci.h>
#include <linux/slab.h>
#include <linux/string.h>
21 22

#include "cpuidle-psci.h"
23
#include "dt_idle_genpd.h"
24

25 26 27 28 29 30
struct psci_pd_provider {
	struct list_head link;
	struct device_node *node;
};

static LIST_HEAD(psci_pd_providers);
31
static bool psci_pd_allow_domain_state;
32 33 34 35 36 37 38 39 40

static int psci_pd_power_off(struct generic_pm_domain *pd)
{
	struct genpd_power_state *state = &pd->states[pd->state_idx];
	u32 *pd_state;

	if (!state->data)
		return 0;

41 42 43
	if (!psci_pd_allow_domain_state)
		return -EBUSY;

44 45 46 47 48 49 50
	/* OSI mode is enabled, set the corresponding domain state. */
	pd_state = state->data;
	psci_set_domain_state(*pd_state);

	return 0;
}

51
static int psci_pd_init(struct device_node *np, bool use_osi)
52 53 54 55
{
	struct generic_pm_domain *pd;
	struct psci_pd_provider *pd_provider;
	struct dev_power_governor *pd_gov;
56
	int ret = -ENOMEM;
57

58
	pd = dt_idle_pd_alloc(np, psci_dt_parse_state_node);
59 60 61 62 63 64 65 66 67
	if (!pd)
		goto out;

	pd_provider = kzalloc(sizeof(*pd_provider), GFP_KERNEL);
	if (!pd_provider)
		goto free_pd;

	pd->flags |= GENPD_FLAG_IRQ_SAFE | GENPD_FLAG_CPU_DOMAIN;

68 69
	/*
	 * Allow power off when OSI has been successfully enabled.
70 71
	 * On a PREEMPT_RT based configuration the domain idle states are
	 * supported, but only during system-wide suspend.
72
	 */
73
	if (use_osi) {
74
		pd->power_off = psci_pd_power_off;
75 76 77
		if (IS_ENABLED(CONFIG_PREEMPT_RT))
			pd->flags |= GENPD_FLAG_RPM_ALWAYS_ON;
	} else {
78
		pd->flags |= GENPD_FLAG_ALWAYS_ON;
79
	}
80

81
	/* Use governor for CPU PM domains if it has some states to manage. */
82
	pd_gov = pd->states ? &pm_domain_cpu_gov : NULL;
83 84

	ret = pm_genpd_init(pd, pd_gov, false);
85 86
	if (ret)
		goto free_pd_prov;
87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102

	ret = of_genpd_add_provider_simple(np, pd);
	if (ret)
		goto remove_pd;

	pd_provider->node = of_node_get(np);
	list_add(&pd_provider->link, &psci_pd_providers);

	pr_debug("init PM domain %s\n", pd->name);
	return 0;

remove_pd:
	pm_genpd_remove(pd);
free_pd_prov:
	kfree(pd_provider);
free_pd:
103
	dt_idle_pd_free(pd);
104 105 106 107 108
out:
	pr_err("failed to init PM domain ret=%d %pOF\n", ret, np);
	return ret;
}

109
static void psci_pd_remove(void)
110 111 112 113
{
	struct psci_pd_provider *pd_provider, *it;
	struct generic_pm_domain *genpd;

114 115
	list_for_each_entry_safe_reverse(pd_provider, it,
					 &psci_pd_providers, link) {
116 117 118 119 120 121 122 123 124 125 126 127
		of_genpd_del_provider(pd_provider->node);

		genpd = of_genpd_remove_last(pd_provider->node);
		if (!IS_ERR(genpd))
			kfree(genpd);

		of_node_put(pd_provider->node);
		list_del(&pd_provider->link);
		kfree(pd_provider);
	}
}

128 129 130 131 132 133 134 135 136
static void psci_cpuidle_domain_sync_state(struct device *dev)
{
	/*
	 * All devices have now been attached/probed to the PM domain topology,
	 * hence it's fine to allow domain states to be picked.
	 */
	psci_pd_allow_domain_state = true;
}

137
static const struct of_device_id psci_of_match[] = {
138 139 140 141
	{ .compatible = "arm,psci-1.0" },
	{}
};

142
static int psci_cpuidle_domain_probe(struct platform_device *pdev)
143
{
144
	struct device_node *np = pdev->dev.of_node;
145
	bool use_osi = psci_has_osi_support();
146 147 148 149 150 151 152 153 154
	int ret = 0, pd_count = 0;

	if (!np)
		return -ENODEV;

	/*
	 * Parse child nodes for the "#power-domain-cells" property and
	 * initialize a genpd/genpd-of-provider pair when it's found.
	 */
155
	for_each_child_of_node_scoped(np, node) {
156
		if (!of_property_present(node, "#power-domain-cells"))
157 158
			continue;

159
		ret = psci_pd_init(node, use_osi);
160
		if (ret)
161
			goto exit;
162 163 164 165 166 167

		pd_count++;
	}

	/* Bail out if not using the hierarchical CPU topology. */
	if (!pd_count)
168
		return 0;
169 170

	/* Link genpd masters/subdomains to model the CPU topology. */
171
	ret = dt_idle_pd_init_topology(np);
172 173 174
	if (ret)
		goto remove_pd;

175 176 177 178 179
	/* let's try to enable OSI. */
	ret = psci_set_osi_mode(use_osi);
	if (ret)
		goto remove_pd;

180 181
	pr_info("Initialized CPU PM domain topology using %s mode\n",
		use_osi ? "OSI" : "PC");
182
	return 0;
183 184

remove_pd:
185
	dt_idle_pd_remove_topology(np);
186
	psci_pd_remove();
187
exit:
188 189 190
	pr_err("failed to create CPU PM domains ret=%d\n", ret);
	return ret;
}
191 192 193 194 195 196

static struct platform_driver psci_cpuidle_domain_driver = {
	.probe  = psci_cpuidle_domain_probe,
	.driver = {
		.name = "psci-cpuidle-domain",
		.of_match_table = psci_of_match,
197
		.sync_state = psci_cpuidle_domain_sync_state,
198 199 200 201 202 203 204
	},
};

static int __init psci_idle_init_domains(void)
{
	return platform_driver_register(&psci_cpuidle_domain_driver);
}
205
core_initcall(psci_idle_init_domains);