2 * This file contains low-level cache management functions
3 * used for sleep and CPU speed changes on Apple machines.
4 * (In fact the only thing that is Apple-specific is that we assume
5 * that we can read from ROM at physical address 0xfff00000.)
7 * Copyright (C) 2004 Paul Mackerras (paulus@samba.org) and
8 * Benjamin Herrenschmidt (benh@kernel.crashing.org)
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License
12 * as published by the Free Software Foundation; either version
13 * 2 of the License, or (at your option) any later version.
17 #include <linux/config.h>
18 #include <asm/processor.h>
19 #include <asm/ppc_asm.h>
20 #include <asm/cputable.h>
23 * Flush and disable all data caches (dL1, L2, L3). This is used
24 * when going to sleep, when doing a PMU based cpufreq transition,
25 * or when "offlining" a CPU on SMP machines. This code is over
26 * paranoid, but I've had enough issues with various CPU revs and
27 * bugs that I decided it was worth beeing over cautious
30 _GLOBAL(flush_disable_caches)
36 END_FTR_SECTION_IFSET(CPU_FTR_SPEC7450)
39 END_FTR_SECTION_IFSET(CPU_FTR_L2CR)
42 /* This is the code for G3 and 74[01]0 */
46 /* Turn off EE and DR in MSR */
48 rlwinm r0,r11,0,~MSR_EE
49 rlwinm r0,r0,0,~MSR_DR
54 /* Stop DST streams */
58 END_FTR_SECTION_IFSET(CPU_FTR_ALTIVEC)
61 mfspr r8,SPRN_HID0 /* Save SPRN_HID0 in r8 */
62 rlwinm r4,r8,0,12,10 /* Turn off HID0[DPM] */
64 mtspr SPRN_HID0,r4 /* Disable DPM */
67 /* Disp-flush L1. We have a weird problem here that I never
68 * totally figured out. On 750FX, using the ROM for the flush
69 * results in a non-working flush. We use that workaround for
70 * now until I finally understand what's going on. --BenH
73 /* ROM base by default */
79 /* RAM base on 750FX */
89 /* Disable / invalidate / enable L1 data */
91 rlwinm r3,r3,0,~(HID0_DCE | HID0_ICE)
95 ori r3,r3,(HID0_DCE|HID0_DCI|HID0_ICE|HID0_ICFI)
99 xori r3,r3,(HID0_DCI|HID0_ICFI)
103 /* Get the current enable bit of the L2CR into r4 */
105 /* Set to data-only (pre-745x bit) */
106 oris r3,r5,L2CR_L2DO@h
108 /* When disabling L2, code must be in L1 */
110 1: mtspr SPRN_L2CR,r3
118 1: /* disp-flush L2. The interesting thing here is that the L2 can be
119 * up to 2Mb ... so using the ROM, we'll end up wrapping back to memory
120 * but that is probbaly fine. We disp-flush over 4Mb to be safe
140 rlwinm r5,r5,0,~L2CR_L2E
142 /* When disabling L2, code must be in L1 */
144 1: mtspr SPRN_L2CR,r5
154 /* Invalidate L2. This is pre-745x, we clear the L2I bit ourselves */
155 oris r4,r5,L2CR_L2I@h
160 /* Wait for the invalidation to complete */
161 1: mfspr r3,SPRN_L2CR
162 rlwinm. r0,r3,0,31,31
166 xoris r4,r4,L2CR_L2I@h
171 /* now disable the L1 data cache */
173 rlwinm r0,r0,0,~(HID0_DCE|HID0_ICE)
178 /* Restore HID0[DPM] to whatever it was before */
181 rlwimi r0,r8,0,11,11 /* Turn back HID0[DPM] */
185 /* restore DR and EE */
193 /* This code is for 745x processors */
195 /* Turn off EE and DR in MSR */
197 rlwinm r0,r11,0,~MSR_EE
198 rlwinm r0,r0,0,~MSR_DR
203 /* Stop prefetch streams */
207 /* Disable L2 prefetching */
223 /* Due to a bug with the HW flush on some CPU revs, we occasionally
224 * experience data corruption. I'm adding a displacement flush along
225 * with a dcbf loop over a few Mb to "help". The problem isn't totally
226 * fixed by this in theory, but at least, in practice, I couldn't reproduce
227 * it even with a big hammer...
235 addi r4,r4,32 /* Go to start of next cache line */
239 /* Now, flush the first 4MB of memory */
246 addi r4,r4,32 /* Go to start of next cache line */
249 /* Flush and disable the L1 data cache */
251 lis r3,0xfff0 /* read from ROM for displacement flush */
252 li r4,0xfe /* start with only way 0 unlocked */
253 li r5,128 /* 128 lines in each way */
259 2: lwz r0,0(r3) /* touch each cache line */
262 rlwinm r4,r4,1,24,30 /* move on to the next way */
264 cmpwi r4,0xff /* all done? */
266 /* now unlock the L1 data cache */
274 /* Flush the L2 cache using the hardware assist */
276 cmpwi r3,0 /* check if it is enabled first */
278 oris r0,r3,(L2CR_L2IO_745x|L2CR_L2DO_745x)@h
280 /* When disabling/locking L2, code must be in L1 */
282 1: mtspr SPRN_L2CR,r0 /* lock the L2 cache */
292 ori r0,r3,L2CR_L2HWF_745x
294 mtspr SPRN_L2CR,r0 /* set the hardware flush bit */
295 3: mfspr r0,SPRN_L2CR /* wait for it to go to 0 */
296 andi. r0,r0,L2CR_L2HWF_745x
299 rlwinm r3,r3,0,~L2CR_L2E
301 /* When disabling L2, code must be in L1 */
303 1: mtspr SPRN_L2CR,r3 /* disable the L2 cache */
313 oris r4,r3,L2CR_L2I@h
317 1: mfspr r4,SPRN_L2CR
318 andis. r0,r4,L2CR_L2I@h
323 /* Flush the L3 cache using the hardware assist */
324 4: mfspr r3,SPRN_L3CR
325 cmpwi r3,0 /* check if it is enabled */
327 oris r0,r3,L3CR_L3IO@h
330 mtspr SPRN_L3CR,r0 /* lock the L3 cache */
335 mtspr SPRN_L3CR,r0 /* set the hardware flush bit */
336 5: mfspr r0,SPRN_L3CR /* wait for it to go to zero */
337 andi. r0,r0,L3CR_L3HWF
339 rlwinm r3,r3,0,~L3CR_L3E
341 mtspr SPRN_L3CR,r3 /* disable the L3 cache */
345 1: mfspr r4,SPRN_L3CR
349 END_FTR_SECTION_IFSET(CPU_FTR_L3CR)
351 6: mfspr r0,SPRN_HID0 /* now disable the L1 data cache */
352 rlwinm r0,r0,0,~HID0_DCE
356 mtmsr r11 /* restore DR and EE */
359 #endif /* CONFIG_6xx */