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

TOMOYO Linux Cross Reference
Linux/arch/arm/kernel/hyp-stub.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/kernel/hyp-stub.S (Version linux-6.12-rc7) and /arch/sparc/kernel/hyp-stub.S (Version linux-5.5.19)


  1 /* SPDX-License-Identifier: GPL-2.0-or-later *    
  2 /*                                                
  3  * Copyright (c) 2012 Linaro Limited.             
  4  */                                               
  5                                                   
  6 #include <linux/init.h>                           
  7 #include <linux/irqchip/arm-gic-v3.h>             
  8 #include <linux/linkage.h>                        
  9 #include <asm/assembler.h>                        
 10 #include <asm/virt.h>                             
 11                                                   
 12 .arch armv7-a                                     
 13                                                   
 14 #ifndef ZIMAGE                                    
 15 /*                                                
 16  * For the kernel proper, we need to find out     
 17  * boot, so we need to store it in a writable     
 18  *                                                
 19  * This is not in .bss, because we set it suff    
 20  * zeroing of .bss would clobber it.              
 21  */                                               
 22 .data                                             
 23         .align  2                                 
 24 ENTRY(__boot_cpu_mode)                            
 25         .long   0                                 
 26 .text                                             
 27                                                   
 28         /*                                        
 29          * Save the primary CPU boot mode. Req    
 30          */                                       
 31         .macro  store_primary_cpu_mode  reg1,     
 32         mrs     \reg1, cpsr                       
 33         and     \reg1, \reg1, #MODE_MASK          
 34         str_l   \reg1, __boot_cpu_mode, \reg2     
 35         .endm                                     
 36                                                   
 37         /*                                        
 38          * Compare the current mode with the o    
 39          * If they don't match, record that fa    
 40          * if there's a match or not.             
 41          * Requires 2 additional scratch regis    
 42          */                                       
 43         .macro  compare_cpu_mode_with_primary     
 44         adr_l   \reg2, __boot_cpu_mode            
 45         ldr     \reg1, [\reg2]                    
 46         cmp     \mode, \reg1            @ matc    
 47         orrne   \reg1, \reg1, #BOOT_CPU_MODE_M    
 48         strne   \reg1, [\reg2]          @ reco    
 49         .endm                                     
 50                                                   
 51 #else   /* ZIMAGE */                              
 52                                                   
 53         .macro  store_primary_cpu_mode  reg1:r    
 54         .endm                                     
 55                                                   
 56 /*                                                
 57  * The zImage loader only runs on one CPU, so     
 58  * consistency checking:                          
 59  */                                               
 60         .macro  compare_cpu_mode_with_primary     
 61         cmp     \mode, \mode                      
 62         .endm                                     
 63                                                   
 64 #endif /* ZIMAGE */                               
 65                                                   
 66 /*                                                
 67  * Hypervisor stub installation functions.        
 68  *                                                
 69  * These must be called with the MMU and D-cac    
 70  * They are not ABI compliant and are only int    
 71  * entry points in head.S.                        
 72  */                                               
 73 @ Call this from the primary CPU                  
 74 ENTRY(__hyp_stub_install)                         
 75         store_primary_cpu_mode  r4, r5            
 76 ENDPROC(__hyp_stub_install)                       
 77                                                   
 78         @ fall through...                         
 79                                                   
 80 @ Secondary CPUs should call here                 
 81 ENTRY(__hyp_stub_install_secondary)               
 82         mrs     r4, cpsr                          
 83         and     r4, r4, #MODE_MASK                
 84                                                   
 85         /*                                        
 86          * If the secondary has booted with a     
 87          * immediately.                           
 88          */                                       
 89         compare_cpu_mode_with_primary   r4, r5    
 90         retne   lr                                
 91                                                   
 92         /*                                        
 93          * Once we have given up on one CPU, w    
 94          * stub hypervisor on the remaining on    
 95          * is modified, it can't compare equal    
 96          * more.                                  
 97          *                                        
 98          * Otherwise...                           
 99          */                                       
