On DG2, a w/a resets RCS/CCS before it goes into RC6. This breaks OA since OA does not expect engine resets during its use. Fix it by disabling RC6. v2: (Ashutosh) - Bring back slpc_unset_param helper - Update commit msg - Use with_intel_runtime_pm helper for set/unset v3: (Ashutosh) - Just use intel_uc_uses_guc_rc Signed-off-by: Vinay Belgaumkar <vinay.belgaumkar@intel.com> Signed-off-by: Umesh Nerlige Ramappa <umesh.nerlige.ramappa@intel.com> Reviewed-by: Ashutosh Dixit <ashutosh.dixit@intel.com> Signed-off-by: John Harrison <John.C.Harrison@Intel.com> Link: https://patchwork.freedesktop.org/patch/msgid/20221026222102.5526-15-umesh.nerlige.ramappa@intel.com
50 lines
1.7 KiB
C
50 lines
1.7 KiB
C
/* SPDX-License-Identifier: MIT */
|
|
/*
|
|
* Copyright © 2021 Intel Corporation
|
|
*/
|
|
|
|
#ifndef _INTEL_GUC_SLPC_H_
|
|
#define _INTEL_GUC_SLPC_H_
|
|
|
|
#include "intel_guc_submission.h"
|
|
#include "intel_guc_slpc_types.h"
|
|
|
|
#define SLPC_MAX_FREQ_MHZ 4250
|
|
|
|
struct intel_gt;
|
|
struct drm_printer;
|
|
|
|
static inline bool intel_guc_slpc_is_supported(struct intel_guc *guc)
|
|
{
|
|
return guc->slpc.supported;
|
|
}
|
|
|
|
static inline bool intel_guc_slpc_is_wanted(struct intel_guc *guc)
|
|
{
|
|
return guc->slpc.selected;
|
|
}
|
|
|
|
static inline bool intel_guc_slpc_is_used(struct intel_guc *guc)
|
|
{
|
|
return intel_guc_submission_is_used(guc) && intel_guc_slpc_is_wanted(guc);
|
|
}
|
|
|
|
void intel_guc_slpc_init_early(struct intel_guc_slpc *slpc);
|
|
|
|
int intel_guc_slpc_init(struct intel_guc_slpc *slpc);
|
|
int intel_guc_slpc_enable(struct intel_guc_slpc *slpc);
|
|
void intel_guc_slpc_fini(struct intel_guc_slpc *slpc);
|
|
int intel_guc_slpc_set_max_freq(struct intel_guc_slpc *slpc, u32 val);
|
|
int intel_guc_slpc_set_min_freq(struct intel_guc_slpc *slpc, u32 val);
|
|
int intel_guc_slpc_set_boost_freq(struct intel_guc_slpc *slpc, u32 val);
|
|
int intel_guc_slpc_get_max_freq(struct intel_guc_slpc *slpc, u32 *val);
|
|
int intel_guc_slpc_get_min_freq(struct intel_guc_slpc *slpc, u32 *val);
|
|
int intel_guc_slpc_print_info(struct intel_guc_slpc *slpc, struct drm_printer *p);
|
|
int intel_guc_slpc_set_media_ratio_mode(struct intel_guc_slpc *slpc, u32 val);
|
|
void intel_guc_pm_intrmsk_enable(struct intel_gt *gt);
|
|
void intel_guc_slpc_boost(struct intel_guc_slpc *slpc);
|
|
void intel_guc_slpc_dec_waiters(struct intel_guc_slpc *slpc);
|
|
int intel_guc_slpc_unset_gucrc_mode(struct intel_guc_slpc *slpc);
|
|
int intel_guc_slpc_override_gucrc_mode(struct intel_guc_slpc *slpc, u32 mode);
|
|
|
|
#endif
|