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

Add display specific wrappers around the i915 and xe dedicated runtime PM interfaces. There are no conversions here, just the wrappers. Implement with_intel_display_rpm() without needing to provide a local variable, which neatly narrows the scope and hides the type of the wakeref cookie. Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com> Signed-off-by: Jani Nikula <jani.nikula@intel.com> Link: https://lore.kernel.org/r/086b312367fa0fbd8de92e9764117aa7ff4a8cc5.1742483007.git.jani.nikula@intel.com
37 lines
1.4 KiB
C
37 lines
1.4 KiB
C
/* SPDX-License-Identifier: MIT */
|
|
/* Copyright © 2025 Intel Corporation */
|
|
|
|
#ifndef __INTEL_DISPLAY_RPM__
|
|
#define __INTEL_DISPLAY_RPM__
|
|
|
|
#include <linux/types.h>
|
|
|
|
struct intel_display;
|
|
struct ref_tracker;
|
|
|
|
struct ref_tracker *intel_display_rpm_get(struct intel_display *display);
|
|
void intel_display_rpm_put(struct intel_display *display, struct ref_tracker *wakeref);
|
|
|
|
#define __with_intel_display_rpm(__display, __wakeref) \
|
|
for (struct ref_tracker *(__wakeref) = intel_display_rpm_get(__display); (__wakeref); \
|
|
intel_display_rpm_put((__display), (__wakeref)), (__wakeref) = NULL)
|
|
|
|
#define with_intel_display_rpm(__display) \
|
|
__with_intel_display_rpm((__display), __UNIQUE_ID(wakeref))
|
|
|
|
/* Only for special cases. */
|
|
bool intel_display_rpm_suspended(struct intel_display *display);
|
|
|
|
void assert_display_rpm_held(struct intel_display *display);
|
|
void intel_display_rpm_assert_block(struct intel_display *display);
|
|
void intel_display_rpm_assert_unblock(struct intel_display *display);
|
|
|
|
/* Only for display power implementation. */
|
|
struct ref_tracker *intel_display_rpm_get_raw(struct intel_display *display);
|
|
void intel_display_rpm_put_raw(struct intel_display *display, struct ref_tracker *wakeref);
|
|
|
|
struct ref_tracker *intel_display_rpm_get_if_in_use(struct intel_display *display);
|
|
struct ref_tracker *intel_display_rpm_get_noresume(struct intel_display *display);
|
|
void intel_display_rpm_put_unchecked(struct intel_display *display);
|
|
|
|
#endif /* __INTEL_DISPLAY_RPM__ */
|