9
0
Fork 0

ARM: tegra30: slow down CPU to 600 MHz

It's not safe to ramp up the CPU clock speed to
1,4 GHz on all T30 SKUs, as this may result in failure
to start the kernel properly. Start CPU at 600 MHz,
which is safe even for the slowest SKUs.

Signed-off-by: Lucas Stach <dev@lynxeye.de>
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
This commit is contained in:
Lucas Stach 2014-05-07 22:05:29 +02:00 committed by Sascha Hauer
parent a9886d1e6b
commit acbecd1987
1 changed files with 4 additions and 4 deletions

View File

@ -87,10 +87,10 @@ static struct pll_config pllx_config_table[][4] = {
{1000, 26, 0, 12}, /* OSC 26.0 MHz */
}, /* TEGRA 20 */
{
{862, 8, 0, 8},
{583, 8, 0, 4},
{700, 6, 0, 8},
{700, 13, 0, 8},
{600, 13, 0, 8 },
{500, 16, 0, 8 },
{600, 12, 0, 8 },
{600, 26, 0, 8 },
}, /* TEGRA 30 */
};