blob: b18094447b0601e8a7ff539c0b286c693c66d5da [file] [log] [blame]
Dirk Behme0b02b182008-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 Zundel792a09e2009-05-13 10:54:10 +02008 * Copyright (c) 2002 Gary Jennejohn <garyj@denx.de>
Dirk Behme0b02b182008-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 Denk3765b3e2013-10-07 13:07:26 +020013 * SPDX-License-Identifier: GPL-2.0+
Dirk Behme0b02b182008-12-14 09:47:13 +010014 */
15
Wolfgang Denk25ddd1f2010-10-26 14:34:52 +020016#include <asm-offsets.h>
Dirk Behme0b02b182008-12-14 09:47:13 +010017#include <config.h>
Aneesh Va8c68632011-11-21 23:34:00 +000018#include <asm/system.h>
Aneesh V74236ac2012-03-08 07:20:18 +000019#include <linux/linkage.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
Heiko Schocher561142a2010-09-17 13:10:41 +020033
34reset:
Simon Glasse11c6c22015-02-07 10:47:28 -070035 /* Allow the board to save important registers */
36 b save_boot_params
37save_boot_params_ret:
Heiko Schocher561142a2010-09-17 13:10:41 +020038 /*
Andre Przywarac4a4e2e2013-04-02 05:43:36 +000039 * disable interrupts (FIQ and IRQ), also set the cpu to SVC32 mode,
40 * except if in HYP mode already
Heiko Schocher561142a2010-09-17 13:10:41 +020041 */
42 mrs r0, cpsr
Andre Przywarac4a4e2e2013-04-02 05:43:36 +000043 and r1, r0, #0x1f @ mask mode bits
44 teq r1, #0x1a @ test for HYP mode
45 bicne r0, r0, #0x1f @ clear all mode bits
46 orrne r0, r0, #0x13 @ set SVC mode
47 orr r0, r0, #0xc0 @ disable FIQ and IRQ
Heiko Schocher561142a2010-09-17 13:10:41 +020048 msr cpsr,r0
49
Aneesh Va8c68632011-11-21 23:34:00 +000050/*
51 * Setup vector:
52 * (OMAP4 spl TEXT_BASE is not 32 byte aligned.
53 * Continue to use ROM code vector only in OMAP4 spl)
54 */
Siarhei Siamashka840fe952015-02-16 10:23:59 +020055#if !(defined(CONFIG_OMAP44XX) && defined(CONFIG_SPL_BUILD))
Peng Fan0f274f52015-01-29 18:03:39 +080056 /* Set V=0 in CP15 SCTLR register - for VBAR to point to vector */
57 mrc p15, 0, r0, c1, c0, 0 @ Read CP15 SCTLR Register
Aneesh Va8c68632011-11-21 23:34:00 +000058 bic r0, #CR_V @ V = 0
Peng Fan0f274f52015-01-29 18:03:39 +080059 mcr p15, 0, r0, c1, c0, 0 @ Write CP15 SCTLR Register
Aneesh Va8c68632011-11-21 23:34:00 +000060
61 /* Set vector address in CP15 VBAR register */
62 ldr r0, =_start
63 mcr p15, 0, r0, c12, c0, 0 @Set VBAR
64#endif
65
Heiko Schocher561142a2010-09-17 13:10:41 +020066 /* the mask ROM code should have PLL and others stable */
67#ifndef CONFIG_SKIP_LOWLEVEL_INIT
Simon Glass80433c92011-11-05 03:56:51 +000068 bl cpu_init_cp15
Heiko Schocher561142a2010-09-17 13:10:41 +020069 bl cpu_init_crit
70#endif
71
Albert ARIBAUDe05e5de2013-01-08 10:18:02 +000072 bl _main
Heiko Schocher561142a2010-09-17 13:10:41 +020073
74/*------------------------------------------------------------------------------*/
75
Albert ARIBAUDe05e5de2013-01-08 10:18:02 +000076ENTRY(c_runtime_cpu_setup)
Aneesh Vc2dd0d42011-06-16 23:30:49 +000077/*
78 * If I-cache is enabled invalidate it
79 */
80#ifndef CONFIG_SYS_ICACHE_OFF
81 mcr p15, 0, r0, c7, c5, 0 @ invalidate icache
82 mcr p15, 0, r0, c7, c10, 4 @ DSB
83 mcr p15, 0, r0, c7, c5, 4 @ ISB
84#endif
Tetsuyuki Kobayashif8b9d1d2012-06-25 02:40:57 +000085
Albert ARIBAUDe05e5de2013-01-08 10:18:02 +000086 bx lr
Heiko Schocher561142a2010-09-17 13:10:41 +020087
Albert ARIBAUDe05e5de2013-01-08 10:18:02 +000088ENDPROC(c_runtime_cpu_setup)
Heiko Schocherc3d3a542010-10-11 14:08:15 +020089
Dirk Behme0b02b182008-12-14 09:47:13 +010090/*************************************************************************
91 *
Tetsuyuki Kobayashi6f0dba82012-07-06 21:14:20 +000092 * void save_boot_params(u32 r0, u32 r1, u32 r2, u32 r3)
93 * __attribute__((weak));
94 *
95 * Stack pointer is not yet initialized at this moment
96 * Don't save anything to stack even if compiled with -O0
97 *
98 *************************************************************************/
99ENTRY(save_boot_params)
Simon Glasse11c6c22015-02-07 10:47:28 -0700100 b save_boot_params_ret @ back to my caller
Tetsuyuki Kobayashi6f0dba82012-07-06 21:14:20 +0000101ENDPROC(save_boot_params)
102 .weak save_boot_params
103
104/*************************************************************************
105 *
Simon Glass80433c92011-11-05 03:56:51 +0000106 * cpu_init_cp15
Dirk Behme0b02b182008-12-14 09:47:13 +0100107 *
Simon Glass80433c92011-11-05 03:56:51 +0000108 * Setup CP15 registers (cache, MMU, TLBs). The I-cache is turned on unless
109 * CONFIG_SYS_ICACHE_OFF is defined.
Dirk Behme0b02b182008-12-14 09:47:13 +0100110 *
111 *************************************************************************/
Aneesh V74236ac2012-03-08 07:20:18 +0000112ENTRY(cpu_init_cp15)
Dirk Behme0b02b182008-12-14 09:47:13 +0100113 /*
114 * Invalidate L1 I/D
115 */
116 mov r0, #0 @ set up for MCR
117 mcr p15, 0, r0, c8, c7, 0 @ invalidate TLBs
118 mcr p15, 0, r0, c7, c5, 0 @ invalidate icache
Aneesh Vc2dd0d42011-06-16 23:30:49 +0000119 mcr p15, 0, r0, c7, c5, 6 @ invalidate BP array
120 mcr p15, 0, r0, c7, c10, 4 @ DSB
121 mcr p15, 0, r0, c7, c5, 4 @ ISB
Dirk Behme0b02b182008-12-14 09:47:13 +0100122
123 /*
124 * disable MMU stuff and caches
125 */
126 mrc p15, 0, r0, c1, c0, 0
127 bic r0, r0, #0x00002000 @ clear bits 13 (--V-)
128 bic r0, r0, #0x00000007 @ clear bits 2:0 (-CAM)
129 orr r0, r0, #0x00000002 @ set bit 1 (--A-) Align
Aneesh Vc2dd0d42011-06-16 23:30:49 +0000130 orr r0, r0, #0x00000800 @ set bit 11 (Z---) BTB
131#ifdef CONFIG_SYS_ICACHE_OFF
132 bic r0, r0, #0x00001000 @ clear bit 12 (I) I-cache
133#else
134 orr r0, r0, #0x00001000 @ set bit 12 (I) I-cache
135#endif
Dirk Behme0b02b182008-12-14 09:47:13 +0100136 mcr p15, 0, r0, c1, c0, 0
Stephen Warren06785872013-02-26 12:28:27 +0000137
Stephen Warrenc5d47522013-03-04 13:29:40 +0000138#ifdef CONFIG_ARM_ERRATA_716044
139 mrc p15, 0, r0, c1, c0, 0 @ read system control register
140 orr r0, r0, #1 << 11 @ set bit #11
141 mcr p15, 0, r0, c1, c0, 0 @ write system control register
142#endif
143
Nitin Gargf71cbfe2014-04-02 08:55:01 -0500144#if (defined(CONFIG_ARM_ERRATA_742230) || defined(CONFIG_ARM_ERRATA_794072))
Stephen Warren06785872013-02-26 12:28:27 +0000145 mrc p15, 0, r0, c15, c0, 1 @ read diagnostic register
146 orr r0, r0, #1 << 4 @ set bit #4
147 mcr p15, 0, r0, c15, c0, 1 @ write diagnostic register
148#endif
149
150#ifdef CONFIG_ARM_ERRATA_743622
151 mrc p15, 0, r0, c15, c0, 1 @ read diagnostic register
152 orr r0, r0, #1 << 6 @ set bit #6
153 mcr p15, 0, r0, c15, c0, 1 @ write diagnostic register
154#endif
155
156#ifdef CONFIG_ARM_ERRATA_751472
157 mrc p15, 0, r0, c15, c0, 1 @ read diagnostic register
158 orr r0, r0, #1 << 11 @ set bit #11
159 mcr p15, 0, r0, c15, c0, 1 @ write diagnostic register
160#endif
Nitin Gargb7588e32014-04-02 08:55:02 -0500161#ifdef CONFIG_ARM_ERRATA_761320
162 mrc p15, 0, r0, c15, c0, 1 @ read diagnostic register
163 orr r0, r0, #1 << 21 @ set bit #21
164 mcr p15, 0, r0, c15, c0, 1 @ write diagnostic register
165#endif
Stephen Warren06785872013-02-26 12:28:27 +0000166
Nishanth Menonc616a0d2015-03-09 17:11:59 -0500167 mov r5, lr @ Store my Caller
168 mrc p15, 0, r1, c0, c0, 0 @ r1 has Read Main ID Register (MIDR)
169 mov r3, r1, lsr #20 @ get variant field
170 and r3, r3, #0xf @ r3 has CPU variant
171 and r4, r1, #0xf @ r4 has CPU revision
172 mov r2, r3, lsl #4 @ shift variant field for combined value
173 orr r2, r4, r2 @ r2 has combined CPU variant + revision
174
175#ifdef CONFIG_ARM_ERRATA_798870
176 cmp r2, #0x30 @ Applies to lower than R3p0
177 bge skip_errata_798870 @ skip if not affected rev
178 cmp r2, #0x20 @ Applies to including and above R2p0
179 blt skip_errata_798870 @ skip if not affected rev
180
181 mrc p15, 1, r0, c15, c0, 0 @ read l2 aux ctrl reg
182 orr r0, r0, #1 << 7 @ Enable hazard-detect timeout
183 push {r1-r5} @ Save the cpu info registers
184 bl v7_arch_cp15_set_l2aux_ctrl
185 isb @ Recommended ISB after l2actlr update
186 pop {r1-r5} @ Restore the cpu info - fall through
187skip_errata_798870:
188#endif
189
Nishanth Menona615d0b2015-07-27 16:26:05 -0500190#ifdef CONFIG_ARM_ERRATA_801819
191 cmp r2, #0x24 @ Applies to lt including R2p4
192 bgt skip_errata_801819 @ skip if not affected rev
193 cmp r2, #0x20 @ Applies to including and above R2p0
194 blt skip_errata_801819 @ skip if not affected rev
195 mrc p15, 0, r0, c0, c0, 6 @ pick up REVIDR reg
196 and r0, r0, #1 << 3 @ check REVIDR[3]
197 cmp r0, #1 << 3
198 beq skip_errata_801819 @ skip erratum if REVIDR[3] is set
199
200 mrc p15, 0, r0, c1, c0, 1 @ read auxilary control register
201 orr r0, r0, #3 << 27 @ Disables streaming. All write-allocate
202 @ lines allocate in the L1 or L2 cache.
203 orr r0, r0, #3 << 25 @ Disables streaming. All write-allocate
204 @ lines allocate in the L1 cache.
205 push {r1-r5} @ Save the cpu info registers
206 bl v7_arch_cp15_set_acr
207 pop {r1-r5} @ Restore the cpu info - fall through
208skip_errata_801819:
209#endif
210
Nishanth Menonb45c48a2015-03-09 17:12:00 -0500211#ifdef CONFIG_ARM_ERRATA_454179
212 cmp r2, #0x21 @ Only on < r2p1
213 bge skip_errata_454179
214
215 mrc p15, 0, r0, c1, c0, 1 @ Read ACR
216 orr r0, r0, #(0x3 << 6) @ Set DBSM(BIT7) and IBE(BIT6) bits
217 push {r1-r5} @ Save the cpu info registers
218 bl v7_arch_cp15_set_acr
219 pop {r1-r5} @ Restore the cpu info - fall through
220
221skip_errata_454179:
222#endif
223
Nishanth Menon5902f4c2015-03-09 17:12:01 -0500224#ifdef CONFIG_ARM_ERRATA_430973
225 cmp r2, #0x21 @ Only on < r2p1
226 bge skip_errata_430973
227
228 mrc p15, 0, r0, c1, c0, 1 @ Read ACR
229 orr r0, r0, #(0x1 << 6) @ Set IBE bit
230 push {r1-r5} @ Save the cpu info registers
231 bl v7_arch_cp15_set_acr
232 pop {r1-r5} @ Restore the cpu info - fall through
233
234skip_errata_430973:
235#endif
236
Nishanth Menon9b4d65f2015-03-09 17:12:02 -0500237#ifdef CONFIG_ARM_ERRATA_621766
238 cmp r2, #0x21 @ Only on < r2p1
239 bge skip_errata_621766
240
241 mrc p15, 0, r0, c1, c0, 1 @ Read ACR
242 orr r0, r0, #(0x1 << 5) @ Set L1NEON bit
243 push {r1-r5} @ Save the cpu info registers
244 bl v7_arch_cp15_set_acr
245 pop {r1-r5} @ Restore the cpu info - fall through
246
247skip_errata_621766:
248#endif
249
Nishanth Menonc616a0d2015-03-09 17:11:59 -0500250 mov pc, r5 @ back to my caller
Aneesh V74236ac2012-03-08 07:20:18 +0000251ENDPROC(cpu_init_cp15)
Simon Glass80433c92011-11-05 03:56:51 +0000252
253#ifndef CONFIG_SKIP_LOWLEVEL_INIT
254/*************************************************************************
255 *
256 * CPU_init_critical registers
257 *
258 * setup important registers
259 * setup memory timing
260 *
261 *************************************************************************/
Aneesh V74236ac2012-03-08 07:20:18 +0000262ENTRY(cpu_init_crit)
Dirk Behme0b02b182008-12-14 09:47:13 +0100263 /*
264 * Jump to board specific initialization...
265 * The Mask ROM will have already initialized
266 * basic memory. Go here to bump up clock rate and handle
267 * wake up conditions.
268 */
Benoît Thébaudeau63ee53a2012-08-10 12:05:16 +0000269 b lowlevel_init @ go setup pll,mux,memory
Aneesh V74236ac2012-03-08 07:20:18 +0000270ENDPROC(cpu_init_crit)
Rob Herring22193542011-06-28 05:39:38 +0000271#endif