Contributors: 14
Author Tokens Token Proportion Commits Commit Proportion
Jani Nikula 52 21.94% 8 18.60%
Ville Syrjälä 49 20.68% 10 23.26%
Maarten Lankhorst 43 18.14% 5 11.63%
Chandra Konduru 18 7.59% 1 2.33%
Jouni Högander 16 6.75% 1 2.33%
Ander Conselvan de Oliveira 16 6.75% 5 11.63%
Imre Deak 12 5.06% 3 6.98%
Manasi D Navare 12 5.06% 3 6.98%
Stanislav Lisovskiy 5 2.11% 1 2.33%
Eric Anholt 4 1.69% 1 2.33%
Daniel Vetter 3 1.27% 2 4.65%
Animesh Manna 3 1.27% 1 2.33%
Clint Taylor 2 0.84% 1 2.33%
Chris Wilson 2 0.84% 1 2.33%
Total 237 43


/* SPDX-License-Identifier: MIT */
/*
 * Copyright © 2019 Intel Corporation
 */

#ifndef __INTEL_VDSC_H__
#define __INTEL_VDSC_H__

#include <linux/types.h>

struct drm_printer;

enum transcoder;
struct intel_crtc;
struct intel_crtc_state;
struct intel_dsb;
struct intel_encoder;

bool intel_dsc_source_support(const struct intel_crtc_state *crtc_state);
void intel_uncompressed_joiner_enable(const struct intel_crtc_state *crtc_state);
void intel_dsc_enable(const struct intel_crtc_state *crtc_state);
void intel_dsc_disable(const struct intel_crtc_state *crtc_state);
int intel_dsc_compute_params(struct intel_crtc_state *pipe_config);
void intel_dsc_enable_on_crtc(struct intel_crtc_state *crtc_state);
bool intel_dsc_enabled_on_link(const struct intel_crtc_state *crtc_state);
void intel_dsc_get_config(struct intel_crtc_state *crtc_state);
enum intel_display_power_domain
intel_dsc_power_domain(struct intel_crtc *crtc, enum transcoder cpu_transcoder);
struct intel_crtc *intel_dsc_get_bigjoiner_secondary(const struct intel_crtc *primary_crtc);
int intel_dsc_get_num_vdsc_instances(const struct intel_crtc_state *crtc_state);
void intel_dsc_dsi_pps_write(struct intel_encoder *encoder,
			     const struct intel_crtc_state *crtc_state);
void intel_dsc_dp_pps_write(struct intel_encoder *encoder,
			    const struct intel_crtc_state *crtc_state);
void intel_dsc_su_et_parameters_configure(struct intel_dsb *dsb, struct intel_encoder *encoder,
					  const struct intel_crtc_state *crtc_state, int su_lines);
void intel_vdsc_state_dump(struct drm_printer *p, int indent,
			   const struct intel_crtc_state *crtc_state);
int intel_vdsc_min_cdclk(const struct intel_crtc_state *crtc_state);
unsigned int intel_vdsc_prefill_lines(const struct intel_crtc_state *crtc_state);

#endif /* __INTEL_VDSC_H__ */