mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git/
synced 2026-04-17 22:23:45 -04:00
Currently ALPM parameters are computed directly into
intel_dp->alpm_parameters. This is a problem when compute config ends up to
not using the computed state.
Fix this by adding ALPM parameters into intel_crtc_state and compute into
there. Copy needed parameters (io_wake_lines and fast_wake_lines used by
PSR activate/exit) from crtc_state->alpm_state into
intel_dp->alpm.alpm_parameters when they are configured into HW.
v3:
- enhance commit message
v2:
- store io/fast wake lines into intel_dp->dp instead of
intel_dp->alpm_parameters and do it in intel_psr_enable_locked
- rename crtc_state->alpm_parameters -> crtc_state->alpm_state
- clarify commit message
Signed-off-by: Jouni Högander <jouni.hogander@intel.com>
Reviewed-by: Animesh Manna <animesh.manna@intel.com>
Link: https://lore.kernel.org/r/20250929130003.28365-1-jouni.hogander@intel.com
42 lines
1.5 KiB
C
42 lines
1.5 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_pre_plane_update(struct intel_atomic_state *state,
|
|
struct intel_crtc *crtc);
|
|
void intel_alpm_port_configure(struct intel_dp *intel_dp,
|
|
const struct intel_crtc_state *crtc_state);
|
|
void intel_alpm_post_plane_update(struct intel_atomic_state *state,
|
|
struct intel_crtc *crtc);
|
|
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);
|
|
#endif
|