]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
ARM: keystone2: spl: add K2E SoC support
authorKhoronzhuk, Ivan <ivan.khoronzhuk@ti.com>
Tue, 15 Jul 2014 21:59:26 +0000 (00:59 +0300)
committerTom Rini <trini@ti.com>
Fri, 25 Jul 2014 20:26:11 +0000 (16:26 -0400)
Keystone2 K2E SoC has slightly different spl pll settings then
K2HK, so correct this.

Acked-by: Murali Karicheri <m-karicheri2@ti.com>
Signed-off-by: Ivan Khoronzhuk <ivan.khoronzhuk@ti.com>
arch/arm/cpu/armv7/keystone/spl.c

index e07b64db9eecec89d41f6d44bb06fa1fa597ce42..d4b0e9b163e56581d9e57b2c91d8f4557a0926b1 100644 (file)
 
 DECLARE_GLOBAL_DATA_PTR;
 
+#ifdef CONFIG_K2HK_EVM
 static struct pll_init_data spl_pll_config[] = {
        CORE_PLL_799,
        TETRIS_PLL_500,
 };
+#endif
+
+#ifdef CONFIG_K2E_EVM
+static struct pll_init_data spl_pll_config[] = {
+       CORE_PLL_800,
+};
+#endif
 
 void spl_init_keystone_plls(void)
 {