rocr: add specific flag for blit kernel object

so that aql-to-pm4 conversion could verify the validity of the kernel
object.

Signed-off-by: Flora Cui <flora.cui@amd.com>
This commit is contained in:
Flora Cui
2025-07-16 10:48:02 +08:00
zatwierdzone przez Cui, Flora
rodzic 6c87f5b5ce
commit a765dd7e94
4 zmienionych plików z 10 dodań i 2 usunięć
@@ -106,6 +106,9 @@ class MemoryRegion : public Checked<0x9C961F19EE175BB3> {
AllocateGTTAccess = (1 << 9),
AllocateContiguous = (1 << 10), // Physically contiguous memory
AllocateUncached = (1 << 11), // Uncached memory
// this flag is ignored by Thunk and only used for emulator/dxg to track code-object
// allocations in AQL to PM4 conversion.
AllocateExecutableBlitKernelObject = (1 << 12),
};
typedef uint32_t AllocateFlags;