1 /* SPDX-License-Identifier: MIT */ 2 /* 3 * Copyright © 2019 Intel Corporation 4 */ 5 6 #ifndef __INTEL_PSR_H__ 7 #define __INTEL_PSR_H__ 8 9 #include <linux/types.h> 10 11 enum fb_op_origin; 12 struct drm_connector; 13 struct drm_connector_state; 14 struct drm_i915_private; 15 struct intel_atomic_state; 16 struct intel_connector; 17 struct intel_crtc; 18 struct intel_crtc_state; 19 struct intel_dp; 20 struct intel_encoder; 21 struct intel_plane; 22 struct intel_plane_state; 23 24 #define CAN_PSR(intel_dp) ((intel_dp)->psr.sink_support && \ 25 (intel_dp)->psr.source_support) 26 27 #define CAN_PANEL_REPLAY(intel_dp) ((intel_dp)->psr.sink_panel_replay_support && \ 28 (intel_dp)->psr.source_panel_replay_support) 29 30 bool intel_encoder_can_psr(struct intel_encoder *encoder); 31 void intel_psr_init_dpcd(struct intel_dp *intel_dp); 32 void intel_psr_pre_plane_update(struct intel_atomic_state *state, 33 struct intel_crtc *crtc); 34 void intel_psr_post_plane_update(struct intel_atomic_state *state, 35 struct intel_crtc *crtc); 36 void intel_psr_disable(struct intel_dp *intel_dp, 37 const struct intel_crtc_state *old_crtc_state); 38 int intel_psr_debug_set(struct intel_dp *intel_dp, u64 value); 39 void intel_psr_invalidate(struct drm_i915_private *dev_priv, 40 unsigned frontbuffer_bits, 41 enum fb_op_origin origin); 42 void intel_psr_flush(struct drm_i915_private *dev_priv, 43 unsigned frontbuffer_bits, 44 enum fb_op_origin origin); 45 void intel_psr_init(struct intel_dp *intel_dp); 46 void intel_psr_compute_config(struct intel_dp *intel_dp, 47 struct intel_crtc_state *crtc_state, 48 struct drm_connector_state *conn_state); 49 void intel_psr_get_config(struct intel_encoder *encoder, 50 struct intel_crtc_state *pipe_config); 51 void intel_psr_irq_handler(struct intel_dp *intel_dp, u32 psr_iir); 52 void intel_psr_short_pulse(struct intel_dp *intel_dp); 53 void intel_psr_wait_for_idle_locked(const struct intel_crtc_state *new_crtc_state); 54 bool intel_psr_enabled(struct intel_dp *intel_dp); 55 int intel_psr2_sel_fetch_update(struct intel_atomic_state *state, 56 struct intel_crtc *crtc); 57 void intel_psr2_program_trans_man_trk_ctl(const struct intel_crtc_state *crtc_state); 58 void intel_psr_pause(struct intel_dp *intel_dp); 59 void intel_psr_resume(struct intel_dp *intel_dp); 60 61 void intel_psr_lock(const struct intel_crtc_state *crtc_state); 62 void intel_psr_unlock(const struct intel_crtc_state *crtc_state); 63 void intel_psr_connector_debugfs_add(struct intel_connector *connector); 64 void intel_psr_debugfs_register(struct drm_i915_private *i915); 65 66 #endif /* __INTEL_PSR_H__ */ 67