| /* |
| * Copyright (c) 2019 Intel Corporation Inc. |
| * Copyright (c) 2018 Nordic Semiconductor ASA |
| * Copyright (c) 2018 Intel Corporation |
| * |
| * SPDX-License-Identifier: Apache-2.0 |
| */ |
| |
| #include <stdio.h> |
| #include <stddef.h> |
| #include <logging/log_backend.h> |
| #include <logging/log_core.h> |
| #include <logging/log_msg.h> |
| #include <logging/log_output.h> |
| #include <logging/log_backend_std.h> |
| #include <xtensa/simcall.h> |
| |
| #define CHAR_BUF_SIZE (IS_ENABLED(CONFIG_LOG_IMMEDIATE) ? \ |
| 1 : CONFIG_LOG_BACKEND_XTENSA_OUTPUT_BUFFER_SIZE) |
| |
| static uint8_t xtensa_log_buf[CHAR_BUF_SIZE]; |
| |
| static int char_out(uint8_t *data, size_t length, void *ctx) |
| { |
| register int a2 __asm__ ("a2") = SYS_write; |
| register int a3 __asm__ ("a3") = 1; |
| register int a4 __asm__ ("a4") = (int) data; |
| register int a5 __asm__ ("a5") = length; |
| |
| __asm__ volatile("simcall" |
| : "=a"(a2), "=a"(a3) |
| : "a"(a2), "a"(a3), "a"(a4), "a"(a5)); |
| |
| return length; |
| } |
| |
| LOG_OUTPUT_DEFINE(log_output_xsim, char_out, |
| xtensa_log_buf, sizeof(xtensa_log_buf)); |
| |
| static void put(const struct log_backend *const backend, |
| struct log_msg *msg) |
| { |
| log_backend_std_put(&log_output_xsim, 0, msg); |
| |
| } |
| |
| static void process(const struct log_backend *const backend, |
| union log_msg2_generic *msg) |
| { |
| uint32_t flags = log_backend_std_get_flags(); |
| |
| log_output_msg2_process(&log_output_xsim, &msg->log, flags); |
| } |
| |
| static void panic(struct log_backend const *const backend) |
| { |
| log_backend_std_panic(&log_output_xsim); |
| } |
| |
| static void dropped(const struct log_backend *const backend, uint32_t cnt) |
| { |
| ARG_UNUSED(backend); |
| |
| log_backend_std_dropped(&log_output_xsim, cnt); |
| } |
| |
| static void sync_string(const struct log_backend *const backend, |
| struct log_msg_ids src_level, uint32_t timestamp, |
| const char *fmt, va_list ap) |
| { |
| log_backend_std_sync_string(&log_output_xsim, 0, src_level, |
| timestamp, fmt, ap); |
| } |
| |
| static void sync_hexdump(const struct log_backend *const backend, |
| struct log_msg_ids src_level, uint32_t timestamp, |
| const char *metadata, const uint8_t *data, uint32_t length) |
| { |
| log_backend_std_sync_hexdump(&log_output_xsim, 0, src_level, |
| timestamp, metadata, data, length); |
| } |
| |
| const struct log_backend_api log_backend_xtensa_sim_api = { |
| .process = IS_ENABLED(CONFIG_LOG2) ? process : NULL, |
| .put = IS_ENABLED(CONFIG_LOG_MODE_DEFERRED) ? put : NULL, |
| .put_sync_string = IS_ENABLED(CONFIG_LOG_MODE_IMMEDIATE) ? |
| sync_string : NULL, |
| .put_sync_hexdump = IS_ENABLED(CONFIG_LOG_MODE_IMMEDIATE) ? |
| sync_hexdump : NULL, |
| .panic = panic, |
| .dropped = IS_ENABLED(CONFIG_LOG_IMMEDIATE) ? NULL : dropped, |
| }; |
| |
| LOG_BACKEND_DEFINE(log_backend_xtensa_sim, log_backend_xtensa_sim_api, true); |