2020-04-17 15:20:17 +00:00
|
|
|
/* SPDX-License-Identifier: MIT */
|
|
|
|
/*
|
|
|
|
* Copyright © 2020 Intel Corporation
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef SELFTEST_LIBRAPL_H
|
|
|
|
#define SELFTEST_LIBRAPL_H
|
|
|
|
|
|
|
|
#include <linux/types.h>
|
|
|
|
|
2021-04-12 09:05:09 +00:00
|
|
|
struct drm_i915_private;
|
|
|
|
|
|
|
|
bool librapl_supported(const struct drm_i915_private *i915);
|
|
|
|
|
2020-04-17 15:20:17 +00:00
|
|
|
u64 librapl_energy_uJ(void);
|
|
|
|
|
|
|
|
#endif /* SELFTEST_LIBRAPL_H */
|