1 /* SPDX-License-Identifier: MIT */ 2 /* 3 * Copyright © 2021 Intel Corporation 4 */ 5 6 #ifndef _INTEL_PCH_DISPLAY_H_ 7 #define _INTEL_PCH_DISPLAY_H_ 8 9 struct intel_atomic_state; 10 struct intel_crtc; 11 struct intel_crtc_state; 12 13 void ilk_pch_enable(struct intel_atomic_state *state, 14 struct intel_crtc *crtc); 15 void ilk_pch_disable(struct intel_atomic_state *state, 16 struct intel_crtc *crtc); 17 void ilk_pch_post_disable(struct intel_atomic_state *state, 18 struct intel_crtc *crtc); 19 void ilk_pch_get_config(struct intel_crtc_state *crtc_state); 20 21 void lpt_pch_enable(struct intel_atomic_state *state, 22 struct intel_crtc *crtc); 23 void lpt_pch_disable(struct intel_atomic_state *state, 24 struct intel_crtc *crtc); 25 void lpt_pch_get_config(struct intel_crtc_state *crtc_state); 26 27 #endif 28