diff options
author | Anuj Phogat <[email protected]> | 2017-05-26 10:55:22 -0700 |
---|---|---|
committer | Anuj Phogat <[email protected]> | 2018-02-16 11:10:31 -0800 |
commit | 413d475b4431732d71fa4d15a3690f3b1f03d2e1 (patch) | |
tree | 5813db7f16d7ba5386573bc9ceb5d617283ee8a6 | |
parent | 1d6cf433d2d0dfa3edd9eaaed1e8c961bbd22f99 (diff) |
anv/icl: Add gen11 mocs defines
Signed-off-by: Anuj Phogat <[email protected]>
Reviewed-by: Jason Ekstrand <[email protected]>
-rw-r--r-- | src/intel/vulkan/anv_private.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/intel/vulkan/anv_private.h b/src/intel/vulkan/anv_private.h index d38dd9e4220..009f5304f29 100644 --- a/src/intel/vulkan/anv_private.h +++ b/src/intel/vulkan/anv_private.h @@ -1148,6 +1148,17 @@ _anv_combine_address(struct anv_batch *batch, void *location, .IndextoMOCSTables = 1 \ } +/* Ice Lake MOCS defines are duplicates of Skylake MOCS defines. */ +#define GEN11_MOCS (struct GEN11_MEMORY_OBJECT_CONTROL_STATE) { \ + /* TC=LLC/eLLC, LeCC=WB, LRUM=3, L3CC=WB */ \ + .IndextoMOCSTables = 2 \ + } + +#define GEN11_MOCS_PTE { \ + /* TC=LLC/eLLC, LeCC=WB, LRUM=3, L3CC=WB */ \ + .IndextoMOCSTables = 1 \ + } + struct anv_device_memory { struct anv_bo * bo; struct anv_memory_type * type; |