1 /* SPDX-License-Identifier: MIT */
2 /*
3  * Copyright © 2022 Intel Corporation
4  */
5 
6 #ifndef _INTEL_GSC_FW_H_
7 #define _INTEL_GSC_FW_H_
8 
9 #include <linux/types.h>
10 
11 struct intel_gsc_uc;
12 struct intel_uncore;
13 
14 int intel_gsc_uc_fw_upload(struct intel_gsc_uc *gsc);
15 bool intel_gsc_uc_fw_init_done(struct intel_gsc_uc *gsc);
16 bool intel_gsc_uc_fw_proxy_init_done(struct intel_gsc_uc *gsc);
17 
18 #endif
19