i915_freq.h 358 B

12345678910111213
  1. /* SPDX-License-Identifier: MIT */
  2. /* Copyright © 2025 Intel Corporation */
  3. #ifndef __I915_FREQ_H__
  4. #define __I915_FREQ_H__
  5. struct drm_i915_private;
  6. unsigned int i9xx_fsb_freq(struct drm_i915_private *i915);
  7. unsigned int ilk_fsb_freq(struct drm_i915_private *i915);
  8. unsigned int ilk_mem_freq(struct drm_i915_private *i915);
  9. #endif /* __I915_FREQ_H__ */