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
4ed74d02
Commit
4ed74d02
authored
Aug 21, 2014
by
danh-arm
Browse files
Merge pull request #197 from soby-mathew/rationalize_uarts
Rationalize UART usage among different BL stages
parents
e434cf1a
12d554f9
Changes
6
Hide whitespace changes
Inline
Side-by-side
plat/fvp/tsp/tsp_fvp_setup.c
View file @
4ed74d02
...
...
@@ -72,7 +72,7 @@ void tsp_early_platform_setup(void)
* Initialize a different console than already in use to display
* messages from TSP
*/
console_init
(
PL011_UART
1
_BASE
,
PL011_UART
1
_CLK_IN_HZ
,
PL011_BAUDRATE
);
console_init
(
PL011_UART
2
_BASE
,
PL011_UART
2
_CLK_IN_HZ
,
PL011_BAUDRATE
);
/* Initialize the platform config for future decision making */
fvp_config_setup
();
...
...
plat/juno/bl1_plat_setup.c
View file @
4ed74d02
...
...
@@ -75,7 +75,7 @@ void bl1_early_platform_setup(void)
const
size_t
bl1_size
=
BL1_RAM_LIMIT
-
BL1_RAM_BASE
;
/* Initialize the console to provide early debug support */
console_init
(
PL011_UART
0
_BASE
,
PL011_UART
0
_CLK_IN_HZ
,
PL011_BAUDRATE
);
console_init
(
PL011_UART
2
_BASE
,
PL011_UART
2
_CLK_IN_HZ
,
PL011_BAUDRATE
);
/*
* Enable CCI-400 for this cluster. No need for locks as no other cpu is
...
...
plat/juno/bl2_plat_setup.c
View file @
4ed74d02
...
...
@@ -158,7 +158,7 @@ struct entry_point_info *bl2_plat_get_bl31_ep_info(void)
void
bl2_early_platform_setup
(
meminfo_t
*
mem_layout
)
{
/* Initialize the console to provide early debug support */
console_init
(
PL011_UART
0
_BASE
,
PL011_UART
0
_CLK_IN_HZ
,
PL011_BAUDRATE
);
console_init
(
PL011_UART
2
_BASE
,
PL011_UART
2
_CLK_IN_HZ
,
PL011_BAUDRATE
);
/* Setup the BL2 memory layout */
bl2_tzram_layout
=
*
mem_layout
;
...
...
plat/juno/bl31_plat_setup.c
View file @
4ed74d02
...
...
@@ -108,7 +108,7 @@ void bl31_early_platform_setup(bl31_params_t *from_bl2,
void
*
plat_params_from_bl2
)
{
/* Initialize the console to provide early debug support */
console_init
(
PL011_UART
0
_BASE
,
PL011_UART
0
_CLK_IN_HZ
,
PL011_BAUDRATE
);
console_init
(
PL011_UART
2
_BASE
,
PL011_UART
2
_CLK_IN_HZ
,
PL011_BAUDRATE
);
/*
* Initialise the CCI-400 driver for BL31 so that it is accessible after
...
...
plat/juno/juno_def.h
View file @
4ed74d02
...
...
@@ -138,6 +138,8 @@
#define PL011_UART0_CLK_IN_HZ 24000000
#define PL011_UART1_CLK_IN_HZ 24000000
#define PL011_UART2_CLK_IN_HZ 7273800
#define PL011_UART3_CLK_IN_HZ 7273800
/*******************************************************************************
* NIC-400 related constants
...
...
plat/juno/tsp/tsp_plat_setup.c
View file @
4ed74d02
...
...
@@ -72,7 +72,7 @@ void tsp_early_platform_setup(void)
* Initialize a different console than already in use to display
* messages from TSP
*/
console_init
(
PL011_UART
1
_BASE
,
PL011_UART
1
_CLK_IN_HZ
,
PL011_BAUDRATE
);
console_init
(
PL011_UART
0
_BASE
,
PL011_UART
0
_CLK_IN_HZ
,
PL011_BAUDRATE
);
}
/*******************************************************************************
...
...
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