Viresh Kumar | f56aad1 | 2016-03-30 13:45:26 +0530 | [diff] [blame] | 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> |
Viresh Kumar | edeec42 | 2017-08-16 11:07:27 +0530 | [diff] [blame] | 12 | #include <linux/of_device.h> |
Viresh Kumar | f56aad1 | 2016-03-30 13:45:26 +0530 | [diff] [blame] | 13 | #include <linux/platform_device.h> |
| 14 | |
Viresh Kumar | 297a662 | 2016-09-09 16:48:08 +0530 | [diff] [blame] | 15 | #include "cpufreq-dt.h" |
| 16 | |
Viresh Kumar | edeec42 | 2017-08-16 11:07:27 +0530 | [diff] [blame] | 17 | /* |
| 18 | * Machines for which the cpufreq device is *always* created, mostly used for |
| 19 | * platforms using "operating-points" (V1) property. |
| 20 | */ |
| 21 | static const struct of_device_id whitelist[] __initconst = { |
Viresh Kumar | 117d4f5 | 2016-04-22 16:58:45 +0530 | [diff] [blame] | 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", }, |
Viresh Kumar | 117d4f5 | 2016-04-22 16:58:45 +0530 | [diff] [blame] | 30 | { .compatible = "allwinner,sun8i-a83t", }, |
| 31 | { .compatible = "allwinner,sun8i-h3", }, |
| 32 | |
Hoan Tran | e11b629 | 2016-12-15 14:55:00 -0800 | [diff] [blame] | 33 | { .compatible = "apm,xgene-shadowcat", }, |
| 34 | |
Linus Walleij | 650ec6c | 2016-10-25 09:21:24 +0200 | [diff] [blame] | 35 | { .compatible = "arm,integrator-ap", }, |
| 36 | { .compatible = "arm,integrator-cp", }, |
| 37 | |
Tao Wang | a0df773 | 2017-05-23 16:13:18 +0800 | [diff] [blame] | 38 | { .compatible = "hisilicon,hi3660", }, |
Viresh Kumar | 3920be4 | 2016-04-22 16:58:47 +0530 | [diff] [blame] | 39 | |
Viresh Kumar | 7ead83f | 2016-04-22 16:58:41 +0530 | [diff] [blame] | 40 | { .compatible = "fsl,imx27", }, |
| 41 | { .compatible = "fsl,imx51", }, |
| 42 | { .compatible = "fsl,imx53", }, |
| 43 | { .compatible = "fsl,imx7d", }, |
| 44 | |
Viresh Kumar | a59511d | 2016-04-22 16:58:40 +0530 | [diff] [blame] | 45 | { .compatible = "marvell,berlin", }, |
Robert Jarzmik | dcd2ea4 | 2016-10-31 20:54:53 +0100 | [diff] [blame] | 46 | { .compatible = "marvell,pxa250", }, |
| 47 | { .compatible = "marvell,pxa270", }, |
Viresh Kumar | a59511d | 2016-04-22 16:58:40 +0530 | [diff] [blame] | 48 | |
Viresh Kumar | 2249c00 | 2016-03-30 13:45:28 +0530 | [diff] [blame] | 49 | { .compatible = "samsung,exynos3250", }, |
| 50 | { .compatible = "samsung,exynos4210", }, |
Viresh Kumar | 2249c00 | 2016-03-30 13:45:28 +0530 | [diff] [blame] | 51 | { .compatible = "samsung,exynos5250", }, |
| 52 | #ifndef CONFIG_BL_SWITCHER |
Viresh Kumar | 2249c00 | 2016-03-30 13:45:28 +0530 | [diff] [blame] | 53 | { .compatible = "samsung,exynos5800", }, |
| 54 | #endif |
Viresh Kumar | 7694ca6 | 2016-04-22 16:58:42 +0530 | [diff] [blame] | 55 | |
Viresh Kumar | a399dc9 | 2016-04-22 16:58:44 +0530 | [diff] [blame] | 56 | { .compatible = "renesas,emev2", }, |
| 57 | { .compatible = "renesas,r7s72100", }, |
| 58 | { .compatible = "renesas,r8a73a4", }, |
| 59 | { .compatible = "renesas,r8a7740", }, |
Geert Uytterhoeven | f0da898 | 2016-11-16 11:05:51 +0100 | [diff] [blame] | 60 | { .compatible = "renesas,r8a7743", }, |
| 61 | { .compatible = "renesas,r8a7745", }, |
Viresh Kumar | a399dc9 | 2016-04-22 16:58:44 +0530 | [diff] [blame] | 62 | { .compatible = "renesas,r8a7778", }, |
| 63 | { .compatible = "renesas,r8a7779", }, |
| 64 | { .compatible = "renesas,r8a7790", }, |
| 65 | { .compatible = "renesas,r8a7791", }, |
Geert Uytterhoeven | ffdf8b8 | 2016-09-06 14:18:20 +0200 | [diff] [blame] | 66 | { .compatible = "renesas,r8a7792", }, |
Viresh Kumar | a399dc9 | 2016-04-22 16:58:44 +0530 | [diff] [blame] | 67 | { .compatible = "renesas,r8a7793", }, |
| 68 | { .compatible = "renesas,r8a7794", }, |
Khiem Nguyen | 034def5 | 2017-08-04 15:18:00 +0200 | [diff] [blame] | 69 | { .compatible = "renesas,r8a7795", }, |
Khiem Nguyen | bea2ebc | 2017-08-11 17:36:57 +0200 | [diff] [blame] | 70 | { .compatible = "renesas,r8a7796", }, |
Viresh Kumar | a399dc9 | 2016-04-22 16:58:44 +0530 | [diff] [blame] | 71 | { .compatible = "renesas,sh73a0", }, |
| 72 | |
Finley Xiao | 014400c | 2016-04-22 16:58:43 +0530 | [diff] [blame] | 73 | { .compatible = "rockchip,rk2928", }, |
| 74 | { .compatible = "rockchip,rk3036", }, |
| 75 | { .compatible = "rockchip,rk3066a", }, |
| 76 | { .compatible = "rockchip,rk3066b", }, |
| 77 | { .compatible = "rockchip,rk3188", }, |
| 78 | { .compatible = "rockchip,rk3228", }, |
| 79 | { .compatible = "rockchip,rk3288", }, |
Finley Xiao | 319af40 | 2017-08-04 09:52:31 +0800 | [diff] [blame] | 80 | { .compatible = "rockchip,rk3328", }, |
Finley Xiao | 014400c | 2016-04-22 16:58:43 +0530 | [diff] [blame] | 81 | { .compatible = "rockchip,rk3366", }, |
| 82 | { .compatible = "rockchip,rk3368", }, |
| 83 | { .compatible = "rockchip,rk3399", }, |
| 84 | |
Linus Walleij | ff6c349 | 2017-08-16 10:19:12 +0200 | [diff] [blame] | 85 | { .compatible = "st-ericsson,u8500", }, |
| 86 | { .compatible = "st-ericsson,u8540", }, |
| 87 | { .compatible = "st-ericsson,u9500", }, |
| 88 | { .compatible = "st-ericsson,u9540", }, |
| 89 | |
Viresh Kumar | 7694ca6 | 2016-04-22 16:58:42 +0530 | [diff] [blame] | 90 | { .compatible = "ti,omap2", }, |
| 91 | { .compatible = "ti,omap3", }, |
| 92 | { .compatible = "ti,omap4", }, |
| 93 | { .compatible = "ti,omap5", }, |
Viresh Kumar | 5e4249c | 2016-04-22 16:58:46 +0530 | [diff] [blame] | 94 | |
| 95 | { .compatible = "xlnx,zynq-7000", }, |
Shubhrajyoti Datta | a568578 | 2017-07-13 11:19:10 +0200 | [diff] [blame] | 96 | { .compatible = "xlnx,zynqmp", }, |
Wei Yongjun | bd37e02 | 2016-08-21 15:41:44 +0000 | [diff] [blame] | 97 | |
| 98 | { } |
Viresh Kumar | f56aad1 | 2016-03-30 13:45:26 +0530 | [diff] [blame] | 99 | }; |
| 100 | |
Viresh Kumar | edeec42 | 2017-08-16 11:07:27 +0530 | [diff] [blame] | 101 | /* |
| 102 | * Machines for which the cpufreq device is *not* created, mostly used for |
| 103 | * platforms using "operating-points-v2" property. |
| 104 | */ |
| 105 | static const struct of_device_id blacklist[] __initconst = { |
Viresh Kumar | ff76898 | 2017-09-19 08:23:22 -0700 | [diff] [blame] | 106 | { .compatible = "calxeda,highbank", }, |
| 107 | { .compatible = "calxeda,ecx-2000", }, |
| 108 | |
| 109 | { .compatible = "marvell,armadaxp", }, |
| 110 | |
| 111 | { .compatible = "nvidia,tegra124", }, |
| 112 | |
| 113 | { .compatible = "st,stih407", }, |
| 114 | { .compatible = "st,stih410", }, |
| 115 | |
| 116 | { .compatible = "sigma,tango4", }, |
| 117 | |
Suniel Mahesh | d477bf3 | 2017-09-21 19:09:03 +0530 | [diff] [blame] | 118 | { .compatible = "ti,am33xx", }, |
| 119 | { .compatible = "ti,am43", }, |
| 120 | { .compatible = "ti,dra7", }, |
| 121 | |
Viresh Kumar | edeec42 | 2017-08-16 11:07:27 +0530 | [diff] [blame] | 122 | { } |
| 123 | }; |
| 124 | |
| 125 | static bool __init cpu0_node_has_opp_v2_prop(void) |
| 126 | { |
| 127 | struct device_node *np = of_cpu_device_node_get(0); |
| 128 | bool ret = false; |
| 129 | |
| 130 | if (of_get_property(np, "operating-points-v2", NULL)) |
| 131 | ret = true; |
| 132 | |
| 133 | of_node_put(np); |
| 134 | return ret; |
| 135 | } |
| 136 | |
Viresh Kumar | f56aad1 | 2016-03-30 13:45:26 +0530 | [diff] [blame] | 137 | static int __init cpufreq_dt_platdev_init(void) |
| 138 | { |
| 139 | struct device_node *np = of_find_node_by_path("/"); |
Masahiro Yamada | ca5eda5 | 2016-06-27 14:50:13 +0900 | [diff] [blame] | 140 | const struct of_device_id *match; |
Viresh Kumar | edeec42 | 2017-08-16 11:07:27 +0530 | [diff] [blame] | 141 | const void *data = NULL; |
Viresh Kumar | f56aad1 | 2016-03-30 13:45:26 +0530 | [diff] [blame] | 142 | |
| 143 | if (!np) |
| 144 | return -ENODEV; |
| 145 | |
Viresh Kumar | edeec42 | 2017-08-16 11:07:27 +0530 | [diff] [blame] | 146 | match = of_match_node(whitelist, np); |
| 147 | if (match) { |
| 148 | data = match->data; |
| 149 | goto create_pdev; |
| 150 | } |
Viresh Kumar | f56aad1 | 2016-03-30 13:45:26 +0530 | [diff] [blame] | 151 | |
Viresh Kumar | edeec42 | 2017-08-16 11:07:27 +0530 | [diff] [blame] | 152 | if (cpu0_node_has_opp_v2_prop() && !of_match_node(blacklist, np)) |
| 153 | goto create_pdev; |
| 154 | |
| 155 | of_node_put(np); |
| 156 | return -ENODEV; |
| 157 | |
| 158 | create_pdev: |
| 159 | of_node_put(np); |
Viresh Kumar | 297a662 | 2016-09-09 16:48:08 +0530 | [diff] [blame] | 160 | return PTR_ERR_OR_ZERO(platform_device_register_data(NULL, "cpufreq-dt", |
Viresh Kumar | edeec42 | 2017-08-16 11:07:27 +0530 | [diff] [blame] | 161 | -1, data, |
Viresh Kumar | 297a662 | 2016-09-09 16:48:08 +0530 | [diff] [blame] | 162 | sizeof(struct cpufreq_dt_platform_data))); |
Viresh Kumar | f56aad1 | 2016-03-30 13:45:26 +0530 | [diff] [blame] | 163 | } |
| 164 | device_initcall(cpufreq_dt_platdev_init); |