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
cce37d44
Commit
cce37d44
authored
6 years ago
by
Yann Gautier
Browse files
Options
Download
Email Patches
Plain Diff
stm32mp1: use MULTI_CONSOLE_API
Signed-off-by:
Yann Gautier
<
yann.gautier@st.com
>
parent
6d264afc
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
v2.2
v2.2-rc2
v2.2-rc1
v2.2-rc0
v2.1
v2.1-rc1
v2.1-rc0
arm_cca_v0.2
arm_cca_v0.1
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
plat/st/stm32mp1/bl2_plat_setup.c
+6
-4
plat/st/stm32mp1/bl2_plat_setup.c
plat/st/stm32mp1/platform.mk
+1
-0
plat/st/stm32mp1/platform.mk
plat/st/stm32mp1/sp_min/sp_min_setup.c
+6
-3
plat/st/stm32mp1/sp_min/sp_min_setup.c
plat/st/stm32mp1/stm32mp1_helper.S
+3
-3
plat/st/stm32mp1/stm32mp1_helper.S
with
16 additions
and
10 deletions
+16
-10
plat/st/stm32mp1/bl2_plat_setup.c
View file @
cce37d44
...
...
@@ -8,7 +8,6 @@
#include <assert.h>
#include <bl_common.h>
#include <boot_api.h>
#include <console.h>
#include <debug.h>
#include <delay_timer.h>
#include <desc_image_load.h>
...
...
@@ -16,11 +15,12 @@
#include <mmio.h>
#include <platform.h>
#include <platform_def.h>
#include <stm32_console.h>
#include <stm32mp1_clk.h>
#include <stm32mp1_context.h>
#include <stm32mp1_dt.h>
#include <stm32mp1_pmic.h>
#include <stm32mp1_private.h>
#include <stm32mp1_context.h>
#include <stm32mp1_pwr.h>
#include <stm32mp1_ram.h>
#include <stm32mp1_rcc.h>
...
...
@@ -28,6 +28,8 @@
#include <string.h>
#include <xlat_tables_v2.h>
static
struct
console_stm32
console
;
void
bl2_el3_early_platform_setup
(
u_register_t
arg0
,
u_register_t
arg1
,
u_register_t
arg2
,
u_register_t
arg3
)
{
...
...
@@ -137,8 +139,8 @@ void bl2_el3_plat_arch_setup(void)
clk_rate
=
stm32mp1_clk_get_rate
((
unsigned
long
)
dt_dev_info
.
clock
);
if
(
console_
init
(
dt_dev_info
.
base
,
clk_rate
,
STM32MP1_UART_BAUDRATE
)
==
0
)
{
if
(
console_
stm32_register
(
dt_dev_info
.
base
,
clk_rate
,
STM32MP1_UART_BAUDRATE
,
&
console
)
==
0
)
{
panic
();
}
...
...
This diff is collapsed.
Click to expand it.
plat/st/stm32mp1/platform.mk
View file @
cce37d44
...
...
@@ -8,6 +8,7 @@ ARM_CORTEX_A7 := yes
ARM_WITH_NEON
:=
yes
BL2_AT_EL3
:=
1
USE_COHERENT_MEM
:=
0
MULTI_CONSOLE_API
:=
1
STM32_TF_VERSION
?=
0
...
...
This diff is collapsed.
Click to expand it.
plat/st/stm32mp1/sp_min/sp_min_setup.c
View file @
cce37d44
...
...
@@ -7,7 +7,6 @@
#include <arch_helpers.h>
#include <assert.h>
#include <bl_common.h>
#include <console.h>
#include <context.h>
#include <context_mgmt.h>
#include <debug.h>
...
...
@@ -17,6 +16,7 @@
#include <platform.h>
#include <platform_def.h>
#include <platform_sp_min.h>
#include <stm32_console.h>
#include <stm32mp1_clk.h>
#include <stm32mp1_dt.h>
#include <stm32mp1_private.h>
...
...
@@ -30,6 +30,8 @@
******************************************************************************/
static
entry_point_info_t
bl33_image_ep_info
;
static
struct
console_stm32
console
;
/*******************************************************************************
* Interrupt handler for FIQ (secure IRQ)
******************************************************************************/
...
...
@@ -112,8 +114,9 @@ void sp_min_early_platform_setup2(u_register_t arg0, u_register_t arg1,
result
=
dt_get_stdout_uart_info
(
&
dt_dev_info
);
if
((
result
>
0
)
&&
dt_dev_info
.
status
)
{
if
(
console_init
(
dt_dev_info
.
base
,
0
,
STM32MP1_UART_BAUDRATE
)
==
0
)
{
if
(
console_stm32_register
(
dt_dev_info
.
base
,
0
,
STM32MP1_UART_BAUDRATE
,
&
console
)
==
0
)
{
panic
();
}
}
...
...
This diff is collapsed.
Click to expand it.
plat/st/stm32mp1/stm32mp1_helper.S
View file @
cce37d44
...
...
@@ -149,7 +149,7 @@ func plat_crash_console_init
ldr
r0
,
=
STM32MP1_DEBUG_USART_BASE
ldr
r1
,
=
STM32MP1_HSI_CLK
ldr
r2
,
=
STM32MP1_UART_BAUDRATE
b
console_core_init
b
console_
stm32_
core_init
endfunc
plat_crash_console_init
/
*
---------------------------------------------
...
...
@@ -160,7 +160,7 @@ endfunc plat_crash_console_init
*/
func
plat_crash_console_flush
ldr
r1
,
=
STM32MP1_DEBUG_USART_BASE
b
console_core_flush
b
console_
stm32_
core_flush
endfunc
plat_crash_console_flush
/
*
---------------------------------------------
...
...
@@ -176,5 +176,5 @@ endfunc plat_crash_console_flush
*/
func
plat_crash_console_putc
ldr
r1
,
=
STM32MP1_DEBUG_USART_BASE
b
console_core_putc
b
console_
stm32_
core_putc
endfunc
plat_crash_console_putc
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