diff options
author | danh-arm <dan.handley@arm.com> | 2017-01-31 15:40:20 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-01-31 15:40:20 +0000 |
commit | bcc2bf097703c07aabe543681ee2676981831f76 (patch) | |
tree | 08f959e45d3c7441d747e0a854b4a069a0b82990 /bl1 | |
parent | 474d4eca1ca907968b04a4903d4adefaec4568e1 (diff) | |
parent | 10bcd761574a5aaa208041382399e05275011603 (diff) | |
download | platform_external_arm-trusted-firmware-bcc2bf097703c07aabe543681ee2676981831f76.tar.gz platform_external_arm-trusted-firmware-bcc2bf097703c07aabe543681ee2676981831f76.tar.bz2 platform_external_arm-trusted-firmware-bcc2bf097703c07aabe543681ee2676981831f76.zip |
Merge pull request #821 from jeenu-arm/errata-printing
Errata printing infrastructure
Diffstat (limited to 'bl1')
-rw-r--r-- | bl1/bl1.mk | 3 | ||||
-rw-r--r-- | bl1/bl1_main.c | 4 |
2 files changed, 5 insertions, 2 deletions
diff --git a/bl1/bl1.mk b/bl1/bl1.mk index 9ef5b4013..45ad01ebf 100644 --- a/bl1/bl1.mk +++ b/bl1/bl1.mk @@ -1,5 +1,5 @@ # -# Copyright (c) 2013-2016, ARM Limited and Contributors. All rights reserved. +# Copyright (c) 2013-2017, ARM Limited and Contributors. All rights reserved. # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are met: @@ -34,6 +34,7 @@ BL1_SOURCES += bl1/bl1_main.c \ bl1/${ARCH}/bl1_entrypoint.S \ bl1/${ARCH}/bl1_exceptions.S \ lib/cpus/${ARCH}/cpu_helpers.S \ + lib/cpus/errata_report.c \ lib/el3_runtime/${ARCH}/context_mgmt.c \ plat/common/plat_bl1_common.c diff --git a/bl1/bl1_main.c b/bl1/bl1_main.c index fbb75e029..90c06afef 100644 --- a/bl1/bl1_main.c +++ b/bl1/bl1_main.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2016, ARM Limited and Contributors. All rights reserved. + * Copyright (c) 2013-2017, ARM Limited and Contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: @@ -35,6 +35,7 @@ #include <bl1.h> #include <bl_common.h> #include <debug.h> +#include <errata_report.h> #include <platform.h> #include <platform_def.h> #include <smcc_helpers.h> @@ -110,6 +111,7 @@ void bl1_main(void) INFO("BL1: RAM %p - %p\n", (void *)BL1_RAM_BASE, (void *)BL1_RAM_LIMIT); + print_errata_status(); #if DEBUG u_register_t val; |