summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlain Volmat <avolmat@me.com>2020-08-31 08:10:11 +0200
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2020-11-05 11:08:42 +0100
commit2de342e2b36e04dbe64fc3c9c82807956c5e6993 (patch)
tree5d2fe44bd50571964ea6226e94791b1c45236bda
parent5d095e529694a55815a2d2370ca151fe2fe190d6 (diff)
downloadlinux-stable-2de342e2b36e04dbe64fc3c9c82807956c5e6993.tar.gz
linux-stable-2de342e2b36e04dbe64fc3c9c82807956c5e6993.tar.bz2
linux-stable-2de342e2b36e04dbe64fc3c9c82807956c5e6993.zip
cpufreq: sti-cpufreq: add stih418 support
[ Upstream commit 01a163c52039e9426c7d3d3ab16ca261ad622597 ] The STiH418 can be controlled the same way as STiH407 & STiH410 regarding cpufreq. Signed-off-by: Alain Volmat <avolmat@me.com> Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org> Signed-off-by: Sasha Levin <sashal@kernel.org>
-rw-r--r--drivers/cpufreq/sti-cpufreq.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/drivers/cpufreq/sti-cpufreq.c b/drivers/cpufreq/sti-cpufreq.c
index 47105735df12..6b5d241c30b7 100644
--- a/drivers/cpufreq/sti-cpufreq.c
+++ b/drivers/cpufreq/sti-cpufreq.c
@@ -144,7 +144,8 @@ static const struct reg_field sti_stih407_dvfs_regfields[DVFS_MAX_REGFIELDS] = {
static const struct reg_field *sti_cpufreq_match(void)
{
if (of_machine_is_compatible("st,stih407") ||
- of_machine_is_compatible("st,stih410"))
+ of_machine_is_compatible("st,stih410") ||
+ of_machine_is_compatible("st,stih418"))
return sti_stih407_dvfs_regfields;
return NULL;
@@ -261,7 +262,8 @@ static int sti_cpufreq_init(void)
int ret;
if ((!of_machine_is_compatible("st,stih407")) &&
- (!of_machine_is_compatible("st,stih410")))
+ (!of_machine_is_compatible("st,stih410")) &&
+ (!of_machine_is_compatible("st,stih418")))
return -ENODEV;
ddata.cpu = get_cpu_device(0);