mirror of
https://github.com/Dasharo/openSIL.git
synced 2026-03-06 14:55:09 -08:00
34 lines
719 B
C
34 lines
719 B
C
/**
|
|
* @file IPC.h
|
|
* @brief OpenSIL IPC functions prototype
|
|
*/
|
|
/* Copyright 2021-2023 Advanced Micro Devices, Inc. All rights reserved. */
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
#pragma once
|
|
|
|
#include <Sil-api.h>
|
|
|
|
/**********************************************************************************************************************
|
|
* @brief Declare common variables here
|
|
*
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
* @brief Declare function prototypes here
|
|
*
|
|
*/
|
|
|
|
SIL_STATUS SendIPCFromx86ToASP (int IPCCommand);
|
|
|
|
/**********************************************************************************************************************
|
|
* @brief Declare common macros here
|
|
*
|
|
*/
|
|
|
|
#define SEND_eSIM_HOB_BASE_ADDRESS 0xDEADBEEF
|
|
|
|
|