Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
adam.huang
Arm Trusted Firmware
Commits
8eceb1c9
Commit
8eceb1c9
authored
5 years ago
by
Olivier Deprez
Committed by
TrustedFirmware Code Review
5 years ago
Browse files
Options
Download
Plain Diff
Merge "Create separate header for ARM specific SMCCC defines" into integration
parents
a7062b7d
53adebad
master
v2.5
v2.5-rc1
v2.5-rc0
v2.4
v2.4-rc2
v2.4-rc1
v2.4-rc0
v2.3
v2.3-rc2
v2.3-rc1
v2.3-rc0
arm_cca_v0.2
arm_cca_v0.1
No related merge requests found
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
include/plat/arm/common/arm_def.h
+1
-0
include/plat/arm/common/arm_def.h
include/plat/arm/common/plat_arm.h
+0
-5
include/plat/arm/common/plat_arm.h
include/plat/arm/common/smccc_def.h
+15
-0
include/plat/arm/common/smccc_def.h
plat/arm/board/a5ds/include/platform_def.h
+1
-0
plat/arm/board/a5ds/include/platform_def.h
plat/arm/board/corstone700/include/platform_def.h
+1
-1
plat/arm/board/corstone700/include/platform_def.h
plat/arm/board/fvp_ve/include/platform_def.h
+1
-0
plat/arm/board/fvp_ve/include/platform_def.h
plat/xilinx/versal/include/versal_def.h
+1
-0
plat/xilinx/versal/include/versal_def.h
plat/xilinx/zynqmp/include/zynqmp_def.h
+1
-0
plat/xilinx/zynqmp/include/zynqmp_def.h
with
21 additions
and
6 deletions
+21
-6
include/plat/arm/common/arm_def.h
View file @
8eceb1c9
...
...
@@ -12,6 +12,7 @@
#include <drivers/arm/gic_common.h>
#include <lib/utils_def.h>
#include <lib/xlat_tables/xlat_tables_defs.h>
#include <plat/arm/common/smccc_def.h>
#include <plat/common/common_def.h>
/******************************************************************************
...
...
This diff is collapsed.
Click to expand it.
include/plat/arm/common/plat_arm.h
View file @
8eceb1c9
...
...
@@ -148,11 +148,6 @@ void arm_setup_romlib(void);
#define ARM_ROTPK_DEVEL_RSA_ID 2
#define ARM_ROTPK_DEVEL_ECDSA_ID 3
/* Defines used to retrieve ARM SOC revision */
#define ARM_SOC_CONTINUATION_CODE U(0x4)
#define ARM_SOC_IDENTIFICATION_CODE U(0x3B)
#define ARM_SOC_CONTINUATION_SHIFT U(24)
#define ARM_SOC_IDENTIFICATION_SHIFT U(16)
/* IO storage utility functions */
int
arm_io_setup
(
void
);
...
...
This diff is collapsed.
Click to expand it.
include/plat/arm/common/smccc_def.h
0 → 100644
View file @
8eceb1c9
/*
* Copyright (c) 2020, ARM Limited and Contributors. All rights reserved.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
#ifndef SMCCC_DEF_H
#define SMCCC_DEF_H
/* Defines used to retrieve ARM SOC revision */
#define ARM_SOC_CONTINUATION_CODE U(0x4)
#define ARM_SOC_IDENTIFICATION_CODE U(0x3B)
#define ARM_SOC_CONTINUATION_SHIFT U(24)
#define ARM_SOC_IDENTIFICATION_SHIFT U(16)
#endif
/* SMCCC_DEF_H */
This diff is collapsed.
Click to expand it.
plat/arm/board/a5ds/include/platform_def.h
View file @
8eceb1c9
...
...
@@ -11,6 +11,7 @@
#include <lib/utils_def.h>
#include <lib/xlat_tables/xlat_tables_defs.h>
#include <plat/arm/board/common/v2m_def.h>
#include <plat/arm/common/smccc_def.h>
#include <plat/common/common_def.h>
/* Memory location options for TSP */
...
...
This diff is collapsed.
Click to expand it.
plat/arm/board/corstone700/include/platform_def.h
View file @
8eceb1c9
...
...
@@ -9,9 +9,9 @@
#include <lib/utils_def.h>
#include <lib/xlat_tables/xlat_tables_defs.h>
#include <plat/arm/board/common/v2m_def.h>
#include <plat/arm/common/arm_spm_def.h>
#include <plat/arm/common/smccc_def.h>
#include <plat/common/common_def.h>
/* PL011 UART related constants */
...
...
This diff is collapsed.
Click to expand it.
plat/arm/board/fvp_ve/include/platform_def.h
View file @
8eceb1c9
...
...
@@ -11,6 +11,7 @@
#include <lib/utils_def.h>
#include <lib/xlat_tables/xlat_tables_defs.h>
#include <plat/arm/board/common/v2m_def.h>
#include <plat/arm/common/smccc_def.h>
#include <plat/common/common_def.h>
#include "../fvp_ve_def.h"
...
...
This diff is collapsed.
Click to expand it.
plat/xilinx/versal/include/versal_def.h
View file @
8eceb1c9
...
...
@@ -7,6 +7,7 @@
#ifndef VERSAL_DEF_H
#define VERSAL_DEF_H
#include <plat/arm/common/smccc_def.h>
#include <plat/common/common_def.h>
/* List all consoles */
...
...
This diff is collapsed.
Click to expand it.
plat/xilinx/zynqmp/include/zynqmp_def.h
View file @
8eceb1c9
...
...
@@ -7,6 +7,7 @@
#ifndef ZYNQMP_DEF_H
#define ZYNQMP_DEF_H
#include <plat/arm/common/smccc_def.h>
#include <plat/common/common_def.h>
#define ZYNQMP_CONSOLE_ID_cadence 1
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment
Menu
Projects
Groups
Snippets
Help