blob: 7b84a7a0f161207611202c7f44544208c70fed13 [file] [log] [blame]
Dirk Behme7d75a102008-12-14 09:47:13 +01001/*
2 * armboot - Startup Code for OMAP3530/ARM Cortex CPU-core
3 *
4 * Copyright (c) 2004 Texas Instruments <r-woodruff2@ti.com>
5 *
6 * Copyright (c) 2001 Marius Gröger <mag@sysgo.de>
7 * Copyright (c) 2002 Alex Züpke <azu@sysgo.de>
Detlev Zundelf1b3f2b2009-05-13 10:54:10 +02008 * Copyright (c) 2002 Gary Jennejohn <garyj@denx.de>
Dirk Behme7d75a102008-12-14 09:47:13 +01009 * Copyright (c) 2003 Richard Woodruff <r-woodruff2@ti.com>
10 * Copyright (c) 2003 Kshitij <kshitij@ti.com>
11 * Copyright (c) 2006-2008 Syed Mohammed Khasim <x0khasim@ti.com>
12 *
Wolfgang Denkbd8ec7e2013-10-07 13:07:26 +020013 * SPDX-License-Identifier: GPL-2.0+
Dirk Behme7d75a102008-12-14 09:47:13 +010014 */
15
Wolfgang Denk0191e472010-10-26 14:34:52 +020016#include <asm-offsets.h>
Dirk Behme7d75a102008-12-14 09:47:13 +010017#include <config.h>
Aneesh V688ee132011-11-21 23:34:00 +000018#include <asm/system.h>
Aneesh Vfd8798b2012-03-08 07:20:18 +000019#include <linux/linkage.h>
Keerthy61488c12016-09-14 10:43:32 +053020#include <asm/armv7.h>
Dirk Behme7d75a102008-12-14 09:47:13 +010021
Dirk Behme7d75a102008-12-14 09:47:13 +010022/*************************************************************************
23 *
24 * Startup Code (reset vector)
25 *
Pavel Machekeb0a0b42015-04-08 14:15:54 +020026 * Do important init only if we don't start from memory!
27 * Setup memory and board specific bits prior to relocation.
28 * Relocate armboot to ram. Setup stack.
Dirk Behme7d75a102008-12-14 09:47:13 +010029 *
30 *************************************************************************/
31
Albert ARIBAUD9852cc62014-04-15 16:13:51 +020032 .globl reset
Simon Glass47197fe2015-02-07 10:47:28 -070033 .globl save_boot_params_ret
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
75 /* Set vector address in CP15 VBAR register */
76 ldr r0, =_start
77 mcr p15, 0, r0, c12, c0, 0 @Set VBAR
78#endif
79
Dirk Behme7d75a102008-12-14 09:47:13 +010080 /* the mask ROM code should have PLL and others stable */
81#ifndef CONFIG_SKIP_LOWLEVEL_INIT
Simon Glass277e3082011-11-05 03:56:51 +000082 bl cpu_init_cp15
Simon Glass90844072016-05-05 07:28:06 -060083#ifndef CONFIG_SKIP_LOWLEVEL_INIT_ONLY
Dirk Behme7d75a102008-12-14 09:47:13 +010084 bl cpu_init_crit
85#endif
Simon Glass90844072016-05-05 07:28:06 -060086#endif
Dirk Behme7d75a102008-12-14 09:47:13 +010087
Albert ARIBAUDfacdae52013-01-08 10:18:02 +000088 bl _main
Heiko Schocher56d0a4d2010-09-17 13:10:41 +020089
90/*------------------------------------------------------------------------------*/
91
Albert ARIBAUDfacdae52013-01-08 10:18:02 +000092ENTRY(c_runtime_cpu_setup)
Aneesh V3e3bc1e2011-06-16 23:30:49 +000093/*
94 * If I-cache is enabled invalidate it
95 */
96#ifndef CONFIG_SYS_ICACHE_OFF
97 mcr p15, 0, r0, c7, c5, 0 @ invalidate icache
98 mcr p15, 0, r0, c7, c10, 4 @ DSB
99 mcr p15, 0, r0, c7, c5, 4 @ ISB
100#endif
Tetsuyuki Kobayashi61c70db2012-06-25 02:40:57 +0000101
Albert ARIBAUDfacdae52013-01-08 10:18:02 +0000102 bx lr
Heiko Schocher56d0a4d2010-09-17 13:10:41 +0200103
Albert ARIBAUDfacdae52013-01-08 10:18:02 +0000104ENDPROC(c_runtime_cpu_setup)
Heiko Schocher661a29e2010-10-11 14:08:15 +0200105
Dirk Behme7d75a102008-12-14 09:47:13 +0100106/*************************************************************************
107 *
Tetsuyuki Kobayashi153ba382012-07-06 21:14:20 +0000108 * void save_boot_params(u32 r0, u32 r1, u32 r2, u32 r3)
109 * __attribute__((weak));
110 *
111 * Stack pointer is not yet initialized at this moment
112 * Don't save anything to stack even if compiled with -O0
113 *
114 *************************************************************************/
115ENTRY(save_boot_params)
Simon Glass47197fe2015-02-07 10:47:28 -0700116 b save_boot_params_ret @ back to my caller
Tetsuyuki Kobayashi153ba382012-07-06 21:14:20 +0000117ENDPROC(save_boot_params)
118 .weak save_boot_params
119
Keerthy61488c12016-09-14 10:43:32 +0530120#ifdef CONFIG_ARMV7_LPAE
121ENTRY(switch_to_hypervisor)
122 b switch_to_hypervisor_ret
123ENDPROC(switch_to_hypervisor)
124 .weak switch_to_hypervisor
125#endif
126
Tetsuyuki Kobayashi153ba382012-07-06 21:14:20 +0000127/*************************************************************************
128 *
Simon Glass277e3082011-11-05 03:56:51 +0000129 * cpu_init_cp15
Dirk Behme7d75a102008-12-14 09:47:13 +0100130 *
Simon Glass277e3082011-11-05 03:56:51 +0000131 * Setup CP15 registers (cache, MMU, TLBs). The I-cache is turned on unless
132 * CONFIG_SYS_ICACHE_OFF is defined.
Dirk Behme7d75a102008-12-14 09:47:13 +0100133 *
134 *************************************************************************/
Aneesh Vfd8798b2012-03-08 07:20:18 +0000135ENTRY(cpu_init_cp15)
Dirk Behme7d75a102008-12-14 09:47:13 +0100136 /*
137 * Invalidate L1 I/D
138 */
139 mov r0, #0 @ set up for MCR
140 mcr p15, 0, r0, c8, c7, 0 @ invalidate TLBs
141 mcr p15, 0, r0, c7, c5, 0 @ invalidate icache
Aneesh V3e3bc1e2011-06-16 23:30:49 +0000142 mcr p15, 0, r0, c7, c5, 6 @ invalidate BP array
143 mcr p15, 0, r0, c7, c10, 4 @ DSB
144 mcr p15, 0, r0, c7, c5, 4 @ ISB
Dirk Behme7d75a102008-12-14 09:47:13 +0100145
146 /*
147 * disable MMU stuff and caches
148 */
149 mrc p15, 0, r0, c1, c0, 0
150 bic r0, r0, #0x00002000 @ clear bits 13 (--V-)
151 bic r0, r0, #0x00000007 @ clear bits 2:0 (-CAM)
152 orr r0, r0, #0x00000002 @ set bit 1 (--A-) Align
Aneesh V3e3bc1e2011-06-16 23:30:49 +0000153 orr r0, r0, #0x00000800 @ set bit 11 (Z---) BTB
154#ifdef CONFIG_SYS_ICACHE_OFF
155 bic r0, r0, #0x00001000 @ clear bit 12 (I) I-cache
156#else
157 orr r0, r0, #0x00001000 @ set bit 12 (I) I-cache
158#endif
Dirk Behme7d75a102008-12-14 09:47:13 +0100159 mcr p15, 0, r0, c1, c0, 0
Stephen Warrene9d59c92013-02-26 12:28:27 +0000160
Stephen Warrenc63c3502013-03-04 13:29:40 +0000161#ifdef CONFIG_ARM_ERRATA_716044
162 mrc p15, 0, r0, c1, c0, 0 @ read system control register
163 orr r0, r0, #1 << 11 @ set bit #11
164 mcr p15, 0, r0, c1, c0, 0 @ write system control register
165#endif
166
Nitin Garg7f17aed2014-04-02 08:55:01 -0500167#if (defined(CONFIG_ARM_ERRATA_742230) || defined(CONFIG_ARM_ERRATA_794072))
Stephen Warrene9d59c92013-02-26 12:28:27 +0000168 mrc p15, 0, r0, c15, c0, 1 @ read diagnostic register
169 orr r0, r0, #1 << 4 @ set bit #4
170 mcr p15, 0, r0, c15, c0, 1 @ write diagnostic register
171#endif
172
173#ifdef CONFIG_ARM_ERRATA_743622
174 mrc p15, 0, r0, c15, c0, 1 @ read diagnostic register
175 orr r0, r0, #1 << 6 @ set bit #6
176 mcr p15, 0, r0, c15, c0, 1 @ write diagnostic register
177#endif
178
179#ifdef CONFIG_ARM_ERRATA_751472
180 mrc p15, 0, r0, c15, c0, 1 @ read diagnostic register
181 orr r0, r0, #1 << 11 @ set bit #11
182 mcr p15, 0, r0, c15, c0, 1 @ write diagnostic register
183#endif
Nitin Garg245defa2014-04-02 08:55:02 -0500184#ifdef CONFIG_ARM_ERRATA_761320
185 mrc p15, 0, r0, c15, c0, 1 @ read diagnostic register
186 orr r0, r0, #1 << 21 @ set bit #21
187 mcr p15, 0, r0, c15, c0, 1 @ write diagnostic register
188#endif
Stephen Warrene9d59c92013-02-26 12:28:27 +0000189
Peng Fan5ac341f2017-08-08 13:34:52 +0800190#ifdef CONFIG_ARM_ERRATA_845369
191 mrc p15, 0, r0, c15, c0, 1 @ read diagnostic register
192 orr r0, r0, #1 << 22 @ set bit #22
193 mcr p15, 0, r0, c15, c0, 1 @ write diagnostic register
194#endif
195
Nishanth Menonaa0294e2015-03-09 17:11:59 -0500196 mov r5, lr @ Store my Caller
197 mrc p15, 0, r1, c0, c0, 0 @ r1 has Read Main ID Register (MIDR)
198 mov r3, r1, lsr #20 @ get variant field
199 and r3, r3, #0xf @ r3 has CPU variant
200 and r4, r1, #0xf @ r4 has CPU revision
201 mov r2, r3, lsl #4 @ shift variant field for combined value
202 orr r2, r4, r2 @ r2 has combined CPU variant + revision
203
204#ifdef CONFIG_ARM_ERRATA_798870
205 cmp r2, #0x30 @ Applies to lower than R3p0
206 bge skip_errata_798870 @ skip if not affected rev
207 cmp r2, #0x20 @ Applies to including and above R2p0
208 blt skip_errata_798870 @ skip if not affected rev
209
210 mrc p15, 1, r0, c15, c0, 0 @ read l2 aux ctrl reg
211 orr r0, r0, #1 << 7 @ Enable hazard-detect timeout
212 push {r1-r5} @ Save the cpu info registers
213 bl v7_arch_cp15_set_l2aux_ctrl
214 isb @ Recommended ISB after l2actlr update
215 pop {r1-r5} @ Restore the cpu info - fall through
216skip_errata_798870:
217#endif
218
Nishanth Menon6e2bd2e2015-07-27 16:26:05 -0500219#ifdef CONFIG_ARM_ERRATA_801819
220 cmp r2, #0x24 @ Applies to lt including R2p4
221 bgt skip_errata_801819 @ skip if not affected rev
222 cmp r2, #0x20 @ Applies to including and above R2p0
223 blt skip_errata_801819 @ skip if not affected rev
224 mrc p15, 0, r0, c0, c0, 6 @ pick up REVIDR reg
225 and r0, r0, #1 << 3 @ check REVIDR[3]
226 cmp r0, #1 << 3
227 beq skip_errata_801819 @ skip erratum if REVIDR[3] is set
228
229 mrc p15, 0, r0, c1, c0, 1 @ read auxilary control register
230 orr r0, r0, #3 << 27 @ Disables streaming. All write-allocate
231 @ lines allocate in the L1 or L2 cache.
232 orr r0, r0, #3 << 25 @ Disables streaming. All write-allocate
233 @ lines allocate in the L1 cache.
234 push {r1-r5} @ Save the cpu info registers
235 bl v7_arch_cp15_set_acr
236 pop {r1-r5} @ Restore the cpu info - fall through
237skip_errata_801819:
238#endif
239
Nishanth Menon071d6ce2015-03-09 17:12:00 -0500240#ifdef CONFIG_ARM_ERRATA_454179
241 cmp r2, #0x21 @ Only on < r2p1
242 bge skip_errata_454179
243
244 mrc p15, 0, r0, c1, c0, 1 @ Read ACR
245 orr r0, r0, #(0x3 << 6) @ Set DBSM(BIT7) and IBE(BIT6) bits
246 push {r1-r5} @ Save the cpu info registers
247 bl v7_arch_cp15_set_acr
248 pop {r1-r5} @ Restore the cpu info - fall through
249
250skip_errata_454179:
251#endif
252
Nishanth Menon3f445112015-03-09 17:12:01 -0500253#ifdef CONFIG_ARM_ERRATA_430973
254 cmp r2, #0x21 @ Only on < r2p1
255 bge skip_errata_430973
256
257 mrc p15, 0, r0, c1, c0, 1 @ Read ACR
258 orr r0, r0, #(0x1 << 6) @ Set IBE bit
259 push {r1-r5} @ Save the cpu info registers
260 bl v7_arch_cp15_set_acr
261 pop {r1-r5} @ Restore the cpu info - fall through
262
263skip_errata_430973:
264#endif
265
Nishanth Menon49db62d2015-03-09 17:12:02 -0500266#ifdef CONFIG_ARM_ERRATA_621766
267 cmp r2, #0x21 @ Only on < r2p1
268 bge skip_errata_621766
269
270 mrc p15, 0, r0, c1, c0, 1 @ Read ACR
271 orr r0, r0, #(0x1 << 5) @ Set L1NEON bit
272 push {r1-r5} @ Save the cpu info registers
273 bl v7_arch_cp15_set_acr
274 pop {r1-r5} @ Restore the cpu info - fall through
275
276skip_errata_621766:
277#endif
278
Siarhei Siamashkafe038a72017-03-06 03:16:53 +0200279#ifdef CONFIG_ARM_ERRATA_725233
280 cmp r2, #0x21 @ Only on < r2p1 (Cortex A8)
281 bge skip_errata_725233
282
283 mrc p15, 1, r0, c9, c0, 2 @ Read L2ACR
284 orr r0, r0, #(0x1 << 27) @ L2 PLD data forwarding disable
285 push {r1-r5} @ Save the cpu info registers
286 bl v7_arch_cp15_set_l2aux_ctrl
287 pop {r1-r5} @ Restore the cpu info - fall through
288
289skip_errata_725233:
290#endif
291
Nisal Menukafaa993a2017-04-26 16:18:01 -0500292#ifdef CONFIG_ARM_ERRATA_852421
293 mrc p15, 0, r0, c15, c0, 1 @ read diagnostic register
294 orr r0, r0, #1 << 24 @ set bit #24
295 mcr p15, 0, r0, c15, c0, 1 @ write diagnostic register
296#endif
297
298#ifdef CONFIG_ARM_ERRATA_852423
299 mrc p15, 0, r0, c15, c0, 1 @ read diagnostic register
300 orr r0, r0, #1 << 12 @ set bit #12
301 mcr p15, 0, r0, c15, c0, 1 @ write diagnostic register
302#endif
303
Nishanth Menonaa0294e2015-03-09 17:11:59 -0500304 mov pc, r5 @ back to my caller
Aneesh Vfd8798b2012-03-08 07:20:18 +0000305ENDPROC(cpu_init_cp15)
Dirk Behme7d75a102008-12-14 09:47:13 +0100306
Simon Glass90844072016-05-05 07:28:06 -0600307#if !defined(CONFIG_SKIP_LOWLEVEL_INIT) && \
308 !defined(CONFIG_SKIP_LOWLEVEL_INIT_ONLY)
Simon Glass277e3082011-11-05 03:56:51 +0000309/*************************************************************************
310 *
311 * CPU_init_critical registers
312 *
313 * setup important registers
314 * setup memory timing
315 *
316 *************************************************************************/
Aneesh Vfd8798b2012-03-08 07:20:18 +0000317ENTRY(cpu_init_crit)
Dirk Behme7d75a102008-12-14 09:47:13 +0100318 /*
319 * Jump to board specific initialization...
320 * The Mask ROM will have already initialized
321 * basic memory. Go here to bump up clock rate and handle
322 * wake up conditions.
323 */
Benoît Thébaudeau0a167902012-08-10 12:05:16 +0000324 b lowlevel_init @ go setup pll,mux,memory
Aneesh Vfd8798b2012-03-08 07:20:18 +0000325ENDPROC(cpu_init_crit)
Rob Herringa6932872011-06-28 05:39:38 +0000326#endif