2 * (C) Copyright 2007 Michal Simek
3 * (C) Copyright 2004 Atmark Techno, Inc.
5 * Michal SIMEK <monstr@monstr.eu>
6 * Yasushi SHOJI <yashi@atmark-techno.com>
8 * See file CREDITS for list of people who contributed to this
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.
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
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,
32 mts rmsr, r0 /* disable cache */
33 addi r1, r0, CFG_INIT_SP_OFFSET
34 addi r1, r1, -4 /* Decrement SP to top of memory */
35 /* add opcode instruction for 32bit jump - 2 instruction imm & brai*/
36 addi r6, r0, 0xb0000000 /* hex b000 opcode imm */
37 swi r6, r0, 0x0 /* reset address */
38 swi r6, r0, 0x8 /* user vector exception */
39 swi r6, r0, 0x10 /* interrupt */
40 swi r6, r0, 0x20 /* hardware exception */
42 addi r6, r0, 0xb8080000 /* hew b808 opcode brai*/
43 swi r6, r0, 0x4 /* reset address */
44 swi r6, r0, 0xC /* user vector exception */
45 swi r6, r0, 0x14 /* interrupt */
46 swi r6, r0, 0x24 /* hardware exception */
48 #ifdef CFG_RESET_ADDRESS
50 addik r6, r0, CFG_RESET_ADDRESS
56 * Copy U-Boot code to TEXT_BASE
57 * solve problem with sbrk_base
59 #if (CFG_RESET_ADDRESS != TEXT_BASE)
61 addi r5, r0, __text_start
62 rsub r4, r5, r4 /* size = __end - __text_start */
63 addi r6, r0, CFG_RESET_ADDRESS /* source address */
64 addi r7, r0, 0 /* counter */
75 /* user_vector_exception */
76 addik r6, r0, _exception_handler
84 /* interrupt_handler */
85 addik r6, r0, _interrupt_handler
92 /* hardware exception */
93 addik r6, r0, _hw_exception_handler
99 /* enable instruction and data cache */
105 /* clear BSS segments */
106 addi r5, r0, __bss_start
107 addi r4, r0, __bss_end
111 swi r0, r5, 0 /* write zero to loc */
112 addi r5, r5, 4 /* increment to next loc */
113 cmp r6, r5, r4 /* check if we have reach the end */
115 3: /* jumping to board_init */
120 * Read 16bit little endian
136 * Write 16bit little endian
137 * first parameter(r5) - address, second(r6) - short value
143 out16: bslli r3, r6, 8