blob: dcb4195d7b48bc790ac696b2db47faf9cc72cc17 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Dirk Behme7d75a102008-12-14 09:47:13 +01002/*
3 * armboot - Startup Code for OMAP3530/ARM Cortex CPU-core
4 *
5 * Copyright (c) 2004 Texas Instruments <r-woodruff2@ti.com>
6 *
7 * Copyright (c) 2001 Marius Gröger <mag@sysgo.de>
8 * Copyright (c) 2002 Alex Züpke <azu@sysgo.de>
Detlev Zundelf1b3f2b2009-05-13 10:54:10 +02009 * Copyright (c) 2002 Gary Jennejohn <garyj@denx.de>
Dirk Behme7d75a102008-12-14 09:47:13 +010010 * Copyright (c) 2003 Richard Woodruff <r-woodruff2@ti.com>
11 * Copyright (c) 2003 Kshitij <kshitij@ti.com>
12 * Copyright (c) 2006-2008 Syed Mohammed Khasim <x0khasim@ti.com>
Dirk Behme7d75a102008-12-14 09:47:13 +010013 */
14
Wolfgang Denk0191e472010-10-26 14:34:52 +020015#include <asm-offsets.h>
Dirk Behme7d75a102008-12-14 09:47:13 +010016#include <config.h>
Aneesh V688ee132011-11-21 23:34:00 +000017#include <asm/system.h>
Aneesh Vfd8798b2012-03-08 07:20:18 +000018#include <linux/linkage.h>
Keerthy61488c12016-09-14 10:43:32 +053019#include <asm/armv7.h>
Dirk Behme7d75a102008-12-14 09:47:13 +010020
Dirk Behme7d75a102008-12-14 09:47:13 +010021/*************************************************************************
22 *
23 * Startup Code (reset vector)
24 *
Pavel Machekeb0a0b42015-04-08 14:15:54 +020025 * Do important init only if we don't start from memory!
26 * Setup memory and board specific bits prior to relocation.
27 * Relocate armboot to ram. Setup stack.
Dirk Behme7d75a102008-12-14 09:47:13 +010028 *
29 *************************************************************************/
30
Albert ARIBAUD9852cc62014-04-15 16:13:51 +020031 .globl reset
Simon Glass47197fe2015-02-07 10:47:28 -070032 .globl save_boot_params_ret
Philipp Tomsich5636d4a2017-10-10 16:21:12 +020033 .type save_boot_params_ret,%function
Keerthy61488c12016-09-14 10:43:32 +053034#ifdef CONFIG_ARMV7_LPAE
35 .global switch_to_hypervisor_ret
36#endif
Dirk Behme7d75a102008-12-14 09:47:13 +010037
38reset:
Simon Glass47197fe2015-02-07 10:47:28 -070039 /* Allow the board to save important registers */
40 b save_boot_params
41save_boot_params_ret:
Keerthy61488c12016-09-14 10:43:32 +053042#ifdef CONFIG_ARMV7_LPAE
43/*
44 * check for Hypervisor support
45 */
46 mrc p15, 0, r0, c0, c1, 1 @ read ID_PFR1
47 and r0, r0, #CPUID_ARM_VIRT_MASK @ mask virtualization bits
48 cmp r0, #(1 << CPUID_ARM_VIRT_SHIFT)
49 beq switch_to_hypervisor
50switch_to_hypervisor_ret:
51#endif
Dirk Behme7d75a102008-12-14 09:47:13 +010052 /*
Andre Przywara7acb96b2013-04-02 05:43:36 +000053 * disable interrupts (FIQ and IRQ), also set the cpu to SVC32 mode,
54 * except if in HYP mode already
Dirk Behme7d75a102008-12-14 09:47:13 +010055 */
56 mrs r0, cpsr
Andre Przywara7acb96b2013-04-02 05:43:36 +000057 and r1, r0, #0x1f @ mask mode bits
58 teq r1, #0x1a @ test for HYP mode
59 bicne r0, r0, #0x1f @ clear all mode bits
60 orrne r0, r0, #0x13 @ set SVC mode
61 orr r0, r0, #0xc0 @ disable FIQ and IRQ
Dirk Behme7d75a102008-12-14 09:47:13 +010062 msr cpsr,r0
63
Aneesh V688ee132011-11-21 23:34:00 +000064/*
65 * Setup vector:
66 * (OMAP4 spl TEXT_BASE is not 32 byte aligned.
67 * Continue to use ROM code vector only in OMAP4 spl)
68 */
Siarhei Siamashka7ef91f02015-02-16 10:23:59 +020069#if !(defined(CONFIG_OMAP44XX) && defined(CONFIG_SPL_BUILD))
Peng Fan0bd68872015-01-29 18:03:39 +080070 /* Set V=0 in CP15 SCTLR register - for VBAR to point to vector */
71 mrc p15, 0, r0, c1, c0, 0 @ Read CP15 SCTLR Register
Aneesh V688ee132011-11-21 23:34:00 +000072 bic r0, #CR_V @ V = 0
Peng Fan0bd68872015-01-29 18:03:39 +080073 mcr p15, 0, r0, c1, c0, 0 @ Write CP15 SCTLR Register
Aneesh V688ee132011-11-21 23:34:00 +000074
Lokesh Vutla244588c2018-04-26 18:21:25 +053075#ifdef CONFIG_HAS_VBAR
Aneesh V688ee132011-11-21 23:34:00 +000076 /* Set vector address in CP15 VBAR register */
77 ldr r0, =_start
78 mcr p15, 0, r0, c12, c0, 0 @Set VBAR
79#endif
Lokesh Vutla244588c2018-04-26 18:21:25 +053080#endif
Aneesh V688ee132011-11-21 23:34:00 +000081
Dirk Behme7d75a102008-12-14 09:47:13 +010082 /* the mask ROM code should have PLL and others stable */
83#ifndef CONFIG_SKIP_LOWLEVEL_INIT
Michal Simekf4359382018-04-26 18:21:29 +053084#ifdef CONFIG_CPU_V7A
Simon Glass277e3082011-11-05 03:56:51 +000085 bl cpu_init_cp15
Michal Simekf4359382018-04-26 18:21:29 +053086#endif
Simon Glass90844072016-05-05 07:28:06 -060087#ifndef CONFIG_SKIP_LOWLEVEL_INIT_ONLY
Dirk Behme7d75a102008-12-14 09:47:13 +010088 bl cpu_init_crit
89#endif
Simon Glass90844072016-05-05 07:28:06 -060090#endif
Dirk Behme7d75a102008-12-14 09:47:13 +010091
Albert ARIBAUDfacdae52013-01-08 10:18:02 +000092 bl _main
Heiko Schocher56d0a4d2010-09-17 13:10:41 +020093
94/*------------------------------------------------------------------------------*/
95
Albert ARIBAUDfacdae52013-01-08 10:18:02 +000096ENTRY(c_runtime_cpu_setup)
Aneesh V3e3bc1e2011-06-16 23:30:49 +000097/*
98 * If I-cache is enabled invalidate it
99 */
Trevor Woerner43ec7e02019-05-03 09:41:00 -0400100#if !CONFIG_IS_ENABLED(SYS_ICACHE_OFF)
Aneesh V3e3bc1e2011-06-16 23:30:49 +0000101 mcr p15, 0, r0, c7, c5, 0 @ invalidate icache
102 mcr p15, 0, r0, c7, c10, 4 @ DSB
103 mcr p15, 0, r0, c7, c5, 4 @ ISB
104#endif
Tetsuyuki Kobayashi61c70db2012-06-25 02:40:57 +0000105
Albert ARIBAUDfacdae52013-01-08 10:18:02 +0000106 bx lr
Heiko Schocher56d0a4d2010-09-17 13:10:41 +0200107
Albert ARIBAUDfacdae52013-01-08 10:18:02 +0000108ENDPROC(c_runtime_cpu_setup)
Heiko Schocher661a29e2010-10-11 14:08:15 +0200109
Dirk Behme7d75a102008-12-14 09:47:13 +0100110/*************************************************************************
111 *
Tetsuyuki Kobayashi153ba382012-07-06 21:14:20 +0000112 * void save_boot_params(u32 r0, u32 r1, u32 r2, u32 r3)
113 * __attribute__((weak));
114 *
115 * Stack pointer is not yet initialized at this moment
116 * Don't save anything to stack even if compiled with -O0
117 *
118 *************************************************************************/
119ENTRY(save_boot_params)
Simon Glass47197fe2015-02-07 10:47:28 -0700120 b save_boot_params_ret @ back to my caller
Tetsuyuki Kobayashi153ba382012-07-06 21:14:20 +0000121ENDPROC(save_boot_params)
122 .weak save_boot_params
123
Keerthy61488c12016-09-14 10:43:32 +0530124#ifdef CONFIG_ARMV7_LPAE
125ENTRY(switch_to_hypervisor)
126 b switch_to_hypervisor_ret
127ENDPROC(switch_to_hypervisor)
128 .weak switch_to_hypervisor
129#endif
130
Tetsuyuki Kobayashi153ba382012-07-06 21:14:20 +0000131/*************************************************************************
132 *
Simon Glass277e3082011-11-05 03:56:51 +0000133 * cpu_init_cp15
Dirk Behme7d75a102008-12-14 09:47:13 +0100134 *
Simon Glass277e3082011-11-05 03:56:51 +0000135 * Setup CP15 registers (cache, MMU, TLBs). The I-cache is turned on unless
136 * CONFIG_SYS_ICACHE_OFF is defined.
Dirk Behme7d75a102008-12-14 09:47:13 +0100137 *
138 *************************************************************************/
Aneesh Vfd8798b2012-03-08 07:20:18 +0000139ENTRY(cpu_init_cp15)
Dirk Behme7d75a102008-12-14 09:47:13 +0100140 /*
141 * Invalidate L1 I/D
142 */
143 mov r0, #0 @ set up for MCR
144 mcr p15, 0, r0, c8, c7, 0 @ invalidate TLBs
145 mcr p15, 0, r0, c7, c5, 0 @ invalidate icache
Aneesh V3e3bc1e2011-06-16 23:30:49 +0000146 mcr p15, 0, r0, c7, c5, 6 @ invalidate BP array
147 mcr p15, 0, r0, c7, c10, 4 @ DSB
148 mcr p15, 0, r0, c7, c5, 4 @ ISB
Dirk Behme7d75a102008-12-14 09:47:13 +0100149
150 /*
151 * disable MMU stuff and caches
152 */
153 mrc p15, 0, r0, c1, c0, 0
154 bic r0, r0, #0x00002000 @ clear bits 13 (--V-)
155 bic r0, r0, #0x00000007 @ clear bits 2:0 (-CAM)
156 orr r0, r0, #0x00000002 @ set bit 1 (--A-) Align
Aneesh V3e3bc1e2011-06-16 23:30:49 +0000157 orr r0, r0, #0x00000800 @ set bit 11 (Z---) BTB
Trevor Woerner43ec7e02019-05-03 09:41:00 -0400158#if CONFIG_IS_ENABLED(SYS_ICACHE_OFF)
Aneesh V3e3bc1e2011-06-16 23:30:49 +0000159 bic r0, r0, #0x00001000 @ clear bit 12 (I) I-cache
160#else
161 orr r0, r0, #0x00001000 @ set bit 12 (I) I-cache
162#endif
Dirk Behme7d75a102008-12-14 09:47:13 +0100163 mcr p15, 0, r0, c1, c0, 0
Stephen Warrene9d59c92013-02-26 12:28:27 +0000164
Stephen Warrenc63c3502013-03-04 13:29:40 +0000165#ifdef CONFIG_ARM_ERRATA_716044
166 mrc p15, 0, r0, c1, c0, 0 @ read system control register
167 orr r0, r0, #1 << 11 @ set bit #11
168 mcr p15, 0, r0, c1, c0, 0 @ write system control register
169#endif
170
Nitin Garg7f17aed2014-04-02 08:55:01 -0500171#if (defined(CONFIG_ARM_ERRATA_742230) || defined(CONFIG_ARM_ERRATA_794072))
Stephen Warrene9d59c92013-02-26 12:28:27 +0000172 mrc p15, 0, r0, c15, c0, 1 @ read diagnostic register
173 orr r0, r0, #1 << 4 @ set bit #4
174 mcr p15, 0, r0, c15, c0, 1 @ write diagnostic register
175#endif
176
177#ifdef CONFIG_ARM_ERRATA_743622
178 mrc p15, 0, r0, c15, c0, 1 @ read diagnostic register
179 orr r0, r0, #1 << 6 @ set bit #6
180 mcr p15, 0, r0, c15, c0, 1 @ write diagnostic register
181#endif
182
183#ifdef CONFIG_ARM_ERRATA_751472
184 mrc p15, 0, r0, c15, c0, 1 @ read diagnostic register
185 orr r0, r0, #1 << 11 @ set bit #11
186 mcr p15, 0, r0, c15, c0, 1 @ write diagnostic register
187#endif
Nitin Garg245defa2014-04-02 08:55:02 -0500188#ifdef CONFIG_ARM_ERRATA_761320
189 mrc p15, 0, r0, c15, c0, 1 @ read diagnostic register
190 orr r0, r0, #1 << 21 @ set bit #21
191 mcr p15, 0, r0, c15, c0, 1 @ write diagnostic register
192#endif
Stephen Warrene9d59c92013-02-26 12:28:27 +0000193
Peng Fan5ac341f2017-08-08 13:34:52 +0800194#ifdef CONFIG_ARM_ERRATA_845369
195 mrc p15, 0, r0, c15, c0, 1 @ read diagnostic register
196 orr r0, r0, #1 << 22 @ set bit #22
197 mcr p15, 0, r0, c15, c0, 1 @ write diagnostic register
198#endif
199
Nishanth Menonaa0294e2015-03-09 17:11:59 -0500200 mov r5, lr @ Store my Caller
201 mrc p15, 0, r1, c0, c0, 0 @ r1 has Read Main ID Register (MIDR)
202 mov r3, r1, lsr #20 @ get variant field
203 and r3, r3, #0xf @ r3 has CPU variant
204 and r4, r1, #0xf @ r4 has CPU revision
205 mov r2, r3, lsl #4 @ shift variant field for combined value
206 orr r2, r4, r2 @ r2 has combined CPU variant + revision
207
Andrew F. Davis441a0e92018-11-19 14:47:53 -0600208/* Early stack for ERRATA that needs into call C code */
209#if defined(CONFIG_SPL_BUILD) && defined(CONFIG_SPL_STACK)
210 ldr r0, =(CONFIG_SPL_STACK)
211#else
212 ldr r0, =(CONFIG_SYS_INIT_SP_ADDR)
213#endif
214 bic r0, r0, #7 /* 8-byte alignment for ABI compliance */
215 mov sp, r0
216
Nishanth Menonaa0294e2015-03-09 17:11:59 -0500217#ifdef CONFIG_ARM_ERRATA_798870
218 cmp r2, #0x30 @ Applies to lower than R3p0
219 bge skip_errata_798870 @ skip if not affected rev
220 cmp r2, #0x20 @ Applies to including and above R2p0
221 blt skip_errata_798870 @ skip if not affected rev
222
223 mrc p15, 1, r0, c15, c0, 0 @ read l2 aux ctrl reg
224 orr r0, r0, #1 << 7 @ Enable hazard-detect timeout
225 push {r1-r5} @ Save the cpu info registers
226 bl v7_arch_cp15_set_l2aux_ctrl
227 isb @ Recommended ISB after l2actlr update
228 pop {r1-r5} @ Restore the cpu info - fall through
229skip_errata_798870:
230#endif
231
Nishanth Menon6e2bd2e2015-07-27 16:26:05 -0500232#ifdef CONFIG_ARM_ERRATA_801819
233 cmp r2, #0x24 @ Applies to lt including R2p4
234 bgt skip_errata_801819 @ skip if not affected rev
235 cmp r2, #0x20 @ Applies to including and above R2p0
236 blt skip_errata_801819 @ skip if not affected rev
237 mrc p15, 0, r0, c0, c0, 6 @ pick up REVIDR reg
238 and r0, r0, #1 << 3 @ check REVIDR[3]
239 cmp r0, #1 << 3
240 beq skip_errata_801819 @ skip erratum if REVIDR[3] is set
241
242 mrc p15, 0, r0, c1, c0, 1 @ read auxilary control register
243 orr r0, r0, #3 << 27 @ Disables streaming. All write-allocate
244 @ lines allocate in the L1 or L2 cache.
245 orr r0, r0, #3 << 25 @ Disables streaming. All write-allocate
246 @ lines allocate in the L1 cache.
247 push {r1-r5} @ Save the cpu info registers
248 bl v7_arch_cp15_set_acr
249 pop {r1-r5} @ Restore the cpu info - fall through
250skip_errata_801819:
251#endif
252
Nishanth Menon6ffdeaa2018-06-12 15:24:09 -0500253#ifdef CONFIG_ARM_CORTEX_A15_CVE_2017_5715
254 mrc p15, 0, r0, c1, c0, 1 @ read auxilary control register
255 orr r0, r0, #1 << 0 @ Enable invalidates of BTB
256 push {r1-r5} @ Save the cpu info registers
257 bl v7_arch_cp15_set_acr
258 pop {r1-r5} @ Restore the cpu info - fall through
259#endif
260
Nishanth Menon071d6ce2015-03-09 17:12:00 -0500261#ifdef CONFIG_ARM_ERRATA_454179
Siarhei Siamashkaa2ec2af2017-08-13 05:25:20 +0300262 mrc p15, 0, r0, c1, c0, 1 @ Read ACR
263
Nishanth Menon071d6ce2015-03-09 17:12:00 -0500264 cmp r2, #0x21 @ Only on < r2p1
Siarhei Siamashkaa2ec2af2017-08-13 05:25:20 +0300265 orrlt r0, r0, #(0x3 << 6) @ Set DBSM(BIT7) and IBE(BIT6) bits
Nishanth Menon071d6ce2015-03-09 17:12:00 -0500266
Nishanth Menon071d6ce2015-03-09 17:12:00 -0500267 push {r1-r5} @ Save the cpu info registers
268 bl v7_arch_cp15_set_acr
269 pop {r1-r5} @ Restore the cpu info - fall through
Nishanth Menon071d6ce2015-03-09 17:12:00 -0500270#endif
271
Nishanth Menon85515bf2018-06-12 15:24:08 -0500272#if defined(CONFIG_ARM_ERRATA_430973) || defined (CONFIG_ARM_CORTEX_A8_CVE_2017_5715)
Siarhei Siamashkaa2ec2af2017-08-13 05:25:20 +0300273 mrc p15, 0, r0, c1, c0, 1 @ Read ACR
274
Nishanth Menon85515bf2018-06-12 15:24:08 -0500275#ifdef CONFIG_ARM_CORTEX_A8_CVE_2017_5715
276 orr r0, r0, #(0x1 << 6) @ Set IBE bit always to enable OS WA
277#else
Nishanth Menon3f445112015-03-09 17:12:01 -0500278 cmp r2, #0x21 @ Only on < r2p1
Siarhei Siamashkaa2ec2af2017-08-13 05:25:20 +0300279 orrlt r0, r0, #(0x1 << 6) @ Set IBE bit
Nishanth Menon85515bf2018-06-12 15:24:08 -0500280#endif
Nishanth Menon3f445112015-03-09 17:12:01 -0500281 push {r1-r5} @ Save the cpu info registers
282 bl v7_arch_cp15_set_acr
283 pop {r1-r5} @ Restore the cpu info - fall through
Nishanth Menon3f445112015-03-09 17:12:01 -0500284#endif
285
Nishanth Menon49db62d2015-03-09 17:12:02 -0500286#ifdef CONFIG_ARM_ERRATA_621766
Siarhei Siamashkaa2ec2af2017-08-13 05:25:20 +0300287 mrc p15, 0, r0, c1, c0, 1 @ Read ACR
288
Nishanth Menon49db62d2015-03-09 17:12:02 -0500289 cmp r2, #0x21 @ Only on < r2p1
Siarhei Siamashkaa2ec2af2017-08-13 05:25:20 +0300290 orrlt r0, r0, #(0x1 << 5) @ Set L1NEON bit
Nishanth Menon49db62d2015-03-09 17:12:02 -0500291
Nishanth Menon49db62d2015-03-09 17:12:02 -0500292 push {r1-r5} @ Save the cpu info registers
293 bl v7_arch_cp15_set_acr
294 pop {r1-r5} @ Restore the cpu info - fall through
Nishanth Menon49db62d2015-03-09 17:12:02 -0500295#endif
296
Siarhei Siamashkafe038a72017-03-06 03:16:53 +0200297#ifdef CONFIG_ARM_ERRATA_725233
Siarhei Siamashkaa2ec2af2017-08-13 05:25:20 +0300298 mrc p15, 1, r0, c9, c0, 2 @ Read L2ACR
299
Siarhei Siamashkafe038a72017-03-06 03:16:53 +0200300 cmp r2, #0x21 @ Only on < r2p1 (Cortex A8)
Siarhei Siamashkaa2ec2af2017-08-13 05:25:20 +0300301 orrlt r0, r0, #(0x1 << 27) @ L2 PLD data forwarding disable
Siarhei Siamashkafe038a72017-03-06 03:16:53 +0200302
Siarhei Siamashkafe038a72017-03-06 03:16:53 +0200303 push {r1-r5} @ Save the cpu info registers
304 bl v7_arch_cp15_set_l2aux_ctrl
305 pop {r1-r5} @ Restore the cpu info - fall through
Siarhei Siamashkafe038a72017-03-06 03:16:53 +0200306#endif
307
Nisal Menukafaa993a2017-04-26 16:18:01 -0500308#ifdef CONFIG_ARM_ERRATA_852421
309 mrc p15, 0, r0, c15, c0, 1 @ read diagnostic register
310 orr r0, r0, #1 << 24 @ set bit #24
311 mcr p15, 0, r0, c15, c0, 1 @ write diagnostic register
312#endif
313
314#ifdef CONFIG_ARM_ERRATA_852423
315 mrc p15, 0, r0, c15, c0, 1 @ read diagnostic register
316 orr r0, r0, #1 << 12 @ set bit #12
317 mcr p15, 0, r0, c15, c0, 1 @ write diagnostic register
318#endif
319
Nishanth Menonaa0294e2015-03-09 17:11:59 -0500320 mov pc, r5 @ back to my caller
Aneesh Vfd8798b2012-03-08 07:20:18 +0000321ENDPROC(cpu_init_cp15)
Dirk Behme7d75a102008-12-14 09:47:13 +0100322
Simon Glass90844072016-05-05 07:28:06 -0600323#if !defined(CONFIG_SKIP_LOWLEVEL_INIT) && \
324 !defined(CONFIG_SKIP_LOWLEVEL_INIT_ONLY)
Simon Glass277e3082011-11-05 03:56:51 +0000325/*************************************************************************
326 *
327 * CPU_init_critical registers
328 *
329 * setup important registers
330 * setup memory timing
331 *
332 *************************************************************************/
Aneesh Vfd8798b2012-03-08 07:20:18 +0000333ENTRY(cpu_init_crit)
Dirk Behme7d75a102008-12-14 09:47:13 +0100334 /*
335 * Jump to board specific initialization...
336 * The Mask ROM will have already initialized
337 * basic memory. Go here to bump up clock rate and handle
338 * wake up conditions.
339 */
Benoît Thébaudeau0a167902012-08-10 12:05:16 +0000340 b lowlevel_init @ go setup pll,mux,memory
Aneesh Vfd8798b2012-03-08 07:20:18 +0000341ENDPROC(cpu_init_crit)
Rob Herringa6932872011-06-28 05:39:38 +0000342#endif