libhsakmt: Add memory alloc flag GTTAccess

To allocate GTT memory for MES AQL queue structure, KFD will create GART
mapping for the memory to be accessed by MES.

Change-Id: Iae7b33d1e70861109f1551d3a71dc60dfde9de61
Signed-off-by: Philip Yang <Philip.Yang@amd.com>


[ROCm/ROCR-Runtime commit: 9fbe853fea]
This commit is contained in:
Philip Yang
2024-03-13 10:55:54 -04:00
committed by Harish Kasiviswanathan
parent 6d04547b22
commit 96206ef888
2 changed files with 4 additions and 2 deletions
+3 -1
View File
@@ -567,7 +567,9 @@ typedef struct _HsaMemFlags
unsigned int NoAddress: 1; // only do vram allocation, return a handle, not allocate virtual address.
unsigned int OnlyAddress: 1; // only do virtal address allocation without vram allocation.
unsigned int ExtendedCoherent: 1; // system-scope coherence on atomic instructions
unsigned int Reserved: 11;
unsigned int GTTAccess: 1; // default = 0; If 1: The caller indicates this memory will be mapped to GART for MES
// KFD will allocate GTT memory with the Preferred_node set as gpu_id for GART mapping
unsigned int Reserved: 10;
} ui32;
HSAuint32 Value;