xref: /linux/drivers/gpu/drm/i915/display/intel_display_clock_gating.h (revision fa00ae490cc5eba9cacd7c65f4243e9da6b2c8ae)
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