]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
drm/i915/pc8: Add parent interface for PC8 forcewake tricks
authorVille Syrjälä <ville.syrjala@linux.intel.com>
Thu, 18 Dec 2025 18:20:52 +0000 (20:20 +0200)
committerVille Syrjälä <ville.syrjala@linux.intel.com>
Fri, 19 Dec 2025 19:28:48 +0000 (21:28 +0200)
We use forcewake to prevent the SoC from actually entering
PC8 while performing the PC8 disable sequence. Hide that
behind a new parent interface to eliminate the naked
forcewake/uncore usage from the display power code.

v2: Mark the interface optional and warn if
    someone calls it when not provided (Jani)
    Include the header to make sure the extern
    declaration matches the definition (Jani)
v3: Rebase due to shuffling

Reviewed-by: Jani Nikula <jani.nikula@intel.com>
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Link: https://patch.msgid.link/20251218182052.18756-1-ville.syrjala@linux.intel.com
drivers/gpu/drm/i915/Makefile
drivers/gpu/drm/i915/display/intel_display_power.c
drivers/gpu/drm/i915/display/intel_parent.c
drivers/gpu/drm/i915/display/intel_parent.h
drivers/gpu/drm/i915/i915_display_pc8.c [new file with mode: 0644]
drivers/gpu/drm/i915/i915_display_pc8.h [new file with mode: 0644]
drivers/gpu/drm/i915/i915_driver.c
include/drm/intel/display_parent_interface.h

index 13b9e71fa99388d907192820cc0633f48f3e5b94..801dd155d1f00a30107a7f67ad690dbbcda478eb 100644 (file)
@@ -76,6 +76,7 @@ i915-$(CONFIG_PERF_EVENTS) += \
 
 # core display adaptation
 i915-y += \
+       i915_display_pc8.o \
        i915_hdcp_gsc.o \
        i915_panic.o
 
index 9f323c39d798f14614ffbb9f5ddf09c78afcf147..47042a4c3a303fa85dfdaeb7ed2401746ad44005 100644 (file)
@@ -1339,10 +1339,10 @@ static void hsw_restore_lcpll(struct intel_display *display)
                return;
 
        /*
-        * Make sure we're not on PC8 state before disabling PC8, otherwise
-        * we'll hang the machine. To prevent PC8 state, just enable force_wake.
+        * Make sure we're not on PC8 state before disabling
+        * PC8, otherwise we'll hang the machine.
         */
-       intel_uncore_forcewake_get(&dev_priv->uncore, FORCEWAKE_ALL);
+       intel_parent_pc8_block(display);
 
        if (val & LCPLL_POWER_DOWN_ALLOW) {
                val &= ~LCPLL_POWER_DOWN_ALLOW;
@@ -1372,7 +1372,7 @@ static void hsw_restore_lcpll(struct intel_display *display)
                                "Switching back to LCPLL failed\n");
        }
 
-       intel_uncore_forcewake_put(&dev_priv->uncore, FORCEWAKE_ALL);
+       intel_parent_pc8_unblock(display);
 
        intel_update_cdclk(display);
        intel_cdclk_dump_config(display, &display->cdclk.hw, "Current CDCLK");
index 9b1a84a439e953dd92cbedc31816afeba11c68fd..72ae553f79a4a2a9f2f4d3c6b3a3e2a21b374b0e 100644 (file)
@@ -75,6 +75,23 @@ void intel_parent_panic_finish(struct intel_display *display, struct intel_panic
        display->parent->panic->finish(panic);
 }
 
