Vitaly Andrianov | 7bcf4d6 | 2014-04-04 13:16:53 -0400 | [diff] [blame] | 1 | /* |
| 2 | * Keystone2: Architecture initialization |
| 3 | * |
| 4 | * (C) Copyright 2012-2014 |
| 5 | * Texas Instruments Incorporated, <www.ti.com> |
| 6 | * |
| 7 | * SPDX-License-Identifier: GPL-2.0+ |
| 8 | */ |
| 9 | |
| 10 | #include <common.h> |
Murali Karicheri | f90901c | 2014-05-29 18:57:12 +0300 | [diff] [blame] | 11 | #include <ns16550.h> |
Vitaly Andrianov | 7bcf4d6 | 2014-04-04 13:16:53 -0400 | [diff] [blame] | 12 | #include <asm/io.h> |
Hao Zhang | bccf0b7 | 2014-07-16 00:59:24 +0300 | [diff] [blame^] | 13 | #include <asm/arch/msmc.h> |
Vitaly Andrianov | 7bcf4d6 | 2014-04-04 13:16:53 -0400 | [diff] [blame] | 14 | #include <asm/arch/clock.h> |
| 15 | #include <asm/arch/hardware.h> |
| 16 | |
| 17 | void chip_configuration_unlock(void) |
| 18 | { |
Khoronzhuk, Ivan | d5cb1bb | 2014-07-09 23:44:44 +0300 | [diff] [blame] | 19 | __raw_writel(KS2_KICK0_MAGIC, KS2_KICK0); |
| 20 | __raw_writel(KS2_KICK1_MAGIC, KS2_KICK1); |
Vitaly Andrianov | 7bcf4d6 | 2014-04-04 13:16:53 -0400 | [diff] [blame] | 21 | } |
| 22 | |
| 23 | int arch_cpu_init(void) |
| 24 | { |
| 25 | chip_configuration_unlock(); |
| 26 | icache_enable(); |
| 27 | |
Hao Zhang | bccf0b7 | 2014-07-16 00:59:24 +0300 | [diff] [blame^] | 28 | msmc_share_all_segments(8); /* TETRIS */ |
| 29 | msmc_share_all_segments(9); /* NETCP */ |
| 30 | msmc_share_all_segments(10); /* QM PDSP */ |
| 31 | msmc_share_all_segments(11); /* PCIE 0 */ |
| 32 | #ifdef CONFIG_SOC_K2E |
| 33 | msmc_share_all_segments(13); /* PCIE 1 */ |
Vitaly Andrianov | 7bcf4d6 | 2014-04-04 13:16:53 -0400 | [diff] [blame] | 34 | #endif |
| 35 | |
Murali Karicheri | f90901c | 2014-05-29 18:57:12 +0300 | [diff] [blame] | 36 | /* |
| 37 | * just initialise the COM2 port so that TI specific |
| 38 | * UART register PWREMU_MGMT is initialized. Linux UART |
| 39 | * driver doesn't handle this. |
| 40 | */ |
| 41 | NS16550_init((NS16550_t)(CONFIG_SYS_NS16550_COM2), |
| 42 | CONFIG_SYS_NS16550_CLK / 16 / CONFIG_BAUDRATE); |
| 43 | |
Vitaly Andrianov | 7bcf4d6 | 2014-04-04 13:16:53 -0400 | [diff] [blame] | 44 | return 0; |
| 45 | } |
| 46 | |
| 47 | void reset_cpu(ulong addr) |
| 48 | { |
| 49 | volatile u32 *rstctrl = (volatile u32 *)(KS2_RSTCTRL); |
| 50 | u32 tmp; |
| 51 | |
| 52 | tmp = *rstctrl & KS2_RSTCTRL_MASK; |
| 53 | *rstctrl = tmp | KS2_RSTCTRL_KEY; |
| 54 | |
| 55 | *rstctrl &= KS2_RSTCTRL_SWRST; |
| 56 | |
| 57 | for (;;) |
| 58 | ; |
| 59 | } |
| 60 | |
| 61 | void enable_caches(void) |
| 62 | { |
| 63 | #ifndef CONFIG_SYS_DCACHE_OFF |
| 64 | /* Enable D-cache. I-cache is already enabled in start.S */ |
| 65 | dcache_enable(); |
| 66 | #endif |
| 67 | } |