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

TOMOYO Linux Cross Reference
Linux/arch/arm/mm/cache-v7m.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/arm/mm/cache-v7m.S (Version linux-6.12-rc7) and /arch/sparc64/mm/cache-v7m.S (Version linux-5.5.19)


  1 /* SPDX-License-Identifier: GPL-2.0-only */       
  2 /*                                                
  3  *  linux/arch/arm/mm/cache-v7m.S                 
  4  *                                                
  5  *  Based on linux/arch/arm/mm/cache-v7.S         
  6  *                                                
  7  *  Copyright (C) 2001 Deep Blue Solutions Ltd    
  8  *  Copyright (C) 2005 ARM Ltd.                   
  9  *                                                
 10  *  This is the "shell" of the ARMv7M processo    
 11  */                                               
 12 #include <linux/linkage.h>                        
 13 #include <linux/init.h>                           
 14 #include <linux/cfi_types.h>                      
 15 #include <asm/assembler.h>                        
 16 #include <asm/errno.h>                            
 17 #include <asm/unwind.h>                           
 18 #include <asm/v7m.h>                              
 19                                                   
 20 #include "proc-macros.S"                          
 21                                                   
 22 .arch armv7-m                                     
 23                                                   
 24 /* Generic V7M read/write macros for memory ma    
 25 .macro v7m_cache_read, rt, reg                    
 26         movw    \rt, #:lower16:BASEADDR_V7M_SC    
 27         movt    \rt, #:upper16:BASEADDR_V7M_SC    
 28         ldr     \rt, [\rt]                        
 29 .endm                                             
 30                                                   
 31 .macro v7m_cacheop, rt, tmp, op, c = al           
 32         movw\c  \tmp, #:lower16:BASEADDR_V7M_S    
 33         movt\c  \tmp, #:upper16:BASEADDR_V7M_S    
 34         str\c   \rt, [\tmp]                       
 35 .endm                                             
 36                                                   
 37                                                   
 38 .macro  read_ccsidr, rt                           
 39         v7m_cache_read \rt, V7M_SCB_CCSIDR        
 40 .endm                                             
 41                                                   
 42 .macro read_clidr, rt                             
 43         v7m_cache_read \rt, V7M_SCB_CLIDR         
 44 .endm                                             
 45                                                   
 46 .macro  write_csselr, rt, tmp                     
 47         v7m_cacheop \rt, \tmp, V7M_SCB_CSSELR     
 48 .endm                                             
 49                                                   
 50 /*                                                
 51  * dcisw: Invalidate data cache by set/way        
 52  */                                               
 53 .macro dcisw, rt, tmp                             
 54         v7m_cacheop \rt, \tmp, V7M_SCB_DCISW      
 55 .endm                                             
 56                                                   
 57 /*                                                
 58  * dccisw: Clean and invalidate data cache by     
 59  */                                               
 60 .macro dccisw, rt, tmp                            
 61         v7m_cacheop \rt, \tmp, V7M_SCB_DCCISW     
 62 .endm                                             
 63                                                   
 64 /*                                                
 65  * dccimvac: Clean and invalidate data cache l    
 66  */                                               
 67 .irp    c,,eq,ne,cs,cc,mi,pl,vs,vc,hi,ls,ge,lt    
 68 .macro dccimvac\c, rt, tmp                        
 69         v7m_cacheop \rt, \tmp, V7M_SCB_DCCIMVA    
 70 .endm                                             
 71 .endr                                             
 72                                                   
 73 /*                                                
 74  * dcimvac: Invalidate data cache line by MVA     
 75  */                                               
 76 .irp    c,,eq,ne,cs,cc,mi,pl,vs,vc,hi,ls,ge,lt    
 77 .macro dcimvac\c, rt, tmp                         
 78         v7m_cacheop \rt, \tmp, V7M_SCB_DCIMVAC    
 79 .endm                                             
 80 .endr                                             
 81                                                   
 82 /*                                                
 83  * dccmvau: Clean data cache line by MVA to Po    
 84  */                                               
 85 .macro dccmvau, rt, tmp                           
 86         v7m_cacheop \rt, \tmp, V7M_SCB_DCCMVAU    
 87 .endm                                             
 88                                                   
 89 /*                                                
 90  * dccmvac: Clean data cache line by MVA to Po    
 91  */                                               
 92 .macro dccmvac,  rt, tmp                          
 93         v7m_cacheop \rt, \tmp, V7M_SCB_DCCMVAC    
 94 .endm                                             
 95                                                   
 96 /*                                                
 97  * icimvau: Invalidate instruction caches by M    
 98  */                                               
 99 .macro icimvau, rt, tmp                           
