blob: 53b0ecb95440e88172e707fb46a61cd3a1b18fd1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/* SPDX-License-Identifier: MIT */
/* Copyright © 2025 Intel Corporation */
#ifndef __I915_FREQ_H__
#define __I915_FREQ_H__
struct drm_i915_private;
unsigned int i9xx_fsb_freq(struct drm_i915_private *i915);
unsigned int ilk_fsb_freq(struct drm_i915_private *i915);
unsigned int ilk_mem_freq(struct drm_i915_private *i915);
#endif /* __I915_FREQ_H__ */
|