Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Stefan Roese | c6bc1db | 2012-01-03 16:49:01 +0100 | [diff] [blame] | 2 | /* |
| 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 Roese | c6bc1db | 2012-01-03 16:49:01 +0100 | [diff] [blame] | 14 | */ |
| 15 | |
| 16 | |
| 17 | #include <config.h> |
| 18 | |
Stefan Roese | c6bc1db | 2012-01-03 16:49:01 +0100 | [diff] [blame] | 19 | /* |
| 20 | ************************************************************************* |
| 21 | * |
| 22 | * Startup Code (reset vector) |
| 23 | * |
Miquel Raynal | df5b581 | 2019-05-07 14:18:47 +0200 | [diff] [blame] | 24 | * 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 Roese | c6bc1db | 2012-01-03 16:49:01 +0100 | [diff] [blame] | 27 | * |
| 28 | ************************************************************************* |
| 29 | */ |
| 30 | |
Albert ARIBAUD | 9852cc6 | 2014-04-15 16:13:51 +0200 | [diff] [blame] | 31 | .globl reset |
Miquel Raynal | f8c5c78 | 2019-05-07 14:18:52 +0200 | [diff] [blame] | 32 | .globl back_to_bootrom |
Stefan Roese | c6bc1db | 2012-01-03 16:49:01 +0100 | [diff] [blame] | 33 | |
| 34 | reset: |
Miquel Raynal | beefd49 | 2019-05-07 14:18:48 +0200 | [diff] [blame] | 35 | /* |
| 36 | * SPL has to return back to BootROM in a few cases (eg. Ethernet boot, |
Miquel Raynal | f8c5c78 | 2019-05-07 14:18:52 +0200 | [diff] [blame] | 37 | * UART boot, USB boot): save registers in BootROM's stack and then the |
| 38 | * BootROM's stack pointer in the SPL's data section. |
Miquel Raynal | beefd49 | 2019-05-07 14:18:48 +0200 | [diff] [blame] | 39 | */ |
Miquel Raynal | 787e5b9 | 2019-05-07 14:18:50 +0200 | [diff] [blame] | 40 | push {r0-r12,lr} |
Miquel Raynal | f8c5c78 | 2019-05-07 14:18:52 +0200 | [diff] [blame] | 41 | ldr r0, =bootrom_stash_sp |
| 42 | str sp, [r0] |
Stefan Roese | c6bc1db | 2012-01-03 16:49:01 +0100 | [diff] [blame] | 43 | |
Stefan Roese | c6bc1db | 2012-01-03 16:49:01 +0100 | [diff] [blame] | 44 | /* |
Miquel Raynal | beefd49 | 2019-05-07 14:18:48 +0200 | [diff] [blame] | 45 | * Flush v4 I/D caches |
Stefan Roese | c6bc1db | 2012-01-03 16:49:01 +0100 | [diff] [blame] | 46 | */ |
| 47 | mov r0, #0 |
Miquel Raynal | beefd49 | 2019-05-07 14:18:48 +0200 | [diff] [blame] | 48 | mcr p15, 0, r0, c7, c7, 0 /* Flush v3/v4 cache */ |
| 49 | mcr p15, 0, r0, c8, c7, 0 /* Flush v4 TLB */ |
Stefan Roese | c6bc1db | 2012-01-03 16:49:01 +0100 | [diff] [blame] | 50 | |
| 51 | /* |
Miquel Raynal | beefd49 | 2019-05-07 14:18:48 +0200 | [diff] [blame] | 52 | * Enable instruction cache |
Stefan Roese | c6bc1db | 2012-01-03 16:49:01 +0100 | [diff] [blame] | 53 | */ |
| 54 | mrc p15, 0, r0, c1, c0, 0 |
| 55 | orr r0, r0, #0x00001000 /* set bit 12 (I) I-Cache */ |
| 56 | mcr p15, 0, r0, c1, c0, 0 |
| 57 | |
| 58 | /* |
| 59 | * Go setup Memory and board specific bits prior to relocation. |
Miquel Raynal | 710d1c1 | 2019-05-07 14:18:53 +0200 | [diff] [blame] | 60 | * This call is not supposed to return. |
Stefan Roese | c6bc1db | 2012-01-03 16:49:01 +0100 | [diff] [blame] | 61 | */ |
Miquel Raynal | 710d1c1 | 2019-05-07 14:18:53 +0200 | [diff] [blame] | 62 | b _main /* _main will call board_init_f */ |
Miquel Raynal | 06ad1eb | 2019-05-07 14:18:51 +0200 | [diff] [blame] | 63 | |
Miquel Raynal | f8c5c78 | 2019-05-07 14:18:52 +0200 | [diff] [blame] | 64 | back_to_bootrom: |
Miquel Raynal | 06ad1eb | 2019-05-07 14:18:51 +0200 | [diff] [blame] | 65 | pop {r0-r12,pc} |