Intel-XE Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Intel-xe] [PATCH 0/6] Fix compatibility issue for intel_dmc
@ 2023-10-11 12:22 Chaitanya Kumar Borah
  2023-10-11 12:22 ` [Intel-xe] [PATCH 1/6] Revert "FIXME: drm/i915/dmc: xe way of getting at stepping" Chaitanya Kumar Borah
                   ` (7 more replies)
  0 siblings, 8 replies; 9+ messages in thread
From: Chaitanya Kumar Borah @ 2023-10-11 12:22 UTC (permalink / raw)
  To: intel-xe

This series reverts hacky #ifdefs from intel_dmc

Chaitanya Kumar Borah (6):
  Revert "FIXME: drm/i915/dmc: xe way of getting at stepping"
  drm/i915: Add wrapper for getting display step
  fixup! drm/xe/display: Implement display support
  drm/xe: Add intel_step.h compatibility header
  drm/xe: Add i915_gpu_error.h compatibility header
  drm/xe: Add intel_uc_fw.h compatibility header

 drivers/gpu/drm/i915/display/intel_dmc.c      | 19 ++----------------
 drivers/gpu/drm/i915/intel_step.c             |  5 +++++
 drivers/gpu/drm/i915/intel_step.h             |  1 +
 .../gpu/drm/xe/compat-i915-headers/i915_drv.h |  4 +++-
 .../xe/compat-i915-headers/i915_gpu_error.h   | 18 +++++++++++++++++
 .../drm/xe/compat-i915-headers/intel_step.h   | 20 +++++++++++++++++++
 .../drm/xe/compat-i915-headers/intel_uc_fw.h  | 12 +++++++++++
 7 files changed, 61 insertions(+), 18 deletions(-)
 create mode 100644 drivers/gpu/drm/xe/compat-i915-headers/i915_gpu_error.h
 create mode 100644 drivers/gpu/drm/xe/compat-i915-headers/intel_step.h
 create mode 100644 drivers/gpu/drm/xe/compat-i915-headers/intel_uc_fw.h

-- 
2.25.1


^ permalink raw reply	[flat|nested] 9+ messages in thread

* [Intel-xe] [PATCH 1/6] Revert "FIXME: drm/i915/dmc: xe way of getting at stepping"
  2023-10-11 12:22 [Intel-xe] [PATCH 0/6] Fix compatibility issue for intel_dmc Chaitanya Kumar Borah
@ 2023-10-11 12:22 ` Chaitanya Kumar Borah
  2023-10-11 12:22 ` [Intel-xe] [PATCH 2/6] drm/i915: Add wrapper for getting display step Chaitanya Kumar Borah
                   ` (6 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: Chaitanya Kumar Borah @ 2023-10-11 12:22 UTC (permalink / raw)
  To: intel-xe

This reverts commit a0cdbefc3aea03c1d3f30460c1d89678705d57bb.

Signed-off-by: Chaitanya Kumar Borah <chaitanya.kumar.borah@intel.com>
---
 drivers/gpu/drm/i915/display/intel_dmc.c | 17 +----------------
 1 file changed, 1 insertion(+), 16 deletions(-)

diff --git a/drivers/gpu/drm/i915/display/intel_dmc.c b/drivers/gpu/drm/i915/display/intel_dmc.c
index 51e0463518fb..1623c0c5e8a1 100644
--- a/drivers/gpu/drm/i915/display/intel_dmc.c
+++ b/drivers/gpu/drm/i915/display/intel_dmc.c
@@ -30,18 +30,6 @@
 #include "intel_dmc.h"
 #include "intel_dmc_regs.h"
 
-#ifndef I915
-#include "xe_uc_fw.h"
-
-#define INTEL_UC_FIRMWARE_URL XE_UC_FIRMWARE_URL
-
-__printf(2, 3)
-static inline void
-i915_error_printf(struct drm_i915_error_state_buf *e, const char *f, ...)
-{
-}
-#endif
-
 /**
  * DOC: DMC Firmware Support
  *
@@ -321,11 +309,8 @@ static const struct stepping_info *
 intel_get_stepping_info(struct drm_i915_private *i915,
 			struct stepping_info *si)
 {
-#ifdef I915
 	const char *step_name = intel_step_name(RUNTIME_INFO(i915)->step.display_step);
-#else
-	const char *step_name = xe_step_name(i915->info.step.display);
-#endif
+
 	si->stepping = step_name[0];
 	si->substepping = step_name[1];
 	return si;
-- 
2.25.1


^ permalink raw reply related	[flat|nested] 9+ messages in thread

* [Intel-xe] [PATCH 2/6] drm/i915: Add wrapper for getting display step
  2023-10-11 12:22 [Intel-xe] [PATCH 0/6] Fix compatibility issue for intel_dmc Chaitanya Kumar Borah
  2023-10-11 12:22 ` [Intel-xe] [PATCH 1/6] Revert "FIXME: drm/i915/dmc: xe way of getting at stepping" Chaitanya Kumar Borah
