blob: 3da711d4d500449866d2464e96f0edf9d1baf45f [file] [log] [blame]
wdenk12490652004-04-18 21:13:41 +00001/*
Michal Simek922ce202007-03-11 13:48:24 +01002 * (C) Copyright 2007 Michal Simek
wdenk12490652004-04-18 21:13:41 +00003 * (C) Copyright 2004 Atmark Techno, Inc.
4 *
Michal Simek922ce202007-03-11 13:48:24 +01005 * Michal SIMEK <monstr@monstr.eu>
wdenk12490652004-04-18 21:13:41 +00006 * Yasushi SHOJI <yashi@atmark-techno.com>
7 *
8 * See file CREDITS for list of people who contributed to this
9 * project.
10 *
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License as
13 * published by the Free Software Foundation; either version 2 of
14 * the License, or (at your option) any later version.
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
Michal Simek922ce202007-03-11 13:48:24 +010018 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
wdenk12490652004-04-18 21:13:41 +000019 * GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
24 * MA 02111-1307 USA
25 */
26
Wolfgang Denk0191e472010-10-26 14:34:52 +020027#include <asm-offsets.h>
wdenk12490652004-04-18 21:13:41 +000028#include <config.h>
29
30 .text
31 .global _start
32_start:
Michal Simek4a30db92011-07-21 10:47:21 +020033 /*
34 * reserve registers:
35 * r10: Stores little/big endian offset for vectors
36 * r2: Stores imm opcode
37 * r3: Stores brai opcode
38 */
39
Michal Simek922ce202007-03-11 13:48:24 +010040 mts rmsr, r0 /* disable cache */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020041 addi r1, r0, CONFIG_SYS_INIT_SP_OFFSET
Michal Simek1f0c40c2007-03-26 01:39:07 +020042 addi r1, r1, -4 /* Decrement SP to top of memory */
Michal Simekead124a2010-08-12 11:47:11 +020043
44 /* Find-out if u-boot is running on BIG/LITTLE endian platform
45 * There are some steps which is necessary to keep in mind:
46 * 1. Setup offset value to r6
47 * 2. Store word offset value to address 0x0
48 * 3. Load just byte from address 0x0
49 * 4a) LITTLE endian - r10 contains 0x2 because it is the smallest
50 * value that's why is on address 0x0
51 * 4b) BIG endian - r10 contains 0x0 because 0x2 offset is on addr 0x3
52 */
53 addik r6, r0, 0x2 /* BIG/LITTLE endian offset */
Michal Simekf9ec1722010-11-15 09:54:43 +000054 lwi r7, r0, 0x28
55 swi r6, r0, 0x28 /* used first unused MB vector */
56 lbui r10, r0, 0x28 /* used first unused MB vector */
57 swi r7, r0, 0x28
Michal Simekead124a2010-08-12 11:47:11 +020058
Michal Simek4a30db92011-07-21 10:47:21 +020059 /* add opcode instruction for 32bit jump - 2 instruction imm & brai */
60 addi r2, r0, 0xb0000000 /* hex b000 opcode imm */
61 addi r3, r0, 0xb8080000 /* hew b808 opcode brai */
wdenk12490652004-04-18 21:13:41 +000062
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020063#ifdef CONFIG_SYS_RESET_ADDRESS
Michal Simek922ce202007-03-11 13:48:24 +010064 /* reset address */
Michal Simek4a30db92011-07-21 10:47:21 +020065 swi r2, r0, 0x0 /* reset address - imm opcode */
66 swi r3, r0, 0x4 /* reset address - brai opcode */
67
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020068 addik r6, r0, CONFIG_SYS_RESET_ADDRESS
Michal Simek922ce202007-03-11 13:48:24 +010069 sw r6, r1, r0
Michal Simek8daf0c32011-08-30 15:22:24 +020070 lhu r7, r1, r10
71 rsubi r8, r10, 0x2
72 sh r7, r0, r8
73 rsubi r8, r10, 0x6
74 sh r6, r0, r8
Michal Simek922ce202007-03-11 13:48:24 +010075#endif
76
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020077#ifdef CONFIG_SYS_USR_EXCEP
Michal Simek922ce202007-03-11 13:48:24 +010078 /* user_vector_exception */
Michal Simek4a30db92011-07-21 10:47:21 +020079 swi r2, r0, 0x8 /* user vector exception - imm opcode */
80 swi r3, r0, 0xC /* user vector exception - brai opcode */
81
Michal Simek922ce202007-03-11 13:48:24 +010082 addik r6, r0, _exception_handler
83 sw r6, r1, r0
Michal Simekead124a2010-08-12 11:47:11 +020084 /*
85 * BIG ENDIAN memory map for user exception
86 * 0x8: 0xB000XXXX
87 * 0xC: 0xB808XXXX
88 *
89 * then it is necessary to count address for storing the most significant
Wolfgang Denk1136f692010-10-27 22:48:30 +020090 * 16bits from _exception_handler address and copy it to
Michal Simekead124a2010-08-12 11:47:11 +020091 * 0xa address. Big endian use offset in r10=0 that's why is it just
92 * 0xa address. The same is done for the least significant 16 bits
93 * for 0xe address.
94 *
95 * LITTLE ENDIAN memory map for user exception
96 * 0x8: 0xXXXX00B0
97 * 0xC: 0xXXXX08B8
98 *
99 * Offset is for little endian setup to 0x2. rsubi instruction decrease
100 * address value to ensure that points to proper place which is
101 * 0x8 for the most significant 16 bits and
102 * 0xC for the least significant 16 bits
103 */
104 lhu r7, r1, r10
105 rsubi r8, r10, 0xa
106 sh r7, r0, r8
107 rsubi r8, r10, 0xe
108 sh r6, r0, r8
Michal Simek922ce202007-03-11 13:48:24 +0100109#endif
110
Michal Simek922ce202007-03-11 13:48:24 +0100111 /* interrupt_handler */
Michal Simek4a30db92011-07-21 10:47:21 +0200112 swi r2, r0, 0x10 /* interrupt - imm opcode */
113 swi r3, r0, 0x14 /* interrupt - brai opcode */
114
Michal Simek922ce202007-03-11 13:48:24 +0100115 addik r6, r0, _interrupt_handler
116 sw r6, r1, r0
Michal Simekead124a2010-08-12 11:47:11 +0200117 lhu r7, r1, r10
118 rsubi r8, r10, 0x12
119 sh r7, r0, r8
120 rsubi r8, r10, 0x16
121 sh r6, r0, r8
wdenk12490652004-04-18 21:13:41 +0000122
Michal Simek922ce202007-03-11 13:48:24 +0100123 /* hardware exception */
Michal Simek4a30db92011-07-21 10:47:21 +0200124 swi r2, r0, 0x20 /* hardware exception - imm opcode */
125 swi r3, r0, 0x24 /* hardware exception - brai opcode */
126
Michal Simek922ce202007-03-11 13:48:24 +0100127 addik r6, r0, _hw_exception_handler
128 sw r6, r1, r0
Michal Simekead124a2010-08-12 11:47:11 +0200129 lhu r7, r1, r10
130 rsubi r8, r10, 0x22
131 sh r7, r0, r8
132 rsubi r8, r10, 0x26
133 sh r6, r0, r8
Michal Simek922ce202007-03-11 13:48:24 +0100134
Michal Simeke3aa3d52012-09-25 10:13:35 +0200135 /* Flush cache before enable cache */
136 addik r5, r0, 0
137 addik r6, r0, XILINX_DCACHE_BYTE_SIZE
138flush: bralid r15, flush_cache
139 nop
140
Michal Simek922ce202007-03-11 13:48:24 +0100141 /* enable instruction and data cache */
142 mfs r12, rmsr
143 ori r12, r12, 0xa0
144 mts rmsr, r12
145
Michal Simek1f0c40c2007-03-26 01:39:07 +0200146clear_bss:
147 /* clear BSS segments */
148 addi r5, r0, __bss_start
149 addi r4, r0, __bss_end
150 cmp r6, r5, r4
151 beqi r6, 3f
1522:
153 swi r0, r5, 0 /* write zero to loc */
154 addi r5, r5, 4 /* increment to next loc */
155 cmp r6, r5, r4 /* check if we have reach the end */
156 bnei r6, 2b
1573: /* jumping to board_init */
Michal Simek9cabb362012-07-04 13:12:37 +0200158 brai board_init_f
wdenk12490652004-04-18 21:13:41 +00001591: bri 1b
Michal Simek04ae75f2007-04-21 21:02:40 +0200160
161/*
162 * Read 16bit little endian
163 */
164 .text
165 .global in16
166 .ent in16
167 .align 2
168in16: lhu r3, r0, r5
169 bslli r4, r3, 8
170 bsrli r3, r3, 8
171 andi r4, r4, 0xffff
172 or r3, r3, r4
173 rtsd r15, 8
174 sext16 r3, r3
175 .end in16
176
177/*
178 * Write 16bit little endian
179 * first parameter(r5) - address, second(r6) - short value
180 */
181 .text
182 .global out16
183 .ent out16
184 .align 2
185out16: bslli r3, r6, 8
186 bsrli r6, r6, 8
187 andi r3, r3, 0xffff
188 or r3, r3, r6
189 sh r3, r0, r5
190 rtsd r15, 8
191 or r0, r0, r0
192 .end out16