Andrew Scull | 1883487 | 2018-10-12 11:48:09 +0100 | [diff] [blame] | 1 | /* |
Andrew Walbran | 692b325 | 2019-03-07 15:51:31 +0000 | [diff] [blame] | 2 | * Copyright 2018 The Hafnium Authors. |
Andrew Scull | 1883487 | 2018-10-12 11:48:09 +0100 | [diff] [blame] | 3 | * |
Andrew Walbran | e959ec1 | 2020-06-17 15:01:09 +0100 | [diff] [blame] | 4 | * Use of this source code is governed by a BSD-style |
| 5 | * license that can be found in the LICENSE file or at |
| 6 | * https://opensource.org/licenses/BSD-3-Clause. |
Andrew Scull | 1883487 | 2018-10-12 11:48:09 +0100 | [diff] [blame] | 7 | */ |
| 8 | |
Andrew Scull | fbc938a | 2018-08-20 14:09:28 +0100 | [diff] [blame] | 9 | #pragma once |
Wedson Almeida Filho | 987c0ff | 2018-06-20 16:34:38 +0100 | [diff] [blame] | 10 | |
Wedson Almeida Filho | fdf4afc | 2018-07-19 15:45:21 +0100 | [diff] [blame] | 11 | #include <stdarg.h> |
Andrew Walbran | 7f904bf | 2019-07-12 16:38:38 +0100 | [diff] [blame] | 12 | #include <stddef.h> |
Wedson Almeida Filho | fdf4afc | 2018-07-19 15:45:21 +0100 | [diff] [blame] | 13 | |
Andrew Walbran | b5ab43c | 2020-04-30 11:32:54 +0100 | [diff] [blame] | 14 | #include "hf/ffa.h" |
Andrew Walbran | c1ad4ce | 2019-05-09 11:41:39 +0100 | [diff] [blame] | 15 | |
Andrew Walbran | f3ac84d | 2019-07-26 16:10:02 +0100 | [diff] [blame] | 16 | #define DLOG_BUFFER_SIZE 8192 |
| 17 | |
Andrew Walbran | 17eebf9 | 2020-02-05 16:35:49 +0000 | [diff] [blame] | 18 | #define LOG_LEVEL_NONE UINT32_C(0) |
| 19 | #define LOG_LEVEL_ERROR UINT32_C(1) |
| 20 | #define LOG_LEVEL_NOTICE UINT32_C(2) |
| 21 | #define LOG_LEVEL_WARNING UINT32_C(3) |
| 22 | #define LOG_LEVEL_INFO UINT32_C(4) |
| 23 | #define LOG_LEVEL_VERBOSE UINT32_C(5) |
| 24 | |
Andrew Walbran | f3ac84d | 2019-07-26 16:10:02 +0100 | [diff] [blame] | 25 | extern size_t dlog_buffer_offset; |
| 26 | extern char dlog_buffer[]; |
| 27 | |
Andrew Scull | fdd716e | 2018-12-20 05:37:31 +0000 | [diff] [blame] | 28 | void dlog_enable_lock(void); |
Wedson Almeida Filho | 987c0ff | 2018-06-20 16:34:38 +0100 | [diff] [blame] | 29 | void dlog(const char *fmt, ...); |
Wedson Almeida Filho | fdf4afc | 2018-07-19 15:45:21 +0100 | [diff] [blame] | 30 | void vdlog(const char *fmt, va_list args); |
Andrew Walbran | 17eebf9 | 2020-02-05 16:35:49 +0000 | [diff] [blame] | 31 | |
Demi Marie Obenour | 33f8a16 | 2023-02-14 12:21:41 -0500 | [diff] [blame] | 32 | /* |
| 33 | * The do { ... } while (0) syntax is used to ensure that callers of |
| 34 | * these macros follow them with a semicolon. |
| 35 | * |
| 36 | * Run-time conditionals are preferred over preprocessor conditionals to ensure |
| 37 | * that the code is type-checked and linted unconditionally, even if it will not |
| 38 | * be executed at run-time. Logging statements that are disabled at |
| 39 | * compile-time are unreachable code and will be eliminated by compiler |
| 40 | * optimizations. |
| 41 | */ |
| 42 | #define dlog_error(...) \ |
| 43 | do { \ |
| 44 | if (LOG_LEVEL >= LOG_LEVEL_ERROR) { \ |
| 45 | dlog("ERROR: " __VA_ARGS__); \ |
| 46 | } \ |
| 47 | } while (0) |
Andrew Walbran | 17eebf9 | 2020-02-05 16:35:49 +0000 | [diff] [blame] | 48 | |
Demi Marie Obenour | 33f8a16 | 2023-02-14 12:21:41 -0500 | [diff] [blame] | 49 | #define dlog_notice(...) \ |
| 50 | do { \ |
| 51 | if (LOG_LEVEL >= LOG_LEVEL_NOTICE) { \ |
| 52 | dlog("NOTICE: " __VA_ARGS__); \ |
| 53 | } \ |
| 54 | } while (0) |
Andrew Walbran | 17eebf9 | 2020-02-05 16:35:49 +0000 | [diff] [blame] | 55 | |
Demi Marie Obenour | 33f8a16 | 2023-02-14 12:21:41 -0500 | [diff] [blame] | 56 | #define dlog_warning(...) \ |
| 57 | do { \ |
| 58 | if (LOG_LEVEL >= LOG_LEVEL_WARNING) { \ |
| 59 | dlog("WARNING: " __VA_ARGS__); \ |
| 60 | } \ |
| 61 | } while (0) |
Andrew Walbran | 17eebf9 | 2020-02-05 16:35:49 +0000 | [diff] [blame] | 62 | |
Demi Marie Obenour | 33f8a16 | 2023-02-14 12:21:41 -0500 | [diff] [blame] | 63 | #define dlog_info(...) \ |
| 64 | do { \ |
| 65 | if (LOG_LEVEL >= LOG_LEVEL_WARNING) { \ |
| 66 | dlog("INFO: " __VA_ARGS__); \ |
| 67 | } \ |
| 68 | } while (0) |
Andrew Walbran | 17eebf9 | 2020-02-05 16:35:49 +0000 | [diff] [blame] | 69 | |
Demi Marie Obenour | 33f8a16 | 2023-02-14 12:21:41 -0500 | [diff] [blame] | 70 | #define dlog_verbose(...) \ |
| 71 | do { \ |
| 72 | if (LOG_LEVEL >= LOG_LEVEL_VERBOSE) { \ |
| 73 | dlog("VERBOSE: " __VA_ARGS__); \ |
| 74 | } \ |
| 75 | } while (0) |
Andrew Walbran | c1ad4ce | 2019-05-09 11:41:39 +0100 | [diff] [blame] | 76 | |
Andrew Walbran | b5ab43c | 2020-04-30 11:32:54 +0100 | [diff] [blame] | 77 | void dlog_flush_vm_buffer(ffa_vm_id_t id, char buffer[], size_t length); |