Merge pull request #12579 from FernandoS27/smmu

Core: Implement Device Mapping & GPU SMMU
This commit is contained in:
liamwhite 2024-01-22 10:55:39 -05:00 committed by GitHub
commit 8bd10473d6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
121 changed files with 2742 additions and 1415 deletions

View file

@ -45,6 +45,7 @@ using f32 = float; ///< 32-bit floating point
using f64 = double; ///< 64-bit floating point
using VAddr = u64; ///< Represents a pointer in the userspace virtual address space.
using DAddr = u64; ///< Represents a pointer in the device specific virtual address space.
using PAddr = u64; ///< Represents a pointer in the ARM11 physical address space.
using GPUVAddr = u64; ///< Represents a pointer in the GPU virtual address space.