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> |
Soby Mathew | 9427357 | 2018-03-07 11:32:04 +0000 | [diff] [blame] | 8 | #include <console.h> |
Juan Castillo | b6132f1 | 2015-10-06 14:01:35 +0100 | [diff] [blame] | 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> |
Sughosh Ganu | 5c06ff1 | 2018-03-10 19:12:28 +0530 | [diff] [blame] | 13 | #include <platform_def.h> |
Juan Castillo | b6132f1 | 2015-10-06 14:01:35 +0100 | [diff] [blame] | 14 | #include <stdint.h> |
| 15 | |
Sathees Balya | 2257607 | 2018-09-03 17:41:13 +0100 | [diff] [blame] | 16 | #pragma weak plat_arm_error_handler |
| 17 | |
Juan Castillo | b6132f1 | 2015-10-06 14:01:35 +0100 | [diff] [blame] | 18 | /* |
Soby Mathew | 9427357 | 2018-03-07 11:32:04 +0000 | [diff] [blame] | 19 | * ARM common implementation for error handler |
Juan Castillo | b6132f1 | 2015-10-06 14:01:35 +0100 | [diff] [blame] | 20 | */ |
Sathees Balya | 2257607 | 2018-09-03 17:41:13 +0100 | [diff] [blame] | 21 | void __dead2 plat_arm_error_handler(int err) |
Juan Castillo | b6132f1 | 2015-10-06 14:01:35 +0100 | [diff] [blame] | 22 | { |
| 23 | int ret; |
| 24 | |
| 25 | switch (err) { |
| 26 | case -ENOENT: |
| 27 | case -EAUTH: |
| 28 | /* Image load or authentication error. Erase the ToC */ |
| 29 | INFO("Erasing FIP ToC from flash...\n"); |
| 30 | nor_unlock(PLAT_ARM_FIP_BASE); |
| 31 | ret = nor_word_program(PLAT_ARM_FIP_BASE, 0); |
Soby Mathew | 9427357 | 2018-03-07 11:32:04 +0000 | [diff] [blame] | 32 | if (ret != 0) { |
Juan Castillo | b6132f1 | 2015-10-06 14:01:35 +0100 | [diff] [blame] | 33 | ERROR("Cannot erase ToC\n"); |
| 34 | } else { |
| 35 | INFO("Done\n"); |
| 36 | } |
| 37 | break; |
| 38 | default: |
| 39 | /* Unexpected error */ |
| 40 | break; |
| 41 | } |
| 42 | |
Soby Mathew | 9427357 | 2018-03-07 11:32:04 +0000 | [diff] [blame] | 43 | (void)console_flush(); |
| 44 | |
Juan Castillo | b6132f1 | 2015-10-06 14:01:35 +0100 | [diff] [blame] | 45 | /* Loop until the watchdog resets the system */ |
| 46 | for (;;) |
Sandrine Bailleux | 628198b | 2016-08-18 09:24:40 +0100 | [diff] [blame] | 47 | wfi(); |
Juan Castillo | b6132f1 | 2015-10-06 14:01:35 +0100 | [diff] [blame] | 48 | } |
Sathees Balya | 2257607 | 2018-09-03 17:41:13 +0100 | [diff] [blame] | 49 | |
| 50 | void __dead2 plat_error_handler(int err) |
| 51 | { |
| 52 | plat_arm_error_handler(err); |
| 53 | } |