xref: /linux/drivers/gpu/drm/i915/display/intel_casf.h (revision bba2c3615bd6cfee7456d1130f2e6b01b3f4e9ba)
1 /* SPDX-License-Identifier: MIT */
2 /*
3  * Copyright © 2025 Intel Corporation
4  */
5 
6 #ifndef __INTEL_CASF_H__
7 #define __INTEL_CASF_H__
8 
9 #include <linux/types.h>
10 
11 struct intel_crtc_state;
12 
13 int intel_casf_compute_config(struct intel_crtc_state *crtc_state);
14 void intel_casf_sharpness_get_config(struct intel_crtc_state *crtc_state);
15 void intel_casf_setup(const struct intel_crtc_state *crtc_state);
16 
17 #endif /* __INTEL_CASF_H__ */
18