mirror of
https://github.com/torvalds/linux.git
synced 2026-05-02 13:32:40 -04:00
Mask the ERR_FATAL_MASK before scaler initialization.
After enabling the scaler and waiting for one frame,
unmask the previously masked bits, PS_ECC and
ERR_FATAL_MASK
Unmasking of ERR_FATAL_MASK bit is use for
validation purpose. There is no functional
impact.
v2: Remove intel_display_need_wa[Jani]
Optimize the ecc_unmask call[Animesh]
v3: Add intel_display_wa[Jani]
Signed-off-by: Nemesa Garg <nemesa.garg@intel.com>
Reviewed-by: Animesh Manna <animesh.manna@intel.com>
Signed-off-by: Suraj Kandpal <suraj.kandpal@intel.com>
Link: https://lore.kernel.org/r/20250801125835.2337614-1-nemesa.garg@intel.com
49 lines
1.4 KiB
C
49 lines
1.4 KiB
C
/* SPDX-License-Identifier: MIT */
|
|
/*
|
|
* Copyright © 2020 Intel Corporation
|
|
*/
|
|
#ifndef INTEL_SCALER_H
|
|
#define INTEL_SCALER_H
|
|
|
|
enum drm_mode_status;
|
|
struct drm_display_mode;
|
|
struct intel_atomic_state;
|
|
struct intel_crtc;
|
|
struct intel_crtc_state;
|
|
struct intel_display;
|
|
struct intel_dsb;
|
|
enum intel_output_format;
|
|
struct intel_plane;
|
|
struct intel_plane_state;
|
|
|
|
int skl_update_scaler_crtc(struct intel_crtc_state *crtc_state);
|
|
|
|
int skl_update_scaler_plane(struct intel_crtc_state *crtc_state,
|
|
struct intel_plane_state *plane_state);
|
|
|
|
int intel_atomic_setup_scalers(struct intel_atomic_state *state,
|
|
struct intel_crtc *crtc);
|
|
|
|
void skl_pfit_enable(const struct intel_crtc_state *crtc_state);
|
|
|
|
void skl_program_plane_scaler(struct intel_dsb *dsb,
|
|
struct intel_plane *plane,
|
|
const struct intel_crtc_state *crtc_state,
|
|
const struct intel_plane_state *plane_state);
|
|
void skl_detach_scalers(struct intel_dsb *dsb,
|
|
const struct intel_crtc_state *crtc_state);
|
|
void skl_scaler_disable(const struct intel_crtc_state *old_crtc_state);
|
|
|
|
void skl_scaler_get_config(struct intel_crtc_state *crtc_state);
|
|
|
|
enum drm_mode_status
|
|
skl_scaler_mode_valid(struct intel_display *display,
|
|
const struct drm_display_mode *mode,
|
|
enum intel_output_format output_format,
|
|
int num_joined_pipes);
|
|
|
|
void adl_scaler_ecc_mask(const struct intel_crtc_state *crtc_state);
|
|
|
|
void adl_scaler_ecc_unmask(const struct intel_crtc_state *crtc_state);
|
|
#endif
|