ftp://ftp.kernel.org/pub/linux/kernel/v2.6/linux-2.6.6.tar.bz2
[linux-2.6.git] / arch / ppc / kernel / head_4xx.S
1 /*
2  *    Copyright (c) 1995-1996 Gary Thomas <gdt@linuxppc.org>
3  *      Initial PowerPC version.
4  *    Copyright (c) 1996 Cort Dougan <cort@cs.nmt.edu>
5  *      Rewritten for PReP
6  *    Copyright (c) 1996 Paul Mackerras <paulus@cs.anu.edu.au>
7  *      Low-level exception handers, MMU support, and rewrite.
8  *    Copyright (c) 1997 Dan Malek <dmalek@jlc.net>
9  *      PowerPC 8xx modifications.
10  *    Copyright (c) 1998-1999 TiVo, Inc.
11  *      PowerPC 403GCX modifications.
12  *    Copyright (c) 1999 Grant Erickson <grant@lcse.umn.edu>
13  *      PowerPC 403GCX/405GP modifications.
14  *    Copyright 2000 MontaVista Software Inc.
15  *      PPC405 modifications
16  *      PowerPC 403GCX/405GP modifications.
17  *      Author: MontaVista Software, Inc.
18  *              frank_rowand@mvista.com or source@mvista.com
19  *              debbie_chu@mvista.com
20  *
21  *
22  *    Module name: head_4xx.S
23  *
24  *    Description:
25  *      Kernel execution entry point code.
26  *
27  *    This program is free software; you can redistribute it and/or
28  *    modify it under the terms of the GNU General Public License
29  *    as published by the Free Software Foundation; either version
30  *    2 of the License, or (at your option) any later version.
31  *
32  */
33
34 #include <linux/config.h>
35 #include <asm/processor.h>
36 #include <asm/page.h>
37 #include <asm/mmu.h>
38 #include <asm/pgtable.h>
39 #include <asm/ibm4xx.h>
40 #include <asm/cputable.h>
41 #include <asm/thread_info.h>
42 #include <asm/ppc_asm.h>
43 #include <asm/offsets.h>
44
45 /* As with the other PowerPC ports, it is expected that when code
46  * execution begins here, the following registers contain valid, yet
47  * optional, information:
48  *
49  *   r3 - Board info structure pointer (DRAM, frequency, MAC address, etc.)
50  *   r4 - Starting address of the init RAM disk
51  *   r5 - Ending address of the init RAM disk
52  *   r6 - Start of kernel command line string (e.g. "mem=96m")
53  *   r7 - End of kernel command line string
54  *
55  * This is all going to change RSN when we add bi_recs.......  -- Dan
56  */
57         .text
58 _GLOBAL(_stext)
59 _GLOBAL(_start)
60
61         /* Save parameters we are passed.
62         */
63         mr      r31,r3
64         mr      r30,r4
65         mr      r29,r5
66         mr      r28,r6
67         mr      r27,r7
68
69         /* We have to turn on the MMU right away so we get cache modes
70          * set correctly.
71          */
72         bl      initial_mmu
73
74 /* We now have the lower 16 Meg mapped into TLB entries, and the caches
75  * ready to work.
76  */
77 turn_on_mmu:
78         lis     r0,MSR_KERNEL@h
79         ori     r0,r0,MSR_KERNEL@l
80         mtspr   SRR1,r0
81         lis     r0,start_here@h
82         ori     r0,r0,start_here@l
83         mtspr   SRR0,r0
84         SYNC
85         rfi                             /* enables MMU */
86         b       .                       /* prevent prefetch past rfi */
87
88 /*
89  * This area is used for temporarily saving registers during the
90  * critical exception prolog.
91  */
92         . = 0xc0
93 crit_save:
94 _GLOBAL(crit_r10)
95         .space  4
96 _GLOBAL(crit_r11)
97         .space  4
98 _GLOBAL(crit_sprg0)
99         .space  4
100 _GLOBAL(crit_sprg1)
101         .space  4
102 _GLOBAL(crit_sprg4)
103         .space  4
104 _GLOBAL(crit_sprg5)
105         .space  4
106 _GLOBAL(crit_sprg6)
107         .space  4
108 _GLOBAL(crit_sprg7)
109         .space  4
110 _GLOBAL(crit_pid)
111         .space  4
112 _GLOBAL(crit_srr0)
113         .space  4
114 _GLOBAL(crit_srr1)
115         .space  4
116
117 /*
118  * Exception vector entry code. This code runs with address translation
119  * turned off (i.e. using physical addresses). We assume SPRG3 has the
120  * physical address of the current task thread_struct.
121  * Note that we have to have decremented r1 before we write to any fields
122  * of the exception frame, since a critical interrupt could occur at any
123  * time, and it will write to the area immediately below the current r1.
124  */
125 #define NORMAL_EXCEPTION_PROLOG                                              \
126         mtspr   SPRN_SPRG0,r10;         /* save two registers to work with */\
127         mtspr   SPRN_SPRG1,r11;                                              \
128         mtspr   SPRN_SPRG2,r1;                                               \
129         mfcr    r10;                    /* save CR in r10 for now          */\
130         mfspr   r11,SPRN_SRR1;          /* check whether user or kernel    */\
131         andi.   r11,r11,MSR_PR;                                              \
132         beq     1f;                                                          \
133         mfspr   r1,SPRG3;               /* if from user, start at top of   */\
134         lwz     r1,THREAD_INFO-THREAD(r1); /* this thread's kernel stack   */\
135         addi    r1,r1,THREAD_SIZE;                                           \
136 1:      subi    r1,r1,INT_FRAME_SIZE;   /* Allocate an exception frame     */\
137         tophys(r11,r1);                                                      \
138         stw     r10,_CCR(r11);          /* save various registers          */\
139         stw     r12,GPR12(r11);                                              \
140         stw     r9,GPR9(r11);                                                \
141         mfspr   r10,SPRG0;                                                   \
142         stw     r10,GPR10(r11);                                              \
143         mfspr   r12,SPRG1;                                                   \
144         stw     r12,GPR11(r11);                                              \
145         mflr    r10;                                                         \
146         stw     r10,_LINK(r11);                                              \
147         mfspr   r10,SPRG2;                                                   \
148         mfspr   r12,SRR0;                                                    \
149         stw     r10,GPR1(r11);                                               \
150         mfspr   r9,SRR1;                                                     \
151         stw     r10,0(r11);                                                  \
152         rlwinm  r9,r9,0,14,12;          /* clear MSR_WE (necessary?)       */\
153         stw     r0,GPR0(r11);                                                \
154         SAVE_4GPRS(3, r11);                                                  \
155         SAVE_2GPRS(7, r11)
156
157 /*
158  * Exception prolog for critical exceptions.  This is a little different
159  * from the normal exception prolog above since a critical exception
160  * can potentially occur at any point during normal exception processing.
161  * Thus we cannot use the same SPRG registers as the normal prolog above.
162  * Instead we use a couple of words of memory at low physical addresses.
163  * This is OK since we don't support SMP on these processors.
164  */
165 #define CRITICAL_EXCEPTION_PROLOG                                            \
166         stw     r10,crit_r10@l(0);      /* save two registers to work with */\
167         stw     r11,crit_r11@l(0);                                           \
168         mfspr   r10,SPRG0;                                                   \
169         stw     r10,crit_sprg0@l(0);                                         \
170         mfspr   r10,SPRG1;                                                   \
171         stw     r10,crit_sprg1@l(0);                                         \
172         mfspr   r10,SPRG4;                                                   \
173         stw     r10,crit_sprg4@l(0);                                         \
174         mfspr   r10,SPRG5;                                                   \
175         stw     r10,crit_sprg5@l(0);                                         \
176         mfspr   r10,SPRG6;                                                   \
177         stw     r10,crit_sprg6@l(0);                                         \
178         mfspr   r10,SPRG7;                                                   \
179         stw     r10,crit_sprg7@l(0);                                         \
180         mfspr   r10,SPRN_PID;                                                \
181         stw     r10,crit_pid@l(0);                                           \
182         mfspr   r10,SRR0;                                                    \
183         stw     r10,crit_srr0@l(0);                                          \
184         mfspr   r10,SRR1;                                                    \
185         stw     r10,crit_srr1@l(0);                                          \
186         mfcr    r10;                    /* save CR in r10 for now          */\
187         mfspr   r11,SPRN_SRR3;          /* check whether user or kernel    */\
188         andi.   r11,r11,MSR_PR;                                              \
189         lis     r11,critical_stack_top@h;                                    \
190         ori     r11,r11,critical_stack_top@l;                                \
191         beq     1f;                                                          \
192         /* COMING FROM USER MODE */                                          \
193         mfspr   r11,SPRG3;              /* if from user, start at top of   */\
194         lwz     r11,THREAD_INFO-THREAD(r11); /* this thread's kernel stack */\
195         addi    r11,r11,THREAD_SIZE;                                         \
196 1:      subi    r11,r11,INT_FRAME_SIZE; /* Allocate an exception frame     */\
197         tophys(r11,r11);                                                     \
198         stw     r10,_CCR(r11);          /* save various registers          */\
199         stw     r12,GPR12(r11);                                              \
200         stw     r9,GPR9(r11);                                                \
201         mflr    r10;                                                         \
202         stw     r10,_LINK(r11);                                              \
203         mfspr   r12,SPRN_DEAR;          /* save DEAR and ESR in the frame  */\
204         stw     r12,_DEAR(r11);         /* since they may have had stuff   */\
205         mfspr   r9,SPRN_ESR;            /* in them at the point where the  */\
206         stw     r9,_ESR(r11);           /* exception was taken             */\
207         mfspr   r12,SRR2;                                                    \
208         stw     r1,GPR1(r11);                                                \
209         mfspr   r9,SRR3;                                                     \
210         stw     r1,0(r11);                                                   \
211         tovirt(r1,r11);                                                      \
212         rlwinm  r9,r9,0,14,12;          /* clear MSR_WE (necessary?)       */\
213         stw     r0,GPR0(r11);                                                \
214         SAVE_4GPRS(3, r11);                                                  \
215         SAVE_2GPRS(7, r11)
216
217         /*
218          * State at this point:
219          * r9 saved in stack frame, now saved SRR3 & ~MSR_WE
220          * r10 saved in crit_r10 and in stack frame, trashed
221          * r11 saved in crit_r11 and in stack frame,
222          *      now phys stack/exception frame pointer
223          * r12 saved in stack frame, now saved SRR2
224          * SPRG0,1,4,5,6,7 saved in crit_sprg0,1,4,5,6,7
225          * PID saved in crit_pid
226          * SRR0,1 saved in crit_srr0,1
227          * CR saved in stack frame, CR0.EQ = !SRR3.PR
228          * LR, DEAR, ESR in stack frame
229          * r1 saved in stack frame, now virt stack/excframe pointer
230          * r0, r3-r8 saved in stack frame
231          */
232
233 /*
234  * Exception vectors.
235  */
236 #define START_EXCEPTION(n, label)                                            \
237         . = n;                                                               \
238 label:
239
240 #define EXCEPTION(n, label, hdlr, xfer)                         \
241         START_EXCEPTION(n, label);                              \
242         NORMAL_EXCEPTION_PROLOG;                                \
243         addi    r3,r1,STACK_FRAME_OVERHEAD;                     \
244         xfer(n, hdlr)
245
246 #define CRITICAL_EXCEPTION(n, label, hdlr)                      \
247         START_EXCEPTION(n, label);                              \
248         CRITICAL_EXCEPTION_PROLOG;                              \
249         addi    r3,r1,STACK_FRAME_OVERHEAD;                     \
250         EXC_XFER_TEMPLATE(hdlr, n+2, (MSR_KERNEL & ~(MSR_ME|MSR_DE|MSR_CE)), \
251                           NOCOPY, crit_transfer_to_handler,     \
252                           ret_from_crit_exc)
253
254 #define EXC_XFER_TEMPLATE(hdlr, trap, msr, copyee, tfer, ret)   \
255         li      r10,trap;                                       \
256         stw     r10,TRAP(r11);                                  \
257         lis     r10,msr@h;                                      \
258         ori     r10,r10,msr@l;                                  \
259         copyee(r10, r9);                                        \
260         bl      tfer;                                           \
261         .long   hdlr;                                           \
262         .long   ret
263
264 #define COPY_EE(d, s)           rlwimi d,s,0,16,16
265 #define NOCOPY(d, s)
266
267 #define EXC_XFER_STD(n, hdlr)           \
268         EXC_XFER_TEMPLATE(hdlr, n, MSR_KERNEL, NOCOPY, transfer_to_handler_full, \
269                           ret_from_except_full)
270
271 #define EXC_XFER_LITE(n, hdlr)          \
272         EXC_XFER_TEMPLATE(hdlr, n+1, MSR_KERNEL, NOCOPY, transfer_to_handler, \
273                           ret_from_except)
274
275 #define EXC_XFER_EE(n, hdlr)            \
276         EXC_XFER_TEMPLATE(hdlr, n, MSR_KERNEL, COPY_EE, transfer_to_handler_full, \
277                           ret_from_except_full)
278
279 #define EXC_XFER_EE_LITE(n, hdlr)       \
280         EXC_XFER_TEMPLATE(hdlr, n+1, MSR_KERNEL, COPY_EE, transfer_to_handler, \
281                           ret_from_except)
282
283
284 /*
285  * 0x0100 - Critical Interrupt Exception
286  */
287         CRITICAL_EXCEPTION(0x0100, CriticalInterrupt, UnknownException)
288
289 /*
290  * 0x0200 - Machine Check Exception
291  */
292         CRITICAL_EXCEPTION(0x0200, MachineCheck, MachineCheckException)
293
294 /*
295  * 0x0300 - Data Storage Exception
296  * This happens for just a few reasons.  U0 set (but we don't do that),
297  * or zone protection fault (user violation, write to protected page).
298  * If this is just an update of modified status, we do that quickly
299  * and exit.  Otherwise, we call heavywight functions to do the work.
300  */
301         START_EXCEPTION(0x0300, DataStorage)
302         mtspr   SPRG0, r10              /* Save some working registers */
303         mtspr   SPRG1, r11
304 #ifdef CONFIG_403GCX
305         stw     r12, 0(r0)
306         stw     r9, 4(r0)
307         mfcr    r11
308         mfspr   r12, SPRN_PID
309         stw     r11, 8(r0)
310         stw     r12, 12(r0)
311 #else
312         mtspr   SPRG4, r12
313         mtspr   SPRG5, r9
314         mfcr    r11
315         mfspr   r12, SPRN_PID
316         mtspr   SPRG7, r11
317         mtspr   SPRG6, r12
318 #endif
319
320         /* First, check if it was a zone fault (which means a user
321         * tried to access a kernel or read-protected page - always
322         * a SEGV).  All other faults here must be stores, so no
323         * need to check ESR_DST as well. */
324         mfspr   r10, SPRN_ESR
325         andis.  r10, r10, ESR_DIZ@h
326         bne     2f
327
328         mfspr   r10, SPRN_DEAR          /* Get faulting address */
329
330         /* If we are faulting a kernel address, we have to use the
331          * kernel page tables.
332          */
333         andis.  r11, r10, 0x8000
334         beq     3f
335         lis     r11, swapper_pg_dir@h
336         ori     r11, r11, swapper_pg_dir@l
337         li      r9, 0
338         mtspr   SPRN_PID, r9            /* TLB will have 0 TID */
339         b       4f
340
341         /* Get the PGD for the current thread.
342          */
343 3:
344         mfspr   r11,SPRG3
345         lwz     r11,PGDIR(r11)
346 4:
347         tophys(r11, r11)
348         rlwimi  r11, r10, 12, 20, 29    /* Create L1 (pgdir/pmd) address */
349         lwz     r11, 0(r11)             /* Get L1 entry */
350         rlwinm. r12, r11, 0, 0, 19      /* Extract L2 (pte) base address */
351         beq     2f                      /* Bail if no table */
352
353         rlwimi  r12, r10, 22, 20, 29    /* Compute PTE address */
354         lwz     r11, 0(r12)             /* Get Linux PTE */
355
356         andi.   r9, r11, _PAGE_RW       /* Is it writeable? */
357         beq     2f                      /* Bail if not */
358
359         /* Update 'changed'.
360         */
361         ori     r11, r11, _PAGE_DIRTY|_PAGE_ACCESSED|_PAGE_HWWRITE
362         stw     r11, 0(r12)             /* Update Linux page table */
363
364         /* Most of the Linux PTE is ready to load into the TLB LO.
365          * We set ZSEL, where only the LS-bit determines user access.
366          * We set execute, because we don't have the granularity to
367          * properly set this at the page level (Linux problem).
368          * If shared is set, we cause a zero PID->TID load.
369          * Many of these bits are software only.  Bits we don't set
370          * here we (properly should) assume have the appropriate value.
371          */
372         li      r12, 0x0ce2
373         andc    r11, r11, r12           /* Make sure 20, 21 are zero */
374
375         /* find the TLB index that caused the fault.  It has to be here.
376         */
377         tlbsx   r9, 0, r10
378
379         tlbwe   r11, r9, TLB_DATA               /* Load TLB LO */
380
381         /* Done...restore registers and get out of here.
382         */
383 #ifdef CONFIG_403GCX
384         lwz     r12, 12(r0)
385         lwz     r11, 8(r0)
386         mtspr   SPRN_PID, r12
387         mtcr    r11
388         lwz     r9, 4(r0)
389         lwz     r12, 0(r0)
390 #else
391         mfspr   r12, SPRG6
392         mfspr   r11, SPRG7
393         mtspr   SPRN_PID, r12
394         mtcr    r11
395         mfspr   r9, SPRG5
396         mfspr   r12, SPRG4
397 #endif
398         mfspr   r11, SPRG1
399         mfspr   r10, SPRG0
400         PPC405_ERR77_SYNC
401         rfi                     /* Should sync shadow TLBs */
402         b       .               /* prevent prefetch past rfi */
403
404 2:
405         /* The bailout.  Restore registers to pre-exception conditions
406          * and call the heavyweights to help us out.
407          */
408 #ifdef CONFIG_403GCX
409         lwz     r12, 12(r0)
410         lwz     r11, 8(r0)
411         mtspr   SPRN_PID, r12
412         mtcr    r11
413         lwz     r9, 4(r0)
414         lwz     r12, 0(r0)
415 #else
416         mfspr   r12, SPRG6
417         mfspr   r11, SPRG7
418         mtspr   SPRN_PID, r12
419         mtcr    r11
420         mfspr   r9, SPRG5
421         mfspr   r12, SPRG4
422 #endif
423         mfspr   r11, SPRG1
424         mfspr   r10, SPRG0
425         b       DataAccess
426
427 /*
428  * 0x0400 - Instruction Storage Exception
429  * This is caused by a fetch from non-execute or guarded pages.
430  */
431         START_EXCEPTION(0x0400, InstructionAccess)
432         NORMAL_EXCEPTION_PROLOG
433         mr      r4,r12                  /* Pass SRR0 as arg2 */
434         li      r5,0                    /* Pass zero as arg3 */
435         addi    r3,r1,STACK_FRAME_OVERHEAD
436         EXC_XFER_EE_LITE(0x400, do_page_fault)
437
438 /* 0x0500 - External Interrupt Exception */
439         EXCEPTION(0x0500, HardwareInterrupt, do_IRQ, EXC_XFER_LITE)
440
441 /* 0x0600 - Alignment Exception */
442         START_EXCEPTION(0x0600, Alignment)
443         NORMAL_EXCEPTION_PROLOG
444         mfspr   r4,SPRN_DEAR            /* Grab the DEAR and save it */
445         stw     r4,_DEAR(r11)
446         addi    r3,r1,STACK_FRAME_OVERHEAD
447         EXC_XFER_EE(0x600, AlignmentException)
448
449 /* 0x0700 - Program Exception */
450         START_EXCEPTION(0x0700, ProgramCheck)
451         NORMAL_EXCEPTION_PROLOG
452         mfspr   r4,SPRN_ESR             /* Grab the ESR and save it */
453         stw     r4,_ESR(r11)
454         addi    r3,r1,STACK_FRAME_OVERHEAD
455         EXC_XFER_EE(0x700, ProgramCheckException)
456
457         EXCEPTION(0x0800, Trap_08, UnknownException, EXC_XFER_EE)
458         EXCEPTION(0x0900, Trap_09, UnknownException, EXC_XFER_EE)
459         EXCEPTION(0x0A00, Trap_0A, UnknownException, EXC_XFER_EE)
460         EXCEPTION(0x0B00, Trap_0B, UnknownException, EXC_XFER_EE)
461
462 /* 0x0C00 - System Call Exception */
463         START_EXCEPTION(0x0C00, SystemCall)
464         NORMAL_EXCEPTION_PROLOG
465         EXC_XFER_EE_LITE(0xc00, DoSyscall)
466
467         EXCEPTION(0x0D00, Trap_0D, UnknownException, EXC_XFER_EE)
468         EXCEPTION(0x0E00, Trap_0E, UnknownException, EXC_XFER_EE)
469         EXCEPTION(0x0F00, Trap_0F, UnknownException, EXC_XFER_EE)
470
471 /* 0x1000 - Programmable Interval Timer (PIT) Exception */
472         START_EXCEPTION(0x1000, Decrementer)
473         NORMAL_EXCEPTION_PROLOG
474         lis     r0,TSR_PIS@h
475         mtspr   SPRN_TSR,r0             /* Clear the PIT exception */
476         addi    r3,r1,STACK_FRAME_OVERHEAD
477         EXC_XFER_LITE(0x1000, timer_interrupt)
478
479 #if 0
480 /* NOTE:
481  * FIT and WDT handlers are not implemented yet.
482  */
483
484 /* 0x1010 - Fixed Interval Timer (FIT) Exception
485 */
486         STND_EXCEPTION(0x1010,  FITException,           UnknownException)
487
488 /* 0x1020 - Watchdog Timer (WDT) Exception
489 */
490
491         CRITICAL_EXCEPTION(0x1020, WDTException, UnknownException)
492 #endif
493
494 /* 0x1100 - Data TLB Miss Exception
495  * As the name implies, translation is not in the MMU, so search the
496  * page tables and fix it.  The only purpose of this function is to
497  * load TLB entries from the page table if they exist.
498  */
499         START_EXCEPTION(0x1100, DTLBMiss)
500         mtspr   SPRG0, r10              /* Save some working registers */
501         mtspr   SPRG1, r11
502 #ifdef CONFIG_403GCX
503         stw     r12, 0(r0)
504         stw     r9, 4(r0)
505         mfcr    r11
506         mfspr   r12, SPRN_PID
507         stw     r11, 8(r0)
508         stw     r12, 12(r0)
509 #else
510         mtspr   SPRG4, r12
511         mtspr   SPRG5, r9
512         mfcr    r11
513         mfspr   r12, SPRN_PID
514         mtspr   SPRG7, r11
515         mtspr   SPRG6, r12
516 #endif
517         mfspr   r10, SPRN_DEAR          /* Get faulting address */
518
519         /* If we are faulting a kernel address, we have to use the
520          * kernel page tables.
521          */
522         andis.  r11, r10, 0x8000
523         beq     3f
524         lis     r11, swapper_pg_dir@h
525         ori     r11, r11, swapper_pg_dir@l
526         li      r9, 0
527         mtspr   SPRN_PID, r9            /* TLB will have 0 TID */
528         b       4f
529
530         /* Get the PGD for the current thread.
531          */
532 3:
533         mfspr   r11,SPRG3
534         lwz     r11,PGDIR(r11)
535 4:
536         tophys(r11, r11)
537         rlwimi  r11, r10, 12, 20, 29    /* Create L1 (pgdir/pmd) address */
538         lwz     r12, 0(r11)             /* Get L1 entry */
539         andi.   r9, r12, _PMD_PRESENT   /* Check if it points to a PTE page */
540         beq     2f                      /* Bail if no table */
541
542         rlwimi  r12, r10, 22, 20, 29    /* Compute PTE address */
543         lwz     r11, 0(r12)             /* Get Linux PTE */
544         andi.   r9, r11, _PAGE_PRESENT
545         beq     5f
546
547         ori     r11, r11, _PAGE_ACCESSED
548         stw     r11, 0(r12)
549
550         /* Create TLB tag.  This is the faulting address plus a static
551          * set of bits.  These are size, valid, E, U0.
552         */
553         li      r12, 0x00c0
554         rlwimi  r10, r12, 0, 20, 31
555
556         b       finish_tlb_load
557
558 2:      /* Check for possible large-page pmd entry */
559         rlwinm. r9, r12, 2, 22, 24
560         beq     5f
561
562         /* Create TLB tag.  This is the faulting address, plus a static
563          * set of bits (valid, E, U0) plus the size from the PMD.
564          */
565         ori     r9, r9, 0x40
566         rlwimi  r10, r9, 0, 20, 31
567         mr      r11, r12
568
569         b       finish_tlb_load
570
571 5:
572         /* The bailout.  Restore registers to pre-exception conditions
573          * and call the heavyweights to help us out.
574          */
575 #ifdef CONFIG_403GCX
576         lwz     r12, 12(r0)
577         lwz     r11, 8(r0)
578         mtspr   SPRN_PID, r12
579         mtcr    r11
580         lwz     r9, 4(r0)
581         lwz     r12, 0(r0)
582 #else
583         mfspr   r12, SPRG6
584         mfspr   r11, SPRG7
585         mtspr   SPRN_PID, r12
586         mtcr    r11
587         mfspr   r9, SPRG5
588         mfspr   r12, SPRG4
589 #endif
590         mfspr   r11, SPRG1
591         mfspr   r10, SPRG0
592         b       DataAccess
593
594 /* 0x1200 - Instruction TLB Miss Exception
595  * Nearly the same as above, except we get our information from different
596  * registers and bailout to a different point.
597  */
598         START_EXCEPTION(0x1200, ITLBMiss)
599         mtspr   SPRG0, r10              /* Save some working registers */
600         mtspr   SPRG1, r11
601 #ifdef CONFIG_403GCX
602         stw     r12, 0(r0)
603         stw     r9, 4(r0)
604         mfcr    r11
605         mfspr   r12, SPRN_PID
606         stw     r11, 8(r0)
607         stw     r12, 12(r0)
608 #else
609         mtspr   SPRG4, r12
610         mtspr   SPRG5, r9
611         mfcr    r11
612         mfspr   r12, SPRN_PID
613         mtspr   SPRG7, r11
614         mtspr   SPRG6, r12
615 #endif
616         mfspr   r10, SRR0               /* Get faulting address */
617
618         /* If we are faulting a kernel address, we have to use the
619          * kernel page tables.
620          */
621         andis.  r11, r10, 0x8000
622         beq     3f
623         lis     r11, swapper_pg_dir@h
624         ori     r11, r11, swapper_pg_dir@l
625         li      r9, 0
626         mtspr   SPRN_PID, r9            /* TLB will have 0 TID */
627         b       4f
628
629         /* Get the PGD for the current thread.
630          */
631 3:
632         mfspr   r11,SPRG3
633         lwz     r11,PGDIR(r11)
634 4:
635         tophys(r11, r11)
636         rlwimi  r11, r10, 12, 20, 29    /* Create L1 (pgdir/pmd) address */
637         lwz     r12, 0(r11)             /* Get L1 entry */
638         andi.   r9, r12, _PMD_PRESENT   /* Check if it points to a PTE page */
639         beq     2f                      /* Bail if no table */
640
641         rlwimi  r12, r10, 22, 20, 29    /* Compute PTE address */
642         lwz     r11, 0(r12)             /* Get Linux PTE */
643         andi.   r9, r11, _PAGE_PRESENT
644         beq     5f
645
646         ori     r11, r11, _PAGE_ACCESSED
647         stw     r11, 0(r12)
648
649         /* Create TLB tag.  This is the faulting address plus a static
650          * set of bits.  These are size, valid, E, U0.
651         */
652         li      r12, 0x00c0
653         rlwimi  r10, r12, 0, 20, 31
654
655         b       finish_tlb_load
656
657 2:      /* Check for possible large-page pmd entry */
658         rlwinm. r9, r12, 2, 22, 24
659         beq     5f
660
661         /* Create TLB tag.  This is the faulting address, plus a static
662          * set of bits (valid, E, U0) plus the size from the PMD.
663          */
664         ori     r9, r9, 0x40
665         rlwimi  r10, r9, 0, 20, 31
666         mr      r11, r12
667
668         b       finish_tlb_load
669
670 5:
671         /* The bailout.  Restore registers to pre-exception conditions
672          * and call the heavyweights to help us out.
673          */
674 #ifdef CONFIG_403GCX
675         lwz     r12, 12(r0)
676         lwz     r11, 8(r0)
677         mtspr   SPRN_PID, r12
678         mtcr    r11
679         lwz     r9, 4(r0)
680         lwz     r12, 0(r0)
681 #else
682         mfspr   r12, SPRG6
683         mfspr   r11, SPRG7
684         mtspr   SPRN_PID, r12
685         mtcr    r11
686         mfspr   r9, SPRG5
687         mfspr   r12, SPRG4
688 #endif
689         mfspr   r11, SPRG1
690         mfspr   r10, SPRG0
691         b       InstructionAccess
692
693         EXCEPTION(0x1300, Trap_13, UnknownException, EXC_XFER_EE)
694         EXCEPTION(0x1400, Trap_14, UnknownException, EXC_XFER_EE)
695         EXCEPTION(0x1500, Trap_15, UnknownException, EXC_XFER_EE)
696         EXCEPTION(0x1600, Trap_16, UnknownException, EXC_XFER_EE)
697 #ifdef CONFIG_IBM405_ERR51
698         /* 405GP errata 51 */
699         START_EXCEPTION(0x1700, Trap_17)
700         b DTLBMiss
701 #else
702         EXCEPTION(0x1700, Trap_17, UnknownException, EXC_XFER_EE)
703 #endif
704         EXCEPTION(0x1800, Trap_18, UnknownException, EXC_XFER_EE)
705         EXCEPTION(0x1900, Trap_19, UnknownException, EXC_XFER_EE)
706         EXCEPTION(0x1A00, Trap_1A, UnknownException, EXC_XFER_EE)
707         EXCEPTION(0x1B00, Trap_1B, UnknownException, EXC_XFER_EE)
708         EXCEPTION(0x1C00, Trap_1C, UnknownException, EXC_XFER_EE)
709         EXCEPTION(0x1D00, Trap_1D, UnknownException, EXC_XFER_EE)
710         EXCEPTION(0x1E00, Trap_1E, UnknownException, EXC_XFER_EE)
711         EXCEPTION(0x1F00, Trap_1F, UnknownException, EXC_XFER_EE)
712
713 /* 0x2000 - Debug Exception
714 */
715         START_EXCEPTION(0x2000, DebugTrap)
716         CRITICAL_EXCEPTION_PROLOG
717
718         /*
719          * If this is a single step or branch-taken exception in an
720          * exception entry sequence, it was probably meant to apply to
721          * the code where the exception occurred (since exception entry
722          * doesn't turn off DE automatically).  We simulate the effect
723          * of turning off DE on entry to an exception handler by turning
724          * off DE in the SRR3 value and clearing the debug status.
725          */
726         mfspr   r10,SPRN_DBSR           /* check single-step/branch taken */
727         andis.  r10,r10,(DBSR_IC|DBSR_BT)@h
728         beq+    1f
729         andi.   r0,r9,MSR_IR|MSR_PR     /* check supervisor + MMU off */
730         beq     2f                      /* branch if we need to fix it up... */
731
732         /* continue normal handling for a critical exception... */
733 1:      mfspr   r4,SPRN_DBSR
734         addi    r3,r1,STACK_FRAME_OVERHEAD
735         EXC_XFER_TEMPLATE(DebugException, 0x2002, \
736                 (MSR_KERNEL & ~(MSR_ME|MSR_DE|MSR_CE)), \
737                 NOCOPY, crit_transfer_to_handler, ret_from_crit_exc)
738
739         /* here it looks like we got an inappropriate debug exception. */
740 2:      rlwinm  r9,r9,0,~MSR_DE         /* clear DE in the SRR3 value */
741         mtspr   SPRN_DBSR,r10           /* clear the IC/BT debug intr status */
742         /* restore state and get out */
743         lwz     r10,_CCR(r11)
744         lwz     r0,GPR0(r11)
745         lwz     r1,GPR1(r11)
746         mtcrf   0x80,r10
747         mtspr   SRR2,r12
748         mtspr   SRR3,r9
749         lwz     r9,GPR9(r11)
750         lwz     r12,GPR12(r11)
751         lwz     r10,crit_r10@l(0)
752         lwz     r11,crit_r11@l(0)
753         PPC405_ERR77_SYNC
754         rfci
755         b       .
756
757 /*
758  * The other Data TLB exceptions bail out to this point
759  * if they can't resolve the lightweight TLB fault.
760  */
761 DataAccess:
762         NORMAL_EXCEPTION_PROLOG
763         mfspr   r5,SPRN_ESR             /* Grab the ESR, save it, pass arg3 */
764         stw     r5,_ESR(r11)
765         mfspr   r4,SPRN_DEAR            /* Grab the DEAR, save it, pass arg2 */
766         stw     r4,_DEAR(r11)
767         addi    r3,r1,STACK_FRAME_OVERHEAD
768         EXC_XFER_EE_LITE(0x300, do_page_fault)
769
770 /* Other PowerPC processors, namely those derived from the 6xx-series
771  * have vectors from 0x2100 through 0x2F00 defined, but marked as reserved.
772  * However, for the 4xx-series processors these are neither defined nor
773  * reserved.
774  */
775
776         /* Damn, I came up one instruction too many to fit into the
777          * exception space :-).  Both the instruction and data TLB
778          * miss get to this point to load the TLB.
779          *      r10 - TLB_TAG value
780          *      r11 - Linux PTE
781          *      r12, r9 - avilable to use
782          *      PID - loaded with proper value when we get here
783          *      Upon exit, we reload everything and RFI.
784          * Actually, it will fit now, but oh well.....a common place
785          * to load the TLB.
786          */
787 tlb_4xx_index:
788         .long   0
789 finish_tlb_load:
790         /* load the next available TLB index.
791         */
792         lwz     r9, tlb_4xx_index@l(0)
793         addi    r9, r9, 1
794         andi.   r9, r9, (PPC4XX_TLB_SIZE-1)
795         stw     r9, tlb_4xx_index@l(0)
796
797 6:
798         /*
799          * Clear out the software-only bits in the PTE to generate the
800          * TLB_DATA value.  These are the bottom 2 bits of the RPM, the
801          * top 3 bits of the zone field, and M.
802          */
803         li      r12, 0x0ce2
804         andc    r11, r11, r12
805
806         tlbwe   r11, r9, TLB_DATA               /* Load TLB LO */
807         tlbwe   r10, r9, TLB_TAG                /* Load TLB HI */
808
809         /* Done...restore registers and get out of here.
810         */
811 #ifdef CONFIG_403GCX
812         lwz     r12, 12(r0)
813         lwz     r11, 8(r0)
814         mtspr   SPRN_PID, r12
815         mtcr    r11
816         lwz     r9, 4(r0)
817         lwz     r12, 0(r0)
818 #else
819         mfspr   r12, SPRG6
820         mfspr   r11, SPRG7
821         mtspr   SPRN_PID, r12
822         mtcr    r11
823         mfspr   r9, SPRG5
824         mfspr   r12, SPRG4
825 #endif
826         mfspr   r11, SPRG1
827         mfspr   r10, SPRG0
828         PPC405_ERR77_SYNC
829         rfi                     /* Should sync shadow TLBs */
830         b       .               /* prevent prefetch past rfi */
831
832 /* extern void giveup_fpu(struct task_struct *prev)
833  *
834  * The PowerPC 4xx family of processors do not have an FPU, so this just
835  * returns.
836  */
837 _GLOBAL(giveup_fpu)
838         blr
839
840 /* This is where the main kernel code starts.
841  */
842 start_here:
843
844         /* ptr to current */
845         lis     r2,init_task@h
846         ori     r2,r2,init_task@l
847
848         /* ptr to phys current thread */
849         tophys(r4,r2)
850         addi    r4,r4,THREAD    /* init task's THREAD */
851         mtspr   SPRG3,r4
852
853         /* stack */
854         lis     r1,init_thread_union@ha
855         addi    r1,r1,init_thread_union@l
856         li      r0,0
857         stwu    r0,THREAD_SIZE-STACK_FRAME_OVERHEAD(r1)
858
859         bl      early_init      /* We have to do this with MMU on */
860
861 /*
862  * Decide what sort of machine this is and initialize the MMU.
863  */
864         mr      r3,r31
865         mr      r4,r30
866         mr      r5,r29
867         mr      r6,r28
868         mr      r7,r27
869         bl      machine_init
870         bl      MMU_init
871
872 /* Go back to running unmapped so we can load up new values
873  * and change to using our exception vectors.
874  * On the 4xx, all we have to do is invalidate the TLB to clear
875  * the old 16M byte TLB mappings.
876  */
877         lis     r4,2f@h
878         ori     r4,r4,2f@l
879         tophys(r4,r4)
880         lis     r3,(MSR_KERNEL & ~(MSR_IR|MSR_DR))@h
881         ori     r3,r3,(MSR_KERNEL & ~(MSR_IR|MSR_DR))@l
882         mtspr   SRR0,r4
883         mtspr   SRR1,r3
884         rfi
885         b       .               /* prevent prefetch past rfi */
886
887 /* Load up the kernel context */
888 2:
889         sync                    /* Flush to memory before changing TLB */
890         tlbia
891         isync                   /* Flush shadow TLBs */
892
893         /* set up the PTE pointers for the Abatron bdiGDB.
894         */
895         lis     r6, swapper_pg_dir@h
896         ori     r6, r6, swapper_pg_dir@l
897         lis     r5, abatron_pteptrs@h
898         ori     r5, r5, abatron_pteptrs@l
899         stw     r5, 0xf0(r0)    /* Must match your Abatron config file */
900         tophys(r5,r5)
901         stw     r6, 0(r5)
902
903 /* Now turn on the MMU for real! */
904         lis     r4,MSR_KERNEL@h
905         ori     r4,r4,MSR_KERNEL@l
906         lis     r3,start_kernel@h
907         ori     r3,r3,start_kernel@l
908         mtspr   SRR0,r3
909         mtspr   SRR1,r4
910         rfi                     /* enable MMU and jump to start_kernel */
911         b       .               /* prevent prefetch past rfi */
912
913 /* Set up the initial MMU state so we can do the first level of
914  * kernel initialization.  This maps the first 16 MBytes of memory 1:1
915  * virtual to physical and more importantly sets the cache mode.
916  */
917 initial_mmu:
918         tlbia                   /* Invalidate all TLB entries */
919         isync
920
921         /* We should still be executing code at physical address 0x0000xxxx
922          * at this point. However, start_here is at virtual address
923          * 0xC000xxxx. So, set up a TLB mapping to cover this once
924          * translation is enabled.
925          */
926
927         lis     r3,KERNELBASE@h         /* Load the kernel virtual address */
928         ori     r3,r3,KERNELBASE@l
929         tophys(r4,r3)                   /* Load the kernel physical address */
930
931         iccci   r0,r3                   /* Invalidate the i-cache before use */
932
933         /* Load the kernel PID.
934         */
935         li      r0,0
936         mtspr   SPRN_PID,r0
937         sync
938
939         /* Configure and load two entries into TLB slots 62 and 63.
940          * In case we are pinning TLBs, these are reserved in by the
941          * other TLB functions.  If not reserving, then it doesn't
942          * matter where they are loaded.
943          */
944         clrrwi  r4,r4,10                /* Mask off the real page number */
945         ori     r4,r4,(TLB_WR | TLB_EX) /* Set the write and execute bits */
946
947         clrrwi  r3,r3,10                /* Mask off the effective page number */
948         ori     r3,r3,(TLB_VALID | TLB_PAGESZ(PAGESZ_16M))
949
950         li      r0,63                    /* TLB slot 63 */
951
952         tlbwe   r4,r0,TLB_DATA          /* Load the data portion of the entry */
953         tlbwe   r3,r0,TLB_TAG           /* Load the tag portion of the entry */
954
955 #if defined(CONFIG_SERIAL_TEXT_DEBUG) && defined(SERIAL_DEBUG_IO_BASE)
956
957         /* Load a TLB entry for the UART, so that ppc4xx_progress() can use
958          * the UARTs nice and early.  We use a 4k real==virtual mapping. */
959
960         lis     r3,SERIAL_DEBUG_IO_BASE@h
961         ori     r3,r3,SERIAL_DEBUG_IO_BASE@l
962         mr      r4,r3
963         clrrwi  r4,r4,12
964         ori     r4,r4,(TLB_WR|TLB_I|TLB_M|TLB_G)
965
966         clrrwi  r3,r3,12
967         ori     r3,r3,(TLB_VALID | TLB_PAGESZ(PAGESZ_4K))
968
969         li      r0,0                    /* TLB slot 0 */
970         tlbwe   r4,r0,TLB_DATA
971         tlbwe   r3,r0,TLB_TAG
972 #endif /* CONFIG_SERIAL_DEBUG_TEXT && SERIAL_DEBUG_IO_BASE */
973
974         isync
975
976         /* Establish the exception vector base
977         */
978         lis     r4,KERNELBASE@h         /* EVPR only uses the high 16-bits */
979         tophys(r0,r4)                   /* Use the physical address */
980         mtspr   SPRN_EVPR,r0
981
982         blr
983
984 _GLOBAL(abort)
985         mfspr   r13,SPRN_DBCR0
986         oris    r13,r13,DBCR0_RST_SYSTEM@h
987         mtspr   SPRN_DBCR0,r13
988
989 _GLOBAL(set_context)
990
991 #ifdef CONFIG_BDI_SWITCH
992         /* Context switch the PTE pointer for the Abatron BDI2000.
993          * The PGDIR is the second parameter.
994          */
995         lis     r5, KERNELBASE@h
996         lwz     r5, 0xf0(r5)
997         stw     r4, 0x4(r5)
998 #endif
999         sync
1000         mtspr   SPRN_PID,r3
1001         isync                           /* Need an isync to flush shadow */
1002                                         /* TLBs after changing PID */
1003         blr
1004
1005 /* We put a few things here that have to be page-aligned. This stuff
1006  * goes at the beginning of the data segment, which is page-aligned.
1007  */
1008         .data
1009 _GLOBAL(sdata)
1010 _GLOBAL(empty_zero_page)
1011         .space  4096
1012 _GLOBAL(swapper_pg_dir)
1013         .space  4096
1014
1015
1016 /* Stack for handling critical exceptions from kernel mode */
1017         .section .bss
1018 critical_stack_bottom:
1019         .space  4096
1020 critical_stack_top:
1021         .previous
1022
1023 /* This space gets a copy of optional info passed to us by the bootstrap
1024  * which is used to pass parameters into the kernel like root=/dev/sda1, etc.
1025  */
1026 _GLOBAL(cmd_line)
1027         .space  512
1028
1029 /* Room for two PTE pointers, usually the kernel and current user pointers
1030  * to their respective root page table.
1031  */
1032 abatron_pteptrs:
1033         .space  8