Skip to content

Commit f2d3294

Browse files
bschneivireshk
authored andcommitted
cpufreq: enable 1200Mhz clock speed for armada-37xx
This frequency was disabled because of stability problems whose source could not be accurately identified[1]. After seven months of testing, the evidence points to an incorrectly configured bootloader as the source of the historical instability. Testing was performed on two A3720 devices with this frequency enabled and the ondemand policy in use. Marvell merged[2] changes to their bootloader source needed to address the stability issue. This driver should expose this frequency option to users. [1] torvalds@484f2b7 [2] MarvellEmbeddedProcessors/mv-ddr-marvell#44 Signed-off-by: Benjamin Schneider <ben@bens.haus> Reviewed-by: Pali Rohár <pali@kernel.org> Reviewed-by: Andrew Lunn <andrew@lunn.ch> Acked-by: Gregory CLEMENT <gregory.clement@bootlin.com> Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
1 parent 0322f3e commit f2d3294

1 file changed

Lines changed: 1 addition & 5 deletions

File tree

drivers/cpufreq/armada-37xx-cpufreq.c

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -102,11 +102,7 @@ struct armada_37xx_dvfs {
102102
};
103103

104104
static struct armada_37xx_dvfs armada_37xx_dvfs[] = {
105-
/*
106-
* The cpufreq scaling for 1.2 GHz variant of the SOC is currently
107-
* unstable because we do not know how to configure it properly.
108-
*/
109-
/* {.cpu_freq_max = 1200*1000*1000, .divider = {1, 2, 4, 6} }, */
105+
{.cpu_freq_max = 1200*1000*1000, .divider = {1, 2, 4, 6} },
110106
{.cpu_freq_max = 1000*1000*1000, .divider = {1, 2, 4, 5} },
111107
{.cpu_freq_max = 800*1000*1000, .divider = {1, 2, 3, 4} },
112108
{.cpu_freq_max = 600*1000*1000, .divider = {2, 4, 5, 6} },

0 commit comments

Comments
 (0)