blob: f9aa1a959b5aa08a267bd0ffa125f3230f8acf39 [file] [log] [blame]
Harrison Mutai88d6ec82025-08-12 14:32:58 +00001/*
2 * Copyright (c) 2025, Arm Limited and Contributors. All rights reserved.
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7#ifndef LOG_BACKEND_TF_H
8#define LOG_BACKEND_TF_H
9
10#include <stdio.h>
11
12void evlog_log(const char *fmt, ...) __asm__("tf_log");
13
14#define EVLOG_MARKER_ERROR "\xa" /* 10 */
15#define EVLOG_MARKER_NOTICE "\x14" /* 20 */
16#define EVLOG_MARKER_WARNING "\x1e" /* 30 */
17#define EVLOG_MARKER_INFO "\x28" /* 40 */
18#define EVLOG_MARKER_VERBOSE "\x32" /* 50 */
19
20#endif /* LOG_BACKEND_TF_H */