[Intel-xe] [PATCH v3 8/9] fixup! drm/xe/display: Implement display support
Jouni Högander
jouni.hogander at intel.com
Mon Dec 4 16:40:46 UTC 2023
Adding i915_gem_object_is_tiled and i915_gem_object_is_userptr for
intel_fb.c.
Signed-off-by: Jouni Högander <jouni.hogander at intel.com>
---
.../xe/compat-i915-headers/gem/i915_gem_object.h | 16 ++++++++++++++++
1 file changed, 16 insertions(+)
diff --git a/drivers/gpu/drm/xe/compat-i915-headers/gem/i915_gem_object.h b/drivers/gpu/drm/xe/compat-i915-headers/gem/i915_gem_object.h
index 3b305c291cdd..996b4f4f27dc 100644
--- a/drivers/gpu/drm/xe/compat-i915-headers/gem/i915_gem_object.h
+++ b/drivers/gpu/drm/xe/compat-i915-headers/gem/i915_gem_object.h
@@ -6,6 +6,22 @@
#ifndef _I915_GEM_OBJECT_H_
#define _I915_GEM_OBJECT_H_
+#include <linux/types.h>
+
+#include "xe_bo.h"
+
#define i915_gem_object_is_shmem(obj) ((obj)->flags & XE_BO_CREATE_SYSTEM_BIT)
+static inline bool i915_gem_object_is_tiled(const struct xe_bo *bo)
+{
+ /* legacy tiling is unused */
+ return false;
+}
+
+static inline bool i915_gem_object_is_userptr(const struct xe_bo *bo)
+{
+ /* legacy tiling is unused */
+ return false;
+}
+
#endif
--
2.34.1
More information about the Intel-xe
mailing list