Message ID | 20241125211452.14987-1-ben@bens.haus |
---|---|
State | New |
Headers | show |
Series | cpufreq: enable 1200Mhz clock speed for armada-37xx | expand |
On Thu, Dec 12, 2024 at 12:37:12PM +0530, Viresh Kumar wrote: > Marek, ... > Any inputs on this before I apply it ? Viresh, let me try to test it this week on Turris Mox. Marek
On Sunday, December 15th, 2024 at 1:23 PM, Marek Behún <kabel@kernel.org> wrote: > > Viresh, let me try to test it this week on Turris Mox. Hi Marek, were you able to test this change on the Turris Mox? If I can help, please let me know. Ben
diff --git a/drivers/cpufreq/armada-37xx-cpufreq.c b/drivers/cpufreq/armada-37xx-cpufreq.c index bea41ccabf1f..f28a4435fba7 100644 --- a/drivers/cpufreq/armada-37xx-cpufreq.c +++ b/drivers/cpufreq/armada-37xx-cpufreq.c @@ -102,11 +102,7 @@ struct armada_37xx_dvfs { }; static struct armada_37xx_dvfs armada_37xx_dvfs[] = { - /* - * The cpufreq scaling for 1.2 GHz variant of the SOC is currently - * unstable because we do not know how to configure it properly. - */ - /* {.cpu_freq_max = 1200*1000*1000, .divider = {1, 2, 4, 6} }, */ + {.cpu_freq_max = 1200*1000*1000, .divider = {1, 2, 4, 6} }, {.cpu_freq_max = 1000*1000*1000, .divider = {1, 2, 4, 5} }, {.cpu_freq_max = 800*1000*1000, .divider = {1, 2, 3, 4} }, {.cpu_freq_max = 600*1000*1000, .divider = {2, 4, 5, 6} },