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 13 int intel_gsc_uc_fw_upload(struct intel_gsc_uc *gsc); 14 bool intel_gsc_uc_fw_init_done(struct intel_gsc_uc *gsc); 15 #endif 16