~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/arch/powerpc/kernel/l2cr_6xx.S

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

Diff markup

Differences between /arch/powerpc/kernel/l2cr_6xx.S (Architecture sparc) and /arch/alpha/kernel/l2cr_6xx.S (Architecture alpha)


  1 /* SPDX-License-Identifier: GPL-2.0-or-later *    
  2 /*                                                
  3         L2CR functions                            
  4         Copyright © 1997-1998 by PowerLogix R    
  5                                                   
  6 */                                                
  7 /*                                                
  8         Thur, Dec. 12, 1998.                      
  9         - First public release, contributed by    
 10         ***********                               
 11         Sat, Aug. 7, 1999.                        
 12         - Terry: Made sure code disabled inter    
 13                         it was assumed interru    
 14         - Terry: Updated for tentative G4 supp    
 15                         instead of 2MB.  (Prob    
 16         - Terry: Updated for workaround to HID    
 17                         during global invalida    
 18         ***********                               
 19         Thu, July 13, 2000.                       
 20         - Terry: Added isync to correct for an    
 21                                                   
 22         22 August 2001.                           
 23         - DanM: Finally added the 7450 patch I    
 24                 several months.  The L2CR is s    
 25                 to assume the user of this fun    
 26                 are doing.                        
 27                                                   
 28         Author: Terry Greeniaus (tgree@phys.ua    
 29         Please e-mail updates to this file to     
 30 */                                                
 31 #include <asm/processor.h>                        
 32 #include <asm/cputable.h>                         
 33 #include <asm/ppc_asm.h>                          
 34 #include <asm/cache.h>                            
 35 #include <asm/page.h>                             
 36 #include <asm/feature-fixups.h>                   
 37                                                   
 38 /* Usage:                                         
 39                                                   
 40         When setting the L2CR register, you mu    
 41         things.  If you are enabling the cache    
 42         global invalidate.  If you are disabli    
 43         flush the cache contents first.  This     
 44         doing these things.  When first enabli    
 45         you pass in the L2CR you want, as well    
 46         global invalidate bit set.  A global i    
 47         performed if the L2I bit is set in app    
 48         the cache, you should also set the L2E    
 49         you want to modify the L2CR contents a    
 50         enabled, the recommended procedure is     
 51         __setL2CR(0) to disable the cache and     
 52         the new values for L2CR.  Examples:       
 53                                                   
 54         _setL2CR(0)             - disables the    
 55         _setL2CR(0xB3A04000)    - enables my G    
 56                                 - L2E set to t    
 57                                 - L2SIZ set to    
 58                                 - L2CLK set to    
 59                                 - L2RAM set to    
 60                                 - L2I set to p    
 61                                 - L2OH set to     
 62                                 - L2DF set bec    
 63                                   requires it     
 64                                                   
 65         A similar call should work for your ca    
 66         the correct setting for your card and     
 67         fields I have outlined above.  Other f    
 68         features, such as L2DO which caches on    
 69         causes cache pushes from the L1 cache     
 70         instead of to main memory.                
 71                                                   
 72 IMPORTANT:                                        
 73         Starting with the 7450, the bits in th    
 74         or behave differently.  The Enable, Pa    
 75         and L2 Invalidate are the only bits th    
 76         The size is read-only for these proces    
 77         cache, and the invalidate is a control    
 78                 -- Dan                            
 79                                                   
 80 */                                                
 81 /*                                                
 82  * Summary: this procedure ignores the L2I bit    
 83  * flushes the cache if it was already enabled    
 84  * cache, then enables the cache if the L2E bi    
 85  * passed in.                                     
 86  *   -- paulus.                                   
 87  */                                               
 88 _GLOBAL(_set_L2CR)                                
 89         /* Make sure this is a 750 or 7400 chi    
 90 BEGIN_FTR_SECTION                                 
 91         li      r3,-1                             
 92         blr                                       
 93 END_FTR_SECTION_IFCLR(CPU_FTR_L2CR)               
 94                                                   
 95         mflr    r9                                
 96                                                   
 97         /* Stop DST streams */                    
 98 BEGIN_FTR_SECTION                                 
 99         PPC_DSSALL                                
