Merge tag 'trace-printf-v6.13' of git://git.kernel.org/pub/scm/linux/kernel/git/trace...
[drm/drm-misc.git] / drivers / pmdomain / arm / scpi_pm_domain.c
blob2231e6dd2070a27aabec7cd23a8391a5d55dd50f
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3 * SCPI Generic power domain support.
5 * Copyright (C) 2016 ARM Ltd.
6 */
8 #include <linux/err.h>
9 #include <linux/io.h>
10 #include <linux/module.h>
11 #include <linux/of.h>
12 #include <linux/platform_device.h>
13 #include <linux/pm_domain.h>
14 #include <linux/scpi_protocol.h>
16 struct scpi_pm_domain {
17 struct generic_pm_domain genpd;
18 struct scpi_ops *ops;
19 u32 domain;
23 * These device power state values are not well-defined in the specification.
24 * In case, different implementations use different values, we can make these
25 * specific to compatibles rather than getting these values from device tree.
27 enum scpi_power_domain_state {
28 SCPI_PD_STATE_ON = 0,
29 SCPI_PD_STATE_OFF = 3,
32 #define to_scpi_pd(gpd) container_of(gpd, struct scpi_pm_domain, genpd)
34 static int scpi_pd_power(struct scpi_pm_domain *pd, bool power_on)
36 int ret;
37 enum scpi_power_domain_state state;
39 if (power_on)
40 state = SCPI_PD_STATE_ON;
41 else
42 state = SCPI_PD_STATE_OFF;
44 ret = pd->ops->device_set_power_state(pd->domain, state);
45 if (ret)
46 return ret;
48 return !(state == pd->ops->device_get_power_state(pd->domain));
51 static int scpi_pd_power_on(struct generic_pm_domain *domain)
53 struct scpi_pm_domain *pd = to_scpi_pd(domain);
55 return scpi_pd_power(pd, true);
58 static int scpi_pd_power_off(struct generic_pm_domain *domain)
60 struct scpi_pm_domain *pd = to_scpi_pd(domain);
62 return scpi_pd_power(pd, false);
65 static int scpi_pm_domain_probe(struct platform_device *pdev)
67 struct device *dev = &pdev->dev;
68 struct device_node *np = dev->of_node;
69 struct scpi_pm_domain *scpi_pd;
70 struct genpd_onecell_data *scpi_pd_data;
71 struct generic_pm_domain **domains;
72 struct scpi_ops *scpi_ops;
73 int ret, num_domains, i;
75 scpi_ops = get_scpi_ops();
76 if (!scpi_ops)
77 return -EPROBE_DEFER;
79 if (!np) {
80 dev_err(dev, "device tree node not found\n");
81 return -ENODEV;
84 if (!scpi_ops->device_set_power_state ||
85 !scpi_ops->device_get_power_state) {
86 dev_err(dev, "power domains not supported in the firmware\n");
87 return -ENODEV;
90 ret = of_property_read_u32(np, "num-domains", &num_domains);
91 if (ret) {
92 dev_err(dev, "number of domains not found\n");
93 return -EINVAL;
96 scpi_pd = devm_kcalloc(dev, num_domains, sizeof(*scpi_pd), GFP_KERNEL);
97 if (!scpi_pd)
98 return -ENOMEM;
100 scpi_pd_data = devm_kzalloc(dev, sizeof(*scpi_pd_data), GFP_KERNEL);
101 if (!scpi_pd_data)
102 return -ENOMEM;
104 domains = devm_kcalloc(dev, num_domains, sizeof(*domains), GFP_KERNEL);
105 if (!domains)
106 return -ENOMEM;
108 for (i = 0; i < num_domains; i++, scpi_pd++) {
109 domains[i] = &scpi_pd->genpd;
111 scpi_pd->domain = i;
112 scpi_pd->ops = scpi_ops;
113 scpi_pd->genpd.name = devm_kasprintf(dev, GFP_KERNEL,
114 "%pOFn.%d", np, i);
115 if (!scpi_pd->genpd.name) {
116 dev_err(dev, "Failed to allocate genpd name:%pOFn.%d\n",
117 np, i);
118 continue;
120 scpi_pd->genpd.power_off = scpi_pd_power_off;
121 scpi_pd->genpd.power_on = scpi_pd_power_on;
124 * Treat all power domains as off at boot.
126 * The SCP firmware itself may have switched on some domains,
127 * but for reference counting purpose, keep it this way.
129 pm_genpd_init(&scpi_pd->genpd, NULL, true);
132 scpi_pd_data->domains = domains;
133 scpi_pd_data->num_domains = num_domains;
135 of_genpd_add_provider_onecell(np, scpi_pd_data);
137 return 0;
140 static const struct of_device_id scpi_power_domain_ids[] = {
141 { .compatible = "arm,scpi-power-domains", },
142 { /* sentinel */ }
144 MODULE_DEVICE_TABLE(of, scpi_power_domain_ids);
146 static struct platform_driver scpi_power_domain_driver = {
147 .driver = {
148 .name = "scpi_power_domain",
149 .of_match_table = scpi_power_domain_ids,
151 .probe = scpi_pm_domain_probe,
153 module_platform_driver(scpi_power_domain_driver);
155 MODULE_AUTHOR("Sudeep Holla <sudeep.holla@arm.com>");
156 MODULE_DESCRIPTION("ARM SCPI power domain driver");
157 MODULE_LICENSE("GPL v2");