blob: af18c1c8ed6a8a8515275251153f1a182c78b429 [file] [log] [blame]
wdenk9c53f402003-10-15 23:53:47 +00001/*
Kumar Gala8d2817c2009-03-19 02:53:01 -05002 * Copyright 2004, 2007-2009 Freescale Semiconductor, Inc.
wdenk9c53f402003-10-15 23:53:47 +00003 * Copyright (C) 2003 Motorola,Inc.
wdenk9c53f402003-10-15 23:53:47 +00004 *
5 * See file CREDITS for list of people who contributed to this
6 * project.
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation; either version 2 of
11 * the License, or (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21 * MA 02111-1307 USA
22 */
23
24/* U-Boot Startup Code for Motorola 85xx PowerPC based Embedded Boards
25 *
26 * The processor starts at 0xfffffffc and the code is first executed in the
27 * last 4K page(0xfffff000-0xffffffff) in flash/rom.
28 *
29 */
30
31#include <config.h>
32#include <mpc85xx.h>
Peter Tyser62948502008-11-03 09:30:59 -060033#include <timestamp.h>
wdenk9c53f402003-10-15 23:53:47 +000034#include <version.h>
35
36#define _LINUX_CONFIG_H 1 /* avoid reading Linux autoconf.h file */
37
38#include <ppc_asm.tmpl>
39#include <ppc_defs.h>
40
41#include <asm/cache.h>
42#include <asm/mmu.h>
43
44#ifndef CONFIG_IDENT_STRING
45#define CONFIG_IDENT_STRING ""
46#endif
47
48#undef MSR_KERNEL
Andy Flemingf08233c2007-08-14 01:34:21 -050049#define MSR_KERNEL ( MSR_ME ) /* Machine Check */
wdenk9c53f402003-10-15 23:53:47 +000050
51/*
52 * Set up GOT: Global Offset Table
53 *
Joakim Tjernlund3fbaa4d2010-01-19 14:41:56 +010054 * Use r12 to access the GOT
wdenk9c53f402003-10-15 23:53:47 +000055 */
56 START_GOT
57 GOT_ENTRY(_GOT2_TABLE_)
58 GOT_ENTRY(_FIXUP_TABLE_)
59
Mingkai Hu0255cd72009-09-11 14:19:10 +080060#ifndef CONFIG_NAND_SPL
wdenk9c53f402003-10-15 23:53:47 +000061 GOT_ENTRY(_start)
62 GOT_ENTRY(_start_of_vectors)
63 GOT_ENTRY(_end_of_vectors)
64 GOT_ENTRY(transfer_to_handler)
Mingkai Hu0255cd72009-09-11 14:19:10 +080065#endif
wdenk9c53f402003-10-15 23:53:47 +000066
67 GOT_ENTRY(__init_end)
68 GOT_ENTRY(_end)
69 GOT_ENTRY(__bss_start)
70 END_GOT
71
72/*
73 * e500 Startup -- after reset only the last 4KB of the effective
74 * address space is mapped in the MMU L2 TLB1 Entry0. The .bootpg
75 * section is located at THIS LAST page and basically does three
76 * things: clear some registers, set up exception tables and
77 * add more TLB entries for 'larger spaces'(e.g. the boot rom) to
78 * continue the boot procedure.
79
80 * Once the boot rom is mapped by TLB entries we can proceed
81 * with normal startup.
82 *
83 */
84
Andy Flemingf08233c2007-08-14 01:34:21 -050085 .section .bootpg,"ax"
86 .globl _start_e500
wdenk9c53f402003-10-15 23:53:47 +000087
88_start_e500:
wdenka445ddf2004-06-09 00:34:46 +000089
Andy Flemingf08233c2007-08-14 01:34:21 -050090/* clear registers/arrays not reset by hardware */
wdenk9c53f402003-10-15 23:53:47 +000091
Andy Flemingf08233c2007-08-14 01:34:21 -050092 /* L1 */
93 li r0,2
94 mtspr L1CSR0,r0 /* invalidate d-cache */
Wolfgang Denka1be4762008-05-20 16:00:29 +020095 mtspr L1CSR1,r0 /* invalidate i-cache */
wdenk9c53f402003-10-15 23:53:47 +000096
97 mfspr r1,DBSR
98 mtspr DBSR,r1 /* Clear all valid bits */
99
Andy Flemingf08233c2007-08-14 01:34:21 -0500100 /*
101 * Enable L1 Caches early
102 *
103 */
wdenk9c53f402003-10-15 23:53:47 +0000104
Kumar Gala8d2817c2009-03-19 02:53:01 -0500105#if defined(CONFIG_E500MC) && defined(CONFIG_SYS_CACHE_STASHING)
106 /* set stash id to (coreID) * 2 + 32 + L1 CT (0) */
107 li r2,(32 + 0)
108 mtspr L1CSR2,r2
109#endif
110
Kumar Gala48bd5f02010-03-26 15:14:43 -0500111 /* Enable/invalidate the I-Cache */
112 lis r2,(L1CSR1_ICFI|L1CSR1_ICLFR)@h
113 ori r2,r2,(L1CSR1_ICFI|L1CSR1_ICLFR)@l
114 mtspr SPRN_L1CSR1,r2
1151:
116 mfspr r3,SPRN_L1CSR1
117 and. r1,r3,r2
118 bne 1b
119
120 lis r3,(L1CSR1_CPE|L1CSR1_ICE)@h
121 ori r3,r3,(L1CSR1_CPE|L1CSR1_ICE)@l
122 mtspr SPRN_L1CSR1,r3
Andy Flemingf08233c2007-08-14 01:34:21 -0500123 isync
Kumar Gala48bd5f02010-03-26 15:14:43 -05001242:
125 mfspr r3,SPRN_L1CSR1
126 andi. r1,r3,L1CSR1_ICE@l
127 beq 2b
128
129 /* Enable/invalidate the D-Cache */
130 lis r2,(L1CSR0_DCFI|L1CSR0_DCLFR)@h
131 ori r2,r2,(L1CSR0_DCFI|L1CSR0_DCLFR)@l
132 mtspr SPRN_L1CSR0,r2
1331:
134 mfspr r3,SPRN_L1CSR0
135 and. r1,r3,r2
136 bne 1b
137
138 lis r3,(L1CSR0_CPE|L1CSR0_DCE)@h
139 ori r3,r3,(L1CSR0_CPE|L1CSR0_DCE)@l
140 mtspr SPRN_L1CSR0,r3
wdenk9c53f402003-10-15 23:53:47 +0000141 isync
Kumar Gala48bd5f02010-03-26 15:14:43 -05001422:
143 mfspr r3,SPRN_L1CSR0
144 andi. r1,r3,L1CSR0_DCE@l
145 beq 2b
wdenk9c53f402003-10-15 23:53:47 +0000146
147 /* Setup interrupt vectors */
wdenkf3da7cc2005-05-13 22:49:36 +0000148 lis r1,TEXT_BASE@h
Andy Flemingf08233c2007-08-14 01:34:21 -0500149 mtspr IVPR,r1
wdenk9c53f402003-10-15 23:53:47 +0000150
wdenkf3da7cc2005-05-13 22:49:36 +0000151 li r1,0x0100
wdenk9c53f402003-10-15 23:53:47 +0000152 mtspr IVOR0,r1 /* 0: Critical input */
wdenkf3da7cc2005-05-13 22:49:36 +0000153 li r1,0x0200
wdenk9c53f402003-10-15 23:53:47 +0000154 mtspr IVOR1,r1 /* 1: Machine check */
wdenkf3da7cc2005-05-13 22:49:36 +0000155 li r1,0x0300
wdenk9c53f402003-10-15 23:53:47 +0000156 mtspr IVOR2,r1 /* 2: Data storage */
wdenkf3da7cc2005-05-13 22:49:36 +0000157 li r1,0x0400
wdenk9c53f402003-10-15 23:53:47 +0000158 mtspr IVOR3,r1 /* 3: Instruction storage */
159 li r1,0x0500
160 mtspr IVOR4,r1 /* 4: External interrupt */
161 li r1,0x0600
162 mtspr IVOR5,r1 /* 5: Alignment */
163 li r1,0x0700
164 mtspr IVOR6,r1 /* 6: Program check */
165 li r1,0x0800
166 mtspr IVOR7,r1 /* 7: floating point unavailable */
wdenkf3da7cc2005-05-13 22:49:36 +0000167 li r1,0x0900
wdenk9c53f402003-10-15 23:53:47 +0000168 mtspr IVOR8,r1 /* 8: System call */
169 /* 9: Auxiliary processor unavailable(unsupported) */
wdenkf3da7cc2005-05-13 22:49:36 +0000170 li r1,0x0a00
wdenk9c53f402003-10-15 23:53:47 +0000171 mtspr IVOR10,r1 /* 10: Decrementer */
wdenkf3da7cc2005-05-13 22:49:36 +0000172 li r1,0x0b00
173 mtspr IVOR11,r1 /* 11: Interval timer */
174 li r1,0x0c00
Wolfgang Denkc94dea22005-08-04 01:24:19 +0200175 mtspr IVOR12,r1 /* 12: Watchdog timer */
176 li r1,0x0d00
wdenk9c53f402003-10-15 23:53:47 +0000177 mtspr IVOR13,r1 /* 13: Data TLB error */
wdenkf3da7cc2005-05-13 22:49:36 +0000178 li r1,0x0e00
wdenk9c53f402003-10-15 23:53:47 +0000179 mtspr IVOR14,r1 /* 14: Instruction TLB error */
wdenkf3da7cc2005-05-13 22:49:36 +0000180 li r1,0x0f00
wdenk9c53f402003-10-15 23:53:47 +0000181 mtspr IVOR15,r1 /* 15: Debug */
182
wdenk9c53f402003-10-15 23:53:47 +0000183 /* Clear and set up some registers. */
Kumar Gala9772ee72008-01-16 22:38:34 -0600184 li r0,0x0000
wdenk9c53f402003-10-15 23:53:47 +0000185 lis r1,0xffff
186 mtspr DEC,r0 /* prevent dec exceptions */
187 mttbl r0 /* prevent fit & wdt exceptions */
188 mttbu r0
189 mtspr TSR,r1 /* clear all timer exception status */
190 mtspr TCR,r0 /* disable all */
191 mtspr ESR,r0 /* clear exception syndrome register */
192 mtspr MCSR,r0 /* machine check syndrome register */
193 mtxer r0 /* clear integer exception register */
wdenk9c53f402003-10-15 23:53:47 +0000194
Scott Wood31e60102009-08-20 17:45:05 -0500195#ifdef CONFIG_SYS_BOOK3E_HV
196 mtspr MAS8,r0 /* make sure MAS8 is clear */
197#endif
198
wdenk9c53f402003-10-15 23:53:47 +0000199 /* Enable Time Base and Select Time Base Clock */
wdenk13eb2212004-07-09 23:27:13 +0000200 lis r0,HID0_EMCP@h /* Enable machine check */
Jon Loeliger77a4f6e2005-07-25 14:05:07 -0500201#if defined(CONFIG_ENABLE_36BIT_PHYS)
Kumar Gala9772ee72008-01-16 22:38:34 -0600202 ori r0,r0,HID0_ENMAS7@l /* Enable MAS7 */
Jon Loeliger77a4f6e2005-07-25 14:05:07 -0500203#endif
Kumar Galae56f2c52009-03-19 09:16:10 -0500204#ifndef CONFIG_E500MC
Kumar Gala9772ee72008-01-16 22:38:34 -0600205 ori r0,r0,HID0_TBEN@l /* Enable Timebase */
Kumar Galae56f2c52009-03-19 09:16:10 -0500206#endif
wdenk9c53f402003-10-15 23:53:47 +0000207 mtspr HID0,r0
wdenk9c53f402003-10-15 23:53:47 +0000208
Kumar Gala9f4a6892008-10-23 01:47:38 -0500209#ifndef CONFIG_E500MC
Andy Flemingf08233c2007-08-14 01:34:21 -0500210 li r0,(HID1_ASTME|HID1_ABE)@l /* Addr streaming & broadcast */
wdenk9c53f402003-10-15 23:53:47 +0000211 mtspr HID1,r0
Kumar Gala9f4a6892008-10-23 01:47:38 -0500212#endif
wdenk9c53f402003-10-15 23:53:47 +0000213
214 /* Enable Branch Prediction */
215#if defined(CONFIG_BTB)
216 li r0,0x201 /* BBFI = 1, BPEN = 1 */
217 mtspr BUCSR,r0
wdenk9c53f402003-10-15 23:53:47 +0000218#endif
219
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200220#if defined(CONFIG_SYS_INIT_DBCR)
wdenk9c53f402003-10-15 23:53:47 +0000221 lis r1,0xffff
222 ori r1,r1,0xffff
wdenk13eb2212004-07-09 23:27:13 +0000223 mtspr DBSR,r1 /* Clear all status bits */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200224 lis r0,CONFIG_SYS_INIT_DBCR@h /* DBCR0[IDM] must be set */
225 ori r0,r0,CONFIG_SYS_INIT_DBCR@l
wdenk13eb2212004-07-09 23:27:13 +0000226 mtspr DBCR0,r0
wdenk9c53f402003-10-15 23:53:47 +0000227#endif
228
Haiying Wangc9849132009-03-27 17:02:44 -0400229#ifdef CONFIG_MPC8569
230#define CONFIG_SYS_LBC_ADDR (CONFIG_SYS_CCSRBAR_DEFAULT + 0x5000)
231#define CONFIG_SYS_LBCR_ADDR (CONFIG_SYS_LBC_ADDR + 0xd0)
232
233 /* MPC8569 Rev.0 silcon needs to set bit 13 of LBCR to allow elBC to
234 * use address space which is more than 12bits, and it must be done in
235 * the 4K boot page. So we set this bit here.
236 */
237
238 /* create a temp mapping TLB0[0] for LBCR */
239 lis r6,FSL_BOOKE_MAS0(0, 0, 0)@h
240 ori r6,r6,FSL_BOOKE_MAS0(0, 0, 0)@l
241
242 lis r7,FSL_BOOKE_MAS1(1, 0, 0, 0, BOOKE_PAGESZ_4K)@h
243 ori r7,r7,FSL_BOOKE_MAS1(1, 0, 0, 0, BOOKE_PAGESZ_4K)@l
244
245 lis r8,FSL_BOOKE_MAS2(CONFIG_SYS_LBC_ADDR, MAS2_I|MAS2_G)@h
246 ori r8,r8,FSL_BOOKE_MAS2(CONFIG_SYS_LBC_ADDR, MAS2_I|MAS2_G)@l
247
248 lis r9,FSL_BOOKE_MAS3(CONFIG_SYS_LBC_ADDR, 0,
249 (MAS3_SX|MAS3_SW|MAS3_SR))@h
250 ori r9,r9,FSL_BOOKE_MAS3(CONFIG_SYS_LBC_ADDR, 0,
251 (MAS3_SX|MAS3_SW|MAS3_SR))@l
252
253 mtspr MAS0,r6
254 mtspr MAS1,r7
255 mtspr MAS2,r8
256 mtspr MAS3,r9
257 isync
258 msync
259 tlbwe
260
261 /* Set LBCR register */
262 lis r4,CONFIG_SYS_LBCR_ADDR@h
263 ori r4,r4,CONFIG_SYS_LBCR_ADDR@l
264
265 lis r5,CONFIG_SYS_LBC_LBCR@h
266 ori r5,r5,CONFIG_SYS_LBC_LBCR@l
267 stw r5,0(r4)
268 isync
269
270 /* invalidate this temp TLB */
271 lis r4,CONFIG_SYS_LBC_ADDR@h
272 ori r4,r4,CONFIG_SYS_LBC_ADDR@l
273 tlbivax 0,r4
274 isync
275
276#endif /* CONFIG_MPC8569 */
277
Kumar Gala9772ee72008-01-16 22:38:34 -0600278 lis r6,FSL_BOOKE_MAS0(1, 15, 0)@h
279 ori r6,r6,FSL_BOOKE_MAS0(1, 15, 0)@l
280
Mingkai Hu0255cd72009-09-11 14:19:10 +0800281#ifndef CONFIG_SYS_RAMBOOT
282 /* create a temp mapping in AS=1 to the 4M boot window */
Dave Liu68aec142008-12-16 12:09:27 +0800283 lis r7,FSL_BOOKE_MAS1(1, 1, 0, 1, BOOKE_PAGESZ_4M)@h
284 ori r7,r7,FSL_BOOKE_MAS1(1, 1, 0, 1, BOOKE_PAGESZ_4M)@l
Kumar Gala9772ee72008-01-16 22:38:34 -0600285
Dave Liu68aec142008-12-16 12:09:27 +0800286 lis r8,FSL_BOOKE_MAS2(TEXT_BASE & 0xffc00000, (MAS2_I|MAS2_G))@h
287 ori r8,r8,FSL_BOOKE_MAS2(TEXT_BASE & 0xffc00000, (MAS2_I|MAS2_G))@l
Kumar Gala9772ee72008-01-16 22:38:34 -0600288
Dave Liu68aec142008-12-16 12:09:27 +0800289 /* The 85xx has the default boot window 0xff800000 - 0xffffffff */
290 lis r9,FSL_BOOKE_MAS3(0xffc00000, 0, (MAS3_SX|MAS3_SW|MAS3_SR))@h
291 ori r9,r9,FSL_BOOKE_MAS3(0xffc00000, 0, (MAS3_SX|MAS3_SW|MAS3_SR))@l
Mingkai Hu0255cd72009-09-11 14:19:10 +0800292#else
293 /*
294 * create a temp mapping in AS=1 to the 1M TEXT_BASE space, the main
295 * image has been relocated to TEXT_BASE on the second stage.
296 */
297 lis r7,FSL_BOOKE_MAS1(1, 1, 0, 1, BOOKE_PAGESZ_1M)@h
298 ori r7,r7,FSL_BOOKE_MAS1(1, 1, 0, 1, BOOKE_PAGESZ_1M)@l
299
300 lis r8,FSL_BOOKE_MAS2(TEXT_BASE, (MAS2_I|MAS2_G))@h
301 ori r8,r8,FSL_BOOKE_MAS2(TEXT_BASE, (MAS2_I|MAS2_G))@l
302
303 lis r9,FSL_BOOKE_MAS3(TEXT_BASE, 0, (MAS3_SX|MAS3_SW|MAS3_SR))@h
304 ori r9,r9,FSL_BOOKE_MAS3(TEXT_BASE, 0, (MAS3_SX|MAS3_SW|MAS3_SR))@l
305#endif
Kumar Gala9772ee72008-01-16 22:38:34 -0600306
307 mtspr MAS0,r6
308 mtspr MAS1,r7
309 mtspr MAS2,r8
310 mtspr MAS3,r9
311 isync
312 msync
313 tlbwe
314
315 /* create a temp mapping in AS=1 to the stack */
316 lis r6,FSL_BOOKE_MAS0(1, 14, 0)@h
317 ori r6,r6,FSL_BOOKE_MAS0(1, 14, 0)@l
318
319 lis r7,FSL_BOOKE_MAS1(1, 1, 0, 1, BOOKE_PAGESZ_16K)@h
320 ori r7,r7,FSL_BOOKE_MAS1(1, 1, 0, 1, BOOKE_PAGESZ_16K)@l
321
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200322 lis r8,FSL_BOOKE_MAS2(CONFIG_SYS_INIT_RAM_ADDR, 0)@h
323 ori r8,r8,FSL_BOOKE_MAS2(CONFIG_SYS_INIT_RAM_ADDR, 0)@l
Kumar Gala9772ee72008-01-16 22:38:34 -0600324
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200325 lis r9,FSL_BOOKE_MAS3(CONFIG_SYS_INIT_RAM_ADDR, 0, (MAS3_SX|MAS3_SW|MAS3_SR))@h
326 ori r9,r9,FSL_BOOKE_MAS3(CONFIG_SYS_INIT_RAM_ADDR, 0, (MAS3_SX|MAS3_SW|MAS3_SR))@l
Kumar Gala9772ee72008-01-16 22:38:34 -0600327
328 mtspr MAS0,r6
329 mtspr MAS1,r7
330 mtspr MAS2,r8
331 mtspr MAS3,r9
332 isync
333 msync
334 tlbwe
335
Scott Wood42115962009-08-20 17:44:20 -0500336 lis r6,MSR_IS|MSR_DS@h
337 ori r6,r6,MSR_IS|MSR_DS@l
Kumar Gala9772ee72008-01-16 22:38:34 -0600338 lis r7,switch_as@h
339 ori r7,r7,switch_as@l
340
341 mtspr SPRN_SRR0,r7
342 mtspr SPRN_SRR1,r6
343 rfi
344
345switch_as:
Kumar Gala76e276b2007-08-07 18:07:27 -0500346/* L1 DCache is used for initial RAM */
347
348 /* Allocate Initial RAM in data cache.
349 */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200350 lis r3,CONFIG_SYS_INIT_RAM_ADDR@h
351 ori r3,r3,CONFIG_SYS_INIT_RAM_ADDR@l
Kumar Gala938e14e2008-01-08 01:22:21 -0600352 mfspr r2, L1CFG0
353 andi. r2, r2, 0x1ff
354 /* cache size * 1024 / (2 * L1 line size) */
355 slwi r2, r2, (10 - 1 - L1_CACHE_SHIFT)
Kumar Gala76e276b2007-08-07 18:07:27 -0500356 mtctr r2
357 li r0,0
3581:
359 dcbz r0,r3
360 dcbtls 0,r0,r3
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200361 addi r3,r3,CONFIG_SYS_CACHELINE_SIZE
Kumar Gala76e276b2007-08-07 18:07:27 -0500362 bdnz 1b
363
Andy Flemingf08233c2007-08-14 01:34:21 -0500364 /* Jump out the last 4K page and continue to 'normal' start */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200365#ifdef CONFIG_SYS_RAMBOOT
Andy Flemingf08233c2007-08-14 01:34:21 -0500366 b _start_cont
Kumar Gala76e276b2007-08-07 18:07:27 -0500367#else
368 /* Calculate absolute address in FLASH and jump there */
369 /*--------------------------------------------------------------*/
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200370 lis r3,CONFIG_SYS_MONITOR_BASE@h
371 ori r3,r3,CONFIG_SYS_MONITOR_BASE@l
Kumar Gala76e276b2007-08-07 18:07:27 -0500372 addi r3,r3,_start_cont - _start + _START_OFFSET
373 mtlr r3
urwithsughosh@gmail.come9f4e342007-09-24 13:36:01 -0400374 blr
Kumar Gala76e276b2007-08-07 18:07:27 -0500375#endif
Andy Flemingf08233c2007-08-14 01:34:21 -0500376
Andy Flemingf08233c2007-08-14 01:34:21 -0500377 .text
378 .globl _start
379_start:
380 .long 0x27051956 /* U-BOOT Magic Number */
381 .globl version_string
382version_string:
383 .ascii U_BOOT_VERSION
Peter Tyser62948502008-11-03 09:30:59 -0600384 .ascii " (", U_BOOT_DATE, " - ", U_BOOT_TIME, ")"
Andy Flemingf08233c2007-08-14 01:34:21 -0500385 .ascii CONFIG_IDENT_STRING, "\0"
386
387 .align 4
388 .globl _start_cont
389_start_cont:
wdenk9c53f402003-10-15 23:53:47 +0000390 /* Setup the stack in initial RAM,could be L2-as-SRAM or L1 dcache*/
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200391 lis r1,CONFIG_SYS_INIT_RAM_ADDR@h
392 ori r1,r1,CONFIG_SYS_INIT_SP_OFFSET@l
wdenk9c53f402003-10-15 23:53:47 +0000393
394 li r0,0
395 stwu r0,-4(r1)
396 stwu r0,-4(r1) /* Terminate call chain */
397
398 stwu r1,-8(r1) /* Save back chain and move SP */
399 lis r0,RESET_VECTOR@h /* Address of reset vector */
Andy Flemingf08233c2007-08-14 01:34:21 -0500400 ori r0,r0,RESET_VECTOR@l
wdenk9c53f402003-10-15 23:53:47 +0000401 stwu r1,-8(r1) /* Save back chain and move SP */
402 stw r0,+12(r1) /* Save return addr (underflow vect) */
403
404 GET_GOT
Kumar Gala9772ee72008-01-16 22:38:34 -0600405 bl cpu_init_early_f
406
407 /* switch back to AS = 0 */
408 lis r3,(MSR_CE|MSR_ME|MSR_DE)@h
409 ori r3,r3,(MSR_CE|MSR_ME|MSR_DE)@l
410 mtmsr r3
411 isync
412
wdenk9c53f402003-10-15 23:53:47 +0000413 bl cpu_init_f
wdenk9c53f402003-10-15 23:53:47 +0000414 bl board_init_f
wdenk13eb2212004-07-09 23:27:13 +0000415 isync
wdenk9c53f402003-10-15 23:53:47 +0000416
Mingkai Hu0255cd72009-09-11 14:19:10 +0800417#ifndef CONFIG_NAND_SPL
Andy Flemingf08233c2007-08-14 01:34:21 -0500418 . = EXC_OFF_SYS_RESET
wdenk9c53f402003-10-15 23:53:47 +0000419 .globl _start_of_vectors
420_start_of_vectors:
Andy Flemingf08233c2007-08-14 01:34:21 -0500421
wdenk9c53f402003-10-15 23:53:47 +0000422/* Critical input. */
Andy Flemingf08233c2007-08-14 01:34:21 -0500423 CRIT_EXCEPTION(0x0100, CriticalInput, CritcalInputException)
424
425/* Machine check */
426 MCK_EXCEPTION(0x200, MachineCheck, MachineCheckException)
wdenk9c53f402003-10-15 23:53:47 +0000427
428/* Data Storage exception. */
429 STD_EXCEPTION(0x0300, DataStorage, UnknownException)
430
431/* Instruction Storage exception. */
432 STD_EXCEPTION(0x0400, InstStorage, UnknownException)
433
434/* External Interrupt exception. */
Andy Flemingf08233c2007-08-14 01:34:21 -0500435 STD_EXCEPTION(0x0500, ExtInterrupt, ExtIntException)
wdenk9c53f402003-10-15 23:53:47 +0000436
437/* Alignment exception. */
438 . = 0x0600
439Alignment:
Rafal Jaworowski06244e42007-06-22 14:58:04 +0200440 EXCEPTION_PROLOG(SRR0, SRR1)
wdenk9c53f402003-10-15 23:53:47 +0000441 mfspr r4,DAR
442 stw r4,_DAR(r21)
443 mfspr r5,DSISR
444 stw r5,_DSISR(r21)
445 addi r3,r1,STACK_FRAME_OVERHEAD
Joakim Tjernlund4ff6bc02010-01-19 14:41:55 +0100446 EXC_XFER_TEMPLATE(Alignment, AlignmentException, MSR_KERNEL, COPY_EE)
wdenk9c53f402003-10-15 23:53:47 +0000447
448/* Program check exception */
449 . = 0x0700
450ProgramCheck:
Rafal Jaworowski06244e42007-06-22 14:58:04 +0200451 EXCEPTION_PROLOG(SRR0, SRR1)
wdenk9c53f402003-10-15 23:53:47 +0000452 addi r3,r1,STACK_FRAME_OVERHEAD
Joakim Tjernlund4ff6bc02010-01-19 14:41:55 +0100453 EXC_XFER_TEMPLATE(ProgramCheck, ProgramCheckException,
454 MSR_KERNEL, COPY_EE)
wdenk9c53f402003-10-15 23:53:47 +0000455
456 /* No FPU on MPC85xx. This exception is not supposed to happen.
457 */
458 STD_EXCEPTION(0x0800, FPUnavailable, UnknownException)
wdenk9c53f402003-10-15 23:53:47 +0000459
wdenkf3da7cc2005-05-13 22:49:36 +0000460 . = 0x0900
wdenk9c53f402003-10-15 23:53:47 +0000461/*
462 * r0 - SYSCALL number
463 * r3-... arguments
464 */
465SystemCall:
Andy Flemingf08233c2007-08-14 01:34:21 -0500466 addis r11,r0,0 /* get functions table addr */
467 ori r11,r11,0 /* Note: this code is patched in trap_init */
468 addis r12,r0,0 /* get number of functions */
wdenkf3da7cc2005-05-13 22:49:36 +0000469 ori r12,r12,0
wdenk9c53f402003-10-15 23:53:47 +0000470
Andy Flemingf08233c2007-08-14 01:34:21 -0500471 cmplw 0,r0,r12
wdenkf3da7cc2005-05-13 22:49:36 +0000472 bge 1f
wdenk9c53f402003-10-15 23:53:47 +0000473
Andy Flemingf08233c2007-08-14 01:34:21 -0500474 rlwinm r0,r0,2,0,31 /* fn_addr = fn_tbl[r0] */
wdenkf3da7cc2005-05-13 22:49:36 +0000475 add r11,r11,r0
476 lwz r11,0(r11)
wdenk9c53f402003-10-15 23:53:47 +0000477
Andy Flemingf08233c2007-08-14 01:34:21 -0500478 li r20,0xd00-4 /* Get stack pointer */
wdenkf3da7cc2005-05-13 22:49:36 +0000479 lwz r12,0(r20)
Andy Flemingf08233c2007-08-14 01:34:21 -0500480 subi r12,r12,12 /* Adjust stack pointer */
wdenkf3da7cc2005-05-13 22:49:36 +0000481 li r0,0xc00+_end_back-SystemCall
Andy Flemingf08233c2007-08-14 01:34:21 -0500482 cmplw 0,r0,r12 /* Check stack overflow */
wdenkf3da7cc2005-05-13 22:49:36 +0000483 bgt 1f
484 stw r12,0(r20)
wdenk9c53f402003-10-15 23:53:47 +0000485
wdenkf3da7cc2005-05-13 22:49:36 +0000486 mflr r0
487 stw r0,0(r12)
488 mfspr r0,SRR0
489 stw r0,4(r12)
490 mfspr r0,SRR1
491 stw r0,8(r12)
wdenk9c53f402003-10-15 23:53:47 +0000492
wdenkf3da7cc2005-05-13 22:49:36 +0000493 li r12,0xc00+_back-SystemCall
494 mtlr r12
495 mtspr SRR0,r11
wdenk9c53f402003-10-15 23:53:47 +0000496
wdenkf3da7cc2005-05-13 22:49:36 +00004971: SYNC
wdenk9c53f402003-10-15 23:53:47 +0000498 rfi
499_back:
500
wdenkf3da7cc2005-05-13 22:49:36 +0000501 mfmsr r11 /* Disable interrupts */
502 li r12,0
503 ori r12,r12,MSR_EE
504 andc r11,r11,r12
505 SYNC /* Some chip revs need this... */
506 mtmsr r11
wdenk9c53f402003-10-15 23:53:47 +0000507 SYNC
508
wdenkf3da7cc2005-05-13 22:49:36 +0000509 li r12,0xd00-4 /* restore regs */
510 lwz r12,0(r12)
wdenk9c53f402003-10-15 23:53:47 +0000511
wdenkf3da7cc2005-05-13 22:49:36 +0000512 lwz r11,0(r12)
513 mtlr r11
514 lwz r11,4(r12)
515 mtspr SRR0,r11
516 lwz r11,8(r12)
517 mtspr SRR1,r11
wdenk9c53f402003-10-15 23:53:47 +0000518
wdenkf3da7cc2005-05-13 22:49:36 +0000519 addi r12,r12,12 /* Adjust stack pointer */
520 li r20,0xd00-4
521 stw r12,0(r20)
wdenk9c53f402003-10-15 23:53:47 +0000522
523 SYNC
524 rfi
525_end_back:
526
wdenkf3da7cc2005-05-13 22:49:36 +0000527 STD_EXCEPTION(0x0a00, Decrementer, timer_interrupt)
528 STD_EXCEPTION(0x0b00, IntervalTimer, UnknownException)
529 STD_EXCEPTION(0x0c00, WatchdogTimer, UnknownException)
wdenk9c53f402003-10-15 23:53:47 +0000530
wdenkf3da7cc2005-05-13 22:49:36 +0000531 STD_EXCEPTION(0x0d00, DataTLBError, UnknownException)
532 STD_EXCEPTION(0x0e00, InstructionTLBError, UnknownException)
wdenk9c53f402003-10-15 23:53:47 +0000533
wdenkf3da7cc2005-05-13 22:49:36 +0000534 CRIT_EXCEPTION(0x0f00, DebugBreakpoint, DebugException )
wdenk9c53f402003-10-15 23:53:47 +0000535
wdenkf3da7cc2005-05-13 22:49:36 +0000536 .globl _end_of_vectors
wdenk9c53f402003-10-15 23:53:47 +0000537_end_of_vectors:
538
539
Andy Flemingf08233c2007-08-14 01:34:21 -0500540 . = . + (0x100 - ( . & 0xff )) /* align for debug */
wdenk9c53f402003-10-15 23:53:47 +0000541
542/*
543 * This code finishes saving the registers to the exception frame
544 * and jumps to the appropriate handler for the exception.
545 * Register r21 is pointer into trap frame, r1 has new stack pointer.
546 */
547 .globl transfer_to_handler
548transfer_to_handler:
549 stw r22,_NIP(r21)
550 lis r22,MSR_POW@h
551 andc r23,r23,r22
552 stw r23,_MSR(r21)
553 SAVE_GPR(7, r21)
554 SAVE_4GPRS(8, r21)
555 SAVE_8GPRS(12, r21)
556 SAVE_8GPRS(24, r21)
557
558 mflr r23
559 andi. r24,r23,0x3f00 /* get vector offset */
560 stw r24,TRAP(r21)
561 li r22,0
562 stw r22,RESULT(r21)
563 mtspr SPRG2,r22 /* r1 is now kernel sp */
564
565 lwz r24,0(r23) /* virtual address of handler */
566 lwz r23,4(r23) /* where to go when done */
567 mtspr SRR0,r24
568 mtspr SRR1,r20
569 mtlr r23
570 SYNC
571 rfi /* jump to handler, enable MMU */
572
573int_return:
574 mfmsr r28 /* Disable interrupts */
575 li r4,0
576 ori r4,r4,MSR_EE
577 andc r28,r28,r4
578 SYNC /* Some chip revs need this... */
579 mtmsr r28
580 SYNC
581 lwz r2,_CTR(r1)
582 lwz r0,_LINK(r1)
583 mtctr r2
584 mtlr r0
585 lwz r2,_XER(r1)
586 lwz r0,_CCR(r1)
587 mtspr XER,r2
588 mtcrf 0xFF,r0
589 REST_10GPRS(3, r1)
590 REST_10GPRS(13, r1)
591 REST_8GPRS(23, r1)
592 REST_GPR(31, r1)
593 lwz r2,_NIP(r1) /* Restore environment */
594 lwz r0,_MSR(r1)
595 mtspr SRR0,r2
596 mtspr SRR1,r0
597 lwz r0,GPR0(r1)
598 lwz r2,GPR2(r1)
599 lwz r1,GPR1(r1)
600 SYNC
601 rfi
602
603crit_return:
604 mfmsr r28 /* Disable interrupts */
605 li r4,0
606 ori r4,r4,MSR_EE
607 andc r28,r28,r4
608 SYNC /* Some chip revs need this... */
609 mtmsr r28
610 SYNC
611 lwz r2,_CTR(r1)
612 lwz r0,_LINK(r1)
613 mtctr r2
614 mtlr r0
615 lwz r2,_XER(r1)
616 lwz r0,_CCR(r1)
617 mtspr XER,r2
618 mtcrf 0xFF,r0
619 REST_10GPRS(3, r1)
620 REST_10GPRS(13, r1)
621 REST_8GPRS(23, r1)
622 REST_GPR(31, r1)
623 lwz r2,_NIP(r1) /* Restore environment */
624 lwz r0,_MSR(r1)
Andy Flemingf08233c2007-08-14 01:34:21 -0500625 mtspr SPRN_CSRR0,r2
626 mtspr SPRN_CSRR1,r0
wdenk9c53f402003-10-15 23:53:47 +0000627 lwz r0,GPR0(r1)
628 lwz r2,GPR2(r1)
629 lwz r1,GPR1(r1)
630 SYNC
631 rfci
632
Andy Flemingf08233c2007-08-14 01:34:21 -0500633mck_return:
634 mfmsr r28 /* Disable interrupts */
635 li r4,0
636 ori r4,r4,MSR_EE
637 andc r28,r28,r4
638 SYNC /* Some chip revs need this... */
639 mtmsr r28
640 SYNC
641 lwz r2,_CTR(r1)
642 lwz r0,_LINK(r1)
643 mtctr r2
644 mtlr r0
645 lwz r2,_XER(r1)
646 lwz r0,_CCR(r1)
647 mtspr XER,r2
648 mtcrf 0xFF,r0
649 REST_10GPRS(3, r1)
650 REST_10GPRS(13, r1)
651 REST_8GPRS(23, r1)
652 REST_GPR(31, r1)
653 lwz r2,_NIP(r1) /* Restore environment */
654 lwz r0,_MSR(r1)
655 mtspr SPRN_MCSRR0,r2
656 mtspr SPRN_MCSRR1,r0
657 lwz r0,GPR0(r1)
658 lwz r2,GPR2(r1)
659 lwz r1,GPR1(r1)
660 SYNC
661 rfmci
662
wdenk9c53f402003-10-15 23:53:47 +0000663/* Cache functions.
664*/
Kumar Gala32090b32008-09-22 14:11:10 -0500665.globl invalidate_icache
wdenk9c53f402003-10-15 23:53:47 +0000666invalidate_icache:
667 mfspr r0,L1CSR1
Andy Flemingf08233c2007-08-14 01:34:21 -0500668 ori r0,r0,L1CSR1_ICFI
669 msync
670 isync
wdenk9c53f402003-10-15 23:53:47 +0000671 mtspr L1CSR1,r0
672 isync
Andy Flemingf08233c2007-08-14 01:34:21 -0500673 blr /* entire I cache */
wdenk9c53f402003-10-15 23:53:47 +0000674
Kumar Gala32090b32008-09-22 14:11:10 -0500675.globl invalidate_dcache
wdenk9c53f402003-10-15 23:53:47 +0000676invalidate_dcache:
677 mfspr r0,L1CSR0
Andy Flemingf08233c2007-08-14 01:34:21 -0500678 ori r0,r0,L1CSR0_DCFI
wdenk9c53f402003-10-15 23:53:47 +0000679 msync
680 isync
681 mtspr L1CSR0,r0
682 isync
683 blr
684
685 .globl icache_enable
686icache_enable:
687 mflr r8
688 bl invalidate_icache
689 mtlr r8
690 isync
691 mfspr r4,L1CSR1
692 ori r4,r4,0x0001
693 oris r4,r4,0x0001
694 mtspr L1CSR1,r4
695 isync
696 blr
697
698 .globl icache_disable
699icache_disable:
700 mfspr r0,L1CSR1
Andy Flemingf08233c2007-08-14 01:34:21 -0500701 lis r3,0
702 ori r3,r3,L1CSR1_ICE
703 andc r0,r0,r3
wdenk9c53f402003-10-15 23:53:47 +0000704 mtspr L1CSR1,r0
705 isync
706 blr
707
708 .globl icache_status
709icache_status:
710 mfspr r3,L1CSR1
Andy Flemingf08233c2007-08-14 01:34:21 -0500711 andi. r3,r3,L1CSR1_ICE
wdenk9c53f402003-10-15 23:53:47 +0000712 blr
713
714 .globl dcache_enable
715dcache_enable:
716 mflr r8
717 bl invalidate_dcache
718 mtlr r8
719 isync
720 mfspr r0,L1CSR0
721 ori r0,r0,0x0001
722 oris r0,r0,0x0001
723 msync
724 isync
725 mtspr L1CSR0,r0
726 isync
727 blr
728
729 .globl dcache_disable
730dcache_disable:
Andy Flemingf08233c2007-08-14 01:34:21 -0500731 mfspr r3,L1CSR0
732 lis r4,0
733 ori r4,r4,L1CSR0_DCE
734 andc r3,r3,r4
wdenk9c53f402003-10-15 23:53:47 +0000735 mtspr L1CSR0,r0
736 isync
737 blr
738
739 .globl dcache_status
740dcache_status:
741 mfspr r3,L1CSR0
Andy Flemingf08233c2007-08-14 01:34:21 -0500742 andi. r3,r3,L1CSR0_DCE
wdenk9c53f402003-10-15 23:53:47 +0000743 blr
744
745 .globl get_pir
746get_pir:
Andy Flemingf08233c2007-08-14 01:34:21 -0500747 mfspr r3,PIR
wdenk9c53f402003-10-15 23:53:47 +0000748 blr
749
750 .globl get_pvr
751get_pvr:
Andy Flemingf08233c2007-08-14 01:34:21 -0500752 mfspr r3,PVR
wdenk9c53f402003-10-15 23:53:47 +0000753 blr
754
wdenka445ddf2004-06-09 00:34:46 +0000755 .globl get_svr
756get_svr:
Andy Flemingf08233c2007-08-14 01:34:21 -0500757 mfspr r3,SVR
wdenka445ddf2004-06-09 00:34:46 +0000758 blr
759
wdenk9c53f402003-10-15 23:53:47 +0000760 .globl wr_tcr
761wr_tcr:
Andy Flemingf08233c2007-08-14 01:34:21 -0500762 mtspr TCR,r3
wdenk9c53f402003-10-15 23:53:47 +0000763 blr
764
765/*------------------------------------------------------------------------------- */
766/* Function: in8 */
767/* Description: Input 8 bits */
768/*------------------------------------------------------------------------------- */
769 .globl in8
770in8:
771 lbz r3,0x0000(r3)
772 blr
773
774/*------------------------------------------------------------------------------- */
775/* Function: out8 */
776/* Description: Output 8 bits */
777/*------------------------------------------------------------------------------- */
778 .globl out8
779out8:
780 stb r4,0x0000(r3)
Ed Swarthout7d6be302007-09-26 16:35:54 -0500781 sync
wdenk9c53f402003-10-15 23:53:47 +0000782 blr
783
784/*------------------------------------------------------------------------------- */
785/* Function: out16 */
786/* Description: Output 16 bits */
787/*------------------------------------------------------------------------------- */
788 .globl out16
789out16:
790 sth r4,0x0000(r3)
Ed Swarthout7d6be302007-09-26 16:35:54 -0500791 sync
wdenk9c53f402003-10-15 23:53:47 +0000792 blr
793
794/*------------------------------------------------------------------------------- */
795/* Function: out16r */
796/* Description: Byte reverse and output 16 bits */
797/*------------------------------------------------------------------------------- */
798 .globl out16r
799out16r:
800 sthbrx r4,r0,r3
Ed Swarthout7d6be302007-09-26 16:35:54 -0500801 sync
wdenk9c53f402003-10-15 23:53:47 +0000802 blr
803
804/*------------------------------------------------------------------------------- */
805/* Function: out32 */
806/* Description: Output 32 bits */
807/*------------------------------------------------------------------------------- */
808 .globl out32
809out32:
810 stw r4,0x0000(r3)
Ed Swarthout7d6be302007-09-26 16:35:54 -0500811 sync
wdenk9c53f402003-10-15 23:53:47 +0000812 blr
813
814/*------------------------------------------------------------------------------- */
815/* Function: out32r */
816/* Description: Byte reverse and output 32 bits */
817/*------------------------------------------------------------------------------- */
818 .globl out32r
819out32r:
820 stwbrx r4,r0,r3
Ed Swarthout7d6be302007-09-26 16:35:54 -0500821 sync
wdenk9c53f402003-10-15 23:53:47 +0000822 blr
823
824/*------------------------------------------------------------------------------- */
825/* Function: in16 */
826/* Description: Input 16 bits */
827/*------------------------------------------------------------------------------- */
828 .globl in16
829in16:
830 lhz r3,0x0000(r3)
831 blr
832
833/*------------------------------------------------------------------------------- */
834/* Function: in16r */
835/* Description: Input 16 bits and byte reverse */
836/*------------------------------------------------------------------------------- */
837 .globl in16r
838in16r:
839 lhbrx r3,r0,r3
840 blr
841
842/*------------------------------------------------------------------------------- */
843/* Function: in32 */
844/* Description: Input 32 bits */
845/*------------------------------------------------------------------------------- */
846 .globl in32
847in32:
848 lwz 3,0x0000(3)
849 blr
850
851/*------------------------------------------------------------------------------- */
852/* Function: in32r */
853/* Description: Input 32 bits and byte reverse */
854/*------------------------------------------------------------------------------- */
855 .globl in32r
856in32r:
857 lwbrx r3,r0,r3
858 blr
Mingkai Hu0255cd72009-09-11 14:19:10 +0800859#endif /* !CONFIG_NAND_SPL */
wdenk9c53f402003-10-15 23:53:47 +0000860
wdenk9c53f402003-10-15 23:53:47 +0000861/*------------------------------------------------------------------------------*/
862
863/*
Kumar Galac417c912009-09-11 11:27:00 -0500864 * void write_tlb(mas0, mas1, mas2, mas3, mas7)
865 */
866 .globl write_tlb
867write_tlb:
868 mtspr MAS0,r3
869 mtspr MAS1,r4
870 mtspr MAS2,r5
871 mtspr MAS3,r6
872#ifdef CONFIG_ENABLE_36BIT_PHYS
873 mtspr MAS7,r7
874#endif
875 li r3,0
876#ifdef CONFIG_SYS_BOOK3E_HV
877 mtspr MAS8,r3
878#endif
879 isync
880 tlbwe
881 msync
882 isync
883 blr
884
885/*
wdenk9c53f402003-10-15 23:53:47 +0000886 * void relocate_code (addr_sp, gd, addr_moni)
887 *
888 * This "function" does not return, instead it continues in RAM
889 * after relocating the monitor code.
890 *
891 * r3 = dest
892 * r4 = src
893 * r5 = length in bytes
894 * r6 = cachelinesize
895 */
896 .globl relocate_code
897relocate_code:
Andy Flemingf08233c2007-08-14 01:34:21 -0500898 mr r1,r3 /* Set new stack pointer */
899 mr r9,r4 /* Save copy of Init Data pointer */
900 mr r10,r5 /* Save copy of Destination Address */
wdenk9c53f402003-10-15 23:53:47 +0000901
Joakim Tjernlund3fbaa4d2010-01-19 14:41:56 +0100902 GET_GOT
Andy Flemingf08233c2007-08-14 01:34:21 -0500903 mr r3,r5 /* Destination Address */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200904 lis r4,CONFIG_SYS_MONITOR_BASE@h /* Source Address */
905 ori r4,r4,CONFIG_SYS_MONITOR_BASE@l
wdenk9c53f402003-10-15 23:53:47 +0000906 lwz r5,GOT(__init_end)
907 sub r5,r5,r4
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200908 li r6,CONFIG_SYS_CACHELINE_SIZE /* Cache Line Size */
wdenk9c53f402003-10-15 23:53:47 +0000909
910 /*
911 * Fix GOT pointer:
912 *
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200913 * New GOT-PTR = (old GOT-PTR - CONFIG_SYS_MONITOR_BASE) + Destination Address
wdenk9c53f402003-10-15 23:53:47 +0000914 *
915 * Offset:
916 */
Andy Flemingf08233c2007-08-14 01:34:21 -0500917 sub r15,r10,r4
wdenk9c53f402003-10-15 23:53:47 +0000918
919 /* First our own GOT */
Joakim Tjernlund3fbaa4d2010-01-19 14:41:56 +0100920 add r12,r12,r15
wdenk9c53f402003-10-15 23:53:47 +0000921 /* the the one used by the C code */
Andy Flemingf08233c2007-08-14 01:34:21 -0500922 add r30,r30,r15
wdenk9c53f402003-10-15 23:53:47 +0000923
924 /*
925 * Now relocate code
926 */
927
928 cmplw cr1,r3,r4
929 addi r0,r5,3
930 srwi. r0,r0,2
931 beq cr1,4f /* In place copy is not necessary */
932 beq 7f /* Protect against 0 count */
933 mtctr r0
934 bge cr1,2f
935
936 la r8,-4(r4)
937 la r7,-4(r3)
9381: lwzu r0,4(r8)
939 stwu r0,4(r7)
940 bdnz 1b
941 b 4f
942
9432: slwi r0,r0,2
944 add r8,r4,r0
945 add r7,r3,r0
9463: lwzu r0,-4(r8)
947 stwu r0,-4(r7)
948 bdnz 3b
949
950/*
951 * Now flush the cache: note that we must start from a cache aligned
952 * address. Otherwise we might miss one cache line.
953 */
9544: cmpwi r6,0
955 add r5,r3,r5
956 beq 7f /* Always flush prefetch queue in any case */
957 subi r0,r6,1
958 andc r3,r3,r0
959 mr r4,r3
9605: dcbst 0,r4
961 add r4,r4,r6
962 cmplw r4,r5
963 blt 5b
964 sync /* Wait for all dcbst to complete on bus */
965 mr r4,r3
9666: icbi 0,r4
967 add r4,r4,r6
968 cmplw r4,r5
969 blt 6b
9707: sync /* Wait for all icbi to complete on bus */
971 isync
972
Wolfgang Denk29dcbd42005-10-05 00:00:54 +0200973 /*
974 * Re-point the IVPR at RAM
975 */
976 mtspr IVPR,r10
Wolfgang Denk9da240c2005-10-05 00:19:34 +0200977
wdenk9c53f402003-10-15 23:53:47 +0000978/*
979 * We are done. Do not return, instead branch to second part of board
980 * initialization, now running from RAM.
981 */
982
Andy Flemingf08233c2007-08-14 01:34:21 -0500983 addi r0,r10,in_ram - _start + _START_OFFSET
wdenk9c53f402003-10-15 23:53:47 +0000984 mtlr r0
985 blr /* NEVER RETURNS! */
Andy Flemingf08233c2007-08-14 01:34:21 -0500986 .globl in_ram
wdenk9c53f402003-10-15 23:53:47 +0000987in_ram:
988
989 /*
Joakim Tjernlund3fbaa4d2010-01-19 14:41:56 +0100990 * Relocation Function, r12 point to got2+0x8000
wdenk9c53f402003-10-15 23:53:47 +0000991 *
992 * Adjust got2 pointers, no need to check for 0, this code
993 * already puts a few entries in the table.
994 */
995 li r0,__got2_entries@sectoff@l
996 la r3,GOT(_GOT2_TABLE_)
997 lwz r11,GOT(_GOT2_TABLE_)
998 mtctr r0
999 sub r11,r3,r11
1000 addi r3,r3,-4
10011: lwzu r0,4(r3)
Joakim Tjernlund4f2fdac2009-10-08 02:03:51 +02001002 cmpwi r0,0
1003 beq- 2f
wdenk9c53f402003-10-15 23:53:47 +00001004 add r0,r0,r11
1005 stw r0,0(r3)
Joakim Tjernlund4f2fdac2009-10-08 02:03:51 +020010062: bdnz 1b
wdenk9c53f402003-10-15 23:53:47 +00001007
1008 /*
1009 * Now adjust the fixups and the pointers to the fixups
1010 * in case we need to move ourselves again.
1011 */
Joakim Tjernlund4f2fdac2009-10-08 02:03:51 +02001012 li r0,__fixup_entries@sectoff@l
wdenk9c53f402003-10-15 23:53:47 +00001013 lwz r3,GOT(_FIXUP_TABLE_)
1014 cmpwi r0,0
1015 mtctr r0
1016 addi r3,r3,-4
1017 beq 4f
10183: lwzu r4,4(r3)
1019 lwzux r0,r4,r11
1020 add r0,r0,r11
1021 stw r10,0(r3)
1022 stw r0,0(r4)
1023 bdnz 3b
10244:
1025clear_bss:
1026 /*
1027 * Now clear BSS segment
1028 */
1029 lwz r3,GOT(__bss_start)
1030 lwz r4,GOT(_end)
1031
Andy Flemingf08233c2007-08-14 01:34:21 -05001032 cmplw 0,r3,r4
wdenk9c53f402003-10-15 23:53:47 +00001033 beq 6f
1034
Andy Flemingf08233c2007-08-14 01:34:21 -05001035 li r0,0
wdenk9c53f402003-10-15 23:53:47 +000010365:
Andy Flemingf08233c2007-08-14 01:34:21 -05001037 stw r0,0(r3)
1038 addi r3,r3,4
1039 cmplw 0,r3,r4
wdenk9c53f402003-10-15 23:53:47 +00001040 bne 5b
10416:
1042
Andy Flemingf08233c2007-08-14 01:34:21 -05001043 mr r3,r9 /* Init Data pointer */
1044 mr r4,r10 /* Destination Address */
wdenk9c53f402003-10-15 23:53:47 +00001045 bl board_init_r
1046
Mingkai Hu0255cd72009-09-11 14:19:10 +08001047#ifndef CONFIG_NAND_SPL
wdenk9c53f402003-10-15 23:53:47 +00001048 /*
1049 * Copy exception vector code to low memory
1050 *
1051 * r3: dest_addr
1052 * r7: source address, r8: end address, r9: target address
1053 */
wdenkf3da7cc2005-05-13 22:49:36 +00001054 .globl trap_init
wdenk9c53f402003-10-15 23:53:47 +00001055trap_init:
Joakim Tjernlund3fbaa4d2010-01-19 14:41:56 +01001056 mflr r4 /* save link register */
1057 GET_GOT
Andy Flemingf08233c2007-08-14 01:34:21 -05001058 lwz r7,GOT(_start_of_vectors)
1059 lwz r8,GOT(_end_of_vectors)
wdenk9c53f402003-10-15 23:53:47 +00001060
Andy Flemingf08233c2007-08-14 01:34:21 -05001061 li r9,0x100 /* reset vector always at 0x100 */
wdenk9c53f402003-10-15 23:53:47 +00001062
Andy Flemingf08233c2007-08-14 01:34:21 -05001063 cmplw 0,r7,r8
wdenkf3da7cc2005-05-13 22:49:36 +00001064 bgelr /* return if r7>=r8 - just in case */
wdenk9c53f402003-10-15 23:53:47 +000010651:
Andy Flemingf08233c2007-08-14 01:34:21 -05001066 lwz r0,0(r7)
1067 stw r0,0(r9)
1068 addi r7,r7,4
1069 addi r9,r9,4
1070 cmplw 0,r7,r8
wdenkf3da7cc2005-05-13 22:49:36 +00001071 bne 1b
wdenk9c53f402003-10-15 23:53:47 +00001072
1073 /*
1074 * relocate `hdlr' and `int_return' entries
1075 */
Andy Flemingf08233c2007-08-14 01:34:21 -05001076 li r7,.L_CriticalInput - _start + _START_OFFSET
wdenkf3da7cc2005-05-13 22:49:36 +00001077 bl trap_reloc
Andy Flemingf08233c2007-08-14 01:34:21 -05001078 li r7,.L_MachineCheck - _start + _START_OFFSET
wdenkf3da7cc2005-05-13 22:49:36 +00001079 bl trap_reloc
Andy Flemingf08233c2007-08-14 01:34:21 -05001080 li r7,.L_DataStorage - _start + _START_OFFSET
wdenkf3da7cc2005-05-13 22:49:36 +00001081 bl trap_reloc
Andy Flemingf08233c2007-08-14 01:34:21 -05001082 li r7,.L_InstStorage - _start + _START_OFFSET
wdenkf3da7cc2005-05-13 22:49:36 +00001083 bl trap_reloc
Andy Flemingf08233c2007-08-14 01:34:21 -05001084 li r7,.L_ExtInterrupt - _start + _START_OFFSET
wdenkf3da7cc2005-05-13 22:49:36 +00001085 bl trap_reloc
Andy Flemingf08233c2007-08-14 01:34:21 -05001086 li r7,.L_Alignment - _start + _START_OFFSET
wdenkf3da7cc2005-05-13 22:49:36 +00001087 bl trap_reloc
Andy Flemingf08233c2007-08-14 01:34:21 -05001088 li r7,.L_ProgramCheck - _start + _START_OFFSET
wdenkf3da7cc2005-05-13 22:49:36 +00001089 bl trap_reloc
Andy Flemingf08233c2007-08-14 01:34:21 -05001090 li r7,.L_FPUnavailable - _start + _START_OFFSET
wdenkf3da7cc2005-05-13 22:49:36 +00001091 bl trap_reloc
Andy Flemingf08233c2007-08-14 01:34:21 -05001092 li r7,.L_Decrementer - _start + _START_OFFSET
1093 bl trap_reloc
1094 li r7,.L_IntervalTimer - _start + _START_OFFSET
1095 li r8,_end_of_vectors - _start + _START_OFFSET
wdenk9c53f402003-10-15 23:53:47 +000010962:
wdenkf3da7cc2005-05-13 22:49:36 +00001097 bl trap_reloc
Andy Flemingf08233c2007-08-14 01:34:21 -05001098 addi r7,r7,0x100 /* next exception vector */
1099 cmplw 0,r7,r8
wdenkf3da7cc2005-05-13 22:49:36 +00001100 blt 2b
wdenk9c53f402003-10-15 23:53:47 +00001101
wdenkf3da7cc2005-05-13 22:49:36 +00001102 lis r7,0x0
Andy Flemingf08233c2007-08-14 01:34:21 -05001103 mtspr IVPR,r7
wdenk9c53f402003-10-15 23:53:47 +00001104
wdenkf3da7cc2005-05-13 22:49:36 +00001105 mtlr r4 /* restore link register */
wdenk9c53f402003-10-15 23:53:47 +00001106 blr
1107
wdenk9c53f402003-10-15 23:53:47 +00001108.globl unlock_ram_in_cache
1109unlock_ram_in_cache:
1110 /* invalidate the INIT_RAM section */
Kumar Gala5c953ca2008-10-23 01:47:37 -05001111 lis r3,(CONFIG_SYS_INIT_RAM_ADDR & ~(CONFIG_SYS_CACHELINE_SIZE-1))@h
1112 ori r3,r3,(CONFIG_SYS_INIT_RAM_ADDR & ~(CONFIG_SYS_CACHELINE_SIZE-1))@l
Kumar Gala938e14e2008-01-08 01:22:21 -06001113 mfspr r4,L1CFG0
1114 andi. r4,r4,0x1ff
1115 slwi r4,r4,(10 - 1 - L1_CACHE_SHIFT)
Andy Flemingf08233c2007-08-14 01:34:21 -05001116 mtctr r4
Kumar Gala2a441212008-02-27 16:30:47 -060011171: dcbi r0,r3
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +02001118 addi r3,r3,CONFIG_SYS_CACHELINE_SIZE
wdenk9c53f402003-10-15 23:53:47 +00001119 bdnz 1b
Kumar Gala2a441212008-02-27 16:30:47 -06001120 sync
Andy Fleming5ba61fe2008-02-27 14:29:58 -06001121
1122 /* Invalidate the TLB entries for the cache */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +02001123 lis r3,CONFIG_SYS_INIT_RAM_ADDR@h
1124 ori r3,r3,CONFIG_SYS_INIT_RAM_ADDR@l
Andy Fleming5ba61fe2008-02-27 14:29:58 -06001125 tlbivax 0,r3
1126 addi r3,r3,0x1000
1127 tlbivax 0,r3
1128 addi r3,r3,0x1000
1129 tlbivax 0,r3
1130 addi r3,r3,0x1000
1131 tlbivax 0,r3
wdenk9c53f402003-10-15 23:53:47 +00001132 isync
1133 blr
Kumar Gala32090b32008-09-22 14:11:10 -05001134
1135.globl flush_dcache
1136flush_dcache:
1137 mfspr r3,SPRN_L1CFG0
1138
1139 rlwinm r5,r3,9,3 /* Extract cache block size */
1140 twlgti r5,1 /* Only 32 and 64 byte cache blocks
1141 * are currently defined.
1142 */
1143 li r4,32
1144 subfic r6,r5,2 /* r6 = log2(1KiB / cache block size) -
1145 * log2(number of ways)
1146 */
1147 slw r5,r4,r5 /* r5 = cache block size */
1148
1149 rlwinm r7,r3,0,0xff /* Extract number of KiB in the cache */
1150 mulli r7,r7,13 /* An 8-way cache will require 13
1151 * loads per set.
1152 */
1153 slw r7,r7,r6
1154
1155 /* save off HID0 and set DCFA */
1156 mfspr r8,SPRN_HID0
1157 ori r9,r8,HID0_DCFA@l
1158 mtspr SPRN_HID0,r9
1159 isync
1160
1161 lis r4,0
1162 mtctr r7
1163
11641: lwz r3,0(r4) /* Load... */
1165 add r4,r4,r5
1166 bdnz 1b
1167
1168 msync
1169 lis r4,0
1170 mtctr r7
1171
11721: dcbf 0,r4 /* ...and flush. */
1173 add r4,r4,r5
1174 bdnz 1b
1175
1176 /* restore HID0 */
1177 mtspr SPRN_HID0,r8
1178 isync
1179
1180 blr
Kumar Galac24a9052009-08-14 13:37:54 -05001181
1182.globl setup_ivors
1183setup_ivors:
1184
1185#include "fixed_ivor.S"
1186 blr
Mingkai Hu0255cd72009-09-11 14:19:10 +08001187#endif /* !CONFIG_NAND_SPL */