summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKhoronzhuk, Ivan <ivan.khoronzhuk@ti.com>2014-07-16 00:59:26 +0300
committerTom Rini <trini@ti.com>2014-07-25 16:26:11 -0400
commit1284246eb97769b0da5483fb92a8c0940b46b739 (patch)
treed1f418dfa8efa1b8fbcceed0b5525a185aacb987
parent7c387646060c6221836b332f5d0e0c9771ab99c1 (diff)
downloadblackbird-obmc-uboot-1284246eb97769b0da5483fb92a8c0940b46b739.tar.gz
blackbird-obmc-uboot-1284246eb97769b0da5483fb92a8c0940b46b739.zip
ARM: keystone2: spl: add K2E SoC support
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>
-rw-r--r--arch/arm/cpu/armv7/keystone/spl.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/arch/arm/cpu/armv7/keystone/spl.c b/arch/arm/cpu/armv7/keystone/spl.c
index e07b64db9e..d4b0e9b163 100644
--- a/arch/arm/cpu/armv7/keystone/spl.c
+++ b/arch/arm/cpu/armv7/keystone/spl.c
@@ -18,10 +18,18 @@
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)
{
OpenPOWER on IntegriCloud