arm64: Remove incomplete file

This commit is contained in:
Ronald Caesar 2025-08-16 18:54:02 -04:00
parent 97f2dcce45
commit 9224377fd9
No known key found for this signature in database
GPG key ID: 04307C401999C596

View file

@ -1,19 +0,0 @@
#pragma once
namespace pound::armv8
/**
* kvm_mmu_gva_to_gpa() - Translate a Guest Virtual Address to a Guest Physical Address.
* @vcpu: The vCPU state, containing MMU configuration (TTBR0_EL1, etc.).
* @gva: The Guest Virtual Address to translate.
* @gpa: A pointer to store the resulting Guest Physical Address.
*
* This function is the entry point for the emulated MMU.
*
* For now, this is a stub that implements identity mapping (GVA -> GPA)
* when the MMU is disabled, which is the correct architectural behavior
* on reset.
*
* Return: 0 on success, or a negative error code on a fault.
*/
int kvm_mmu_gva_to_gpa(vcpu_state_t* vcpu, uint64_t gva, uint64_t* gpa);
}