mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-16 17:44:19 +00:00

The codebase was using non-standard headers. It is needed to replace them by the correct ones so that we can use the new libc headers. Change-Id: I530f71d9510cb036e69fe79823c8230afe890b9d Acked-by: Sumit Garg <sumit.garg@linaro.org> Signed-off-by: Antonio Nino Diaz <antonio.ninodiaz@arm.com>
37 lines
1 KiB
C
37 lines
1 KiB
C
/*
|
|
* Copyright (c) 2015-2018, ARM Limited and Contributors. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#ifndef _SC_SCFW_H
|
|
#define _SC_SCFW_H
|
|
|
|
/* Includes */
|
|
|
|
#include <stdint.h>
|
|
|
|
#ifdef __cplusplus
|
|
#define __I volatile /*!< Defines 'read only' permissions */
|
|
#else
|
|
#define __I volatile const /*!< Defines 'read only' permissions */
|
|
#endif
|
|
#define __O volatile /*!< Defines 'write only' permissions */
|
|
#define __IO volatile /*!< Defines 'read / write' permissions */
|
|
|
|
/*!
|
|
* This type is used to declare a handle for an IPC communication
|
|
* channel. Its meaning is specific to the IPC implementation.
|
|
*/
|
|
typedef uint64_t sc_ipc_t;
|
|
|
|
/*!
|
|
* This type is used to declare an ID for an IPC communication
|
|
* channel. For the reference IPC implementation, this ID
|
|
* selects the base address of the MU used for IPC.
|
|
*/
|
|
typedef uint64_t sc_ipc_id_t;
|
|
|
|
|
|
#endif /* _SC_SCFW_H */
|
|
|