diff options
author | Himal Prasad Ghimiray <[email protected]> | 2023-12-12 23:55:33 +0530 |
---|---|---|
committer | Rodrigo Vivi <[email protected]> | 2023-12-21 11:46:16 -0500 |
commit | cbdc52c11c9b1df40ade23f622abc3466e4ee96c (patch) | |
tree | c7190d752c066cfdf51bba8fb60b40ee4dbad73d | |
parent | d6abc18d66932adb163803f9c83a5fa90ca63ff4 (diff) |
drm/xe/xe2: Support flat ccs
Enable flat ccs for XE2_GFX_FEATURES.
Cc: Thomas Hellström <[email protected]>
Signed-off-by: Himal Prasad Ghimiray <[email protected]>
Reviewed-by: Thomas Hellström <[email protected]>
Signed-off-by: Rodrigo Vivi <[email protected]>
-rw-r--r-- | drivers/gpu/drm/xe/xe_pci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/xe/xe_pci.c b/drivers/gpu/drm/xe/xe_pci.c index 34dcc743e2c7..88fb6c54ef99 100644 --- a/drivers/gpu/drm/xe/xe_pci.c +++ b/drivers/gpu/drm/xe/xe_pci.c @@ -164,7 +164,7 @@ static const struct xe_graphics_desc graphics_xelpg = { #define XE2_GFX_FEATURES \ .dma_mask_size = 46, \ .has_asid = 1, \ - .has_flat_ccs = 0 /* FIXME: implementation missing */, \ + .has_flat_ccs = 1, \ .has_range_tlb_invalidation = 1, \ .has_usm = 0 /* FIXME: implementation missing */, \ .va_bits = 48, \ |