blob: 1c262923fe588256e4ee1c48212f2742340ebf4a [file] [log] [blame]
Viresh Kumarf56aad12016-03-30 13:45:26 +05301/*
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>
12#include <linux/platform_device.h>
13
Viresh Kumar297a6622016-09-09 16:48:08 +053014#include "cpufreq-dt.h"
15
Viresh Kumare92bb162016-04-22 16:58:39 +053016static const struct of_device_id machines[] __initconst = {
Viresh Kumar117d4f52016-04-22 16:58:45 +053017 { .compatible = "allwinner,sun4i-a10", },
18 { .compatible = "allwinner,sun5i-a10s", },
19 { .compatible = "allwinner,sun5i-a13", },
20 { .compatible = "allwinner,sun5i-r8", },
21 { .compatible = "allwinner,sun6i-a31", },
22 { .compatible = "allwinner,sun6i-a31s", },
23 { .compatible = "allwinner,sun7i-a20", },
24 { .compatible = "allwinner,sun8i-a23", },
25 { .compatible = "allwinner,sun8i-a33", },
26 { .compatible = "allwinner,sun8i-a83t", },
27 { .compatible = "allwinner,sun8i-h3", },
28
Hoan Trane11b6292016-12-15 14:55:00 -080029 { .compatible = "apm,xgene-shadowcat", },
30
Linus Walleij650ec6c2016-10-25 09:21:24 +020031 { .compatible = "arm,integrator-ap", },
32 { .compatible = "arm,integrator-cp", },
33
Tao Wanga0df7732017-05-23 16:13:18 +080034 { .compatible = "hisilicon,hi3660", },
Viresh Kumar3920be42016-04-22 16:58:47 +053035 { .compatible = "hisilicon,hi6220", },
36
Viresh Kumar7ead83f2016-04-22 16:58:41 +053037 { .compatible = "fsl,imx27", },
38 { .compatible = "fsl,imx51", },
39 { .compatible = "fsl,imx53", },
40 { .compatible = "fsl,imx7d", },
41
Viresh Kumara59511d2016-04-22 16:58:40 +053042 { .compatible = "marvell,berlin", },
Robert Jarzmikdcd2ea42016-10-31 20:54:53 +010043 { .compatible = "marvell,pxa250", },
44 { .compatible = "marvell,pxa270", },
Viresh Kumara59511d2016-04-22 16:58:40 +053045
Viresh Kumar2249c002016-03-30 13:45:28 +053046 { .compatible = "samsung,exynos3250", },
47 { .compatible = "samsung,exynos4210", },
48 { .compatible = "samsung,exynos4212", },
49 { .compatible = "samsung,exynos4412", },
50 { .compatible = "samsung,exynos5250", },
51#ifndef CONFIG_BL_SWITCHER
52 { .compatible = "samsung,exynos5420", },
Chanwoo Choic4b40572016-08-16 15:27:19 +090053 { .compatible = "samsung,exynos5433", },
Viresh Kumar2249c002016-03-30 13:45:28 +053054 { .compatible = "samsung,exynos5800", },
55#endif
Viresh Kumar7694ca62016-04-22 16:58:42 +053056
Viresh Kumara399dc92016-04-22 16:58:44 +053057 { .compatible = "renesas,emev2", },
58 { .compatible = "renesas,r7s72100", },
59 { .compatible = "renesas,r8a73a4", },
60 { .compatible = "renesas,r8a7740", },
Geert Uytterhoevenf0da8982016-11-16 11:05:51 +010061 { .compatible = "renesas,r8a7743", },
62 { .compatible = "renesas,r8a7745", },
Viresh Kumara399dc92016-04-22 16:58:44 +053063 { .compatible = "renesas,r8a7778", },
64 { .compatible = "renesas,r8a7779", },
65 { .compatible = "renesas,r8a7790", },
66 { .compatible = "renesas,r8a7791", },
Geert Uytterhoevenffdf8b82016-09-06 14:18:20 +020067 { .compatible = "renesas,r8a7792", },
Viresh Kumara399dc92016-04-22 16:58:44 +053068 { .compatible = "renesas,r8a7793", },
69 { .compatible = "renesas,r8a7794", },
70 { .compatible = "renesas,sh73a0", },
71
Finley Xiao014400c2016-04-22 16:58:43 +053072 { .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", },
79 { .compatible = "rockchip,rk3366", },
80 { .compatible = "rockchip,rk3368", },
81 { .compatible = "rockchip,rk3399", },
82
Marc Gonzalezd9c99acb2016-05-02 15:39:25 +020083 { .compatible = "sigma,tango4" },
84
Masahiro Yamada1758b332016-10-27 01:41:33 +090085 { .compatible = "socionext,uniphier-pro5", },
86 { .compatible = "socionext,uniphier-pxs2", },
87 { .compatible = "socionext,uniphier-ld6b", },
88 { .compatible = "socionext,uniphier-ld11", },
89 { .compatible = "socionext,uniphier-ld20", },
90
Viresh Kumar7694ca62016-04-22 16:58:42 +053091 { .compatible = "ti,omap2", },
92 { .compatible = "ti,omap3", },
93 { .compatible = "ti,omap4", },
94 { .compatible = "ti,omap5", },
Viresh Kumar5e4249c2016-04-22 16:58:46 +053095
96 { .compatible = "xlnx,zynq-7000", },
Wei Yongjunbd37e022016-08-21 15:41:44 +000097
Baoyou Xieab838052016-11-30 15:35:29 +080098 { .compatible = "zte,zx296718", },
99
Wei Yongjunbd37e022016-08-21 15:41:44 +0000100 { }
Viresh Kumarf56aad12016-03-30 13:45:26 +0530101};
102
103static int __init cpufreq_dt_platdev_init(void)
104{
105 struct device_node *np = of_find_node_by_path("/");
Masahiro Yamadaca5eda52016-06-27 14:50:13 +0900106 const struct of_device_id *match;
Viresh Kumarf56aad12016-03-30 13:45:26 +0530107
108 if (!np)
109 return -ENODEV;
110
Masahiro Yamadaca5eda52016-06-27 14:50:13 +0900111 match = of_match_node(machines, np);
112 of_node_put(np);
113 if (!match)
Viresh Kumarf56aad12016-03-30 13:45:26 +0530114 return -ENODEV;
115
Viresh Kumar297a6622016-09-09 16:48:08 +0530116 return PTR_ERR_OR_ZERO(platform_device_register_data(NULL, "cpufreq-dt",
117 -1, match->data,
118 sizeof(struct cpufreq_dt_platform_data)));
Viresh Kumarf56aad12016-03-30 13:45:26 +0530119}
120device_initcall(cpufreq_dt_platdev_init);