Jeenu Viswambharan | d5ec367 | 2017-01-03 11:01:51 +0000 | [diff] [blame] | 1 | /* |
Roberto Vargas | 0571270 | 2018-02-12 12:36:17 +0000 | [diff] [blame] | 2 | * Copyright (c) 2017-2018, ARM Limited and Contributors. All rights reserved. |
Jeenu Viswambharan | d5ec367 | 2017-01-03 11:01:51 +0000 | [diff] [blame] | 3 | * |
dp-arm | fa3cf0b | 2017-05-03 09:38:09 +0100 | [diff] [blame] | 4 | * SPDX-License-Identifier: BSD-3-Clause |
Jeenu Viswambharan | d5ec367 | 2017-01-03 11:01:51 +0000 | [diff] [blame] | 5 | */ |
| 6 | |
Antonio Nino Diaz | 9fe40fd | 2018-10-25 17:11:02 +0100 | [diff] [blame] | 7 | #ifndef ERRATA_REPORT_H |
| 8 | #define ERRATA_REPORT_H |
Jeenu Viswambharan | d5ec367 | 2017-01-03 11:01:51 +0000 | [diff] [blame] | 9 | |
| 10 | #ifndef __ASSEMBLY__ |
| 11 | |
| 12 | #include <arch.h> |
| 13 | #include <arch_helpers.h> |
Antonio Nino Diaz | e0f9063 | 2018-12-14 00:18:21 +0000 | [diff] [blame] | 14 | #include <lib/spinlock.h> |
| 15 | #include <lib/utils_def.h> |
Jeenu Viswambharan | d5ec367 | 2017-01-03 11:01:51 +0000 | [diff] [blame] | 16 | |
| 17 | #if DEBUG |
| 18 | void print_errata_status(void); |
| 19 | #else |
| 20 | static inline void print_errata_status(void) {} |
| 21 | #endif |
| 22 | |
Roberto Vargas | 0571270 | 2018-02-12 12:36:17 +0000 | [diff] [blame] | 23 | void errata_print_msg(unsigned int status, const char *cpu, const char *id); |
| 24 | int errata_needs_reporting(spinlock_t *lock, uint32_t *reported); |
| 25 | |
Jeenu Viswambharan | d5ec367 | 2017-01-03 11:01:51 +0000 | [diff] [blame] | 26 | #endif /* __ASSEMBLY__ */ |
| 27 | |
| 28 | /* Errata status */ |
| 29 | #define ERRATA_NOT_APPLIES 0 |
| 30 | #define ERRATA_APPLIES 1 |
| 31 | #define ERRATA_MISSING 2 |
| 32 | |
Antonio Nino Diaz | 9fe40fd | 2018-10-25 17:11:02 +0100 | [diff] [blame] | 33 | #endif /* ERRATA_REPORT_H */ |