blob: 566cf668b71a91f1056cf1fce22b1c3912bd3144 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Stefan Roesec6bc1db2012-01-03 16:49:01 +01002/*
3 * armboot - Startup Code for ARM926EJS CPU-core
4 *
5 * Copyright (c) 2003 Texas Instruments
6 *
7 * ----- Adapted for OMAP1610 OMAP730 from ARM925t code ------
8 *
9 * Copyright (c) 2001 Marius Gröger <mag@sysgo.de>
10 * Copyright (c) 2002 Alex Züpke <azu@sysgo.de>
11 * Copyright (c) 2002 Gary Jennejohn <garyj@denx.de>
12 * Copyright (c) 2003 Richard Woodruff <r-woodruff2@ti.com>
13 * Copyright (c) 2003 Kshitij <kshitij@ti.com>
Stefan Roesec6bc1db2012-01-03 16:49:01 +010014 */
15
16
17#include <config.h>
18
Stefan Roesec6bc1db2012-01-03 16:49:01 +010019/*
20 *************************************************************************
21 *
22 * Startup Code (reset vector)
23 *
Miquel Raynaldf5b5812019-05-07 14:18:47 +020024 * The BootROM already initialized its own stack in the [0-0xb00] reserved
25 * range of the SRAM. The SPL (in _main) will update the stack pointer to
26 * its own SRAM area (right before the gd section).
Stefan Roesec6bc1db2012-01-03 16:49:01 +010027 *
28 *************************************************************************
29 */
30
Albert ARIBAUD9852cc62014-04-15 16:13:51 +020031 .globl reset
Stefan Roesec6bc1db2012-01-03 16:49:01 +010032
33reset:
Miquel Raynalbeefd492019-05-07 14:18:48 +020034 /*
35 * SPL has to return back to BootROM in a few cases (eg. Ethernet boot,
36 * UART boot, USB boot): save registers in BootROM's stack.
37 */
Stefan Roesec6bc1db2012-01-03 16:49:01 +010038 stmdb sp!, {r0-r12,r14}
39 bl cpu_init_crit
Stefan Roesec6bc1db2012-01-03 16:49:01 +010040 ldmia sp!, {r0-r12,pc}
41
42/*
43 *************************************************************************
44 *
45 * CPU_init_critical registers
46 *
47 * setup important registers
48 * setup memory timing
49 *
50 *************************************************************************
51 */
52cpu_init_crit:
53 /*
Miquel Raynalbeefd492019-05-07 14:18:48 +020054 * Flush v4 I/D caches
Stefan Roesec6bc1db2012-01-03 16:49:01 +010055 */
56 mov r0, #0
Miquel Raynalbeefd492019-05-07 14:18:48 +020057 mcr p15, 0, r0, c7, c7, 0 /* Flush v3/v4 cache */
58 mcr p15, 0, r0, c8, c7, 0 /* Flush v4 TLB */
Stefan Roesec6bc1db2012-01-03 16:49:01 +010059
60 /*
Miquel Raynalbeefd492019-05-07 14:18:48 +020061 * Enable instruction cache
Stefan Roesec6bc1db2012-01-03 16:49:01 +010062 */
63 mrc p15, 0, r0, c1, c0, 0
64 orr r0, r0, #0x00001000 /* set bit 12 (I) I-Cache */
65 mcr p15, 0, r0, c1, c0, 0
66
67 /*
68 * Go setup Memory and board specific bits prior to relocation.
69 */
70 stmdb sp!, {lr}
Stefan Roese7618ad02015-08-18 09:27:17 +020071 bl _main /* _main will call board_init_f */
Stefan Roesec6bc1db2012-01-03 16:49:01 +010072 ldmia sp!, {pc}