]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/powerpc/booke/machdep_e500.c
powerpc: Axe PPC4xx support.
[FreeBSD/FreeBSD.git] / sys / powerpc / booke / machdep_e500.c
1 /*-
2  * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
3  *
4  * Copyright (c) 2011-2012 Semihalf.
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice, this list of conditions and the following disclaimer.
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
17  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19  * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
20  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26  * SUCH DAMAGE.
27  */
28
29 #include <sys/cdefs.h>
30 __FBSDID("$FreeBSD$");
31
32 #include <sys/cdefs.h>
33 #include <sys/types.h>
34 #include <sys/param.h>
35 #include <sys/proc.h>
36 #include <sys/reboot.h>
37
38 #include <vm/vm.h>
39 #include <vm/pmap.h>
40
41 #include <machine/machdep.h>
42
43 #include <dev/fdt/fdt_common.h>
44
45 #include <powerpc/mpc85xx/mpc85xx.h>
46
47 extern void dcache_enable(void);
48 extern void dcache_inval(void);
49 extern void icache_enable(void);
50 extern void icache_inval(void);
51 extern void l2cache_enable(void);
52 extern void l2cache_inval(void);
53 extern void bpred_enable(void);
54
55 void
56 booke_enable_l1_cache(void)
57 {
58         uint32_t csr;
59
60         /* Enable D-cache if applicable */
61         csr = mfspr(SPR_L1CSR0);
62         if ((csr & L1CSR0_DCE) == 0) {
63                 dcache_inval();
64                 dcache_enable();
65         }
66
67         csr = mfspr(SPR_L1CSR0);
68         if ((boothowto & RB_VERBOSE) != 0 || (csr & L1CSR0_DCE) == 0)
69                 printf("L1 D-cache %sabled\n",
70                     (csr & L1CSR0_DCE) ? "en" : "dis");
71
72         /* Enable L1 I-cache if applicable. */
73         csr = mfspr(SPR_L1CSR1);
74         if ((csr & L1CSR1_ICE) == 0) {
75                 icache_inval();
76                 icache_enable();
77         }
78
79         csr = mfspr(SPR_L1CSR1);
80         if ((boothowto & RB_VERBOSE) != 0 || (csr & L1CSR1_ICE) == 0)
81                 printf("L1 I-cache %sabled\n",
82                     (csr & L1CSR1_ICE) ? "en" : "dis");
83 }
84
85 void
86 booke_enable_l2_cache(void)
87 {
88         uint32_t csr;
89
90         /* Enable L2 cache on E500mc */
91         if ((((mfpvr() >> 16) & 0xFFFF) == FSL_E500mc) ||
92             (((mfpvr() >> 16) & 0xFFFF) == FSL_E5500)) {
93                 csr = mfspr(SPR_L2CSR0);
94                 if ((csr & L2CSR0_L2E) == 0) {
95                         l2cache_inval();
96                         l2cache_enable();
97                 }
98
99                 csr = mfspr(SPR_L2CSR0);
100                 if ((boothowto & RB_VERBOSE) != 0 || (csr & L2CSR0_L2E) == 0)
101                         printf("L2 cache %sabled\n",
102                             (csr & L2CSR0_L2E) ? "en" : "dis");
103         }
104 }
105
106 void
107 booke_enable_bpred(void)
108 {
109         uint32_t csr;
110
111         bpred_enable();
112         csr = mfspr(SPR_BUCSR);
113         if ((boothowto & RB_VERBOSE) != 0 || (csr & BUCSR_BPEN) == 0)
114                 printf("Branch Predictor %sabled\n",
115                     (csr & BUCSR_BPEN) ? "en" : "dis");
116 }
117
118 void
119 booke_disable_l2_cache(void)
120 {
121 }