blob: 11367480ad63e6401a9ff5909bfda78619593f61 [file] [log] [blame]
Gabe Blackd40be112013-10-09 23:45:07 -07001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright 2013 Google Inc.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:
9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * 2. Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * 3. The name of the author may not be used to endorse or promote products
15 * derived from this software without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
18 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 * SUCH DAMAGE.
28 */
29
Julius Werner25a282d2014-01-13 13:24:30 -080030#include <arch/asm.h>
31
Julius Werner25a282d2014-01-13 13:24:30 -080032.arm
33ENTRY(maincpu_setup)
Gabe Blackd40be112013-10-09 23:45:07 -070034 /*
35 * Set the cpu to System mode with IRQ and FIQ disabled. Prefetch/Data
36 * aborts may happen early and crash before the abort handlers are
37 * installed, but at least the problem will show up near the code that
38 * causes it.
39 */
40 msr cpsr_cxf, #0xdf
41
Julius Werneredf6b572013-10-25 17:49:26 -070042 ldr sp, maincpu_stack_pointer
Gabe Blackd40be112013-10-09 23:45:07 -070043 eor lr, lr
Julius Werneredf6b572013-10-25 17:49:26 -070044 ldr r0, maincpu_entry_point
Gabe Blackd40be112013-10-09 23:45:07 -070045 bx r0
Julius Werner25a282d2014-01-13 13:24:30 -080046ENDPROC(maincpu_setup)
Julius Werner7c6e4892014-01-24 16:23:08 -080047
48 .align 2
49
50 .global maincpu_stack_pointer
51maincpu_stack_pointer:
52 .word 0
53
54 .global maincpu_entry_point
55maincpu_entry_point:
56 .word 0