Clean up the SPDX licence declarations to comply with checkpatch. Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk> Reviewed-by: Michal Wajdeczko <michal.wajdeczko@intel.com> Link: https://patchwork.freedesktop.org/patch/msgid/20210122192913.4518-1-chris@chris-wilson.co.uk Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
28 lines
671 B
C
28 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 */
|