xref: /openbsd-src/sys/dev/pci/drm/i915/intel_clock_gating.h (revision f005ef32267c16bdb134f0e9fa4477dbe07c263a)
1*f005ef32Sjsg /* SPDX-License-Identifier: MIT */
2*f005ef32Sjsg /*
3*f005ef32Sjsg  * Copyright © 2019 Intel Corporation
4*f005ef32Sjsg  */
5*f005ef32Sjsg 
6*f005ef32Sjsg #ifndef __INTEL_CLOCK_GATING_H__
7*f005ef32Sjsg #define __INTEL_CLOCK_GATING_H__
8*f005ef32Sjsg 
9*f005ef32Sjsg struct drm_i915_private;
10*f005ef32Sjsg 
11*f005ef32Sjsg void intel_clock_gating_init(struct drm_i915_private *i915);
12*f005ef32Sjsg void intel_clock_gating_hooks_init(struct drm_i915_private *i915);
13*f005ef32Sjsg 
14*f005ef32Sjsg #endif /* __INTEL_CLOCK_GATING_H__ */
15