1 /* SPDX-License-Identifier: GPL-2.0-only */ 2 3 #ifndef FSP_DEBUG_EVENT_H 4 #define FSP_DEBUG_EVENT_H 5 6 /* 7 * This file to implement FSP_EVENT_HANDLER for Intel FSP to use. 8 * More details about this structure can be found here : 9 * http://github.com/tianocore/edk2/blob/master/IntelFsp2Pkg/Include/FspEas/FspApi.h 10 */ 11 #include <efi/efi_datatype.h> 12 #include <fsp/soc_binding.h> 13 14 /* fsp debug event handler */ 15 __efiapi efi_return_status_t fsp_debug_event_handler(efi_status_code_type_t ignored1, 16 efi_status_code_value_t ignored2, efi_uint32_t ignored3, efi_guid_t *ignored4, 17 efi_status_code_data_t *data); 18 19 #endif /* FSP_DEBUG_EVENT_H */ 20