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

TOMOYO Linux Cross Reference
Linux/arch/riscv/kvm/vmid.c

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/riscv/kvm/vmid.c (Version linux-6.12-rc7) and /arch/ppc/kvm/vmid.c (Version linux-6.0.19)


  1 // SPDX-License-Identifier: GPL-2.0                 1 
  2 /*                                                
  3  * Copyright (C) 2019 Western Digital Corporat    
  4  *                                                
  5  * Authors:                                       
  6  *     Anup Patel <anup.patel@wdc.com>            
  7  */                                               
  8                                                   
  9 #include <linux/bitops.h>                         
 10 #include <linux/cpumask.h>                        
 11 #include <linux/errno.h>                          
 12 #include <linux/err.h>                            
 13 #include <linux/module.h>                         
 14 #include <linux/smp.h>                            
 15 #include <linux/kvm_host.h>                       
 16 #include <asm/csr.h>                              
 17                                                   
 18 static unsigned long vmid_version = 1;            
 19 static unsigned long vmid_next;                   
 20 static unsigned long vmid_bits __ro_after_init    
 21 static DEFINE_SPINLOCK(vmid_lock);                
 22                                                   
 23 void __init kvm_riscv_gstage_vmid_detect(void)    
 24 {                                                 
 25         unsigned long old;                        
 26                                                   
 27         /* Figure-out number of VMID bits in H    
 28         old = csr_read(CSR_HGATP);                
 29         csr_write(CSR_HGATP, old | HGATP_VMID)    
 30         vmid_bits = csr_read(CSR_HGATP);          
 31         vmid_bits = (vmid_bits & HGATP_VMID) >    
 32         vmid_bits = fls_long(vmid_bits);          
 33         csr_write(CSR_HGATP, old);                
 34                                                   
 35         /* We polluted local TLB so flush all     
 36         kvm_riscv_local_hfence_gvma_all();        
 37                                                   
 38         /* We don't use VMID bits if they are     
 39         if ((1UL << vmid_bits) < num_possible_    
 40                 vmid_bits = 0;                    
 41 }                                                 
 42                                                   
 43 unsigned long kvm_riscv_gstage_vmid_bits(void)    
 44 {                                                 
 45         return vmid_bits;                         
 46 }                                                 
 47                                                   
 48 int kvm_riscv_gstage_vmid_init(struct kvm *kvm    
 49 {                                                 
 50         /* Mark the initial VMID and VMID vers    
 51         kvm->arch.vmid.vmid_version = 0;          
 52         kvm->arch.vmid.vmid = 0;                  
 53                                                   
 54         return 0;                                 
 55 }                                                 
 56                                                   
 57 bool kvm_riscv_gstage_vmid_ver_changed(struct     
 58 {                                                 
 59         if (!vmid_bits)                           
 60                 return false;                     
 61                                                   
 62         return unlikely(READ_ONCE(vmid->vmid_v    
 63                         READ_ONCE(vmid_version    
 64 }                                                 
 65                                                   
 66 static void __local_hfence_gvma_all(void *info    
 67 {                                                 
 68         kvm_riscv_local_hfence_gvma_all();        
 69 }                                                 
 70                                                   
 71 void kvm_riscv_gstage_vmid_update(struct kvm_v    
 72 {                                                 
 73         unsigned long i;                          
 74         struct kvm_vcpu *v;                       
 75         struct kvm_vmid *vmid = &vcpu->kvm->ar    
 76                                                   
 77         if (!kvm_riscv_gstage_vmid_ver_changed    
 78                 return;                           
 79                                                   
 80         spin_lock(&vmid_lock);                    
 81                                                   
 82         /*                                        
 83          * We need to re-check the vmid_versio    
 84          * another vcpu already allocated a va    
 85          */                                       
 86         if (!kvm_riscv_gstage_vmid_ver_changed    
 87                 spin_unlock(&vmid_lock);          
 88                 return;                           
 89         }                                         
 90                                                   
 91         /* First user of a new VMID version? *    
 92         if (unlikely(vmid_next == 0)) {           
 93                 WRITE_ONCE(vmid_version, READ_    
 94                 vmid_next = 1;                    
 95                                                   
 96                 /*                                
 97                  * We ran out of VMIDs so we i    
 98                  * start assigning VMIDs from     
 99                  *                                
100                  * This also means existing VM    
101                  * instances is invalid and we    
102                  * for all Guest instances. Th    
103                  * running will automatically     
104                  * call kvm_riscv_gstage_vmid_    
105                  * in-kernel run loop. For Gue    
106                  * running, we force VM exits     
107                  * flush all Guest TLBs.          
108                  */                               
109                 on_each_cpu_mask(cpu_online_ma    
110                                  NULL, 1);        
111         }                                         
112                                                   
113         vmid->vmid = vmid_next;                   
114         vmid_next++;                              
115         vmid_next &= (1 << vmid_bits) - 1;        
116                                                   
117         WRITE_ONCE(vmid->vmid_version, READ_ON    
118                                                   
119         spin_unlock(&vmid_lock);                  
120                                                   
121         /* Request G-stage page table update f    
122         kvm_for_each_vcpu(i, v, vcpu->kvm)        
123                 kvm_make_request(KVM_REQ_UPDAT    
124 }                                                 
125                                                   

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