blob: 1200842c3da42843595116a0028b2fa7c5bf4950 [file] [log] [blame]
David Brazdil0f672f62019-12-10 10:32:29 +00001// SPDX-License-Identifier: GPL-2.0-only
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002/*
3 * Copyright (C) 2016 Linaro.
4 * Viresh Kumar <viresh.kumar@linaro.org>
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00005 */
6
7#include <linux/err.h>
8#include <linux/of.h>
9#include <linux/of_device.h>
10#include <linux/platform_device.h>
11
12#include "cpufreq-dt.h"
13
14/*
15 * Machines for which the cpufreq device is *always* created, mostly used for
16 * platforms using "operating-points" (V1) property.
17 */
18static const struct of_device_id whitelist[] __initconst = {
19 { .compatible = "allwinner,sun4i-a10", },
20 { .compatible = "allwinner,sun5i-a10s", },
21 { .compatible = "allwinner,sun5i-a13", },
22 { .compatible = "allwinner,sun5i-r8", },
23 { .compatible = "allwinner,sun6i-a31", },
24 { .compatible = "allwinner,sun6i-a31s", },
25 { .compatible = "allwinner,sun7i-a20", },
26 { .compatible = "allwinner,sun8i-a23", },
27 { .compatible = "allwinner,sun8i-a83t", },
28 { .compatible = "allwinner,sun8i-h3", },
29
30 { .compatible = "apm,xgene-shadowcat", },
31
32 { .compatible = "arm,integrator-ap", },
33 { .compatible = "arm,integrator-cp", },
34
35 { .compatible = "hisilicon,hi3660", },
36
37 { .compatible = "fsl,imx27", },
38 { .compatible = "fsl,imx51", },
39 { .compatible = "fsl,imx53", },
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000040
41 { .compatible = "marvell,berlin", },
42 { .compatible = "marvell,pxa250", },
43 { .compatible = "marvell,pxa270", },
44
45 { .compatible = "samsung,exynos3250", },
46 { .compatible = "samsung,exynos4210", },
47 { .compatible = "samsung,exynos5250", },
48#ifndef CONFIG_BL_SWITCHER
49 { .compatible = "samsung,exynos5800", },
50#endif
51
52 { .compatible = "renesas,emev2", },
53 { .compatible = "renesas,r7s72100", },
54 { .compatible = "renesas,r8a73a4", },
55 { .compatible = "renesas,r8a7740", },
56 { .compatible = "renesas,r8a7743", },
David Brazdil0f672f62019-12-10 10:32:29 +000057 { .compatible = "renesas,r8a7744", },
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000058 { .compatible = "renesas,r8a7745", },
59 { .compatible = "renesas,r8a7778", },
60 { .compatible = "renesas,r8a7779", },
61 { .compatible = "renesas,r8a7790", },
62 { .compatible = "renesas,r8a7791", },
63 { .compatible = "renesas,r8a7792", },
64 { .compatible = "renesas,r8a7793", },
65 { .compatible = "renesas,r8a7794", },
66 { .compatible = "renesas,sh73a0", },
67
68 { .compatible = "rockchip,rk2928", },
69 { .compatible = "rockchip,rk3036", },
70 { .compatible = "rockchip,rk3066a", },
71 { .compatible = "rockchip,rk3066b", },
72 { .compatible = "rockchip,rk3188", },
73 { .compatible = "rockchip,rk3228", },
74 { .compatible = "rockchip,rk3288", },
75 { .compatible = "rockchip,rk3328", },
76 { .compatible = "rockchip,rk3366", },
77 { .compatible = "rockchip,rk3368", },
David Brazdil0f672f62019-12-10 10:32:29 +000078 { .compatible = "rockchip,rk3399",
79 .data = &(struct cpufreq_dt_platform_data)
80 { .have_governor_per_policy = true, },
81 },
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000082
83 { .compatible = "st-ericsson,u8500", },
84 { .compatible = "st-ericsson,u8540", },
85 { .compatible = "st-ericsson,u9500", },
86 { .compatible = "st-ericsson,u9540", },
87
88 { .compatible = "ti,omap2", },
89 { .compatible = "ti,omap3", },
90 { .compatible = "ti,omap4", },
91 { .compatible = "ti,omap5", },
92
93 { .compatible = "xlnx,zynq-7000", },
94 { .compatible = "xlnx,zynqmp", },
95
96 { }
97};
98
99/*
100 * Machines for which the cpufreq device is *not* created, mostly used for
101 * platforms using "operating-points-v2" property.
102 */
103static const struct of_device_id blacklist[] __initconst = {
David Brazdil0f672f62019-12-10 10:32:29 +0000104 { .compatible = "allwinner,sun50i-h6", },
105
Olivier Deprez0e641232021-09-23 10:07:05 +0200106 { .compatible = "arm,vexpress", },
107
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000108 { .compatible = "calxeda,highbank", },
109 { .compatible = "calxeda,ecx-2000", },
110
David Brazdil0f672f62019-12-10 10:32:29 +0000111 { .compatible = "fsl,imx7d", },
112 { .compatible = "fsl,imx8mq", },
113 { .compatible = "fsl,imx8mm", },
114 { .compatible = "fsl,imx8mn", },
115
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000116 { .compatible = "marvell,armadaxp", },
117
118 { .compatible = "mediatek,mt2701", },
119 { .compatible = "mediatek,mt2712", },
120 { .compatible = "mediatek,mt7622", },
121 { .compatible = "mediatek,mt7623", },
122 { .compatible = "mediatek,mt817x", },
123 { .compatible = "mediatek,mt8173", },
124 { .compatible = "mediatek,mt8176", },
David Brazdil0f672f62019-12-10 10:32:29 +0000125 { .compatible = "mediatek,mt8183", },
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000126
127 { .compatible = "nvidia,tegra124", },
David Brazdil0f672f62019-12-10 10:32:29 +0000128 { .compatible = "nvidia,tegra210", },
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000129
130 { .compatible = "qcom,apq8096", },
131 { .compatible = "qcom,msm8996", },
David Brazdil0f672f62019-12-10 10:32:29 +0000132 { .compatible = "qcom,qcs404", },
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000133
134 { .compatible = "st,stih407", },
135 { .compatible = "st,stih410", },
136
137 { .compatible = "sigma,tango4", },
138
139 { .compatible = "ti,am33xx", },
140 { .compatible = "ti,am43", },
141 { .compatible = "ti,dra7", },
142
143 { }
144};
145
146static bool __init cpu0_node_has_opp_v2_prop(void)
147{
148 struct device_node *np = of_cpu_device_node_get(0);
149 bool ret = false;
150
151 if (of_get_property(np, "operating-points-v2", NULL))
152 ret = true;
153
154 of_node_put(np);
155 return ret;
156}
157
158static int __init cpufreq_dt_platdev_init(void)
159{
160 struct device_node *np = of_find_node_by_path("/");
161 const struct of_device_id *match;
162 const void *data = NULL;
163
164 if (!np)
165 return -ENODEV;
166
167 match = of_match_node(whitelist, np);
168 if (match) {
169 data = match->data;
170 goto create_pdev;
171 }
172
173 if (cpu0_node_has_opp_v2_prop() && !of_match_node(blacklist, np))
174 goto create_pdev;
175
176 of_node_put(np);
177 return -ENODEV;
178
179create_pdev:
180 of_node_put(np);
181 return PTR_ERR_OR_ZERO(platform_device_register_data(NULL, "cpufreq-dt",
182 -1, data,
183 sizeof(struct cpufreq_dt_platform_data)));
184}
185device_initcall(cpufreq_dt_platdev_init);