blob: 8c19a83f8b5d0716eeeb1a6fdff35ac1a5bf9209 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Dirk Behme0b02b182008-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 Zundel792a09e2009-05-13 10:54:10 +02009 * Copyright (c) 2002 Gary Jennejohn <garyj@denx.de>
Dirk Behme0b02b182008-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 Behme0b02b182008-12-14 09:47:13 +010013 */
14
Wolfgang Denk25ddd1f2010-10-26 14:34:52 +020015#include <asm-offsets.h>
Dirk Behme0b02b182008-12-14 09:47:13 +010016#include <config.h>
Aneesh Va8c68632011-11-21 23:34:00 +000017#include <asm/system.h>
Aneesh V74236ac2012-03-08 07:20:18 +000018#include <linux/linkage.h>
Keerthyd31d4a22016-09-14 10:43:32 +053019#include <asm/armv7.h>
Dirk Behme0b02b182008-12-14 09:47:13 +010020
Dirk Behme0b02b182008-12-14 09:47:13 +010021/*************************************************************************
22 *
23 * Startup Code (reset vector)
24 *
Pavel Machek003b09d2015-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 Behme0b02b182008-12-14 09:47:13 +010028 *
29 *************************************************************************/
30
Albert ARIBAUD41623c92014-04-15 16:13:51 +020031 .globl reset
Simon Glasse11c6c22015-02-07 10:47:28 -070032 .globl save_boot_params_ret
Philipp Tomsichff143d52017-10-10 16:21:12 +020033 .type save_boot_params_ret,%function
Keerthyd31d4a22016-09-14 10:43:32 +053034#ifdef CONFIG_ARMV7_LPAE
35 .global switch_to_hypervisor_ret
36#endif
Heiko Schocher561142a2010-09-17 13:10:41 +020037
38reset:
Simon Glasse11c6c22015-02-07 10:47:28 -070039 /* Allow the board to save important registers */
40 b save_boot_params
41save_boot_params_ret:
Keerthyd31d4a22016-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
Heiko Schocher561142a2010-09-17 13:10:41 +020052 /*
Andre Przywarac4a4e2e2013-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
Heiko Schocher561142a2010-09-17 13:10:41 +020055 */
56 mrs r0, cpsr
Andre Przywarac4a4e2e2013-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
Heiko Schocher561142a2010-09-17 13:10:41 +020062 msr cpsr,r0
63
Aneesh Va8c68632011-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 Siamashka840fe952015-02-16 10:23:59 +020069#if !(defined(CONFIG_OMAP44XX) && defined(CONFIG_SPL_BUILD))
Peng Fan0f274f52015-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 Va8c68632011-11-21 23:34:00 +000072 bic r0, #CR_V @ V = 0
Peng Fan0f274f52015-01-29 18:03:39 +080073 mcr p15, 0, r0, c1, c0, 0 @ Write CP15 SCTLR Register
Aneesh Va8c68632011-11-21 23:34:00 +000074
Lokesh Vutla2a518052018-04-26 18:21:25 +053075#ifdef CONFIG_HAS_VBAR
Aneesh Va8c68632011-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 Vutla2a518052018-04-26 18:21:25 +053080#endif
Aneesh Va8c68632011-11-21 23:34:00 +000081
Heiko Schocher561142a2010-09-17 13:10:41 +020082 /* the mask ROM code should have PLL and others stable */
83#ifndef CONFIG_SKIP_LOWLEVEL_INIT
Simon Glass80433c92011-11-05 03:56:51 +000084 bl cpu_init_cp15
Simon Glassb5bd0982016-05-05 07:28:06 -060085#ifndef CONFIG_SKIP_LOWLEVEL_INIT_ONLY
Heiko Schocher561142a2010-09-17 13:10:41 +020086 bl cpu_init_crit
87#endif
Simon Glassb5bd0982016-05-05 07:28:06 -060088#endif
Heiko Schocher561142a2010-09-17 13:10:41 +020089
Albert ARIBAUDe05e5de2013-01-08 10:18:02 +000090 bl _main
Heiko Schocher561142a2010-09-17 13:10:41 +020091
92/*------------------------------------------------------------------------------*/
93
Albert ARIBAUDe05e5de2013-01-08 10:18:02 +000094ENTRY(c_runtime_cpu_setup)
Aneesh Vc2dd0d42011-06-16 23:30:49 +000095/*
96 * If I-cache is enabled invalidate it
97 */
98#ifndef CONFIG_SYS_ICACHE_OFF
99 mcr p15, 0, r0, c7, c5, 0 @ invalidate icache
100 mcr p15, 0, r0, c7, c10, 4 @ DSB
101 mcr p15, 0, r0, c7, c5, 4 @ ISB
102#endif
Tetsuyuki Kobayashif8b9d1d2012-06-25 02:40:57 +0000103
Albert ARIBAUDe05e5de2013-01-08 10:18:02 +0000104 bx lr
Heiko Schocher561142a2010-09-17 13:10:41 +0200105
Albert ARIBAUDe05e5de2013-01-08 10:18:02 +0000106ENDPROC(c_runtime_cpu_setup)
Heiko Schocherc3d3a542010-10-11 14:08:15 +0200107
Dirk Behme0b02b182008-12-14 09:47:13 +0100108/*************************************************************************
109 *
Tetsuyuki Kobayashi6f0dba82012-07-06 21:14:20 +0000110 * void save_boot_params(u32 r0, u32 r1, u32 r2, u32 r3)
111 * __attribute__((weak));
112 *
113 * Stack pointer is not yet initialized at this moment
114 * Don't save anything to stack even if compiled with -O0
115 *
116 *************************************************************************/
117ENTRY(save_boot_params)
Simon Glasse11c6c22015-02-07 10:47:28 -0700118 b save_boot_params_ret @ back to my caller
Tetsuyuki Kobayashi6f0dba82012-07-06 21:14:20 +0000119ENDPROC(save_boot_params)
120 .weak save_boot_params
121
Keerthyd31d4a22016-09-14 10:43:32 +0530122#ifdef CONFIG_ARMV7_LPAE
123ENTRY(switch_to_hypervisor)
124 b switch_to_hypervisor_ret
125ENDPROC(switch_to_hypervisor)
126 .weak switch_to_hypervisor
127#endif
128
Tetsuyuki Kobayashi6f0dba82012-07-06 21:14:20 +0000129/*************************************************************************
130 *
Simon Glass80433c92011-11-05 03:56:51 +0000131 * cpu_init_cp15
Dirk Behme0b02b182008-12-14 09:47:13 +0100132 *
Simon Glass80433c92011-11-05 03:56:51 +0000133 * Setup CP15 registers (cache, MMU, TLBs). The I-cache is turned on unless
134 * CONFIG_SYS_ICACHE_OFF is defined.
Dirk Behme0b02b182008-12-14 09:47:13 +0100135 *
136 *************************************************************************/
Aneesh V74236ac2012-03-08 07:20:18 +0000137ENTRY(cpu_init_cp15)
Dirk Behme0b02b182008-12-14 09:47:13 +0100138 /*
139 * Invalidate L1 I/D
140 */
141 mov r0, #0 @ set up for MCR
142 mcr p15, 0, r0, c8, c7, 0 @ invalidate TLBs
143 mcr p15, 0, r0, c7, c5, 0 @ invalidate icache
Aneesh Vc2dd0d42011-06-16 23:30:49 +0000144 mcr p15, 0, r0, c7, c5, 6 @ invalidate BP array
145 mcr p15, 0, r0, c7, c10, 4 @ DSB
146 mcr p15, 0, r0, c7, c5, 4 @ ISB
Dirk Behme0b02b182008-12-14 09:47:13 +0100147
148 /*
149 * disable MMU stuff and caches
150 */
151 mrc p15, 0, r0, c1, c0, 0
152 bic r0, r0, #0x00002000 @ clear bits 13 (--V-)
153 bic r0, r0, #0x00000007 @ clear bits 2:0 (-CAM)
154 orr r0, r0, #0x00000002 @ set bit 1 (--A-) Align
Aneesh Vc2dd0d42011-06-16 23:30:49 +0000155 orr r0, r0, #0x00000800 @ set bit 11 (Z---) BTB
156#ifdef CONFIG_SYS_ICACHE_OFF
157 bic r0, r0, #0x00001000 @ clear bit 12 (I) I-cache
158#else
159 orr r0, r0, #0x00001000 @ set bit 12 (I) I-cache
160#endif
Dirk Behme0b02b182008-12-14 09:47:13 +0100161 mcr p15, 0, r0, c1, c0, 0
Stephen Warren06785872013-02-26 12:28:27 +0000162
Stephen Warrenc5d47522013-03-04 13:29:40 +0000163#ifdef CONFIG_ARM_ERRATA_716044
164 mrc p15, 0, r0, c1, c0, 0 @ read system control register
165 orr r0, r0, #1 << 11 @ set bit #11
166 mcr p15, 0, r0, c1, c0, 0 @ write system control register
167#endif
168
Nitin Gargf71cbfe2014-04-02 08:55:01 -0500169#if (defined(CONFIG_ARM_ERRATA_742230) || defined(CONFIG_ARM_ERRATA_794072))
Stephen Warren06785872013-02-26 12:28:27 +0000170 mrc p15, 0, r0, c15, c0, 1 @ read diagnostic register
171 orr r0, r0, #1 << 4 @ set bit #4
172 mcr p15, 0, r0, c15, c0, 1 @ write diagnostic register
173#endif
174
175#ifdef CONFIG_ARM_ERRATA_743622
176 mrc p15, 0, r0, c15, c0, 1 @ read diagnostic register
177 orr r0, r0, #1 << 6 @ set bit #6
178 mcr p15, 0, r0, c15, c0, 1 @ write diagnostic register
179#endif
180
181#ifdef CONFIG_ARM_ERRATA_751472
182 mrc p15, 0, r0, c15, c0, 1 @ read diagnostic register
183 orr r0, r0, #1 << 11 @ set bit #11
184 mcr p15, 0, r0, c15, c0, 1 @ write diagnostic register
185#endif
Nitin Gargb7588e32014-04-02 08:55:02 -0500186#ifdef CONFIG_ARM_ERRATA_761320
187 mrc p15, 0, r0, c15, c0, 1 @ read diagnostic register
188 orr r0, r0, #1 << 21 @ set bit #21
189 mcr p15, 0, r0, c15, c0, 1 @ write diagnostic register
190#endif
Stephen Warren06785872013-02-26 12:28:27 +0000191
Peng Fan11d94312017-08-08 13:34:52 +0800192#ifdef CONFIG_ARM_ERRATA_845369
193 mrc p15, 0, r0, c15, c0, 1 @ read diagnostic register
194 orr r0, r0, #1 << 22 @ set bit #22
195 mcr p15, 0, r0, c15, c0, 1 @ write diagnostic register
196#endif
197
Nishanth Menonc616a0d2015-03-09 17:11:59 -0500198 mov r5, lr @ Store my Caller
199 mrc p15, 0, r1, c0, c0, 0 @ r1 has Read Main ID Register (MIDR)
200 mov r3, r1, lsr #20 @ get variant field
201 and r3, r3, #0xf @ r3 has CPU variant
202 and r4, r1, #0xf @ r4 has CPU revision
203 mov r2, r3, lsl #4 @ shift variant field for combined value
204 orr r2, r4, r2 @ r2 has combined CPU variant + revision
205
206#ifdef CONFIG_ARM_ERRATA_798870
207 cmp r2, #0x30 @ Applies to lower than R3p0
208 bge skip_errata_798870 @ skip if not affected rev
209 cmp r2, #0x20 @ Applies to including and above R2p0
210 blt skip_errata_798870 @ skip if not affected rev
211
212 mrc p15, 1, r0, c15, c0, 0 @ read l2 aux ctrl reg
213 orr r0, r0, #1 << 7 @ Enable hazard-detect timeout
214 push {r1-r5} @ Save the cpu info registers
215 bl v7_arch_cp15_set_l2aux_ctrl
216 isb @ Recommended ISB after l2actlr update
217 pop {r1-r5} @ Restore the cpu info - fall through
218skip_errata_798870:
219#endif
220
Nishanth Menona615d0b2015-07-27 16:26:05 -0500221#ifdef CONFIG_ARM_ERRATA_801819
222 cmp r2, #0x24 @ Applies to lt including R2p4
223 bgt skip_errata_801819 @ skip if not affected rev
224 cmp r2, #0x20 @ Applies to including and above R2p0
225 blt skip_errata_801819 @ skip if not affected rev
226 mrc p15, 0, r0, c0, c0, 6 @ pick up REVIDR reg
227 and r0, r0, #1 << 3 @ check REVIDR[3]
228 cmp r0, #1 << 3
229 beq skip_errata_801819 @ skip erratum if REVIDR[3] is set
230
231 mrc p15, 0, r0, c1, c0, 1 @ read auxilary control register
232 orr r0, r0, #3 << 27 @ Disables streaming. All write-allocate
233 @ lines allocate in the L1 or L2 cache.
234 orr r0, r0, #3 << 25 @ Disables streaming. All write-allocate
235 @ lines allocate in the L1 cache.
236 push {r1-r5} @ Save the cpu info registers
237 bl v7_arch_cp15_set_acr
238 pop {r1-r5} @ Restore the cpu info - fall through
239skip_errata_801819:
240#endif
241
Nishanth Menonb45c48a2015-03-09 17:12:00 -0500242#ifdef CONFIG_ARM_ERRATA_454179
Nishanth Menonb45c48a2015-03-09 17:12:00 -0500243 mrc p15, 0, r0, c1, c0, 1 @ Read ACR
Siarhei Siamashkad8526002017-08-13 05:25:20 +0300244
245 cmp r2, #0x21 @ Only on < r2p1
246 orrlt r0, r0, #(0x3 << 6) @ Set DBSM(BIT7) and IBE(BIT6) bits
247
Nishanth Menonb45c48a2015-03-09 17:12:00 -0500248 push {r1-r5} @ Save the cpu info registers
249 bl v7_arch_cp15_set_acr
250 pop {r1-r5} @ Restore the cpu info - fall through
Nishanth Menonb45c48a2015-03-09 17:12:00 -0500251#endif
252
Nishanth Menon5902f4c2015-03-09 17:12:01 -0500253#ifdef CONFIG_ARM_ERRATA_430973
Nishanth Menon5902f4c2015-03-09 17:12:01 -0500254 mrc p15, 0, r0, c1, c0, 1 @ Read ACR
Siarhei Siamashkad8526002017-08-13 05:25:20 +0300255
256 cmp r2, #0x21 @ Only on < r2p1
257 orrlt r0, r0, #(0x1 << 6) @ Set IBE bit
258
Nishanth Menon5902f4c2015-03-09 17:12:01 -0500259 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
Nishanth Menon5902f4c2015-03-09 17:12:01 -0500262#endif
263
Nishanth Menon9b4d65f2015-03-09 17:12:02 -0500264#ifdef CONFIG_ARM_ERRATA_621766
Nishanth Menon9b4d65f2015-03-09 17:12:02 -0500265 mrc p15, 0, r0, c1, c0, 1 @ Read ACR
Siarhei Siamashkad8526002017-08-13 05:25:20 +0300266
267 cmp r2, #0x21 @ Only on < r2p1
268 orrlt r0, r0, #(0x1 << 5) @ Set L1NEON bit
269
Nishanth Menon9b4d65f2015-03-09 17:12:02 -0500270 push {r1-r5} @ Save the cpu info registers
271 bl v7_arch_cp15_set_acr
272 pop {r1-r5} @ Restore the cpu info - fall through
Nishanth Menon9b4d65f2015-03-09 17:12:02 -0500273#endif
274
Siarhei Siamashka19a75b82017-03-06 03:16:53 +0200275#ifdef CONFIG_ARM_ERRATA_725233
Siarhei Siamashka19a75b82017-03-06 03:16:53 +0200276 mrc p15, 1, r0, c9, c0, 2 @ Read L2ACR
Siarhei Siamashkad8526002017-08-13 05:25:20 +0300277
278 cmp r2, #0x21 @ Only on < r2p1 (Cortex A8)
279 orrlt r0, r0, #(0x1 << 27) @ L2 PLD data forwarding disable
280
Siarhei Siamashka19a75b82017-03-06 03:16:53 +0200281 push {r1-r5} @ Save the cpu info registers
282 bl v7_arch_cp15_set_l2aux_ctrl
283 pop {r1-r5} @ Restore the cpu info - fall through
Siarhei Siamashka19a75b82017-03-06 03:16:53 +0200284#endif
285
Nisal Menuka87763502017-04-26 16:18:01 -0500286#ifdef CONFIG_ARM_ERRATA_852421
287 mrc p15, 0, r0, c15, c0, 1 @ read diagnostic register
288 orr r0, r0, #1 << 24 @ set bit #24
289 mcr p15, 0, r0, c15, c0, 1 @ write diagnostic register
290#endif
291
292#ifdef CONFIG_ARM_ERRATA_852423
293 mrc p15, 0, r0, c15, c0, 1 @ read diagnostic register
294 orr r0, r0, #1 << 12 @ set bit #12
295 mcr p15, 0, r0, c15, c0, 1 @ write diagnostic register
296#endif
297
Nishanth Menonc616a0d2015-03-09 17:11:59 -0500298 mov pc, r5 @ back to my caller
Aneesh V74236ac2012-03-08 07:20:18 +0000299ENDPROC(cpu_init_cp15)
Simon Glass80433c92011-11-05 03:56:51 +0000300
Simon Glassb5bd0982016-05-05 07:28:06 -0600301#if !defined(CONFIG_SKIP_LOWLEVEL_INIT) && \
302 !defined(CONFIG_SKIP_LOWLEVEL_INIT_ONLY)
Simon Glass80433c92011-11-05 03:56:51 +0000303/*************************************************************************
304 *
305 * CPU_init_critical registers
306 *
307 * setup important registers
308 * setup memory timing
309 *
310 *************************************************************************/
Aneesh V74236ac2012-03-08 07:20:18 +0000311ENTRY(cpu_init_crit)
Dirk Behme0b02b182008-12-14 09:47:13 +0100312 /*
313 * Jump to board specific initialization...
314 * The Mask ROM will have already initialized
315 * basic memory. Go here to bump up clock rate and handle
316 * wake up conditions.
317 */
Benoît Thébaudeau63ee53a2012-08-10 12:05:16 +0000318 b lowlevel_init @ go setup pll,mux,memory
Aneesh V74236ac2012-03-08 07:20:18 +0000319ENDPROC(cpu_init_crit)
Rob Herring22193542011-06-28 05:39:38 +0000320#endif