mirror of
https://github.com/torvalds/linux.git
synced 2026-05-26 08:02:27 +02:00
The pre_plane_update and post_plane_update hooks essentially
disable/enable lobf feature. Use the existing _is_enabling/is_disabling
logic for this in the pre_plane_update and post_plane_update paths.
Also rename the helpers to intel_alpm_lobf_{en,dis}able().
v2: Remove redeundant checks during enabling/disabling. (Jouni)
Signed-off-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
Reviewed-by: Michał Grzelak <michal.grzelak@intel.com>
Reviewed-by: Jouni Högander <jouni.hogander@intel.com>
Link: https://patch.msgid.link/20260204050250.762718-5-ankit.k.nautiyal@intel.com
43 lines
1.6 KiB
C
43 lines
1.6 KiB
C
/* SPDX-License-Identifier: MIT */
|
|
/*
|
|
* Copyright © 2024 Intel Corporation
|
|
*/
|
|
|
|
#ifndef _INTEL_ALPM_H
|
|
#define _INTEL_ALPM_H
|
|
|
|
#include <linux/types.h>
|
|
|
|
struct intel_dp;
|
|
struct intel_crtc_state;
|
|
struct drm_connector_state;
|
|
struct intel_connector;
|
|
struct intel_atomic_state;
|
|
struct intel_crtc;
|
|
|
|
void intel_alpm_init(struct intel_dp *intel_dp);
|
|
bool intel_alpm_compute_params(struct intel_dp *intel_dp,
|
|
struct intel_crtc_state *crtc_state);
|
|
void intel_alpm_lobf_compute_config(struct intel_dp *intel_dp,
|
|
struct intel_crtc_state *crtc_state,
|
|
struct drm_connector_state *conn_state);
|
|
void intel_alpm_configure(struct intel_dp *intel_dp,
|
|
const struct intel_crtc_state *crtc_state);
|
|
void intel_alpm_enable_sink(struct intel_dp *intel_dp,
|
|
const struct intel_crtc_state *crtc_state);
|
|
void intel_alpm_lobf_disable(const struct intel_crtc_state *new_crtc_state);
|
|
void intel_alpm_port_configure(struct intel_dp *intel_dp,
|
|
const struct intel_crtc_state *crtc_state);
|
|
void intel_alpm_lobf_enable(const struct intel_crtc_state *new_crtc_state);
|
|
void intel_alpm_lobf_debugfs_add(struct intel_connector *connector);
|
|
bool intel_alpm_aux_wake_supported(struct intel_dp *intel_dp);
|
|
bool intel_alpm_aux_less_wake_supported(struct intel_dp *intel_dp);
|
|
bool intel_alpm_is_alpm_aux_less(struct intel_dp *intel_dp,
|
|
const struct intel_crtc_state *crtc_state);
|
|
void intel_alpm_disable(struct intel_dp *intel_dp);
|
|
bool intel_alpm_get_error(struct intel_dp *intel_dp);
|
|
void intel_alpm_lobf_compute_config_late(struct intel_dp *intel_dp,
|
|
struct intel_crtc_state *crtc_state);
|
|
int intel_alpm_lobf_min_guardband(struct intel_crtc_state *crtc_state);
|
|
#endif
|