TF-A Tests: Pick up changes from TF-A code base
This patch pick up the following changes from TF-A:
- Fix for SCTLR bit definitions in 'include/lib/aarch64/arch.h`
- Introduction of 128-bit integer types int128_t and uint128_t
in 'include/lib/libc/aarch64/stdint.h_`
Signed-off-by: Alexei Fedorov <Alexei.Fedorov@arm.com>
Change-Id: I7e7b1b6d8f79eeb6b16df2ce2bea07c5748d1216
diff --git a/include/lib/libc/aarch64/stdint_.h b/include/lib/libc/aarch64/stdint_.h
index b99be30..b17a435 100644
--- a/include/lib/libc/aarch64/stdint_.h
+++ b/include/lib/libc/aarch64/stdint_.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2018, ARM Limited and Contributors. All rights reserved.
+ * Copyright (c) 2018-2019, ARM Limited and Contributors. All rights reserved.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
@@ -116,3 +116,6 @@
typedef long register_t;
typedef unsigned long u_register_t;
+
+typedef __int128 int128_t;
+typedef unsigned __int128 uint128_t;