blob: e0e3470a181ab1d6533eb4b891f0c46ffd9c4ed4 [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 *
Wolfgang Denkd79de1d2013-07-08 09:37:19 +02008 * SPDX-License-Identifier: GPL-2.0+
wdenk12490652004-04-18 21:13:41 +00009 */
10
Wolfgang Denk0191e472010-10-26 14:34:52 +020011#include <asm-offsets.h>
wdenk12490652004-04-18 21:13:41 +000012#include <config.h>
13
14 .text
15 .global _start
16_start:
Michal Simek4a30db92011-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 Simek922ce202007-03-11 13:48:24 +010024 mts rmsr, r0 /* disable cache */
Michal Simek26acb3e2014-01-21 07:30:37 +010025
Michal Simeka5e9d6e2014-11-04 13:30:14 +010026 addi r8, r0, __end
27 mts rslr, r8
Michal Simek26acb3e2014-01-21 07:30:37 +010028#if defined(CONFIG_SPL_BUILD)
29 addi r1, r0, CONFIG_SPL_STACK_ADDR
Michal Simeka5e9d6e2014-11-04 13:30:14 +010030 mts rshr, r1
Michal Simek26acb3e2014-01-21 07:30:37 +010031 addi r1, r1, -4 /* Decrement SP to top of memory */
32#else
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020033 addi r1, r0, CONFIG_SYS_INIT_SP_OFFSET
Michal Simeka5e9d6e2014-11-04 13:30:14 +010034 mts rshr, r1
Michal Simek1f0c40c2007-03-26 01:39:07 +020035 addi r1, r1, -4 /* Decrement SP to top of memory */
Michal Simekead124a2010-08-12 11:47:11 +020036
37 /* Find-out if u-boot is running on BIG/LITTLE endian platform
38 * There are some steps which is necessary to keep in mind:
39 * 1. Setup offset value to r6
40 * 2. Store word offset value to address 0x0
41 * 3. Load just byte from address 0x0
42 * 4a) LITTLE endian - r10 contains 0x2 because it is the smallest
43 * value that's why is on address 0x0
44 * 4b) BIG endian - r10 contains 0x0 because 0x2 offset is on addr 0x3
45 */
46 addik r6, r0, 0x2 /* BIG/LITTLE endian offset */
Michal Simekf9ec1722010-11-15 09:54:43 +000047 lwi r7, r0, 0x28
48 swi r6, r0, 0x28 /* used first unused MB vector */
49 lbui r10, r0, 0x28 /* used first unused MB vector */
50 swi r7, r0, 0x28
Michal Simekead124a2010-08-12 11:47:11 +020051
Michal Simek4a30db92011-07-21 10:47:21 +020052 /* add opcode instruction for 32bit jump - 2 instruction imm & brai */
53 addi r2, r0, 0xb0000000 /* hex b000 opcode imm */
54 addi r3, r0, 0xb8080000 /* hew b808 opcode brai */
wdenk12490652004-04-18 21:13:41 +000055
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020056#ifdef CONFIG_SYS_RESET_ADDRESS
Michal Simek922ce202007-03-11 13:48:24 +010057 /* reset address */
Michal Simek4a30db92011-07-21 10:47:21 +020058 swi r2, r0, 0x0 /* reset address - imm opcode */
59 swi r3, r0, 0x4 /* reset address - brai opcode */
60
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020061 addik r6, r0, CONFIG_SYS_RESET_ADDRESS
Michal Simek922ce202007-03-11 13:48:24 +010062 sw r6, r1, r0
Michal Simek8daf0c32011-08-30 15:22:24 +020063 lhu r7, r1, r10
64 rsubi r8, r10, 0x2
65 sh r7, r0, r8
66 rsubi r8, r10, 0x6
67 sh r6, r0, r8
Michal Simek922ce202007-03-11 13:48:24 +010068#endif
69
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020070#ifdef CONFIG_SYS_USR_EXCEP
Michal Simek922ce202007-03-11 13:48:24 +010071 /* user_vector_exception */
Michal Simek4a30db92011-07-21 10:47:21 +020072 swi r2, r0, 0x8 /* user vector exception - imm opcode */
73 swi r3, r0, 0xC /* user vector exception - brai opcode */
74
Michal Simek922ce202007-03-11 13:48:24 +010075 addik r6, r0, _exception_handler
76 sw r6, r1, r0
Michal Simekead124a2010-08-12 11:47:11 +020077 /*
78 * BIG ENDIAN memory map for user exception
79 * 0x8: 0xB000XXXX
80 * 0xC: 0xB808XXXX
81 *
82 * then it is necessary to count address for storing the most significant
Wolfgang Denk1136f692010-10-27 22:48:30 +020083 * 16bits from _exception_handler address and copy it to
Michal Simekead124a2010-08-12 11:47:11 +020084 * 0xa address. Big endian use offset in r10=0 that's why is it just
85 * 0xa address. The same is done for the least significant 16 bits
86 * for 0xe address.
87 *
88 * LITTLE ENDIAN memory map for user exception
89 * 0x8: 0xXXXX00B0
90 * 0xC: 0xXXXX08B8
91 *
92 * Offset is for little endian setup to 0x2. rsubi instruction decrease
93 * address value to ensure that points to proper place which is
94 * 0x8 for the most significant 16 bits and
95 * 0xC for the least significant 16 bits
96 */
97 lhu r7, r1, r10
98 rsubi r8, r10, 0xa
99 sh r7, r0, r8
100 rsubi r8, r10, 0xe
101 sh r6, r0, r8
Michal Simek922ce202007-03-11 13:48:24 +0100102#endif
103
Michal Simek922ce202007-03-11 13:48:24 +0100104 /* interrupt_handler */
Michal Simek4a30db92011-07-21 10:47:21 +0200105 swi r2, r0, 0x10 /* interrupt - imm opcode */
106 swi r3, r0, 0x14 /* interrupt - brai opcode */
107
Michal Simek922ce202007-03-11 13:48:24 +0100108 addik r6, r0, _interrupt_handler
109 sw r6, r1, r0
Michal Simekead124a2010-08-12 11:47:11 +0200110 lhu r7, r1, r10
111 rsubi r8, r10, 0x12
112 sh r7, r0, r8
113 rsubi r8, r10, 0x16
114 sh r6, r0, r8
wdenk12490652004-04-18 21:13:41 +0000115
Michal Simek922ce202007-03-11 13:48:24 +0100116 /* hardware exception */
Michal Simek4a30db92011-07-21 10:47:21 +0200117 swi r2, r0, 0x20 /* hardware exception - imm opcode */
118 swi r3, r0, 0x24 /* hardware exception - brai opcode */
119
Michal Simek922ce202007-03-11 13:48:24 +0100120 addik r6, r0, _hw_exception_handler
121 sw r6, r1, r0
Michal Simekead124a2010-08-12 11:47:11 +0200122 lhu r7, r1, r10
123 rsubi r8, r10, 0x22
124 sh r7, r0, r8
125 rsubi r8, r10, 0x26
126 sh r6, r0, r8
Michal Simek26acb3e2014-01-21 07:30:37 +0100127#endif /* BUILD_SPL */
Michal Simek922ce202007-03-11 13:48:24 +0100128
Michal Simeke3aa3d52012-09-25 10:13:35 +0200129 /* Flush cache before enable cache */
130 addik r5, r0, 0
131 addik r6, r0, XILINX_DCACHE_BYTE_SIZE
Michal Simek23162f42015-01-27 12:46:07 +0100132 bralid r15, flush_cache
Michal Simeke3aa3d52012-09-25 10:13:35 +0200133 nop
134
Michal Simek922ce202007-03-11 13:48:24 +0100135 /* enable instruction and data cache */
136 mfs r12, rmsr
Michal Simek28769382014-11-04 13:27:52 +0100137 ori r12, r12, 0x1a0
Michal Simek922ce202007-03-11 13:48:24 +0100138 mts rmsr, r12
139
Michal Simek1f0c40c2007-03-26 01:39:07 +0200140clear_bss:
141 /* clear BSS segments */
142 addi r5, r0, __bss_start
143 addi r4, r0, __bss_end
144 cmp r6, r5, r4
145 beqi r6, 3f
1462:
147 swi r0, r5, 0 /* write zero to loc */
148 addi r5, r5, 4 /* increment to next loc */
149 cmp r6, r5, r4 /* check if we have reach the end */
150 bnei r6, 2b
1513: /* jumping to board_init */
Michal Simek26acb3e2014-01-21 07:30:37 +0100152#ifndef CONFIG_SPL_BUILD
Michal Simek9cabb362012-07-04 13:12:37 +0200153 brai board_init_f
Michal Simek26acb3e2014-01-21 07:30:37 +0100154#else
155 brai board_init_r
156#endif
wdenk12490652004-04-18 21:13:41 +00001571: bri 1b
Michal Simek04ae75f2007-04-21 21:02:40 +0200158
Michal Simek26acb3e2014-01-21 07:30:37 +0100159#ifndef CONFIG_SPL_BUILD
Michal Simek04ae75f2007-04-21 21:02:40 +0200160/*
161 * Read 16bit little endian
162 */
163 .text
164 .global in16
165 .ent in16
166 .align 2
167in16: lhu r3, r0, r5
168 bslli r4, r3, 8
169 bsrli r3, r3, 8
170 andi r4, r4, 0xffff
171 or r3, r3, r4
172 rtsd r15, 8
173 sext16 r3, r3
174 .end in16
175
176/*
177 * Write 16bit little endian
178 * first parameter(r5) - address, second(r6) - short value
179 */
180 .text
181 .global out16
182 .ent out16
183 .align 2
184out16: bslli r3, r6, 8
185 bsrli r6, r6, 8
186 andi r3, r3, 0xffff
187 or r3, r3, r6
188 sh r3, r0, r5
189 rtsd r15, 8
190 or r0, r0, r0
191 .end out16
Michal Simek26acb3e2014-01-21 07:30:37 +0100192#endif