@ 2023-10-11 12:22 ` Chaitanya Kumar Borah
  2023-10-11 12:22 ` [Intel-xe] [PATCH 3/6] fixup! drm/xe/display: Implement display support Chaitanya Kumar Borah
                   ` (5 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: Chaitanya Kumar Borah @ 2023-10-11 12:22 UTC (permalink / raw)
  To: intel-xe

Add a wrapper around intel_step_name that takes in driver data as an
argument. This wrapper will help maintain compatibility with the
proposed xe driver.

Signed-off-by: Chaitanya Kumar Borah <chaitanya.kumar.borah@intel.com>
Signed-off-by: Animesh Manna <animesh.manna@intel.com>
Reviewed-by: Uma Shankar <uma.shankar@intel.com>
Signed-off-by: Uma Shankar <uma.shankar@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20231003065211.1052385-1-chaitanya.kumar.borah@intel.com
(cherry picked from commit 55ce2c37cfb969b7d8bf4a1a5c7956ffada0cae8)
---
 drivers/gpu/drm/i915/display/intel_dmc.c | 2 +-
 drivers/gpu/drm/i915/intel_step.c        | 5 +++++
 drivers/gpu/drm/i915/intel_step.h        | 1 +
 3 files changed, 7 insertions(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/i915/display/intel_dmc.c b/drivers/gpu/drm/i915/display/intel_dmc.c
index 1623c0c5e8a1..63e080e07023 100644
--- a/drivers/gpu/drm/i915/display/intel_dmc.c
+++ b/drivers/gpu/drm/i915/display/intel_dmc.c
@@ -309,7 +309,7 @@ static const struct stepping_info *
 intel_get_stepping_info(struct drm_i915_private *i915,
 			struct stepping_info *si)
 {
-	const char *step_name = intel_step_name(RUNTIME_INFO(i915)->step.display_step);
+	const char *step_name = intel_display_step_name(i915);
 
 	si->stepping = step_name[0];
 	si->substepping = step_name[1];
diff --git a/drivers/gpu/drm/i915/intel_step.c b/drivers/gpu/drm/i915/intel_step.c
index ee4e5a2c0220..b4162f1be765 100644
--- a/drivers/gpu/drm/i915/intel_step.c
+++ b/drivers/gpu/drm/i915/intel_step.c
@@ -353,3 +353,8 @@ const char *intel_step_name(enum intel_step step)
 		return "**";
 	}
 }
+
+const char *intel_display_step_name(struct drm_i915_private *i915)
+{
+	return intel_step_name(RUNTIME_INFO(i915)->step.display_step);
+}
diff --git a/drivers/gpu/drm/i915/intel_step.h b/drivers/gpu/drm/i915/intel_step.h
index 96dfca4cba73..b6f43b624774 100644
--- a/drivers/gpu/drm/i915/intel_step.h
+++ b/drivers/gpu/drm/i915/intel_step.h
@@ -78,5 +78,6 @@ enum intel_step {
 
 void intel_step_init(struct drm_i915_private *i915);
 const char *intel_step_name(enum intel_step step);
+const char *intel_display_step_name(struct drm_i915_private *i915);
 
 #endif /* __INTEL_STEP_H__ */
-- 
2.25.1


^ permalink raw reply related	[flat|nested] 9+ messages in thread

* [Intel-xe] [PATCH 3/6] fixup! drm/xe/display: Implement display support
  2023-10-11 12:22 [Intel-xe] [PATCH 0/6] Fix compatibility issue for intel_dmc Chaitanya Kumar Borah
  2023-10-11 12:22 ` [Intel-xe] [PATCH 1/6] Revert "FIXME: drm/i915/dmc: xe way of getting at stepping" Chaitanya Kumar Borah
  2023-10-11 12:22 ` [Intel-xe] [PATCH 2/6] drm/i915: Add wrapper for getting display step Chaitanya Kumar Borah
@ 2023-10-11 12:22 ` Chaitanya Kumar Borah
  2023-10-11 12:22 ` [Intel-xe] [PATCH 4/6] drm/xe: Add intel_step.h compatibility header Chaitanya Kumar Borah
                   ` (4 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: Chaitanya Kumar Borah @ 2023-10-11 12:22 UTC (permalink / raw)
  To: intel-xe

Remove redundant macro. Stepping will be handled in a separate
compat header.

Signed-off-by: Chaitanya Kumar Borah <chaitanya.kumar.borah@intel.com>
---
 drivers/gpu/drm/xe/compat-i915-headers/i915_drv.h | 1 -
 1 file changed, 1 deletion(-)

diff --git a/drivers/gpu/drm/xe/compat-i915-headers/i915_drv.h b/drivers/gpu/drm/xe/compat-i915-headers/i915_drv.h
index 918dd27868fa..1223619f5bbf 100644
--- a/drivers/gpu/drm/xe/compat-i915-headers/i915_drv.h
+++ b/drivers/gpu/drm/xe/compat-i915-headers/i915_drv.h
@@ -204,7 +204,6 @@ static inline void intel_runtime_pm_put(struct xe_runtime_pm *pm, bool wakeref)
 	for ((wf) = intel_runtime_pm_get(rpm); (wf); \
 	     intel_runtime_pm_put((rpm), (wf)), (wf) = 0)
 
-#define intel_step_name xe_step_name
 #define pdev_to_i915 pdev_to_xe_device
 #define DISPLAY_INFO(xe)		((xe)->info.display)
 #define RUNTIME_INFO(xe)		(&(xe)->info.i915_runtime)
-- 
2.25.1


^ permalink raw reply related	[flat|nested] 9+ messages in thread

* [Intel-xe] [PATCH 4/6] drm/xe: Add intel_step.h compatibility header
  2023-10-11 12:22 [Intel-xe] [PATCH 0/6] Fix compatibility issue for intel_dmc Chaitanya Kumar Borah
                   ` (2 preceding siblings ...)
  2023-10-11 12:22 ` [Intel-xe] [PATCH 3/6] fixup! drm/xe/display: Implement display support Chaitanya Kumar Borah
@ 2023-10-11 12:22 ` Chaitanya Kumar Borah
  2023-10-11 12:22 ` [Intel-xe] [PATCH 5/6] drm/xe: Add i915_gpu_error.h " Chaitanya Kumar Borah
                   ` (3 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: Chaitanya Kumar Borah @ 2023-10-11 12:22 UTC (permalink / raw)
  To: intel-xe

Add compatibility header with helpers to get display step name. This
is needed to maintain compatibility with intel_dmc code.

Signed-off-by: Chaitanya Kumar Borah <chaitanya.kumar.borah@intel.com>
---
 .../gpu/drm/xe/compat-i915-headers/i915_drv.h |  1 +
 .../drm/xe/compat-i915-headers/intel_step.h   | 20 +++++++++++++++++++
 2 files changed, 21 insertions(+)
 create mode 100644 drivers/gpu/drm/xe/compat-i915-headers/intel_step.h

diff --git a/drivers/gpu/drm/xe/compat-i915-headers/i915_drv.h b/drivers/gpu/drm/xe/compat-i915-headers/i915_drv.h
index 1223619f5bbf..494409849a7d 100644
--- a/drivers/gpu/drm/xe/compat-i915-headers/i915_drv.h
+++ b/drivers/gpu/drm/xe/compat-i915-headers/i915_drv.h
@@ -20,6 +20,7 @@
 #include "i915_reg_defs.h"
 #include "i915_utils.h"
 #include "intel_gt_types.h"
+#include "intel_step.h"
 #include "intel_uncore.h"
 #include "intel_runtime_pm.h"
 #include <linux/pm_runtime.h>
diff --git a/drivers/gpu/drm/xe/compat-i915-headers/intel_step.h b/drivers/gpu/drm/xe/compat-i915-headers/intel_step.h
new file mode 100644
index 000000000000..0006ef812346
--- /dev/null
+++ b/drivers/gpu/drm/xe/compat-i915-headers/intel_step.h
@@ -0,0 +1,20 @@
+/* SPDX-License-Identifier: MIT */
+/*
+ * Copyright © 2023 Intel Corporation
+ */
+
+#ifndef __INTEL_STEP_H__
+#define __INTEL_STEP_H__
+
+#include "xe_device_types.h"
+#include "xe_step.h"
+
+#define intel_display_step_name xe_display_step_name
+
+static inline
+const char *xe_display_step_name(struct xe_device *xe)
+{
+	return xe_step_name(xe->info.step.display);
+}
+
+#endif /* __INTEL_STEP_H__ */
-- 
2.25.1


^ permalink raw reply related	[flat|nested] 9+ messages in thread

* [Intel-xe] [PATCH 5/6] drm/xe: Add i915_gpu_error.h compatibility header
  2023-10-11 12:22 [Intel-xe] [PATCH 0/6] Fix compatibility issue for intel_dmc Chaitanya Kumar Borah
                   ` (3 preceding siblings ...)
  2023-10-11 12:22 ` [Intel-xe] [PATCH 4/6] drm/xe: Add intel_step.h compatibility header Chaitanya Kumar Borah
@ 2023-10-11 12:22 ` Chaitanya Kumar Borah
  2023-10-11 12:22 ` [Intel-xe] [PATCH 6/6] drm/xe: Add intel_uc_fw.h " Chaitanya Kumar Borah
                   ` (2 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: Chaitanya Kumar Borah @ 2023-10-11 12:22 UTC (permalink / raw)
  To: intel-xe

Add empty definitions for i915_error_printf to get rid of ifdefs from
intel_dmc code

Signed-off-by: Chaitanya Kumar Borah <chaitanya.kumar.borah@intel.com>
---
 .../gpu/drm/xe/compat-i915-headers/i915_drv.h  |  1 +
 .../xe/compat-i915-headers/i915_gpu_error.h    | 18 ++++++++++++++++++
 2 files changed, 19 insertions(+)
 create mode 100644 drivers/gpu/drm/xe/compat-i915-headers/i915_gpu_error.h

diff --git a/drivers/gpu/drm/xe/compat-i915-headers/i915_drv.h b/drivers/gpu/drm/xe/compat-i915-headers/i915_drv.h
index 494409849a7d..56a9de859bf9 100644
--- a/drivers/gpu/drm/xe/compat-i915-headers/i915_drv.h
+++ b/drivers/gpu/drm/xe/compat-i915-headers/i915_drv.h
@@ -17,6 +17,7 @@
 #include "xe_step.h"
 #include "i915_gem.h"
 #include "i915_gem_stolen.h"
+#include "i915_gpu_error.h"
 #include "i915_reg_defs.h"
 #include "i915_utils.h"
 #include "intel_gt_types.h"
diff --git a/drivers/gpu/drm/xe/compat-i915-headers/i915_gpu_error.h b/drivers/gpu/drm/xe/compat-i915-headers/i915_gpu_error.h
new file mode 100644
index 000000000000..01c1e8d6927d
--- /dev/null
+++ b/drivers/gpu/drm/xe/compat-i915-headers/i915_gpu_error.h
@@ -0,0 +1,18 @@
+/* SPDX-License-Identifier: MIT */
+/*
+ * Copyright © 2023 Intel Corporation
+ */
+
+#ifndef _I915_GPU_ERROR_H_
+#define _I915_GPU_ERROR_H_
+
+struct drm_i915_error_state_buf;
+
+__printf(2, 3)
+static inline void
+i915_error_printf(struct drm_i915_error_state_buf *e, const char *f, ...)
+{
+}
+
+#endif
+
-- 
2.25.1


^ permalink raw reply related	[flat|nested] 9+ messages in thread

* [Intel-xe] [PATCH 6/6] drm/xe: Add intel_uc_fw.h compatibility header
  2023-10-11 12:22 [Intel-xe] [PATCH 0/6] Fix compatibility issue for intel_dmc Chaitanya Kumar Borah
                   ` (4 preceding siblings ...)
  2023-10-11 12:22 ` [Intel-xe] [PATCH 5/6] drm/xe: Add i915_gpu_error.h " Chaitanya Kumar Borah
@ 2023-10-11 12:22 ` Chaitanya Kumar Borah
  2023-10-11 12:38 ` [Intel-xe] [PATCH 0/6] Fix compatibility issue for intel_dmc Jani Nikula
  2023-10-11 15:54 ` [Intel-xe] ✗ CI.Patch_applied: failure for " Patchwork
  7 siblings, 0 replies; 9+ messages in thread
From: Chaitanya Kumar Borah @ 2023-10-11 12:22 UTC (permalink / raw)
  To: intel-xe

Add definition for INTEL_UC_FIRMWARE_URL to maintain compatibility
with intel_dmc code.

Signed-off-by: Chaitanya Kumar Borah <chaitanya.kumar.borah@intel.com>
---
 drivers/gpu/drm/xe/compat-i915-headers/i915_drv.h    |  1 +
 drivers/gpu/drm/xe/compat-i915-headers/intel_uc_fw.h | 12 ++++++++++++
 2 files changed, 13 insertions(+)
 create mode 100644 drivers/gpu/drm/xe/compat-i915-headers/intel_uc_fw.h

diff --git a/drivers/gpu/drm/xe/compat-i915-headers/i915_drv.h b/drivers/gpu/drm/xe/compat-i915-headers/i915_drv.h
index 56a9de859bf9..5cb8582c9846 100644
--- a/drivers/gpu/drm/xe/compat-i915-headers/i915_drv.h
+++ b/drivers/gpu/drm/xe/compat-i915-headers/i915_drv.h
@@ -22,6 +22,7 @@
 #include "i915_utils.h"
 #include "intel_gt_types.h"
 #include "intel_step.h"
+#include "intel_uc_fw.h"
 #include "intel_uncore.h"
 #include "intel_runtime_pm.h"
 #include <linux/pm_runtime.h>
diff --git a/drivers/gpu/drm/xe/compat-i915-headers/intel_uc_fw.h b/drivers/gpu/drm/xe/compat-i915-headers/intel_uc_fw.h
new file mode 100644
index 000000000000..c0c8d13acd40
--- /dev/null
+++ b/drivers/gpu/drm/xe/compat-i915-headers/intel_uc_fw.h
@@ -0,0 +1,12 @@
+/* SPDX-License-Identifier: MIT */
+/*
+ * Copyright © 2023 Intel Corporation
+ */
+
+#ifndef _INTEL_UC_FW_H_
+#define _INTEL_UC_FW_H_
+
+#define INTEL_UC_FIRMWARE_URL "https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/i915"
+
+#endif
+
-- 
2.25.1


^ permalink raw reply related	[flat|nested] 9+ messages in thread

* Re: [Intel-xe] [PATCH 0/6] Fix compatibility issue for intel_dmc
  2023-10-11 12:22 [Intel-xe] [PATCH 0/6] Fix compatibility issue for intel_dmc Chaitanya Kumar Borah
                   ` (5 preceding siblings ...)
  2023-10-11 12:22 ` [Intel-xe] [PATCH 6/6] drm/xe: Add intel_uc_fw.h " Chaitanya Kumar Borah
@ 2023-10-11 12:38 ` Jani Nikula
  2023-10-11 15:54 ` [Intel-xe] ✗ CI.Patch_applied: failure for " Patchwork
  7 siblings, 0 replies; 9+ messages in thread
From: Jani Nikula @ 2023-10-11 12:38 UTC (permalink / raw)
  To: Chaitanya Kumar Borah, intel-xe

On Wed, 11 Oct 2023, Chaitanya Kumar Borah <chaitanya.kumar.borah@intel.com> wrote:
> This series reverts hacky #ifdefs from intel_dmc

Acked-by: Jani Nikula <jani.nikula@intel.com>


>
> Chaitanya Kumar Borah (6):
>   Revert "FIXME: drm/i915/dmc: xe way of getting at stepping"
>   drm/i915: Add wrapper for getting display step
>   fixup! drm/xe/display: Implement display support
>   drm/xe: Add intel_step.h compatibility header
>   drm/xe: Add i915_gpu_error.h compatibility header
>   drm/xe: Add intel_uc_fw.h compatibility header
>
>  drivers/gpu/drm/i915/display/intel_dmc.c      | 19 ++----------------
>  drivers/gpu/drm/i915/intel_step.c             |  5 +++++
>  drivers/gpu/drm/i915/intel_step.h             |  1 +
>  .../gpu/drm/xe/compat-i915-headers/i915_drv.h |  4 +++-
>  .../xe/compat-i915-headers/i915_gpu_error.h   | 18 +++++++++++++++++
>  .../drm/xe/compat-i915-headers/intel_step.h   | 20 +++++++++++++++++++
>  .../drm/xe/compat-i915-headers/intel_uc_fw.h  | 12 +++++++++++
>  7 files changed, 61 insertions(+), 18 deletions(-)
>  create mode 100644 drivers/gpu/drm/xe/compat-i915-headers/i915_gpu_error.h
>  create mode 100644 drivers/gpu/drm/xe/compat-i915-headers/intel_step.h
>  create mode 100644 drivers/gpu/drm/xe/compat-i915-headers/intel_uc_fw.h

-- 
Jani Nikula, Intel

^ permalink raw reply	[flat|nested] 9+ messages in thread

* [Intel-xe] ✗ CI.Patch_applied: failure for Fix compatibility issue for intel_dmc
  2023-10-11 12:22 [Intel-xe] [PATCH 0/6] Fix compatibility issue for intel_dmc Chaitanya Kumar Borah
                   ` (6 preceding siblings ...)
  2023-10-11 12:38 ` [Intel-xe] [PATCH 0/6] Fix compatibility issue for intel_dmc Jani Nikula
@ 2023-10-11 15:54 ` Patchwork
  7 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2023-10-11 15:54 UTC (permalink / raw)
  To: Chaitanya Kumar Borah; +Cc: intel-xe

== Series Details ==

Series: Fix compatibility issue for intel_dmc
URL   : https://patchwork.freedesktop.org/series/124969/
State : failure

== Summary ==

=== Applying kernel patches on branch 'drm-xe-next' with base: ===
Base commit: 81cbfcc83 Revert "drm/i915/display: Fix a use-after-free when intel_edp_init_connector fails"
=== git am output follows ===
error: patch failed: drivers/gpu/drm/xe/compat-i915-headers/i915_drv.h:204
error: drivers/gpu/drm/xe/compat-i915-headers/i915_drv.h: patch does not apply
hint: Use 'git am --show-current-patch' to see the failed patch
Applying: Revert "FIXME: drm/i915/dmc: xe way of getting at stepping"
Applying: drm/i915: Add wrapper for getting display step
Applying: fixup! drm/xe/display: Implement display support
Patch failed at 0003 fixup! drm/xe/display: Implement display support
When you have resolved this problem, run "git am --continue".
If you prefer to skip this patch, run "git am --skip" instead.
To restore the original branch and stop patching, run "git am --abort".



^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2023-10-11 15:54 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-10-11 12:22 [Intel-xe] [PATCH 0/6] Fix compatibility issue for intel_dmc Chaitanya Kumar Borah
2023-10-11 12:22 ` [Intel-xe] [PATCH 1/6] Revert "FIXME: drm/i915/dmc: xe way of getting at stepping" Chaitanya Kumar Borah
2023-10-11 12:22 ` [Intel-xe] [PATCH 2/6] drm/i915: Add wrapper for getting display step Chaitanya Kumar Borah
2023-10-11 12:22 ` [Intel-xe] [PATCH 3/6] fixup! drm/xe/display: Implement display support Chaitanya Kumar Borah
2023-10-11 12:22 ` [Intel-xe] [PATCH 4/6] drm/xe: Add intel_step.h compatibility header Chaitanya Kumar Borah
2023-10-11 12:22 ` [Intel-xe] [PATCH 5/6] drm/xe: Add i915_gpu_error.h " Chaitanya Kumar Borah
2023-10-11 12:22 ` [Intel-xe] [PATCH 6/6] drm/xe: Add intel_uc_fw.h " Chaitanya Kumar Borah
2023-10-11 12:38 ` [Intel-xe] [PATCH 0/6] Fix compatibility issue for intel_dmc Jani Nikula
2023-10-11 15:54 ` [Intel-xe] ✗ CI.Patch_applied: failure for " Patchwork

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox