Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v5.15 27 lines 1.0 kB view raw
1/* SPDX-License-Identifier: MIT */ 2/* 3 * Copyright © 2019 Intel Corporation 4 */ 5 6#ifndef __INTEL_VDSC_H__ 7#define __INTEL_VDSC_H__ 8 9#include <linux/types.h> 10 11struct intel_encoder; 12struct intel_crtc_state; 13 14bool intel_dsc_source_support(const struct intel_crtc_state *crtc_state); 15void intel_uncompressed_joiner_enable(const struct intel_crtc_state *crtc_state); 16void intel_dsc_enable(struct intel_encoder *encoder, 17 const struct intel_crtc_state *crtc_state); 18void intel_dsc_disable(const struct intel_crtc_state *crtc_state); 19int intel_dsc_compute_params(struct intel_encoder *encoder, 20 struct intel_crtc_state *pipe_config); 21void intel_uncompressed_joiner_get_config(struct intel_crtc_state *crtc_state); 22void intel_dsc_get_config(struct intel_crtc_state *crtc_state); 23enum intel_display_power_domain 24intel_dsc_power_domain(const struct intel_crtc_state *crtc_state); 25struct intel_crtc *intel_dsc_get_bigjoiner_secondary(const struct intel_crtc *primary_crtc); 26 27#endif /* __INTEL_VDSC_H__ */