mirror of
https://github.com/torvalds/linux.git
synced 2026-04-19 23:34:00 -04:00
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
10 lines
254 B
C
10 lines
254 B
C
/* 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__ */
|