Juan Castillo | b6132f1 | 2015-10-06 14:01:35 +0100 | [diff] [blame] | 1 | /* |
Roberto Vargas | 2ca18d9 | 2018-02-12 12:36:17 +0000 | [diff] [blame] | 2 | * Copyright (c) 2015-2018, ARM Limited and Contributors. All rights reserved. |
Juan Castillo | b6132f1 | 2015-10-06 14:01:35 +0100 | [diff] [blame] | 3 | * |
dp-arm | fa3cf0b | 2017-05-03 09:38:09 +0100 | [diff] [blame] | 4 | * SPDX-License-Identifier: BSD-3-Clause |
Juan Castillo | b6132f1 | 2015-10-06 14:01:35 +0100 | [diff] [blame] | 5 | */ |
| 6 | |
Sandrine Bailleux | 628198b | 2016-08-18 09:24:40 +0100 | [diff] [blame] | 7 | #include <arch_helpers.h> |
Juan Castillo | b6132f1 | 2015-10-06 14:01:35 +0100 | [diff] [blame] | 8 | #include <board_arm_def.h> |
| 9 | #include <debug.h> |
| 10 | #include <errno.h> |
| 11 | #include <norflash.h> |
Roberto Vargas | 2ca18d9 | 2018-02-12 12:36:17 +0000 | [diff] [blame] | 12 | #include <platform.h> |
Juan Castillo | b6132f1 | 2015-10-06 14:01:35 +0100 | [diff] [blame] | 13 | #include <stdint.h> |
| 14 | |
| 15 | /* |
| 16 | * FVP error handler |
| 17 | */ |
| 18 | void plat_error_handler(int err) |
| 19 | { |
| 20 | int ret; |
| 21 | |
| 22 | switch (err) { |
| 23 | case -ENOENT: |
| 24 | case -EAUTH: |
| 25 | /* Image load or authentication error. Erase the ToC */ |
| 26 | INFO("Erasing FIP ToC from flash...\n"); |
| 27 | nor_unlock(PLAT_ARM_FIP_BASE); |
| 28 | ret = nor_word_program(PLAT_ARM_FIP_BASE, 0); |
| 29 | if (ret) { |
| 30 | ERROR("Cannot erase ToC\n"); |
| 31 | } else { |
| 32 | INFO("Done\n"); |
| 33 | } |
| 34 | break; |
| 35 | default: |
| 36 | /* Unexpected error */ |
| 37 | break; |
| 38 | } |
| 39 | |
| 40 | /* Loop until the watchdog resets the system */ |
| 41 | for (;;) |
Sandrine Bailleux | 628198b | 2016-08-18 09:24:40 +0100 | [diff] [blame] | 42 | wfi(); |
Juan Castillo | b6132f1 | 2015-10-06 14:01:35 +0100 | [diff] [blame] | 43 | } |