100                                                   
101         cmp     r4, #HYP_MODE                     
102         retne   lr                      @ give    
103                                                   
104 /*                                                
105  * Configure HSCTLR to set correct exception e    
106  * state etc.                                     
107  * Turn off all traps                             
108  * Eventually, CPU-specific code might be need    
109  *                                                
110  * This code relies on the "eret" instruction     
111  * various coprocessor accesses. This is done     
112  * (see safe_svcmode_maskall).                    
113  */                                               
114         @ Now install the hypervisor stub:        
115         W(adr)  r7, __hyp_stub_vectors            
116         mcr     p15, 4, r7, c12, c0, 0  @ set     
117                                                   
118         @ Disable all traps, so we don't get a    
119         mov     r7, #0                            
120         mcr     p15, 4, r7, c1, c1, 0   @ HCR     
121         mcr     p15, 4, r7, c1, c1, 2   @ HCPT    
122         mcr     p15, 4, r7, c1, c1, 3   @ HSTR    
123                                                   
124 THUMB(  orr     r7, #(1 << 30)  )       @ HSCT    
125 ARM_BE8(orr     r7, r7, #(1 << 25))     @ HSCT    
126         mcr     p15, 4, r7, c1, c0, 0   @ HSCT    
127                                                   
128         mrc     p15, 4, r7, c1, c1, 1   @ HDCR    
129         and     r7, #0x1f               @ Pres    
130         mcr     p15, 4, r7, c1, c1, 1   @ HDCR    
131                                                   
132         @ Make sure NS-SVC is initialised appr    
133         mrc     p15, 0, r7, c1, c0, 0   @ SCTL    
134         orr     r7, #(1 << 5)           @ CP15    
135         bic     r7, #(3 << 7)           @ Clea    
136         bic     r7, #(3 << 19)          @ WXN     
137         mcr     p15, 0, r7, c1, c0, 0   @ SCTL    
138                                                   
139         mrc     p15, 0, r7, c0, c0, 0   @ MIDR    
140         mcr     p15, 4, r7, c0, c0, 0   @ VPID    
141                                                   
142         mrc     p15, 0, r7, c0, c0, 5   @ MPID    
143         mcr     p15, 4, r7, c0, c0, 5   @ VMPI    
144                                                   
145 #if !defined(ZIMAGE) && defined(CONFIG_ARM_ARC    
146         @ make CNTP_* and CNTPCT accessible fr    
147         mrc     p15, 0, r7, c0, c1, 1   @ ID_P    
148         ubfx    r7, r7, #16, #4                   
149         teq     r7, #0                            
150         beq     1f                                
151         mrc     p15, 4, r7, c14, c1, 0  @ CNTH    
152         orr     r7, r7, #3              @ PL1P    
153         mcr     p15, 4, r7, c14, c1, 0  @ CNTH    
154         mov     r7, #0                            
155         mcrr    p15, 4, r7, r7, c14     @ CNTV    
156                                                   
157         @ Disable virtual timer in case it was    
158         mrc     p15, 0, r7, c14, c3, 1  @ CNTV    
159         bic     r7, #1                  @ Clea    
160         mcr     p15, 0, r7, c14, c3, 1  @ CNTV    
161 1:                                                
162 #endif                                            
163                                                   
164 #ifdef CONFIG_ARM_GIC_V3                          
165         @ Check whether GICv3 system registers    
166         mrc     p15, 0, r7, c0, c1, 1   @ ID_P    
167         ubfx    r7, r7, #28, #4                   
168         teq     r7, #0                            
169         beq     2f                                
170                                                   
171         @ Enable system register accesses         
172         mrc     p15, 4, r7, c12, c9, 5  @ ICC_    
173         orr     r7, r7, #(ICC_SRE_EL2_ENABLE |    
174         mcr     p15, 4, r7, c12, c9, 5  @ ICC_    
175         isb                                       
176                                                   
177         @ SRE bit could be forced to 0 by firm    
178         @ Check whether it sticks before acces    
179         mrc     p15, 4, r7, c12, c9, 5  @ ICC_    
180         tst     r7, #ICC_SRE_EL2_SRE              
181         beq     2f                                
182         mov     r7, #0                            
183         mcr     p15, 4, r7, c12, c11, 0 @ ICH_    
184 2:                                                
185 #endif                                            
186                                                   
187         bx      lr                      @ The     
188 ENDPROC(__hyp_stub_install_secondary)             
189                                                   
190 __hyp_stub_do_trap:                               
191 #ifdef ZIMAGE                                     
192         teq     r0, #HVC_SET_VECTORS              
193         bne     1f                                
194         /* Only the ZIMAGE stubs can change th    
195         mcr     p15, 4, r1, c12, c0, 0  @ set     
196         b       __hyp_stub_exit                   
197 #endif                                            
198                                                   
199 1:      teq     r0, #HVC_SOFT_RESTART             
200         bne     2f                                
201         bx      r1                                
202                                                   
203 2:      ldr     r0, =HVC_STUB_ERR                 
204         __ERET                                    
205                                                   
206 __hyp_stub_exit:                                  
207         mov     r0, #0                            
208         __ERET                                    
209 ENDPROC(__hyp_stub_do_trap)                       
210                                                   
211 /*                                                
212  * __hyp_set_vectors is only used when ZIMAGE     
213  * and SVC. For the kernel itself, the vectors    
214  * all by the stubs.                              
215  */                                               
216 ENTRY(__hyp_set_vectors)                          
217         mov     r1, r0                            
218         mov     r0, #HVC_SET_VECTORS              
219         __HVC(0)                                  
220         ret     lr                                
221 ENDPROC(__hyp_set_vectors)                        
222                                                   
223 ENTRY(__hyp_soft_restart)                         
224         mov     r1, r0                            
225         mov     r0, #HVC_SOFT_RESTART             
226         __HVC(0)                                  
227         ret     lr                                
228 ENDPROC(__hyp_soft_restart)                       
229                                                   
230 .align 5                                          
231 ENTRY(__hyp_stub_vectors)                         
232 __hyp_stub_reset:       W(b)    .                 
233 __hyp_stub_und:         W(b)    .                 
234 __hyp_stub_svc:         W(b)    .                 
235 __hyp_stub_pabort:      W(b)    .                 
236 __hyp_stub_dabort:      W(b)    .                 
237 __hyp_stub_trap:        W(b)    __hyp_stub_do_    
238 __hyp_stub_irq:         W(b)    .                 
239 __hyp_stub_fiq:         W(b)    .                 
240 ENDPROC(__hyp_stub_vectors)                       
241                                                   
                                                      

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