2019-06-12 16:28:15 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
|
|
|
/*
|
|
|
|
* Allwinner CPUFreq nvmem based driver
|
|
|
|
*
|
|
|
|
* The sun50i-cpufreq-nvmem driver reads the efuse value from the SoC to
|
|
|
|
* provide the OPP framework with required information.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2019 Yangtao Li <tiny.windzz@gmail.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
|
|
|
|
|
2024-04-18 15:44:06 +00:00
|
|
|
#include <linux/arm-smccc.h>
|
2023-03-29 15:52:12 +00:00
|
|
|
#include <linux/cpu.h>
|
2019-06-12 16:28:15 +00:00
|
|
|
#include <linux/module.h>
|
|
|
|
#include <linux/nvmem-consumer.h>
|
2023-03-29 15:52:12 +00:00
|
|
|
#include <linux/of.h>
|
2019-06-12 16:28:15 +00:00
|
|
|
#include <linux/platform_device.h>
|
|
|
|
#include <linux/pm_opp.h>
|
|
|
|
#include <linux/slab.h>
|
|
|
|
|
|
|
|
#define NVMEM_MASK 0x7
|
|
|
|
#define NVMEM_SHIFT 5
|
|
|
|
|
|
|
|
static struct platform_device *cpufreq_dt_pdev, *sun50i_cpufreq_pdev;
|
|
|
|
|
2024-04-18 15:44:04 +00:00
|
|
|
struct sunxi_cpufreq_data {
|
|
|
|
u32 (*efuse_xlate)(u32 speedbin);
|
|
|
|
};
|
|
|
|
|
|
|
|
static u32 sun50i_h6_efuse_xlate(u32 speedbin)
|
|
|
|
{
|
|
|
|
u32 efuse_value;
|
|
|
|
|
|
|
|
efuse_value = (speedbin >> NVMEM_SHIFT) & NVMEM_MASK;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* We treat unexpected efuse values as if the SoC was from
|
|
|
|
* the slowest bin. Expected efuse values are 1-3, slowest
|
|
|
|
* to fastest.
|
|
|
|
*/
|
|
|
|
if (efuse_value >= 1 && efuse_value <= 3)
|
|
|
|
return efuse_value - 1;
|
|
|
|
else
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2024-04-18 15:44:06 +00:00
|
|
|
static int get_soc_id_revision(void)
|
|
|
|
{
|
|
|
|
#ifdef CONFIG_HAVE_ARM_SMCCC_DISCOVERY
|
|
|
|
return arm_smccc_get_soc_id_revision();
|
|
|
|
#else
|
|
|
|
return SMCCC_RET_NOT_SUPPORTED;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Judging by the OPP tables in the vendor BSP, the quality order of the
|
|
|
|
* returned speedbin index is 4 -> 0/2 -> 3 -> 1, from worst to best.
|
|
|
|
* 0 and 2 seem identical from the OPP tables' point of view.
|
|
|
|
*/
|
|
|
|
static u32 sun50i_h616_efuse_xlate(u32 speedbin)
|
|
|
|
{
|
|
|
|
int ver_bits = get_soc_id_revision();
|
|
|
|
u32 value = 0;
|
|
|
|
|
|
|
|
switch (speedbin & 0xffff) {
|
|
|
|
case 0x2000:
|
|
|
|
value = 0;
|
|
|
|
break;
|
|
|
|
case 0x2400:
|
|
|
|
case 0x7400:
|
|
|
|
case 0x2c00:
|
|
|
|
case 0x7c00:
|
|
|
|
if (ver_bits != SMCCC_RET_NOT_SUPPORTED && ver_bits <= 1) {
|
|
|
|
/* ic version A/B */
|
|
|
|
value = 1;
|
|
|
|
} else {
|
|
|
|
/* ic version C and later version */
|
|
|
|
value = 2;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 0x5000:
|
|
|
|
case 0x5400:
|
|
|
|
case 0x6000:
|
|
|
|
value = 3;
|
|
|
|
break;
|
|
|
|
case 0x5c00:
|
|
|
|
value = 4;
|
|
|
|
break;
|
|
|
|
case 0x5d00:
|
|
|
|
value = 0;
|
|
|
|
break;
|
2024-06-07 09:20:33 +00:00
|
|
|
case 0x6c00:
|
|
|
|
value = 5;
|
|
|
|
break;
|
2024-04-18 15:44:06 +00:00
|
|
|
default:
|
|
|
|
pr_warn("sun50i-cpufreq-nvmem: unknown speed bin 0x%x, using default bin 0\n",
|
|
|
|
speedbin & 0xffff);
|
|
|
|
value = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return value;
|
|
|
|
}
|
|
|
|
|
2024-04-18 15:44:04 +00:00
|
|
|
static struct sunxi_cpufreq_data sun50i_h6_cpufreq_data = {
|
|
|
|
.efuse_xlate = sun50i_h6_efuse_xlate,
|
|
|
|
};
|
|
|
|
|
2024-04-18 15:44:06 +00:00
|
|
|
static struct sunxi_cpufreq_data sun50i_h616_cpufreq_data = {
|
|
|
|
.efuse_xlate = sun50i_h616_efuse_xlate,
|
|
|
|
};
|
|
|
|
|
2024-04-18 15:44:04 +00:00
|
|
|
static const struct of_device_id cpu_opp_match_list[] = {
|
|
|
|
{ .compatible = "allwinner,sun50i-h6-operating-points",
|
|
|
|
.data = &sun50i_h6_cpufreq_data,
|
|
|
|
},
|
2024-04-18 15:44:06 +00:00
|
|
|
{ .compatible = "allwinner,sun50i-h616-operating-points",
|
|
|
|
.data = &sun50i_h616_cpufreq_data,
|
|
|
|
},
|
2024-04-18 15:44:04 +00:00
|
|
|
{}
|
|
|
|
};
|
|
|
|
|
2024-04-18 15:44:05 +00:00
|
|
|
/**
|
|
|
|
* dt_has_supported_hw() - Check if any OPPs use opp-supported-hw
|
|
|
|
*
|
|
|
|
* If we ask the cpufreq framework to use the opp-supported-hw feature, it
|
|
|
|
* will ignore every OPP node without that DT property. If none of the OPPs
|
|
|
|
* have it, the driver will fail probing, due to the lack of OPPs.
|
|
|
|
*
|
|
|
|
* Returns true if we have at least one OPP with the opp-supported-hw property.
|
|
|
|
*/
|
|
|
|
static bool dt_has_supported_hw(void)
|
|
|
|
{
|
|
|
|
bool has_opp_supported_hw = false;
|
|
|
|
struct device *cpu_dev;
|
|
|
|
|
|
|
|
cpu_dev = get_cpu_device(0);
|
|
|
|
if (!cpu_dev)
|
2024-04-24 11:40:11 +00:00
|
|
|
return false;
|
2024-04-18 15:44:05 +00:00
|
|
|
|
2024-05-03 17:52:33 +00:00
|
|
|
struct device_node *np __free(device_node) =
|
|
|
|
dev_pm_opp_of_get_opp_desc_node(cpu_dev);
|
2024-04-18 15:44:05 +00:00
|
|
|
if (!np)
|
2024-04-24 11:40:11 +00:00
|
|
|
return false;
|
2024-04-18 15:44:05 +00:00
|
|
|
|
2024-05-03 17:52:32 +00:00
|
|
|
for_each_child_of_node_scoped(np, opp) {
|
2024-07-31 19:12:40 +00:00
|
|
|
if (of_property_present(opp, "opp-supported-hw")) {
|
2024-04-18 15:44:05 +00:00
|
|
|
has_opp_supported_hw = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return has_opp_supported_hw;
|
|
|
|
}
|
|
|
|
|
2019-06-12 16:28:15 +00:00
|
|
|
/**
|
cpufreq: sun50i: Fix CPU speed bin detection
I have observed failures to boot on Orange Pi 3, because this driver
determined that my SoC is from the normal bin, but my SoC only works
reliably with the OPP values for the slowest bin.
By querying H6 owners, it was found that e-fuse values found in the wild
are in the range of 1-3, value of 7 was not reported, yet. From this and
from unused defines in BSP code, it can be assumed that meaning of efuse
values on H6 actually is:
- 1 = slowest bin
- 2 = normal bin
- 3 = fastest bin
Vendor code actually treats 0 and 2 as invalid efuse values, but later
treats all invalid values as a normal bin. This looks like a mistake in
bin detection code, that was plastered over by a hack in cpufreq code,
so let's not repeat it here. It probably only works because there are no
SoCs in the wild with efuse value of 0, and fast bin SoCs are made to
use normal bin OPP tables, which is also safe.
Let's play it safe and interpret 0 as the slowest bin, but fix detection
of other bins to match this research. More research will be done before
actual OPP tables are merged.
Fixes: f328584f7bff ("cpufreq: Add sun50i nvmem based CPU scaling driver")
Acked-by: Maxime Ripard <mripard@kernel.org>
Signed-off-by: Ondrej Jirman <megous@megous.com>
Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
2019-11-01 16:41:51 +00:00
|
|
|
* sun50i_cpufreq_get_efuse() - Determine speed grade from efuse value
|
2019-06-12 16:28:15 +00:00
|
|
|
*
|
2024-04-18 15:44:04 +00:00
|
|
|
* Returns non-negative speed bin index on success, a negative error
|
|
|
|
* value otherwise.
|
2019-06-12 16:28:15 +00:00
|
|
|
*/
|
2024-04-18 15:44:04 +00:00
|
|
|
static int sun50i_cpufreq_get_efuse(void)
|
2019-06-12 16:28:15 +00:00
|
|
|
{
|
2024-04-18 15:44:04 +00:00
|
|
|
const struct sunxi_cpufreq_data *opp_data;
|
2019-06-12 16:28:15 +00:00
|
|
|
struct nvmem_cell *speedbin_nvmem;
|
2024-04-18 15:44:04 +00:00
|
|
|
const struct of_device_id *match;
|
2019-06-12 16:28:15 +00:00
|
|
|
struct device *cpu_dev;
|
2024-04-18 15:44:04 +00:00
|
|
|
u32 *speedbin;
|
2019-06-12 16:28:15 +00:00
|
|
|
int ret;
|
|
|
|
|
|
|
|
cpu_dev = get_cpu_device(0);
|
|
|
|
if (!cpu_dev)
|
|
|
|
return -ENODEV;
|
|
|
|
|
2024-05-03 17:52:33 +00:00
|
|
|
struct device_node *np __free(device_node) =
|
|
|
|
dev_pm_opp_of_get_opp_desc_node(cpu_dev);
|
2019-06-12 16:28:15 +00:00
|
|
|
if (!np)
|
|
|
|
return -ENOENT;
|
|
|
|
|
2024-04-18 15:44:04 +00:00
|
|
|
match = of_match_node(cpu_opp_match_list, np);
|
2024-05-03 17:52:33 +00:00
|
|
|
if (!match)
|
2019-06-12 16:28:15 +00:00
|
|
|
return -ENOENT;
|
2024-05-03 17:52:33 +00:00
|
|
|
|
2024-04-18 15:44:04 +00:00
|
|
|
opp_data = match->data;
|
2019-06-12 16:28:15 +00:00
|
|
|
|
|
|
|
speedbin_nvmem = of_nvmem_cell_get(np, NULL);
|
2022-09-27 15:40:21 +00:00
|
|
|
if (IS_ERR(speedbin_nvmem))
|
|
|
|
return dev_err_probe(cpu_dev, PTR_ERR(speedbin_nvmem),
|
|
|
|
"Could not get nvmem cell\n");
|
2019-06-12 16:28:15 +00:00
|
|
|
|
2024-04-18 15:44:04 +00:00
|
|
|
speedbin = nvmem_cell_read(speedbin_nvmem, NULL);
|
2019-06-12 16:28:15 +00:00
|
|
|
nvmem_cell_put(speedbin_nvmem);
|
|
|
|
if (IS_ERR(speedbin))
|
|
|
|
return PTR_ERR(speedbin);
|
|
|
|
|
2024-04-18 15:44:04 +00:00
|
|
|
ret = opp_data->efuse_xlate(*speedbin);
|
2019-06-12 16:28:15 +00:00
|
|
|
|
|
|
|
kfree(speedbin);
|
2024-04-18 15:44:04 +00:00
|
|
|
|
|
|
|
return ret;
|
2019-06-12 16:28:15 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static int sun50i_cpufreq_nvmem_probe(struct platform_device *pdev)
|
|
|
|
{
|
2022-05-26 04:06:27 +00:00
|
|
|
int *opp_tokens;
|
2024-04-22 03:28:51 +00:00
|
|
|
char name[] = "speedXXXXXXXXXXX"; /* Integers can take 11 chars max */
|
2024-04-18 15:44:05 +00:00
|
|
|
unsigned int cpu, supported_hw;
|
|
|
|
struct dev_pm_opp_config config = {};
|
2024-04-18 15:44:04 +00:00
|
|
|
int speed;
|
2019-06-12 16:28:15 +00:00
|
|
|
int ret;
|
|
|
|
|
2022-05-26 04:06:27 +00:00
|
|
|
opp_tokens = kcalloc(num_possible_cpus(), sizeof(*opp_tokens),
|
2019-06-12 16:28:15 +00:00
|
|
|
GFP_KERNEL);
|
2022-05-26 04:06:27 +00:00
|
|
|
if (!opp_tokens)
|
2019-06-12 16:28:15 +00:00
|
|
|
return -ENOMEM;
|
|
|
|
|
2024-04-18 15:44:04 +00:00
|
|
|
speed = sun50i_cpufreq_get_efuse();
|
|
|
|
if (speed < 0) {
|
2022-05-26 04:06:27 +00:00
|
|
|
kfree(opp_tokens);
|
2024-04-18 15:44:04 +00:00
|
|
|
return speed;
|
2022-04-23 15:12:04 +00:00
|
|
|
}
|
2019-06-12 16:28:15 +00:00
|
|
|
|
2024-04-18 15:44:05 +00:00
|
|
|
/*
|
|
|
|
* We need at least one OPP with the "opp-supported-hw" property,
|
|
|
|
* or else the upper layers will ignore every OPP and will bail out.
|
|
|
|
*/
|
|
|
|
if (dt_has_supported_hw()) {
|
|
|
|
supported_hw = 1U << speed;
|
|
|
|
config.supported_hw = &supported_hw;
|
|
|
|
config.supported_hw_count = 1;
|
|
|
|
}
|
|
|
|
|
2024-04-22 03:28:51 +00:00
|
|
|
snprintf(name, sizeof(name), "speed%d", speed);
|
2024-04-18 15:44:05 +00:00
|
|
|
config.prop_name = name;
|
2019-06-12 16:28:15 +00:00
|
|
|
|
|
|
|
for_each_possible_cpu(cpu) {
|
|
|
|
struct device *cpu_dev = get_cpu_device(cpu);
|
|
|
|
|
|
|
|
if (!cpu_dev) {
|
|
|
|
ret = -ENODEV;
|
|
|
|
goto free_opp;
|
|
|
|
}
|
|
|
|
|
2024-04-18 15:44:05 +00:00
|
|
|
ret = dev_pm_opp_set_config(cpu_dev, &config);
|
|
|
|
if (ret < 0)
|
2019-06-12 16:28:15 +00:00
|
|
|
goto free_opp;
|
2024-04-18 15:44:05 +00:00
|
|
|
|
|
|
|
opp_tokens[cpu] = ret;
|
2019-06-12 16:28:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
cpufreq_dt_pdev = platform_device_register_simple("cpufreq-dt", -1,
|
|
|
|
NULL, 0);
|
|
|
|
if (!IS_ERR(cpufreq_dt_pdev)) {
|
2022-05-26 04:06:27 +00:00
|
|
|
platform_set_drvdata(pdev, opp_tokens);
|
2019-06-12 16:28:15 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = PTR_ERR(cpufreq_dt_pdev);
|
|
|
|
pr_err("Failed to register platform device\n");
|
|
|
|
|
|
|
|
free_opp:
|
2022-05-26 04:06:27 +00:00
|
|
|
for_each_possible_cpu(cpu)
|
2024-04-18 15:44:05 +00:00
|
|
|
dev_pm_opp_clear_config(opp_tokens[cpu]);
|
2022-05-26 04:06:27 +00:00
|
|
|
kfree(opp_tokens);
|
2019-06-12 16:28:15 +00:00
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2023-07-12 09:33:04 +00:00
|
|
|
static void sun50i_cpufreq_nvmem_remove(struct platform_device *pdev)
|
2019-06-12 16:28:15 +00:00
|
|
|
{
|
2022-05-26 04:06:27 +00:00
|
|
|
int *opp_tokens = platform_get_drvdata(pdev);
|
2019-06-12 16:28:15 +00:00
|
|
|
unsigned int cpu;
|
|
|
|
|
|
|
|
platform_device_unregister(cpufreq_dt_pdev);
|
|
|
|
|
|
|
|
for_each_possible_cpu(cpu)
|
2024-04-18 15:44:05 +00:00
|
|
|
dev_pm_opp_clear_config(opp_tokens[cpu]);
|
2019-06-12 16:28:15 +00:00
|
|
|
|
2022-05-26 04:06:27 +00:00
|
|
|
kfree(opp_tokens);
|
2019-06-12 16:28:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static struct platform_driver sun50i_cpufreq_driver = {
|
|
|
|
.probe = sun50i_cpufreq_nvmem_probe,
|
2023-07-12 09:33:04 +00:00
|
|
|
.remove_new = sun50i_cpufreq_nvmem_remove,
|
2019-06-12 16:28:15 +00:00
|
|
|
.driver = {
|
|
|
|
.name = "sun50i-cpufreq-nvmem",
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
static const struct of_device_id sun50i_cpufreq_match_list[] = {
|
|
|
|
{ .compatible = "allwinner,sun50i-h6" },
|
2024-04-18 15:44:06 +00:00
|
|
|
{ .compatible = "allwinner,sun50i-h616" },
|
|
|
|
{ .compatible = "allwinner,sun50i-h618" },
|
|
|
|
{ .compatible = "allwinner,sun50i-h700" },
|
2019-06-12 16:28:15 +00:00
|
|
|
{}
|
|
|
|
};
|
2020-11-03 15:11:36 +00:00
|
|
|
MODULE_DEVICE_TABLE(of, sun50i_cpufreq_match_list);
|
2019-06-12 16:28:15 +00:00
|
|
|
|
|
|
|
static const struct of_device_id *sun50i_cpufreq_match_node(void)
|
|
|
|
{
|
2024-05-03 17:52:33 +00:00
|
|
|
struct device_node *np __free(device_node) = of_find_node_by_path("/");
|
2019-06-12 16:28:15 +00:00
|
|
|
|
2024-05-03 17:52:33 +00:00
|
|
|
return of_match_node(sun50i_cpufreq_match_list, np);
|
2019-06-12 16:28:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Since the driver depends on nvmem drivers, which may return EPROBE_DEFER,
|
|
|
|
* all the real activity is done in the probe, which may be defered as well.
|
|
|
|
* The init here is only registering the driver and the platform device.
|
|
|
|
*/
|
|
|
|
static int __init sun50i_cpufreq_init(void)
|
|
|
|
{
|
|
|
|
const struct of_device_id *match;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
match = sun50i_cpufreq_match_node();
|
|
|
|
if (!match)
|
|
|
|
return -ENODEV;
|
|
|
|
|
|
|
|
ret = platform_driver_register(&sun50i_cpufreq_driver);
|
|
|
|
if (unlikely(ret < 0))
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
sun50i_cpufreq_pdev =
|
|
|
|
platform_device_register_simple("sun50i-cpufreq-nvmem",
|
|
|
|
-1, NULL, 0);
|
|
|
|
ret = PTR_ERR_OR_ZERO(sun50i_cpufreq_pdev);
|
|
|
|
if (ret == 0)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
platform_driver_unregister(&sun50i_cpufreq_driver);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
module_init(sun50i_cpufreq_init);
|
|
|
|
|
|
|
|
static void __exit sun50i_cpufreq_exit(void)
|
|
|
|
{
|
|
|
|
platform_device_unregister(sun50i_cpufreq_pdev);
|
|
|
|
platform_driver_unregister(&sun50i_cpufreq_driver);
|
|
|
|
}
|
|
|
|
module_exit(sun50i_cpufreq_exit);
|
|
|
|
|
|
|
|
MODULE_DESCRIPTION("Sun50i-h6 cpufreq driver");
|
|
|
|
MODULE_LICENSE("GPL v2");
|