blob: bdce91581cd8664e65212b6248aa65d9fdccbc71 [file] [log] [blame]
Eran Liberty9095d4a2005-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 Woodb71689b2008-06-30 14:13:28 -05005 * Copyright Freescale Semiconductor, Inc. 2004, 2006, 2008.
Eran Liberty9095d4a2005-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
30#include <config.h>
Jon Loeligerebc72242005-08-01 13:20:47 -050031#include <mpc83xx.h>
Peter Tyser62948502008-11-03 09:30:59 -060032#include <timestamp.h>
Eran Liberty9095d4a2005-07-28 10:08:46 -050033#include <version.h>
34
35#define CONFIG_83XX 1 /* needed for Linux kernel header files*/
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 "MPC83XX"
46#endif
47
48/* 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
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020061#if !defined(CONFIG_NAND_SPL) && !defined(CONFIG_SYS_RAMBOOT)
62#define CONFIG_SYS_FLASHBOOT
Scott Woodb71689b2008-06-30 14:13:28 -050063#endif
64
Eran Liberty9095d4a2005-07-28 10:08:46 -050065/*
66 * Set up GOT: Global Offset Table
67 *
Joakim Tjernlund3fbaa4d2010-01-19 14:41:56 +010068 * Use r12 to access the GOT
Eran Liberty9095d4a2005-07-28 10:08:46 -050069 */
70 START_GOT
71 GOT_ENTRY(_GOT2_TABLE_)
Scott Woodb71689b2008-06-30 14:13:28 -050072 GOT_ENTRY(__bss_start)
73 GOT_ENTRY(_end)
Eran Liberty9095d4a2005-07-28 10:08:46 -050074
Scott Woodb71689b2008-06-30 14:13:28 -050075#ifndef CONFIG_NAND_SPL
76 GOT_ENTRY(_FIXUP_TABLE_)
Eran Liberty9095d4a2005-07-28 10:08:46 -050077 GOT_ENTRY(_start)
78 GOT_ENTRY(_start_of_vectors)
79 GOT_ENTRY(_end_of_vectors)
80 GOT_ENTRY(transfer_to_handler)
Scott Woodb71689b2008-06-30 14:13:28 -050081#endif
Eran Liberty9095d4a2005-07-28 10:08:46 -050082 END_GOT
83
84/*
Jerry Van Baren93eb9312006-12-06 21:23:55 -050085 * The Hard Reset Configuration Word (HRCW) table is in the first 64
86 * (0x40) bytes of flash. It has 8 bytes, but each byte is repeated 8
87 * times so the processor can fetch it out of flash whether the flash
88 * is 8, 16, 32, or 64 bits wide (hardware trickery).
Eran Liberty9095d4a2005-07-28 10:08:46 -050089 */
Eran Liberty9095d4a2005-07-28 10:08:46 -050090 .text
91#define _HRCW_TABLE_ENTRY(w) \
92 .fill 8,1,(((w)>>24)&0xff); \
93 .fill 8,1,(((w)>>16)&0xff); \
94 .fill 8,1,(((w)>> 8)&0xff); \
95 .fill 8,1,(((w) )&0xff)
96
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020097 _HRCW_TABLE_ENTRY(CONFIG_SYS_HRCW_LOW)
98 _HRCW_TABLE_ENTRY(CONFIG_SYS_HRCW_HIGH)
Eran Liberty9095d4a2005-07-28 10:08:46 -050099
Jerry Van Baren93eb9312006-12-06 21:23:55 -0500100/*
101 * Magic number and version string - put it after the HRCW since it
102 * cannot be first in flash like it is in many other processors.
103 */
104 .long 0x27051956 /* U-Boot Magic Number */
105
106 .globl version_string
107version_string:
108 .ascii U_BOOT_VERSION
Peter Tyser62948502008-11-03 09:30:59 -0600109 .ascii " (", U_BOOT_DATE, " - ", U_BOOT_TIME, ")"
Jerry Van Baren93eb9312006-12-06 21:23:55 -0500110 .ascii " ", CONFIG_IDENT_STRING, "\0"
111
Ron Madrid787b61d2008-12-12 13:12:45 -0800112 .align 2
113
114 .globl enable_addr_trans
115enable_addr_trans:
116 /* enable address translation */
117 mfmsr r5
118 ori r5, r5, (MSR_IR | MSR_DR)
119 mtmsr r5
120 isync
121 blr
122
123 .globl disable_addr_trans
124disable_addr_trans:
125 /* disable address translation */
126 mflr r4
127 mfmsr r3
128 andi. r0, r3, (MSR_IR | MSR_DR)
129 beqlr
130 andc r3, r3, r0
131 mtspr SRR0, r4
132 mtspr SRR1, r3
133 rfi
134
135 .globl get_pvr
136get_pvr:
137 mfspr r3, PVR
138 blr
139
140 .globl ppcDWstore
141ppcDWstore:
142 lfd 1, 0(r4)
143 stfd 1, 0(r3)
144 blr
145
146 .globl ppcDWload
147ppcDWload:
148 lfd 1, 0(r3)
149 stfd 1, 0(r4)
150 blr
Eran Liberty9095d4a2005-07-28 10:08:46 -0500151
Eran Liberty9095d4a2005-07-28 10:08:46 -0500152#ifndef CONFIG_DEFAULT_IMMR
153#error CONFIG_DEFAULT_IMMR must be defined
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200154#endif /* CONFIG_SYS_DEFAULT_IMMR */
155#ifndef CONFIG_SYS_IMMR
156#define CONFIG_SYS_IMMR CONFIG_DEFAULT_IMMR
157#endif /* CONFIG_SYS_IMMR */
Eran Liberty9095d4a2005-07-28 10:08:46 -0500158
159/*
160 * After configuration, a system reset exception is executed using the
161 * vector at offset 0x100 relative to the base set by MSR[IP]. If
162 * MSR[IP] is 0, the base address is 0x00000000. If MSR[IP] is 1, the
163 * base address is 0xfff00000. In the case of a Power On Reset or Hard
164 * Reset, the value of MSR[IP] is determined by the CIP field in the
165 * HRCW.
166 *
167 * Other bits in the HRCW set up the Base Address and Port Size in BR0.
168 * This determines the location of the boot ROM (flash or EPROM) in the
169 * processor's address space at boot time. As long as the HRCW is set up
170 * so that we eventually end up executing the code below when the
171 * processor executes the reset exception, the actual values used should
172 * not matter.
173 *
174 * Once we have got here, the address mask in OR0 is cleared so that the
175 * bottom 32K of the boot ROM is effectively repeated all throughout the
176 * processor's address space, after which we can jump to the absolute
177 * address at which the boot ROM was linked at compile time, and proceed
178 * to initialise the memory controller without worrying if the rug will
179 * be pulled out from under us, so to speak (it will be fine as long as
180 * we configure BR0 with the same boot ROM link address).
181 */
182 . = EXC_OFF_SYS_RESET
183
184 .globl _start
185_start: /* time t 0 */
Eran Liberty9095d4a2005-07-28 10:08:46 -0500186 lis r4, CONFIG_DEFAULT_IMMR@h
187 nop
Peter Tyser0c44caf2010-09-14 19:13:53 -0500188
Eran Liberty9095d4a2005-07-28 10:08:46 -0500189 mfmsr r5 /* save msr contents */
Scott Wood838450e2009-01-20 11:56:11 -0600190
191 /* 83xx manuals prescribe a specific sequence for updating IMMRBAR. */
192 bl 1f
1931: mflr r7
194
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200195 lis r3, CONFIG_SYS_IMMR@h
196 ori r3, r3, CONFIG_SYS_IMMR@l
Scott Wood838450e2009-01-20 11:56:11 -0600197
198 lwz r6, IMMRBAR(r4)
199 isync
200
Eran Liberty9095d4a2005-07-28 10:08:46 -0500201 stw r3, IMMRBAR(r4)
Scott Wood838450e2009-01-20 11:56:11 -0600202 lwz r6, 0(r7) /* Arbitrary external load */
203 isync
204
205 lwz r6, IMMRBAR(r3)
206 isync
Jon Loeligerebc72242005-08-01 13:20:47 -0500207
Eran Liberty9095d4a2005-07-28 10:08:46 -0500208 /* Initialise the E300 processor core */
209 /*------------------------------------------*/
Jon Loeligerebc72242005-08-01 13:20:47 -0500210
Lepcha Suchit7ed421f2008-10-16 13:38:00 -0500211#ifdef CONFIG_NAND_SPL
212 /* The FCM begins execution after only the first page
213 * is loaded. Wait for the rest before branching
214 * to another flash page.
215 */
Scott Wood838450e2009-01-20 11:56:11 -06002161: lwz r6, 0x50b0(r3)
Lepcha Suchit7ed421f2008-10-16 13:38:00 -0500217 andi. r6, r6, 1
218 beq 1b
219#endif
220
Eran Liberty9095d4a2005-07-28 10:08:46 -0500221 bl init_e300_core
Jon Loeligerebc72242005-08-01 13:20:47 -0500222
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200223#ifdef CONFIG_SYS_FLASHBOOT
Eran Liberty9095d4a2005-07-28 10:08:46 -0500224
225 /* Inflate flash location so it appears everywhere, calculate */
226 /* the absolute address in final location of the FLASH, jump */
227 /* there and deflate the flash size back to minimal size */
228 /*------------------------------------------------------------*/
229 bl map_flash_by_law1
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200230 lis r4, (CONFIG_SYS_MONITOR_BASE)@h
231 ori r4, r4, (CONFIG_SYS_MONITOR_BASE)@l
Eran Liberty9095d4a2005-07-28 10:08:46 -0500232 addi r5, r4, in_flash - _start + EXC_OFF_SYS_RESET
233 mtlr r5
234 blr
235in_flash:
236#if 1 /* Remapping flash with LAW0. */
237 bl remap_flash_by_law0
238#endif
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200239#endif /* CONFIG_SYS_FLASHBOOT */
Eran Liberty9095d4a2005-07-28 10:08:46 -0500240
Kumar Galad5d94d62006-02-10 15:40:06 -0600241 /* setup the bats */
242 bl setup_bats
243 sync
244
245 /*
246 * Cache must be enabled here for stack-in-cache trick.
247 * This means we need to enable the BATS.
248 * This means:
249 * 1) for the EVB, original gt regs need to be mapped
250 * 2) need to have an IBAT for the 0xf region,
251 * we are running there!
252 * Cache should be turned on after BATs, since by default
253 * everything is write-through.
254 * The init-mem BAT can be reused after reloc. The old
255 * gt-regs BAT can be reused after board_init_f calls
256 * board_early_init_f (EVB only).
257 */
258 /* enable address translation */
259 bl enable_addr_trans
260 sync
261
Nick Spence7c20aef2008-08-28 14:09:25 -0700262 /* enable the data cache */
Kumar Galad5d94d62006-02-10 15:40:06 -0600263 bl dcache_enable
264 sync
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200265#ifdef CONFIG_SYS_INIT_RAM_LOCK
Kumar Galad5d94d62006-02-10 15:40:06 -0600266 bl lock_ram_in_cache
267 sync
268#endif
269
270 /* set up the stack pointer in our newly created
271 * cache-ram (r1) */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200272 lis r1, (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_GBL_DATA_OFFSET)@h
273 ori r1, r1, (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_GBL_DATA_OFFSET)@l
Kumar Galad5d94d62006-02-10 15:40:06 -0600274
275 li r0, 0 /* Make room for stack frame header and */
276 stwu r0, -4(r1) /* clear final stack frame so that */
277 stwu r0, -4(r1) /* stack backtraces terminate cleanly */
278
Eran Liberty9095d4a2005-07-28 10:08:46 -0500279
280 /* let the C-code set up the rest */
Kumar Galad5d94d62006-02-10 15:40:06 -0600281 /* */
Eran Liberty9095d4a2005-07-28 10:08:46 -0500282 /* Be careful to keep code relocatable & stack humble */
283 /*------------------------------------------------------*/
284
285 GET_GOT /* initialize GOT access */
286
287 /* r3: IMMR */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200288 lis r3, CONFIG_SYS_IMMR@h
Eran Liberty9095d4a2005-07-28 10:08:46 -0500289 /* run low-level CPU init code (in Flash)*/
290 bl cpu_init_f
291
Eran Liberty9095d4a2005-07-28 10:08:46 -0500292 /* run 1st part of board init code (in Flash)*/
293 bl board_init_f
294
Peter Tyser0c44caf2010-09-14 19:13:53 -0500295 /* NOTREACHED - board_init_f() does not return */
296
Scott Woodb71689b2008-06-30 14:13:28 -0500297#ifndef CONFIG_NAND_SPL
Eran Liberty9095d4a2005-07-28 10:08:46 -0500298/*
299 * Vector Table
300 */
301
302 .globl _start_of_vectors
303_start_of_vectors:
304
305/* Machine check */
306 STD_EXCEPTION(0x200, MachineCheck, MachineCheckException)
307
308/* Data Storage exception. */
309 STD_EXCEPTION(0x300, DataStorage, UnknownException)
310
311/* Instruction Storage exception. */
312 STD_EXCEPTION(0x400, InstStorage, UnknownException)
313
314/* External Interrupt exception. */
315#ifndef FIXME
316 STD_EXCEPTION(0x500, ExtInterrupt, external_interrupt)
Jon Loeligerebc72242005-08-01 13:20:47 -0500317#endif
Eran Liberty9095d4a2005-07-28 10:08:46 -0500318
319/* Alignment exception. */
320 . = 0x600
321Alignment:
Rafal Jaworowski06244e42007-06-22 14:58:04 +0200322 EXCEPTION_PROLOG(SRR0, SRR1)
Eran Liberty9095d4a2005-07-28 10:08:46 -0500323 mfspr r4,DAR
324 stw r4,_DAR(r21)
325 mfspr r5,DSISR
326 stw r5,_DSISR(r21)
327 addi r3,r1,STACK_FRAME_OVERHEAD
Joakim Tjernlund4ff6bc02010-01-19 14:41:55 +0100328 EXC_XFER_TEMPLATE(Alignment, AlignmentException, MSR_KERNEL, COPY_EE)
Eran Liberty9095d4a2005-07-28 10:08:46 -0500329
330/* Program check exception */
331 . = 0x700
332ProgramCheck:
Rafal Jaworowski06244e42007-06-22 14:58:04 +0200333 EXCEPTION_PROLOG(SRR0, SRR1)
Eran Liberty9095d4a2005-07-28 10:08:46 -0500334 addi r3,r1,STACK_FRAME_OVERHEAD
Joakim Tjernlund4ff6bc02010-01-19 14:41:55 +0100335 EXC_XFER_TEMPLATE(ProgramCheck, ProgramCheckException,
336 MSR_KERNEL, COPY_EE)
Eran Liberty9095d4a2005-07-28 10:08:46 -0500337
338 STD_EXCEPTION(0x800, FPUnavailable, UnknownException)
339
340 /* I guess we could implement decrementer, and may have
341 * to someday for timekeeping.
342 */
343 STD_EXCEPTION(0x900, Decrementer, timer_interrupt)
344
345 STD_EXCEPTION(0xa00, Trap_0a, UnknownException)
346 STD_EXCEPTION(0xb00, Trap_0b, UnknownException)
347 STD_EXCEPTION(0xc00, SystemCall, UnknownException)
348 STD_EXCEPTION(0xd00, SingleStep, UnknownException)
349
350 STD_EXCEPTION(0xe00, Trap_0e, UnknownException)
351 STD_EXCEPTION(0xf00, Trap_0f, UnknownException)
352
353 STD_EXCEPTION(0x1000, InstructionTLBMiss, UnknownException)
354 STD_EXCEPTION(0x1100, DataLoadTLBMiss, UnknownException)
355 STD_EXCEPTION(0x1200, DataStoreTLBMiss, UnknownException)
356#ifdef DEBUG
357 . = 0x1300
358 /*
359 * This exception occurs when the program counter matches the
360 * Instruction Address Breakpoint Register (IABR).
361 *
362 * I want the cpu to halt if this occurs so I can hunt around
363 * with the debugger and look at things.
364 *
365 * When DEBUG is defined, both machine check enable (in the MSR)
366 * and checkstop reset enable (in the reset mode register) are
367 * turned off and so a checkstop condition will result in the cpu
368 * halting.
369 *
370 * I force the cpu into a checkstop condition by putting an illegal
371 * instruction here (at least this is the theory).
372 *
373 * well - that didnt work, so just do an infinite loop!
374 */
3751: b 1b
376#else
377 STD_EXCEPTION(0x1300, InstructionBreakpoint, DebugException)
378#endif
379 STD_EXCEPTION(0x1400, SMI, UnknownException)
380
381 STD_EXCEPTION(0x1500, Trap_15, UnknownException)
382 STD_EXCEPTION(0x1600, Trap_16, UnknownException)
383 STD_EXCEPTION(0x1700, Trap_17, UnknownException)
384 STD_EXCEPTION(0x1800, Trap_18, UnknownException)
385 STD_EXCEPTION(0x1900, Trap_19, UnknownException)
386 STD_EXCEPTION(0x1a00, Trap_1a, UnknownException)
387 STD_EXCEPTION(0x1b00, Trap_1b, UnknownException)
388 STD_EXCEPTION(0x1c00, Trap_1c, UnknownException)
389 STD_EXCEPTION(0x1d00, Trap_1d, UnknownException)
390 STD_EXCEPTION(0x1e00, Trap_1e, UnknownException)
391 STD_EXCEPTION(0x1f00, Trap_1f, UnknownException)
392 STD_EXCEPTION(0x2000, Trap_20, UnknownException)
393 STD_EXCEPTION(0x2100, Trap_21, UnknownException)
394 STD_EXCEPTION(0x2200, Trap_22, UnknownException)
395 STD_EXCEPTION(0x2300, Trap_23, UnknownException)
396 STD_EXCEPTION(0x2400, Trap_24, UnknownException)
397 STD_EXCEPTION(0x2500, Trap_25, UnknownException)
398 STD_EXCEPTION(0x2600, Trap_26, UnknownException)
399 STD_EXCEPTION(0x2700, Trap_27, UnknownException)
400 STD_EXCEPTION(0x2800, Trap_28, UnknownException)
401 STD_EXCEPTION(0x2900, Trap_29, UnknownException)
402 STD_EXCEPTION(0x2a00, Trap_2a, UnknownException)
403 STD_EXCEPTION(0x2b00, Trap_2b, UnknownException)
404 STD_EXCEPTION(0x2c00, Trap_2c, UnknownException)
405 STD_EXCEPTION(0x2d00, Trap_2d, UnknownException)
406 STD_EXCEPTION(0x2e00, Trap_2e, UnknownException)
407 STD_EXCEPTION(0x2f00, Trap_2f, UnknownException)
408
409
410 .globl _end_of_vectors
411_end_of_vectors:
412
413 . = 0x3000
414
415/*
416 * This code finishes saving the registers to the exception frame
417 * and jumps to the appropriate handler for the exception.
418 * Register r21 is pointer into trap frame, r1 has new stack pointer.
419 */
420 .globl transfer_to_handler
421transfer_to_handler:
422 stw r22,_NIP(r21)
423 lis r22,MSR_POW@h
424 andc r23,r23,r22
425 stw r23,_MSR(r21)
426 SAVE_GPR(7, r21)
427 SAVE_4GPRS(8, r21)
428 SAVE_8GPRS(12, r21)
429 SAVE_8GPRS(24, r21)
430 mflr r23
431 andi. r24,r23,0x3f00 /* get vector offset */
432 stw r24,TRAP(r21)
433 li r22,0
434 stw r22,RESULT(r21)
435 lwz r24,0(r23) /* virtual address of handler */
436 lwz r23,4(r23) /* where to go when done */
437 mtspr SRR0,r24
438 mtspr SRR1,r20
439 mtlr r23
440 SYNC
441 rfi /* jump to handler, enable MMU */
442
443int_return:
444 mfmsr r28 /* Disable interrupts */
445 li r4,0
446 ori r4,r4,MSR_EE
447 andc r28,r28,r4
448 SYNC /* Some chip revs need this... */
449 mtmsr r28
450 SYNC
451 lwz r2,_CTR(r1)
452 lwz r0,_LINK(r1)
453 mtctr r2
454 mtlr r0
455 lwz r2,_XER(r1)
456 lwz r0,_CCR(r1)
457 mtspr XER,r2
458 mtcrf 0xFF,r0
459 REST_10GPRS(3, r1)
460 REST_10GPRS(13, r1)
461 REST_8GPRS(23, r1)
462 REST_GPR(31, r1)
463 lwz r2,_NIP(r1) /* Restore environment */
464 lwz r0,_MSR(r1)
465 mtspr SRR0,r2
466 mtspr SRR1,r0
467 lwz r0,GPR0(r1)
468 lwz r2,GPR2(r1)
469 lwz r1,GPR1(r1)
470 SYNC
471 rfi
Scott Woodb71689b2008-06-30 14:13:28 -0500472#endif /* !CONFIG_NAND_SPL */
Eran Liberty9095d4a2005-07-28 10:08:46 -0500473
474/*
475 * This code initialises the E300 processor core
476 * (conforms to PowerPC 603e spec)
477 * Note: expects original MSR contents to be in r5.
478 */
479 .globl init_e300_core
480init_e300_core: /* time t 10 */
481 /* Initialize machine status; enable machine check interrupt */
482 /*-----------------------------------------------------------*/
483
484 li r3, MSR_KERNEL /* Set ME and RI flags */
485 rlwimi r3, r5, 0, 25, 25 /* preserve IP bit set by HRCW */
486#ifdef DEBUG
487 rlwimi r3, r5, 0, 21, 22 /* debugger might set SE & BE bits */
488#endif
489 SYNC /* Some chip revs need this... */
490 mtmsr r3
491 SYNC
492 mtspr SRR1, r3 /* Make SRR1 match MSR */
493
494
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200495 lis r3, CONFIG_SYS_IMMR@h
Eran Liberty9095d4a2005-07-28 10:08:46 -0500496#if defined(CONFIG_WATCHDOG)
Horst Kronstorfer4565e042010-05-18 10:37:05 +0200497 /* Initialise the Watchdog values and reset it (if req) */
Eran Liberty9095d4a2005-07-28 10:08:46 -0500498 /*------------------------------------------------------*/
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200499 lis r4, CONFIG_SYS_WATCHDOG_VALUE
Eran Liberty9095d4a2005-07-28 10:08:46 -0500500 ori r4, r4, (SWCRR_SWEN | SWCRR_SWRI | SWCRR_SWPR)
501 stw r4, SWCRR(r3)
Jon Loeligerebc72242005-08-01 13:20:47 -0500502
Eran Liberty9095d4a2005-07-28 10:08:46 -0500503 /* and reset it */
Jon Loeligerebc72242005-08-01 13:20:47 -0500504
Eran Liberty9095d4a2005-07-28 10:08:46 -0500505 li r4, 0x556C
506 sth r4, SWSRR@l(r3)
Heiko Schocher6dfb2e52008-01-11 15:15:17 +0100507 li r4, -0x55C7
Eran Liberty9095d4a2005-07-28 10:08:46 -0500508 sth r4, SWSRR@l(r3)
509#else
Horst Kronstorfer4565e042010-05-18 10:37:05 +0200510 /* Disable Watchdog */
Eran Liberty9095d4a2005-07-28 10:08:46 -0500511 /*-------------------*/
Kumar Galab42751c2006-01-11 11:23:01 -0600512 lwz r4, SWCRR(r3)
513 /* Check to see if its enabled for disabling
514 once disabled by SW you can't re-enable */
515 andi. r4, r4, 0x4
516 beq 1f
Eran Liberty9095d4a2005-07-28 10:08:46 -0500517 xor r4, r4, r4
518 stw r4, SWCRR(r3)
Kumar Galab42751c2006-01-11 11:23:01 -06005191:
Eran Liberty9095d4a2005-07-28 10:08:46 -0500520#endif /* CONFIG_WATCHDOG */
521
Nick Spence56fd3c22008-08-28 14:09:19 -0700522#if defined(CONFIG_MASK_AER_AO)
523 /* Write the Arbiter Event Enable to mask Address Only traps. */
524 /* This prevents the dcbz instruction from being trapped when */
525 /* HID0_ABE Address Broadcast Enable is set and the MEMORY */
526 /* COHERENCY bit is set in the WIMG bits, which is often */
527 /* needed for PCI operation. */
528 lwz r4, 0x0808(r3)
529 rlwinm r0, r4, 0, ~AER_AO
530 stw r0, 0x0808(r3)
531#endif /* CONFIG_MASK_AER_AO */
532
Eran Liberty9095d4a2005-07-28 10:08:46 -0500533 /* Initialize the Hardware Implementation-dependent Registers */
534 /* HID0 also contains cache control */
Nick Spence7c20aef2008-08-28 14:09:25 -0700535 /* - force invalidation of data and instruction caches */
Eran Liberty9095d4a2005-07-28 10:08:46 -0500536 /*------------------------------------------------------*/
537
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200538 lis r3, CONFIG_SYS_HID0_INIT@h
539 ori r3, r3, (CONFIG_SYS_HID0_INIT | HID0_ICFI | HID0_DCFI)@l
Eran Liberty9095d4a2005-07-28 10:08:46 -0500540 SYNC
541 mtspr HID0, r3
542
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200543 lis r3, CONFIG_SYS_HID0_FINAL@h
544 ori r3, r3, (CONFIG_SYS_HID0_FINAL & ~(HID0_ICFI | HID0_DCFI))@l
Eran Liberty9095d4a2005-07-28 10:08:46 -0500545 SYNC
546 mtspr HID0, r3
547
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200548 lis r3, CONFIG_SYS_HID2@h
549 ori r3, r3, CONFIG_SYS_HID2@l
Eran Liberty9095d4a2005-07-28 10:08:46 -0500550 SYNC
551 mtspr HID2, r3
552
Eran Liberty9095d4a2005-07-28 10:08:46 -0500553 /* Done! */
554 /*------------------------------*/
Jon Loeligerebc72242005-08-01 13:20:47 -0500555 blr
Eran Liberty9095d4a2005-07-28 10:08:46 -0500556
Kumar Galad5d94d62006-02-10 15:40:06 -0600557 /* setup_bats - set them up to some initial state */
558 .globl setup_bats
559setup_bats:
560 addis r0, r0, 0x0000
561
562 /* IBAT 0 */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200563 addis r4, r0, CONFIG_SYS_IBAT0L@h
564 ori r4, r4, CONFIG_SYS_IBAT0L@l
565 addis r3, r0, CONFIG_SYS_IBAT0U@h
566 ori r3, r3, CONFIG_SYS_IBAT0U@l
Kumar Galad5d94d62006-02-10 15:40:06 -0600567 mtspr IBAT0L, r4
568 mtspr IBAT0U, r3
Kumar Galad5d94d62006-02-10 15:40:06 -0600569
570 /* DBAT 0 */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200571 addis r4, r0, CONFIG_SYS_DBAT0L@h
572 ori r4, r4, CONFIG_SYS_DBAT0L@l
573 addis r3, r0, CONFIG_SYS_DBAT0U@h
574 ori r3, r3, CONFIG_SYS_DBAT0U@l
Kumar Galad5d94d62006-02-10 15:40:06 -0600575 mtspr DBAT0L, r4
576 mtspr DBAT0U, r3
Kumar Galad5d94d62006-02-10 15:40:06 -0600577
578 /* IBAT 1 */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200579 addis r4, r0, CONFIG_SYS_IBAT1L@h
580 ori r4, r4, CONFIG_SYS_IBAT1L@l
581 addis r3, r0, CONFIG_SYS_IBAT1U@h
582 ori r3, r3, CONFIG_SYS_IBAT1U@l
Kumar Galad5d94d62006-02-10 15:40:06 -0600583 mtspr IBAT1L, r4
584 mtspr IBAT1U, r3
Kumar Galad5d94d62006-02-10 15:40:06 -0600585
586 /* DBAT 1 */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200587 addis r4, r0, CONFIG_SYS_DBAT1L@h
588 ori r4, r4, CONFIG_SYS_DBAT1L@l
589 addis r3, r0, CONFIG_SYS_DBAT1U@h
590 ori r3, r3, CONFIG_SYS_DBAT1U@l
Kumar Galad5d94d62006-02-10 15:40:06 -0600591 mtspr DBAT1L, r4
592 mtspr DBAT1U, r3
Kumar Galad5d94d62006-02-10 15:40:06 -0600593
594 /* IBAT 2 */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200595 addis r4, r0, CONFIG_SYS_IBAT2L@h
596 ori r4, r4, CONFIG_SYS_IBAT2L@l
597 addis r3, r0, CONFIG_SYS_IBAT2U@h
598 ori r3, r3, CONFIG_SYS_IBAT2U@l
Kumar Galad5d94d62006-02-10 15:40:06 -0600599 mtspr IBAT2L, r4
600 mtspr IBAT2U, r3
Kumar Galad5d94d62006-02-10 15:40:06 -0600601
602 /* DBAT 2 */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200603 addis r4, r0, CONFIG_SYS_DBAT2L@h
604 ori r4, r4, CONFIG_SYS_DBAT2L@l
605 addis r3, r0, CONFIG_SYS_DBAT2U@h
606 ori r3, r3, CONFIG_SYS_DBAT2U@l
Kumar Galad5d94d62006-02-10 15:40:06 -0600607 mtspr DBAT2L, r4
608 mtspr DBAT2U, r3
Kumar Galad5d94d62006-02-10 15:40:06 -0600609
610 /* IBAT 3 */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200611 addis r4, r0, CONFIG_SYS_IBAT3L@h
612 ori r4, r4, CONFIG_SYS_IBAT3L@l
613 addis r3, r0, CONFIG_SYS_IBAT3U@h
614 ori r3, r3, CONFIG_SYS_IBAT3U@l
Kumar Galad5d94d62006-02-10 15:40:06 -0600615 mtspr IBAT3L, r4
616 mtspr IBAT3U, r3
Kumar Galad5d94d62006-02-10 15:40:06 -0600617
618 /* DBAT 3 */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200619 addis r4, r0, CONFIG_SYS_DBAT3L@h
620 ori r4, r4, CONFIG_SYS_DBAT3L@l
621 addis r3, r0, CONFIG_SYS_DBAT3U@h
622 ori r3, r3, CONFIG_SYS_DBAT3U@l
Kumar Galad5d94d62006-02-10 15:40:06 -0600623 mtspr DBAT3L, r4
624 mtspr DBAT3U, r3
Kumar Galad5d94d62006-02-10 15:40:06 -0600625
Becky Bruce03ea1be2008-05-08 19:02:12 -0500626#ifdef CONFIG_HIGH_BATS
Kumar Galad5d94d62006-02-10 15:40:06 -0600627 /* IBAT 4 */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200628 addis r4, r0, CONFIG_SYS_IBAT4L@h
629 ori r4, r4, CONFIG_SYS_IBAT4L@l
630 addis r3, r0, CONFIG_SYS_IBAT4U@h
631 ori r3, r3, CONFIG_SYS_IBAT4U@l
Kumar Galad5d94d62006-02-10 15:40:06 -0600632 mtspr IBAT4L, r4
633 mtspr IBAT4U, r3
Kumar Galad5d94d62006-02-10 15:40:06 -0600634
635 /* DBAT 4 */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200636 addis r4, r0, CONFIG_SYS_DBAT4L@h
637 ori r4, r4, CONFIG_SYS_DBAT4L@l
638 addis r3, r0, CONFIG_SYS_DBAT4U@h
639 ori r3, r3, CONFIG_SYS_DBAT4U@l
Kumar Galad5d94d62006-02-10 15:40:06 -0600640 mtspr DBAT4L, r4
641 mtspr DBAT4U, r3
Kumar Galad5d94d62006-02-10 15:40:06 -0600642
643 /* IBAT 5 */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200644 addis r4, r0, CONFIG_SYS_IBAT5L@h
645 ori r4, r4, CONFIG_SYS_IBAT5L@l
646 addis r3, r0, CONFIG_SYS_IBAT5U@h
647 ori r3, r3, CONFIG_SYS_IBAT5U@l
Kumar Galad5d94d62006-02-10 15:40:06 -0600648 mtspr IBAT5L, r4
649 mtspr IBAT5U, r3
Kumar Galad5d94d62006-02-10 15:40:06 -0600650
651 /* DBAT 5 */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200652 addis r4, r0, CONFIG_SYS_DBAT5L@h
653 ori r4, r4, CONFIG_SYS_DBAT5L@l
654 addis r3, r0, CONFIG_SYS_DBAT5U@h
655 ori r3, r3, CONFIG_SYS_DBAT5U@l
Kumar Galad5d94d62006-02-10 15:40:06 -0600656 mtspr DBAT5L, r4
657 mtspr DBAT5U, r3
Kumar Galad5d94d62006-02-10 15:40:06 -0600658
659 /* IBAT 6 */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200660 addis r4, r0, CONFIG_SYS_IBAT6L@h
661 ori r4, r4, CONFIG_SYS_IBAT6L@l
662 addis r3, r0, CONFIG_SYS_IBAT6U@h
663 ori r3, r3, CONFIG_SYS_IBAT6U@l
Kumar Galad5d94d62006-02-10 15:40:06 -0600664 mtspr IBAT6L, r4
665 mtspr IBAT6U, r3
Kumar Galad5d94d62006-02-10 15:40:06 -0600666
667 /* DBAT 6 */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200668 addis r4, r0, CONFIG_SYS_DBAT6L@h
669 ori r4, r4, CONFIG_SYS_DBAT6L@l
670 addis r3, r0, CONFIG_SYS_DBAT6U@h
671 ori r3, r3, CONFIG_SYS_DBAT6U@l
Kumar Galad5d94d62006-02-10 15:40:06 -0600672 mtspr DBAT6L, r4
673 mtspr DBAT6U, r3
Kumar Galad5d94d62006-02-10 15:40:06 -0600674
675 /* IBAT 7 */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200676 addis r4, r0, CONFIG_SYS_IBAT7L@h
677 ori r4, r4, CONFIG_SYS_IBAT7L@l
678 addis r3, r0, CONFIG_SYS_IBAT7U@h
679 ori r3, r3, CONFIG_SYS_IBAT7U@l
Kumar Galad5d94d62006-02-10 15:40:06 -0600680 mtspr IBAT7L, r4
681 mtspr IBAT7U, r3
Kumar Galad5d94d62006-02-10 15:40:06 -0600682
683 /* DBAT 7 */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200684 addis r4, r0, CONFIG_SYS_DBAT7L@h
685 ori r4, r4, CONFIG_SYS_DBAT7L@l
686 addis r3, r0, CONFIG_SYS_DBAT7U@h
687 ori r3, r3, CONFIG_SYS_DBAT7U@l
Kumar Galad5d94d62006-02-10 15:40:06 -0600688 mtspr DBAT7L, r4
689 mtspr DBAT7U, r3
Kumar Galad5d94d62006-02-10 15:40:06 -0600690#endif
691
Scott Woodb71689b2008-06-30 14:13:28 -0500692 isync
693
694 /* invalidate all tlb's
695 *
696 * From the 603e User Manual: "The 603e provides the ability to
697 * invalidate a TLB entry. The TLB Invalidate Entry (tlbie)
698 * instruction invalidates the TLB entry indexed by the EA, and
699 * operates on both the instruction and data TLBs simultaneously
700 * invalidating four TLB entries (both sets in each TLB). The
701 * index corresponds to bits 15-19 of the EA. To invalidate all
702 * entries within both TLBs, 32 tlbie instructions should be
703 * issued, incrementing this field by one each time."
704 *
705 * "Note that the tlbia instruction is not implemented on the
706 * 603e."
707 *
708 * bits 15-19 correspond to addresses 0x00000000 to 0x0001F000
709 * incrementing by 0x1000 each time. The code below is sort of
Stefan Roese88fbf932010-04-15 16:07:28 +0200710 * based on code in "flush_tlbs" from arch/powerpc/kernel/head.S
Scott Woodb71689b2008-06-30 14:13:28 -0500711 *
Kumar Galad5d94d62006-02-10 15:40:06 -0600712 */
713 lis r3, 0
714 lis r5, 2
715
7161:
717 tlbie r3
718 addi r3, r3, 0x1000
719 cmp 0, 0, r3, r5
720 blt 1b
721
722 blr
723
Eran Liberty9095d4a2005-07-28 10:08:46 -0500724/* Cache functions.
725 *
726 * Note: requires that all cache bits in
727 * HID0 are in the low half word.
728 */
Kim Phillips52ac6b72010-05-14 13:18:54 -0500729#ifndef CONFIG_NAND_SPL
Eran Liberty9095d4a2005-07-28 10:08:46 -0500730 .globl icache_enable
731icache_enable:
732 mfspr r3, HID0
733 ori r3, r3, HID0_ICE
Nick Spence7c20aef2008-08-28 14:09:25 -0700734 li r4, HID0_ICFI|HID0_ILOCK
Eran Liberty9095d4a2005-07-28 10:08:46 -0500735 andc r3, r3, r4
736 ori r4, r3, HID0_ICFI
737 isync
738 mtspr HID0, r4 /* sets enable and invalidate, clears lock */
739 isync
740 mtspr HID0, r3 /* clears invalidate */
741 blr
742
743 .globl icache_disable
744icache_disable:
745 mfspr r3, HID0
746 lis r4, 0
Nick Spence7c20aef2008-08-28 14:09:25 -0700747 ori r4, r4, HID0_ICE|HID0_ICFI|HID0_ILOCK
Eran Liberty9095d4a2005-07-28 10:08:46 -0500748 andc r3, r3, r4
Eran Liberty9095d4a2005-07-28 10:08:46 -0500749 isync
Nick Spence7c20aef2008-08-28 14:09:25 -0700750 mtspr HID0, r3 /* clears invalidate, enable and lock */
Eran Liberty9095d4a2005-07-28 10:08:46 -0500751 blr
752
753 .globl icache_status
754icache_status:
755 mfspr r3, HID0
Marian Balakowicz758e5d32006-03-14 16:01:25 +0100756 rlwinm r3, r3, (31 - HID0_ICE_SHIFT + 1), 31, 31
Eran Liberty9095d4a2005-07-28 10:08:46 -0500757 blr
Kim Phillips52ac6b72010-05-14 13:18:54 -0500758#endif /* !CONFIG_NAND_SPL */
Eran Liberty9095d4a2005-07-28 10:08:46 -0500759
760 .globl dcache_enable
761dcache_enable:
762 mfspr r3, HID0
Kumar Galad5d94d62006-02-10 15:40:06 -0600763 li r5, HID0_DCFI|HID0_DLOCK
764 andc r3, r3, r5
Kumar Galad5d94d62006-02-10 15:40:06 -0600765 ori r3, r3, HID0_DCE
Eran Liberty9095d4a2005-07-28 10:08:46 -0500766 sync
Nick Spence7c20aef2008-08-28 14:09:25 -0700767 mtspr HID0, r3 /* enable, no invalidate */
Eran Liberty9095d4a2005-07-28 10:08:46 -0500768 blr
769
770 .globl dcache_disable
771dcache_disable:
Nick Spence7c20aef2008-08-28 14:09:25 -0700772 mflr r4
773 bl flush_dcache /* uses r3 and r5 */
Eran Liberty9095d4a2005-07-28 10:08:46 -0500774 mfspr r3, HID0
Nick Spence7c20aef2008-08-28 14:09:25 -0700775 li r5, HID0_DCE|HID0_DLOCK
776 andc r3, r3, r5
777 ori r5, r3, HID0_DCFI
Eran Liberty9095d4a2005-07-28 10:08:46 -0500778 sync
Nick Spence7c20aef2008-08-28 14:09:25 -0700779 mtspr HID0, r5 /* sets invalidate, clears enable and lock */
Eran Liberty9095d4a2005-07-28 10:08:46 -0500780 sync
781 mtspr HID0, r3 /* clears invalidate */
Nick Spence7c20aef2008-08-28 14:09:25 -0700782 mtlr r4
Eran Liberty9095d4a2005-07-28 10:08:46 -0500783 blr
784
785 .globl dcache_status
786dcache_status:
787 mfspr r3, HID0
Marian Balakowicz758e5d32006-03-14 16:01:25 +0100788 rlwinm r3, r3, (31 - HID0_DCE_SHIFT + 1), 31, 31
Eran Liberty9095d4a2005-07-28 10:08:46 -0500789 blr
790
Nick Spence7c20aef2008-08-28 14:09:25 -0700791 .globl flush_dcache
792flush_dcache:
793 lis r3, 0
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200794 lis r5, CONFIG_SYS_CACHELINE_SIZE
Nick Spence7c20aef2008-08-28 14:09:25 -07007951: cmp 0, 1, r3, r5
796 bge 2f
797 lwz r5, 0(r3)
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200798 lis r5, CONFIG_SYS_CACHELINE_SIZE
Nick Spence7c20aef2008-08-28 14:09:25 -0700799 addi r3, r3, 0x4
800 b 1b
8012: blr
802
Eran Liberty9095d4a2005-07-28 10:08:46 -0500803/*-------------------------------------------------------------------*/
804
805/*
806 * void relocate_code (addr_sp, gd, addr_moni)
807 *
808 * This "function" does not return, instead it continues in RAM
809 * after relocating the monitor code.
810 *
811 * r3 = dest
812 * r4 = src
813 * r5 = length in bytes
814 * r6 = cachelinesize
815 */
816 .globl relocate_code
817relocate_code:
818 mr r1, r3 /* Set new stack pointer */
819 mr r9, r4 /* Save copy of Global Data pointer */
820 mr r10, r5 /* Save copy of Destination Address */
821
Joakim Tjernlund3fbaa4d2010-01-19 14:41:56 +0100822 GET_GOT
Eran Liberty9095d4a2005-07-28 10:08:46 -0500823 mr r3, r5 /* Destination Address */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200824 lis r4, CONFIG_SYS_MONITOR_BASE@h /* Source Address */
825 ori r4, r4, CONFIG_SYS_MONITOR_BASE@l
Scott Woodb71689b2008-06-30 14:13:28 -0500826 lwz r5, GOT(__bss_start)
Eran Liberty9095d4a2005-07-28 10:08:46 -0500827 sub r5, r5, r4
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200828 li r6, CONFIG_SYS_CACHELINE_SIZE /* Cache Line Size */
Eran Liberty9095d4a2005-07-28 10:08:46 -0500829
830 /*
831 * Fix GOT pointer:
832 *
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200833 * New GOT-PTR = (old GOT-PTR - CONFIG_SYS_MONITOR_BASE)
Eran Liberty9095d4a2005-07-28 10:08:46 -0500834 * + Destination Address
835 *
836 * Offset:
837 */
838 sub r15, r10, r4
839
840 /* First our own GOT */
Joakim Tjernlund3fbaa4d2010-01-19 14:41:56 +0100841 add r12, r12, r15
Eran Liberty9095d4a2005-07-28 10:08:46 -0500842 /* then the one used by the C code */
843 add r30, r30, r15
844
845 /*
846 * Now relocate code
847 */
848
849 cmplw cr1,r3,r4
850 addi r0,r5,3
851 srwi. r0,r0,2
852 beq cr1,4f /* In place copy is not necessary */
853 beq 7f /* Protect against 0 count */
854 mtctr r0
855 bge cr1,2f
856 la r8,-4(r4)
857 la r7,-4(r3)
858
859 /* copy */
8601: lwzu r0,4(r8)
861 stwu r0,4(r7)
862 bdnz 1b
863
864 addi r0,r5,3
865 srwi. r0,r0,2
866 mtctr r0
867 la r8,-4(r4)
868 la r7,-4(r3)
Jon Loeligerebc72242005-08-01 13:20:47 -0500869
870 /* and compare */
Eran Liberty9095d4a2005-07-28 10:08:46 -050087120: lwzu r20,4(r8)
872 lwzu r21,4(r7)
873 xor. r22, r20, r21
874 bne 30f
875 bdnz 20b
876 b 4f
877
878 /* compare failed */
87930: li r3, 0
880 blr
881
8822: slwi r0,r0,2 /* re copy in reverse order ... y do we needed it? */
883 add r8,r4,r0
884 add r7,r3,r0
8853: lwzu r0,-4(r8)
886 stwu r0,-4(r7)
887 bdnz 3b
Eran Liberty9095d4a2005-07-28 10:08:46 -0500888
889/*
890 * Now flush the cache: note that we must start from a cache aligned
891 * address. Otherwise we might miss one cache line.
892 */
Kumar Galad5d94d62006-02-10 15:40:06 -06008934: cmpwi r6,0
Eran Liberty9095d4a2005-07-28 10:08:46 -0500894 add r5,r3,r5
Kumar Galad5d94d62006-02-10 15:40:06 -0600895 beq 7f /* Always flush prefetch queue in any case */
Eran Liberty9095d4a2005-07-28 10:08:46 -0500896 subi r0,r6,1
897 andc r3,r3,r0
Eran Liberty9095d4a2005-07-28 10:08:46 -0500898 mr r4,r3
8995: dcbst 0,r4
900 add r4,r4,r6
901 cmplw r4,r5
902 blt 5b
Kumar Galad5d94d62006-02-10 15:40:06 -0600903 sync /* Wait for all dcbst to complete on bus */
Eran Liberty9095d4a2005-07-28 10:08:46 -0500904 mr r4,r3
9056: icbi 0,r4
906 add r4,r4,r6
907 cmplw r4,r5
908 blt 6b
Kumar Galad5d94d62006-02-10 15:40:06 -06009097: sync /* Wait for all icbi to complete on bus */
Eran Liberty9095d4a2005-07-28 10:08:46 -0500910 isync
911
912/*
913 * We are done. Do not return, instead branch to second part of board
914 * initialization, now running from RAM.
915 */
Eran Liberty9095d4a2005-07-28 10:08:46 -0500916 addi r0, r10, in_ram - _start + EXC_OFF_SYS_RESET
917 mtlr r0
918 blr
919
920in_ram:
921
922 /*
Joakim Tjernlund3fbaa4d2010-01-19 14:41:56 +0100923 * Relocation Function, r12 point to got2+0x8000
Eran Liberty9095d4a2005-07-28 10:08:46 -0500924 *
925 * Adjust got2 pointers, no need to check for 0, this code
926 * already puts a few entries in the table.
927 */
928 li r0,__got2_entries@sectoff@l
929 la r3,GOT(_GOT2_TABLE_)
930 lwz r11,GOT(_GOT2_TABLE_)
931 mtctr r0
932 sub r11,r3,r11
933 addi r3,r3,-4
9341: lwzu r0,4(r3)
Joakim Tjernlund4f2fdac2009-10-08 02:03:51 +0200935 cmpwi r0,0
936 beq- 2f
Eran Liberty9095d4a2005-07-28 10:08:46 -0500937 add r0,r0,r11
938 stw r0,0(r3)
Joakim Tjernlund4f2fdac2009-10-08 02:03:51 +02009392: bdnz 1b
Eran Liberty9095d4a2005-07-28 10:08:46 -0500940
Scott Woodb71689b2008-06-30 14:13:28 -0500941#ifndef CONFIG_NAND_SPL
Eran Liberty9095d4a2005-07-28 10:08:46 -0500942 /*
943 * Now adjust the fixups and the pointers to the fixups
944 * in case we need to move ourselves again.
945 */
Joakim Tjernlund4f2fdac2009-10-08 02:03:51 +0200946 li r0,__fixup_entries@sectoff@l
Eran Liberty9095d4a2005-07-28 10:08:46 -0500947 lwz r3,GOT(_FIXUP_TABLE_)
948 cmpwi r0,0
949 mtctr r0
950 addi r3,r3,-4
951 beq 4f
9523: lwzu r4,4(r3)
953 lwzux r0,r4,r11
954 add r0,r0,r11
955 stw r10,0(r3)
956 stw r0,0(r4)
957 bdnz 3b
9584:
Scott Woodb71689b2008-06-30 14:13:28 -0500959#endif
960
Eran Liberty9095d4a2005-07-28 10:08:46 -0500961clear_bss:
962 /*
963 * Now clear BSS segment
964 */
965 lwz r3,GOT(__bss_start)
966#if defined(CONFIG_HYMOD)
967 /*
968 * For HYMOD - the environment is the very last item in flash.
969 * The real .bss stops just before environment starts, so only
970 * clear up to that point.
971 *
972 * taken from mods for FADS board
973 */
974 lwz r4,GOT(environment)
975#else
976 lwz r4,GOT(_end)
977#endif
978
979 cmplw 0, r3, r4
980 beq 6f
981
982 li r0, 0
9835:
984 stw r0, 0(r3)
985 addi r3, r3, 4
986 cmplw 0, r3, r4
987 bne 5b
9886:
989
990 mr r3, r9 /* Global Data pointer */
991 mr r4, r10 /* Destination Address */
992 bl board_init_r
993
Scott Woodb71689b2008-06-30 14:13:28 -0500994#ifndef CONFIG_NAND_SPL
Eran Liberty9095d4a2005-07-28 10:08:46 -0500995 /*
996 * Copy exception vector code to low memory
997 *
998 * r3: dest_addr
999 * r7: source address, r8: end address, r9: target address
1000 */
1001 .globl trap_init
1002trap_init:
Joakim Tjernlund3fbaa4d2010-01-19 14:41:56 +01001003 mflr r4 /* save link register */
1004 GET_GOT
Eran Liberty9095d4a2005-07-28 10:08:46 -05001005 lwz r7, GOT(_start)
1006 lwz r8, GOT(_end_of_vectors)
1007
1008 li r9, 0x100 /* reset vector always at 0x100 */
1009
1010 cmplw 0, r7, r8
1011 bgelr /* return if r7>=r8 - just in case */
Eran Liberty9095d4a2005-07-28 10:08:46 -050010121:
1013 lwz r0, 0(r7)
1014 stw r0, 0(r9)
1015 addi r7, r7, 4
1016 addi r9, r9, 4
1017 cmplw 0, r7, r8
1018 bne 1b
1019
1020 /*
1021 * relocate `hdlr' and `int_return' entries
1022 */
1023 li r7, .L_MachineCheck - _start + EXC_OFF_SYS_RESET
1024 li r8, Alignment - _start + EXC_OFF_SYS_RESET
10252:
1026 bl trap_reloc
1027 addi r7, r7, 0x100 /* next exception vector */
1028 cmplw 0, r7, r8
1029 blt 2b
1030
1031 li r7, .L_Alignment - _start + EXC_OFF_SYS_RESET
1032 bl trap_reloc
1033
1034 li r7, .L_ProgramCheck - _start + EXC_OFF_SYS_RESET
1035 bl trap_reloc
1036
1037 li r7, .L_FPUnavailable - _start + EXC_OFF_SYS_RESET
1038 li r8, SystemCall - _start + EXC_OFF_SYS_RESET
10393:
1040 bl trap_reloc
1041 addi r7, r7, 0x100 /* next exception vector */
1042 cmplw 0, r7, r8
1043 blt 3b
1044
1045 li r7, .L_SingleStep - _start + EXC_OFF_SYS_RESET
1046 li r8, _end_of_vectors - _start + EXC_OFF_SYS_RESET
10474:
1048 bl trap_reloc
1049 addi r7, r7, 0x100 /* next exception vector */
1050 cmplw 0, r7, r8
1051 blt 4b
1052
1053 mfmsr r3 /* now that the vectors have */
1054 lis r7, MSR_IP@h /* relocated into low memory */
1055 ori r7, r7, MSR_IP@l /* MSR[IP] can be turned off */
1056 andc r3, r3, r7 /* (if it was on) */
1057 SYNC /* Some chip revs need this... */
1058 mtmsr r3
1059 SYNC
1060
1061 mtlr r4 /* restore link register */
1062 blr
1063
Scott Woodb71689b2008-06-30 14:13:28 -05001064#endif /* !CONFIG_NAND_SPL */
Eran Liberty9095d4a2005-07-28 10:08:46 -05001065
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +02001066#ifdef CONFIG_SYS_INIT_RAM_LOCK
Kumar Galad5d94d62006-02-10 15:40:06 -06001067lock_ram_in_cache:
1068 /* Allocate Initial RAM in data cache.
1069 */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +02001070 lis r3, (CONFIG_SYS_INIT_RAM_ADDR & ~31)@h
1071 ori r3, r3, (CONFIG_SYS_INIT_RAM_ADDR & ~31)@l
1072 li r4, ((CONFIG_SYS_INIT_RAM_END & ~31) + \
1073 (CONFIG_SYS_INIT_RAM_ADDR & 31) + 31) / 32
Nick Spenceb89d6fb2008-08-28 14:09:11 -07001074 mtctr r4
Kumar Galad5d94d62006-02-10 15:40:06 -060010751:
1076 dcbz r0, r3
1077 addi r3, r3, 32
1078 bdnz 1b
1079
1080 /* Lock the data cache */
1081 mfspr r0, HID0
Nick Spence7c20aef2008-08-28 14:09:25 -07001082 ori r0, r0, HID0_DLOCK
Kumar Galad5d94d62006-02-10 15:40:06 -06001083 sync
1084 mtspr HID0, r0
1085 sync
1086 blr
1087
Scott Woodb71689b2008-06-30 14:13:28 -05001088#ifndef CONFIG_NAND_SPL
Eran Liberty9095d4a2005-07-28 10:08:46 -05001089.globl unlock_ram_in_cache
1090unlock_ram_in_cache:
1091 /* invalidate the INIT_RAM section */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +02001092 lis r3, (CONFIG_SYS_INIT_RAM_ADDR & ~31)@h
1093 ori r3, r3, (CONFIG_SYS_INIT_RAM_ADDR & ~31)@l
1094 li r4, ((CONFIG_SYS_INIT_RAM_END & ~31) + \
1095 (CONFIG_SYS_INIT_RAM_ADDR & 31) + 31) / 32
Nick Spenceb89d6fb2008-08-28 14:09:11 -07001096 mtctr r4
Eran Liberty9095d4a2005-07-28 10:08:46 -050010971: icbi r0, r3
1098 dcbi r0, r3
1099 addi r3, r3, 32
1100 bdnz 1b
1101 sync /* Wait for all icbi to complete on bus */
1102 isync
Kumar Galad5d94d62006-02-10 15:40:06 -06001103
1104 /* Unlock the data cache and invalidate it */
1105 mfspr r3, HID0
1106 li r5, HID0_DLOCK|HID0_DCFI
1107 andc r3, r3, r5 /* no invalidate, unlock */
1108 ori r5, r3, HID0_DCFI /* invalidate, unlock */
Nick Spence7c20aef2008-08-28 14:09:25 -07001109 sync
Kumar Galad5d94d62006-02-10 15:40:06 -06001110 mtspr HID0, r5 /* invalidate, unlock */
Kumar Galad5d94d62006-02-10 15:40:06 -06001111 sync
Nick Spence7c20aef2008-08-28 14:09:25 -07001112 mtspr HID0, r3 /* no invalidate, unlock */
Eran Liberty9095d4a2005-07-28 10:08:46 -05001113 blr
Scott Woodb71689b2008-06-30 14:13:28 -05001114#endif /* !CONFIG_NAND_SPL */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +02001115#endif /* CONFIG_SYS_INIT_RAM_LOCK */
Eran Liberty9095d4a2005-07-28 10:08:46 -05001116
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +02001117#ifdef CONFIG_SYS_FLASHBOOT
Eran Liberty9095d4a2005-07-28 10:08:46 -05001118map_flash_by_law1:
1119 /* When booting from ROM (Flash or EPROM), clear the */
1120 /* Address Mask in OR0 so ROM appears everywhere */
1121 /*----------------------------------------------------*/
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +02001122 lis r3, (CONFIG_SYS_IMMR)@h /* r3 <= CONFIG_SYS_IMMR */
Jon Loeligerebc72242005-08-01 13:20:47 -05001123 lwz r4, OR0@l(r3)
Eran Liberty9095d4a2005-07-28 10:08:46 -05001124 li r5, 0x7fff /* r5 <= 0x00007FFFF */
Jon Loeligerebc72242005-08-01 13:20:47 -05001125 and r4, r4, r5
Eran Liberty9095d4a2005-07-28 10:08:46 -05001126 stw r4, OR0@l(r3) /* OR0 <= OR0 & 0x00007FFFF */
1127
1128 /* As MPC8349E User's Manual presented, when RCW[BMS] is set to 0,
1129 * system will boot from 0x0000_0100, and the LBLAWBAR0[BASE_ADDR]
1130 * reset value is 0x00000; when RCW[BMS] is set to 1, system will boot
1131 * from 0xFFF0_0100, and the LBLAWBAR0[BASE_ADDR] reset value is
1132 * 0xFF800. From the hard resetting to here, the processor fetched and
1133 * executed the instructions one by one. There is not absolutely
1134 * jumping happened. Laterly, the u-boot code has to do an absolutely
1135 * jumping to tell the CPU instruction fetching component what the
1136 * u-boot TEXT base address is. Because the TEXT base resides in the
1137 * boot ROM memory space, to garantee the code can run smoothly after
1138 * that jumping, we must map in the entire boot ROM by Local Access
1139 * Window. Sometimes, we desire an non-0x00000 or non-0xFF800 starting
1140 * address for boot ROM, such as 0xFE000000. In this case, the default
1141 * LBIU Local Access Widow 0 will not cover this memory space. So, we
1142 * need another window to map in it.
1143 */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +02001144 lis r4, (CONFIG_SYS_FLASH_BASE)@h
1145 ori r4, r4, (CONFIG_SYS_FLASH_BASE)@l
1146 stw r4, LBLAWBAR1(r3) /* LBLAWBAR1 <= CONFIG_SYS_FLASH_BASE */
Timur Tabi53b46172006-08-22 17:07:00 -05001147
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +02001148 /* Store 0x80000012 + log2(CONFIG_SYS_FLASH_SIZE) into LBLAWAR1 */
Timur Tabi53b46172006-08-22 17:07:00 -05001149 lis r4, (0x80000012)@h
1150 ori r4, r4, (0x80000012)@l
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +02001151 li r5, CONFIG_SYS_FLASH_SIZE
Timur Tabi53b46172006-08-22 17:07:00 -050011521: srawi. r5, r5, 1 /* r5 = r5 >> 1 */
1153 addi r4, r4, 1
1154 bne 1b
1155
Eran Liberty9095d4a2005-07-28 10:08:46 -05001156 stw r4, LBLAWAR1(r3) /* LBLAWAR1 <= 8MB Flash Size */
1157 blr
1158
1159 /* Though all the LBIU Local Access Windows and LBC Banks will be
1160 * initialized in the C code, we'd better configure boot ROM's
1161 * window 0 and bank 0 correctly at here.
1162 */
1163remap_flash_by_law0:
1164 /* Initialize the BR0 with the boot ROM starting address. */
1165 lwz r4, BR0(r3)
1166 li r5, 0x7FFF
Jon Loeligerebc72242005-08-01 13:20:47 -05001167 and r4, r4, r5
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +02001168 lis r5, (CONFIG_SYS_FLASH_BASE & 0xFFFF8000)@h
1169 ori r5, r5, (CONFIG_SYS_FLASH_BASE & 0xFFFF8000)@l
Eran Liberty9095d4a2005-07-28 10:08:46 -05001170 or r5, r5, r4
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +02001171 stw r5, BR0(r3) /* r5 <= (CONFIG_SYS_FLASH_BASE & 0xFFFF8000) | (BR0 & 0x00007FFF) */
Eran Liberty9095d4a2005-07-28 10:08:46 -05001172
1173 lwz r4, OR0(r3)
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +02001174 lis r5, ~((CONFIG_SYS_FLASH_SIZE << 4) - 1)
Eran Liberty9095d4a2005-07-28 10:08:46 -05001175 or r4, r4, r5
Timur Tabi53b46172006-08-22 17:07:00 -05001176 stw r4, OR0(r3)
Eran Liberty9095d4a2005-07-28 10:08:46 -05001177
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +02001178 lis r4, (CONFIG_SYS_FLASH_BASE)@h
1179 ori r4, r4, (CONFIG_SYS_FLASH_BASE)@l
1180 stw r4, LBLAWBAR0(r3) /* LBLAWBAR0 <= CONFIG_SYS_FLASH_BASE */
Eran Liberty9095d4a2005-07-28 10:08:46 -05001181
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +02001182 /* Store 0x80000012 + log2(CONFIG_SYS_FLASH_SIZE) into LBLAWAR0 */
Timur Tabi53b46172006-08-22 17:07:00 -05001183 lis r4, (0x80000012)@h
1184 ori r4, r4, (0x80000012)@l
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +02001185 li r5, CONFIG_SYS_FLASH_SIZE
Timur Tabi53b46172006-08-22 17:07:00 -050011861: srawi. r5, r5, 1 /* r5 = r5 >> 1 */
1187 addi r4, r4, 1
1188 bne 1b
1189 stw r4, LBLAWAR0(r3) /* LBLAWAR0 <= Flash Size */
1190
Eran Liberty9095d4a2005-07-28 10:08:46 -05001191
1192 xor r4, r4, r4
1193 stw r4, LBLAWBAR1(r3)
1194 stw r4, LBLAWAR1(r3) /* Off LBIU LAW1 */
1195 blr
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +02001196#endif /* CONFIG_SYS_FLASHBOOT */