2023-08-30 16:31:07 +01:00
|
|
|
/* SPDX-License-Identifier: MIT */
|
|
|
|
/*
|
|
|
|
* Copyright © 2022 Intel Corporation
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _INTEL_GSC_FW_H_
|
|
|
|
#define _INTEL_GSC_FW_H_
|
|
|
|
|
|
|
|
#include <linux/types.h>
|
|
|
|
|
|
|
|
struct intel_gsc_uc;
|
2023-10-24 11:59:35 +01:00
|
|
|
struct intel_uncore;
|
2023-08-30 16:31:07 +01:00
|
|
|
|
|
|
|
int intel_gsc_uc_fw_upload(struct intel_gsc_uc *gsc);
|
|
|
|
bool intel_gsc_uc_fw_init_done(struct intel_gsc_uc *gsc);
|
2023-10-24 11:59:35 +01:00
|
|
|
bool intel_gsc_uc_fw_proxy_init_done(struct intel_gsc_uc *gsc);
|
|
|
|
|
2023-08-30 16:31:07 +01:00
|
|
|
#endif
|