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 16 #endif /* __INTEL_DISPLAY_CLOCK_GATING_H__ */ 17