+/* pc8 */
+void intel_parent_pc8_block(struct intel_display *display)
+{
+       if (drm_WARN_ON_ONCE(display->drm, !display->parent->pc8))
+               return;
+
+       display->parent->pc8->block(display->drm);
+}
+
+void intel_parent_pc8_unblock(struct intel_display *display)
+{
+       if (drm_WARN_ON_ONCE(display->drm, !display->parent->pc8))
+               return;
+
+       display->parent->pc8->unblock(display->drm);
+}
+
 /* rps */
 bool intel_parent_rps_available(struct intel_display *display)
 {
index a2a631fba1189c3c413f25332737c11f0f4b768d..47cdc14f9aa281e981f69097d7939e6e958f1a9c 100644 (file)
@@ -32,6 +32,10 @@ struct intel_panic *intel_parent_panic_alloc(struct intel_display *display);
 int intel_parent_panic_setup(struct intel_display *display, struct intel_panic *panic, struct drm_scanout_buffer *sb);
 void intel_parent_panic_finish(struct intel_display *display, struct intel_panic *panic);
 
+/* pc8 */
+void intel_parent_pc8_block(struct intel_display *display);
+void intel_parent_pc8_unblock(struct intel_display *display);
+
 /* rps */
 bool intel_parent_rps_available(struct intel_display *display);
 void intel_parent_rps_boost_if_not_started(struct intel_display *display, struct dma_fence *fence);
diff --git a/drivers/gpu/drm/i915/i915_display_pc8.c b/drivers/gpu/drm/i915/i915_display_pc8.c
new file mode 100644 (file)
index 0000000..2af5dba
--- /dev/null
@@ -0,0 +1,31 @@
+// SPDX-License-Identifier: MIT
+/*
+ * Copyright 2025, Intel Corporation.
+ */
+
+#include <drm/drm_print.h>
+#include <drm/intel/display_parent_interface.h>
+
+#include "i915_display_pc8.h"
+#include "i915_drv.h"
+#include "intel_uncore.h"
+
+static void i915_display_pc8_block(struct drm_device *drm)
+{
+       struct intel_uncore *uncore = &to_i915(drm)->uncore;
+
+       /* to prevent PC8 state, just enable force_wake */
+       intel_uncore_forcewake_get(uncore, FORCEWAKE_ALL);
+}
+
+static void i915_display_pc8_unblock(struct drm_device *drm)
+{
+       struct intel_uncore *uncore = &to_i915(drm)->uncore;
+
+       intel_uncore_forcewake_put(uncore, FORCEWAKE_ALL);
+}
+
+const struct intel_display_pc8_interface i915_display_pc8_interface = {
+       .block = i915_display_pc8_block,
+       .unblock = i915_display_pc8_unblock,
+};
diff --git a/drivers/gpu/drm/i915/i915_display_pc8.h b/drivers/gpu/drm/i915/i915_display_pc8.h
new file mode 100644 (file)
index 0000000..717f313
--- /dev/null
@@ -0,0 +1,9 @@
+/* SPDX-License-Identifier: MIT */
+/* Copyright © 2025 Intel Corporation */
+
+#ifndef __I915_DISPLAY_PC8_H__
+#define __I915_DISPLAY_PC8_H__
+
+extern const struct intel_display_pc8_interface i915_display_pc8_interface;
+
+#endif /* __I915_DISPLAY_PC8_H__ */
index 75f503e52e70d3371e550e34f37bbbd9cce5dc74..e025273e9ab13b00787a5b9e2624e574aef3230e 100644 (file)
@@ -89,6 +89,7 @@
 #include "pxp/intel_pxp_pm.h"
 
 #include "i915_debugfs.h"
+#include "i915_display_pc8.h"
 #include "i915_driver.h"
 #include "i915_drm_client.h"
 #include "i915_drv.h"
@@ -765,6 +766,7 @@ static const struct intel_display_parent_interface parent = {
        .hdcp = &i915_display_hdcp_interface,
        .irq = &i915_display_irq_interface,
        .panic = &i915_display_panic_interface,
+       .pc8 = &i915_display_pc8_interface,
        .rpm = &i915_display_rpm_interface,
        .rps = &i915_display_rps_interface,
        .stolen = &i915_display_stolen_interface,
index 55d4df714645491522ad1c60ff702533bf96f9b7..10c50b42844eabf698074bb9280bf5e4ac4e8ee2 100644 (file)
@@ -36,6 +36,11 @@ struct intel_display_panic_interface {
        void (*finish)(struct intel_panic *panic);
 };
 
+struct intel_display_pc8_interface {
+       void (*block)(struct drm_device *drm);
+       void (*unblock)(struct drm_device *drm);
+};
+
 struct intel_display_rpm_interface {
        struct ref_tracker *(*get)(const struct drm_device *drm);
        struct ref_tracker *(*get_raw)(const struct drm_device *drm);
@@ -96,6 +101,9 @@ struct intel_display_parent_interface {
        /** @panic: Panic interface */
        const struct intel_display_panic_interface *panic;
 
+       /** @pc8: PC8 interface. Optional. */
+       const struct intel_display_pc8_interface *pc8;
+
        /** @rpm: Runtime PM functions */
        const struct intel_display_rpm_interface *rpm;