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> 12 #include <linux/of_device.h> 13 #include <linux/platform_device.h> 14 15 #include "cpufreq-dt.h" 16 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 = { 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", }, 30 { .compatible = "allwinner,sun8i-a83t", }, 31 { .compatible = "allwinner,sun8i-h3", }, 32 33 { .compatible = "apm,xgene-shadowcat", }, 34 35 { .compatible = "arm,integrator-ap", }, 36 { .compatible = "arm,integrator-cp", }, 37 38 { .compatible = "hisilicon,hi3660", }, 39 40 { .compatible = "fsl,imx27", }, 41 { .compatible = "fsl,imx51", }, 42 { .compatible = "fsl,imx53", }, 43 { .compatible = "fsl,imx7d", }, 44 45 { .compatible = "marvell,berlin", }, 46 { .compatible = "marvell,pxa250", }, 47 { .compatible = "marvell,pxa270", }, 48 49 { .compatible = "samsung,exynos3250", }, 50 { .compatible = "samsung,exynos4210", }, 51 { .compatible = "samsung,exynos4212", }, 52 { .compatible = "samsung,exynos5250", }, 53 #ifndef CONFIG_BL_SWITCHER 54 { .compatible = "samsung,exynos5800", }, 55 #endif 56 57 { .compatible = "renesas,emev2", }, 58 { .compatible = "renesas,r7s72100", }, 59 { .compatible = "renesas,r8a73a4", }, 60 { .compatible = "renesas,r8a7740", }, 61 { .compatible = "renesas,r8a7743", }, 62 { .compatible = "renesas,r8a7745", }, 63 { .compatible = "renesas,r8a7778", }, 64 { .compatible = "renesas,r8a7779", }, 65 { .compatible = "renesas,r8a7790", }, 66 { .compatible = "renesas,r8a7791", }, 67 { .compatible = "renesas,r8a7792", }, 68 { .compatible = "renesas,r8a7793", }, 69 { .compatible = "renesas,r8a7794", }, 70 { .compatible = "renesas,r8a7795", }, 71 { .compatible = "renesas,r8a7796", }, 72 { .compatible = "renesas,sh73a0", }, 73 74 { .compatible = "rockchip,rk2928", }, 75 { .compatible = "rockchip,rk3036", }, 76 { .compatible = "rockchip,rk3066a", }, 77 { .compatible = "rockchip,rk3066b", }, 78 { .compatible = "rockchip,rk3188", }, 79 { .compatible = "rockchip,rk3228", }, 80 { .compatible = "rockchip,rk3288", }, 81 { .compatible = "rockchip,rk3328", }, 82 { .compatible = "rockchip,rk3366", }, 83 { .compatible = "rockchip,rk3368", }, 84 { .compatible = "rockchip,rk3399", }, 85 86 { .compatible = "socionext,uniphier-ld6b", }, 87 88 { .compatible = "st-ericsson,u8500", }, 89 { .compatible = "st-ericsson,u8540", }, 90 { .compatible = "st-ericsson,u9500", }, 91 { .compatible = "st-ericsson,u9540", }, 92 93 { .compatible = "ti,omap2", }, 94 { .compatible = "ti,omap3", }, 95 { .compatible = "ti,omap4", }, 96 { .compatible = "ti,omap5", }, 97 98 { .compatible = "xlnx,zynq-7000", }, 99 { .compatible = "xlnx,zynqmp", }, 100 101 { } 102 }; 103 104 /* 105 * Machines for which the cpufreq device is *not* created, mostly used for 106 * platforms using "operating-points-v2" property. 107 */ 108 static const struct of_device_id blacklist[] __initconst = { 109 { .compatible = "calxeda,highbank", }, 110 { .compatible = "calxeda,ecx-2000", }, 111 112 { .compatible = "marvell,armadaxp", }, 113 114 { .compatible = "nvidia,tegra124", }, 115 116 { .compatible = "st,stih407", }, 117 { .compatible = "st,stih410", }, 118 119 { .compatible = "sigma,tango4", }, 120 121 { .compatible = "ti,am33xx", }, 122 { .compatible = "ti,am43", }, 123 { .compatible = "ti,dra7", }, 124 125 { } 126 }; 127 128 static bool __init cpu0_node_has_opp_v2_prop(void) 129 { 130 struct device_node *np = of_cpu_device_node_get(0); 131 bool ret = false; 132 133 if (of_get_property(np, "operating-points-v2", NULL)) 134 ret = true; 135 136 of_node_put(np); 137 return ret; 138 } 139 140 static int __init cpufreq_dt_platdev_init(void) 141 { 142 struct device_node *np = of_find_node_by_path("/"); 143 const struct of_device_id *match; 144 const void *data = NULL; 145 146 if (!np) 147 return -ENODEV; 148 149 match = of_match_node(whitelist, np); 150 if (match) { 151 data = match->data; 152 goto create_pdev; 153 } 154 155 if (cpu0_node_has_opp_v2_prop() && !of_match_node(blacklist, np)) 156 goto create_pdev; 157 158 of_node_put(np); 159 return -ENODEV; 160 161 create_pdev: 162 of_node_put(np); 163 return PTR_ERR_OR_ZERO(platform_device_register_data(NULL, "cpufreq-dt", 164 -1, data, 165 sizeof(struct cpufreq_dt_platform_data))); 166 } 167 device_initcall(cpufreq_dt_platdev_init); 168