1 /* SPDX-License-Identifier: MIT */ 2 /* 3 * Copyright 2026 Intel Corporation 4 */ 5 6 #ifndef __INTEL_DISPLAY_CLOCK_GATING_H__ 7 #define __INTEL_DISPLAY_CLOCK_GATING_H__ 8 9 struct intel_display; 10 11 void intel_display_skl_init_clock_gating(struct intel_display *display); 12 void intel_display_kbl_init_clock_gating(struct intel_display *display); 13 void intel_display_cfl_init_clock_gating(struct intel_display *display); 14 void intel_display_bxt_init_clock_gating(struct intel_display *display); 15 void intel_display_glk_init_clock_gating(struct intel_display *display); 16 void intel_display_bdw_clock_gating_disable_fbcq(struct intel_display *display); 17 void intel_display_bdw_clock_gating_vblank_in_srd(struct intel_display *display); 18 void intel_display_bdw_clock_gating_kvm_notif(struct intel_display *display); 19 void intel_display_hsw_init_clock_gating(struct intel_display *display); 20 void intel_display_disable_trickle_feed(struct intel_display *display); 21 void intel_display_ilk_init_clock_gating(struct intel_display *display); 22 void intel_display_gen6_init_clock_gating(struct intel_display *display); 23 void intel_display_ivb_init_clock_gating(struct intel_display *display); 24 void intel_display_g4x_init_clock_gating(struct intel_display *display); 25 void intel_display_i965gm_init_clock_gating(struct intel_display *display); 26 27 #endif /* __INTEL_DISPLAY_CLOCK_GATING_H__ */ 28