2019-06-04 08:11:33 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-only
|
2016-03-30 08:15:26 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2016 Linaro.
|
|
|
|
* Viresh Kumar <viresh.kumar@linaro.org>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/err.h>
|
2023-05-24 15:34:16 +00:00
|
|
|
#include <linux/module.h>
|
2016-03-30 08:15:26 +00:00
|
|
|
#include <linux/of.h>
|
|
|
|
#include <linux/platform_device.h>
|
|
|
|
|
2016-09-09 11:18:08 +00:00
|
|
|
#include "cpufreq-dt.h"
|
|
|
|
|
2017-08-16 05:37:27 +00:00
|
|
|
/*
|
|
|
|
* Machines for which the cpufreq device is *always* created, mostly used for
|
|
|
|
* platforms using "operating-points" (V1) property.
|
|
|
|
*/
|
2021-05-20 04:26:18 +00:00
|
|
|
static const struct of_device_id allowlist[] __initconst = {
|
2016-04-22 11:28:45 +00:00
|
|
|
{ .compatible = "allwinner,sun4i-a10", },
|
|
|
|
{ .compatible = "allwinner,sun5i-a10s", },
|
|
|
|
{ .compatible = "allwinner,sun5i-a13", },
|
|
|
|
{ .compatible = "allwinner,sun5i-r8", },
|
|
|
|
{ .compatible = "allwinner,sun6i-a31", },
|
|
|
|
{ .compatible = "allwinner,sun6i-a31s", },
|
|
|
|
{ .compatible = "allwinner,sun7i-a20", },
|
|
|
|
{ .compatible = "allwinner,sun8i-a23", },
|
|
|
|
{ .compatible = "allwinner,sun8i-a83t", },
|
|
|
|
{ .compatible = "allwinner,sun8i-h3", },
|
|
|
|
|
2016-12-15 22:55:00 +00:00
|
|
|
{ .compatible = "apm,xgene-shadowcat", },
|
|
|
|
|
2016-10-25 07:21:24 +00:00
|
|
|
{ .compatible = "arm,integrator-ap", },
|
|
|
|
{ .compatible = "arm,integrator-cp", },
|
|
|
|
|
2017-05-23 08:13:18 +00:00
|
|
|
{ .compatible = "hisilicon,hi3660", },
|
2016-04-22 11:28:47 +00:00
|
|
|
|
2016-04-22 11:28:41 +00:00
|
|
|
{ .compatible = "fsl,imx27", },
|
|
|
|
{ .compatible = "fsl,imx51", },
|
|
|
|
{ .compatible = "fsl,imx53", },
|
|
|
|
|
2016-04-22 11:28:40 +00:00
|
|
|
{ .compatible = "marvell,berlin", },
|
2016-10-31 19:54:53 +00:00
|
|
|
{ .compatible = "marvell,pxa250", },
|
|
|
|
{ .compatible = "marvell,pxa270", },
|
2016-04-22 11:28:40 +00:00
|
|
|
|
2016-03-30 08:15:28 +00:00
|
|
|
{ .compatible = "samsung,exynos3250", },
|
|
|
|
{ .compatible = "samsung,exynos4210", },
|
|
|
|
{ .compatible = "samsung,exynos5250", },
|
|
|
|
#ifndef CONFIG_BL_SWITCHER
|
|
|
|
{ .compatible = "samsung,exynos5800", },
|
|
|
|
#endif
|
2016-04-22 11:28:42 +00:00
|
|
|
|
2016-04-22 11:28:44 +00:00
|
|
|
{ .compatible = "renesas,emev2", },
|
|
|
|
{ .compatible = "renesas,r7s72100", },
|
|
|
|
{ .compatible = "renesas,r8a73a4", },
|
|
|
|
{ .compatible = "renesas,r8a7740", },
|
2020-04-27 12:53:30 +00:00
|
|
|
{ .compatible = "renesas,r8a7742", },
|
2016-11-16 10:05:51 +00:00
|
|
|
{ .compatible = "renesas,r8a7743", },
|
2018-09-11 10:12:51 +00:00
|
|
|
{ .compatible = "renesas,r8a7744", },
|
2016-11-16 10:05:51 +00:00
|
|
|
{ .compatible = "renesas,r8a7745", },
|
2016-04-22 11:28:44 +00:00
|
|
|
{ .compatible = "renesas,r8a7778", },
|
|
|
|
{ .compatible = "renesas,r8a7779", },
|
|
|
|
{ .compatible = "renesas,r8a7790", },
|
|
|
|
{ .compatible = "renesas,r8a7791", },
|
2016-09-06 12:18:20 +00:00
|
|
|
{ .compatible = "renesas,r8a7792", },
|
2016-04-22 11:28:44 +00:00
|
|
|
{ .compatible = "renesas,r8a7793", },
|
|
|
|
{ .compatible = "renesas,r8a7794", },
|
|
|
|
{ .compatible = "renesas,sh73a0", },
|
|
|
|
|
2016-04-22 11:28:43 +00:00
|
|
|
{ .compatible = "rockchip,rk2928", },
|
|
|
|
{ .compatible = "rockchip,rk3036", },
|
|
|
|
{ .compatible = "rockchip,rk3066a", },
|
|
|
|
{ .compatible = "rockchip,rk3066b", },
|
|
|
|
{ .compatible = "rockchip,rk3188", },
|
|
|
|
{ .compatible = "rockchip,rk3228", },
|
|
|
|
{ .compatible = "rockchip,rk3288", },
|
2017-08-04 01:52:31 +00:00
|
|
|
{ .compatible = "rockchip,rk3328", },
|
2016-04-22 11:28:43 +00:00
|
|
|
{ .compatible = "rockchip,rk3366", },
|
|
|
|
{ .compatible = "rockchip,rk3368", },
|
2018-10-05 19:00:58 +00:00
|
|
|
{ .compatible = "rockchip,rk3399",
|
|
|
|
.data = &(struct cpufreq_dt_platform_data)
|
|
|
|
{ .have_governor_per_policy = true, },
|
|
|
|
},
|
2016-04-22 11:28:43 +00:00
|
|
|
|
2017-08-16 08:19:12 +00:00
|
|
|
{ .compatible = "st-ericsson,u8500", },
|
|
|
|
{ .compatible = "st-ericsson,u8540", },
|
|
|
|
{ .compatible = "st-ericsson,u9500", },
|
|
|
|
{ .compatible = "st-ericsson,u9540", },
|
|
|
|
|
2023-04-21 03:14:30 +00:00
|
|
|
{ .compatible = "starfive,jh7110", },
|
|
|
|
|
2016-04-22 11:28:42 +00:00
|
|
|
{ .compatible = "ti,omap2", },
|
|
|
|
{ .compatible = "ti,omap4", },
|
|
|
|
{ .compatible = "ti,omap5", },
|
2016-04-22 11:28:46 +00:00
|
|
|
|
|
|
|
{ .compatible = "xlnx,zynq-7000", },
|
2017-07-13 09:19:10 +00:00
|
|
|
{ .compatible = "xlnx,zynqmp", },
|
2016-08-21 15:41:44 +00:00
|
|
|
|
|
|
|
{ }
|
2016-03-30 08:15:26 +00:00
|
|
|
};
|
|
|
|
|
2017-08-16 05:37:27 +00:00
|
|
|
/*
|
|
|
|
* Machines for which the cpufreq device is *not* created, mostly used for
|
|
|
|
* platforms using "operating-points-v2" property.
|
|
|
|
*/
|
2021-05-20 04:26:18 +00:00
|
|
|
static const struct of_device_id blocklist[] __initconst = {
|
2024-10-31 07:02:25 +00:00
|
|
|
{ .compatible = "allwinner,sun50i-a100" },
|
2019-06-12 16:28:15 +00:00
|
|
|
{ .compatible = "allwinner,sun50i-h6", },
|
2024-04-18 15:44:02 +00:00
|
|
|
{ .compatible = "allwinner,sun50i-h616", },
|
|
|
|
{ .compatible = "allwinner,sun50i-h618", },
|
|
|
|
{ .compatible = "allwinner,sun50i-h700", },
|
2019-06-12 16:28:15 +00:00
|
|
|
|
2022-11-28 14:29:11 +00:00
|
|
|
{ .compatible = "apple,arm-platform", },
|
|
|
|
|
2021-02-18 22:23:26 +00:00
|
|
|
{ .compatible = "arm,vexpress", },
|
|
|
|
|
2017-09-19 15:23:22 +00:00
|
|
|
{ .compatible = "calxeda,highbank", },
|
|
|
|
{ .compatible = "calxeda,ecx-2000", },
|
|
|
|
|
2020-04-20 07:55:13 +00:00
|
|
|
{ .compatible = "fsl,imx7ulp", },
|
2019-06-05 10:37:06 +00:00
|
|
|
{ .compatible = "fsl,imx7d", },
|
2022-01-24 08:28:03 +00:00
|
|
|
{ .compatible = "fsl,imx7s", },
|
2019-05-13 11:01:38 +00:00
|
|
|
{ .compatible = "fsl,imx8mq", },
|
|
|
|
{ .compatible = "fsl,imx8mm", },
|
2019-08-18 06:32:21 +00:00
|
|
|
{ .compatible = "fsl,imx8mn", },
|
2019-12-26 06:52:46 +00:00
|
|
|
{ .compatible = "fsl,imx8mp", },
|
2019-05-13 11:01:38 +00:00
|
|
|
|
2017-09-19 15:23:22 +00:00
|
|
|
{ .compatible = "marvell,armadaxp", },
|
|
|
|
|
2017-12-08 06:07:56 +00:00
|
|
|
{ .compatible = "mediatek,mt2701", },
|
|
|
|
{ .compatible = "mediatek,mt2712", },
|
|
|
|
{ .compatible = "mediatek,mt7622", },
|
|
|
|
{ .compatible = "mediatek,mt7623", },
|
2020-10-13 09:27:08 +00:00
|
|
|
{ .compatible = "mediatek,mt8167", },
|
2017-12-08 06:07:56 +00:00
|
|
|
{ .compatible = "mediatek,mt817x", },
|
|
|
|
{ .compatible = "mediatek,mt8173", },
|
|
|
|
{ .compatible = "mediatek,mt8176", },
|
2019-08-13 13:31:48 +00:00
|
|
|
{ .compatible = "mediatek,mt8183", },
|
2022-06-17 11:09:26 +00:00
|
|
|
{ .compatible = "mediatek,mt8186", },
|
2021-05-19 16:25:50 +00:00
|
|
|
{ .compatible = "mediatek,mt8365", },
|
2020-10-13 09:27:09 +00:00
|
|
|
{ .compatible = "mediatek,mt8516", },
|
2017-12-08 06:07:56 +00:00
|
|
|
|
2019-11-18 16:45:08 +00:00
|
|
|
{ .compatible = "nvidia,tegra20", },
|
|
|
|
{ .compatible = "nvidia,tegra30", },
|
2017-09-19 15:23:22 +00:00
|
|
|
{ .compatible = "nvidia,tegra124", },
|
2019-01-04 03:06:55 +00:00
|
|
|
{ .compatible = "nvidia,tegra210", },
|
2022-12-20 16:02:37 +00:00
|
|
|
{ .compatible = "nvidia,tegra234", },
|
2017-09-19 15:23:22 +00:00
|
|
|
|
2018-05-30 02:39:28 +00:00
|
|
|
{ .compatible = "qcom,apq8096", },
|
2023-09-12 09:40:16 +00:00
|
|
|
{ .compatible = "qcom,msm8909", },
|
2018-05-30 02:39:28 +00:00
|
|
|
{ .compatible = "qcom,msm8996", },
|
2023-08-02 12:37:41 +00:00
|
|
|
{ .compatible = "qcom,msm8998", },
|
2023-08-09 00:07:59 +00:00
|
|
|
{ .compatible = "qcom,qcm2290", },
|
2023-08-30 09:58:34 +00:00
|
|
|
{ .compatible = "qcom,qcm6490", },
|
2019-07-25 10:41:36 +00:00
|
|
|
{ .compatible = "qcom,qcs404", },
|
2023-08-09 00:07:59 +00:00
|
|
|
{ .compatible = "qcom,qdu1000", },
|
2021-08-20 21:57:00 +00:00
|
|
|
{ .compatible = "qcom,sa8155p" },
|
2022-02-25 03:57:06 +00:00
|
|
|
{ .compatible = "qcom,sa8540p" },
|
2023-08-09 00:07:59 +00:00
|
|
|
{ .compatible = "qcom,sa8775p" },
|
2020-06-22 08:16:46 +00:00
|
|
|
{ .compatible = "qcom,sc7180", },
|
2021-05-12 08:11:22 +00:00
|
|
|
{ .compatible = "qcom,sc7280", },
|
2021-07-25 03:02:14 +00:00
|
|
|
{ .compatible = "qcom,sc8180x", },
|
2022-02-25 03:57:06 +00:00
|
|
|
{ .compatible = "qcom,sc8280xp", },
|
2024-02-09 23:19:15 +00:00
|
|
|
{ .compatible = "qcom,sdm670", },
|
2020-06-22 08:16:45 +00:00
|
|
|
{ .compatible = "qcom,sdm845", },
|
2023-08-09 00:07:59 +00:00
|
|
|
{ .compatible = "qcom,sdx75", },
|
2022-08-15 10:09:42 +00:00
|
|
|
{ .compatible = "qcom,sm6115", },
|
2021-08-20 21:57:00 +00:00
|
|
|
{ .compatible = "qcom,sm6350", },
|
2023-01-03 17:11:29 +00:00
|
|
|
{ .compatible = "qcom,sm6375", },
|
2023-03-24 14:06:24 +00:00
|
|
|
{ .compatible = "qcom,sm7225", },
|
2024-08-08 18:40:17 +00:00
|
|
|
{ .compatible = "qcom,sm7325", },
|
2021-08-04 20:34:20 +00:00
|
|
|
{ .compatible = "qcom,sm8150", },
|
2021-08-20 21:57:00 +00:00
|
|
|
{ .compatible = "qcom,sm8250", },
|
|
|
|
{ .compatible = "qcom,sm8350", },
|
2023-08-09 00:07:59 +00:00
|
|
|
{ .compatible = "qcom,sm8450", },
|
|
|
|
{ .compatible = "qcom,sm8550", },
|
2018-05-30 02:39:28 +00:00
|
|
|
|
2017-09-19 15:23:22 +00:00
|
|
|
{ .compatible = "st,stih407", },
|
|
|
|
{ .compatible = "st,stih410", },
|
2020-08-31 06:10:12 +00:00
|
|
|
{ .compatible = "st,stih418", },
|
2017-09-19 15:23:22 +00:00
|
|
|
|
2017-09-21 13:39:03 +00:00
|
|
|
{ .compatible = "ti,am33xx", },
|
|
|
|
{ .compatible = "ti,am43", },
|
|
|
|
{ .compatible = "ti,dra7", },
|
2019-09-11 17:47:08 +00:00
|
|
|
{ .compatible = "ti,omap3", },
|
2022-11-01 18:09:32 +00:00
|
|
|
{ .compatible = "ti,am625", },
|
2023-05-26 14:43:54 +00:00
|
|
|
{ .compatible = "ti,am62a7", },
|
2023-10-10 17:55:26 +00:00
|
|
|
{ .compatible = "ti,am62p5", },
|
2017-09-21 13:39:03 +00:00
|
|
|
|
2023-10-31 07:11:38 +00:00
|
|
|
{ .compatible = "qcom,ipq5332", },
|
2023-10-25 09:27:57 +00:00
|
|
|
{ .compatible = "qcom,ipq6018", },
|
2020-03-13 17:52:13 +00:00
|
|
|
{ .compatible = "qcom,ipq8064", },
|
2023-10-13 17:20:02 +00:00
|
|
|
{ .compatible = "qcom,ipq8074", },
|
2023-10-31 07:11:39 +00:00
|
|
|
{ .compatible = "qcom,ipq9574", },
|
2020-03-13 17:52:13 +00:00
|
|
|
{ .compatible = "qcom,apq8064", },
|
|
|
|
{ .compatible = "qcom,msm8974", },
|
|
|
|
{ .compatible = "qcom,msm8960", },
|
|
|
|
|
2017-08-16 05:37:27 +00:00
|
|
|
{ }
|
|
|
|
};
|
|
|
|
|
|
|
|
static bool __init cpu0_node_has_opp_v2_prop(void)
|
|
|
|
{
|
2024-04-23 08:27:45 +00:00
|
|
|
struct device_node *np __free(device_node) = of_cpu_device_node_get(0);
|
2017-08-16 05:37:27 +00:00
|
|
|
bool ret = false;
|
|
|
|
|
2023-03-10 14:47:02 +00:00
|
|
|
if (of_property_present(np, "operating-points-v2"))
|
2017-08-16 05:37:27 +00:00
|
|
|
ret = true;
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2016-03-30 08:15:26 +00:00
|
|
|
static int __init cpufreq_dt_platdev_init(void)
|
|
|
|
{
|
2024-04-23 08:27:45 +00:00
|
|
|
struct device_node *np __free(device_node) = of_find_node_by_path("/");
|
2016-06-27 05:50:13 +00:00
|
|
|
const struct of_device_id *match;
|
2017-08-16 05:37:27 +00:00
|
|
|
const void *data = NULL;
|
2016-03-30 08:15:26 +00:00
|
|
|
|
|
|
|
if (!np)
|
|
|
|
return -ENODEV;
|
|
|
|
|
2021-05-20 04:26:18 +00:00
|
|
|
match = of_match_node(allowlist, np);
|
2017-08-16 05:37:27 +00:00
|
|
|
if (match) {
|
|
|
|
data = match->data;
|
|
|
|
goto create_pdev;
|
|
|
|
}
|
|
|
|
|
2021-05-20 04:26:18 +00:00
|
|
|
if (cpu0_node_has_opp_v2_prop() && !of_match_node(blocklist, np))
|
2017-08-16 05:37:27 +00:00
|
|
|
goto create_pdev;
|
|
|
|
|
|
|
|
return -ENODEV;
|
2016-03-30 08:15:26 +00:00
|
|
|
|
2017-08-16 05:37:27 +00:00
|
|
|
create_pdev:
|
2016-09-09 11:18:08 +00:00
|
|
|
return PTR_ERR_OR_ZERO(platform_device_register_data(NULL, "cpufreq-dt",
|
2017-08-16 05:37:27 +00:00
|
|
|
-1, data,
|
2016-09-09 11:18:08 +00:00
|
|
|
sizeof(struct cpufreq_dt_platform_data)));
|
2016-03-30 08:15:26 +00:00
|
|
|
}
|
2019-10-21 12:15:13 +00:00
|
|
|
core_initcall(cpufreq_dt_platdev_init);
|
2024-06-02 22:14:00 +00:00
|
|
|
MODULE_DESCRIPTION("Generic DT based cpufreq platdev driver");
|
2023-05-24 15:34:16 +00:00
|
|
|
MODULE_LICENSE("GPL");
|