On discrete we need to fallback to this mode.

Signed-off-by: Matthew Auld <[email protected]>
Cc: Maarten Lankhorst <[email protected]>
Cc: Daniel Vetter <[email protected]>
Cc: Ramalingam C <[email protected]>
---
 lib/i915/gem_mman.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/lib/i915/gem_mman.c b/lib/i915/gem_mman.c
index e2514f0c..222e8896 100644
--- a/lib/i915/gem_mman.c
+++ b/lib/i915/gem_mman.c
@@ -383,9 +383,10 @@ void *__gem_mmap__device_coherent(int fd, uint32_t handle, 
uint64_t offset,
                                      I915_MMAP_OFFSET_WC);
        if (!ptr)
                ptr = __gem_mmap__wc(fd, handle, offset, size, prot);
-
        if (!ptr)
                ptr = __gem_mmap__gtt(fd, handle, size, prot);
+       if (!ptr)
+               ptr = __gem_mmap_offset__fixed(fd, handle, offset, size, prot);
 
        return ptr;
 }
-- 
2.26.3

_______________________________________________
Intel-gfx mailing list
[email protected]
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

Reply via email to