Skip to content
Snippets Groups Projects
Commit 1284246e authored by Khoronzhuk, Ivan's avatar Khoronzhuk, Ivan Committed by Tom Rini
Browse files

ARM: keystone2: spl: add K2E SoC support


Keystone2 K2E SoC has slightly different spl pll settings then
K2HK, so correct this.

Acked-by: default avatarMurali Karicheri <m-karicheri2@ti.com>
Signed-off-by: default avatarIvan Khoronzhuk <ivan.khoronzhuk@ti.com>
parent 7c387646
No related branches found
No related tags found
No related merge requests found
...@@ -18,10 +18,18 @@ ...@@ -18,10 +18,18 @@
DECLARE_GLOBAL_DATA_PTR; DECLARE_GLOBAL_DATA_PTR;
#ifdef CONFIG_K2HK_EVM
static struct pll_init_data spl_pll_config[] = { static struct pll_init_data spl_pll_config[] = {
CORE_PLL_799, CORE_PLL_799,
TETRIS_PLL_500, 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) void spl_init_keystone_plls(void)
{ {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment