mirror of
https://github.com/torvalds/linux.git
synced 2026-04-20 07:43:57 -04:00
Add throttle reasons sysfs attributes under a separate directory. /device/tile<n>/gt<n>/freq0/throttle |- reason_pl1 |- reason_pl2 |- reason_pl4 |- reason_prochot |- reason_ratl |- reason_vr_tdc |- reason_vr_thermalert |- status v2: Remove unnecessary headers and clean-up action (Riana) Signed-off-by: Sujaritha Sundaresan <sujaritha.sundaresan@intel.com> Reviewed-by: Riana Tauro <riana.tauro@intel.com> Signed-off-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
17 lines
284 B
C
17 lines
284 B
C
/* SPDX-License-Identifier: MIT */
|
|
/*
|
|
* Copyright © 2023 Intel Corporation
|
|
*/
|
|
|
|
#ifndef _XE_GT_THROTTLE_SYSFS_H_
|
|
#define _XE_GT_THROTTLE_SYSFS_H_
|
|
|
|
#include <drm/drm_managed.h>
|
|
|
|
struct xe_gt;
|
|
|
|
void xe_gt_throttle_sysfs_init(struct xe_gt *gt);
|
|
|
|
#endif /* _XE_GT_THROTTLE_SYSFS_H_ */
|
|
|