Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

cpufreq: ti: Allow all silicon revisions to support OPPs

More silicon revisions are being defined for AM62x, AM62Px, and AM62ax
SoCs. These silicon may also support currently establishes OPPs, so remove
the revision limitation in ti-cpufreq and thus determine if an OPP applies
with speed grade efuse parsing.

Signed-off-by: Judith Mendez <jm@ti.com>
Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>

authored by

Judith Mendez and committed by
Viresh Kumar
37f84683 f8d63d7e

+4 -4
+4 -4
drivers/cpufreq/ti-cpufreq.c
··· 311 311 }; 312 312 313 313 static const struct soc_device_attribute k3_cpufreq_soc[] = { 314 - { .family = "AM62X", .revision = "SR1.0" }, 315 - { .family = "AM62AX", .revision = "SR1.0" }, 316 - { .family = "AM62PX", .revision = "SR1.0" }, 317 - { .family = "AM62DX", .revision = "SR1.0" }, 314 + { .family = "AM62X", }, 315 + { .family = "AM62AX", }, 316 + { .family = "AM62PX", }, 317 + { .family = "AM62DX", }, 318 318 { /* sentinel */ } 319 319 }; 320 320