100         v7m_cacheop \rt, \tmp, V7M_SCB_ICIMVAU    
101 .endm                                             
102                                                   
103 /*                                                
104  * Invalidate the icache, inner shareable if S    
105  * rt data ignored by ICIALLU(IS), so can be u    
106  */                                               
107 .macro invalidate_icache, rt                      
108         v7m_cacheop \rt, \rt, V7M_SCB_ICIALLU     
109         mov \rt, #0                               
110 .endm                                             
111                                                   
112 /*                                                
113  * Invalidate the BTB, inner shareable if SMP.    
114  * rt data ignored by BPIALL, so it can be use    
115  */                                               
116 .macro invalidate_bp, rt                          
117         v7m_cacheop \rt, \rt, V7M_SCB_BPIALL      
118         mov \rt, #0                               
119 .endm                                             
120                                                   
121 ENTRY(v7m_invalidate_l1)                          
122         mov     r0, #0                            
123                                                   
124         write_csselr r0, r1                       
125         read_ccsidr r0                            
126                                                   
127         movw    r1, #0x7fff                       
128         and     r2, r1, r0, lsr #13               
129                                                   
130         movw    r1, #0x3ff                        
131                                                   
132         and     r3, r1, r0, lsr #3      @ NumW    
133         add     r2, r2, #1              @ NumS    
134                                                   
135         and     r0, r0, #0x7                      
136         add     r0, r0, #4      @ SetShift        
137                                                   
138         clz     r1, r3          @ WayShift        
139         add     r4, r3, #1      @ NumWays         
140 1:      sub     r2, r2, #1      @ NumSets--       
141         mov     r3, r4          @ Temp = NumWa    
142 2:      subs    r3, r3, #1      @ Temp--          
143         mov     r5, r3, lsl r1                    
144         mov     r6, r2, lsl r0                    
145         orr     r5, r5, r6      @ Reg = (Temp<    
146         dcisw   r5, r6                            
147         bgt     2b                                
148         cmp     r2, #0                            
149         bgt     1b                                
150         dsb     st                                
151         isb                                       
152         ret     lr                                
153 ENDPROC(v7m_invalidate_l1)                        
154                                                   
155 /*                                                
156  *      v7m_flush_icache_all()                    
157  *                                                
158  *      Flush the whole I-cache.                  
159  *                                                
160  *      Registers:                                
161  *      r0 - set to 0                             
162  */                                               
163 SYM_TYPED_FUNC_START(v7m_flush_icache_all)        
164         invalidate_icache r0                      
165         ret     lr                                
166 SYM_FUNC_END(v7m_flush_icache_all)                
167                                                   
168 /*                                                
169  *      v7m_flush_dcache_all()                    
170  *                                                
171  *      Flush the whole D-cache.                  
172  *                                                
173  *      Corrupted registers: r0-r7, r9-r11        
174  */                                               
175 ENTRY(v7m_flush_dcache_all)                       
176         dmb                                       
177         read_clidr r0                             
178         mov     r3, r0, lsr #23                   
179         ands    r3, r3, #7 << 1                   
180         beq     finished                          
181 start_flush_levels:                               
182         mov     r10, #0                           
183 flush_levels:                                     
184         add     r2, r10, r10, lsr #1              
185         mov     r1, r0, lsr r2                    
186         and     r1, r1, #7                        
187         cmp     r1, #2                            
188         blt     skip                              
189 #ifdef CONFIG_PREEMPTION                          
190         save_and_disable_irqs_notrace r9          
191 #endif                                            
192         write_csselr r10, r1                      
193         isb                                       
194         read_ccsidr r1                            
195 #ifdef CONFIG_PREEMPTION                          
196         restore_irqs_notrace r9                   
197 #endif                                            
198         and     r2, r1, #7                        
199         add     r2, r2, #4                        
200         movw    r4, #0x3ff                        
201         ands    r4, r4, r1, lsr #3                
202         clz     r5, r4                            
203         movw    r7, #0x7fff                       
204         ands    r7, r7, r1, lsr #13               
205 loop1:                                            
206         mov     r9, r7                            
207 loop2:                                            
208         lsl     r6, r4, r5                        
209         orr     r11, r10, r6                      
210         lsl     r6, r9, r2                        
211         orr     r11, r11, r6                      
212         dccisw  r11, r6                           
213         subs    r9, r9, #1                        
214         bge     loop2                             
215         subs    r4, r4, #1                        
216         bge     loop1                             
217 skip:                                             
218         add     r10, r10, #2                      
219         cmp     r3, r10                           
220         bgt     flush_levels                      
221 finished:                                         
222         mov     r10, #0                           
223         write_csselr r10, r3                      
224         dsb     st                                
225         isb                                       
226         ret     lr                                
227 ENDPROC(v7m_flush_dcache_all)                     
228                                                   
229 /*                                                
230  *      v7m_flush_cache_all()                     
231  *                                                
232  *      Flush the entire cache system.            
233  *  The data cache flush is now achieved using    
234  *  working outwards from L1 cache. This is do    
235  *  maintenance instructions.                     
236  *  The instruction cache can still be invalid    
237  *  unification in a single instruction.          
238  *                                                
239  */                                               
240 SYM_TYPED_FUNC_START(v7m_flush_kern_cache_all)    
241         stmfd   sp!, {r4-r7, r9-r11, lr}          
242         bl      v7m_flush_dcache_all              
243         invalidate_icache r0                      
244         ldmfd   sp!, {r4-r7, r9-r11, lr}          
245         ret     lr                                
246 SYM_FUNC_END(v7m_flush_kern_cache_all)            
247                                                   
248 /*                                                
249  *      v7m_flush_cache_all()                     
250  *                                                
251  *      Flush all TLB entries in a particular     
252  *                                                
253  *      - mm    - mm_struct describing address    
254  */                                               
255 SYM_TYPED_FUNC_START(v7m_flush_user_cache_all)    
256         ret     lr                                
257 SYM_FUNC_END(v7m_flush_user_cache_all)            
258                                                   
259 /*                                                
260  *      v7m_flush_cache_range(start, end, flag    
261  *                                                
262  *      Flush a range of TLB entries in the sp    
263  *                                                
264  *      - start - start address (may not be al    
265  *      - end   - end address (exclusive, may     
266  *      - flags - vm_area_struct flags describ    
267  *                                                
268  *      It is assumed that:                       
269  *      - we have a VIPT cache.                   
270  */                                               
271 SYM_TYPED_FUNC_START(v7m_flush_user_cache_rang    
272         ret     lr                                
273 SYM_FUNC_END(v7m_flush_user_cache_range)          
274                                                   
275 /*                                                
276  *      v7m_coherent_kern_range(start,end)        
277  *                                                
278  *      Ensure that the I and D caches are coh    
279  *      region.  This is typically used when c    
280  *      a memory region, and will be executed.    
281  *                                                
282  *      - start   - virtual start address of r    
283  *      - end     - virtual end address of reg    
284  *                                                
285  *      It is assumed that:                       
286  *      - the Icache does not read data from t    
287  */                                               
288 SYM_TYPED_FUNC_START(v7m_coherent_kern_range)     
289 #ifdef CONFIG_CFI_CLANG /* Fallthrough if !CFI    
290         b       v7m_coherent_user_range           
291 #endif                                            
292 SYM_FUNC_END(v7m_coherent_kern_range)             
293                                                   
294 /*                                                
295  *      v7m_coherent_user_range(start,end)        
296  *                                                
297  *      Ensure that the I and D caches are coh    
298  *      region.  This is typically used when c    
299  *      a memory region, and will be executed.    
300  *                                                
301  *      - start   - virtual start address of r    
302  *      - end     - virtual end address of reg    
303  *                                                
304  *      It is assumed that:                       
305  *      - the Icache does not read data from t    
306  */                                               
307 SYM_TYPED_FUNC_START(v7m_coherent_user_range)     
308  UNWIND(.fnstart                )                 
309         dcache_line_size r2, r3                   
310         sub     r3, r2, #1                        
311         bic     r12, r0, r3                       
312 1:                                                
313 /*                                                
314  * We use open coded version of dccmvau otherw    
315  * point at movw instruction.                     
316  */                                               
317         dccmvau r12, r3                           
318         add     r12, r12, r2                      
319         cmp     r12, r1                           
320         blo     1b                                
321         dsb     ishst                             
322         icache_line_size r2, r3                   
323         sub     r3, r2, #1                        
324         bic     r12, r0, r3                       
325 2:                                                
326         icimvau r12, r3                           
327         add     r12, r12, r2                      
328         cmp     r12, r1                           
329         blo     2b                                
330         invalidate_bp r0                          
331         dsb     ishst                             
332         isb                                       
333         ret     lr                                
334  UNWIND(.fnend          )                         
335 SYM_FUNC_END(v7m_coherent_user_range)             
336                                                   
337 /*                                                
338  *      v7m_flush_kern_dcache_area(void *addr,    
339  *                                                
340  *      Ensure that the data held in the page     
341  *      to the page in question.                  
342  *                                                
343  *      - addr  - kernel address                  
344  *      - size  - region size                     
345  */                                               
346 SYM_TYPED_FUNC_START(v7m_flush_kern_dcache_are    
347         dcache_line_size r2, r3                   
348         add     r1, r0, r1                        
349         sub     r3, r2, #1                        
350         bic     r0, r0, r3                        
351 1:                                                
352         dccimvac r0, r3         @ clean & inva    
353         add     r0, r0, r2                        
354         cmp     r0, r1                            
355         blo     1b                                
356         dsb     st                                
357         ret     lr                                
358 SYM_FUNC_END(v7m_flush_kern_dcache_area)          
359                                                   
360 /*                                                
361  *      v7m_dma_inv_range(start,end)              
362  *                                                
363  *      Invalidate the data cache within the s    
364  *      be performing a DMA operation in this     
365  *      purge old data in the cache.              
366  *                                                
367  *      - start   - virtual start address of r    
368  *      - end     - virtual end address of reg    
369  */                                               
370 v7m_dma_inv_range:                                
371         dcache_line_size r2, r3                   
372         sub     r3, r2, #1                        
373         tst     r0, r3                            
374         bic     r0, r0, r3                        
375         dccimvacne r0, r3                         
376         addne   r0, r0, r2                        
377         subne   r3, r2, #1      @ restore r3,     
378         tst     r1, r3                            
379         bic     r1, r1, r3                        
380         dccimvacne r1, r3                         
381         cmp     r0, r1                            
382 1:                                                
383         dcimvaclo r0, r3                          
384         addlo   r0, r0, r2                        
385         cmplo   r0, r1                            
386         blo     1b                                
387         dsb     st                                
388         ret     lr                                
389 ENDPROC(v7m_dma_inv_range)                        
390                                                   
391 /*                                                
392  *      v7m_dma_clean_range(start,end)            
393  *      - start   - virtual start address of r    
394  *      - end     - virtual end address of reg    
395  */                                               
396 v7m_dma_clean_range:                              
397         dcache_line_size r2, r3                   
398         sub     r3, r2, #1                        
399         bic     r0, r0, r3                        
400 1:                                                
401         dccmvac r0, r3                  @ clea    
402         add     r0, r0, r2                        
403         cmp     r0, r1                            
404         blo     1b                                
405         dsb     st                                
406         ret     lr                                
407 ENDPROC(v7m_dma_clean_range)                      
408                                                   
409 /*                                                
410  *      v7m_dma_flush_range(start,end)            
411  *      - start   - virtual start address of r    
412  *      - end     - virtual end address of reg    
413  */                                               
414 SYM_TYPED_FUNC_START(v7m_dma_flush_range)         
415         dcache_line_size r2, r3                   
416         sub     r3, r2, #1                        
417         bic     r0, r0, r3                        
418 1:                                                
419         dccimvac r0, r3                  @ cle    
420         add     r0, r0, r2                        
421         cmp     r0, r1                            
422         blo     1b                                
423         dsb     st                                
424         ret     lr                                
425 SYM_FUNC_END(v7m_dma_flush_range)                 
426                                                   
427 /*                                                
428  *      dma_map_area(start, size, dir)            
429  *      - start - kernel virtual start address    
430  *      - size  - size of region                  
431  *      - dir   - DMA direction                   
432  */                                               
433 SYM_TYPED_FUNC_START(v7m_dma_map_area)            
434         add     r1, r1, r0                        
435         teq     r2, #DMA_FROM_DEVICE              
436         beq     v7m_dma_inv_range                 
437         b       v7m_dma_clean_range               
438 SYM_FUNC_END(v7m_dma_map_area)                    
439                                                   
440 /*                                                
441  *      dma_unmap_area(start, size, dir)          
442  *      - start - kernel virtual start address    
443  *      - size  - size of region                  
444  *      - dir   - DMA direction                   
445  */                                               
446 SYM_TYPED_FUNC_START(v7m_dma_unmap_area)          
447         add     r1, r1, r0                        
448         teq     r2, #DMA_TO_DEVICE                
449         bne     v7m_dma_inv_range                 
450         ret     lr                                
451 SYM_FUNC_END(v7m_dma_unmap_area)                  
                                                      

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