blob: 44a64b7acd9cda4ea674ce250e55f960b0551f4f [file] [log] [blame]
Eran Libertyf046ccd2005-07-28 10:08:46 -05001/*
2 * Copyright (C) 1998 Dan Malek <dmalek@jlc.net>
3 * Copyright (C) 1999 Magnus Damm <kieraypc01.p.y.kie.era.ericsson.se>
4 * Copyright (C) 2000, 2001,2002 Wolfgang Denk <wd@denx.de>
Scott Woode4c09502008-06-30 14:13:28 -05005 * Copyright Freescale Semiconductor, Inc. 2004, 2006, 2008.
Eran Libertyf046ccd2005-07-28 10:08:46 -05006 *
7 * See file CREDITS for list of people who contributed to this
8 * project.
9 *
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License as
12 * published by the Free Software Foundation; either version 2 of
13 * the License, or (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
23 * MA 02111-1307 USA
24 */
25
26/*
27 * U-Boot - Startup Code for MPC83xx PowerPC based Embedded Boards
28 */
29
Wolfgang Denk25ddd1f2010-10-26 14:34:52 +020030#include <asm-offsets.h>
Eran Libertyf046ccd2005-07-28 10:08:46 -050031#include <config.h>
Jon Loeligerde1d0a62005-08-01 13:20:47 -050032#include <mpc83xx.h>
Andreas Bießmann09c2e902011-07-18 20:24:04 +020033#ifndef CONFIG_IDENT_STRING
34#define CONFIG_IDENT_STRING "MPC83XX"
35#endif
Eran Libertyf046ccd2005-07-28 10:08:46 -050036#include <version.h>
37
38#define CONFIG_83XX 1 /* needed for Linux kernel header files*/
39#define _LINUX_CONFIG_H 1 /* avoid reading Linux autoconf.h file */
40
41#include <ppc_asm.tmpl>
42#include <ppc_defs.h>
43
44#include <asm/cache.h>
45#include <asm/mmu.h>
Peter Tyserd98b0522010-10-14 23:33:24 -050046#include <asm/u-boot.h>
Eran Libertyf046ccd2005-07-28 10:08:46 -050047
Eran Libertyf046ccd2005-07-28 10:08:46 -050048/* We don't want the MMU yet.
49 */
50#undef MSR_KERNEL
51
52/*
53 * Floating Point enable, Machine Check and Recoverable Interr.
54 */
55#ifdef DEBUG
56#define MSR_KERNEL (MSR_FP|MSR_RI)
57#else
58#define MSR_KERNEL (MSR_FP|MSR_ME|MSR_RI)
59#endif
60
Scott Wood06f60ae2012-12-06 13:33:17 +000061#if defined(CONFIG_NAND_SPL) || \
62 (defined(CONFIG_SPL_BUILD) && defined(CONFIG_SPL_INIT_MINIMAL))
63#define MINIMAL_SPL
64#endif
65
66#if !defined(CONFIG_SPL_BUILD) && !defined(CONFIG_NAND_SPL) && \
67 !defined(CONFIG_SYS_RAMBOOT)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020068#define CONFIG_SYS_FLASHBOOT
Scott Woode4c09502008-06-30 14:13:28 -050069#endif
70
Eran Libertyf046ccd2005-07-28 10:08:46 -050071/*
72 * Set up GOT: Global Offset Table
73 *
Joakim Tjernlund0f8aa152010-01-19 14:41:56 +010074 * Use r12 to access the GOT
Eran Libertyf046ccd2005-07-28 10:08:46 -050075 */
76 START_GOT
77 GOT_ENTRY(_GOT2_TABLE_)
Scott Woode4c09502008-06-30 14:13:28 -050078 GOT_ENTRY(__bss_start)
Po-Yu Chuang44c6e652011-03-01 22:59:59 +000079 GOT_ENTRY(__bss_end__)
Eran Libertyf046ccd2005-07-28 10:08:46 -050080
Scott Wood06f60ae2012-12-06 13:33:17 +000081#ifndef MINIMAL_SPL
Scott Woode4c09502008-06-30 14:13:28 -050082 GOT_ENTRY(_FIXUP_TABLE_)
Eran Libertyf046ccd2005-07-28 10:08:46 -050083 GOT_ENTRY(_start)
84 GOT_ENTRY(_start_of_vectors)
85 GOT_ENTRY(_end_of_vectors)
86 GOT_ENTRY(transfer_to_handler)
Scott Woode4c09502008-06-30 14:13:28 -050087#endif
Eran Libertyf046ccd2005-07-28 10:08:46 -050088 END_GOT
89
90/*
Jerry Van Barenf35f3582006-12-06 21:23:55 -050091 * The Hard Reset Configuration Word (HRCW) table is in the first 64
92 * (0x40) bytes of flash. It has 8 bytes, but each byte is repeated 8
93 * times so the processor can fetch it out of flash whether the flash
94 * is 8, 16, 32, or 64 bits wide (hardware trickery).
Eran Libertyf046ccd2005-07-28 10:08:46 -050095 */
Eran Libertyf046ccd2005-07-28 10:08:46 -050096 .text
97#define _HRCW_TABLE_ENTRY(w) \
98 .fill 8,1,(((w)>>24)&0xff); \
99 .fill 8,1,(((w)>>16)&0xff); \
100 .fill 8,1,(((w)>> 8)&0xff); \
101 .fill 8,1,(((w) )&0xff)
102
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200103 _HRCW_TABLE_ENTRY(CONFIG_SYS_HRCW_LOW)
104 _HRCW_TABLE_ENTRY(CONFIG_SYS_HRCW_HIGH)
Eran Libertyf046ccd2005-07-28 10:08:46 -0500105
Jerry Van Barenf35f3582006-12-06 21:23:55 -0500106/*
107 * Magic number and version string - put it after the HRCW since it
108 * cannot be first in flash like it is in many other processors.
109 */
110 .long 0x27051956 /* U-Boot Magic Number */
111
112 .globl version_string
113version_string:
Andreas Bießmann09c2e902011-07-18 20:24:04 +0200114 .ascii U_BOOT_VERSION_STRING, "\0"
Jerry Van Barenf35f3582006-12-06 21:23:55 -0500115
Ron Madrid455a4692008-12-12 13:12:45 -0800116 .align 2
117
118 .globl enable_addr_trans
119enable_addr_trans:
120 /* enable address translation */
121 mfmsr r5
122 ori r5, r5, (MSR_IR | MSR_DR)
123 mtmsr r5
124 isync
125 blr
126
127 .globl disable_addr_trans
128disable_addr_trans:
129 /* disable address translation */
130 mflr r4
131 mfmsr r3
132 andi. r0, r3, (MSR_IR | MSR_DR)
133 beqlr
134 andc r3, r3, r0
135 mtspr SRR0, r4
136 mtspr SRR1, r3
137 rfi
138
139 .globl get_pvr
140get_pvr:
141 mfspr r3, PVR
142 blr
143
144 .globl ppcDWstore
145ppcDWstore:
146 lfd 1, 0(r4)
147 stfd 1, 0(r3)
148 blr
149
150 .globl ppcDWload
151ppcDWload:
152 lfd 1, 0(r3)
153 stfd 1, 0(r4)
154 blr
Eran Libertyf046ccd2005-07-28 10:08:46 -0500155
Eran Libertyf046ccd2005-07-28 10:08:46 -0500156#ifndef CONFIG_DEFAULT_IMMR
157#error CONFIG_DEFAULT_IMMR must be defined
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200158#endif /* CONFIG_SYS_DEFAULT_IMMR */
159#ifndef CONFIG_SYS_IMMR
160#define CONFIG_SYS_IMMR CONFIG_DEFAULT_IMMR
161#endif /* CONFIG_SYS_IMMR */
Eran Libertyf046ccd2005-07-28 10:08:46 -0500162
163/*
164 * After configuration, a system reset exception is executed using the
165 * vector at offset 0x100 relative to the base set by MSR[IP]. If
166 * MSR[IP] is 0, the base address is 0x00000000. If MSR[IP] is 1, the
167 * base address is 0xfff00000. In the case of a Power On Reset or Hard
168 * Reset, the value of MSR[IP] is determined by the CIP field in the
169 * HRCW.
170 *
171 * Other bits in the HRCW set up the Base Address and Port Size in BR0.
172 * This determines the location of the boot ROM (flash or EPROM) in the
173 * processor's address space at boot time. As long as the HRCW is set up
174 * so that we eventually end up executing the code below when the
175 * processor executes the reset exception, the actual values used should
176 * not matter.
177 *
178 * Once we have got here, the address mask in OR0 is cleared so that the
179 * bottom 32K of the boot ROM is effectively repeated all throughout the
180 * processor's address space, after which we can jump to the absolute
181 * address at which the boot ROM was linked at compile time, and proceed
182 * to initialise the memory controller without worrying if the rug will
183 * be pulled out from under us, so to speak (it will be fine as long as
184 * we configure BR0 with the same boot ROM link address).
185 */
186 . = EXC_OFF_SYS_RESET
187
188 .globl _start
189_start: /* time t 0 */
Eran Libertyf046ccd2005-07-28 10:08:46 -0500190 lis r4, CONFIG_DEFAULT_IMMR@h
191 nop
Peter Tyser52ebd9c2010-09-14 19:13:53 -0500192
Eran Libertyf046ccd2005-07-28 10:08:46 -0500193 mfmsr r5 /* save msr contents */
Scott Wood66778762009-01-20 11:56:11 -0600194
195 /* 83xx manuals prescribe a specific sequence for updating IMMRBAR. */
196 bl 1f
1971: mflr r7
198
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200199 lis r3, CONFIG_SYS_IMMR@h
200 ori r3, r3, CONFIG_SYS_IMMR@l
Scott Wood66778762009-01-20 11:56:11 -0600201
202 lwz r6, IMMRBAR(r4)
203 isync
204
Eran Libertyf046ccd2005-07-28 10:08:46 -0500205 stw r3, IMMRBAR(r4)
Scott Wood66778762009-01-20 11:56:11 -0600206 lwz r6, 0(r7) /* Arbitrary external load */
207 isync
208
209 lwz r6, IMMRBAR(r3)
210 isync
Jon Loeligerde1d0a62005-08-01 13:20:47 -0500211
Eran Libertyf046ccd2005-07-28 10:08:46 -0500212 /* Initialise the E300 processor core */
213 /*------------------------------------------*/
Jon Loeligerde1d0a62005-08-01 13:20:47 -0500214
Scott Wood06f60ae2012-12-06 13:33:17 +0000215#if (defined(CONFIG_SPL_BUILD) && defined(CONFIG_SPL_MPC83XX_WAIT_FOR_NAND)) || \
216 defined(CONFIG_NAND_SPL)
Lepcha Suchitfa7b1c02008-10-16 13:38:00 -0500217 /* The FCM begins execution after only the first page
218 * is loaded. Wait for the rest before branching
219 * to another flash page.
220 */
Scott Wood66778762009-01-20 11:56:11 -06002211: lwz r6, 0x50b0(r3)
Lepcha Suchitfa7b1c02008-10-16 13:38:00 -0500222 andi. r6, r6, 1
223 beq 1b
224#endif
225
Eran Libertyf046ccd2005-07-28 10:08:46 -0500226 bl init_e300_core
Jon Loeligerde1d0a62005-08-01 13:20:47 -0500227
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200228#ifdef CONFIG_SYS_FLASHBOOT
Eran Libertyf046ccd2005-07-28 10:08:46 -0500229
230 /* Inflate flash location so it appears everywhere, calculate */
231 /* the absolute address in final location of the FLASH, jump */
232 /* there and deflate the flash size back to minimal size */
233 /*------------------------------------------------------------*/
234 bl map_flash_by_law1
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200235 lis r4, (CONFIG_SYS_MONITOR_BASE)@h
236 ori r4, r4, (CONFIG_SYS_MONITOR_BASE)@l
Eran Libertyf046ccd2005-07-28 10:08:46 -0500237 addi r5, r4, in_flash - _start + EXC_OFF_SYS_RESET
238 mtlr r5
239 blr
240in_flash:
241#if 1 /* Remapping flash with LAW0. */
242 bl remap_flash_by_law0
243#endif
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200244#endif /* CONFIG_SYS_FLASHBOOT */
Eran Libertyf046ccd2005-07-28 10:08:46 -0500245
Kumar Gala2688e2f2006-02-10 15:40:06 -0600246 /* setup the bats */
247 bl setup_bats
248 sync
249
250 /*
251 * Cache must be enabled here for stack-in-cache trick.
252 * This means we need to enable the BATS.
253 * This means:
254 * 1) for the EVB, original gt regs need to be mapped
255 * 2) need to have an IBAT for the 0xf region,
256 * we are running there!
257 * Cache should be turned on after BATs, since by default
258 * everything is write-through.
259 * The init-mem BAT can be reused after reloc. The old
260 * gt-regs BAT can be reused after board_init_f calls
261 * board_early_init_f (EVB only).
262 */
263 /* enable address translation */
264 bl enable_addr_trans
265 sync
266
Nick Spence6eb2a442008-08-28 14:09:25 -0700267 /* enable the data cache */
Kumar Gala2688e2f2006-02-10 15:40:06 -0600268 bl dcache_enable
269 sync
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200270#ifdef CONFIG_SYS_INIT_RAM_LOCK
Kumar Gala2688e2f2006-02-10 15:40:06 -0600271 bl lock_ram_in_cache
272 sync
273#endif
274
275 /* set up the stack pointer in our newly created
276 * cache-ram (r1) */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200277 lis r1, (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_GBL_DATA_OFFSET)@h
278 ori r1, r1, (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_GBL_DATA_OFFSET)@l
Kumar Gala2688e2f2006-02-10 15:40:06 -0600279
280 li r0, 0 /* Make room for stack frame header and */
281 stwu r0, -4(r1) /* clear final stack frame so that */
282 stwu r0, -4(r1) /* stack backtraces terminate cleanly */
283
Eran Libertyf046ccd2005-07-28 10:08:46 -0500284
285 /* let the C-code set up the rest */
Kumar Gala2688e2f2006-02-10 15:40:06 -0600286 /* */
Eran Libertyf046ccd2005-07-28 10:08:46 -0500287 /* Be careful to keep code relocatable & stack humble */
288 /*------------------------------------------------------*/
289
290 GET_GOT /* initialize GOT access */
Wolfgang Denk8c4734e2011-04-20 22:11:21 +0200291
Eran Libertyf046ccd2005-07-28 10:08:46 -0500292 /* r3: IMMR */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200293 lis r3, CONFIG_SYS_IMMR@h
Eran Libertyf046ccd2005-07-28 10:08:46 -0500294 /* run low-level CPU init code (in Flash)*/
295 bl cpu_init_f
296
Eran Libertyf046ccd2005-07-28 10:08:46 -0500297 /* run 1st part of board init code (in Flash)*/
298 bl board_init_f
299
Peter Tyser52ebd9c2010-09-14 19:13:53 -0500300 /* NOTREACHED - board_init_f() does not return */
301
Scott Wood06f60ae2012-12-06 13:33:17 +0000302#ifndef MINIMAL_SPL
Eran Libertyf046ccd2005-07-28 10:08:46 -0500303/*
304 * Vector Table
305 */
306
307 .globl _start_of_vectors
308_start_of_vectors:
309
310/* Machine check */
311 STD_EXCEPTION(0x200, MachineCheck, MachineCheckException)
312
313/* Data Storage exception. */
314 STD_EXCEPTION(0x300, DataStorage, UnknownException)
315
316/* Instruction Storage exception. */
317 STD_EXCEPTION(0x400, InstStorage, UnknownException)
318
319/* External Interrupt exception. */
320#ifndef FIXME
321 STD_EXCEPTION(0x500, ExtInterrupt, external_interrupt)
Jon Loeligerde1d0a62005-08-01 13:20:47 -0500322#endif
Eran Libertyf046ccd2005-07-28 10:08:46 -0500323
324/* Alignment exception. */
325 . = 0x600
326Alignment:
Rafal Jaworowski02032e82007-06-22 14:58:04 +0200327 EXCEPTION_PROLOG(SRR0, SRR1)
Eran Libertyf046ccd2005-07-28 10:08:46 -0500328 mfspr r4,DAR
329 stw r4,_DAR(r21)
330 mfspr r5,DSISR
331 stw r5,_DSISR(r21)
332 addi r3,r1,STACK_FRAME_OVERHEAD
Joakim Tjernlundfc4e1882010-01-19 14:41:55 +0100333 EXC_XFER_TEMPLATE(Alignment, AlignmentException, MSR_KERNEL, COPY_EE)
Eran Libertyf046ccd2005-07-28 10:08:46 -0500334
335/* Program check exception */
336 . = 0x700
337ProgramCheck:
Rafal Jaworowski02032e82007-06-22 14:58:04 +0200338 EXCEPTION_PROLOG(SRR0, SRR1)
Eran Libertyf046ccd2005-07-28 10:08:46 -0500339 addi r3,r1,STACK_FRAME_OVERHEAD
Joakim Tjernlundfc4e1882010-01-19 14:41:55 +0100340 EXC_XFER_TEMPLATE(ProgramCheck, ProgramCheckException,
341 MSR_KERNEL, COPY_EE)
Eran Libertyf046ccd2005-07-28 10:08:46 -0500342
343 STD_EXCEPTION(0x800, FPUnavailable, UnknownException)
344
345 /* I guess we could implement decrementer, and may have
346 * to someday for timekeeping.
347 */
348 STD_EXCEPTION(0x900, Decrementer, timer_interrupt)
349
350 STD_EXCEPTION(0xa00, Trap_0a, UnknownException)
351 STD_EXCEPTION(0xb00, Trap_0b, UnknownException)
352 STD_EXCEPTION(0xc00, SystemCall, UnknownException)
353 STD_EXCEPTION(0xd00, SingleStep, UnknownException)
354
355 STD_EXCEPTION(0xe00, Trap_0e, UnknownException)
356 STD_EXCEPTION(0xf00, Trap_0f, UnknownException)
357
358 STD_EXCEPTION(0x1000, InstructionTLBMiss, UnknownException)
359 STD_EXCEPTION(0x1100, DataLoadTLBMiss, UnknownException)
360 STD_EXCEPTION(0x1200, DataStoreTLBMiss, UnknownException)
361#ifdef DEBUG
362 . = 0x1300
363 /*
364 * This exception occurs when the program counter matches the
365 * Instruction Address Breakpoint Register (IABR).
366 *
367 * I want the cpu to halt if this occurs so I can hunt around
368 * with the debugger and look at things.
369 *
370 * When DEBUG is defined, both machine check enable (in the MSR)
371 * and checkstop reset enable (in the reset mode register) are
372 * turned off and so a checkstop condition will result in the cpu
373 * halting.
374 *
375 * I force the cpu into a checkstop condition by putting an illegal
376 * instruction here (at least this is the theory).
377 *
378 * well - that didnt work, so just do an infinite loop!
379 */
3801: b 1b
381#else
382 STD_EXCEPTION(0x1300, InstructionBreakpoint, DebugException)
383#endif
384 STD_EXCEPTION(0x1400, SMI, UnknownException)
385
386 STD_EXCEPTION(0x1500, Trap_15, UnknownException)
387 STD_EXCEPTION(0x1600, Trap_16, UnknownException)
388 STD_EXCEPTION(0x1700, Trap_17, UnknownException)
389 STD_EXCEPTION(0x1800, Trap_18, UnknownException)
390 STD_EXCEPTION(0x1900, Trap_19, UnknownException)
391 STD_EXCEPTION(0x1a00, Trap_1a, UnknownException)
392 STD_EXCEPTION(0x1b00, Trap_1b, UnknownException)
393 STD_EXCEPTION(0x1c00, Trap_1c, UnknownException)
394 STD_EXCEPTION(0x1d00, Trap_1d, UnknownException)
395 STD_EXCEPTION(0x1e00, Trap_1e, UnknownException)
396 STD_EXCEPTION(0x1f00, Trap_1f, UnknownException)
397 STD_EXCEPTION(0x2000, Trap_20, UnknownException)
398 STD_EXCEPTION(0x2100, Trap_21, UnknownException)
399 STD_EXCEPTION(0x2200, Trap_22, UnknownException)
400 STD_EXCEPTION(0x2300, Trap_23, UnknownException)
401 STD_EXCEPTION(0x2400, Trap_24, UnknownException)
402 STD_EXCEPTION(0x2500, Trap_25, UnknownException)
403 STD_EXCEPTION(0x2600, Trap_26, UnknownException)
404 STD_EXCEPTION(0x2700, Trap_27, UnknownException)
405 STD_EXCEPTION(0x2800, Trap_28, UnknownException)
406 STD_EXCEPTION(0x2900, Trap_29, UnknownException)
407 STD_EXCEPTION(0x2a00, Trap_2a, UnknownException)
408 STD_EXCEPTION(0x2b00, Trap_2b, UnknownException)
409 STD_EXCEPTION(0x2c00, Trap_2c, UnknownException)
410 STD_EXCEPTION(0x2d00, Trap_2d, UnknownException)
411 STD_EXCEPTION(0x2e00, Trap_2e, UnknownException)
412 STD_EXCEPTION(0x2f00, Trap_2f, UnknownException)
413
414
415 .globl _end_of_vectors
416_end_of_vectors:
417
418 . = 0x3000
419
420/*
421 * This code finishes saving the registers to the exception frame
422 * and jumps to the appropriate handler for the exception.
423 * Register r21 is pointer into trap frame, r1 has new stack pointer.
424 */
425 .globl transfer_to_handler
426transfer_to_handler:
427 stw r22,_NIP(r21)
428 lis r22,MSR_POW@h
429 andc r23,r23,r22
430 stw r23,_MSR(r21)
431 SAVE_GPR(7, r21)
432 SAVE_4GPRS(8, r21)
433 SAVE_8GPRS(12, r21)
434 SAVE_8GPRS(24, r21)
435 mflr r23
436 andi. r24,r23,0x3f00 /* get vector offset */
437 stw r24,TRAP(r21)
438 li r22,0
439 stw r22,RESULT(r21)
440 lwz r24,0(r23) /* virtual address of handler */
441 lwz r23,4(r23) /* where to go when done */
442 mtspr SRR0,r24
443 mtspr SRR1,r20
444 mtlr r23
445 SYNC
446 rfi /* jump to handler, enable MMU */
447
448int_return:
449 mfmsr r28 /* Disable interrupts */
450 li r4,0
451 ori r4,r4,MSR_EE
452 andc r28,r28,r4
453 SYNC /* Some chip revs need this... */
454 mtmsr r28
455 SYNC
456 lwz r2,_CTR(r1)
457 lwz r0,_LINK(r1)
458 mtctr r2
459 mtlr r0
460 lwz r2,_XER(r1)
461 lwz r0,_CCR(r1)
462 mtspr XER,r2
463 mtcrf 0xFF,r0
464 REST_10GPRS(3, r1)
465 REST_10GPRS(13, r1)
466 REST_8GPRS(23, r1)
467 REST_GPR(31, r1)
468 lwz r2,_NIP(r1) /* Restore environment */
469 lwz r0,_MSR(r1)
470 mtspr SRR0,r2
471 mtspr SRR1,r0
472 lwz r0,GPR0(r1)
473 lwz r2,GPR2(r1)
474 lwz r1,GPR1(r1)
475 SYNC
476 rfi
Scott Wood06f60ae2012-12-06 13:33:17 +0000477#endif /* !MINIMAL_SPL */
Eran Libertyf046ccd2005-07-28 10:08:46 -0500478
479/*
480 * This code initialises the E300 processor core
481 * (conforms to PowerPC 603e spec)
482 * Note: expects original MSR contents to be in r5.
483 */
484 .globl init_e300_core
485init_e300_core: /* time t 10 */
486 /* Initialize machine status; enable machine check interrupt */
487 /*-----------------------------------------------------------*/
488
489 li r3, MSR_KERNEL /* Set ME and RI flags */
490 rlwimi r3, r5, 0, 25, 25 /* preserve IP bit set by HRCW */
491#ifdef DEBUG
492 rlwimi r3, r5, 0, 21, 22 /* debugger might set SE & BE bits */
493#endif
494 SYNC /* Some chip revs need this... */
495 mtmsr r3
496 SYNC
497 mtspr SRR1, r3 /* Make SRR1 match MSR */
498
499
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200500 lis r3, CONFIG_SYS_IMMR@h
Eran Libertyf046ccd2005-07-28 10:08:46 -0500501#if defined(CONFIG_WATCHDOG)
Horst Kronstorferf6970d02010-05-18 10:37:05 +0200502 /* Initialise the Watchdog values and reset it (if req) */
Eran Libertyf046ccd2005-07-28 10:08:46 -0500503 /*------------------------------------------------------*/
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200504 lis r4, CONFIG_SYS_WATCHDOG_VALUE
Eran Libertyf046ccd2005-07-28 10:08:46 -0500505 ori r4, r4, (SWCRR_SWEN | SWCRR_SWRI | SWCRR_SWPR)
506 stw r4, SWCRR(r3)
Jon Loeligerde1d0a62005-08-01 13:20:47 -0500507
Eran Libertyf046ccd2005-07-28 10:08:46 -0500508 /* and reset it */
Jon Loeligerde1d0a62005-08-01 13:20:47 -0500509
Eran Libertyf046ccd2005-07-28 10:08:46 -0500510 li r4, 0x556C
511 sth r4, SWSRR@l(r3)
Heiko Schocherf6db9452008-01-11 15:15:17 +0100512 li r4, -0x55C7
Eran Libertyf046ccd2005-07-28 10:08:46 -0500513 sth r4, SWSRR@l(r3)
514#else
Horst Kronstorferf6970d02010-05-18 10:37:05 +0200515 /* Disable Watchdog */
Eran Libertyf046ccd2005-07-28 10:08:46 -0500516 /*-------------------*/
Kumar Galaec00c332006-01-11 11:23:01 -0600517 lwz r4, SWCRR(r3)
518 /* Check to see if its enabled for disabling
519 once disabled by SW you can't re-enable */
520 andi. r4, r4, 0x4
521 beq 1f
Eran Libertyf046ccd2005-07-28 10:08:46 -0500522 xor r4, r4, r4
523 stw r4, SWCRR(r3)
Kumar Galaec00c332006-01-11 11:23:01 -06005241:
Eran Libertyf046ccd2005-07-28 10:08:46 -0500525#endif /* CONFIG_WATCHDOG */
526
Nick Spence46497052008-08-28 14:09:19 -0700527#if defined(CONFIG_MASK_AER_AO)
528 /* Write the Arbiter Event Enable to mask Address Only traps. */
529 /* This prevents the dcbz instruction from being trapped when */
530 /* HID0_ABE Address Broadcast Enable is set and the MEMORY */
531 /* COHERENCY bit is set in the WIMG bits, which is often */
532 /* needed for PCI operation. */
533 lwz r4, 0x0808(r3)
534 rlwinm r0, r4, 0, ~AER_AO
535 stw r0, 0x0808(r3)
536#endif /* CONFIG_MASK_AER_AO */
537
Eran Libertyf046ccd2005-07-28 10:08:46 -0500538 /* Initialize the Hardware Implementation-dependent Registers */
539 /* HID0 also contains cache control */
Nick Spence6eb2a442008-08-28 14:09:25 -0700540 /* - force invalidation of data and instruction caches */
Eran Libertyf046ccd2005-07-28 10:08:46 -0500541 /*------------------------------------------------------*/
542
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200543 lis r3, CONFIG_SYS_HID0_INIT@h
544 ori r3, r3, (CONFIG_SYS_HID0_INIT | HID0_ICFI | HID0_DCFI)@l
Eran Libertyf046ccd2005-07-28 10:08:46 -0500545 SYNC
546 mtspr HID0, r3
547
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200548 lis r3, CONFIG_SYS_HID0_FINAL@h
549 ori r3, r3, (CONFIG_SYS_HID0_FINAL & ~(HID0_ICFI | HID0_DCFI))@l
Eran Libertyf046ccd2005-07-28 10:08:46 -0500550 SYNC
551 mtspr HID0, r3
552
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200553 lis r3, CONFIG_SYS_HID2@h
554 ori r3, r3, CONFIG_SYS_HID2@l
Eran Libertyf046ccd2005-07-28 10:08:46 -0500555 SYNC
556 mtspr HID2, r3
557
Scott Woode4c09502008-06-30 14:13:28 -0500558 /* Done! */
559 /*------------------------------*/
560 blr
Eran Libertyf046ccd2005-07-28 10:08:46 -0500561
Scott Woode4c09502008-06-30 14:13:28 -0500562 /* setup_bats - set them up to some initial state */
563 .globl setup_bats
564setup_bats:
565 addis r0, r0, 0x0000
566
567 /* IBAT 0 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200568 addis r4, r0, CONFIG_SYS_IBAT0L@h
569 ori r4, r4, CONFIG_SYS_IBAT0L@l
570 addis r3, r0, CONFIG_SYS_IBAT0U@h
571 ori r3, r3, CONFIG_SYS_IBAT0U@l
Scott Woode4c09502008-06-30 14:13:28 -0500572 mtspr IBAT0L, r4
573 mtspr IBAT0U, r3
574
575 /* DBAT 0 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200576 addis r4, r0, CONFIG_SYS_DBAT0L@h
577 ori r4, r4, CONFIG_SYS_DBAT0L@l
578 addis r3, r0, CONFIG_SYS_DBAT0U@h
579 ori r3, r3, CONFIG_SYS_DBAT0U@l
Scott Woode4c09502008-06-30 14:13:28 -0500580 mtspr DBAT0L, r4
581 mtspr DBAT0U, r3
582
583 /* IBAT 1 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200584 addis r4, r0, CONFIG_SYS_IBAT1L@h
585 ori r4, r4, CONFIG_SYS_IBAT1L@l
586 addis r3, r0, CONFIG_SYS_IBAT1U@h
587 ori r3, r3, CONFIG_SYS_IBAT1U@l
Scott Woode4c09502008-06-30 14:13:28 -0500588 mtspr IBAT1L, r4
589 mtspr IBAT1U, r3
590
591 /* DBAT 1 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200592 addis r4, r0, CONFIG_SYS_DBAT1L@h
593 ori r4, r4, CONFIG_SYS_DBAT1L@l
594 addis r3, r0, CONFIG_SYS_DBAT1U@h
595 ori r3, r3, CONFIG_SYS_DBAT1U@l
Scott Woode4c09502008-06-30 14:13:28 -0500596 mtspr DBAT1L, r4
597 mtspr DBAT1U, r3
598
599 /* IBAT 2 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200600 addis r4, r0, CONFIG_SYS_IBAT2L@h
601 ori r4, r4, CONFIG_SYS_IBAT2L@l
602 addis r3, r0, CONFIG_SYS_IBAT2U@h
603 ori r3, r3, CONFIG_SYS_IBAT2U@l
Scott Woode4c09502008-06-30 14:13:28 -0500604 mtspr IBAT2L, r4
605 mtspr IBAT2U, r3
606
607 /* DBAT 2 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200608 addis r4, r0, CONFIG_SYS_DBAT2L@h
609 ori r4, r4, CONFIG_SYS_DBAT2L@l
610 addis r3, r0, CONFIG_SYS_DBAT2U@h
611 ori r3, r3, CONFIG_SYS_DBAT2U@l
Scott Woode4c09502008-06-30 14:13:28 -0500612 mtspr DBAT2L, r4
613 mtspr DBAT2U, r3
614
615 /* IBAT 3 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200616 addis r4, r0, CONFIG_SYS_IBAT3L@h
617 ori r4, r4, CONFIG_SYS_IBAT3L@l
618 addis r3, r0, CONFIG_SYS_IBAT3U@h
619 ori r3, r3, CONFIG_SYS_IBAT3U@l
Scott Woode4c09502008-06-30 14:13:28 -0500620 mtspr IBAT3L, r4
621 mtspr IBAT3U, r3
622
623 /* DBAT 3 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200624 addis r4, r0, CONFIG_SYS_DBAT3L@h
625 ori r4, r4, CONFIG_SYS_DBAT3L@l
626 addis r3, r0, CONFIG_SYS_DBAT3U@h
627 ori r3, r3, CONFIG_SYS_DBAT3U@l
Scott Woode4c09502008-06-30 14:13:28 -0500628 mtspr DBAT3L, r4
629 mtspr DBAT3U, r3
630
631#ifdef CONFIG_HIGH_BATS
632 /* IBAT 4 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200633 addis r4, r0, CONFIG_SYS_IBAT4L@h
634 ori r4, r4, CONFIG_SYS_IBAT4L@l
635 addis r3, r0, CONFIG_SYS_IBAT4U@h
636 ori r3, r3, CONFIG_SYS_IBAT4U@l
Scott Woode4c09502008-06-30 14:13:28 -0500637 mtspr IBAT4L, r4
638 mtspr IBAT4U, r3
639
640 /* DBAT 4 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200641 addis r4, r0, CONFIG_SYS_DBAT4L@h
642 ori r4, r4, CONFIG_SYS_DBAT4L@l
643 addis r3, r0, CONFIG_SYS_DBAT4U@h
644 ori r3, r3, CONFIG_SYS_DBAT4U@l
Scott Woode4c09502008-06-30 14:13:28 -0500645 mtspr DBAT4L, r4
646 mtspr DBAT4U, r3
647
648 /* IBAT 5 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200649 addis r4, r0, CONFIG_SYS_IBAT5L@h
650 ori r4, r4, CONFIG_SYS_IBAT5L@l
651 addis r3, r0, CONFIG_SYS_IBAT5U@h
652 ori r3, r3, CONFIG_SYS_IBAT5U@l
Scott Woode4c09502008-06-30 14:13:28 -0500653 mtspr IBAT5L, r4
654 mtspr IBAT5U, r3
655
656 /* DBAT 5 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200657 addis r4, r0, CONFIG_SYS_DBAT5L@h
658 ori r4, r4, CONFIG_SYS_DBAT5L@l
659 addis r3, r0, CONFIG_SYS_DBAT5U@h
660 ori r3, r3, CONFIG_SYS_DBAT5U@l
Scott Woode4c09502008-06-30 14:13:28 -0500661 mtspr DBAT5L, r4
662 mtspr DBAT5U, r3
663
664 /* IBAT 6 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200665 addis r4, r0, CONFIG_SYS_IBAT6L@h
666 ori r4, r4, CONFIG_SYS_IBAT6L@l
667 addis r3, r0, CONFIG_SYS_IBAT6U@h
668 ori r3, r3, CONFIG_SYS_IBAT6U@l
Scott Woode4c09502008-06-30 14:13:28 -0500669 mtspr IBAT6L, r4
670 mtspr IBAT6U, r3
671
672 /* DBAT 6 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200673 addis r4, r0, CONFIG_SYS_DBAT6L@h
674 ori r4, r4, CONFIG_SYS_DBAT6L@l
675 addis r3, r0, CONFIG_SYS_DBAT6U@h
676 ori r3, r3, CONFIG_SYS_DBAT6U@l
Scott Woode4c09502008-06-30 14:13:28 -0500677 mtspr DBAT6L, r4
678 mtspr DBAT6U, r3
679
680 /* IBAT 7 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200681 addis r4, r0, CONFIG_SYS_IBAT7L@h
682 ori r4, r4, CONFIG_SYS_IBAT7L@l
683 addis r3, r0, CONFIG_SYS_IBAT7U@h
684 ori r3, r3, CONFIG_SYS_IBAT7U@l
Scott Woode4c09502008-06-30 14:13:28 -0500685 mtspr IBAT7L, r4
686 mtspr IBAT7U, r3
687
688 /* DBAT 7 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200689 addis r4, r0, CONFIG_SYS_DBAT7L@h
690 ori r4, r4, CONFIG_SYS_DBAT7L@l
691 addis r3, r0, CONFIG_SYS_DBAT7U@h
692 ori r3, r3, CONFIG_SYS_DBAT7U@l
Scott Woode4c09502008-06-30 14:13:28 -0500693 mtspr DBAT7L, r4
694 mtspr DBAT7U, r3
695#endif
696
697 isync
Eran Libertyf046ccd2005-07-28 10:08:46 -0500698
699 /* invalidate all tlb's
700 *
701 * From the 603e User Manual: "The 603e provides the ability to
702 * invalidate a TLB entry. The TLB Invalidate Entry (tlbie)
703 * instruction invalidates the TLB entry indexed by the EA, and
704 * operates on both the instruction and data TLBs simultaneously
705 * invalidating four TLB entries (both sets in each TLB). The
706 * index corresponds to bits 15-19 of the EA. To invalidate all
707 * entries within both TLBs, 32 tlbie instructions should be
708 * issued, incrementing this field by one each time."
709 *
710 * "Note that the tlbia instruction is not implemented on the
711 * 603e."
712 *
713 * bits 15-19 correspond to addresses 0x00000000 to 0x0001F000
714 * incrementing by 0x1000 each time. The code below is sort of
Stefan Roesea47a12b2010-04-15 16:07:28 +0200715 * based on code in "flush_tlbs" from arch/powerpc/kernel/head.S
Eran Libertyf046ccd2005-07-28 10:08:46 -0500716 *
717 */
Kumar Gala2688e2f2006-02-10 15:40:06 -0600718 lis r3, 0
719 lis r5, 2
720
7211:
722 tlbie r3
723 addi r3, r3, 0x1000
724 cmp 0, 0, r3, r5
725 blt 1b
726
727 blr
728
Eran Libertyf046ccd2005-07-28 10:08:46 -0500729/* Cache functions.
730 *
731 * Note: requires that all cache bits in
732 * HID0 are in the low half word.
733 */
Scott Wood06f60ae2012-12-06 13:33:17 +0000734#ifndef MINIMAL_SPL
Eran Libertyf046ccd2005-07-28 10:08:46 -0500735 .globl icache_enable
736icache_enable:
737 mfspr r3, HID0
738 ori r3, r3, HID0_ICE
Nick Spence6eb2a442008-08-28 14:09:25 -0700739 li r4, HID0_ICFI|HID0_ILOCK
Eran Libertyf046ccd2005-07-28 10:08:46 -0500740 andc r3, r3, r4
741 ori r4, r3, HID0_ICFI
742 isync
743 mtspr HID0, r4 /* sets enable and invalidate, clears lock */
744 isync
745 mtspr HID0, r3 /* clears invalidate */
746 blr
747
748 .globl icache_disable
749icache_disable:
750 mfspr r3, HID0
751 lis r4, 0
Nick Spence6eb2a442008-08-28 14:09:25 -0700752 ori r4, r4, HID0_ICE|HID0_ICFI|HID0_ILOCK
Eran Libertyf046ccd2005-07-28 10:08:46 -0500753 andc r3, r3, r4
Eran Libertyf046ccd2005-07-28 10:08:46 -0500754 isync
Nick Spence6eb2a442008-08-28 14:09:25 -0700755 mtspr HID0, r3 /* clears invalidate, enable and lock */
Eran Libertyf046ccd2005-07-28 10:08:46 -0500756 blr
757
758 .globl icache_status
759icache_status:
760 mfspr r3, HID0
Marian Balakowicza7c66ad2006-03-14 16:01:25 +0100761 rlwinm r3, r3, (31 - HID0_ICE_SHIFT + 1), 31, 31
Eran Libertyf046ccd2005-07-28 10:08:46 -0500762 blr
Scott Wood06f60ae2012-12-06 13:33:17 +0000763#endif /* !MINIMAL_SPL */
Eran Libertyf046ccd2005-07-28 10:08:46 -0500764
765 .globl dcache_enable
766dcache_enable:
767 mfspr r3, HID0
Kumar Gala2688e2f2006-02-10 15:40:06 -0600768 li r5, HID0_DCFI|HID0_DLOCK
769 andc r3, r3, r5
Kumar Gala2688e2f2006-02-10 15:40:06 -0600770 ori r3, r3, HID0_DCE
Eran Libertyf046ccd2005-07-28 10:08:46 -0500771 sync
Nick Spence6eb2a442008-08-28 14:09:25 -0700772 mtspr HID0, r3 /* enable, no invalidate */
Eran Libertyf046ccd2005-07-28 10:08:46 -0500773 blr
774
775 .globl dcache_disable
776dcache_disable:
Nick Spence6eb2a442008-08-28 14:09:25 -0700777 mflr r4
778 bl flush_dcache /* uses r3 and r5 */
Eran Libertyf046ccd2005-07-28 10:08:46 -0500779 mfspr r3, HID0
Nick Spence6eb2a442008-08-28 14:09:25 -0700780 li r5, HID0_DCE|HID0_DLOCK
781 andc r3, r3, r5
782 ori r5, r3, HID0_DCFI
Eran Libertyf046ccd2005-07-28 10:08:46 -0500783 sync
Nick Spence6eb2a442008-08-28 14:09:25 -0700784 mtspr HID0, r5 /* sets invalidate, clears enable and lock */
Eran Libertyf046ccd2005-07-28 10:08:46 -0500785 sync
786 mtspr HID0, r3 /* clears invalidate */
Nick Spence6eb2a442008-08-28 14:09:25 -0700787 mtlr r4
Eran Libertyf046ccd2005-07-28 10:08:46 -0500788 blr
789
790 .globl dcache_status
791dcache_status:
792 mfspr r3, HID0
Marian Balakowicza7c66ad2006-03-14 16:01:25 +0100793 rlwinm r3, r3, (31 - HID0_DCE_SHIFT + 1), 31, 31
Eran Libertyf046ccd2005-07-28 10:08:46 -0500794 blr
795
Nick Spence6eb2a442008-08-28 14:09:25 -0700796 .globl flush_dcache
797flush_dcache:
798 lis r3, 0
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200799 lis r5, CONFIG_SYS_CACHELINE_SIZE
Nick Spence6eb2a442008-08-28 14:09:25 -07008001: cmp 0, 1, r3, r5
801 bge 2f
802 lwz r5, 0(r3)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200803 lis r5, CONFIG_SYS_CACHELINE_SIZE
Nick Spence6eb2a442008-08-28 14:09:25 -0700804 addi r3, r3, 0x4
805 b 1b
8062: blr
807
Eran Libertyf046ccd2005-07-28 10:08:46 -0500808/*-------------------------------------------------------------------*/
809
810/*
811 * void relocate_code (addr_sp, gd, addr_moni)
812 *
813 * This "function" does not return, instead it continues in RAM
814 * after relocating the monitor code.
815 *
816 * r3 = dest
817 * r4 = src
818 * r5 = length in bytes
819 * r6 = cachelinesize
820 */
821 .globl relocate_code
822relocate_code:
823 mr r1, r3 /* Set new stack pointer */
824 mr r9, r4 /* Save copy of Global Data pointer */
825 mr r10, r5 /* Save copy of Destination Address */
826
Joakim Tjernlund0f8aa152010-01-19 14:41:56 +0100827 GET_GOT
Eran Libertyf046ccd2005-07-28 10:08:46 -0500828 mr r3, r5 /* Destination Address */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200829 lis r4, CONFIG_SYS_MONITOR_BASE@h /* Source Address */
830 ori r4, r4, CONFIG_SYS_MONITOR_BASE@l
Scott Woode4c09502008-06-30 14:13:28 -0500831 lwz r5, GOT(__bss_start)
Eran Libertyf046ccd2005-07-28 10:08:46 -0500832 sub r5, r5, r4
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200833 li r6, CONFIG_SYS_CACHELINE_SIZE /* Cache Line Size */
Eran Libertyf046ccd2005-07-28 10:08:46 -0500834
835 /*
836 * Fix GOT pointer:
837 *
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200838 * New GOT-PTR = (old GOT-PTR - CONFIG_SYS_MONITOR_BASE)
Eran Libertyf046ccd2005-07-28 10:08:46 -0500839 * + Destination Address
840 *
841 * Offset:
842 */
843 sub r15, r10, r4
844
845 /* First our own GOT */
Joakim Tjernlund0f8aa152010-01-19 14:41:56 +0100846 add r12, r12, r15
Eran Libertyf046ccd2005-07-28 10:08:46 -0500847 /* then the one used by the C code */
848 add r30, r30, r15
849
850 /*
851 * Now relocate code
852 */
853
854 cmplw cr1,r3,r4
855 addi r0,r5,3
856 srwi. r0,r0,2
857 beq cr1,4f /* In place copy is not necessary */
858 beq 7f /* Protect against 0 count */
859 mtctr r0
860 bge cr1,2f
861 la r8,-4(r4)
862 la r7,-4(r3)
863
864 /* copy */
8651: lwzu r0,4(r8)
866 stwu r0,4(r7)
867 bdnz 1b
868
869 addi r0,r5,3
870 srwi. r0,r0,2
871 mtctr r0
872 la r8,-4(r4)
873 la r7,-4(r3)
Jon Loeligerde1d0a62005-08-01 13:20:47 -0500874
875 /* and compare */
Eran Libertyf046ccd2005-07-28 10:08:46 -050087620: lwzu r20,4(r8)
877 lwzu r21,4(r7)
878 xor. r22, r20, r21
879 bne 30f
880 bdnz 20b
881 b 4f
882
883 /* compare failed */
88430: li r3, 0
885 blr
886
8872: slwi r0,r0,2 /* re copy in reverse order ... y do we needed it? */
888 add r8,r4,r0
889 add r7,r3,r0
8903: lwzu r0,-4(r8)
891 stwu r0,-4(r7)
892 bdnz 3b
Eran Libertyf046ccd2005-07-28 10:08:46 -0500893
894/*
895 * Now flush the cache: note that we must start from a cache aligned
896 * address. Otherwise we might miss one cache line.
897 */
Kumar Gala2688e2f2006-02-10 15:40:06 -06008984: cmpwi r6,0
Eran Libertyf046ccd2005-07-28 10:08:46 -0500899 add r5,r3,r5
Kumar Gala2688e2f2006-02-10 15:40:06 -0600900 beq 7f /* Always flush prefetch queue in any case */
Eran Libertyf046ccd2005-07-28 10:08:46 -0500901 subi r0,r6,1
902 andc r3,r3,r0
Eran Libertyf046ccd2005-07-28 10:08:46 -0500903 mr r4,r3
9045: dcbst 0,r4
905 add r4,r4,r6
906 cmplw r4,r5
907 blt 5b
Kumar Gala2688e2f2006-02-10 15:40:06 -0600908 sync /* Wait for all dcbst to complete on bus */
Eran Libertyf046ccd2005-07-28 10:08:46 -0500909 mr r4,r3
9106: icbi 0,r4
911 add r4,r4,r6
912 cmplw r4,r5
913 blt 6b
Kumar Gala2688e2f2006-02-10 15:40:06 -06009147: sync /* Wait for all icbi to complete on bus */
Eran Libertyf046ccd2005-07-28 10:08:46 -0500915 isync
916
917/*
918 * We are done. Do not return, instead branch to second part of board
919 * initialization, now running from RAM.
920 */
Eran Libertyf046ccd2005-07-28 10:08:46 -0500921 addi r0, r10, in_ram - _start + EXC_OFF_SYS_RESET
922 mtlr r0
923 blr
924
925in_ram:
926
927 /*
Joakim Tjernlund0f8aa152010-01-19 14:41:56 +0100928 * Relocation Function, r12 point to got2+0x8000
Eran Libertyf046ccd2005-07-28 10:08:46 -0500929 *
930 * Adjust got2 pointers, no need to check for 0, this code
931 * already puts a few entries in the table.
932 */
933 li r0,__got2_entries@sectoff@l
934 la r3,GOT(_GOT2_TABLE_)
935 lwz r11,GOT(_GOT2_TABLE_)
936 mtctr r0
937 sub r11,r3,r11
938 addi r3,r3,-4
9391: lwzu r0,4(r3)
Joakim Tjernlundafc3ba02009-10-08 02:03:51 +0200940 cmpwi r0,0
941 beq- 2f
Eran Libertyf046ccd2005-07-28 10:08:46 -0500942 add r0,r0,r11
943 stw r0,0(r3)
Joakim Tjernlundafc3ba02009-10-08 02:03:51 +02009442: bdnz 1b
Eran Libertyf046ccd2005-07-28 10:08:46 -0500945
Scott Wood06f60ae2012-12-06 13:33:17 +0000946#ifndef MINIMAL_SPL
Eran Libertyf046ccd2005-07-28 10:08:46 -0500947 /*
948 * Now adjust the fixups and the pointers to the fixups
949 * in case we need to move ourselves again.
950 */
Joakim Tjernlundafc3ba02009-10-08 02:03:51 +0200951 li r0,__fixup_entries@sectoff@l
Eran Libertyf046ccd2005-07-28 10:08:46 -0500952 lwz r3,GOT(_FIXUP_TABLE_)
953 cmpwi r0,0
954 mtctr r0
955 addi r3,r3,-4
956 beq 4f
9573: lwzu r4,4(r3)
958 lwzux r0,r4,r11
Joakim Tjernlundd1e0b102010-10-14 11:51:44 +0200959 cmpwi r0,0
Eran Libertyf046ccd2005-07-28 10:08:46 -0500960 add r0,r0,r11
Joakim Tjernlund34bbf612010-11-04 19:02:00 +0100961 stw r4,0(r3)
Joakim Tjernlundd1e0b102010-10-14 11:51:44 +0200962 beq- 5f
Eran Libertyf046ccd2005-07-28 10:08:46 -0500963 stw r0,0(r4)
Joakim Tjernlundd1e0b102010-10-14 11:51:44 +02009645: bdnz 3b
Eran Libertyf046ccd2005-07-28 10:08:46 -05009654:
Scott Woode4c09502008-06-30 14:13:28 -0500966#endif
967
Eran Libertyf046ccd2005-07-28 10:08:46 -0500968clear_bss:
969 /*
970 * Now clear BSS segment
971 */
972 lwz r3,GOT(__bss_start)
973#if defined(CONFIG_HYMOD)
974 /*
975 * For HYMOD - the environment is the very last item in flash.
976 * The real .bss stops just before environment starts, so only
977 * clear up to that point.
978 *
979 * taken from mods for FADS board
980 */
981 lwz r4,GOT(environment)
982#else
Po-Yu Chuang44c6e652011-03-01 22:59:59 +0000983 lwz r4,GOT(__bss_end__)
Eran Libertyf046ccd2005-07-28 10:08:46 -0500984#endif
985
986 cmplw 0, r3, r4
987 beq 6f
988
989 li r0, 0
9905:
991 stw r0, 0(r3)
992 addi r3, r3, 4
993 cmplw 0, r3, r4
994 bne 5b
9956:
996
997 mr r3, r9 /* Global Data pointer */
998 mr r4, r10 /* Destination Address */
999 bl board_init_r
1000
Scott Wood06f60ae2012-12-06 13:33:17 +00001001#ifndef MINIMAL_SPL
Eran Libertyf046ccd2005-07-28 10:08:46 -05001002 /*
1003 * Copy exception vector code to low memory
1004 *
1005 * r3: dest_addr
1006 * r7: source address, r8: end address, r9: target address
1007 */
1008 .globl trap_init
1009trap_init:
Joakim Tjernlund0f8aa152010-01-19 14:41:56 +01001010 mflr r4 /* save link register */
1011 GET_GOT
Eran Libertyf046ccd2005-07-28 10:08:46 -05001012 lwz r7, GOT(_start)
1013 lwz r8, GOT(_end_of_vectors)
1014
1015 li r9, 0x100 /* reset vector always at 0x100 */
1016
1017 cmplw 0, r7, r8
1018 bgelr /* return if r7>=r8 - just in case */
Eran Libertyf046ccd2005-07-28 10:08:46 -050010191:
1020 lwz r0, 0(r7)
1021 stw r0, 0(r9)
1022 addi r7, r7, 4
1023 addi r9, r9, 4
1024 cmplw 0, r7, r8
1025 bne 1b
1026
1027 /*
1028 * relocate `hdlr' and `int_return' entries
1029 */
1030 li r7, .L_MachineCheck - _start + EXC_OFF_SYS_RESET
1031 li r8, Alignment - _start + EXC_OFF_SYS_RESET
10322:
1033 bl trap_reloc
1034 addi r7, r7, 0x100 /* next exception vector */
1035 cmplw 0, r7, r8
1036 blt 2b
1037
1038 li r7, .L_Alignment - _start + EXC_OFF_SYS_RESET
1039 bl trap_reloc
1040
1041 li r7, .L_ProgramCheck - _start + EXC_OFF_SYS_RESET
1042 bl trap_reloc
1043
1044 li r7, .L_FPUnavailable - _start + EXC_OFF_SYS_RESET
1045 li r8, SystemCall - _start + EXC_OFF_SYS_RESET
10463:
1047 bl trap_reloc
1048 addi r7, r7, 0x100 /* next exception vector */
1049 cmplw 0, r7, r8
1050 blt 3b
1051
1052 li r7, .L_SingleStep - _start + EXC_OFF_SYS_RESET
1053 li r8, _end_of_vectors - _start + EXC_OFF_SYS_RESET
10544:
1055 bl trap_reloc
1056 addi r7, r7, 0x100 /* next exception vector */
1057 cmplw 0, r7, r8
1058 blt 4b
1059
1060 mfmsr r3 /* now that the vectors have */
1061 lis r7, MSR_IP@h /* relocated into low memory */
1062 ori r7, r7, MSR_IP@l /* MSR[IP] can be turned off */
1063 andc r3, r3, r7 /* (if it was on) */
1064 SYNC /* Some chip revs need this... */
1065 mtmsr r3
1066 SYNC
1067
1068 mtlr r4 /* restore link register */
1069 blr
1070
Scott Wood06f60ae2012-12-06 13:33:17 +00001071#endif /* !MINIMAL_SPL */
Eran Libertyf046ccd2005-07-28 10:08:46 -05001072
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001073#ifdef CONFIG_SYS_INIT_RAM_LOCK
Kumar Gala2688e2f2006-02-10 15:40:06 -06001074lock_ram_in_cache:
1075 /* Allocate Initial RAM in data cache.
1076 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001077 lis r3, (CONFIG_SYS_INIT_RAM_ADDR & ~31)@h
1078 ori r3, r3, (CONFIG_SYS_INIT_RAM_ADDR & ~31)@l
Wolfgang Denk553f0982010-10-26 13:32:32 +02001079 li r4, ((CONFIG_SYS_INIT_RAM_SIZE & ~31) + \
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001080 (CONFIG_SYS_INIT_RAM_ADDR & 31) + 31) / 32
Nick Spenceade50c72008-08-28 14:09:11 -07001081 mtctr r4
Kumar Gala2688e2f2006-02-10 15:40:06 -060010821:
1083 dcbz r0, r3
1084 addi r3, r3, 32
1085 bdnz 1b
1086
1087 /* Lock the data cache */
1088 mfspr r0, HID0
Nick Spence6eb2a442008-08-28 14:09:25 -07001089 ori r0, r0, HID0_DLOCK
Kumar Gala2688e2f2006-02-10 15:40:06 -06001090 sync
1091 mtspr HID0, r0
1092 sync
1093 blr
1094
Scott Wood06f60ae2012-12-06 13:33:17 +00001095#ifndef MINIMAL_SPL
Eran Libertyf046ccd2005-07-28 10:08:46 -05001096.globl unlock_ram_in_cache
1097unlock_ram_in_cache:
1098 /* invalidate the INIT_RAM section */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001099 lis r3, (CONFIG_SYS_INIT_RAM_ADDR & ~31)@h
1100 ori r3, r3, (CONFIG_SYS_INIT_RAM_ADDR & ~31)@l
Wolfgang Denk553f0982010-10-26 13:32:32 +02001101 li r4, ((CONFIG_SYS_INIT_RAM_SIZE & ~31) + \
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001102 (CONFIG_SYS_INIT_RAM_ADDR & 31) + 31) / 32
Nick Spenceade50c72008-08-28 14:09:11 -07001103 mtctr r4
Eran Libertyf046ccd2005-07-28 10:08:46 -050011041: icbi r0, r3
1105 dcbi r0, r3
1106 addi r3, r3, 32
1107 bdnz 1b
1108 sync /* Wait for all icbi to complete on bus */
1109 isync
Kumar Gala2688e2f2006-02-10 15:40:06 -06001110
1111 /* Unlock the data cache and invalidate it */
1112 mfspr r3, HID0
1113 li r5, HID0_DLOCK|HID0_DCFI
1114 andc r3, r3, r5 /* no invalidate, unlock */
1115 ori r5, r3, HID0_DCFI /* invalidate, unlock */
Kumar Gala2688e2f2006-02-10 15:40:06 -06001116 sync
Nick Spence6eb2a442008-08-28 14:09:25 -07001117 mtspr HID0, r5 /* invalidate, unlock */
1118 sync
1119 mtspr HID0, r3 /* no invalidate, unlock */
Eran Libertyf046ccd2005-07-28 10:08:46 -05001120 blr
Scott Wood06f60ae2012-12-06 13:33:17 +00001121#endif /* !MINIMAL_SPL */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001122#endif /* CONFIG_SYS_INIT_RAM_LOCK */
Eran Libertyf046ccd2005-07-28 10:08:46 -05001123
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001124#ifdef CONFIG_SYS_FLASHBOOT
Eran Libertyf046ccd2005-07-28 10:08:46 -05001125map_flash_by_law1:
1126 /* When booting from ROM (Flash or EPROM), clear the */
1127 /* Address Mask in OR0 so ROM appears everywhere */
1128 /*----------------------------------------------------*/
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001129 lis r3, (CONFIG_SYS_IMMR)@h /* r3 <= CONFIG_SYS_IMMR */
Jon Loeligerde1d0a62005-08-01 13:20:47 -05001130 lwz r4, OR0@l(r3)
Eran Libertyf046ccd2005-07-28 10:08:46 -05001131 li r5, 0x7fff /* r5 <= 0x00007FFFF */
Jon Loeligerde1d0a62005-08-01 13:20:47 -05001132 and r4, r4, r5
Eran Libertyf046ccd2005-07-28 10:08:46 -05001133 stw r4, OR0@l(r3) /* OR0 <= OR0 & 0x00007FFFF */
1134
1135 /* As MPC8349E User's Manual presented, when RCW[BMS] is set to 0,
1136 * system will boot from 0x0000_0100, and the LBLAWBAR0[BASE_ADDR]
1137 * reset value is 0x00000; when RCW[BMS] is set to 1, system will boot
1138 * from 0xFFF0_0100, and the LBLAWBAR0[BASE_ADDR] reset value is
1139 * 0xFF800. From the hard resetting to here, the processor fetched and
1140 * executed the instructions one by one. There is not absolutely
1141 * jumping happened. Laterly, the u-boot code has to do an absolutely
1142 * jumping to tell the CPU instruction fetching component what the
1143 * u-boot TEXT base address is. Because the TEXT base resides in the
1144 * boot ROM memory space, to garantee the code can run smoothly after
1145 * that jumping, we must map in the entire boot ROM by Local Access
1146 * Window. Sometimes, we desire an non-0x00000 or non-0xFF800 starting
1147 * address for boot ROM, such as 0xFE000000. In this case, the default
1148 * LBIU Local Access Widow 0 will not cover this memory space. So, we
1149 * need another window to map in it.
1150 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001151 lis r4, (CONFIG_SYS_FLASH_BASE)@h
1152 ori r4, r4, (CONFIG_SYS_FLASH_BASE)@l
1153 stw r4, LBLAWBAR1(r3) /* LBLAWBAR1 <= CONFIG_SYS_FLASH_BASE */
Timur Tabi31068b72006-08-22 17:07:00 -05001154
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001155 /* Store 0x80000012 + log2(CONFIG_SYS_FLASH_SIZE) into LBLAWAR1 */
Timur Tabi31068b72006-08-22 17:07:00 -05001156 lis r4, (0x80000012)@h
1157 ori r4, r4, (0x80000012)@l
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001158 li r5, CONFIG_SYS_FLASH_SIZE
Timur Tabi31068b72006-08-22 17:07:00 -050011591: srawi. r5, r5, 1 /* r5 = r5 >> 1 */
1160 addi r4, r4, 1
1161 bne 1b
1162
Eran Libertyf046ccd2005-07-28 10:08:46 -05001163 stw r4, LBLAWAR1(r3) /* LBLAWAR1 <= 8MB Flash Size */
Joakim Tjernlunde45c98a2010-11-19 14:15:33 +01001164 /* Wait for HW to catch up */
1165 lwz r4, LBLAWAR1(r3)
1166 twi 0,r4,0
1167 isync
Eran Libertyf046ccd2005-07-28 10:08:46 -05001168 blr
1169
1170 /* Though all the LBIU Local Access Windows and LBC Banks will be
1171 * initialized in the C code, we'd better configure boot ROM's
1172 * window 0 and bank 0 correctly at here.
1173 */
1174remap_flash_by_law0:
1175 /* Initialize the BR0 with the boot ROM starting address. */
1176 lwz r4, BR0(r3)
1177 li r5, 0x7FFF
Jon Loeligerde1d0a62005-08-01 13:20:47 -05001178 and r4, r4, r5
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001179 lis r5, (CONFIG_SYS_FLASH_BASE & 0xFFFF8000)@h
1180 ori r5, r5, (CONFIG_SYS_FLASH_BASE & 0xFFFF8000)@l
Eran Libertyf046ccd2005-07-28 10:08:46 -05001181 or r5, r5, r4
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001182 stw r5, BR0(r3) /* r5 <= (CONFIG_SYS_FLASH_BASE & 0xFFFF8000) | (BR0 & 0x00007FFF) */
Eran Libertyf046ccd2005-07-28 10:08:46 -05001183
1184 lwz r4, OR0(r3)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001185 lis r5, ~((CONFIG_SYS_FLASH_SIZE << 4) - 1)
Eran Libertyf046ccd2005-07-28 10:08:46 -05001186 or r4, r4, r5
Timur Tabi31068b72006-08-22 17:07:00 -05001187 stw r4, OR0(r3)
Eran Libertyf046ccd2005-07-28 10:08:46 -05001188
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001189 lis r4, (CONFIG_SYS_FLASH_BASE)@h
1190 ori r4, r4, (CONFIG_SYS_FLASH_BASE)@l
1191 stw r4, LBLAWBAR0(r3) /* LBLAWBAR0 <= CONFIG_SYS_FLASH_BASE */
Eran Libertyf046ccd2005-07-28 10:08:46 -05001192
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001193 /* Store 0x80000012 + log2(CONFIG_SYS_FLASH_SIZE) into LBLAWAR0 */
Timur Tabi31068b72006-08-22 17:07:00 -05001194 lis r4, (0x80000012)@h
1195 ori r4, r4, (0x80000012)@l
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001196 li r5, CONFIG_SYS_FLASH_SIZE
Timur Tabi31068b72006-08-22 17:07:00 -050011971: srawi. r5, r5, 1 /* r5 = r5 >> 1 */
1198 addi r4, r4, 1
1199 bne 1b
1200 stw r4, LBLAWAR0(r3) /* LBLAWAR0 <= Flash Size */
1201
Eran Libertyf046ccd2005-07-28 10:08:46 -05001202
1203 xor r4, r4, r4
1204 stw r4, LBLAWBAR1(r3)
1205 stw r4, LBLAWAR1(r3) /* Off LBIU LAW1 */
Joakim Tjernlunde45c98a2010-11-19 14:15:33 +01001206 /* Wait for HW to catch up */
1207 lwz r4, LBLAWAR1(r3)
1208 twi 0,r4,0
1209 isync
Eran Libertyf046ccd2005-07-28 10:08:46 -05001210 blr
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001211#endif /* CONFIG_SYS_FLASHBOOT */