Skip to content
GitLab
Menu
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
8a08e272
Unverified
Commit
8a08e272
authored
Apr 04, 2019
by
Antonio Niño Díaz
Committed by
GitHub
Apr 04, 2019
Browse files
Merge pull request #1920 from ambroise-arm/av/deprecated
Remove deprecated interfaces
parents
682c307d
6e756f6d
Changes
48
Hide whitespace changes
Inline
Side-by-side
plat/nvidia/tegra/soc/t132/plat_setup.c
View file @
8a08e272
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
#include <arch_helpers.h>
#include <arch_helpers.h>
#include <common/bl_common.h>
#include <common/bl_common.h>
#include <lib/xlat_tables/xlat_tables_v2.h>
#include <lib/xlat_tables/xlat_tables_v2.h>
#include <platform.h>
#include <
plat/common/
platform.h>
#include <tegra_def.h>
#include <tegra_def.h>
#include <tegra_private.h>
#include <tegra_private.h>
...
...
plat/nvidia/tegra/soc/t210/drivers/se/security_engine.c
View file @
8a08e272
...
@@ -8,10 +8,10 @@
...
@@ -8,10 +8,10 @@
#include <arch_helpers.h>
#include <arch_helpers.h>
#include <assert.h>
#include <assert.h>
#include <common/debug.h>
#include <common/debug.h>
#include <delay_timer.h>
#include <
drivers/
delay_timer.h>
#include <errno.h>
#include <errno.h>
#include <mmio.h>
#include <
lib/
mmio.h>
#include <psci.h>
#include <
lib/psci/
psci.h>
#include <se_private.h>
#include <se_private.h>
#include <security_engine.h>
#include <security_engine.h>
#include <tegra_platform.h>
#include <tegra_platform.h>
...
...
plat/nvidia/tegra/soc/t210/plat_psci_handlers.c
View file @
8a08e272
...
@@ -15,6 +15,7 @@
...
@@ -15,6 +15,7 @@
#include <bpmp.h>
#include <bpmp.h>
#include <flowctrl.h>
#include <flowctrl.h>
#include <lib/utils.h>
#include <memctrl.h>
#include <memctrl.h>
#include <pmc.h>
#include <pmc.h>
#include <platform_def.h>
#include <platform_def.h>
...
@@ -22,7 +23,6 @@
...
@@ -22,7 +23,6 @@
#include <tegra_def.h>
#include <tegra_def.h>
#include <tegra_private.h>
#include <tegra_private.h>
#include <tegra_platform.h>
#include <tegra_platform.h>
#include <utils.h>
/*
/*
* Register used to clear CPU reset signals. Each CPU has two reset
* Register used to clear CPU reset signals. Each CPU has two reset
...
...
plat/nvidia/tegra/soc/t210/plat_setup.c
View file @
8a08e272
...
@@ -19,7 +19,7 @@
...
@@ -19,7 +19,7 @@
#include <bpmp.h>
#include <bpmp.h>
#include <flowctrl.h>
#include <flowctrl.h>
#include <memctrl.h>
#include <memctrl.h>
#include <platform.h>
#include <
plat/common/
platform.h>
#include <security_engine.h>
#include <security_engine.h>
#include <tegra_def.h>
#include <tegra_def.h>
#include <tegra_platform.h>
#include <tegra_platform.h>
...
...
plat/nvidia/tegra/soc/t210/plat_sip_calls.c
View file @
8a08e272
...
@@ -11,8 +11,8 @@
...
@@ -11,8 +11,8 @@
#include <common/debug.h>
#include <common/debug.h>
#include <common/runtime_svc.h>
#include <common/runtime_svc.h>
#include <errno.h>
#include <errno.h>
#include <mmio.h>
#include <
lib/
mmio.h>
#include <utils_def.h>
#include <
lib/
utils_def.h>
#include <memctrl.h>
#include <memctrl.h>
#include <pmc.h>
#include <pmc.h>
...
...
plat/qemu/aarch32/plat_helpers.S
View file @
8a08e272
/*
/*
*
Copyright
(
c
)
2015
-
201
6
,
ARM
Limited
and
Contributors
.
All
rights
reserved
.
*
Copyright
(
c
)
2015
-
201
9
,
ARM
Limited
and
Contributors
.
All
rights
reserved
.
*
*
*
SPDX
-
License
-
Identifier
:
BSD
-
3
-
Clause
*
SPDX
-
License
-
Identifier
:
BSD
-
3
-
Clause
*/
*/
...
@@ -15,6 +15,7 @@
...
@@ -15,6 +15,7 @@
.
globl
plat_qemu_calc_core_pos
.
globl
plat_qemu_calc_core_pos
.
globl
plat_crash_console_init
.
globl
plat_crash_console_init
.
globl
plat_crash_console_putc
.
globl
plat_crash_console_putc
.
globl
plat_crash_console_flush
.
globl
plat_secondary_cold_boot_setup
.
globl
plat_secondary_cold_boot_setup
.
globl
plat_get_my_entrypoint
.
globl
plat_get_my_entrypoint
.
globl
plat_is_my_cpu_primary
.
globl
plat_is_my_cpu_primary
...
@@ -117,3 +118,16 @@ func plat_crash_console_putc
...
@@ -117,3 +118,16 @@ func plat_crash_console_putc
b
console_core_putc
b
console_core_putc
endfunc
plat_crash_console_putc
endfunc
plat_crash_console_putc
/
*
---------------------------------------------
*
int
plat_crash_console_flush
(
int
c
)
*
Function
to
force
a
write
of
all
buffered
*
data
that
hasn
't been output.
*
Out
:
return
-
1
on
error
else
return
0
.
*
Clobber
list
:
x0
,
x1
*
---------------------------------------------
*/
func
plat_crash_console_flush
mov_imm
r0
,
PLAT_QEMU_CRASH_UART_BASE
b
console_core_flush
endfunc
plat_crash_console_flush
plat/xilinx/versal/platform.mk
View file @
8a08e272
# 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
# SPDX-License-Identifier: BSD-3-Clause
...
@@ -48,6 +48,7 @@ PLAT_BL_COMMON_SOURCES := lib/xlat_tables/xlat_tables_common.c \
...
@@ -48,6 +48,7 @@ PLAT_BL_COMMON_SOURCES := lib/xlat_tables/xlat_tables_common.c \
drivers/arm/gic/v3/gicv3_main.c
\
drivers/arm/gic/v3/gicv3_main.c
\
drivers/arm/gic/v3/gicv3_helpers.c
\
drivers/arm/gic/v3/gicv3_helpers.c
\
drivers/arm/pl011/aarch64/pl011_console.S
\
drivers/arm/pl011/aarch64/pl011_console.S
\
plat/common/aarch64/crash_console_helpers.S
\
plat/common/plat_gicv3.c
\
plat/common/plat_gicv3.c
\
plat/xilinx/versal/aarch64/versal_helpers.S
\
plat/xilinx/versal/aarch64/versal_helpers.S
\
plat/xilinx/versal/aarch64/versal_common.c
plat/xilinx/versal/aarch64/versal_common.c
...
...
services/spd/trusty/trusty.c
View file @
8a08e272
...
@@ -5,9 +5,9 @@
...
@@ -5,9 +5,9 @@
*/
*/
#include <assert.h>
#include <assert.h>
#include <lib/xlat_tables/xlat_tables_v2.h>
#include <stdbool.h>
#include <stdbool.h>
#include <string.h>
#include <string.h>
#include <xlat_tables_v2.h>
#include <arch_helpers.h>
#include <arch_helpers.h>
#include <bl31/bl31.h>
#include <bl31/bl31.h>
...
...
Prev
1
2
3
Next
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