mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 02:30:34 +02:00 
			
		
		
		
	RISC-V: KVM: add 'vlenb' Vector CSR
Userspace requires 'vlenb' to be able to encode it in reg ID. Otherwise it is not possible to retrieve any vector reg since we're returning EINVAL if reg_size isn't vlenb (see kvm_riscv_vcpu_vreg_addr()). Signed-off-by: Daniel Henrique Barboza <dbarboza@ventanamicro.com> Reviewed-by: Anup Patel <anup@brainfault.org> Signed-off-by: Anup Patel <anup@brainfault.org>
This commit is contained in:
		
							parent
							
								
									197bd237b6
								
							
						
					
					
						commit
						2fa290372d
					
				
					 1 changed files with 15 additions and 0 deletions
				
			
		| 
						 | 
				
			
			@ -116,6 +116,9 @@ static int kvm_riscv_vcpu_vreg_addr(struct kvm_vcpu *vcpu,
 | 
			
		|||
		case KVM_REG_RISCV_VECTOR_CSR_REG(vcsr):
 | 
			
		||||
			*reg_addr = &cntx->vector.vcsr;
 | 
			
		||||
			break;
 | 
			
		||||
		case KVM_REG_RISCV_VECTOR_CSR_REG(vlenb):
 | 
			
		||||
			*reg_addr = &cntx->vector.vlenb;
 | 
			
		||||
			break;
 | 
			
		||||
		case KVM_REG_RISCV_VECTOR_CSR_REG(datap):
 | 
			
		||||
		default:
 | 
			
		||||
			return -ENOENT;
 | 
			
		||||
| 
						 | 
				
			
			@ -174,6 +177,18 @@ int kvm_riscv_vcpu_set_reg_vector(struct kvm_vcpu *vcpu,
 | 
			
		|||
	if (!riscv_isa_extension_available(isa, v))
 | 
			
		||||
		return -ENOENT;
 | 
			
		||||
 | 
			
		||||
	if (reg_num == KVM_REG_RISCV_VECTOR_CSR_REG(vlenb)) {
 | 
			
		||||
		struct kvm_cpu_context *cntx = &vcpu->arch.guest_context;
 | 
			
		||||
		unsigned long reg_val;
 | 
			
		||||
 | 
			
		||||
		if (copy_from_user(®_val, uaddr, reg_size))
 | 
			
		||||
			return -EFAULT;
 | 
			
		||||
		if (reg_val != cntx->vector.vlenb)
 | 
			
		||||
			return -EINVAL;
 | 
			
		||||
 | 
			
		||||
		return 0;
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	rc = kvm_riscv_vcpu_vreg_addr(vcpu, reg_num, reg_size, ®_addr);
 | 
			
		||||
	if (rc)
 | 
			
		||||
		return rc;
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in a new issue