3 Copyright © 1997-1998 by PowerLogix R & D, Inc.
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 - First public release, contributed by PowerLogix.
24 - Terry: Made sure code disabled interrupts before running. (Previously
25 it was assumed interrupts were already disabled).
26 - Terry: Updated for tentative G4 support. 4MB of memory is now flushed
27 instead of 2MB. (Prob. only 3 is necessary).
28 - Terry: Updated for workaround to HID0[DPM] processor bug
29 during global invalidates.
32 - Terry: Added isync to correct for an errata.
35 - DanM: Finally added the 7450 patch I've had for the past
36 several months. The L2CR is similar, but I'm going
37 to assume the user of this functions knows what they
40 Author: Terry Greeniaus (tgree@phys.ualberta.ca)
41 Please e-mail updates to this file to me, thanks!
43 #include <asm/processor.h>
44 #include <asm/cputable.h>
45 #include <asm/ppc_asm.h>
46 #include <asm/cache.h>
51 When setting the L2CR register, you must do a few special
52 things. If you are enabling the cache, you must perform a
53 global invalidate. If you are disabling the cache, you must
54 flush the cache contents first. This routine takes care of
55 doing these things. When first enabling the cache, make sure
56 you pass in the L2CR you want, as well as passing in the
57 global invalidate bit set. A global invalidate will only be
58 performed if the L2I bit is set in applyThis. When enabling
59 the cache, you should also set the L2E bit in applyThis. If
60 you want to modify the L2CR contents after the cache has been
61 enabled, the recommended procedure is to first call
62 __setL2CR(0) to disable the cache and then call it again with
63 the new values for L2CR. Examples:
65 _setL2CR(0) - disables the cache
66 _setL2CR(0xB3A04000) - enables my G3 upgrade card:
67 - L2E set to turn on the cache
70 - L2RAM set to pipelined synchronous late-write
71 - L2I set to perform a global invalidation
73 - L2DF set because this upgrade card
76 A similar call should work for your card. You need to know
77 the correct setting for your card and then place them in the
78 fields I have outlined above. Other fields support optional
79 features, such as L2DO which caches only data, or L2TS which
80 causes cache pushes from the L1 cache to go to the L2 cache
81 instead of to main memory.
84 Starting with the 7450, the bits in this register have moved
85 or behave differently. The Enable, Parity Enable, Size,
86 and L2 Invalidate are the only bits that have not moved.
87 The size is read-only for these processors with internal L2
88 cache, and the invalidate is a control as well as status.
93 * Summary: this procedure ignores the L2I bit in the value passed in,
94 * flushes the cache if it was already enabled, always invalidates the
95 * cache, then enables the cache if the L2E bit is set in the value
100 /* Make sure this is a 750 or 7400 chip */
104 END_FTR_SECTION_IFCLR(CPU_FTR_L2CR)
108 /* Stop DST streams */
112 END_FTR_SECTION_IFSET(CPU_FTR_ALTIVEC)
114 /* Turn off interrupts and data relocation. */
115 mfmsr r7 /* Save MSR in r7 */
117 rlwinm r4,r4,0,28,26 /* Turn off DR bit */
122 /* Before we perform the global invalidation, we must disable dynamic
123 * power management via HID0[DPM] to work around a processor bug where
124 * DPM can possibly interfere with the state machine in the processor
125 * that invalidates the L2 cache tags.
127 mfspr r8,SPRN_HID0 /* Save HID0 in r8 */
128 rlwinm r4,r8,0,12,10 /* Turn off HID0[DPM] */
130 mtspr SPRN_HID0,r4 /* Disable DPM */
133 /* Get the current enable bit of the L2CR into r4 */
136 /* Tweak some bits */
137 rlwinm r5,r3,0,0,0 /* r5 contains the new enable bit */
138 rlwinm r3,r3,0,11,9 /* Turn off the invalidate bit */
139 rlwinm r3,r3,0,1,31 /* Turn off the enable bit */
141 /* Check to see if we need to flush */
145 /* Flush the cache. First, read the first 4MB of memory (physical) to
146 * put new data in the cache. (Actually we only need
147 * the size of the L2 cache plus the size of the L1 cache, but 4MB will
148 * cover everything just to be safe).
151 /**** Might be a good idea to set L2DO here - to prevent instructions
152 from getting into the cache. But since we invalidate
153 the next time we enable the cache it doesn't really matter.
154 Don't do this unless you accomodate all processor variations.
155 The bit moved on the 7450.....
159 /* Disable L2 prefetch on some 745x and try to ensure
160 * L2 prefetch engines are idle. As explained by errata
161 * text, we can't be sure they are, we just hope very hard
162 * that well be enough (sic !). At least I noticed Apple
163 * doesn't even bother doing the dcbf's here...
176 END_FTR_SECTION_IFSET(CPU_FTR_SPEC7450)
178 /* TODO: use HW flush assist when available */
185 addi r4,r4,32 /* Go to start of next cache line */
189 /* Now, flush the first 4MB of memory */
196 addi r4,r4,32 /* Go to start of next cache line */
200 /* Set up the L2CR configuration bits (and switch L2 off) */
201 /* CPU errata: Make sure the mtspr below is already in the
205 .balign L1_CACHE_BYTES
218 /* Perform a global invalidation */
223 isync /* For errata */
226 /* On the 7450, we wait for the L2I bit to clear......
228 10: mfspr r3,SPRN_L2CR
232 END_FTR_SECTION_IFSET(CPU_FTR_SPEC7450)
234 /* Wait for the invalidation to complete */
235 3: mfspr r3,SPRN_L2CR
236 rlwinm. r4,r3,0,31,31
239 11: rlwinm r3,r3,0,11,9 /* Turn off the L2I bit */
244 /* See if we need to enable the cache */
248 /* Enable the cache */
253 /* Enable L2 HW prefetch on 744x/745x */
261 END_FTR_SECTION_IFSET(CPU_FTR_SPEC7450)
264 /* Restore HID0[DPM] to whatever it was before */
269 /* Restore MSR (restores EE and DR bits to original state) */
278 /* Return the L2CR contents */
282 END_FTR_SECTION_IFSET(CPU_FTR_L2CR)
287 * Here is a similar routine for dealing with the L3 cache
288 * on the 745x family of chips
292 /* Make sure this is a 745x chip */
296 END_FTR_SECTION_IFCLR(CPU_FTR_L3CR)
298 /* Turn off interrupts and data relocation. */
299 mfmsr r7 /* Save MSR in r7 */
301 rlwinm r4,r4,0,28,26 /* Turn off DR bit */
306 /* Stop DST streams */
310 /* Get the current enable bit of the L3CR into r4 */
313 /* Tweak some bits */
314 rlwinm r5,r3,0,0,0 /* r5 contains the new enable bit */
315 rlwinm r3,r3,0,22,20 /* Turn off the invalidate bit */
316 rlwinm r3,r3,0,2,31 /* Turn off the enable & PE bits */
317 rlwinm r3,r3,0,5,3 /* Turn off the clken bit */
318 /* Check to see if we need to flush */
325 /* TODO: use HW flush assist */
333 addi r4,r4,32 /* Go to start of next cache line */
337 /* Set up the L3CR configuration bits (and switch L3 off) */
342 oris r3,r3,L3CR_L3RES@h /* Set reserved bit 5 */
345 oris r3,r3,L3CR_L3CLKEN@h /* Set clken */
349 /* Wait for stabilize */
354 /* Perform a global invalidation */
361 /* We wait for the L3I bit to clear...... */
362 10: mfspr r3,SPRN_L3CR
367 rlwinm r3,r3,0,5,3 /* Turn off the clken bit */
371 /* Wait for stabilize */
376 /* See if we need to enable the cache */
380 /* Enable the cache */
381 oris r3,r3,(L3CR_L3E | L3CR_L3CLKEN)@h
385 /* Wait for stabilize */
390 /* Restore MSR (restores EE and DR bits to original state) */
397 /* Return the L3CR contents */
401 END_FTR_SECTION_IFSET(CPU_FTR_L3CR)
404 /* --- End of PowerLogix code ---
408 /* flush_disable_L1() - Flush and disable L1 cache
410 * clobbers r0, r3, ctr, cr0
411 * Must be called with interrupts disabled and MMU enabled.
413 _GLOBAL(__flush_disable_L1)
414 /* Stop pending alitvec streams and memory accesses */
417 END_FTR_SECTION_IFSET(CPU_FTR_ALTIVEC)
420 /* Load counter to 0x4000 cache lines (512k) and
421 * load cache with datas
423 li r3,0x4000 /* 512kB / 32B */
428 addi r3,r3,0x0020 /* Go to start of next cache line */
433 /* Now flush those cache lines */
434 li r3,0x4000 /* 512kB / 32B */
439 addi r3,r3,0x0020 /* Go to start of next cache line */
443 /* We can now disable the L1 cache (HID0:DCE, HID0:ICE) */
451 /* inval_enable_L1 - Invalidate and enable L1 cache
453 * Assumes L1 is already disabled and MSR:EE is off
457 _GLOBAL(__inval_enable_L1)
458 /* Enable and then Flash inval the instruction & data cache */
460 ori r3,r3, HID0_ICE|HID0_ICFI|HID0_DCE|HID0_DCI
464 xori r3,r3, HID0_ICFI|HID0_DCI