Brooklyn/drivers/gpu/drm/i915/gt/uc/intel_guc_ads.h

20 lines
482 B
C
Raw Normal View History

2021-05-27 00:09:36 +05:00
/* SPDX-License-Identifier: MIT */
/*
* Copyright © 2014-2019 Intel Corporation
*/
#ifndef _INTEL_GUC_ADS_H_
#define _INTEL_GUC_ADS_H_
struct intel_guc;
2021-10-02 21:09:28 +05:00
struct drm_printer;
2021-05-27 00:09:36 +05:00
int intel_guc_ads_create(struct intel_guc *guc);
void intel_guc_ads_destroy(struct intel_guc *guc);
2021-10-02 21:09:28 +05:00
void intel_guc_ads_init_late(struct intel_guc *guc);
2021-05-27 00:09:36 +05:00
void intel_guc_ads_reset(struct intel_guc *guc);
2021-10-02 21:09:28 +05:00
void intel_guc_ads_print_policy_info(struct intel_guc *guc,
struct drm_printer *p);
2021-05-27 00:09:36 +05:00
#endif