mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-08-18 10:27:06 +02:00
Create a common directory and move the header and assembly files so that the common code can be used by both Renesas R-Car Gen3 and RZ/G2 platforms. Signed-off-by: Biju Das <biju.das.jz@bp.renesas.com> Reviewed-by: Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com> Change-Id: Ia9a563a1c3c9f8c6f0d3cb82622deb2e155d7f6c
18 lines
380 B
C
18 lines
380 B
C
/*
|
|
* Copyright (c) 2015-2020, Renesas Electronics Corporation. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#ifndef RCAR_VERSION_H
|
|
#define RCAR_VERSION_H
|
|
|
|
#include <arch_helpers.h>
|
|
|
|
#define VERSION_OF_RENESAS "2.0.6"
|
|
#define VERSION_OF_RENESAS_MAXLEN 128
|
|
|
|
extern const uint8_t version_of_renesas[VERSION_OF_RENESAS_MAXLEN];
|
|
|
|
#endif /* RCAR_VERSION_H */
|