Merge branch 'akpm' (patches from Andrew)
[linux/fpc-iii.git] / drivers / gpu / drm / i915 / display / intel_vdsc.h
blobe56a3254c21447eb87d64dd0cac15c31cb7c4e83
1 /* SPDX-License-Identifier: MIT */
2 /*
3 * Copyright © 2019 Intel Corporation
4 */
6 #ifndef __INTEL_VDSC_H__
7 #define __INTEL_VDSC_H__
9 #include <linux/types.h>
11 struct intel_encoder;
12 struct intel_crtc_state;
14 bool intel_dsc_source_support(struct intel_encoder *encoder,
15 const struct intel_crtc_state *crtc_state);
16 void intel_dsc_enable(struct intel_encoder *encoder,
17 const struct intel_crtc_state *crtc_state);
18 void intel_dsc_disable(const struct intel_crtc_state *crtc_state);
19 int intel_dsc_compute_params(struct intel_encoder *encoder,
20 struct intel_crtc_state *pipe_config);
21 void intel_dsc_get_config(struct intel_encoder *encoder,
22 struct intel_crtc_state *crtc_state);
23 enum intel_display_power_domain
24 intel_dsc_power_domain(const struct intel_crtc_state *crtc_state);
26 #endif /* __INTEL_VDSC_H__ */