mirror of
https://github.com/torvalds/linux.git
synced 2026-04-18 14:53:58 -04:00
Currently we compute the min_cdclk for each pipe during intel_cdclk_atomic_check(). But that is too late for the pipe prefill vs. vblank length checks (done during intel_compute_global_watermarks). We can't just reorder these things due to other dependencies, so instead pull only the per-crtc minimum cdclk calculation ahead. We should have enough information for that as soon as we've computed the min cdclk for the planes. Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com> Link: https://patchwork.freedesktop.org/patch/msgid/20251013201236.30084-8-ville.syrjala@linux.intel.com Reviewed-by: Mika Kahola <mika.kahola@intel.com>
81 lines
3.5 KiB
C
81 lines
3.5 KiB
C
/* SPDX-License-Identifier: MIT */
|
|
/*
|
|
* Copyright © 2019 Intel Corporation
|
|
*/
|
|
|
|
#ifndef __INTEL_CDCLK_H__
|
|
#define __INTEL_CDCLK_H__
|
|
|
|
#include <linux/types.h>
|
|
|
|
enum pipe;
|
|
struct intel_atomic_state;
|
|
struct intel_cdclk_state;
|
|
struct intel_crtc;
|
|
struct intel_crtc_state;
|
|
struct intel_display;
|
|
|
|
struct intel_cdclk_config {
|
|
unsigned int cdclk, vco, ref, bypass;
|
|
u8 voltage_level;
|
|
/* This field is only valid for Xe2LPD and above. */
|
|
bool joined_mbus;
|
|
};
|
|
|
|
void intel_cdclk_init_hw(struct intel_display *display);
|
|
void intel_cdclk_uninit_hw(struct intel_display *display);
|
|
void intel_init_cdclk_hooks(struct intel_display *display);
|
|
void intel_update_max_cdclk(struct intel_display *display);
|
|
void intel_update_cdclk(struct intel_display *display);
|
|
u32 intel_read_rawclk(struct intel_display *display);
|
|
bool intel_cdclk_clock_changed(const struct intel_cdclk_config *a,
|
|
const struct intel_cdclk_config *b);
|
|
int intel_mdclk_cdclk_ratio(struct intel_display *display,
|
|
const struct intel_cdclk_config *cdclk_config);
|
|
bool intel_cdclk_is_decreasing_later(struct intel_atomic_state *state);
|
|
void intel_set_cdclk_pre_plane_update(struct intel_atomic_state *state);
|
|
void intel_set_cdclk_post_plane_update(struct intel_atomic_state *state);
|
|
void intel_cdclk_dump_config(struct intel_display *display,
|
|
const struct intel_cdclk_config *cdclk_config,
|
|
const char *context);
|
|
void intel_cdclk_get_cdclk(struct intel_display *display,
|
|
struct intel_cdclk_config *cdclk_config);
|
|
int intel_cdclk_atomic_check(struct intel_atomic_state *state);
|
|
int intel_cdclk_state_set_joined_mbus(struct intel_atomic_state *state, bool joined_mbus);
|
|
struct intel_cdclk_state *
|
|
intel_atomic_get_cdclk_state(struct intel_atomic_state *state);
|
|
void intel_cdclk_update_hw_state(struct intel_display *display);
|
|
void intel_cdclk_crtc_disable_noatomic(struct intel_crtc *crtc);
|
|
int intel_cdclk_update_dbuf_bw_min_cdclk(struct intel_atomic_state *state,
|
|
int old_min_cdclk, int new_min_cdclk,
|
|
bool *need_cdclk_calc);
|
|
|
|
#define to_intel_cdclk_state(global_state) \
|
|
container_of_const((global_state), struct intel_cdclk_state, base)
|
|
|
|
#define intel_atomic_get_old_cdclk_state(state) \
|
|
to_intel_cdclk_state(intel_atomic_get_old_global_obj_state(state, &to_intel_display(state)->cdclk.obj))
|
|
#define intel_atomic_get_new_cdclk_state(state) \
|
|
to_intel_cdclk_state(intel_atomic_get_new_global_obj_state(state, &to_intel_display(state)->cdclk.obj))
|
|
|
|
int intel_cdclk_init(struct intel_display *display);
|
|
void intel_cdclk_debugfs_register(struct intel_display *display);
|
|
|
|
int intel_cdclk_logical(const struct intel_cdclk_state *cdclk_state);
|
|
int intel_cdclk_actual(const struct intel_cdclk_state *cdclk_state);
|
|
int intel_cdclk_actual_voltage_level(const struct intel_cdclk_state *cdclk_state);
|
|
int intel_cdclk_min_cdclk(const struct intel_cdclk_state *cdclk_state, enum pipe pipe);
|
|
bool intel_cdclk_pmdemand_needs_update(struct intel_atomic_state *state);
|
|
void intel_cdclk_force_min_cdclk(struct intel_cdclk_state *cdclk_state, int force_min_cdclk);
|
|
void intel_cdclk_read_hw(struct intel_display *display);
|
|
|
|
unsigned int intel_cdclk_prefill_adjustment(const struct intel_crtc_state *crtc_state);
|
|
unsigned int intel_cdclk_prefill_adjustment_worst(const struct intel_crtc_state *crtc_state);
|
|
int intel_cdclk_min_cdclk_for_prefill(const struct intel_crtc_state *crtc_state,
|
|
unsigned int prefill_lines_unadjusted,
|
|
unsigned int prefill_lines_available);
|
|
|
|
int intel_crtc_min_cdclk(const struct intel_crtc_state *crtc_state);
|
|
|
|
#endif /* __INTEL_CDCLK_H__ */
|