mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00

Make i915->display pointer opaque to most of core i915 driver. Lots of places now need explicit include of intel_display_core.h, or a more specific header. With this dependency broken, changes in display should cause radically less recompilation of i915. Reviewed-by: Chaitanya Kumar Borah <chaitanya.kumar.borah@intel.com> Link: https://lore.kernel.org/r/b381b59acb7e4f600e0282935a68aedf77768109.1747907216.git.jani.nikula@intel.com Signed-off-by: Jani Nikula <jani.nikula@intel.com>
69 lines
1.8 KiB
C
69 lines
1.8 KiB
C
// SPDX-License-Identifier: MIT
|
|
/* Copyright © 2025 Intel Corporation */
|
|
|
|
#include "i915_drv.h"
|
|
#include "intel_display_core.h"
|
|
#include "intel_display_rpm.h"
|
|
#include "intel_runtime_pm.h"
|
|
|
|
static struct intel_runtime_pm *display_to_rpm(struct intel_display *display)
|
|
{
|
|
struct drm_i915_private *i915 = to_i915(display->drm);
|
|
|
|
return &i915->runtime_pm;
|
|
}
|
|
|
|
struct ref_tracker *intel_display_rpm_get_raw(struct intel_display *display)
|
|
{
|
|
return intel_runtime_pm_get_raw(display_to_rpm(display));
|
|
}
|
|
|
|
void intel_display_rpm_put_raw(struct intel_display *display, struct ref_tracker *wakeref)
|
|
{
|
|
intel_runtime_pm_put_raw(display_to_rpm(display), wakeref);
|
|
}
|
|
|
|
struct ref_tracker *intel_display_rpm_get(struct intel_display *display)
|
|
{
|
|
return intel_runtime_pm_get(display_to_rpm(display));
|
|
}
|
|
|
|
struct ref_tracker *intel_display_rpm_get_if_in_use(struct intel_display *display)
|
|
{
|
|
return intel_runtime_pm_get_if_in_use(display_to_rpm(display));
|
|
}
|
|
|
|
struct ref_tracker *intel_display_rpm_get_noresume(struct intel_display *display)
|
|
{
|
|
return intel_runtime_pm_get_noresume(display_to_rpm(display));
|
|
}
|
|
|
|
void intel_display_rpm_put(struct intel_display *display, struct ref_tracker *wakeref)
|
|
{
|
|
intel_runtime_pm_put(display_to_rpm(display), wakeref);
|
|
}
|
|
|
|
void intel_display_rpm_put_unchecked(struct intel_display *display)
|
|
{
|
|
intel_runtime_pm_put_unchecked(display_to_rpm(display));
|
|
}
|
|
|
|
bool intel_display_rpm_suspended(struct intel_display *display)
|
|
{
|
|
return intel_runtime_pm_suspended(display_to_rpm(display));
|
|
}
|
|
|
|
void assert_display_rpm_held(struct intel_display *display)
|
|
{
|
|
assert_rpm_wakelock_held(display_to_rpm(display));
|
|
}
|
|
|
|
void intel_display_rpm_assert_block(struct intel_display *display)
|
|
{
|
|
disable_rpm_wakeref_asserts(display_to_rpm(display));
|
|
}
|
|
|
|
void intel_display_rpm_assert_unblock(struct intel_display *display)
|
|
{
|
|
enable_rpm_wakeref_asserts(display_to_rpm(display));
|
|
}
|