"testutil/ci/travis/travis_test.go" did not exist on "51fd99e363ca843fb3a5feec0f3213057c4b44ea"
errata_report.h 690 Bytes
Newer Older
1
/*
2
 * Copyright (c) 2017-2018, ARM Limited and Contributors. All rights reserved.
3
 *
dp-arm's avatar
dp-arm committed
4
 * SPDX-License-Identifier: BSD-3-Clause
5
6
7
8
9
10
11
12
13
14
 */

#ifndef __ERRATA_H__
#define __ERRATA_H__

#ifndef __ASSEMBLY__

#include <arch.h>
#include <arch_helpers.h>
#include <spinlock.h>
15
#include <utils_def.h>
16
17
18
19
20
21
22

#if DEBUG
void print_errata_status(void);
#else
static inline void print_errata_status(void) {}
#endif

23
24
25
void errata_print_msg(unsigned int status, const char *cpu, const char *id);
int errata_needs_reporting(spinlock_t *lock, uint32_t *reported);

26
27
28
29
30
31
32
33
34
#endif /* __ASSEMBLY__ */

/* Errata status */
#define ERRATA_NOT_APPLIES	0
#define ERRATA_APPLIES		1
#define ERRATA_MISSING		2

#endif /* __ERRATA_H__ */