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

TOMOYO Linux Cross Reference
Linux/arch/arm64/include/asm/daifflags.h

Version: ~ [ linux-6.11-rc3 ] ~ [ linux-6.10.4 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.45 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.104 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.164 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.223 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.281 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.319 ] ~ [ 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.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

Diff markup

Differences between /arch/arm64/include/asm/daifflags.h (Architecture sparc64) and /arch/sparc/include/asm-sparc/daifflags.h (Architecture sparc)


  1 /* SPDX-License-Identifier: GPL-2.0-only */         1 
  2 /*                                                
  3  * Copyright (C) 2017 ARM Ltd.                    
  4  */                                               
  5 #ifndef __ASM_DAIFFLAGS_H                         
  6 #define __ASM_DAIFFLAGS_H                         
  7                                                   
  8 #include <linux/irqflags.h>                       
  9                                                   
 10 #include <asm/arch_gicv3.h>                       
 11 #include <asm/barrier.h>                          
 12 #include <asm/cpufeature.h>                       
 13 #include <asm/ptrace.h>                           
 14                                                   
 15 #define DAIF_PROCCTX            0                 
 16 #define DAIF_PROCCTX_NOIRQ      (PSR_I_BIT | P    
 17 #define DAIF_ERRCTX             (PSR_A_BIT | P    
 18 #define DAIF_MASK               (PSR_D_BIT | P    
 19                                                   
 20                                                   
 21 /* mask/save/unmask/restore all exceptions, in    
 22 static inline void local_daif_mask(void)          
 23 {                                                 
 24         WARN_ON(system_has_prio_mask_debugging    
 25                 (read_sysreg_s(SYS_ICC_PMR_EL1    
 26                                                   
 27                                                   
 28         asm volatile(                             
 29                 "msr    daifset, #0xf             
 30                 :                                 
 31                 :                                 
 32                 : "memory");                      
 33                                                   
 34         /* Don't really care for a dsb here, w    
 35         if (system_uses_irq_prio_masking())       
 36                 gic_write_pmr(GIC_PRIO_IRQON |    
 37                                                   
 38         trace_hardirqs_off();                     
 39 }                                                 
 40                                                   
 41 static inline unsigned long local_daif_save_fl    
 42 {                                                 
 43         unsigned long flags;                      
 44                                                   
 45         flags = read_sysreg(daif);                
 46                                                   
 47         if (system_uses_irq_prio_masking()) {     
 48                 /* If IRQs are masked with PMR    
 49                 if (read_sysreg_s(SYS_ICC_PMR_    
 50                         flags |= PSR_I_BIT | P    
 51         }                                         
 52                                                   
 53         return flags;                             
 54 }                                                 
 55                                                   
 56 static inline unsigned long local_daif_save(vo    
 57 {                                                 
 58         unsigned long flags;                      
 59                                                   
 60         flags = local_daif_save_flags();          
 61                                                   
 62         local_daif_mask();                        
 63                                                   
 64         return flags;                             
 65 }                                                 
 66                                                   
 67 static inline void local_daif_restore(unsigned    
 68 {                                                 
 69         bool irq_disabled = flags & PSR_I_BIT;    
 70                                                   
 71         WARN_ON(system_has_prio_mask_debugging    
 72                 (read_sysreg(daif) & (PSR_I_BI    
 73                                                   
 74         if (!irq_disabled) {                      
 75                 trace_hardirqs_on();              
 76                                                   
 77                 if (system_uses_irq_prio_maski    
 78                         gic_write_pmr(GIC_PRIO    
 79                         pmr_sync();               
 80                 }                                 
 81         } else if (system_uses_irq_prio_maskin    
 82                 u64 pmr;                          
 83                                                   
 84                 if (!(flags & PSR_A_BIT)) {       
 85                         /*                        
 86                          * If interrupts are d    
 87                          * asynchronous errors    
 88                          */                       
 89                         flags &= ~(PSR_I_BIT |    
 90                         pmr = GIC_PRIO_IRQOFF;    
 91                 } else {                          
 92                         pmr = GIC_PRIO_IRQON |    
 93                 }                                 
 94                                                   
 95                 /*                                
 96                  * There has been concern that    
 97                  * might be reordered before t    
 98                  * From the ARM ARM DDI 0487D.    
 99                  * "Accessing PSTATE fields":     
100                  *   Writes to the PSTATE fiel    
101                  *   various aspects of the PE    
102                  *   side-effects are guarante    
103                  *     - Not to be visible to     
104                  *       the execution stream.    
105                  *     - To be visible to late    
106                  *       execution stream         
107                  *                                
108                  * Also, writes to PMR are sel    
109                  * interrupts with a lower pri    
110                  * to the PE after the write.     
111                  *                                
112                  * So we don't need additional    
113                  */                               
114                 gic_write_pmr(pmr);               
115         }                                         
116                                                   
117         write_sysreg(flags, daif);                
118                                                   
119         if (irq_disabled)                         
120                 trace_hardirqs_off();             
121 }                                                 
122                                                   
123 /*                                                
124  * Called by synchronous exception handlers to    
125  * modified by taking an exception.               
126  */                                               
127 static inline void local_daif_inherit(struct p    
128 {                                                 
129         unsigned long flags = regs->pstate & D    
130                                                   
131         if (interrupts_enabled(regs))             
132                 trace_hardirqs_on();              
133                                                   
134         if (system_uses_irq_prio_masking())       
135                 gic_write_pmr(regs->pmr_save);    
136                                                   
137         /*                                        
138          * We can't use local_daif_restore(reg    
139          * system_has_prio_mask_debugging() wo    
140          * use the pmr instead.                   
141          */                                       
142         write_sysreg(flags, daif);                
143 }                                                 
144 #endif                                            
145                                                   

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