Loading...
Note: File does not exist in v4.6.
1/* SPDX-License-Identifier: MIT */
2/*
3 * Copyright © 2019 Intel Corporation
4 */
5
6#ifndef __INTEL_VDSC_H__
7#define __INTEL_VDSC_H__
8
9struct intel_encoder;
10struct intel_crtc_state;
11struct intel_dp;
12
13void intel_dsc_enable(struct intel_encoder *encoder,
14 const struct intel_crtc_state *crtc_state);
15void intel_dsc_disable(const struct intel_crtc_state *crtc_state);
16int intel_dp_compute_dsc_params(struct intel_dp *intel_dp,
17 struct intel_crtc_state *pipe_config);
18enum intel_display_power_domain
19intel_dsc_power_domain(const struct intel_crtc_state *crtc_state);
20
21#endif /* __INTEL_VDSC_H__ */