28 lines · c
1/* SPDX-License-Identifier: MIT */2/*3 * Copyright © 2020 Intel Corporation4 */5 6#ifndef __INTEL_GT_CLOCK_UTILS_H__7#define __INTEL_GT_CLOCK_UTILS_H__8 9#include <linux/types.h>10 11struct intel_gt;12 13void intel_gt_init_clock_frequency(struct intel_gt *gt);14 15#if IS_ENABLED(CONFIG_DRM_I915_DEBUG_GEM)16void intel_gt_check_clock_frequency(const struct intel_gt *gt);17#else18static inline void intel_gt_check_clock_frequency(const struct intel_gt *gt) {}19#endif20 21u64 intel_gt_clock_interval_to_ns(const struct intel_gt *gt, u64 count);22u64 intel_gt_pm_interval_to_ns(const struct intel_gt *gt, u64 count);23 24u64 intel_gt_ns_to_clock_interval(const struct intel_gt *gt, u64 ns);25u64 intel_gt_ns_to_pm_interval(const struct intel_gt *gt, u64 ns);26 27#endif /* __INTEL_GT_CLOCK_UTILS_H__ */28