21 lines · c
1/* SPDX-License-Identifier: MIT */2/*3 * Copyright © 2019 Intel Corporation4 */5 6#ifndef INTEL_GT_PM_DEBUGFS_H7#define INTEL_GT_PM_DEBUGFS_H8 9struct intel_gt;10struct dentry;11struct drm_printer;12 13void intel_gt_pm_debugfs_register(struct intel_gt *gt, struct dentry *root);14void intel_gt_pm_frequency_dump(struct intel_gt *gt, struct drm_printer *m);15 16/* functions that need to be accessed by the upper level non-gt interfaces */17void intel_gt_pm_debugfs_forcewake_user_open(struct intel_gt *gt);18void intel_gt_pm_debugfs_forcewake_user_release(struct intel_gt *gt);19 20#endif /* INTEL_GT_PM_DEBUGFS_H */21