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

TOMOYO Linux Cross Reference
Linux/arch/sparc/mm/tsunami.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/sparc/mm/tsunami.S (Version linux-6.12-rc7) and /arch/mips/mm/tsunami.S (Version linux-6.2.16)


  1 /* SPDX-License-Identifier: GPL-2.0 */            
  2 /*                                                
  3  * tsunami.S: High speed MicroSparc-I mmu/cach    
  4  *                                                
  5  * Copyright (C) 1997 David S. Miller (davem@c    
  6  */                                               
  7                                                   
  8 #include <asm/ptrace.h>                           
  9 #include <asm/asm-offsets.h>                      
 10 #include <asm/psr.h>                              
 11 #include <asm/asi.h>                              
 12 #include <asm/page.h>                             
 13 #include <asm/pgtsrmmu.h>                         
 14                                                   
 15         .text                                     
 16         .align  4                                 
 17                                                   
 18         .globl  tsunami_flush_cache_all, tsuna    
 19         .globl  tsunami_flush_cache_range, tsu    
 20         .globl  tsunami_flush_page_to_ram, tsu    
 21         .globl  tsunami_flush_sig_insns           
 22         .globl  tsunami_flush_tlb_all, tsunami    
 23         .globl  tsunami_flush_tlb_range, tsuna    
 24                                                   
 25         /* Sliiick... */                          
 26 tsunami_flush_cache_page:                         
 27 tsunami_flush_cache_range:                        
 28         ld      [%o0 + VMA_VM_MM], %o0            
 29 tsunami_flush_cache_mm:                           
 30         ld      [%o0 + AOFF_mm_context], %g2      
 31         cmp     %g2, -1                           
 32         be      tsunami_flush_cache_out           
 33 tsunami_flush_cache_all:                          
 34         WINDOW_FLUSH(%g4, %g5)                    
 35 tsunami_flush_page_for_dma:                       
 36         sta     %g0, [%g0] ASI_M_IC_FLCLEAR       
 37         sta     %g0, [%g0] ASI_M_DC_FLCLEAR       
 38 tsunami_flush_cache_out:                          
 39 tsunami_flush_page_to_ram:                        
 40         retl                                      
 41          nop                                      
 42                                                   
 43 tsunami_flush_sig_insns:                          
 44         flush   %o1                               
 45         retl                                      
 46          flush  %o1 + 4                           
 47                                                   
 48         /* More slick stuff... */                 
 49 tsunami_flush_tlb_range:                          
 50         ld      [%o0 + VMA_VM_MM], %o0            
 51 tsunami_flush_tlb_mm:                             
 52         ld      [%o0 + AOFF_mm_context], %g2      
 53         cmp     %g2, -1                           
 54         be      tsunami_flush_tlb_out             
 55 tsunami_flush_tlb_all:                            
 56          mov    0x400, %o1                        
 57         sta     %g0, [%o1] ASI_M_FLUSH_PROBE      
 58         nop                                       
 59         nop                                       
 60         nop                                       
 61         nop                                       
 62         nop                                       
 63 tsunami_flush_tlb_out:                            
 64         retl                                      
 65          nop                                      
 66                                                   
 67         /* This one can be done in a fine grai    
 68 tsunami_flush_tlb_page:                           
 69         ld      [%o0 + VMA_VM_MM], %o0            
 70         mov     SRMMU_CTX_REG, %g1                
 71         ld      [%o0 + AOFF_mm_context], %o3      
 72         andn    %o1, (PAGE_SIZE - 1), %o1         
 73         cmp     %o3, -1                           
 74         be      tsunami_flush_tlb_page_out        
 75          lda    [%g1] ASI_M_MMUREGS, %g5          
 76         sta     %o3, [%g1] ASI_M_MMUREGS          
 77         sta     %g0, [%o1] ASI_M_FLUSH_PROBE      
 78         nop                                       
 79         nop                                       
 80         nop                                       
 81         nop                                       
 82         nop                                       
 83 tsunami_flush_tlb_page_out:                       
 84         retl                                      
 85          sta    %g5, [%g1] ASI_M_MMUREGS          
 86                                                   
 87 #define MIRROR_BLOCK(dst, src, offset, t0, t1,    
 88         ldd     [src + offset + 0x18], t0; \      
 89         std     t0, [dst + offset + 0x18]; \      
 90         ldd     [src + offset + 0x10], t2; \      
 91         std     t2, [dst + offset + 0x10]; \      
 92         ldd     [src + offset + 0x08], t0; \      
 93         std     t0, [dst + offset + 0x08]; \      
 94         ldd     [src + offset + 0x00], t2; \      
 95         std     t2, [dst + offset + 0x00];        
 96                                                   
 97 tsunami_copy_1page:                               
 98 /* NOTE: This routine has to be shorter than 7    
 99         or      %g0, (PAGE_SIZE >> 8), %g1        
100 1:                                                
101         MIRROR_BLOCK(%o0, %o1, 0x00, %o2, %o3,    
102         MIRROR_BLOCK(%o0, %o1, 0x20, %o2, %o3,    
103         MIRROR_BLOCK(%o0, %o1, 0x40, %o2, %o3,    
104         MIRROR_BLOCK(%o0, %o1, 0x60, %o2, %o3,    
105         MIRROR_BLOCK(%o0, %o1, 0x80, %o2, %o3,    
106         MIRROR_BLOCK(%o0, %o1, 0xa0, %o2, %o3,    
107         MIRROR_BLOCK(%o0, %o1, 0xc0, %o2, %o3,    
108         MIRROR_BLOCK(%o0, %o1, 0xe0, %o2, %o3,    
109         subcc   %g1, 1, %g1                       
110         add     %o0, 0x100, %o0                   
111         bne     1b                                
112          add    %o1, 0x100, %o1                   
113                                                   
114         .globl  tsunami_setup_blockops            
115 tsunami_setup_blockops:                           
116         sethi   %hi(__copy_1page), %o0            
117         or      %o0, %lo(__copy_1page), %o0       
118         sethi   %hi(tsunami_copy_1page), %o1      
119         or      %o1, %lo(tsunami_copy_1page),     
120         sethi   %hi(tsunami_setup_blockops), %    
121         or      %o2, %lo(tsunami_setup_blockop    
122         ld      [%o1], %o4                        
123 1:      add     %o1, 4, %o1                       
124         st      %o4, [%o0]                        
125         add     %o0, 4, %o0                       
126         cmp     %o1, %o2                          
127         bne     1b                                
128         ld      [%o1], %o4                        
129         sta     %g0, [%g0] ASI_M_IC_FLCLEAR       
130         sta     %g0, [%g0] ASI_M_DC_FLCLEAR       
131         retl                                      
132          nop                                      
                                                      

~ [ 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