blob: 9837c41894cb801f5f83a912b65e490f46147b0d [file] [log] [blame]
wdenke65527f2004-02-12 00:47:09 +00001/*
2 * Copyright (C) 2003 Josef Baumgartner <josef.baumgartner@telex.de>
3 * Based on code from Bernhard Kuhn <bkuhn@metrowerks.com>
4 *
Wolfgang Denkd79de1d2013-07-08 09:37:19 +02005 * SPDX-License-Identifier: GPL-2.0+
wdenke65527f2004-02-12 00:47:09 +00006 */
7
Wolfgang Denk0191e472010-10-26 14:34:52 +02008#include <asm-offsets.h>
wdenke65527f2004-02-12 00:47:09 +00009#include <config.h>
10#include "version.h"
TsiChung Liew0ee47d42010-03-11 22:12:53 -060011#include <asm/cache.h>
wdenke65527f2004-02-12 00:47:09 +000012
13#ifndef CONFIG_IDENT_STRING
14#define CONFIG_IDENT_STRING ""
15#endif
16
wdenke65527f2004-02-12 00:47:09 +000017#define _START _start
18#define _FAULT _fault
19
20
21#define SAVE_ALL \
22 move.w #0x2700,%sr; /* disable intrs */ \
23 subl #60,%sp; /* space for 15 regs */ \
24 moveml %d0-%d7/%a0-%a6,%sp@; \
25
26#define RESTORE_ALL \
27 moveml %sp@,%d0-%d7/%a0-%a6; \
28 addl #60,%sp; /* space for 15 regs */ \
29 rte
30
31/* If we come from a pre-loader we don't need an initial exception
32 * table.
33 */
34#if !defined(CONFIG_MONITOR_IS_IN_RAM)
35
36.text
Angelo Dureghello65d59912016-05-22 00:14:29 +020037
wdenke65527f2004-02-12 00:47:09 +000038/*
Angelo Dureghello65d59912016-05-22 00:14:29 +020039 * Vector table. This is used for initial platform startup.
40 * These vectors are to catch any un-intended traps.
wdenke65527f2004-02-12 00:47:09 +000041 */
42_vectors:
Wolfgang Denkb4b1c462006-06-10 19:27:47 +020043.long 0x00000000 /* Flash offset is 0 until we setup CS0 */
Wolfgang Denk0708bc62010-10-07 21:51:12 +020044#if defined(CONFIG_M5282) && (CONFIG_SYS_TEXT_BASE == CONFIG_SYS_INT_FLASH_BASE)
45.long _start - CONFIG_SYS_TEXT_BASE
Zachary P. Landau0bba8622006-01-26 17:35:56 -050046#else
Wolfgang Denkb4b1c462006-06-10 19:27:47 +020047.long _START
Zachary P. Landau0bba8622006-01-26 17:35:56 -050048#endif
Wolfgang Denkb4b1c462006-06-10 19:27:47 +020049
wdenke65527f2004-02-12 00:47:09 +000050.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT
51.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT
52.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT
53.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT
54.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT
55.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT
56.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT
57.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT
58
59.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT
60.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT
61.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT
62.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT
63.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT
64.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT
65.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT
66.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT
67
68.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT
69.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT
70.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT
71.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT
72.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT
73.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT
74.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT
75.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT
76
77.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT
78.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT
79.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT
80.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT
81.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT
82.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT
83.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT
84.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT
85
86#endif
87
Angelo Dureghello65d59912016-05-22 00:14:29 +020088.text
Heiko Schocherac1956e2006-04-20 08:42:42 +020089
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020090#if defined(CONFIG_SYS_INT_FLASH_BASE) && \
Heiko Schocherac1956e2006-04-20 08:42:42 +020091 (defined(CONFIG_M5282) || defined(CONFIG_M5281))
Angelo Dureghello65d59912016-05-22 00:14:29 +020092#if (CONFIG_SYS_TEXT_BASE == CONFIG_SYS_INT_FLASH_BASE)
93.long 0x55AA55AA,0xAA55AA55 /* CFM Backdoorkey */
94.long 0xFFFFFFFF /* all sectors protected */
95.long 0x00000000 /* supervisor/User restriction */
96.long 0x00000000 /* programm/data space restriction */
97.long 0x00000000 /* Flash security */
98#endif
Heiko Schocherac1956e2006-04-20 08:42:42 +020099#endif
Angelo Dureghello65d59912016-05-22 00:14:29 +0200100
101.globl _start
wdenke65527f2004-02-12 00:47:09 +0000102_start:
103 nop
104 nop
Angelo Dureghello65d59912016-05-22 00:14:29 +0200105 move.w #0x2700,%sr
wdenke65527f2004-02-12 00:47:09 +0000106
TsiChung Liewb354aef2009-06-12 11:29:00 +0000107#if defined(CONFIG_M5208)
108 /* Initialize RAMBAR: locate SRAM and validate it */
109 move.l #(CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_RAM_CTRL), %d0
110 movec %d0, %RAMBAR1
111#endif
112
TsiChungLiew34674692007-08-16 13:20:50 -0500113#if defined(CONFIG_M5272) || defined(CONFIG_M5249) || defined(CONFIG_M5253)
Angelo Dureghello65d59912016-05-22 00:14:29 +0200114 /* set MBAR address + valid flag */
115 move.l #(CONFIG_SYS_MBAR + 1), %d0
wdenke65527f2004-02-12 00:47:09 +0000116 move.c %d0, %MBAR
117
stroese53395a22004-12-16 18:09:49 +0000118 /*** The 5249 has MBAR2 as well ***/
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200119#ifdef CONFIG_SYS_MBAR2
Angelo Dureghello65d59912016-05-22 00:14:29 +0200120 /* Get MBAR2 address */
121 move.l #(CONFIG_SYS_MBAR2 + 1), %d0
122 /* Set MBAR2 */
123 movec %d0, #0xc0e
stroese53395a22004-12-16 18:09:49 +0000124#endif
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200125 move.l #(CONFIG_SYS_INIT_RAM_ADDR + 1), %d0
wdenke65527f2004-02-12 00:47:09 +0000126 movec %d0, %RAMBAR0
TsiChungLiew34674692007-08-16 13:20:50 -0500127#endif /* CONFIG_M5272 || CONFIG_M5249 || CONFIG_M5253 */
wdenke65527f2004-02-12 00:47:09 +0000128
Wolfgang Denkb4b1c462006-06-10 19:27:47 +0200129#if defined(CONFIG_M5282) || defined(CONFIG_M5271)
Angelo Dureghello65d59912016-05-22 00:14:29 +0200130 /* set MBAR address + valid flag */
131 move.l #(CONFIG_SYS_MBAR + 1), %d0
wdenke65527f2004-02-12 00:47:09 +0000132 move.l %d0, 0x40000000
133
Heiko Schocherac1956e2006-04-20 08:42:42 +0200134 /* Initialize RAMBAR1: locate SRAM and validate it */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200135 move.l #(CONFIG_SYS_INIT_RAM_ADDR + 0x21), %d0
Heiko Schocherac1956e2006-04-20 08:42:42 +0200136 movec %d0, %RAMBAR1
137
Bartlomiej Sieka8ff81c62006-12-20 00:27:32 +0100138#if defined(CONFIG_M5282)
Wolfgang Denk0708bc62010-10-07 21:51:12 +0200139#if (CONFIG_SYS_TEXT_BASE == CONFIG_SYS_INT_FLASH_BASE)
Angelo Dureghello65d59912016-05-22 00:14:29 +0200140 /*
141 * Setup code in SRAM to initialize FLASHBAR,
142 * if start from internal Flash
143 */
144 move.l #(_flashbar_setup-CONFIG_SYS_INT_FLASH_BASE), %a0
145 move.l #(_flashbar_setup_end-CONFIG_SYS_INT_FLASH_BASE), %a1
146 move.l #(CONFIG_SYS_INIT_RAM_ADDR), %a2
Heiko Schocherac1956e2006-04-20 08:42:42 +0200147_copy_flash:
Angelo Dureghello65d59912016-05-22 00:14:29 +0200148 move.l (%a0)+, (%a2)+
149 cmp.l %a0, %a1
150 bgt.s _copy_flash
151 jmp CONFIG_SYS_INIT_RAM_ADDR
Heiko Schocherac1956e2006-04-20 08:42:42 +0200152
153_flashbar_setup:
wdenke65527f2004-02-12 00:47:09 +0000154 /* Initialize FLASHBAR: locate internal Flash and validate it */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200155 move.l #(CONFIG_SYS_INT_FLASH_BASE + CONFIG_SYS_INT_FLASH_ENABLE), %d0
TsiChung Liew7e5ae272008-03-13 14:26:32 -0500156 movec %d0, %FLASHBAR
Angelo Dureghello65d59912016-05-22 00:14:29 +0200157 jmp _after_flashbar_copy.L /* Force jump to absolute address */
Heiko Schocherac1956e2006-04-20 08:42:42 +0200158_flashbar_setup_end:
159 nop
160_after_flashbar_copy:
161#else
162 /* Setup code to initialize FLASHBAR, if start from external Memory */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200163 move.l #(CONFIG_SYS_INT_FLASH_BASE + CONFIG_SYS_INT_FLASH_ENABLE), %d0
TsiChung Liewfcd4aac2008-08-11 15:54:25 +0000164 movec %d0, %FLASHBAR
Wolfgang Denk0708bc62010-10-07 21:51:12 +0200165#endif /* (CONFIG_SYS_TEXT_BASE == CONFIG_SYS_INT_FLASH_BASE) */
wdenke65527f2004-02-12 00:47:09 +0000166
Heiko Schocherac1956e2006-04-20 08:42:42 +0200167#endif
Wolfgang Denk5b1657d2006-09-04 01:03:57 +0200168#endif
Angelo Dureghello65d59912016-05-22 00:14:29 +0200169 /*
170 * if we come from a pre-loader we have no exception table and
Heiko Schocherac1956e2006-04-20 08:42:42 +0200171 * therefore no VBR to set
172 */
173#if !defined(CONFIG_MONITOR_IS_IN_RAM)
Wolfgang Denk0708bc62010-10-07 21:51:12 +0200174#if defined(CONFIG_M5282) && (CONFIG_SYS_TEXT_BASE == CONFIG_SYS_INT_FLASH_BASE)
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200175 move.l #CONFIG_SYS_INT_FLASH_BASE, %d0
TsiChungLiew5bffcad2007-10-25 17:09:17 -0500176#else
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200177 move.l #CONFIG_SYS_FLASH_BASE, %d0
TsiChungLiew5bffcad2007-10-25 17:09:17 -0500178#endif
Heiko Schocherac1956e2006-04-20 08:42:42 +0200179 movec %d0, %VBR
Marian Balakowiczc20d87d2006-05-09 11:51:51 +0200180#endif
181
Matthew Fettke761e2e92008-02-04 15:38:20 -0600182#ifdef CONFIG_M5275
Angelo Dureghello65d59912016-05-22 00:14:29 +0200183 /* set MBAR address + valid flag */
184 move.l #(CONFIG_SYS_MBAR + 1), %d0
Matthew Fettke761e2e92008-02-04 15:38:20 -0600185 move.l %d0, 0x40000000
186/* movec %d0, %MBAR */
187
188 /* Initialize RAMBAR: locate SRAM and validate it */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200189 move.l #(CONFIG_SYS_INIT_RAM_ADDR + 0x21), %d0
Matthew Fettke761e2e92008-02-04 15:38:20 -0600190 movec %d0, %RAMBAR1
191#endif
192
TsiChung Liew0ee47d42010-03-11 22:12:53 -0600193 /* initialize general use internal ram */
Angelo Dureghello65d59912016-05-22 00:14:29 +0200194 move.l #0, %d0
195 move.l #(ICACHE_STATUS), %a1 /* icache */
196 move.l #(DCACHE_STATUS), %a2 /* icache */
197 move.l %d0, (%a1)
198 move.l %d0, (%a2)
TsiChung Liew0ee47d42010-03-11 22:12:53 -0600199
angelo@sysam.itef9707c2016-04-27 21:50:44 +0200200 /* put relocation table address to a5 */
Angelo Dureghello65d59912016-05-22 00:14:29 +0200201 move.l #__got_start, %a5
wdenke65527f2004-02-12 00:47:09 +0000202
angelo@sysam.itef9707c2016-04-27 21:50:44 +0200203 /* setup stack initially on top of internal static ram */
Angelo Dureghello65d59912016-05-22 00:14:29 +0200204 move.l #(CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_RAM_SIZE), %sp
angelo@sysam.itef9707c2016-04-27 21:50:44 +0200205
206 /*
207 * if configured, malloc_f arena will be reserved first,
208 * then (and always) gd struct space will be reserved
209 */
210 move.l %sp, -(%sp)
211 move.l #board_init_f_alloc_reserve, %a1
Angelo Dureghello65d59912016-05-22 00:14:29 +0200212 jsr (%a1)
angelo@sysam.itef9707c2016-04-27 21:50:44 +0200213
214 /* update stack and frame-pointers */
Angelo Dureghello65d59912016-05-22 00:14:29 +0200215 move.l %d0, %sp
216 move.l %sp, %fp
angelo@sysam.itef9707c2016-04-27 21:50:44 +0200217
218 /* initialize reserved area */
Angelo Dureghello65d59912016-05-22 00:14:29 +0200219 move.l %d0, -(%sp)
angelo@sysam.itef9707c2016-04-27 21:50:44 +0200220 move.l #board_init_f_init_reserve, %a1
Angelo Dureghello65d59912016-05-22 00:14:29 +0200221 jsr (%a1)
wdenke65527f2004-02-12 00:47:09 +0000222
angelo@sysam.itb8cd1322016-04-12 00:30:59 +0200223 /* run low-level CPU init code (from flash) */
Angelo Dureghello65d59912016-05-22 00:14:29 +0200224 move.l #cpu_init_f, %a1
225 jsr (%a1)
226
angelo@sysam.itb8cd1322016-04-12 00:30:59 +0200227 /* run low-level board init code (from flash) */
Angelo Dureghello65d59912016-05-22 00:14:29 +0200228 clr.l %sp@-
229 move.l #board_init_f, %a1
230 jsr (%a1)
wdenke65527f2004-02-12 00:47:09 +0000231
Marian Balakowiczc20d87d2006-05-09 11:51:51 +0200232 /* board_init_f() does not return */
wdenke65527f2004-02-12 00:47:09 +0000233
Angelo Dureghello65d59912016-05-22 00:14:29 +0200234/******************************************************************************/
wdenke65527f2004-02-12 00:47:09 +0000235
236/*
237 * void relocate_code (addr_sp, gd, addr_moni)
238 *
239 * This "function" does not return, instead it continues in RAM
240 * after relocating the monitor code.
241 *
242 * r3 = dest
243 * r4 = src
244 * r5 = length in bytes
245 * r6 = cachelinesize
246 */
Angelo Dureghello65d59912016-05-22 00:14:29 +0200247.globl relocate_code
wdenke65527f2004-02-12 00:47:09 +0000248relocate_code:
Angelo Dureghello65d59912016-05-22 00:14:29 +0200249 link.w %a6,#0
250 move.l 8(%a6), %sp /* set new stack pointer */
wdenke65527f2004-02-12 00:47:09 +0000251
Angelo Dureghello65d59912016-05-22 00:14:29 +0200252 move.l 12(%a6), %d0 /* Save copy of Global Data pointer */
253 move.l 16(%a6), %a0 /* Save copy of Destination Address */
wdenke65527f2004-02-12 00:47:09 +0000254
Angelo Dureghello65d59912016-05-22 00:14:29 +0200255 move.l #CONFIG_SYS_MONITOR_BASE, %a1
256 move.l #__init_end, %a2
257 move.l %a0, %a3
wdenke65527f2004-02-12 00:47:09 +0000258 /* copy the code to RAM */
2591:
Angelo Dureghello65d59912016-05-22 00:14:29 +0200260 move.l (%a1)+, (%a3)+
261 cmp.l %a1,%a2
262 bgt.s 1b
wdenke65527f2004-02-12 00:47:09 +0000263
264/*
265 * We are done. Do not return, instead branch to second part of board
266 * initialization, now running from RAM.
267 */
Wolfgang Denka1be4762008-05-20 16:00:29 +0200268 move.l %a0, %a1
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200269 add.l #(in_ram - CONFIG_SYS_MONITOR_BASE), %a1
wdenke65527f2004-02-12 00:47:09 +0000270 jmp (%a1)
271
272in_ram:
273
274clear_bss:
Wolfgang Denka1be4762008-05-20 16:00:29 +0200275 /*
wdenke65527f2004-02-12 00:47:09 +0000276 * Now clear BSS segment
277 */
278 move.l %a0, %a1
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200279 add.l #(_sbss - CONFIG_SYS_MONITOR_BASE),%a1
wdenke65527f2004-02-12 00:47:09 +0000280 move.l %a0, %d1
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200281 add.l #(_ebss - CONFIG_SYS_MONITOR_BASE),%d1
wdenke65527f2004-02-12 00:47:09 +00002826:
283 clr.l (%a1)+
284 cmp.l %a1,%d1
285 bgt.s 6b
286
287 /*
288 * fix got table in RAM
289 */
290 move.l %a0, %a1
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200291 add.l #(__got_start - CONFIG_SYS_MONITOR_BASE),%a1
Angelo Dureghello65d59912016-05-22 00:14:29 +0200292 move.l %a1,%a5 /* fix got pointer register a5 */
wdenke65527f2004-02-12 00:47:09 +0000293
294 move.l %a0, %a2
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200295 add.l #(__got_end - CONFIG_SYS_MONITOR_BASE),%a2
wdenke65527f2004-02-12 00:47:09 +0000296
2977:
298 move.l (%a1),%d1
299 sub.l #_start,%d1
300 add.l %a0,%d1
301 move.l %d1,(%a1)+
302 cmp.l %a2, %a1
303 bne 7b
304
305 /* calculate relative jump to board_init_r in ram */
Angelo Dureghello65d59912016-05-22 00:14:29 +0200306 move.l %a0, %a1
307 add.l #(board_init_r - CONFIG_SYS_MONITOR_BASE), %a1
wdenke65527f2004-02-12 00:47:09 +0000308
309 /* set parameters for board_init_r */
Angelo Dureghello65d59912016-05-22 00:14:29 +0200310 move.l %a0,-(%sp) /* dest_addr */
311 move.l %d0,-(%sp) /* gd */
Wolfgang Denk0708bc62010-10-07 21:51:12 +0200312#if defined(DEBUG) && (CONFIG_SYS_TEXT_BASE != CONFIG_SYS_INT_FLASH_BASE) && \
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200313 defined(CONFIG_SYS_HALT_BEFOR_RAM_JUMP)
TsiChungLiew8cd73be2007-08-15 19:21:21 -0500314 halt
315#endif
wdenke65527f2004-02-12 00:47:09 +0000316 jsr (%a1)
317
Angelo Dureghello65d59912016-05-22 00:14:29 +0200318/******************************************************************************/
319
wdenke65527f2004-02-12 00:47:09 +0000320/* exception code */
Angelo Dureghello65d59912016-05-22 00:14:29 +0200321.globl _fault
wdenke65527f2004-02-12 00:47:09 +0000322_fault:
Angelo Dureghello65d59912016-05-22 00:14:29 +0200323 bra _fault
wdenke65527f2004-02-12 00:47:09 +0000324
Angelo Dureghello65d59912016-05-22 00:14:29 +0200325.globl _exc_handler
wdenke65527f2004-02-12 00:47:09 +0000326_exc_handler:
327 SAVE_ALL
328 movel %sp,%sp@-
Angelo Dureghello65d59912016-05-22 00:14:29 +0200329 bsr exc_handler
wdenke65527f2004-02-12 00:47:09 +0000330 addql #4,%sp
331 RESTORE_ALL
332
Angelo Dureghello65d59912016-05-22 00:14:29 +0200333.globl _int_handler
wdenke65527f2004-02-12 00:47:09 +0000334_int_handler:
335 SAVE_ALL
336 movel %sp,%sp@-
Angelo Dureghello65d59912016-05-22 00:14:29 +0200337 bsr int_handler
wdenke65527f2004-02-12 00:47:09 +0000338 addql #4,%sp
339 RESTORE_ALL
340
Angelo Dureghello65d59912016-05-22 00:14:29 +0200341/******************************************************************************/
wdenke65527f2004-02-12 00:47:09 +0000342
Angelo Dureghello65d59912016-05-22 00:14:29 +0200343.globl version_string
wdenke65527f2004-02-12 00:47:09 +0000344version_string:
Angelo Dureghello65d59912016-05-22 00:14:29 +0200345.ascii U_BOOT_VERSION_STRING, "\0"
346.align 4