blob: 5451f850a2d7bc9d77a9cb0ccf94412d50a15f11 [file] [log] [blame]
Andrew Scull18834872018-10-12 11:48:09 +01001/*
Andrew Walbran692b3252019-03-07 15:51:31 +00002 * Copyright 2018 The Hafnium Authors.
Andrew Scull18834872018-10-12 11:48:09 +01003 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * https://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Andrew Scullfbc938a2018-08-20 14:09:28 +010017#pragma once
Wedson Almeida Filho987c0ff2018-06-20 16:34:38 +010018
Wedson Almeida Filhofdf4afc2018-07-19 15:45:21 +010019#include <stdarg.h>
Andrew Walbran7f904bf2019-07-12 16:38:38 +010020#include <stddef.h>
Wedson Almeida Filhofdf4afc2018-07-19 15:45:21 +010021
Andrew Walbran7f904bf2019-07-12 16:38:38 +010022#include "hf/spci.h"
Andrew Walbranc1ad4ce2019-05-09 11:41:39 +010023
Andrew Walbranf3ac84d2019-07-26 16:10:02 +010024#define DLOG_BUFFER_SIZE 8192
25
Andrew Walbran17eebf92020-02-05 16:35:49 +000026#define LOG_LEVEL_NONE UINT32_C(0)
27#define LOG_LEVEL_ERROR UINT32_C(1)
28#define LOG_LEVEL_NOTICE UINT32_C(2)
29#define LOG_LEVEL_WARNING UINT32_C(3)
30#define LOG_LEVEL_INFO UINT32_C(4)
31#define LOG_LEVEL_VERBOSE UINT32_C(5)
32
Andrew Walbranf3ac84d2019-07-26 16:10:02 +010033extern size_t dlog_buffer_offset;
34extern char dlog_buffer[];
35
Andrew Scullfdd716e2018-12-20 05:37:31 +000036void dlog_enable_lock(void);
Wedson Almeida Filho987c0ff2018-06-20 16:34:38 +010037void dlog(const char *fmt, ...);
Wedson Almeida Filhofdf4afc2018-07-19 15:45:21 +010038void vdlog(const char *fmt, va_list args);
Andrew Walbran17eebf92020-02-05 16:35:49 +000039
40#if LOG_LEVEL >= LOG_LEVEL_ERROR
41#define dlog_error(...) dlog("ERROR: " __VA_ARGS__)
Wedson Almeida Filho987c0ff2018-06-20 16:34:38 +010042#else
Andrew Walbran17eebf92020-02-05 16:35:49 +000043#define dlog_error(...)
44#endif
45
46#if LOG_LEVEL >= LOG_LEVEL_NOTICE
47#define dlog_notice(...) dlog("NOTICE: " __VA_ARGS__)
48#else
49#define dlog_notice(...)
50#endif
51
52#if LOG_LEVEL >= LOG_LEVEL_WARNING
53#define dlog_warning(...) dlog("WARNING: " __VA_ARGS__)
54#else
55#define dlog_warning(...)
56#endif
57
58#if LOG_LEVEL >= LOG_LEVEL_INFO
59#define dlog_info(...) dlog("INFO: " __VA_ARGS__)
60#else
61#define dlog_info(...)
62#endif
63
64#if LOG_LEVEL >= LOG_LEVEL_VERBOSE
65#define dlog_verbose(...) dlog("VERBOSE: " __VA_ARGS__)
66#else
67#define dlog_verbose(...)
Wedson Almeida Filho987c0ff2018-06-20 16:34:38 +010068#endif
Andrew Walbranc1ad4ce2019-05-09 11:41:39 +010069
Andrew Walbran7f904bf2019-07-12 16:38:38 +010070void dlog_flush_vm_buffer(spci_vm_id_t id, char buffer[], size_t length);