]> git.sur5r.net Git - u-boot/blob - cpu/mpc85xx/start.S
eeee7a9764c38da00ef504e0e2b61c028e9252f8
[u-boot] / cpu / mpc85xx / start.S
1 /*
2  * Copyright 2004, 2007-2009 Freescale Semiconductor.
3  * Copyright (C) 2003  Motorola,Inc.
4  *
5  * See file CREDITS for list of people who contributed to this
6  * project.
7  *
8  * This program is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU General Public License as
10  * published by the Free Software Foundation; either version 2 of
11  * the License, or (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21  * MA 02111-1307 USA
22  */
23
24 /* U-Boot Startup Code for Motorola 85xx PowerPC based Embedded Boards
25  *
26  * The processor starts at 0xfffffffc and the code is first executed in the
27  * last 4K page(0xfffff000-0xffffffff) in flash/rom.
28  *
29  */
30
31 #include <config.h>
32 #include <mpc85xx.h>
33 #include <timestamp.h>
34 #include <version.h>
35
36 #define _LINUX_CONFIG_H 1       /* avoid reading Linux autoconf.h file  */
37
38 #include <ppc_asm.tmpl>
39 #include <ppc_defs.h>
40
41 #include <asm/cache.h>
42 #include <asm/mmu.h>
43
44 #ifndef  CONFIG_IDENT_STRING
45 #define  CONFIG_IDENT_STRING ""
46 #endif
47
48 #undef  MSR_KERNEL
49 #define MSR_KERNEL ( MSR_ME )   /* Machine Check */
50
51 /*
52  * Set up GOT: Global Offset Table
53  *
54  * Use r14 to access the GOT
55  */
56         START_GOT
57         GOT_ENTRY(_GOT2_TABLE_)
58         GOT_ENTRY(_FIXUP_TABLE_)
59
60         GOT_ENTRY(_start)
61         GOT_ENTRY(_start_of_vectors)
62         GOT_ENTRY(_end_of_vectors)
63         GOT_ENTRY(transfer_to_handler)
64
65         GOT_ENTRY(__init_end)
66         GOT_ENTRY(_end)
67         GOT_ENTRY(__bss_start)
68         END_GOT
69
70 /*
71  * e500 Startup -- after reset only the last 4KB of the effective
72  * address space is mapped in the MMU L2 TLB1 Entry0. The .bootpg
73  * section is located at THIS LAST page and basically does three
74  * things: clear some registers, set up exception tables and
75  * add more TLB entries for 'larger spaces'(e.g. the boot rom) to
76  * continue the boot procedure.
77
78  * Once the boot rom is mapped by TLB entries we can proceed
79  * with normal startup.
80  *
81  */
82
83         .section .bootpg,"ax"
84         .globl _start_e500
85
86 _start_e500:
87
88 /* clear registers/arrays not reset by hardware */
89
90         /* L1 */
91         li      r0,2
92         mtspr   L1CSR0,r0       /* invalidate d-cache */
93         mtspr   L1CSR1,r0       /* invalidate i-cache */
94
95         mfspr   r1,DBSR
96         mtspr   DBSR,r1         /* Clear all valid bits */
97
98         /*
99          *      Enable L1 Caches early
100          *
101          */
102
103         lis     r2,L1CSR0_CPE@H /* enable parity */
104         ori     r2,r2,L1CSR0_DCE
105         mtspr   L1CSR0,r2       /* enable L1 Dcache */
106         isync
107         mtspr   L1CSR1,r2       /* enable L1 Icache */
108         isync
109         msync
110
111         /* Setup interrupt vectors */
112         lis     r1,TEXT_BASE@h
113         mtspr   IVPR,r1
114
115         li      r1,0x0100
116         mtspr   IVOR0,r1        /* 0: Critical input */
117         li      r1,0x0200
118         mtspr   IVOR1,r1        /* 1: Machine check */
119         li      r1,0x0300
120         mtspr   IVOR2,r1        /* 2: Data storage */
121         li      r1,0x0400
122         mtspr   IVOR3,r1        /* 3: Instruction storage */
123         li      r1,0x0500
124         mtspr   IVOR4,r1        /* 4: External interrupt */
125         li      r1,0x0600
126         mtspr   IVOR5,r1        /* 5: Alignment */
127         li      r1,0x0700
128         mtspr   IVOR6,r1        /* 6: Program check */
129         li      r1,0x0800
130         mtspr   IVOR7,r1        /* 7: floating point unavailable */
131         li      r1,0x0900
132         mtspr   IVOR8,r1        /* 8: System call */
133         /* 9: Auxiliary processor unavailable(unsupported) */
134         li      r1,0x0a00
135         mtspr   IVOR10,r1       /* 10: Decrementer */
136         li      r1,0x0b00
137         mtspr   IVOR11,r1       /* 11: Interval timer */
138         li      r1,0x0c00
139         mtspr   IVOR12,r1       /* 12: Watchdog timer */
140         li      r1,0x0d00
141         mtspr   IVOR13,r1       /* 13: Data TLB error */
142         li      r1,0x0e00
143         mtspr   IVOR14,r1       /* 14: Instruction TLB error */
144         li      r1,0x0f00
145         mtspr   IVOR15,r1       /* 15: Debug */
146
147         /* Clear and set up some registers. */
148         li      r0,0x0000
149         lis     r1,0xffff
150         mtspr   DEC,r0                  /* prevent dec exceptions */
151         mttbl   r0                      /* prevent fit & wdt exceptions */
152         mttbu   r0
153         mtspr   TSR,r1                  /* clear all timer exception status */
154         mtspr   TCR,r0                  /* disable all */
155         mtspr   ESR,r0                  /* clear exception syndrome register */
156         mtspr   MCSR,r0                 /* machine check syndrome register */
157         mtxer   r0                      /* clear integer exception register */
158
159 #ifdef CONFIG_SYS_BOOK3E_HV
160         mtspr   MAS8,r0                 /* make sure MAS8 is clear */
161 #endif
162
163         /* Enable Time Base and Select Time Base Clock */
164         lis     r0,HID0_EMCP@h          /* Enable machine check */
165 #if defined(CONFIG_ENABLE_36BIT_PHYS)
166         ori     r0,r0,HID0_ENMAS7@l     /* Enable MAS7 */
167 #endif
168 #ifndef CONFIG_E500MC
169         ori     r0,r0,HID0_TBEN@l       /* Enable Timebase */
170 #endif
171         mtspr   HID0,r0
172
173 #ifndef CONFIG_E500MC
174         li      r0,(HID1_ASTME|HID1_ABE)@l      /* Addr streaming & broadcast */
175         mtspr   HID1,r0
176 #endif
177
178         /* Enable Branch Prediction */
179 #if defined(CONFIG_BTB)
180         li      r0,0x201                /* BBFI = 1, BPEN = 1 */
181         mtspr   BUCSR,r0
182 #endif
183
184 #if defined(CONFIG_SYS_INIT_DBCR)
185         lis     r1,0xffff
186         ori     r1,r1,0xffff
187         mtspr   DBSR,r1                 /* Clear all status bits */
188         lis     r0,CONFIG_SYS_INIT_DBCR@h       /* DBCR0[IDM] must be set */
189         ori     r0,r0,CONFIG_SYS_INIT_DBCR@l
190         mtspr   DBCR0,r0
191 #endif
192
193 #ifdef CONFIG_MPC8569
194 #define CONFIG_SYS_LBC_ADDR (CONFIG_SYS_CCSRBAR_DEFAULT + 0x5000)
195 #define CONFIG_SYS_LBCR_ADDR (CONFIG_SYS_LBC_ADDR + 0xd0)
196
197         /* MPC8569 Rev.0 silcon needs to set bit 13 of LBCR to allow elBC to
198          * use address space which is more than 12bits, and it must be done in
199          * the 4K boot page. So we set this bit here.
200          */
201
202         /* create a temp mapping TLB0[0] for LBCR  */
203         lis     r6,FSL_BOOKE_MAS0(0, 0, 0)@h
204         ori     r6,r6,FSL_BOOKE_MAS0(0, 0, 0)@l
205
206         lis     r7,FSL_BOOKE_MAS1(1, 0, 0, 0, BOOKE_PAGESZ_4K)@h
207         ori     r7,r7,FSL_BOOKE_MAS1(1, 0, 0, 0, BOOKE_PAGESZ_4K)@l
208
209         lis     r8,FSL_BOOKE_MAS2(CONFIG_SYS_LBC_ADDR, MAS2_I|MAS2_G)@h
210         ori     r8,r8,FSL_BOOKE_MAS2(CONFIG_SYS_LBC_ADDR, MAS2_I|MAS2_G)@l
211
212         lis     r9,FSL_BOOKE_MAS3(CONFIG_SYS_LBC_ADDR, 0,
213                                                 (MAS3_SX|MAS3_SW|MAS3_SR))@h
214         ori     r9,r9,FSL_BOOKE_MAS3(CONFIG_SYS_LBC_ADDR, 0,
215                                                 (MAS3_SX|MAS3_SW|MAS3_SR))@l
216
217         mtspr   MAS0,r6
218         mtspr   MAS1,r7
219         mtspr   MAS2,r8
220         mtspr   MAS3,r9
221         isync
222         msync
223         tlbwe
224
225         /* Set LBCR register */
226         lis     r4,CONFIG_SYS_LBCR_ADDR@h
227         ori     r4,r4,CONFIG_SYS_LBCR_ADDR@l
228
229         lis     r5,CONFIG_SYS_LBC_LBCR@h
230         ori     r5,r5,CONFIG_SYS_LBC_LBCR@l
231         stw     r5,0(r4)
232         isync
233
234         /* invalidate this temp TLB */
235         lis     r4,CONFIG_SYS_LBC_ADDR@h
236         ori     r4,r4,CONFIG_SYS_LBC_ADDR@l
237         tlbivax 0,r4
238         isync
239
240 #endif /* CONFIG_MPC8569 */
241
242         /* create a temp mapping in AS=1 to the 4M boot window */
243         lis     r6,FSL_BOOKE_MAS0(1, 15, 0)@h
244         ori     r6,r6,FSL_BOOKE_MAS0(1, 15, 0)@l
245
246         lis     r7,FSL_BOOKE_MAS1(1, 1, 0, 1, BOOKE_PAGESZ_4M)@h
247         ori     r7,r7,FSL_BOOKE_MAS1(1, 1, 0, 1, BOOKE_PAGESZ_4M)@l
248
249         lis     r8,FSL_BOOKE_MAS2(TEXT_BASE & 0xffc00000, (MAS2_I|MAS2_G))@h
250         ori     r8,r8,FSL_BOOKE_MAS2(TEXT_BASE & 0xffc00000, (MAS2_I|MAS2_G))@l
251
252         /* The 85xx has the default boot window 0xff800000 - 0xffffffff */
253         lis     r9,FSL_BOOKE_MAS3(0xffc00000, 0, (MAS3_SX|MAS3_SW|MAS3_SR))@h
254         ori     r9,r9,FSL_BOOKE_MAS3(0xffc00000, 0, (MAS3_SX|MAS3_SW|MAS3_SR))@l
255
256         mtspr   MAS0,r6
257         mtspr   MAS1,r7
258         mtspr   MAS2,r8
259         mtspr   MAS3,r9
260         isync
261         msync
262         tlbwe
263
264         /* create a temp mapping in AS=1 to the stack */
265         lis     r6,FSL_BOOKE_MAS0(1, 14, 0)@h
266         ori     r6,r6,FSL_BOOKE_MAS0(1, 14, 0)@l
267
268         lis     r7,FSL_BOOKE_MAS1(1, 1, 0, 1, BOOKE_PAGESZ_16K)@h
269         ori     r7,r7,FSL_BOOKE_MAS1(1, 1, 0, 1, BOOKE_PAGESZ_16K)@l
270
271         lis     r8,FSL_BOOKE_MAS2(CONFIG_SYS_INIT_RAM_ADDR, 0)@h
272         ori     r8,r8,FSL_BOOKE_MAS2(CONFIG_SYS_INIT_RAM_ADDR, 0)@l
273
274         lis     r9,FSL_BOOKE_MAS3(CONFIG_SYS_INIT_RAM_ADDR, 0, (MAS3_SX|MAS3_SW|MAS3_SR))@h
275         ori     r9,r9,FSL_BOOKE_MAS3(CONFIG_SYS_INIT_RAM_ADDR, 0, (MAS3_SX|MAS3_SW|MAS3_SR))@l
276
277         mtspr   MAS0,r6
278         mtspr   MAS1,r7
279         mtspr   MAS2,r8
280         mtspr   MAS3,r9
281         isync
282         msync
283         tlbwe
284
285         lis     r6,MSR_IS|MSR_DS@h
286         ori     r6,r6,MSR_IS|MSR_DS@l
287         lis     r7,switch_as@h
288         ori     r7,r7,switch_as@l
289
290         mtspr   SPRN_SRR0,r7
291         mtspr   SPRN_SRR1,r6
292         rfi
293
294 switch_as:
295 /* L1 DCache is used for initial RAM */
296
297         /* Allocate Initial RAM in data cache.
298          */
299         lis     r3,CONFIG_SYS_INIT_RAM_ADDR@h
300         ori     r3,r3,CONFIG_SYS_INIT_RAM_ADDR@l
301         mfspr   r2, L1CFG0
302         andi.   r2, r2, 0x1ff
303         /* cache size * 1024 / (2 * L1 line size) */
304         slwi    r2, r2, (10 - 1 - L1_CACHE_SHIFT)
305         mtctr   r2
306         li      r0,0
307 1:
308         dcbz    r0,r3
309         dcbtls  0,r0,r3
310         addi    r3,r3,CONFIG_SYS_CACHELINE_SIZE
311         bdnz    1b
312
313         /* Jump out the last 4K page and continue to 'normal' start */
314 #ifdef CONFIG_SYS_RAMBOOT
315         b       _start_cont
316 #else
317         /* Calculate absolute address in FLASH and jump there           */
318         /*--------------------------------------------------------------*/
319         lis     r3,CONFIG_SYS_MONITOR_BASE@h
320         ori     r3,r3,CONFIG_SYS_MONITOR_BASE@l
321         addi    r3,r3,_start_cont - _start + _START_OFFSET
322         mtlr    r3
323         blr
324 #endif
325
326         .text
327         .globl  _start
328 _start:
329         .long   0x27051956              /* U-BOOT Magic Number */
330         .globl  version_string
331 version_string:
332         .ascii U_BOOT_VERSION
333         .ascii " (", U_BOOT_DATE, " - ", U_BOOT_TIME, ")"
334         .ascii CONFIG_IDENT_STRING, "\0"
335
336         .align  4
337         .globl  _start_cont
338 _start_cont:
339         /* Setup the stack in initial RAM,could be L2-as-SRAM or L1 dcache*/
340         lis     r1,CONFIG_SYS_INIT_RAM_ADDR@h
341         ori     r1,r1,CONFIG_SYS_INIT_SP_OFFSET@l
342
343         li      r0,0
344         stwu    r0,-4(r1)
345         stwu    r0,-4(r1)               /* Terminate call chain */
346
347         stwu    r1,-8(r1)               /* Save back chain and move SP */
348         lis     r0,RESET_VECTOR@h       /* Address of reset vector */
349         ori     r0,r0,RESET_VECTOR@l
350         stwu    r1,-8(r1)               /* Save back chain and move SP */
351         stw     r0,+12(r1)              /* Save return addr (underflow vect) */
352
353         GET_GOT
354         bl      cpu_init_early_f
355
356         /* switch back to AS = 0 */
357         lis     r3,(MSR_CE|MSR_ME|MSR_DE)@h
358         ori     r3,r3,(MSR_CE|MSR_ME|MSR_DE)@l
359         mtmsr   r3
360         isync
361
362         bl      cpu_init_f
363         bl      board_init_f
364         isync
365
366         . = EXC_OFF_SYS_RESET
367         .globl  _start_of_vectors
368 _start_of_vectors:
369
370 /* Critical input. */
371         CRIT_EXCEPTION(0x0100, CriticalInput, CritcalInputException)
372
373 /* Machine check */
374         MCK_EXCEPTION(0x200, MachineCheck, MachineCheckException)
375
376 /* Data Storage exception. */
377         STD_EXCEPTION(0x0300, DataStorage, UnknownException)
378
379 /* Instruction Storage exception. */
380         STD_EXCEPTION(0x0400, InstStorage, UnknownException)
381
382 /* External Interrupt exception. */
383         STD_EXCEPTION(0x0500, ExtInterrupt, ExtIntException)
384
385 /* Alignment exception. */
386         . = 0x0600
387 Alignment:
388         EXCEPTION_PROLOG(SRR0, SRR1)
389         mfspr   r4,DAR
390         stw     r4,_DAR(r21)
391         mfspr   r5,DSISR
392         stw     r5,_DSISR(r21)
393         addi    r3,r1,STACK_FRAME_OVERHEAD
394         li      r20,MSR_KERNEL
395         rlwimi  r20,r23,0,16,16         /* copy EE bit from saved MSR */
396         lwz     r6,GOT(transfer_to_handler)
397         mtlr    r6
398         blrl
399 .L_Alignment:
400         .long   AlignmentException - _start + _START_OFFSET
401         .long   int_return - _start + _START_OFFSET
402
403 /* Program check exception */
404         . = 0x0700
405 ProgramCheck:
406         EXCEPTION_PROLOG(SRR0, SRR1)
407         addi    r3,r1,STACK_FRAME_OVERHEAD
408         li      r20,MSR_KERNEL
409         rlwimi  r20,r23,0,16,16         /* copy EE bit from saved MSR */
410         lwz     r6,GOT(transfer_to_handler)
411         mtlr    r6
412         blrl
413 .L_ProgramCheck:
414         .long   ProgramCheckException - _start + _START_OFFSET
415         .long   int_return - _start + _START_OFFSET
416
417         /* No FPU on MPC85xx.  This exception is not supposed to happen.
418         */
419         STD_EXCEPTION(0x0800, FPUnavailable, UnknownException)
420
421         . = 0x0900
422 /*
423  * r0 - SYSCALL number
424  * r3-... arguments
425  */
426 SystemCall:
427         addis   r11,r0,0        /* get functions table addr */
428         ori     r11,r11,0       /* Note: this code is patched in trap_init */
429         addis   r12,r0,0        /* get number of functions */
430         ori     r12,r12,0
431
432         cmplw   0,r0,r12
433         bge     1f
434
435         rlwinm  r0,r0,2,0,31    /* fn_addr = fn_tbl[r0] */
436         add     r11,r11,r0
437         lwz     r11,0(r11)
438
439         li      r20,0xd00-4     /* Get stack pointer */
440         lwz     r12,0(r20)
441         subi    r12,r12,12      /* Adjust stack pointer */
442         li      r0,0xc00+_end_back-SystemCall
443         cmplw   0,r0,r12        /* Check stack overflow */
444         bgt     1f
445         stw     r12,0(r20)
446
447         mflr    r0
448         stw     r0,0(r12)
449         mfspr   r0,SRR0
450         stw     r0,4(r12)
451         mfspr   r0,SRR1
452         stw     r0,8(r12)
453
454         li      r12,0xc00+_back-SystemCall
455         mtlr    r12
456         mtspr   SRR0,r11
457
458 1:      SYNC
459         rfi
460 _back:
461
462         mfmsr   r11                     /* Disable interrupts */
463         li      r12,0
464         ori     r12,r12,MSR_EE
465         andc    r11,r11,r12
466         SYNC                            /* Some chip revs need this... */
467         mtmsr   r11
468         SYNC
469
470         li      r12,0xd00-4             /* restore regs */
471         lwz     r12,0(r12)
472
473         lwz     r11,0(r12)
474         mtlr    r11
475         lwz     r11,4(r12)
476         mtspr   SRR0,r11
477         lwz     r11,8(r12)
478         mtspr   SRR1,r11
479
480         addi    r12,r12,12              /* Adjust stack pointer */
481         li      r20,0xd00-4
482         stw     r12,0(r20)
483
484         SYNC
485         rfi
486 _end_back:
487
488         STD_EXCEPTION(0x0a00, Decrementer, timer_interrupt)
489         STD_EXCEPTION(0x0b00, IntervalTimer, UnknownException)
490         STD_EXCEPTION(0x0c00, WatchdogTimer, UnknownException)
491
492         STD_EXCEPTION(0x0d00, DataTLBError, UnknownException)
493         STD_EXCEPTION(0x0e00, InstructionTLBError, UnknownException)
494
495         CRIT_EXCEPTION(0x0f00, DebugBreakpoint, DebugException )
496
497         .globl  _end_of_vectors
498 _end_of_vectors:
499
500
501         . = . + (0x100 - ( . & 0xff ))  /* align for debug */
502
503 /*
504  * This code finishes saving the registers to the exception frame
505  * and jumps to the appropriate handler for the exception.
506  * Register r21 is pointer into trap frame, r1 has new stack pointer.
507  */
508         .globl  transfer_to_handler
509 transfer_to_handler:
510         stw     r22,_NIP(r21)
511         lis     r22,MSR_POW@h
512         andc    r23,r23,r22
513         stw     r23,_MSR(r21)
514         SAVE_GPR(7, r21)
515         SAVE_4GPRS(8, r21)
516         SAVE_8GPRS(12, r21)
517         SAVE_8GPRS(24, r21)
518
519         mflr    r23
520         andi.   r24,r23,0x3f00          /* get vector offset */
521         stw     r24,TRAP(r21)
522         li      r22,0
523         stw     r22,RESULT(r21)
524         mtspr   SPRG2,r22               /* r1 is now kernel sp */
525
526         lwz     r24,0(r23)              /* virtual address of handler */
527         lwz     r23,4(r23)              /* where to go when done */
528         mtspr   SRR0,r24
529         mtspr   SRR1,r20
530         mtlr    r23
531         SYNC
532         rfi                             /* jump to handler, enable MMU */
533
534 int_return:
535         mfmsr   r28             /* Disable interrupts */
536         li      r4,0
537         ori     r4,r4,MSR_EE
538         andc    r28,r28,r4
539         SYNC                    /* Some chip revs need this... */
540         mtmsr   r28
541         SYNC
542         lwz     r2,_CTR(r1)
543         lwz     r0,_LINK(r1)
544         mtctr   r2
545         mtlr    r0
546         lwz     r2,_XER(r1)
547         lwz     r0,_CCR(r1)
548         mtspr   XER,r2
549         mtcrf   0xFF,r0
550         REST_10GPRS(3, r1)
551         REST_10GPRS(13, r1)
552         REST_8GPRS(23, r1)
553         REST_GPR(31, r1)
554         lwz     r2,_NIP(r1)     /* Restore environment */
555         lwz     r0,_MSR(r1)
556         mtspr   SRR0,r2
557         mtspr   SRR1,r0
558         lwz     r0,GPR0(r1)
559         lwz     r2,GPR2(r1)
560         lwz     r1,GPR1(r1)
561         SYNC
562         rfi
563
564 crit_return:
565         mfmsr   r28             /* Disable interrupts */
566         li      r4,0
567         ori     r4,r4,MSR_EE
568         andc    r28,r28,r4
569         SYNC                    /* Some chip revs need this... */
570         mtmsr   r28
571         SYNC
572         lwz     r2,_CTR(r1)
573         lwz     r0,_LINK(r1)
574         mtctr   r2
575         mtlr    r0
576         lwz     r2,_XER(r1)
577         lwz     r0,_CCR(r1)
578         mtspr   XER,r2
579         mtcrf   0xFF,r0
580         REST_10GPRS(3, r1)
581         REST_10GPRS(13, r1)
582         REST_8GPRS(23, r1)
583         REST_GPR(31, r1)
584         lwz     r2,_NIP(r1)     /* Restore environment */
585         lwz     r0,_MSR(r1)
586         mtspr   SPRN_CSRR0,r2
587         mtspr   SPRN_CSRR1,r0
588         lwz     r0,GPR0(r1)
589         lwz     r2,GPR2(r1)
590         lwz     r1,GPR1(r1)
591         SYNC
592         rfci
593
594 mck_return:
595         mfmsr   r28             /* Disable interrupts */
596         li      r4,0
597         ori     r4,r4,MSR_EE
598         andc    r28,r28,r4
599         SYNC                    /* Some chip revs need this... */
600         mtmsr   r28
601         SYNC
602         lwz     r2,_CTR(r1)
603         lwz     r0,_LINK(r1)
604         mtctr   r2
605         mtlr    r0
606         lwz     r2,_XER(r1)
607         lwz     r0,_CCR(r1)
608         mtspr   XER,r2
609         mtcrf   0xFF,r0
610         REST_10GPRS(3, r1)
611         REST_10GPRS(13, r1)
612         REST_8GPRS(23, r1)
613         REST_GPR(31, r1)
614         lwz     r2,_NIP(r1)     /* Restore environment */
615         lwz     r0,_MSR(r1)
616         mtspr   SPRN_MCSRR0,r2
617         mtspr   SPRN_MCSRR1,r0
618         lwz     r0,GPR0(r1)
619         lwz     r2,GPR2(r1)
620         lwz     r1,GPR1(r1)
621         SYNC
622         rfmci
623
624 /* Cache functions.
625 */
626 .globl invalidate_icache
627 invalidate_icache:
628         mfspr   r0,L1CSR1
629         ori     r0,r0,L1CSR1_ICFI
630         msync
631         isync
632         mtspr   L1CSR1,r0
633         isync
634         blr                             /* entire I cache */
635
636 .globl invalidate_dcache
637 invalidate_dcache:
638         mfspr   r0,L1CSR0
639         ori     r0,r0,L1CSR0_DCFI
640         msync
641         isync
642         mtspr   L1CSR0,r0
643         isync
644         blr
645
646         .globl  icache_enable
647 icache_enable:
648         mflr    r8
649         bl      invalidate_icache
650         mtlr    r8
651         isync
652         mfspr   r4,L1CSR1
653         ori     r4,r4,0x0001
654         oris    r4,r4,0x0001
655         mtspr   L1CSR1,r4
656         isync
657         blr
658
659         .globl  icache_disable
660 icache_disable:
661         mfspr   r0,L1CSR1
662         lis     r3,0
663         ori     r3,r3,L1CSR1_ICE
664         andc    r0,r0,r3
665         mtspr   L1CSR1,r0
666         isync
667         blr
668
669         .globl  icache_status
670 icache_status:
671         mfspr   r3,L1CSR1
672         andi.   r3,r3,L1CSR1_ICE
673         blr
674
675         .globl  dcache_enable
676 dcache_enable:
677         mflr    r8
678         bl      invalidate_dcache
679         mtlr    r8
680         isync
681         mfspr   r0,L1CSR0
682         ori     r0,r0,0x0001
683         oris    r0,r0,0x0001
684         msync
685         isync
686         mtspr   L1CSR0,r0
687         isync
688         blr
689
690         .globl  dcache_disable
691 dcache_disable:
692         mfspr   r3,L1CSR0
693         lis     r4,0
694         ori     r4,r4,L1CSR0_DCE
695         andc    r3,r3,r4
696         mtspr   L1CSR0,r0
697         isync
698         blr
699
700         .globl  dcache_status
701 dcache_status:
702         mfspr   r3,L1CSR0
703         andi.   r3,r3,L1CSR0_DCE
704         blr
705
706         .globl get_pir
707 get_pir:
708         mfspr   r3,PIR
709         blr
710
711         .globl get_pvr
712 get_pvr:
713         mfspr   r3,PVR
714         blr
715
716         .globl get_svr
717 get_svr:
718         mfspr   r3,SVR
719         blr
720
721         .globl wr_tcr
722 wr_tcr:
723         mtspr   TCR,r3
724         blr
725
726 /*------------------------------------------------------------------------------- */
727 /* Function:     in8 */
728 /* Description:  Input 8 bits */
729 /*------------------------------------------------------------------------------- */
730         .globl  in8
731 in8:
732         lbz     r3,0x0000(r3)
733         blr
734
735 /*------------------------------------------------------------------------------- */
736 /* Function:     out8 */
737 /* Description:  Output 8 bits */
738 /*------------------------------------------------------------------------------- */
739         .globl  out8
740 out8:
741         stb     r4,0x0000(r3)
742         sync
743         blr
744
745 /*------------------------------------------------------------------------------- */
746 /* Function:     out16 */
747 /* Description:  Output 16 bits */
748 /*------------------------------------------------------------------------------- */
749         .globl  out16
750 out16:
751         sth     r4,0x0000(r3)
752         sync
753         blr
754
755 /*------------------------------------------------------------------------------- */
756 /* Function:     out16r */
757 /* Description:  Byte reverse and output 16 bits */
758 /*------------------------------------------------------------------------------- */
759         .globl  out16r
760 out16r:
761         sthbrx  r4,r0,r3
762         sync
763         blr
764
765 /*------------------------------------------------------------------------------- */
766 /* Function:     out32 */
767 /* Description:  Output 32 bits */
768 /*------------------------------------------------------------------------------- */
769         .globl  out32
770 out32:
771         stw     r4,0x0000(r3)
772         sync
773         blr
774
775 /*------------------------------------------------------------------------------- */
776 /* Function:     out32r */
777 /* Description:  Byte reverse and output 32 bits */
778 /*------------------------------------------------------------------------------- */
779         .globl  out32r
780 out32r:
781         stwbrx  r4,r0,r3
782         sync
783         blr
784
785 /*------------------------------------------------------------------------------- */
786 /* Function:     in16 */
787 /* Description:  Input 16 bits */
788 /*------------------------------------------------------------------------------- */
789         .globl  in16
790 in16:
791         lhz     r3,0x0000(r3)
792         blr
793
794 /*------------------------------------------------------------------------------- */
795 /* Function:     in16r */
796 /* Description:  Input 16 bits and byte reverse */
797 /*------------------------------------------------------------------------------- */
798         .globl  in16r
799 in16r:
800         lhbrx   r3,r0,r3
801         blr
802
803 /*------------------------------------------------------------------------------- */
804 /* Function:     in32 */
805 /* Description:  Input 32 bits */
806 /*------------------------------------------------------------------------------- */
807         .globl  in32
808 in32:
809         lwz     3,0x0000(3)
810         blr
811
812 /*------------------------------------------------------------------------------- */
813 /* Function:     in32r */
814 /* Description:  Input 32 bits and byte reverse */
815 /*------------------------------------------------------------------------------- */
816         .globl  in32r
817 in32r:
818         lwbrx   r3,r0,r3
819         blr
820
821 /*------------------------------------------------------------------------------*/
822
823 /*
824  * void write_tlb(mas0, mas1, mas2, mas3, mas7)
825  */
826         .globl  write_tlb
827 write_tlb:
828         mtspr   MAS0,r3
829         mtspr   MAS1,r4
830         mtspr   MAS2,r5
831         mtspr   MAS3,r6
832 #ifdef CONFIG_ENABLE_36BIT_PHYS
833         mtspr   MAS7,r7
834 #endif
835         li      r3,0
836 #ifdef CONFIG_SYS_BOOK3E_HV
837         mtspr   MAS8,r3
838 #endif
839         isync
840         tlbwe
841         msync
842         isync
843         blr
844
845 /*
846  * void relocate_code (addr_sp, gd, addr_moni)
847  *
848  * This "function" does not return, instead it continues in RAM
849  * after relocating the monitor code.
850  *
851  * r3 = dest
852  * r4 = src
853  * r5 = length in bytes
854  * r6 = cachelinesize
855  */
856         .globl  relocate_code
857 relocate_code:
858         mr      r1,r3           /* Set new stack pointer                */
859         mr      r9,r4           /* Save copy of Init Data pointer       */
860         mr      r10,r5          /* Save copy of Destination Address     */
861
862         mr      r3,r5                           /* Destination Address  */
863         lis     r4,CONFIG_SYS_MONITOR_BASE@h            /* Source      Address  */
864         ori     r4,r4,CONFIG_SYS_MONITOR_BASE@l
865         lwz     r5,GOT(__init_end)
866         sub     r5,r5,r4
867         li      r6,CONFIG_SYS_CACHELINE_SIZE            /* Cache Line Size      */
868
869         /*
870          * Fix GOT pointer:
871          *
872          * New GOT-PTR = (old GOT-PTR - CONFIG_SYS_MONITOR_BASE) + Destination Address
873          *
874          * Offset:
875          */
876         sub     r15,r10,r4
877
878         /* First our own GOT */
879         add     r14,r14,r15
880         /* the the one used by the C code */
881         add     r30,r30,r15
882
883         /*
884          * Now relocate code
885          */
886
887         cmplw   cr1,r3,r4
888         addi    r0,r5,3
889         srwi.   r0,r0,2
890         beq     cr1,4f          /* In place copy is not necessary       */
891         beq     7f              /* Protect against 0 count              */
892         mtctr   r0
893         bge     cr1,2f
894
895         la      r8,-4(r4)
896         la      r7,-4(r3)
897 1:      lwzu    r0,4(r8)
898         stwu    r0,4(r7)
899         bdnz    1b
900         b       4f
901
902 2:      slwi    r0,r0,2
903         add     r8,r4,r0
904         add     r7,r3,r0
905 3:      lwzu    r0,-4(r8)
906         stwu    r0,-4(r7)
907         bdnz    3b
908
909 /*
910  * Now flush the cache: note that we must start from a cache aligned
911  * address. Otherwise we might miss one cache line.
912  */
913 4:      cmpwi   r6,0
914         add     r5,r3,r5
915         beq     7f              /* Always flush prefetch queue in any case */
916         subi    r0,r6,1
917         andc    r3,r3,r0
918         mr      r4,r3
919 5:      dcbst   0,r4
920         add     r4,r4,r6
921         cmplw   r4,r5
922         blt     5b
923         sync                    /* Wait for all dcbst to complete on bus */
924         mr      r4,r3
925 6:      icbi    0,r4
926         add     r4,r4,r6
927         cmplw   r4,r5
928         blt     6b
929 7:      sync                    /* Wait for all icbi to complete on bus */
930         isync
931
932         /*
933          * Re-point the IVPR at RAM
934          */
935         mtspr   IVPR,r10
936
937 /*
938  * We are done. Do not return, instead branch to second part of board
939  * initialization, now running from RAM.
940  */
941
942         addi    r0,r10,in_ram - _start + _START_OFFSET
943         mtlr    r0
944         blr                             /* NEVER RETURNS! */
945         .globl  in_ram
946 in_ram:
947
948         /*
949          * Relocation Function, r14 point to got2+0x8000
950          *
951          * Adjust got2 pointers, no need to check for 0, this code
952          * already puts a few entries in the table.
953          */
954         li      r0,__got2_entries@sectoff@l
955         la      r3,GOT(_GOT2_TABLE_)
956         lwz     r11,GOT(_GOT2_TABLE_)
957         mtctr   r0
958         sub     r11,r3,r11
959         addi    r3,r3,-4
960 1:      lwzu    r0,4(r3)
961         add     r0,r0,r11
962         stw     r0,0(r3)
963         bdnz    1b
964
965         /*
966          * Now adjust the fixups and the pointers to the fixups
967          * in case we need to move ourselves again.
968          */
969 2:      li      r0,__fixup_entries@sectoff@l
970         lwz     r3,GOT(_FIXUP_TABLE_)
971         cmpwi   r0,0
972         mtctr   r0
973         addi    r3,r3,-4
974         beq     4f
975 3:      lwzu    r4,4(r3)
976         lwzux   r0,r4,r11
977         add     r0,r0,r11
978         stw     r10,0(r3)
979         stw     r0,0(r4)
980         bdnz    3b
981 4:
982 clear_bss:
983         /*
984          * Now clear BSS segment
985          */
986         lwz     r3,GOT(__bss_start)
987         lwz     r4,GOT(_end)
988
989         cmplw   0,r3,r4
990         beq     6f
991
992         li      r0,0
993 5:
994         stw     r0,0(r3)
995         addi    r3,r3,4
996         cmplw   0,r3,r4
997         bne     5b
998 6:
999
1000         mr      r3,r9           /* Init Data pointer            */
1001         mr      r4,r10          /* Destination Address          */
1002         bl      board_init_r
1003
1004         /*
1005          * Copy exception vector code to low memory
1006          *
1007          * r3: dest_addr
1008          * r7: source address, r8: end address, r9: target address
1009          */
1010         .globl  trap_init
1011 trap_init:
1012         lwz     r7,GOT(_start_of_vectors)
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 */
1019
1020         mflr    r4                      /* save link register           */
1021 1:
1022         lwz     r0,0(r7)
1023         stw     r0,0(r9)
1024         addi    r7,r7,4
1025         addi    r9,r9,4
1026         cmplw   0,r7,r8
1027         bne     1b
1028
1029         /*
1030          * relocate `hdlr' and `int_return' entries
1031          */
1032         li      r7,.L_CriticalInput - _start + _START_OFFSET
1033         bl      trap_reloc
1034         li      r7,.L_MachineCheck - _start + _START_OFFSET
1035         bl      trap_reloc
1036         li      r7,.L_DataStorage - _start + _START_OFFSET
1037         bl      trap_reloc
1038         li      r7,.L_InstStorage - _start + _START_OFFSET
1039         bl      trap_reloc
1040         li      r7,.L_ExtInterrupt - _start + _START_OFFSET
1041         bl      trap_reloc
1042         li      r7,.L_Alignment - _start + _START_OFFSET
1043         bl      trap_reloc
1044         li      r7,.L_ProgramCheck - _start + _START_OFFSET
1045         bl      trap_reloc
1046         li      r7,.L_FPUnavailable - _start + _START_OFFSET
1047         bl      trap_reloc
1048         li      r7,.L_Decrementer - _start + _START_OFFSET
1049         bl      trap_reloc
1050         li      r7,.L_IntervalTimer - _start + _START_OFFSET
1051         li      r8,_end_of_vectors - _start + _START_OFFSET
1052 2:
1053         bl      trap_reloc
1054         addi    r7,r7,0x100             /* next exception vector        */
1055         cmplw   0,r7,r8
1056         blt     2b
1057
1058         lis     r7,0x0
1059         mtspr   IVPR,r7
1060
1061         mtlr    r4                      /* restore link register        */
1062         blr
1063
1064         /*
1065          * Function: relocate entries for one exception vector
1066          */
1067 trap_reloc:
1068         lwz     r0,0(r7)                /* hdlr ...                     */
1069         add     r0,r0,r3                /*  ... += dest_addr            */
1070         stw     r0,0(r7)
1071
1072         lwz     r0,4(r7)                /* int_return ...               */
1073         add     r0,r0,r3                /*  ... += dest_addr            */
1074         stw     r0,4(r7)
1075
1076         blr
1077
1078 .globl unlock_ram_in_cache
1079 unlock_ram_in_cache:
1080         /* invalidate the INIT_RAM section */
1081         lis     r3,(CONFIG_SYS_INIT_RAM_ADDR & ~(CONFIG_SYS_CACHELINE_SIZE-1))@h
1082         ori     r3,r3,(CONFIG_SYS_INIT_RAM_ADDR & ~(CONFIG_SYS_CACHELINE_SIZE-1))@l
1083         mfspr   r4,L1CFG0
1084         andi.   r4,r4,0x1ff
1085         slwi    r4,r4,(10 - 1 - L1_CACHE_SHIFT)
1086         mtctr   r4
1087 1:      dcbi    r0,r3
1088         addi    r3,r3,CONFIG_SYS_CACHELINE_SIZE
1089         bdnz    1b
1090         sync
1091
1092         /* Invalidate the TLB entries for the cache */
1093         lis     r3,CONFIG_SYS_INIT_RAM_ADDR@h
1094         ori     r3,r3,CONFIG_SYS_INIT_RAM_ADDR@l
1095         tlbivax 0,r3
1096         addi    r3,r3,0x1000
1097         tlbivax 0,r3
1098         addi    r3,r3,0x1000
1099         tlbivax 0,r3
1100         addi    r3,r3,0x1000
1101         tlbivax 0,r3
1102         isync
1103         blr
1104
1105 .globl flush_dcache
1106 flush_dcache:
1107         mfspr   r3,SPRN_L1CFG0
1108
1109         rlwinm  r5,r3,9,3       /* Extract cache block size */
1110         twlgti  r5,1            /* Only 32 and 64 byte cache blocks
1111                                  * are currently defined.
1112                                  */
1113         li      r4,32
1114         subfic  r6,r5,2         /* r6 = log2(1KiB / cache block size) -
1115                                  *      log2(number of ways)
1116                                  */
1117         slw     r5,r4,r5        /* r5 = cache block size */
1118
1119         rlwinm  r7,r3,0,0xff    /* Extract number of KiB in the cache */
1120         mulli   r7,r7,13        /* An 8-way cache will require 13
1121                                  * loads per set.
1122                                  */
1123         slw     r7,r7,r6
1124
1125         /* save off HID0 and set DCFA */
1126         mfspr   r8,SPRN_HID0
1127         ori     r9,r8,HID0_DCFA@l
1128         mtspr   SPRN_HID0,r9
1129         isync
1130
1131         lis     r4,0
1132         mtctr   r7
1133
1134 1:      lwz     r3,0(r4)        /* Load... */
1135         add     r4,r4,r5
1136         bdnz    1b
1137
1138         msync
1139         lis     r4,0
1140         mtctr   r7
1141
1142 1:      dcbf    0,r4            /* ...and flush. */
1143         add     r4,r4,r5
1144         bdnz    1b
1145
1146         /* restore HID0 */
1147         mtspr   SPRN_HID0,r8
1148         isync
1149
1150         blr
1151
1152 .globl setup_ivors
1153 setup_ivors:
1154
1155 #include "fixed_ivor.S"
1156         blr