100         sync                                      
101 END_FTR_SECTION_IFSET(CPU_FTR_ALTIVEC)            
102                                                   
103         /* Turn off interrupts and data reloca    
104         mfmsr   r7              /* Save MSR in    
105         rlwinm  r4,r7,0,17,15                     
106         rlwinm  r4,r4,0,28,26   /* Turn off DR    
107         sync                                      
108         mtmsr   r4                                
109         isync                                     
110                                                   
111         /* Before we perform the global invali    
112          * power management via HID0[DPM] to w    
113          * DPM can possibly interfere with the    
114          * that invalidates the L2 cache tags.    
115          */                                       
116         mfspr   r8,SPRN_HID0            /* Sav    
117         rlwinm  r4,r8,0,12,10           /* Tur    
118         sync                                      
119         mtspr   SPRN_HID0,r4            /* Dis    
120         sync                                      
121                                                   
122         /* Get the current enable bit of the L    
123         mfspr   r4,SPRN_L2CR                      
124                                                   
125         /* Tweak some bits */                     
126         rlwinm  r5,r3,0,0,0             /* r5     
127         rlwinm  r3,r3,0,11,9            /* Tur    
128         rlwinm  r3,r3,0,1,31            /* Tur    
129                                                   
130         /* Check to see if we need to flush */    
131         rlwinm. r4,r4,0,0,0                       
132         beq     2f                                
133                                                   
134         /* Flush the cache. First, read the fi    
135          * put new data in the cache.  (Actual    
136          * the size of the L2 cache plus the s    
137          * cover everything just to be safe).     
138          */                                       
139                                                   
140          /**** Might be a good idea to set L2D    
141                from getting into the cache.  B    
142                the next time we enable the cac    
143                Don't do this unless you accomm    
144                The bit moved on the 7450.....     
145           ****/                                   
146                                                   
147 BEGIN_FTR_SECTION                                 
148         /* Disable L2 prefetch on some 745x an    
149          * L2 prefetch engines are idle. As ex    
150          * text, we can't be sure they are, we    
151          * that well be enough (sic !). At lea    
152          * doesn't even bother doing the dcbf'    
153          */                                       
154         mfspr   r4,SPRN_MSSCR0                    
155         rlwinm  r4,r4,0,0,29                      
156         sync                                      
157         mtspr   SPRN_MSSCR0,r4                    
158         sync                                      
159         isync                                     
160         lis     r4,KERNELBASE@h                   
161         dcbf    0,r4                              
162         dcbf    0,r4                              
163         dcbf    0,r4                              
164         dcbf    0,r4                              
165 END_FTR_SECTION_IFSET(CPU_FTR_SPEC7450)           
166                                                   
167         /* TODO: use HW flush assist when avai    
168                                                   
169         lis     r4,0x0002                         
170         mtctr   r4                                
171         li      r4,0                              
172 1:                                                
173         lwzx    r0,0,r4                           
174         addi    r4,r4,32                /* Go     
175         bdnz    1b                                
176         isync                                     
177                                                   
178         /* Now, flush the first 4MB of memory     
179         lis     r4,0x0002                         
180         mtctr   r4                                
181         li      r4,0                              
182         sync                                      
183 1:                                                
184         dcbf    0,r4                              
185         addi    r4,r4,32                /* Go     
186         bdnz    1b                                
187                                                   
188 2:                                                
189         /* Set up the L2CR configuration bits     
190         /* CPU errata: Make sure the mtspr bel    
191          * L1 icache                              
192          */                                       
193         b       20f                               
194         .balign L1_CACHE_BYTES                    
195 22:                                               
196         sync                                      
197         mtspr   SPRN_L2CR,r3                      
198         sync                                      
199         b       23f                               
200 20:                                               
201         b       21f                               
202 21:     sync                                      
203         isync                                     
204         b       22b                               
205                                                   
206 23:                                               
207         /* Perform a global invalidation */       
208         oris    r3,r3,0x0020                      
209         sync                                      
210         mtspr   SPRN_L2CR,r3                      
211         sync                                      
212         isync                           /* For    
213                                                   
214 BEGIN_FTR_SECTION                                 
215         /* On the 7450, we wait for the L2I bi    
216         */                                        
217 10:     mfspr   r3,SPRN_L2CR                      
218         andis.  r4,r3,0x0020                      
219         bne     10b                               
220         b       11f                               
221 END_FTR_SECTION_IFSET(CPU_FTR_SPEC7450)           
222                                                   
223         /* Wait for the invalidation to comple    
224 3:      mfspr   r3,SPRN_L2CR                      
225         rlwinm. r4,r3,0,31,31                     
226         bne     3b                                
227                                                   
228 11:     rlwinm  r3,r3,0,11,9            /* Tur    
229         sync                                      
230         mtspr   SPRN_L2CR,r3                      
231         sync                                      
232                                                   
233         /* See if we need to enable the cache     
234         cmplwi  r5,0                              
235         beq     4f                                
236                                                   
237         /* Enable the cache */                    
238         oris    r3,r3,0x8000                      
239         mtspr   SPRN_L2CR,r3                      
240         sync                                      
241                                                   
242         /* Enable L2 HW prefetch on 744x/745x     
243 BEGIN_FTR_SECTION                                 
244         mfspr   r3,SPRN_MSSCR0                    
245         ori     r3,r3,3                           
246         sync                                      
247         mtspr   SPRN_MSSCR0,r3                    
248         sync                                      
249         isync                                     
250 END_FTR_SECTION_IFSET(CPU_FTR_SPEC7450)           
251 4:                                                
252                                                   
253         /* Restore HID0[DPM] to whatever it wa    
254         sync                                      
255         mtspr   1008,r8                           
256         sync                                      
257                                                   
258         /* Restore MSR (restores EE and DR bit    
259         mtmsr   r7                                
260         isync                                     
261                                                   
262         mtlr    r9                                
263         blr                                       
264                                                   
265 _GLOBAL(_get_L2CR)                                
266         /* Return the L2CR contents */            
267         li      r3,0                              
268 BEGIN_FTR_SECTION                                 
269         mfspr   r3,SPRN_L2CR                      
270 END_FTR_SECTION_IFSET(CPU_FTR_L2CR)               
271         blr                                       
272                                                   
273                                                   
274 /*                                                
275  * Here is a similar routine for dealing with     
276  * on the 745x family of chips                    
277  */                                               
278                                                   
279 _GLOBAL(_set_L3CR)                                
280         /* Make sure this is a 745x chip */       
281 BEGIN_FTR_SECTION                                 
282         li      r3,-1                             
283         blr                                       
284 END_FTR_SECTION_IFCLR(CPU_FTR_L3CR)               
285                                                   
286         /* Turn off interrupts and data reloca    
287         mfmsr   r7              /* Save MSR in    
288         rlwinm  r4,r7,0,17,15                     
289         rlwinm  r4,r4,0,28,26   /* Turn off DR    
290         sync                                      
291         mtmsr   r4                                
292         isync                                     
293                                                   
294         /* Stop DST streams */                    
295         PPC_DSSALL                                
296         sync                                      
297                                                   
298         /* Get the current enable bit of the L    
299         mfspr   r4,SPRN_L3CR                      
300                                                   
301         /* Tweak some bits */                     
302         rlwinm  r5,r3,0,0,0             /* r5     
303         rlwinm  r3,r3,0,22,20           /* Tur    
304         rlwinm  r3,r3,0,2,31            /* Tur    
305         rlwinm  r3,r3,0,5,3             /* Tur    
306         /* Check to see if we need to flush */    
307         rlwinm. r4,r4,0,0,0                       
308         beq     2f                                
309                                                   
310         /* Flush the cache.                       
311          */                                       
312                                                   
313         /* TODO: use HW flush assist */           
314                                                   
315         lis     r4,0x0008                         
316         mtctr   r4                                
317         li      r4,0                              
318 1:                                                
319         lwzx    r0,0,r4                           
320         dcbf    0,r4                              
321         addi    r4,r4,32                /* Go     
322         bdnz    1b                                
323                                                   
324 2:                                                
325         /* Set up the L3CR configuration bits     
326         sync                                      
327         mtspr   SPRN_L3CR,r3                      
328         sync                                      
329                                                   
330         oris    r3,r3,L3CR_L3RES@h                
331         mtspr   SPRN_L3CR,r3                      
332         sync                                      
333         oris    r3,r3,L3CR_L3CLKEN@h              
334         mtspr   SPRN_L3CR,r3                      
335         sync                                      
336                                                   
337         /* Wait for stabilize */                  
338         li      r0,256                            
339         mtctr   r0                                
340 1:      bdnz    1b                                
341                                                   
342         /* Perform a global invalidation */       
343         ori     r3,r3,0x0400                      
344         sync                                      
345         mtspr   SPRN_L3CR,r3                      
346         sync                                      
347         isync                                     
348                                                   
349         /* We wait for the L3I bit to clear...    
350 10:     mfspr   r3,SPRN_L3CR                      
351         andi.   r4,r3,0x0400                      
352         bne     10b                               
353                                                   
354         /* Clear CLKEN */                         
355         rlwinm  r3,r3,0,5,3             /* Tur    
356         mtspr   SPRN_L3CR,r3                      
357         sync                                      
358                                                   
359         /* Wait for stabilize */                  
360         li      r0,256                            
361         mtctr   r0                                
362 1:      bdnz    1b                                
363                                                   
364         /* See if we need to enable the cache     
365         cmplwi  r5,0                              
366         beq     4f                                
367                                                   
368         /* Enable the cache */                    
369         oris    r3,r3,(L3CR_L3E | L3CR_L3CLKEN    
370         mtspr   SPRN_L3CR,r3                      
371         sync                                      
372                                                   
373         /* Wait for stabilize */                  
374         li      r0,256                            
375         mtctr   r0                                
376 1:      bdnz    1b                                
377                                                   
378         /* Restore MSR (restores EE and DR bit    
379 4:                                                
380         mtmsr   r7                                
381         isync                                     
382         blr                                       
383                                                   
384 _GLOBAL(_get_L3CR)                                
385         /* Return the L3CR contents */            
386         li      r3,0                              
387 BEGIN_FTR_SECTION                                 
388         mfspr   r3,SPRN_L3CR                      
389 END_FTR_SECTION_IFSET(CPU_FTR_L3CR)               
390         blr                                       
391                                                   
392 /* --- End of PowerLogix code ---                 
393  */                                               
394                                                   
395                                                   
396 /* flush_disable_L1()   - Flush and disable L1    
397  *                                                
398  * clobbers r0, r3, ctr, cr0                      
399  * Must be called with interrupts disabled and    
400  */                                               
401 _GLOBAL(__flush_disable_L1)                       
402         /* Stop pending alitvec streams and me    
403 BEGIN_FTR_SECTION                                 
404         PPC_DSSALL                                
405 END_FTR_SECTION_IFSET(CPU_FTR_ALTIVEC)            
406         sync                                      
407                                                   
408         /* Load counter to 0x4000 cache lines     
409          * load cache with datas                  
410          */                                       
411         li      r3,0x4000       /* 512kB / 32B    
412         mtctr   r3                                
413         lis     r3,KERNELBASE@h                   
414 1:                                                
415         lwz     r0,0(r3)                          
416         addi    r3,r3,0x0020    /* Go to start    
417         bdnz    1b                                
418         isync                                     
419         sync                                      
420                                                   
421         /* Now flush those cache lines */         
422         li      r3,0x4000       /* 512kB / 32B    
423         mtctr   r3                                
424         lis     r3,KERNELBASE@h                   
425 1:                                                
426         dcbf    0,r3                              
427         addi    r3,r3,0x0020    /* Go to start    
428         bdnz    1b                                
429         sync                                      
430                                                   
431         /* We can now disable the L1 cache (HI    
432         mfspr   r3,SPRN_HID0                      
433         rlwinm  r3,r3,0,18,15                     
434         mtspr   SPRN_HID0,r3                      
435         sync                                      
436         isync                                     
437         blr                                       
438                                                   
439 /* inval_enable_L1      - Invalidate and enabl    
440  *                                                
441  * Assumes L1 is already disabled and MSR:EE i    
442  *                                                
443  * clobbers r3                                    
444  */                                               
445 _GLOBAL(__inval_enable_L1)                        
446         /* Enable and then Flash inval the ins    
447         mfspr   r3,SPRN_HID0                      
448         ori     r3,r3, HID0_ICE|HID0_ICFI|HID0    
449         sync                                      
450         isync                                     
451         mtspr   SPRN_HID0,r3                      
452         xori    r3,r3, HID0_ICFI|HID0_DCI         
453         mtspr   SPRN_HID0,r3                      
454         sync                                      
455                                                   
456         blr                                       
457 _ASM_NOKPROBE_SYMBOL(__inval_enable_L1)           
458                                                   
459                                                   
                                                      

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php