mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-22 09:19:56 +07:00
65f6d12c6b
Quite simply we only need to check for prior corruption on enabling rc6 on module load and resume, so by hooking into the common entry points. Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk> Acked-by: Andi Shyti <andi.shyti@intel.com> Link: https://patchwork.freedesktop.org/patch/msgid/20191202110836.2342685-2-chris@chris-wilson.co.uk
29 lines
671 B
C
29 lines
671 B
C
/*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
* Copyright © 2019 Intel Corporation
|
|
*/
|
|
|
|
#ifndef INTEL_RC6_H
|
|
#define INTEL_RC6_H
|
|
|
|
#include "i915_reg.h"
|
|
|
|
struct intel_engine_cs;
|
|
struct intel_rc6;
|
|
|
|
void intel_rc6_init(struct intel_rc6 *rc6);
|
|
void intel_rc6_fini(struct intel_rc6 *rc6);
|
|
|
|
void intel_rc6_unpark(struct intel_rc6 *rc6);
|
|
void intel_rc6_park(struct intel_rc6 *rc6);
|
|
|
|
void intel_rc6_sanitize(struct intel_rc6 *rc6);
|
|
void intel_rc6_enable(struct intel_rc6 *rc6);
|
|
void intel_rc6_disable(struct intel_rc6 *rc6);
|
|
|
|
u64 intel_rc6_residency_ns(struct intel_rc6 *rc6, i915_reg_t reg);
|
|
u64 intel_rc6_residency_us(struct intel_rc6 *rc6, i915_reg_t reg);
|
|
|
|
#endif /* INTEL_RC6_H */
|