blob: 2645a8ff492491e381fdf9fdcb204f8efe6546cb [file] [log] [blame]
Rajeshwari Shindebed24422013-07-04 12:29:17 +05301/*
2 * Lowlevel setup for EXYNOS5 based board
3 *
4 * Copyright (C) 2013 Samsung Electronics
5 * Rajeshwari Shinde <rajeshwari.s@samsung.com>
6 *
7 * See file CREDITS for list of people who contributed to this
8 * project.
9 *
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License as
12 * published by the Free Software Foundation; either version 2 of
13 * the License, or (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
23 * MA 02111-1307 USA
24 */
25
26#include <common.h>
27#include <config.h>
Simon Glass8ed4bc12015-07-02 18:15:55 -060028#include <debug_uart.h>
Simon Glass274e0b02020-05-10 11:39:56 -060029#include <asm/system.h>
Simon Glass97589732020-05-10 11:40:02 -060030#include <init.h>
Rajeshwari Shindebed24422013-07-04 12:29:17 +053031#include <asm/arch/cpu.h>
32#include <asm/arch/dmc.h>
33#include <asm/arch/power.h>
34#include <asm/arch/tzpc.h>
35#include <asm/arch/periph.h>
36#include <asm/arch/pinmux.h>
Akshay Saraswat1d575af2015-02-20 13:27:12 +053037#include <asm/arch/system.h>
Akshay Saraswat4bb039f2015-02-20 13:27:15 +053038#include <asm/armv7.h>
Rajeshwari Shindebed24422013-07-04 12:29:17 +053039#include "common_setup.h"
Akshay Saraswat1d575af2015-02-20 13:27:12 +053040#include "exynos5_setup.h"
Rajeshwari Shindebed24422013-07-04 12:29:17 +053041
42/* These are the things we can do during low-level init */
43enum {
44 DO_WAKEUP = 1 << 0,
45 DO_CLOCKS = 1 << 1,
46 DO_MEM_RESET = 1 << 2,
47 DO_UART = 1 << 3,
Doug Anderson6a39e7f2014-05-29 21:40:54 +053048 DO_POWER = 1 << 4,
Rajeshwari Shindebed24422013-07-04 12:29:17 +053049};
50
Akshay Saraswat1d575af2015-02-20 13:27:12 +053051#ifdef CONFIG_EXYNOS5420
52/*
Akshay Saraswat4bb039f2015-02-20 13:27:15 +053053 * Power up secondary CPUs.
54 */
55static void secondary_cpu_start(void)
56{
57 v7_enable_smp(EXYNOS5420_INFORM_BASE);
58 svc32_mode_en();
Akshay Saraswatc1f5d212015-02-20 13:27:18 +053059 branch_bx(CONFIG_EXYNOS_RELOCATE_CODE_BASE);
Akshay Saraswat4bb039f2015-02-20 13:27:15 +053060}
61
62/*
63 * This is the entry point of hotplug-in and
64 * cluster switching.
65 */
66static void low_power_start(void)
67{
68 uint32_t val, reg_val;
69
70 reg_val = readl(EXYNOS5420_SPARE_BASE);
71 if (reg_val != CPU_RST_FLAG_VAL) {
72 writel(0x0, CONFIG_LOWPOWER_FLAG);
Akshay Saraswat0db0b7a2015-02-20 13:27:19 +053073 branch_bx(0x0);
Akshay Saraswat4bb039f2015-02-20 13:27:15 +053074 }
75
76 reg_val = readl(CONFIG_PHY_IRAM_BASE + 0x4);
77 if (reg_val != (uint32_t)&low_power_start) {
78 /* Store jump address as low_power_start if not present */
79 writel((uint32_t)&low_power_start, CONFIG_PHY_IRAM_BASE + 0x4);
80 dsb();
81 sev();
82 }
83
84 /* Set the CPU to SVC32 mode */
85 svc32_mode_en();
Akshay Saraswat58771912015-02-20 13:27:17 +053086
87#ifndef CONFIG_SYS_L2CACHE_OFF
88 /* Read MIDR for Primary Part Number */
89 mrc_midr(val);
90 val = (val >> 4);
91 val &= 0xf;
92
93 if (val == 0xf) {
94 configure_l2_ctlr();
95 configure_l2_actlr();
96 v7_enable_l2_hazard_detect();
97 }
98#endif
Akshay Saraswat4bb039f2015-02-20 13:27:15 +053099
100 /* Invalidate L1 & TLB */
101 val = 0x0;
102 mcr_tlb(val);
103 mcr_icache(val);
104
105 /* Disable MMU stuff and caches */
106 mrc_sctlr(val);
107
108 val &= ~((0x2 << 12) | 0x7);
109 val |= ((0x1 << 12) | (0x8 << 8) | 0x2);
110 mcr_sctlr(val);
111
112 /* CPU state is hotplug or reset */
113 secondary_cpu_start();
114
115 /* Core should not enter into WFI here */
116 wfi();
117}
118
119/*
Akshay Saraswat1d575af2015-02-20 13:27:12 +0530120 * Pointer to this function is stored in iRam which is used
121 * for jump and power down of a specific core.
122 */
123static void power_down_core(void)
124{
125 uint32_t tmp, core_id, core_config;
126
127 /* Get the unique core id */
128 /*
129 * Multiprocessor Affinity Register
130 * [11:8] Cluster ID
131 * [1:0] CPU ID
132 */
133 mrc_mpafr(core_id);
134 tmp = core_id & 0x3;
135 core_id = (core_id >> 6) & ~3;
136 core_id |= tmp;
137 core_id &= 0x3f;
138
139 /* Set the status of the core to low */
140 core_config = (core_id * CPU_CONFIG_STATUS_OFFSET);
141 core_config += EXYNOS5420_CPU_CONFIG_BASE;
142 writel(0x0, core_config);
143
144 /* Core enter WFI */
145 wfi();
146}
147
148/*
149 * Configurations for secondary cores are inapt at this stage.
150 * Reconfigure secondary cores. Shutdown and change the status
151 * of all cores except the primary core.
152 */
153static void secondary_cores_configure(void)
154{
Akshay Saraswat4bb039f2015-02-20 13:27:15 +0530155 /* Clear secondary boot iRAM base */
156 writel(0x0, (CONFIG_EXYNOS_RELOCATE_CODE_BASE + 0x1C));
157
158 /* set lowpower flag and address */
159 writel(CPU_RST_FLAG_VAL, CONFIG_LOWPOWER_FLAG);
160 writel((uint32_t)&low_power_start, CONFIG_LOWPOWER_ADDR);
161 writel(CPU_RST_FLAG_VAL, EXYNOS5420_SPARE_BASE);
162 /* Store jump address for power down */
Akshay Saraswat1d575af2015-02-20 13:27:12 +0530163 writel((uint32_t)&power_down_core, CONFIG_PHY_IRAM_BASE + 0x4);
164
165 /* Need all core power down check */
166 dsb();
167 sev();
Akshay Saraswat1d575af2015-02-20 13:27:12 +0530168}
Akshay Saraswat4bb039f2015-02-20 13:27:15 +0530169
170extern void relocate_wait_code(void);
Akshay Saraswat1d575af2015-02-20 13:27:12 +0530171#endif
172
Rajeshwari Shindebed24422013-07-04 12:29:17 +0530173int do_lowlevel_init(void)
174{
175 uint32_t reset_status;
176 int actions = 0;
177
178 arch_cpu_init();
179
Thomas Abraham5fa129c2015-08-03 17:58:01 +0530180#if !defined(CONFIG_SYS_L2CACHE_OFF) && defined(CONFIG_EXYNOS5420)
Doug Anderson73622802015-02-20 13:27:20 +0530181 /*
182 * Init L2 cache parameters here for use by boot and resume
183 *
184 * These are here instead of in v7_outer_cache_enable() so that the
185 * L2 cache settings get properly set even at resume time or if we're
186 * running U-Boot with the cache off. The kernel still needs us to
187 * set these for it.
188 */
189 configure_l2_ctlr();
190 configure_l2_actlr();
191 dsb();
192 isb();
Doug Anderson73622802015-02-20 13:27:20 +0530193
Akshay Saraswat4bb039f2015-02-20 13:27:15 +0530194 relocate_wait_code();
195
Akshay Saraswat1d575af2015-02-20 13:27:12 +0530196 /* Reconfigure secondary cores */
197 secondary_cores_configure();
198#endif
199
Rajeshwari Shindebed24422013-07-04 12:29:17 +0530200 reset_status = get_reset_status();
201
202 switch (reset_status) {
203 case S5P_CHECK_SLEEP:
204 actions = DO_CLOCKS | DO_WAKEUP;
205 break;
206 case S5P_CHECK_DIDLE:
207 case S5P_CHECK_LPA:
208 actions = DO_WAKEUP;
209 break;
210 default:
211 /* This is a normal boot (not a wake from sleep) */
Doug Anderson6a39e7f2014-05-29 21:40:54 +0530212 actions = DO_CLOCKS | DO_MEM_RESET | DO_POWER;
Rajeshwari Shindebed24422013-07-04 12:29:17 +0530213 }
214
Doug Anderson6a39e7f2014-05-29 21:40:54 +0530215 if (actions & DO_POWER)
216 set_ps_hold_ctrl();
217
Rajeshwari Shindebed24422013-07-04 12:29:17 +0530218 if (actions & DO_CLOCKS) {
219 system_clock_init();
Simon Glass8ed4bc12015-07-02 18:15:55 -0600220#ifdef CONFIG_DEBUG_UART
Simon Glassf4d60392021-08-08 12:20:12 -0600221#if (defined(CONFIG_SPL_BUILD) && defined(CONFIG_SPL_SERIAL)) || \
Marek Vasut4631c8b2016-05-01 00:36:11 +0200222 !defined(CONFIG_SPL_BUILD)
Simon Glass8ed4bc12015-07-02 18:15:55 -0600223 exynos_pinmux_config(PERIPH_ID_UART3, PINMUX_FLAG_NONE);
224 debug_uart_init();
225#endif
Marek Vasut4631c8b2016-05-01 00:36:11 +0200226#endif
Rajeshwari Shindebed24422013-07-04 12:29:17 +0530227 mem_ctrl_init(actions & DO_MEM_RESET);
228 tzpc_init();
229 }
230
231 return actions & DO_WAKEUP;
232}