]> git.ipfire.org Git - people/ms/u-boot.git/blame - cpu/mpc83xx/start.S
MPC83XX: Fix GPIO configuration - set gpio level before direction
[people/ms/u-boot.git] / cpu / mpc83xx / start.S
CommitLineData
f046ccd1
EL
1/*
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>
e4c09508 5 * Copyright Freescale Semiconductor, Inc. 2004, 2006, 2008.
f046ccd1
EL
6 *
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>
de1d0a69 31#include <mpc83xx.h>
f046ccd1
EL
32#include <version.h>
33
34#define CONFIG_83XX 1 /* needed for Linux kernel header files*/
35#define _LINUX_CONFIG_H 1 /* avoid reading Linux autoconf.h file */
36
37#include <ppc_asm.tmpl>
38#include <ppc_defs.h>
39
40#include <asm/cache.h>
41#include <asm/mmu.h>
42
43#ifndef CONFIG_IDENT_STRING
44#define CONFIG_IDENT_STRING "MPC83XX"
45#endif
46
47/* We don't want the MMU yet.
48 */
49#undef MSR_KERNEL
50
51/*
52 * Floating Point enable, Machine Check and Recoverable Interr.
53 */
54#ifdef DEBUG
55#define MSR_KERNEL (MSR_FP|MSR_RI)
56#else
57#define MSR_KERNEL (MSR_FP|MSR_ME|MSR_RI)
58#endif
59
e4c09508
SW
60#if !defined(CONFIG_NAND_SPL) && !defined(CFG_RAMBOOT)
61#define CFG_FLASHBOOT
62#endif
63
f046ccd1
EL
64/*
65 * Set up GOT: Global Offset Table
66 *
67 * Use r14 to access the GOT
68 */
69 START_GOT
70 GOT_ENTRY(_GOT2_TABLE_)
e4c09508
SW
71 GOT_ENTRY(__bss_start)
72 GOT_ENTRY(_end)
f046ccd1 73
e4c09508
SW
74#ifndef CONFIG_NAND_SPL
75 GOT_ENTRY(_FIXUP_TABLE_)
f046ccd1
EL
76 GOT_ENTRY(_start)
77 GOT_ENTRY(_start_of_vectors)
78 GOT_ENTRY(_end_of_vectors)
79 GOT_ENTRY(transfer_to_handler)
e4c09508 80#endif
f046ccd1
EL
81 END_GOT
82
83/*
f35f3582
JVB
84 * The Hard Reset Configuration Word (HRCW) table is in the first 64
85 * (0x40) bytes of flash. It has 8 bytes, but each byte is repeated 8
86 * times so the processor can fetch it out of flash whether the flash
87 * is 8, 16, 32, or 64 bits wide (hardware trickery).
f046ccd1 88 */
f046ccd1
EL
89 .text
90#define _HRCW_TABLE_ENTRY(w) \
91 .fill 8,1,(((w)>>24)&0xff); \
92 .fill 8,1,(((w)>>16)&0xff); \
93 .fill 8,1,(((w)>> 8)&0xff); \
94 .fill 8,1,(((w) )&0xff)
95
96 _HRCW_TABLE_ENTRY(CFG_HRCW_LOW)
97 _HRCW_TABLE_ENTRY(CFG_HRCW_HIGH)
98
f35f3582
JVB
99/*
100 * Magic number and version string - put it after the HRCW since it
101 * cannot be first in flash like it is in many other processors.
102 */
103 .long 0x27051956 /* U-Boot Magic Number */
104
105 .globl version_string
106version_string:
107 .ascii U_BOOT_VERSION
108 .ascii " (", __DATE__, " - ", __TIME__, ")"
109 .ascii " ", CONFIG_IDENT_STRING, "\0"
110
f046ccd1 111
f046ccd1
EL
112#ifndef CONFIG_DEFAULT_IMMR
113#error CONFIG_DEFAULT_IMMR must be defined
114#endif /* CFG_DEFAULT_IMMR */
d239d74b
TT
115#ifndef CFG_IMMR
116#define CFG_IMMR CONFIG_DEFAULT_IMMR
117#endif /* CFG_IMMR */
f046ccd1
EL
118
119/*
120 * After configuration, a system reset exception is executed using the
121 * vector at offset 0x100 relative to the base set by MSR[IP]. If
122 * MSR[IP] is 0, the base address is 0x00000000. If MSR[IP] is 1, the
123 * base address is 0xfff00000. In the case of a Power On Reset or Hard
124 * Reset, the value of MSR[IP] is determined by the CIP field in the
125 * HRCW.
126 *
127 * Other bits in the HRCW set up the Base Address and Port Size in BR0.
128 * This determines the location of the boot ROM (flash or EPROM) in the
129 * processor's address space at boot time. As long as the HRCW is set up
130 * so that we eventually end up executing the code below when the
131 * processor executes the reset exception, the actual values used should
132 * not matter.
133 *
134 * Once we have got here, the address mask in OR0 is cleared so that the
135 * bottom 32K of the boot ROM is effectively repeated all throughout the
136 * processor's address space, after which we can jump to the absolute
137 * address at which the boot ROM was linked at compile time, and proceed
138 * to initialise the memory controller without worrying if the rug will
139 * be pulled out from under us, so to speak (it will be fine as long as
140 * we configure BR0 with the same boot ROM link address).
141 */
142 . = EXC_OFF_SYS_RESET
143
144 .globl _start
145_start: /* time t 0 */
146 li r21, BOOTFLAG_COLD /* Normal Power-On: Boot from FLASH*/
147 nop
148 b boot_cold
149
150 . = EXC_OFF_SYS_RESET + 0x10
151
152 .globl _start_warm
de1d0a69 153_start_warm:
f046ccd1
EL
154 li r21, BOOTFLAG_WARM /* Software reboot */
155 b boot_warm
156
157
158boot_cold: /* time t 3 */
159 lis r4, CONFIG_DEFAULT_IMMR@h
160 nop
161boot_warm: /* time t 5 */
162 mfmsr r5 /* save msr contents */
d239d74b
TT
163 lis r3, CFG_IMMR@h
164 ori r3, r3, CFG_IMMR@l
f046ccd1 165 stw r3, IMMRBAR(r4)
de1d0a69 166
f046ccd1
EL
167 /* Initialise the E300 processor core */
168 /*------------------------------------------*/
de1d0a69 169
f046ccd1 170 bl init_e300_core
de1d0a69 171
e4c09508 172#ifdef CFG_FLASHBOOT
f046ccd1
EL
173
174 /* Inflate flash location so it appears everywhere, calculate */
175 /* the absolute address in final location of the FLASH, jump */
176 /* there and deflate the flash size back to minimal size */
177 /*------------------------------------------------------------*/
178 bl map_flash_by_law1
78e48829
KP
179 lis r4, (CFG_MONITOR_BASE)@h
180 ori r4, r4, (CFG_MONITOR_BASE)@l
f046ccd1
EL
181 addi r5, r4, in_flash - _start + EXC_OFF_SYS_RESET
182 mtlr r5
183 blr
184in_flash:
185#if 1 /* Remapping flash with LAW0. */
186 bl remap_flash_by_law0
187#endif
e4c09508 188#endif /* CFG_FLASHBOOT */
f046ccd1 189
2688e2f9
KG
190 /* setup the bats */
191 bl setup_bats
192 sync
193
194 /*
195 * Cache must be enabled here for stack-in-cache trick.
196 * This means we need to enable the BATS.
197 * This means:
198 * 1) for the EVB, original gt regs need to be mapped
199 * 2) need to have an IBAT for the 0xf region,
200 * we are running there!
201 * Cache should be turned on after BATs, since by default
202 * everything is write-through.
203 * The init-mem BAT can be reused after reloc. The old
204 * gt-regs BAT can be reused after board_init_f calls
205 * board_early_init_f (EVB only).
206 */
207 /* enable address translation */
208 bl enable_addr_trans
209 sync
210
211 /* enable and invalidate the data cache */
212 bl dcache_enable
213 sync
214#ifdef CFG_INIT_RAM_LOCK
215 bl lock_ram_in_cache
216 sync
217#endif
218
219 /* set up the stack pointer in our newly created
220 * cache-ram (r1) */
221 lis r1, (CFG_INIT_RAM_ADDR + CFG_GBL_DATA_OFFSET)@h
222 ori r1, r1, (CFG_INIT_RAM_ADDR + CFG_GBL_DATA_OFFSET)@l
223
224 li r0, 0 /* Make room for stack frame header and */
225 stwu r0, -4(r1) /* clear final stack frame so that */
226 stwu r0, -4(r1) /* stack backtraces terminate cleanly */
227
f046ccd1
EL
228
229 /* let the C-code set up the rest */
2688e2f9 230 /* */
f046ccd1
EL
231 /* Be careful to keep code relocatable & stack humble */
232 /*------------------------------------------------------*/
233
234 GET_GOT /* initialize GOT access */
235
236 /* r3: IMMR */
d239d74b 237 lis r3, CFG_IMMR@h
f046ccd1
EL
238 /* run low-level CPU init code (in Flash)*/
239 bl cpu_init_f
240
241 /* r3: BOOTFLAG */
242 mr r3, r21
243 /* run 1st part of board init code (in Flash)*/
244 bl board_init_f
245
e4c09508 246#ifndef CONFIG_NAND_SPL
f046ccd1
EL
247/*
248 * Vector Table
249 */
250
251 .globl _start_of_vectors
252_start_of_vectors:
253
254/* Machine check */
255 STD_EXCEPTION(0x200, MachineCheck, MachineCheckException)
256
257/* Data Storage exception. */
258 STD_EXCEPTION(0x300, DataStorage, UnknownException)
259
260/* Instruction Storage exception. */
261 STD_EXCEPTION(0x400, InstStorage, UnknownException)
262
263/* External Interrupt exception. */
264#ifndef FIXME
265 STD_EXCEPTION(0x500, ExtInterrupt, external_interrupt)
de1d0a69 266#endif
f046ccd1
EL
267
268/* Alignment exception. */
269 . = 0x600
270Alignment:
02032e8f 271 EXCEPTION_PROLOG(SRR0, SRR1)
f046ccd1
EL
272 mfspr r4,DAR
273 stw r4,_DAR(r21)
274 mfspr r5,DSISR
275 stw r5,_DSISR(r21)
276 addi r3,r1,STACK_FRAME_OVERHEAD
277 li r20,MSR_KERNEL
278 rlwimi r20,r23,0,16,16 /* copy EE bit from saved MSR */
279 rlwimi r20,r23,0,25,25 /* copy IP bit from saved MSR */
280 lwz r6,GOT(transfer_to_handler)
281 mtlr r6
282 blrl
283.L_Alignment:
284 .long AlignmentException - _start + EXC_OFF_SYS_RESET
285 .long int_return - _start + EXC_OFF_SYS_RESET
286
287/* Program check exception */
288 . = 0x700
289ProgramCheck:
02032e8f 290 EXCEPTION_PROLOG(SRR0, SRR1)
f046ccd1
EL
291 addi r3,r1,STACK_FRAME_OVERHEAD
292 li r20,MSR_KERNEL
293 rlwimi r20,r23,0,16,16 /* copy EE bit from saved MSR */
294 rlwimi r20,r23,0,25,25 /* copy IP bit from saved MSR */
295 lwz r6,GOT(transfer_to_handler)
296 mtlr r6
297 blrl
298.L_ProgramCheck:
299 .long ProgramCheckException - _start + EXC_OFF_SYS_RESET
300 .long int_return - _start + EXC_OFF_SYS_RESET
301
302 STD_EXCEPTION(0x800, FPUnavailable, UnknownException)
303
304 /* I guess we could implement decrementer, and may have
305 * to someday for timekeeping.
306 */
307 STD_EXCEPTION(0x900, Decrementer, timer_interrupt)
308
309 STD_EXCEPTION(0xa00, Trap_0a, UnknownException)
310 STD_EXCEPTION(0xb00, Trap_0b, UnknownException)
311 STD_EXCEPTION(0xc00, SystemCall, UnknownException)
312 STD_EXCEPTION(0xd00, SingleStep, UnknownException)
313
314 STD_EXCEPTION(0xe00, Trap_0e, UnknownException)
315 STD_EXCEPTION(0xf00, Trap_0f, UnknownException)
316
317 STD_EXCEPTION(0x1000, InstructionTLBMiss, UnknownException)
318 STD_EXCEPTION(0x1100, DataLoadTLBMiss, UnknownException)
319 STD_EXCEPTION(0x1200, DataStoreTLBMiss, UnknownException)
320#ifdef DEBUG
321 . = 0x1300
322 /*
323 * This exception occurs when the program counter matches the
324 * Instruction Address Breakpoint Register (IABR).
325 *
326 * I want the cpu to halt if this occurs so I can hunt around
327 * with the debugger and look at things.
328 *
329 * When DEBUG is defined, both machine check enable (in the MSR)
330 * and checkstop reset enable (in the reset mode register) are
331 * turned off and so a checkstop condition will result in the cpu
332 * halting.
333 *
334 * I force the cpu into a checkstop condition by putting an illegal
335 * instruction here (at least this is the theory).
336 *
337 * well - that didnt work, so just do an infinite loop!
338 */
3391: b 1b
340#else
341 STD_EXCEPTION(0x1300, InstructionBreakpoint, DebugException)
342#endif
343 STD_EXCEPTION(0x1400, SMI, UnknownException)
344
345 STD_EXCEPTION(0x1500, Trap_15, UnknownException)
346 STD_EXCEPTION(0x1600, Trap_16, UnknownException)
347 STD_EXCEPTION(0x1700, Trap_17, UnknownException)
348 STD_EXCEPTION(0x1800, Trap_18, UnknownException)
349 STD_EXCEPTION(0x1900, Trap_19, UnknownException)
350 STD_EXCEPTION(0x1a00, Trap_1a, UnknownException)
351 STD_EXCEPTION(0x1b00, Trap_1b, UnknownException)
352 STD_EXCEPTION(0x1c00, Trap_1c, UnknownException)
353 STD_EXCEPTION(0x1d00, Trap_1d, UnknownException)
354 STD_EXCEPTION(0x1e00, Trap_1e, UnknownException)
355 STD_EXCEPTION(0x1f00, Trap_1f, UnknownException)
356 STD_EXCEPTION(0x2000, Trap_20, UnknownException)
357 STD_EXCEPTION(0x2100, Trap_21, UnknownException)
358 STD_EXCEPTION(0x2200, Trap_22, UnknownException)
359 STD_EXCEPTION(0x2300, Trap_23, UnknownException)
360 STD_EXCEPTION(0x2400, Trap_24, UnknownException)
361 STD_EXCEPTION(0x2500, Trap_25, UnknownException)
362 STD_EXCEPTION(0x2600, Trap_26, UnknownException)
363 STD_EXCEPTION(0x2700, Trap_27, UnknownException)
364 STD_EXCEPTION(0x2800, Trap_28, UnknownException)
365 STD_EXCEPTION(0x2900, Trap_29, UnknownException)
366 STD_EXCEPTION(0x2a00, Trap_2a, UnknownException)
367 STD_EXCEPTION(0x2b00, Trap_2b, UnknownException)
368 STD_EXCEPTION(0x2c00, Trap_2c, UnknownException)
369 STD_EXCEPTION(0x2d00, Trap_2d, UnknownException)
370 STD_EXCEPTION(0x2e00, Trap_2e, UnknownException)
371 STD_EXCEPTION(0x2f00, Trap_2f, UnknownException)
372
373
374 .globl _end_of_vectors
375_end_of_vectors:
376
377 . = 0x3000
378
379/*
380 * This code finishes saving the registers to the exception frame
381 * and jumps to the appropriate handler for the exception.
382 * Register r21 is pointer into trap frame, r1 has new stack pointer.
383 */
384 .globl transfer_to_handler
385transfer_to_handler:
386 stw r22,_NIP(r21)
387 lis r22,MSR_POW@h
388 andc r23,r23,r22
389 stw r23,_MSR(r21)
390 SAVE_GPR(7, r21)
391 SAVE_4GPRS(8, r21)
392 SAVE_8GPRS(12, r21)
393 SAVE_8GPRS(24, r21)
394 mflr r23
395 andi. r24,r23,0x3f00 /* get vector offset */
396 stw r24,TRAP(r21)
397 li r22,0
398 stw r22,RESULT(r21)
399 lwz r24,0(r23) /* virtual address of handler */
400 lwz r23,4(r23) /* where to go when done */
401 mtspr SRR0,r24
402 mtspr SRR1,r20
403 mtlr r23
404 SYNC
405 rfi /* jump to handler, enable MMU */
406
407int_return:
408 mfmsr r28 /* Disable interrupts */
409 li r4,0
410 ori r4,r4,MSR_EE
411 andc r28,r28,r4
412 SYNC /* Some chip revs need this... */
413 mtmsr r28
414 SYNC
415 lwz r2,_CTR(r1)
416 lwz r0,_LINK(r1)
417 mtctr r2
418 mtlr r0
419 lwz r2,_XER(r1)
420 lwz r0,_CCR(r1)
421 mtspr XER,r2
422 mtcrf 0xFF,r0
423 REST_10GPRS(3, r1)
424 REST_10GPRS(13, r1)
425 REST_8GPRS(23, r1)
426 REST_GPR(31, r1)
427 lwz r2,_NIP(r1) /* Restore environment */
428 lwz r0,_MSR(r1)
429 mtspr SRR0,r2
430 mtspr SRR1,r0
431 lwz r0,GPR0(r1)
432 lwz r2,GPR2(r1)
433 lwz r1,GPR1(r1)
434 SYNC
435 rfi
e4c09508 436#endif /* !CONFIG_NAND_SPL */
f046ccd1
EL
437
438/*
439 * This code initialises the E300 processor core
440 * (conforms to PowerPC 603e spec)
441 * Note: expects original MSR contents to be in r5.
442 */
443 .globl init_e300_core
444init_e300_core: /* time t 10 */
445 /* Initialize machine status; enable machine check interrupt */
446 /*-----------------------------------------------------------*/
447
448 li r3, MSR_KERNEL /* Set ME and RI flags */
449 rlwimi r3, r5, 0, 25, 25 /* preserve IP bit set by HRCW */
450#ifdef DEBUG
451 rlwimi r3, r5, 0, 21, 22 /* debugger might set SE & BE bits */
452#endif
453 SYNC /* Some chip revs need this... */
454 mtmsr r3
455 SYNC
456 mtspr SRR1, r3 /* Make SRR1 match MSR */
457
458
d239d74b 459 lis r3, CFG_IMMR@h
f046ccd1
EL
460#if defined(CONFIG_WATCHDOG)
461 /* Initialise the Wathcdog values and reset it (if req) */
462 /*------------------------------------------------------*/
463 lis r4, CFG_WATCHDOG_VALUE
464 ori r4, r4, (SWCRR_SWEN | SWCRR_SWRI | SWCRR_SWPR)
465 stw r4, SWCRR(r3)
de1d0a69 466
f046ccd1 467 /* and reset it */
de1d0a69 468
f046ccd1
EL
469 li r4, 0x556C
470 sth r4, SWSRR@l(r3)
f6db9456 471 li r4, -0x55C7
f046ccd1
EL
472 sth r4, SWSRR@l(r3)
473#else
474 /* Disable Wathcdog */
475 /*-------------------*/
ec00c335
KG
476 lwz r4, SWCRR(r3)
477 /* Check to see if its enabled for disabling
478 once disabled by SW you can't re-enable */
479 andi. r4, r4, 0x4
480 beq 1f
f046ccd1
EL
481 xor r4, r4, r4
482 stw r4, SWCRR(r3)
ec00c335 4831:
f046ccd1
EL
484#endif /* CONFIG_WATCHDOG */
485
486 /* Initialize the Hardware Implementation-dependent Registers */
487 /* HID0 also contains cache control */
488 /*------------------------------------------------------*/
489
490 lis r3, CFG_HID0_INIT@h
491 ori r3, r3, CFG_HID0_INIT@l
492 SYNC
493 mtspr HID0, r3
494
495 lis r3, CFG_HID0_FINAL@h
496 ori r3, r3, CFG_HID0_FINAL@l
497 SYNC
498 mtspr HID0, r3
499
500 lis r3, CFG_HID2@h
501 ori r3, r3, CFG_HID2@l
502 SYNC
503 mtspr HID2, r3
504
f046ccd1
EL
505 /* Done! */
506 /*------------------------------*/
de1d0a69 507 blr
f046ccd1 508
2688e2f9
KG
509 /* setup_bats - set them up to some initial state */
510 .globl setup_bats
511setup_bats:
512 addis r0, r0, 0x0000
513
514 /* IBAT 0 */
515 addis r4, r0, CFG_IBAT0L@h
516 ori r4, r4, CFG_IBAT0L@l
517 addis r3, r0, CFG_IBAT0U@h
518 ori r3, r3, CFG_IBAT0U@l
519 mtspr IBAT0L, r4
520 mtspr IBAT0U, r3
2688e2f9
KG
521
522 /* DBAT 0 */
523 addis r4, r0, CFG_DBAT0L@h
524 ori r4, r4, CFG_DBAT0L@l
525 addis r3, r0, CFG_DBAT0U@h
526 ori r3, r3, CFG_DBAT0U@l
527 mtspr DBAT0L, r4
528 mtspr DBAT0U, r3
2688e2f9
KG
529
530 /* IBAT 1 */
531 addis r4, r0, CFG_IBAT1L@h
532 ori r4, r4, CFG_IBAT1L@l
533 addis r3, r0, CFG_IBAT1U@h
534 ori r3, r3, CFG_IBAT1U@l
535 mtspr IBAT1L, r4
536 mtspr IBAT1U, r3
2688e2f9
KG
537
538 /* DBAT 1 */
539 addis r4, r0, CFG_DBAT1L@h
540 ori r4, r4, CFG_DBAT1L@l
541 addis r3, r0, CFG_DBAT1U@h
542 ori r3, r3, CFG_DBAT1U@l
543 mtspr DBAT1L, r4
544 mtspr DBAT1U, r3
2688e2f9
KG
545
546 /* IBAT 2 */
547 addis r4, r0, CFG_IBAT2L@h
548 ori r4, r4, CFG_IBAT2L@l
549 addis r3, r0, CFG_IBAT2U@h
550 ori r3, r3, CFG_IBAT2U@l
551 mtspr IBAT2L, r4
552 mtspr IBAT2U, r3
2688e2f9
KG
553
554 /* DBAT 2 */
555 addis r4, r0, CFG_DBAT2L@h
556 ori r4, r4, CFG_DBAT2L@l
557 addis r3, r0, CFG_DBAT2U@h
558 ori r3, r3, CFG_DBAT2U@l
559 mtspr DBAT2L, r4
560 mtspr DBAT2U, r3
2688e2f9
KG
561
562 /* IBAT 3 */
563 addis r4, r0, CFG_IBAT3L@h
564 ori r4, r4, CFG_IBAT3L@l
565 addis r3, r0, CFG_IBAT3U@h
566 ori r3, r3, CFG_IBAT3U@l
567 mtspr IBAT3L, r4
568 mtspr IBAT3U, r3
2688e2f9
KG
569
570 /* DBAT 3 */
571 addis r4, r0, CFG_DBAT3L@h
572 ori r4, r4, CFG_DBAT3L@l
573 addis r3, r0, CFG_DBAT3U@h
574 ori r3, r3, CFG_DBAT3U@l
575 mtspr DBAT3L, r4
576 mtspr DBAT3U, r3
2688e2f9 577
31d82672 578#ifdef CONFIG_HIGH_BATS
2688e2f9
KG
579 /* IBAT 4 */
580 addis r4, r0, CFG_IBAT4L@h
581 ori r4, r4, CFG_IBAT4L@l
582 addis r3, r0, CFG_IBAT4U@h
583 ori r3, r3, CFG_IBAT4U@l
584 mtspr IBAT4L, r4
585 mtspr IBAT4U, r3
2688e2f9
KG
586
587 /* DBAT 4 */
588 addis r4, r0, CFG_DBAT4L@h
589 ori r4, r4, CFG_DBAT4L@l
590 addis r3, r0, CFG_DBAT4U@h
591 ori r3, r3, CFG_DBAT4U@l
592 mtspr DBAT4L, r4
593 mtspr DBAT4U, r3
2688e2f9
KG
594
595 /* IBAT 5 */
596 addis r4, r0, CFG_IBAT5L@h
597 ori r4, r4, CFG_IBAT5L@l
598 addis r3, r0, CFG_IBAT5U@h
599 ori r3, r3, CFG_IBAT5U@l
600 mtspr IBAT5L, r4
601 mtspr IBAT5U, r3
2688e2f9
KG
602
603 /* DBAT 5 */
604 addis r4, r0, CFG_DBAT5L@h
605 ori r4, r4, CFG_DBAT5L@l
606 addis r3, r0, CFG_DBAT5U@h
607 ori r3, r3, CFG_DBAT5U@l
608 mtspr DBAT5L, r4
609 mtspr DBAT5U, r3
2688e2f9
KG
610
611 /* IBAT 6 */
612 addis r4, r0, CFG_IBAT6L@h
613 ori r4, r4, CFG_IBAT6L@l
614 addis r3, r0, CFG_IBAT6U@h
615 ori r3, r3, CFG_IBAT6U@l
616 mtspr IBAT6L, r4
617 mtspr IBAT6U, r3
2688e2f9
KG
618
619 /* DBAT 6 */
620 addis r4, r0, CFG_DBAT6L@h
621 ori r4, r4, CFG_DBAT6L@l
622 addis r3, r0, CFG_DBAT6U@h
623 ori r3, r3, CFG_DBAT6U@l
624 mtspr DBAT6L, r4
625 mtspr DBAT6U, r3
2688e2f9
KG
626
627 /* IBAT 7 */
628 addis r4, r0, CFG_IBAT7L@h
629 ori r4, r4, CFG_IBAT7L@l
630 addis r3, r0, CFG_IBAT7U@h
631 ori r3, r3, CFG_IBAT7U@l
632 mtspr IBAT7L, r4
633 mtspr IBAT7U, r3
2688e2f9
KG
634
635 /* DBAT 7 */
636 addis r4, r0, CFG_DBAT7L@h
637 ori r4, r4, CFG_DBAT7L@l
638 addis r3, r0, CFG_DBAT7U@h
639 ori r3, r3, CFG_DBAT7U@l
640 mtspr DBAT7L, r4
641 mtspr DBAT7U, r3
2688e2f9
KG
642#endif
643
e4c09508
SW
644 isync
645
646 /* invalidate all tlb's
647 *
648 * From the 603e User Manual: "The 603e provides the ability to
649 * invalidate a TLB entry. The TLB Invalidate Entry (tlbie)
650 * instruction invalidates the TLB entry indexed by the EA, and
651 * operates on both the instruction and data TLBs simultaneously
652 * invalidating four TLB entries (both sets in each TLB). The
653 * index corresponds to bits 15-19 of the EA. To invalidate all
654 * entries within both TLBs, 32 tlbie instructions should be
655 * issued, incrementing this field by one each time."
656 *
657 * "Note that the tlbia instruction is not implemented on the
658 * 603e."
659 *
660 * bits 15-19 correspond to addresses 0x00000000 to 0x0001F000
661 * incrementing by 0x1000 each time. The code below is sort of
662 * based on code in "flush_tlbs" from arch/ppc/kernel/head.S
663 *
2688e2f9
KG
664 */
665 lis r3, 0
666 lis r5, 2
667
6681:
669 tlbie r3
670 addi r3, r3, 0x1000
671 cmp 0, 0, r3, r5
672 blt 1b
673
674 blr
675
676 .globl enable_addr_trans
677enable_addr_trans:
678 /* enable address translation */
679 mfmsr r5
680 ori r5, r5, (MSR_IR | MSR_DR)
681 mtmsr r5
682 isync
683 blr
684
685 .globl disable_addr_trans
686disable_addr_trans:
687 /* disable address translation */
688 mflr r4
689 mfmsr r3
690 andi. r0, r3, (MSR_IR | MSR_DR)
691 beqlr
692 andc r3, r3, r0
693 mtspr SRR0, r4
694 mtspr SRR1, r3
695 rfi
696
f046ccd1
EL
697/* Cache functions.
698 *
699 * Note: requires that all cache bits in
700 * HID0 are in the low half word.
701 */
702 .globl icache_enable
703icache_enable:
704 mfspr r3, HID0
705 ori r3, r3, HID0_ICE
706 lis r4, 0
707 ori r4, r4, HID0_ILOCK
708 andc r3, r3, r4
709 ori r4, r3, HID0_ICFI
710 isync
711 mtspr HID0, r4 /* sets enable and invalidate, clears lock */
712 isync
713 mtspr HID0, r3 /* clears invalidate */
714 blr
715
716 .globl icache_disable
717icache_disable:
718 mfspr r3, HID0
719 lis r4, 0
720 ori r4, r4, HID0_ICE|HID0_ILOCK
721 andc r3, r3, r4
722 ori r4, r3, HID0_ICFI
723 isync
724 mtspr HID0, r4 /* sets invalidate, clears enable and lock*/
725 isync
726 mtspr HID0, r3 /* clears invalidate */
727 blr
728
729 .globl icache_status
730icache_status:
731 mfspr r3, HID0
a7c66ad2 732 rlwinm r3, r3, (31 - HID0_ICE_SHIFT + 1), 31, 31
f046ccd1
EL
733 blr
734
735 .globl dcache_enable
736dcache_enable:
737 mfspr r3, HID0
2688e2f9
KG
738 li r5, HID0_DCFI|HID0_DLOCK
739 andc r3, r3, r5
740 mtspr HID0, r3 /* no invalidate, unlock */
741 ori r3, r3, HID0_DCE
742 ori r5, r3, HID0_DCFI
743 mtspr HID0, r5 /* enable + invalidate */
744 mtspr HID0, r3 /* enable */
f046ccd1 745 sync
f046ccd1
EL
746 blr
747
748 .globl dcache_disable
749dcache_disable:
750 mfspr r3, HID0
751 lis r4, 0
2688e2f9 752 ori r4, r4, HID0_DCE|HID0_DLOCK
f046ccd1 753 andc r3, r3, r4
2688e2f9 754 ori r4, r3, HID0_DCI
f046ccd1 755 sync
2688e2f9 756 mtspr HID0, r4 /* sets invalidate, clears enable and lock */
f046ccd1
EL
757 sync
758 mtspr HID0, r3 /* clears invalidate */
759 blr
760
761 .globl dcache_status
762dcache_status:
763 mfspr r3, HID0
a7c66ad2 764 rlwinm r3, r3, (31 - HID0_DCE_SHIFT + 1), 31, 31
f046ccd1
EL
765 blr
766
767 .globl get_pvr
768get_pvr:
769 mfspr r3, PVR
770 blr
771
90f30a71
DL
772 .globl ppcDWstore
773ppcDWstore:
774 lfd 1, 0(r4)
775 stfd 1, 0(r3)
776 blr
777
778 .globl ppcDWload
779ppcDWload:
780 lfd 1, 0(r3)
781 stfd 1, 0(r4)
782 blr
783
f046ccd1
EL
784/*-------------------------------------------------------------------*/
785
786/*
787 * void relocate_code (addr_sp, gd, addr_moni)
788 *
789 * This "function" does not return, instead it continues in RAM
790 * after relocating the monitor code.
791 *
792 * r3 = dest
793 * r4 = src
794 * r5 = length in bytes
795 * r6 = cachelinesize
796 */
797 .globl relocate_code
798relocate_code:
799 mr r1, r3 /* Set new stack pointer */
800 mr r9, r4 /* Save copy of Global Data pointer */
801 mr r10, r5 /* Save copy of Destination Address */
802
803 mr r3, r5 /* Destination Address */
78e48829
KP
804 lis r4, CFG_MONITOR_BASE@h /* Source Address */
805 ori r4, r4, CFG_MONITOR_BASE@l
e4c09508 806 lwz r5, GOT(__bss_start)
f046ccd1
EL
807 sub r5, r5, r4
808 li r6, CFG_CACHELINE_SIZE /* Cache Line Size */
809
810 /*
811 * Fix GOT pointer:
812 *
813 * New GOT-PTR = (old GOT-PTR - CFG_MONITOR_BASE)
814 * + Destination Address
815 *
816 * Offset:
817 */
818 sub r15, r10, r4
819
820 /* First our own GOT */
821 add r14, r14, r15
822 /* then the one used by the C code */
823 add r30, r30, r15
824
825 /*
826 * Now relocate code
827 */
828
829 cmplw cr1,r3,r4
830 addi r0,r5,3
831 srwi. r0,r0,2
832 beq cr1,4f /* In place copy is not necessary */
833 beq 7f /* Protect against 0 count */
834 mtctr r0
835 bge cr1,2f
836 la r8,-4(r4)
837 la r7,-4(r3)
838
839 /* copy */
8401: lwzu r0,4(r8)
841 stwu r0,4(r7)
842 bdnz 1b
843
844 addi r0,r5,3
845 srwi. r0,r0,2
846 mtctr r0
847 la r8,-4(r4)
848 la r7,-4(r3)
de1d0a69
JL
849
850 /* and compare */
f046ccd1
EL
85120: lwzu r20,4(r8)
852 lwzu r21,4(r7)
853 xor. r22, r20, r21
854 bne 30f
855 bdnz 20b
856 b 4f
857
858 /* compare failed */
85930: li r3, 0
860 blr
861
8622: slwi r0,r0,2 /* re copy in reverse order ... y do we needed it? */
863 add r8,r4,r0
864 add r7,r3,r0
8653: lwzu r0,-4(r8)
866 stwu r0,-4(r7)
867 bdnz 3b
f046ccd1
EL
868
869/*
870 * Now flush the cache: note that we must start from a cache aligned
871 * address. Otherwise we might miss one cache line.
872 */
2688e2f9 8734: cmpwi r6,0
f046ccd1 874 add r5,r3,r5
2688e2f9 875 beq 7f /* Always flush prefetch queue in any case */
f046ccd1
EL
876 subi r0,r6,1
877 andc r3,r3,r0
f046ccd1
EL
878 mr r4,r3
8795: dcbst 0,r4
880 add r4,r4,r6
881 cmplw r4,r5
882 blt 5b
2688e2f9 883 sync /* Wait for all dcbst to complete on bus */
f046ccd1
EL
884 mr r4,r3
8856: icbi 0,r4
886 add r4,r4,r6
887 cmplw r4,r5
888 blt 6b
2688e2f9 8897: sync /* Wait for all icbi to complete on bus */
f046ccd1
EL
890 isync
891
892/*
893 * We are done. Do not return, instead branch to second part of board
894 * initialization, now running from RAM.
895 */
f046ccd1
EL
896 addi r0, r10, in_ram - _start + EXC_OFF_SYS_RESET
897 mtlr r0
898 blr
899
900in_ram:
901
902 /*
903 * Relocation Function, r14 point to got2+0x8000
904 *
905 * Adjust got2 pointers, no need to check for 0, this code
906 * already puts a few entries in the table.
907 */
908 li r0,__got2_entries@sectoff@l
909 la r3,GOT(_GOT2_TABLE_)
910 lwz r11,GOT(_GOT2_TABLE_)
911 mtctr r0
912 sub r11,r3,r11
913 addi r3,r3,-4
9141: lwzu r0,4(r3)
915 add r0,r0,r11
916 stw r0,0(r3)
917 bdnz 1b
918
e4c09508 919#ifndef CONFIG_NAND_SPL
f046ccd1
EL
920 /*
921 * Now adjust the fixups and the pointers to the fixups
922 * in case we need to move ourselves again.
923 */
9242: li r0,__fixup_entries@sectoff@l
925 lwz r3,GOT(_FIXUP_TABLE_)
926 cmpwi r0,0
927 mtctr r0
928 addi r3,r3,-4
929 beq 4f
9303: lwzu r4,4(r3)
931 lwzux r0,r4,r11
932 add r0,r0,r11
933 stw r10,0(r3)
934 stw r0,0(r4)
935 bdnz 3b
9364:
e4c09508
SW
937#endif
938
f046ccd1
EL
939clear_bss:
940 /*
941 * Now clear BSS segment
942 */
943 lwz r3,GOT(__bss_start)
944#if defined(CONFIG_HYMOD)
945 /*
946 * For HYMOD - the environment is the very last item in flash.
947 * The real .bss stops just before environment starts, so only
948 * clear up to that point.
949 *
950 * taken from mods for FADS board
951 */
952 lwz r4,GOT(environment)
953#else
954 lwz r4,GOT(_end)
955#endif
956
957 cmplw 0, r3, r4
958 beq 6f
959
960 li r0, 0
9615:
962 stw r0, 0(r3)
963 addi r3, r3, 4
964 cmplw 0, r3, r4
965 bne 5b
9666:
967
968 mr r3, r9 /* Global Data pointer */
969 mr r4, r10 /* Destination Address */
970 bl board_init_r
971
e4c09508 972#ifndef CONFIG_NAND_SPL
f046ccd1
EL
973 /*
974 * Copy exception vector code to low memory
975 *
976 * r3: dest_addr
977 * r7: source address, r8: end address, r9: target address
978 */
979 .globl trap_init
980trap_init:
981 lwz r7, GOT(_start)
982 lwz r8, GOT(_end_of_vectors)
983
984 li r9, 0x100 /* reset vector always at 0x100 */
985
986 cmplw 0, r7, r8
987 bgelr /* return if r7>=r8 - just in case */
988
989 mflr r4 /* save link register */
9901:
991 lwz r0, 0(r7)
992 stw r0, 0(r9)
993 addi r7, r7, 4
994 addi r9, r9, 4
995 cmplw 0, r7, r8
996 bne 1b
997
998 /*
999 * relocate `hdlr' and `int_return' entries
1000 */
1001 li r7, .L_MachineCheck - _start + EXC_OFF_SYS_RESET
1002 li r8, Alignment - _start + EXC_OFF_SYS_RESET
10032:
1004 bl trap_reloc
1005 addi r7, r7, 0x100 /* next exception vector */
1006 cmplw 0, r7, r8
1007 blt 2b
1008
1009 li r7, .L_Alignment - _start + EXC_OFF_SYS_RESET
1010 bl trap_reloc
1011
1012 li r7, .L_ProgramCheck - _start + EXC_OFF_SYS_RESET
1013 bl trap_reloc
1014
1015 li r7, .L_FPUnavailable - _start + EXC_OFF_SYS_RESET
1016 li r8, SystemCall - _start + EXC_OFF_SYS_RESET
10173:
1018 bl trap_reloc
1019 addi r7, r7, 0x100 /* next exception vector */
1020 cmplw 0, r7, r8
1021 blt 3b
1022
1023 li r7, .L_SingleStep - _start + EXC_OFF_SYS_RESET
1024 li r8, _end_of_vectors - _start + EXC_OFF_SYS_RESET
10254:
1026 bl trap_reloc
1027 addi r7, r7, 0x100 /* next exception vector */
1028 cmplw 0, r7, r8
1029 blt 4b
1030
1031 mfmsr r3 /* now that the vectors have */
1032 lis r7, MSR_IP@h /* relocated into low memory */
1033 ori r7, r7, MSR_IP@l /* MSR[IP] can be turned off */
1034 andc r3, r3, r7 /* (if it was on) */
1035 SYNC /* Some chip revs need this... */
1036 mtmsr r3
1037 SYNC
1038
1039 mtlr r4 /* restore link register */
1040 blr
1041
1042 /*
1043 * Function: relocate entries for one exception vector
1044 */
1045trap_reloc:
1046 lwz r0, 0(r7) /* hdlr ... */
1047 add r0, r0, r3 /* ... += dest_addr */
1048 stw r0, 0(r7)
1049
1050 lwz r0, 4(r7) /* int_return ... */
1051 add r0, r0, r3 /* ... += dest_addr */
1052 stw r0, 4(r7)
1053
1054 blr
e4c09508 1055#endif /* !CONFIG_NAND_SPL */
f046ccd1
EL
1056
1057#ifdef CFG_INIT_RAM_LOCK
2688e2f9
KG
1058lock_ram_in_cache:
1059 /* Allocate Initial RAM in data cache.
1060 */
1061 lis r3, (CFG_INIT_RAM_ADDR & ~31)@h
1062 ori r3, r3, (CFG_INIT_RAM_ADDR & ~31)@l
1063 li r2, ((CFG_INIT_RAM_END & ~31) + \
1064 (CFG_INIT_RAM_ADDR & 31) + 31) / 32
1065 mtctr r2
10661:
1067 dcbz r0, r3
1068 addi r3, r3, 32
1069 bdnz 1b
1070
1071 /* Lock the data cache */
1072 mfspr r0, HID0
1073 ori r0, r0, 0x1000
1074 sync
1075 mtspr HID0, r0
1076 sync
1077 blr
1078
e4c09508 1079#ifndef CONFIG_NAND_SPL
f046ccd1
EL
1080.globl unlock_ram_in_cache
1081unlock_ram_in_cache:
1082 /* invalidate the INIT_RAM section */
1083 lis r3, (CFG_INIT_RAM_ADDR & ~31)@h
1084 ori r3, r3, (CFG_INIT_RAM_ADDR & ~31)@l
1085 li r2,512
1086 mtctr r2
10871: icbi r0, r3
1088 dcbi r0, r3
1089 addi r3, r3, 32
1090 bdnz 1b
1091 sync /* Wait for all icbi to complete on bus */
1092 isync
2688e2f9
KG
1093
1094 /* Unlock the data cache and invalidate it */
1095 mfspr r3, HID0
1096 li r5, HID0_DLOCK|HID0_DCFI
1097 andc r3, r3, r5 /* no invalidate, unlock */
1098 ori r5, r3, HID0_DCFI /* invalidate, unlock */
1099 mtspr HID0, r5 /* invalidate, unlock */
1100 mtspr HID0, r3 /* no invalidate, unlock */
1101 sync
f046ccd1 1102 blr
e4c09508
SW
1103#endif /* !CONFIG_NAND_SPL */
1104#endif /* CFG_INIT_RAM_LOCK */
f046ccd1 1105
e4c09508 1106#ifdef CFG_FLASHBOOT
f046ccd1
EL
1107map_flash_by_law1:
1108 /* When booting from ROM (Flash or EPROM), clear the */
1109 /* Address Mask in OR0 so ROM appears everywhere */
1110 /*----------------------------------------------------*/
d239d74b 1111 lis r3, (CFG_IMMR)@h /* r3 <= CFG_IMMR */
de1d0a69 1112 lwz r4, OR0@l(r3)
f046ccd1 1113 li r5, 0x7fff /* r5 <= 0x00007FFFF */
de1d0a69 1114 and r4, r4, r5
f046ccd1
EL
1115 stw r4, OR0@l(r3) /* OR0 <= OR0 & 0x00007FFFF */
1116
1117 /* As MPC8349E User's Manual presented, when RCW[BMS] is set to 0,
1118 * system will boot from 0x0000_0100, and the LBLAWBAR0[BASE_ADDR]
1119 * reset value is 0x00000; when RCW[BMS] is set to 1, system will boot
1120 * from 0xFFF0_0100, and the LBLAWBAR0[BASE_ADDR] reset value is
1121 * 0xFF800. From the hard resetting to here, the processor fetched and
1122 * executed the instructions one by one. There is not absolutely
1123 * jumping happened. Laterly, the u-boot code has to do an absolutely
1124 * jumping to tell the CPU instruction fetching component what the
1125 * u-boot TEXT base address is. Because the TEXT base resides in the
1126 * boot ROM memory space, to garantee the code can run smoothly after
1127 * that jumping, we must map in the entire boot ROM by Local Access
1128 * Window. Sometimes, we desire an non-0x00000 or non-0xFF800 starting
1129 * address for boot ROM, such as 0xFE000000. In this case, the default
1130 * LBIU Local Access Widow 0 will not cover this memory space. So, we
1131 * need another window to map in it.
1132 */
1133 lis r4, (CFG_FLASH_BASE)@h
1134 ori r4, r4, (CFG_FLASH_BASE)@l
1135 stw r4, LBLAWBAR1(r3) /* LBLAWBAR1 <= CFG_FLASH_BASE */
31068b7c
TT
1136
1137 /* Store 0x80000012 + log2(CFG_FLASH_SIZE) into LBLAWAR1 */
1138 lis r4, (0x80000012)@h
1139 ori r4, r4, (0x80000012)@l
1140 li r5, CFG_FLASH_SIZE
11411: srawi. r5, r5, 1 /* r5 = r5 >> 1 */
1142 addi r4, r4, 1
1143 bne 1b
1144
f046ccd1
EL
1145 stw r4, LBLAWAR1(r3) /* LBLAWAR1 <= 8MB Flash Size */
1146 blr
1147
1148 /* Though all the LBIU Local Access Windows and LBC Banks will be
1149 * initialized in the C code, we'd better configure boot ROM's
1150 * window 0 and bank 0 correctly at here.
1151 */
1152remap_flash_by_law0:
1153 /* Initialize the BR0 with the boot ROM starting address. */
1154 lwz r4, BR0(r3)
1155 li r5, 0x7FFF
de1d0a69 1156 and r4, r4, r5
f046ccd1 1157 lis r5, (CFG_FLASH_BASE & 0xFFFF8000)@h
de1d0a69 1158 ori r5, r5, (CFG_FLASH_BASE & 0xFFFF8000)@l
f046ccd1
EL
1159 or r5, r5, r4
1160 stw r5, BR0(r3) /* r5 <= (CFG_FLASH_BASE & 0xFFFF8000) | (BR0 & 0x00007FFF) */
1161
1162 lwz r4, OR0(r3)
31068b7c 1163 lis r5, ~((CFG_FLASH_SIZE << 4) - 1)
f046ccd1 1164 or r4, r4, r5
31068b7c 1165 stw r4, OR0(r3)
f046ccd1
EL
1166
1167 lis r4, (CFG_FLASH_BASE)@h
1168 ori r4, r4, (CFG_FLASH_BASE)@l
1169 stw r4, LBLAWBAR0(r3) /* LBLAWBAR0 <= CFG_FLASH_BASE */
1170
31068b7c
TT
1171 /* Store 0x80000012 + log2(CFG_FLASH_SIZE) into LBLAWAR0 */
1172 lis r4, (0x80000012)@h
1173 ori r4, r4, (0x80000012)@l
1174 li r5, CFG_FLASH_SIZE
11751: srawi. r5, r5, 1 /* r5 = r5 >> 1 */
1176 addi r4, r4, 1
1177 bne 1b
1178 stw r4, LBLAWAR0(r3) /* LBLAWAR0 <= Flash Size */
1179
f046ccd1
EL
1180
1181 xor r4, r4, r4
1182 stw r4, LBLAWBAR1(r3)
1183 stw r4, LBLAWAR1(r3) /* Off LBIU LAW1 */
1184 blr
e4c09508 1185#endif /* CFG_FLASHBOOT */