mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-05-01 16:13:16 +00:00

Add support for multiple Cryptocell revisions which use different APIs. This commit only refactors the existing code in preperation to the addition of another Cryptocell revisions later on. Signed-off-by: Gilad Ben-Yossef <gilad.benyossef@arm.com> Change-Id: I16d80b31afb6edd56dc645fee5ea619cc74f09b6
33 lines
643 B
C
33 lines
643 B
C
/*
|
|
* Copyright (c) 2017, ARM Limited and Contributors. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
/*!
|
|
@file
|
|
@brief This file contains the platform-dependent definitions that are used in the SBROM code.
|
|
*/
|
|
|
|
#ifndef _CC_PAL_SB_PLAT_H
|
|
#define _CC_PAL_SB_PLAT_H
|
|
|
|
#include "cc_pal_types.h"
|
|
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
{
|
|
#endif
|
|
|
|
/*! Definition of DMA address type, can be 32 bits or 64 bits according to CryptoCell's HW. */
|
|
typedef uint64_t CCDmaAddr_t;
|
|
/*! Definition of CryptoCell address type, can be 32 bits or 64 bits according to platform. */
|
|
typedef uintptr_t CCAddr_t;
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|