cpufreq / CPPC: Mark acpi_ids as used
[linux-2.6-block.git] / drivers / cpufreq / cpufreq-dt-platdev.c
CommitLineData
f56aad1d
VK
1/*
2 * Copyright (C) 2016 Linaro.
3 * Viresh Kumar <viresh.kumar@linaro.org>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
8 */
9
10#include <linux/err.h>
11#include <linux/of.h>
edeec420 12#include <linux/of_device.h>
f56aad1d
VK
13#include <linux/platform_device.h>
14
297a6622
VK
15#include "cpufreq-dt.h"
16
edeec420
VK
17/*
18 * Machines for which the cpufreq device is *always* created, mostly used for
19 * platforms using "operating-points" (V1) property.
20 */
21static const struct of_device_id whitelist[] __initconst = {
117d4f59
VK
22 { .compatible = "allwinner,sun4i-a10", },
23 { .compatible = "allwinner,sun5i-a10s", },
24 { .compatible = "allwinner,sun5i-a13", },
25 { .compatible = "allwinner,sun5i-r8", },
26 { .compatible = "allwinner,sun6i-a31", },
27 { .compatible = "allwinner,sun6i-a31s", },
28 { .compatible = "allwinner,sun7i-a20", },
29 { .compatible = "allwinner,sun8i-a23", },
117d4f59
VK
30 { .compatible = "allwinner,sun8i-a83t", },
31 { .compatible = "allwinner,sun8i-h3", },
32
e11b6293
HT
33 { .compatible = "apm,xgene-shadowcat", },
34
650ec6cf
LW
35 { .compatible = "arm,integrator-ap", },
36 { .compatible = "arm,integrator-cp", },
37
a0df7734 38 { .compatible = "hisilicon,hi3660", },
3920be47 39
7ead83f6
VK
40 { .compatible = "fsl,imx27", },
41 { .compatible = "fsl,imx51", },
42 { .compatible = "fsl,imx53", },
43 { .compatible = "fsl,imx7d", },
44
a59511d1 45 { .compatible = "marvell,berlin", },
dcd2ea41
RJ
46 { .compatible = "marvell,pxa250", },
47 { .compatible = "marvell,pxa270", },
a59511d1 48
2249c00a
VK
49 { .compatible = "samsung,exynos3250", },
50 { .compatible = "samsung,exynos4210", },
2249c00a
VK
51 { .compatible = "samsung,exynos5250", },
52#ifndef CONFIG_BL_SWITCHER
2249c00a
VK
53 { .compatible = "samsung,exynos5800", },
54#endif
7694ca6e 55
a399dc9f
VK
56 { .compatible = "renesas,emev2", },
57 { .compatible = "renesas,r7s72100", },
58 { .compatible = "renesas,r8a73a4", },
59 { .compatible = "renesas,r8a7740", },
f0da898b 60 { .compatible = "renesas,r8a7743", },
d1e13031 61 { .compatible = "renesas,r8a7744", },
f0da898b 62 { .compatible = "renesas,r8a7745", },
a399dc9f
VK
63 { .compatible = "renesas,r8a7778", },
64 { .compatible = "renesas,r8a7779", },
65 { .compatible = "renesas,r8a7790", },
66 { .compatible = "renesas,r8a7791", },
ffdf8b86 67 { .compatible = "renesas,r8a7792", },
a399dc9f
VK
68 { .compatible = "renesas,r8a7793", },
69 { .compatible = "renesas,r8a7794", },
70 { .compatible = "renesas,sh73a0", },
71
014400c1
FX
72 { .compatible = "rockchip,rk2928", },
73 { .compatible = "rockchip,rk3036", },
74 { .compatible = "rockchip,rk3066a", },
75 { .compatible = "rockchip,rk3066b", },
76 { .compatible = "rockchip,rk3188", },
77 { .compatible = "rockchip,rk3228", },
78 { .compatible = "rockchip,rk3288", },
319af40a 79 { .compatible = "rockchip,rk3328", },
014400c1
FX
80 { .compatible = "rockchip,rk3366", },
81 { .compatible = "rockchip,rk3368", },
82 { .compatible = "rockchip,rk3399", },
83
ff6c349f
LW
84 { .compatible = "st-ericsson,u8500", },
85 { .compatible = "st-ericsson,u8540", },
86 { .compatible = "st-ericsson,u9500", },
87 { .compatible = "st-ericsson,u9540", },
88
7694ca6e
VK
89 { .compatible = "ti,omap2", },
90 { .compatible = "ti,omap3", },
91 { .compatible = "ti,omap4", },
92 { .compatible = "ti,omap5", },
5e4249c6
VK
93
94 { .compatible = "xlnx,zynq-7000", },
a5685781 95 { .compatible = "xlnx,zynqmp", },
bd37e022
WY
96
97 { }
f56aad1d
VK
98};
99
edeec420
VK
100/*
101 * Machines for which the cpufreq device is *not* created, mostly used for
102 * platforms using "operating-points-v2" property.
103 */
104static const struct of_device_id blacklist[] __initconst = {
ff76898c
VK
105 { .compatible = "calxeda,highbank", },
106 { .compatible = "calxeda,ecx-2000", },
107
108 { .compatible = "marvell,armadaxp", },
109
6066998c
AC
110 { .compatible = "mediatek,mt2701", },
111 { .compatible = "mediatek,mt2712", },
112 { .compatible = "mediatek,mt7622", },
113 { .compatible = "mediatek,mt7623", },
114 { .compatible = "mediatek,mt817x", },
115 { .compatible = "mediatek,mt8173", },
116 { .compatible = "mediatek,mt8176", },
117
ff76898c
VK
118 { .compatible = "nvidia,tegra124", },
119
46e2856b
IL
120 { .compatible = "qcom,apq8096", },
121 { .compatible = "qcom,msm8996", },
122
ff76898c
VK
123 { .compatible = "st,stih407", },
124 { .compatible = "st,stih410", },
125
126 { .compatible = "sigma,tango4", },
127
d477bf3a
SM
128 { .compatible = "ti,am33xx", },
129 { .compatible = "ti,am43", },
130 { .compatible = "ti,dra7", },
131
edeec420
VK
132 { }
133};
134
135static bool __init cpu0_node_has_opp_v2_prop(void)
136{
137 struct device_node *np = of_cpu_device_node_get(0);
138 bool ret = false;
139
140 if (of_get_property(np, "operating-points-v2", NULL))
141 ret = true;
142
143 of_node_put(np);
144 return ret;
145}
146
f56aad1d
VK
147static int __init cpufreq_dt_platdev_init(void)
148{
149 struct device_node *np = of_find_node_by_path("/");
ca5eda5d 150 const struct of_device_id *match;
edeec420 151 const void *data = NULL;
f56aad1d
VK
152
153 if (!np)
154 return -ENODEV;
155
edeec420
VK
156 match = of_match_node(whitelist, np);
157 if (match) {
158 data = match->data;
159 goto create_pdev;
160 }
161
162 if (cpu0_node_has_opp_v2_prop() && !of_match_node(blacklist, np))
163 goto create_pdev;
164
ca5eda5d 165 of_node_put(np);
edeec420 166 return -ENODEV;
f56aad1d 167
edeec420
VK
168create_pdev:
169 of_node_put(np);
297a6622 170 return PTR_ERR_OR_ZERO(platform_device_register_data(NULL, "cpufreq-dt",
edeec420 171 -1, data,
297a6622 172 sizeof(struct cpufreq_dt_platform_data)));
f56aad1d
VK
173}
174device_initcall(cpufreq_dt_platdev_init);