diff options
author | Soby Mathew <soby.mathew@arm.com> | 2018-11-07 17:00:49 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-07 17:00:49 +0000 |
commit | 7558e85fdb382d9026237c7e882d8eed5d461c25 (patch) | |
tree | 84eac65b50191a9f8e1ad96f94251c7e1d14e8d0 /plat | |
parent | cb2a9b6202334fae1d5bdf34c785994bcdaf5b4b (diff) | |
parent | 04d1f8dd4997a9a54b3982f280ca7b6b6cc75e12 (diff) | |
download | platform_external_arm-trusted-firmware-7558e85fdb382d9026237c7e882d8eed5d461c25.tar.gz platform_external_arm-trusted-firmware-7558e85fdb382d9026237c7e882d8eed5d461c25.tar.bz2 platform_external_arm-trusted-firmware-7558e85fdb382d9026237c7e882d8eed5d461c25.zip |
Merge pull request #1668 from ldts/rcar_gen3/e3_build
rcar_gen3: E3 target: fix compilation issues
Diffstat (limited to 'plat')
-rw-r--r-- | plat/renesas/rcar/aarch64/plat_helpers.S | 10 | ||||
-rw-r--r-- | plat/renesas/rcar/bl2_cpg_init.c | 3 |
2 files changed, 12 insertions, 1 deletions
diff --git a/plat/renesas/rcar/aarch64/plat_helpers.S b/plat/renesas/rcar/aarch64/plat_helpers.S index 50799379b..7e1ff8dda 100644 --- a/plat/renesas/rcar/aarch64/plat_helpers.S +++ b/plat/renesas/rcar/aarch64/plat_helpers.S @@ -19,6 +19,7 @@ .globl plat_crash_console_init .globl plat_crash_console_putc + .globl plat_crash_console_flush .globl plat_invalidate_icache .globl plat_report_exception .globl plat_secondary_reset @@ -286,6 +287,15 @@ func plat_crash_console_putc ret endfunc plat_crash_console_putc + /* --------------------------------------------- + * int plat_crash_console_flush() + * + * --------------------------------------------- + */ +func plat_crash_console_flush + b console_flush +endfunc plat_crash_console_flush + /* -------------------------------------------------------------------- * void plat_reset_handler(void); * diff --git a/plat/renesas/rcar/bl2_cpg_init.c b/plat/renesas/rcar/bl2_cpg_init.c index eb533cef5..880ad3604 100644 --- a/plat/renesas/rcar/bl2_cpg_init.c +++ b/plat/renesas/rcar/bl2_cpg_init.c @@ -42,7 +42,8 @@ static void bl2_secure_cpg_init(void) uint32_t stop_cr2, reset_cr2; #if (RCAR_LSI == RCAR_E3) - reset_cr2 = 0x10000000U stop_cr2 = 0xEFFFFFFFU; + reset_cr2 = 0x10000000U; + stop_cr2 = 0xEFFFFFFFU; #else reset_cr2 = 0x14000000U; stop_cr2 = 0xEBFFFFFFU; |