blob: 95a0b5224b9f6cb69d78f148e7b591f13de757ad [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
Philipp Tomsich5636d4a2017-10-10 16:21:12 +020034 .type save_boot_params_ret,%function
Keerthy61488c12016-09-14 10:43:32 +053035#ifdef CONFIG_ARMV7_LPAE
36 .global switch_to_hypervisor_ret
37#endif
Dirk Behme7d75a102008-12-14 09:47:13 +010038
39reset:
Simon Glass47197fe2015-02-07 10:47:28 -070040 /* Allow the board to save important registers */
41 b save_boot_params
42save_boot_params_ret:
Keerthy61488c12016-09-14 10:43:32 +053043#ifdef CONFIG_ARMV7_LPAE
44/*
45 * check for Hypervisor support
46 */
47 mrc p15, 0, r0, c0, c1, 1 @ read ID_PFR1
48 and r0, r0, #CPUID_ARM_VIRT_MASK @ mask virtualization bits
49 cmp r0, #(1 << CPUID_ARM_VIRT_SHIFT)
50 beq switch_to_hypervisor
51switch_to_hypervisor_ret:
52#endif
Dirk Behme7d75a102008-12-14 09:47:13 +010053 /*
Andre Przywara7acb96b2013-04-02 05:43:36 +000054 * disable interrupts (FIQ and IRQ), also set the cpu to SVC32 mode,
55 * except if in HYP mode already
Dirk Behme7d75a102008-12-14 09:47:13 +010056 */
57 mrs r0, cpsr
Andre Przywara7acb96b2013-04-02 05:43:36 +000058 and r1, r0, #0x1f @ mask mode bits
59 teq r1, #0x1a @ test for HYP mode
60 bicne r0, r0, #0x1f @ clear all mode bits
61 orrne r0, r0, #0x13 @ set SVC mode
62 orr r0, r0, #0xc0 @ disable FIQ and IRQ
Dirk Behme7d75a102008-12-14 09:47:13 +010063 msr cpsr,r0
64
Aneesh V688ee132011-11-21 23:34:00 +000065/*
66 * Setup vector:
67 * (OMAP4 spl TEXT_BASE is not 32 byte aligned.
68 * Continue to use ROM code vector only in OMAP4 spl)
69 */
Siarhei Siamashka7ef91f02015-02-16 10:23:59 +020070#if !(defined(CONFIG_OMAP44XX) && defined(CONFIG_SPL_BUILD))
Peng Fan0bd68872015-01-29 18:03:39 +080071 /* Set V=0 in CP15 SCTLR register - for VBAR to point to vector */
72 mrc p15, 0, r0, c1, c0, 0 @ Read CP15 SCTLR Register
Aneesh V688ee132011-11-21 23:34:00 +000073 bic r0, #CR_V @ V = 0
Peng Fan0bd68872015-01-29 18:03:39 +080074 mcr p15, 0, r0, c1, c0, 0 @ Write CP15 SCTLR Register
Aneesh V688ee132011-11-21 23:34:00 +000075
76 /* Set vector address in CP15 VBAR register */
77 ldr r0, =_start
78 mcr p15, 0, r0, c12, c0, 0 @Set VBAR
79#endif
80
Dirk Behme7d75a102008-12-14 09:47:13 +010081 /* the mask ROM code should have PLL and others stable */
82#ifndef CONFIG_SKIP_LOWLEVEL_INIT
Simon Glass277e3082011-11-05 03:56:51 +000083 bl cpu_init_cp15
Simon Glass90844072016-05-05 07:28:06 -060084#ifndef CONFIG_SKIP_LOWLEVEL_INIT_ONLY
Dirk Behme7d75a102008-12-14 09:47:13 +010085 bl cpu_init_crit
86#endif
Simon Glass90844072016-05-05 07:28:06 -060087#endif
Dirk Behme7d75a102008-12-14 09:47:13 +010088
Albert ARIBAUDfacdae52013-01-08 10:18:02 +000089 bl _main
Heiko Schocher56d0a4d2010-09-17 13:10:41 +020090
91/*------------------------------------------------------------------------------*/
92
Albert ARIBAUDfacdae52013-01-08 10:18:02 +000093ENTRY(c_runtime_cpu_setup)
Aneesh V3e3bc1e2011-06-16 23:30:49 +000094/*
95 * If I-cache is enabled invalidate it
96 */
97#ifndef CONFIG_SYS_ICACHE_OFF
98 mcr p15, 0, r0, c7, c5, 0 @ invalidate icache
99 mcr p15, 0, r0, c7, c10, 4 @ DSB
100 mcr p15, 0, r0, c7, c5, 4 @ ISB
101#endif
Tetsuyuki Kobayashi61c70db2012-06-25 02:40:57 +0000102
Albert ARIBAUDfacdae52013-01-08 10:18:02 +0000103 bx lr
Heiko Schocher56d0a4d2010-09-17 13:10:41 +0200104
Albert ARIBAUDfacdae52013-01-08 10:18:02 +0000105ENDPROC(c_runtime_cpu_setup)
Heiko Schocher661a29e2010-10-11 14:08:15 +0200106
Dirk Behme7d75a102008-12-14 09:47:13 +0100107/*************************************************************************
108 *
Tetsuyuki Kobayashi153ba382012-07-06 21:14:20 +0000109 * void save_boot_params(u32 r0, u32 r1, u32 r2, u32 r3)
110 * __attribute__((weak));
111 *
112 * Stack pointer is not yet initialized at this moment
113 * Don't save anything to stack even if compiled with -O0
114 *
115 *************************************************************************/
116ENTRY(save_boot_params)
Simon Glass47197fe2015-02-07 10:47:28 -0700117 b save_boot_params_ret @ back to my caller
Tetsuyuki Kobayashi153ba382012-07-06 21:14:20 +0000118ENDPROC(save_boot_params)
119 .weak save_boot_params
120
Keerthy61488c12016-09-14 10:43:32 +0530121#ifdef CONFIG_ARMV7_LPAE
122ENTRY(switch_to_hypervisor)
123 b switch_to_hypervisor_ret
124ENDPROC(switch_to_hypervisor)
125 .weak switch_to_hypervisor
126#endif
127
Tetsuyuki Kobayashi153ba382012-07-06 21:14:20 +0000128/*************************************************************************
129 *
Simon Glass277e3082011-11-05 03:56:51 +0000130 * cpu_init_cp15
Dirk Behme7d75a102008-12-14 09:47:13 +0100131 *
Simon Glass277e3082011-11-05 03:56:51 +0000132 * Setup CP15 registers (cache, MMU, TLBs). The I-cache is turned on unless
133 * CONFIG_SYS_ICACHE_OFF is defined.
Dirk Behme7d75a102008-12-14 09:47:13 +0100134 *
135 *************************************************************************/
Aneesh Vfd8798b2012-03-08 07:20:18 +0000136ENTRY(cpu_init_cp15)
Dirk Behme7d75a102008-12-14 09:47:13 +0100137 /*
138 * Invalidate L1 I/D
139 */
140 mov r0, #0 @ set up for MCR
141 mcr p15, 0, r0, c8, c7, 0 @ invalidate TLBs
142 mcr p15, 0, r0, c7, c5, 0 @ invalidate icache
Aneesh V3e3bc1e2011-06-16 23:30:49 +0000143 mcr p15, 0, r0, c7, c5, 6 @ invalidate BP array
144 mcr p15, 0, r0, c7, c10, 4 @ DSB
145 mcr p15, 0, r0, c7, c5, 4 @ ISB
Dirk Behme7d75a102008-12-14 09:47:13 +0100146
147 /*
148 * disable MMU stuff and caches
149 */
150 mrc p15, 0, r0, c1, c0, 0
151 bic r0, r0, #0x00002000 @ clear bits 13 (--V-)
152 bic r0, r0, #0x00000007 @ clear bits 2:0 (-CAM)
153 orr r0, r0, #0x00000002 @ set bit 1 (--A-) Align
Aneesh V3e3bc1e2011-06-16 23:30:49 +0000154 orr r0, r0, #0x00000800 @ set bit 11 (Z---) BTB
155#ifdef CONFIG_SYS_ICACHE_OFF
156 bic r0, r0, #0x00001000 @ clear bit 12 (I) I-cache
157#else
158 orr r0, r0, #0x00001000 @ set bit 12 (I) I-cache
159#endif
Dirk Behme7d75a102008-12-14 09:47:13 +0100160 mcr p15, 0, r0, c1, c0, 0
Stephen Warrene9d59c92013-02-26 12:28:27 +0000161
Stephen Warrenc63c3502013-03-04 13:29:40 +0000162#ifdef CONFIG_ARM_ERRATA_716044
163 mrc p15, 0, r0, c1, c0, 0 @ read system control register
164 orr r0, r0, #1 << 11 @ set bit #11
165 mcr p15, 0, r0, c1, c0, 0 @ write system control register
166#endif
167
Nitin Garg7f17aed2014-04-02 08:55:01 -0500168#if (defined(CONFIG_ARM_ERRATA_742230) || defined(CONFIG_ARM_ERRATA_794072))
Stephen Warrene9d59c92013-02-26 12:28:27 +0000169 mrc p15, 0, r0, c15, c0, 1 @ read diagnostic register
170 orr r0, r0, #1 << 4 @ set bit #4
171 mcr p15, 0, r0, c15, c0, 1 @ write diagnostic register
172#endif
173
174#ifdef CONFIG_ARM_ERRATA_743622
175 mrc p15, 0, r0, c15, c0, 1 @ read diagnostic register
176 orr r0, r0, #1 << 6 @ set bit #6
177 mcr p15, 0, r0, c15, c0, 1 @ write diagnostic register
178#endif
179
180#ifdef CONFIG_ARM_ERRATA_751472
181 mrc p15, 0, r0, c15, c0, 1 @ read diagnostic register
182 orr r0, r0, #1 << 11 @ set bit #11
183 mcr p15, 0, r0, c15, c0, 1 @ write diagnostic register
184#endif
Nitin Garg245defa2014-04-02 08:55:02 -0500185#ifdef CONFIG_ARM_ERRATA_761320
186 mrc p15, 0, r0, c15, c0, 1 @ read diagnostic register
187 orr r0, r0, #1 << 21 @ set bit #21
188 mcr p15, 0, r0, c15, c0, 1 @ write diagnostic register
189#endif
Stephen Warrene9d59c92013-02-26 12:28:27 +0000190
Peng Fan5ac341f2017-08-08 13:34:52 +0800191#ifdef CONFIG_ARM_ERRATA_845369
192 mrc p15, 0, r0, c15, c0, 1 @ read diagnostic register
193 orr r0, r0, #1 << 22 @ set bit #22
194 mcr p15, 0, r0, c15, c0, 1 @ write diagnostic register
195#endif
196
Nishanth Menonaa0294e2015-03-09 17:11:59 -0500197 mov r5, lr @ Store my Caller
198 mrc p15, 0, r1, c0, c0, 0 @ r1 has Read Main ID Register (MIDR)
199 mov r3, r1, lsr #20 @ get variant field
200 and r3, r3, #0xf @ r3 has CPU variant
201 and r4, r1, #0xf @ r4 has CPU revision
202 mov r2, r3, lsl #4 @ shift variant field for combined value
203 orr r2, r4, r2 @ r2 has combined CPU variant + revision
204
205#ifdef CONFIG_ARM_ERRATA_798870
206 cmp r2, #0x30 @ Applies to lower than R3p0
207 bge skip_errata_798870 @ skip if not affected rev
208 cmp r2, #0x20 @ Applies to including and above R2p0
209 blt skip_errata_798870 @ skip if not affected rev
210
211 mrc p15, 1, r0, c15, c0, 0 @ read l2 aux ctrl reg
212 orr r0, r0, #1 << 7 @ Enable hazard-detect timeout
213 push {r1-r5} @ Save the cpu info registers
214 bl v7_arch_cp15_set_l2aux_ctrl
215 isb @ Recommended ISB after l2actlr update
216 pop {r1-r5} @ Restore the cpu info - fall through
217skip_errata_798870:
218#endif
219
Nishanth Menon6e2bd2e2015-07-27 16:26:05 -0500220#ifdef CONFIG_ARM_ERRATA_801819
221 cmp r2, #0x24 @ Applies to lt including R2p4
222 bgt skip_errata_801819 @ skip if not affected rev
223 cmp r2, #0x20 @ Applies to including and above R2p0
224 blt skip_errata_801819 @ skip if not affected rev
225 mrc p15, 0, r0, c0, c0, 6 @ pick up REVIDR reg
226 and r0, r0, #1 << 3 @ check REVIDR[3]
227 cmp r0, #1 << 3
228 beq skip_errata_801819 @ skip erratum if REVIDR[3] is set
229
230 mrc p15, 0, r0, c1, c0, 1 @ read auxilary control register
231 orr r0, r0, #3 << 27 @ Disables streaming. All write-allocate
232 @ lines allocate in the L1 or L2 cache.
233 orr r0, r0, #3 << 25 @ Disables streaming. All write-allocate
234 @ lines allocate in the L1 cache.
235 push {r1-r5} @ Save the cpu info registers
236 bl v7_arch_cp15_set_acr
237 pop {r1-r5} @ Restore the cpu info - fall through
238skip_errata_801819:
239#endif
240
Nishanth Menon071d6ce2015-03-09 17:12:00 -0500241#ifdef CONFIG_ARM_ERRATA_454179
242 cmp r2, #0x21 @ Only on < r2p1
243 bge skip_errata_454179
244
245 mrc p15, 0, r0, c1, c0, 1 @ Read ACR
246 orr r0, r0, #(0x3 << 6) @ Set DBSM(BIT7) and IBE(BIT6) bits
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
250
251skip_errata_454179:
252#endif
253
Nishanth Menon3f445112015-03-09 17:12:01 -0500254#ifdef CONFIG_ARM_ERRATA_430973
255 cmp r2, #0x21 @ Only on < r2p1
256 bge skip_errata_430973
257
258 mrc p15, 0, r0, c1, c0, 1 @ Read ACR
259 orr r0, r0, #(0x1 << 6) @ Set IBE bit
260 push {r1-r5} @ Save the cpu info registers
261 bl v7_arch_cp15_set_acr
262 pop {r1-r5} @ Restore the cpu info - fall through
263
264skip_errata_430973:
265#endif
266
Nishanth Menon49db62d2015-03-09 17:12:02 -0500267#ifdef CONFIG_ARM_ERRATA_621766
268 cmp r2, #0x21 @ Only on < r2p1
269 bge skip_errata_621766
270
271 mrc p15, 0, r0, c1, c0, 1 @ Read ACR
272 orr r0, r0, #(0x1 << 5) @ Set L1NEON bit
273 push {r1-r5} @ Save the cpu info registers
274 bl v7_arch_cp15_set_acr
275 pop {r1-r5} @ Restore the cpu info - fall through
276
277skip_errata_621766:
278#endif
279
Siarhei Siamashkafe038a72017-03-06 03:16:53 +0200280#ifdef CONFIG_ARM_ERRATA_725233
281 cmp r2, #0x21 @ Only on < r2p1 (Cortex A8)
282 bge skip_errata_725233
283
284 mrc p15, 1, r0, c9, c0, 2 @ Read L2ACR
285 orr r0, r0, #(0x1 << 27) @ L2 PLD data forwarding disable
286 push {r1-r5} @ Save the cpu info registers
287 bl v7_arch_cp15_set_l2aux_ctrl
288 pop {r1-r5} @ Restore the cpu info - fall through
289
290skip_errata_725233:
291#endif
292
Nisal Menukafaa993a2017-04-26 16:18:01 -0500293#ifdef CONFIG_ARM_ERRATA_852421
294 mrc p15, 0, r0, c15, c0, 1 @ read diagnostic register
295 orr r0, r0, #1 << 24 @ set bit #24
296 mcr p15, 0, r0, c15, c0, 1 @ write diagnostic register
297#endif
298
299#ifdef CONFIG_ARM_ERRATA_852423
300 mrc p15, 0, r0, c15, c0, 1 @ read diagnostic register
301 orr r0, r0, #1 << 12 @ set bit #12
302 mcr p15, 0, r0, c15, c0, 1 @ write diagnostic register
303#endif
304
Nishanth Menonaa0294e2015-03-09 17:11:59 -0500305 mov pc, r5 @ back to my caller
Aneesh Vfd8798b2012-03-08 07:20:18 +0000306ENDPROC(cpu_init_cp15)
Dirk Behme7d75a102008-12-14 09:47:13 +0100307
Simon Glass90844072016-05-05 07:28:06 -0600308#if !defined(CONFIG_SKIP_LOWLEVEL_INIT) && \
309 !defined(CONFIG_SKIP_LOWLEVEL_INIT_ONLY)
Simon Glass277e3082011-11-05 03:56:51 +0000310/*************************************************************************
311 *
312 * CPU_init_critical registers
313 *
314 * setup important registers
315 * setup memory timing
316 *
317 *************************************************************************/
Aneesh Vfd8798b2012-03-08 07:20:18 +0000318ENTRY(cpu_init_crit)
Dirk Behme7d75a102008-12-14 09:47:13 +0100319 /*
320 * Jump to board specific initialization...
321 * The Mask ROM will have already initialized
322 * basic memory. Go here to bump up clock rate and handle
323 * wake up conditions.
324 */
Benoît Thébaudeau0a167902012-08-10 12:05:16 +0000325 b lowlevel_init @ go setup pll,mux,memory
Aneesh Vfd8798b2012-03-08 07:20:18 +0000326ENDPROC(cpu_init_crit)
Rob Herringa6932872011-06-28 05:39:38 +0000327#endif