mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-17 01:54:22 +00:00

diphda platform is now being renamed to corstone1000. These changes are to replace all the instances and traces of diphda corstone1000. Change-Id: I330f3a112d232b99b4721b6bf0236253b068dbba Signed-off-by: Arpita S.K <Arpita.S.K@arm.com> Signed-off-by: Vishnu Banavath <vishnu.banavath@arm.com>
33 lines
873 B
ArmAsm
33 lines
873 B
ArmAsm
/*
|
|
* Copyright (c) 2021-2022, ARM Limited. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
/* corstone1000 platform provides custom values for the macros defined in
|
|
* arm_def.h , so only platform_def.h needs to be included
|
|
*/
|
|
#if !defined(TARGET_PLATFORM_FVP) && !defined(TARGET_PLATFORM_FPGA)
|
|
#include "plat/arm/common/arm_def.h"
|
|
#else
|
|
#include <platform_def.h>
|
|
#endif
|
|
|
|
.global arm_rotpk_header
|
|
.global arm_rotpk_header_end
|
|
.section .rodata.arm_rotpk_hash, "a"
|
|
|
|
arm_rotpk_header:
|
|
.byte 0x30, 0x31, 0x30, 0x0D, 0x06, 0x09, 0x60, 0x86, 0x48
|
|
.byte 0x01, 0x65, 0x03, 0x04, 0x02, 0x01, 0x05, 0x00, 0x04, 0x20
|
|
arm_rotpk_header_len:
|
|
|
|
#ifdef ARM_ROTPK_HASH
|
|
.global arm_rotpk_hash_end
|
|
.incbin ARM_ROTPK_HASH
|
|
arm_rotpk_hash_end:
|
|
#endif
|
|
|
|
.if ARM_ROTPK_HEADER_LEN != arm_rotpk_header_len - arm_rotpk_header
|
|
.error "Invalid ROTPK header length."
|
|
.endif
|