blob: c2b947839d292a14090e15d951703eb99e517f6e [file] [log] [blame]
Vitaly Andrianovef509b92014-04-04 13:16:53 -04001/*
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 Karicheriafee59c2014-05-29 18:57:12 +030011#include <ns16550.h>
Vitaly Andrianovef509b92014-04-04 13:16:53 -040012#include <asm/io.h>
Hao Zhang20187fd2014-07-16 00:59:24 +030013#include <asm/arch/msmc.h>
Vitaly Andrianovef509b92014-04-04 13:16:53 -040014#include <asm/arch/clock.h>
15#include <asm/arch/hardware.h>
Hao Zhangb66604f2014-10-22 16:32:32 +030016#include <asm/arch/psc_defs.h>
Vitaly Andrianovef509b92014-04-04 13:16:53 -040017
18void chip_configuration_unlock(void)
19{
Khoronzhuk, Ivan3d315382014-07-09 23:44:44 +030020 __raw_writel(KS2_KICK0_MAGIC, KS2_KICK0);
21 __raw_writel(KS2_KICK1_MAGIC, KS2_KICK1);
Vitaly Andrianovef509b92014-04-04 13:16:53 -040022}
23
Hao Zhangb66604f2014-10-22 16:32:32 +030024#ifdef CONFIG_SOC_K2L
25void osr_init(void)
26{
27 u32 i;
28 u32 j;
29 u32 val;
30 u32 base = KS2_OSR_CFG_BASE;
31 u32 ecc_ctrl[KS2_OSR_NUM_RAM_BANKS];
32
33 /* Enable the OSR clock domain */
34 psc_enable_module(KS2_LPSC_OSR);
35
36 /* Disable OSR ECC check for all the ram banks */
37 for (i = 0; i < KS2_OSR_NUM_RAM_BANKS; i++) {
38 val = i | KS2_OSR_ECC_VEC_TRIG_RD |
39 (KS2_OSR_ECC_CTRL << KS2_OSR_ECC_VEC_RD_ADDR_SH);
40
41 writel(val , base + KS2_OSR_ECC_VEC);
42
43 /**
44 * wait till read is done.
45 * Print should be added after earlyprintk support is added.
46 */
47 for (j = 0; j < 10000; j++) {
48 val = readl(base + KS2_OSR_ECC_VEC);
49 if (val & KS2_OSR_ECC_VEC_RD_DONE)
50 break;
51 }
52
53 ecc_ctrl[i] = readl(base + KS2_OSR_ECC_CTRL) ^
54 KS2_OSR_ECC_CTRL_CHK;
55
56 writel(ecc_ctrl[i], KS2_MSMC_DATA_BASE + i * 4);
57 writel(ecc_ctrl[i], base + KS2_OSR_ECC_CTRL);
58 }
59
60 /* Reset OSR memory to all zeros */
61 for (i = 0; i < KS2_OSR_SIZE; i += 4)
62 writel(0, KS2_OSR_DATA_BASE + i);
63
64 /* Enable OSR ECC check for all the ram banks */
65 for (i = 0; i < KS2_OSR_NUM_RAM_BANKS; i++)
66 writel(ecc_ctrl[i] |
67 KS2_OSR_ECC_CTRL_CHK, base + KS2_OSR_ECC_CTRL);
68}
69#endif
70
Vitaly Andrianovef509b92014-04-04 13:16:53 -040071int arch_cpu_init(void)
72{
73 chip_configuration_unlock();
74 icache_enable();
75
Hao Zhangbc45d572014-10-22 16:32:30 +030076 msmc_share_all_segments(KS2_MSMC_SEGMENT_TETRIS);
77 msmc_share_all_segments(KS2_MSMC_SEGMENT_NETCP);
78 msmc_share_all_segments(KS2_MSMC_SEGMENT_QM_PDSP);
79 msmc_share_all_segments(KS2_MSMC_SEGMENT_PCIE0);
80#if defined(CONFIG_SOC_K2E) || defined(CONFIG_SOC_K2L)
81 msmc_share_all_segments(KS2_MSMC_SEGMENT_PCIE1);
Vitaly Andrianovef509b92014-04-04 13:16:53 -040082#endif
Hao Zhangb66604f2014-10-22 16:32:32 +030083#ifdef CONFIG_SOC_K2L
84 osr_init();
85#endif
Vitaly Andrianovef509b92014-04-04 13:16:53 -040086
Murali Karicheriafee59c2014-05-29 18:57:12 +030087 /*
88 * just initialise the COM2 port so that TI specific
89 * UART register PWREMU_MGMT is initialized. Linux UART
90 * driver doesn't handle this.
91 */
92 NS16550_init((NS16550_t)(CONFIG_SYS_NS16550_COM2),
93 CONFIG_SYS_NS16550_CLK / 16 / CONFIG_BAUDRATE);
94
Vitaly Andrianovef509b92014-04-04 13:16:53 -040095 return 0;
96}
97
98void reset_cpu(ulong addr)
99{
100 volatile u32 *rstctrl = (volatile u32 *)(KS2_RSTCTRL);
101 u32 tmp;
102
103 tmp = *rstctrl & KS2_RSTCTRL_MASK;
104 *rstctrl = tmp | KS2_RSTCTRL_KEY;
105
106 *rstctrl &= KS2_RSTCTRL_SWRST;
107
108 for (;;)
109 ;
110}
111
112void enable_caches(void)
113{
114#ifndef CONFIG_SYS_DCACHE_OFF
115 /* Enable D-cache. I-cache is already enabled in start.S */
116 dcache_enable();
117#endif
118}