Merge branch 'for-2.6.31' of git://git.linux-nfs.org/projects/trondmy/nfs-2.6
[pandora-kernel.git] / arch / powerpc / kernel / cpu_setup_fsl_booke.S
1 /*
2  * This file contains low level CPU setup functions.
3  * Kumar Gala <galak@kernel.crashing.org>
4  * Copyright 2009 Freescale Semiconductor, Inc.
5  *
6  * Based on cpu_setup_6xx code by
7  * Benjamin Herrenschmidt <benh@kernel.crashing.org>
8  *
9  * This program is free software; you can redistribute it and/or
10  * modify it under the terms of the GNU General Public License
11  * as published by the Free Software Foundation; either version
12  * 2 of the License, or (at your option) any later version.
13  *
14  */
15
16 #include <asm/processor.h>
17 #include <asm/cputable.h>
18 #include <asm/ppc_asm.h>
19
20 _GLOBAL(__e500_icache_setup)
21         mfspr   r0, SPRN_L1CSR1
22         andi.   r3, r0, L1CSR1_ICE
23         bnelr                           /* Already enabled */
24         oris    r0, r0, L1CSR1_CPE@h
25         ori     r0, r0, (L1CSR1_ICFI | L1CSR1_ICLFR |  L1CSR1_ICE)
26         mtspr   SPRN_L1CSR1, r0         /* Enable I-Cache */
27         isync
28         blr
29
30 _GLOBAL(__e500_dcache_setup)
31         mfspr   r0, SPRN_L1CSR0
32         andi.   r3, r0, L1CSR0_DCE
33         bnelr                           /* Already enabled */
34         msync
35         isync
36         li      r0, 0
37         mtspr   SPRN_L1CSR0, r0         /* Disable */
38         msync
39         isync
40         li      r0, (L1CSR0_DCFI | L1CSR0_CLFC)
41         mtspr   SPRN_L1CSR0, r0         /* Invalidate */
42         isync
43 1:      mfspr   r0, SPRN_L1CSR0
44         andi.   r3, r0, L1CSR0_CLFC
45         bne+    1b                      /* Wait for lock bits reset */
46         oris    r0, r0, L1CSR0_CPE@h
47         ori     r0, r0, L1CSR0_DCE
48         msync
49         isync
50         mtspr   SPRN_L1CSR0, r0         /* Enable */
51         isync
52         blr
53
54 _GLOBAL(__setup_cpu_e200)
55         /* enable dedicated debug exception handling resources (Debug APU) */
56         mfspr   r3,SPRN_HID0
57         ori     r3,r3,HID0_DAPUEN@l
58         mtspr   SPRN_HID0,r3
59         b       __setup_e200_ivors
60 _GLOBAL(__setup_cpu_e500v1)
61 _GLOBAL(__setup_cpu_e500v2)
62         mflr    r4
63         bl      __e500_icache_setup
64         bl      __e500_dcache_setup
65         bl      __setup_e500_ivors
66         mtlr    r4
67         blr
68 _GLOBAL(__setup_cpu_e500mc)
69         mflr    r4
70         bl      __e500_icache_setup
71         bl      __e500_dcache_setup
72         bl      __setup_e500mc_ivors
73         mtlr    r4
74         blr