blob: 1757bbfa94b9df4950bcf826bc66b22a243ad9da [file] [log] [blame]
wdenk507bbe32004-04-18 21:13:41 +00001/*
Michal Simekcfc67112007-03-11 13:48:24 +01002 * (C) Copyright 2007 Michal Simek
wdenk507bbe32004-04-18 21:13:41 +00003 * (C) Copyright 2004 Atmark Techno, Inc.
4 *
Michal Simekcfc67112007-03-11 13:48:24 +01005 * Michal SIMEK <monstr@monstr.eu>
wdenk507bbe32004-04-18 21:13:41 +00006 * Yasushi SHOJI <yashi@atmark-techno.com>
7 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02008 * SPDX-License-Identifier: GPL-2.0+
wdenk507bbe32004-04-18 21:13:41 +00009 */
10
Wolfgang Denk25ddd1f2010-10-26 14:34:52 +020011#include <asm-offsets.h>
wdenk507bbe32004-04-18 21:13:41 +000012#include <config.h>
13
14 .text
15 .global _start
16_start:
Michal Simek86c1b2a2011-07-21 10:47:21 +020017 /*
18 * reserve registers:
19 * r10: Stores little/big endian offset for vectors
20 * r2: Stores imm opcode
21 * r3: Stores brai opcode
22 */
23
Michal Simekcfc67112007-03-11 13:48:24 +010024 mts rmsr, r0 /* disable cache */
Michal Simek9d242742014-01-21 07:30:37 +010025
26#if defined(CONFIG_SPL_BUILD)
27 addi r1, r0, CONFIG_SPL_STACK_ADDR
28 addi r1, r1, -4 /* Decrement SP to top of memory */
29#else
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020030 addi r1, r0, CONFIG_SYS_INIT_SP_OFFSET
Michal Simek17980492007-03-26 01:39:07 +020031 addi r1, r1, -4 /* Decrement SP to top of memory */
Michal Simekb98cba02010-08-12 11:47:11 +020032
33 /* Find-out if u-boot is running on BIG/LITTLE endian platform
34 * There are some steps which is necessary to keep in mind:
35 * 1. Setup offset value to r6
36 * 2. Store word offset value to address 0x0
37 * 3. Load just byte from address 0x0
38 * 4a) LITTLE endian - r10 contains 0x2 because it is the smallest
39 * value that's why is on address 0x0
40 * 4b) BIG endian - r10 contains 0x0 because 0x2 offset is on addr 0x3
41 */
42 addik r6, r0, 0x2 /* BIG/LITTLE endian offset */
Michal Simekf3090fc2010-11-15 09:54:43 +000043 lwi r7, r0, 0x28
44 swi r6, r0, 0x28 /* used first unused MB vector */
45 lbui r10, r0, 0x28 /* used first unused MB vector */
46 swi r7, r0, 0x28
Michal Simekb98cba02010-08-12 11:47:11 +020047
Michal Simek86c1b2a2011-07-21 10:47:21 +020048 /* add opcode instruction for 32bit jump - 2 instruction imm & brai */
49 addi r2, r0, 0xb0000000 /* hex b000 opcode imm */
50 addi r3, r0, 0xb8080000 /* hew b808 opcode brai */
wdenk507bbe32004-04-18 21:13:41 +000051
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020052#ifdef CONFIG_SYS_RESET_ADDRESS
Michal Simekcfc67112007-03-11 13:48:24 +010053 /* reset address */
Michal Simek86c1b2a2011-07-21 10:47:21 +020054 swi r2, r0, 0x0 /* reset address - imm opcode */
55 swi r3, r0, 0x4 /* reset address - brai opcode */
56
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020057 addik r6, r0, CONFIG_SYS_RESET_ADDRESS
Michal Simekcfc67112007-03-11 13:48:24 +010058 sw r6, r1, r0
Michal Simek5562bcc2011-08-30 15:22:24 +020059 lhu r7, r1, r10
60 rsubi r8, r10, 0x2
61 sh r7, r0, r8
62 rsubi r8, r10, 0x6
63 sh r6, r0, r8
Michal Simekcfc67112007-03-11 13:48:24 +010064#endif
65
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020066#ifdef CONFIG_SYS_USR_EXCEP
Michal Simekcfc67112007-03-11 13:48:24 +010067 /* user_vector_exception */
Michal Simek86c1b2a2011-07-21 10:47:21 +020068 swi r2, r0, 0x8 /* user vector exception - imm opcode */
69 swi r3, r0, 0xC /* user vector exception - brai opcode */
70
Michal Simekcfc67112007-03-11 13:48:24 +010071 addik r6, r0, _exception_handler
72 sw r6, r1, r0
Michal Simekb98cba02010-08-12 11:47:11 +020073 /*
74 * BIG ENDIAN memory map for user exception
75 * 0x8: 0xB000XXXX
76 * 0xC: 0xB808XXXX
77 *
78 * then it is necessary to count address for storing the most significant
Wolfgang Denk071bc922010-10-27 22:48:30 +020079 * 16bits from _exception_handler address and copy it to
Michal Simekb98cba02010-08-12 11:47:11 +020080 * 0xa address. Big endian use offset in r10=0 that's why is it just
81 * 0xa address. The same is done for the least significant 16 bits
82 * for 0xe address.
83 *
84 * LITTLE ENDIAN memory map for user exception
85 * 0x8: 0xXXXX00B0
86 * 0xC: 0xXXXX08B8
87 *
88 * Offset is for little endian setup to 0x2. rsubi instruction decrease
89 * address value to ensure that points to proper place which is
90 * 0x8 for the most significant 16 bits and
91 * 0xC for the least significant 16 bits
92 */
93 lhu r7, r1, r10
94 rsubi r8, r10, 0xa
95 sh r7, r0, r8
96 rsubi r8, r10, 0xe
97 sh r6, r0, r8
Michal Simekcfc67112007-03-11 13:48:24 +010098#endif
99
Michal Simekcfc67112007-03-11 13:48:24 +0100100 /* interrupt_handler */
Michal Simek86c1b2a2011-07-21 10:47:21 +0200101 swi r2, r0, 0x10 /* interrupt - imm opcode */
102 swi r3, r0, 0x14 /* interrupt - brai opcode */
103
Michal Simekcfc67112007-03-11 13:48:24 +0100104 addik r6, r0, _interrupt_handler
105 sw r6, r1, r0
Michal Simekb98cba02010-08-12 11:47:11 +0200106 lhu r7, r1, r10
107 rsubi r8, r10, 0x12
108 sh r7, r0, r8
109 rsubi r8, r10, 0x16
110 sh r6, r0, r8
Michal Simekcfc67112007-03-11 13:48:24 +0100111
112 /* hardware exception */
Michal Simek86c1b2a2011-07-21 10:47:21 +0200113 swi r2, r0, 0x20 /* hardware exception - imm opcode */
114 swi r3, r0, 0x24 /* hardware exception - brai opcode */
115
Michal Simekcfc67112007-03-11 13:48:24 +0100116 addik r6, r0, _hw_exception_handler
117 sw r6, r1, r0
Michal Simekb98cba02010-08-12 11:47:11 +0200118 lhu r7, r1, r10
119 rsubi r8, r10, 0x22
120 sh r7, r0, r8
121 rsubi r8, r10, 0x26
122 sh r6, r0, r8
Michal Simek9d242742014-01-21 07:30:37 +0100123#endif /* BUILD_SPL */
Michal Simekcfc67112007-03-11 13:48:24 +0100124
Michal Simek58118302012-09-25 10:13:35 +0200125 /* Flush cache before enable cache */
126 addik r5, r0, 0
127 addik r6, r0, XILINX_DCACHE_BYTE_SIZE
128flush: bralid r15, flush_cache
129 nop
130
Michal Simekcfc67112007-03-11 13:48:24 +0100131 /* enable instruction and data cache */
132 mfs r12, rmsr
133 ori r12, r12, 0xa0
134 mts rmsr, r12
135
Michal Simek17980492007-03-26 01:39:07 +0200136clear_bss:
137 /* clear BSS segments */
138 addi r5, r0, __bss_start
139 addi r4, r0, __bss_end
140 cmp r6, r5, r4
141 beqi r6, 3f
1422:
143 swi r0, r5, 0 /* write zero to loc */
144 addi r5, r5, 4 /* increment to next loc */
145 cmp r6, r5, r4 /* check if we have reach the end */
146 bnei r6, 2b
1473: /* jumping to board_init */
Michal Simek9d242742014-01-21 07:30:37 +0100148#ifndef CONFIG_SPL_BUILD
Michal Simek2380b8f2012-07-04 13:12:37 +0200149 brai board_init_f
Michal Simek9d242742014-01-21 07:30:37 +0100150#else
151 brai board_init_r
152#endif
wdenk507bbe32004-04-18 21:13:41 +00001531: bri 1b
Michal Simek06436312007-04-21 21:02:40 +0200154
Michal Simek9d242742014-01-21 07:30:37 +0100155#ifndef CONFIG_SPL_BUILD
Michal Simek06436312007-04-21 21:02:40 +0200156/*
157 * Read 16bit little endian
158 */
159 .text
160 .global in16
161 .ent in16
162 .align 2
163in16: lhu r3, r0, r5
164 bslli r4, r3, 8
165 bsrli r3, r3, 8
166 andi r4, r4, 0xffff
167 or r3, r3, r4
168 rtsd r15, 8
169 sext16 r3, r3
170 .end in16
171
172/*
173 * Write 16bit little endian
174 * first parameter(r5) - address, second(r6) - short value
175 */
176 .text
177 .global out16
178 .ent out16
179 .align 2
180out16: bslli r3, r6, 8
181 bsrli r6, r6, 8
182 andi r3, r3, 0xffff
183 or r3, r3, r6
184 sh r3, r0, r5
185 rtsd r15, 8
186 or r0, r0, r0
187 .end out16
Michal Simek9d242742014-01-21 07:30:37 +0100188#endif