All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] drm/i915/hwconfig: Report no hwconfig support on ADL-N
@ 2022-05-23  7:51 ` Balasubramani Vivekanandan
  0 siblings, 0 replies; 11+ messages in thread
From: Balasubramani Vivekanandan @ 2022-05-23  7:51 UTC (permalink / raw)
  To: intel-gfx, dri-devel; +Cc: Balasubramani Vivekanandan, John.C.Harrison

ADL-N being a subplatform of ADL-P, it lacks support for hwconfig
table. Explicit check added to skip ADL-N.

Signed-off-by: Balasubramani Vivekanandan <balasubramani.vivekanandan@intel.com>
---
 drivers/gpu/drm/i915/gt/uc/intel_guc_hwconfig.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/i915/gt/uc/intel_guc_hwconfig.c b/drivers/gpu/drm/i915/gt/uc/intel_guc_hwconfig.c
index 79c66b6b51a3..5aaa3948de74 100644
--- a/drivers/gpu/drm/i915/gt/uc/intel_guc_hwconfig.c
+++ b/drivers/gpu/drm/i915/gt/uc/intel_guc_hwconfig.c
@@ -94,7 +94,7 @@ static int guc_hwconfig_fill_buffer(struct intel_guc *guc, struct intel_hwconfig
 
 static bool has_table(struct drm_i915_private *i915)
 {
-	if (IS_ALDERLAKE_P(i915))
+	if (IS_ALDERLAKE_P(i915) && !IS_ADLP_N(i915))
 		return true;
 	if (IS_DG2(i915))
 		return true;
-- 
2.25.1


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

end of thread, other threads:[~2022-05-26  2:38 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-05-23  7:51 [PATCH] drm/i915/hwconfig: Report no hwconfig support on ADL-N Balasubramani Vivekanandan
2022-05-23  7:51 ` [Intel-gfx] " Balasubramani Vivekanandan
2022-05-23 16:25 ` [Intel-gfx] ✓ Fi.CI.BAT: success for " Patchwork
2022-05-23 20:16 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork
2022-05-24 23:55   ` Matt Roper
2022-05-26  2:37     ` Vudum, Lakshminarayana
2022-05-23 21:16 ` [PATCH] " Matt Roper
2022-05-23 21:16   ` [Intel-gfx] " Matt Roper
2022-05-24 10:39 ` Andrzej Hajda
2022-05-25 18:32 ` [Intel-gfx] ✓ Fi.CI.IGT: success for " Patchwork
2022-05-26  2:29 ` Patchwork

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.