xref: /linux/drivers/gpu/drm/i915/gt/uc/intel_huc_fw.h (revision 42874e4eb35bdfc54f8514685e50434098ba4f6c)
1 /* SPDX-License-Identifier: MIT */
2 /*
3  * Copyright © 2014-2019 Intel Corporation
4  */
5 
6 #ifndef _INTEL_HUC_FW_H_
7 #define _INTEL_HUC_FW_H_
8 
9 struct intel_huc;
10 struct intel_uc_fw;
11 
12 #include <linux/types.h>
13 
14 int intel_huc_fw_load_and_auth_via_gsc(struct intel_huc *huc);
15 int intel_huc_fw_auth_via_gsccs(struct intel_huc *huc);
16 int intel_huc_fw_upload(struct intel_huc *huc);
17 int intel_huc_fw_get_binary_info(struct intel_uc_fw *huc_fw, const void *data, size_t size);
18 #endif
19