162 lines
4.6 KiB
C
162 lines
4.6 KiB
C
/*
|
|
* Copyright (C) 2018 Intel Corporation. All rights reserved.
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted provided that the following conditions
|
|
* are met:
|
|
*
|
|
* * Redistributions of source code must retain the above copyright
|
|
* notice, this list of conditions and the following disclaimer.
|
|
* * Redistributions in binary form must reproduce the above copyright
|
|
* notice, this list of conditions and the following disclaimer in
|
|
* the documentation and/or other materials provided with the
|
|
* distribution.
|
|
* * Neither the name of Intel Corporation nor the names of its
|
|
* contributors may be used to endorse or promote products derived
|
|
* from this software without specific prior written permission.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
*/
|
|
|
|
#include <hypervisor.h>
|
|
#include <hv_lib.h>
|
|
#include <acrn_common.h>
|
|
#include <hv_arch.h>
|
|
#include <hv_debug.h>
|
|
|
|
#define LOG_ENTRY_SIZE 80
|
|
|
|
/* Size of buffer used to store a message being logged,
|
|
* should align to LOG_ENTRY_SIZE.
|
|
*/
|
|
#define LOG_MESSAGE_MAX_SIZE (4 * LOG_ENTRY_SIZE)
|
|
|
|
DEFINE_CPU_DATA(char [LOG_MESSAGE_MAX_SIZE], logbuf);
|
|
|
|
struct logmsg {
|
|
uint32_t flags;
|
|
unsigned int seq;
|
|
spinlock_t lock;
|
|
};
|
|
|
|
static struct logmsg logmsg;
|
|
|
|
void init_logmsg(__unused uint32_t mem_size, uint32_t flags)
|
|
{
|
|
logmsg.flags = flags;
|
|
logmsg.seq = 0;
|
|
}
|
|
|
|
void do_logmsg(uint32_t severity, const char *fmt, ...)
|
|
{
|
|
va_list args;
|
|
uint64_t timestamp;
|
|
uint32_t cpu_id;
|
|
bool do_console_log;
|
|
bool do_mem_log;
|
|
char *buffer;
|
|
spinlock_rflags;
|
|
|
|
do_console_log = ((logmsg.flags & LOG_FLAG_STDOUT) &&
|
|
(severity <= console_loglevel));
|
|
do_mem_log = ((logmsg.flags & LOG_FLAG_MEMORY) &&
|
|
(severity <= mem_loglevel));
|
|
|
|
if (!do_console_log && !do_mem_log)
|
|
return;
|
|
|
|
/* Get time-stamp value */
|
|
timestamp = rdtsc();
|
|
|
|
/* Scale time-stamp appropriately */
|
|
timestamp = TICKS_TO_US(timestamp);
|
|
|
|
/* Get CPU ID */
|
|
cpu_id = get_cpu_id();
|
|
buffer = per_cpu(logbuf, cpu_id);
|
|
|
|
memset(buffer, 0, LOG_MESSAGE_MAX_SIZE);
|
|
/* Put time-stamp, CPU ID and severity into buffer */
|
|
snprintf(buffer, LOG_MESSAGE_MAX_SIZE,
|
|
"[%lluus][cpu=%u][sev=%u][seq=%u]:",
|
|
timestamp, cpu_id, severity,
|
|
atomic_inc_return(&logmsg.seq));
|
|
|
|
/* Put message into remaining portion of local buffer */
|
|
va_start(args, fmt);
|
|
vsnprintf(buffer + strnlen_s(buffer, LOG_MESSAGE_MAX_SIZE),
|
|
LOG_MESSAGE_MAX_SIZE
|
|
- strnlen_s(buffer, LOG_MESSAGE_MAX_SIZE), fmt, args);
|
|
va_end(args);
|
|
|
|
/* Check if flags specify to output to stdout */
|
|
if (do_console_log) {
|
|
spinlock_irqsave_obtain(&(logmsg.lock));
|
|
|
|
/* Send buffer to stdout */
|
|
printf("%s\n\r", buffer);
|
|
|
|
spinlock_irqrestore_release(&(logmsg.lock));
|
|
}
|
|
|
|
/* Check if flags specify to output to memory */
|
|
if (do_mem_log) {
|
|
int i, msg_len;
|
|
struct shared_buf *sbuf = (struct shared_buf *)
|
|
per_cpu(sbuf, cpu_id)[ACRN_HVLOG];
|
|
if (sbuf != NULL) {
|
|
msg_len = strnlen_s(buffer, LOG_MESSAGE_MAX_SIZE);
|
|
|
|
for (i = 0; i < (msg_len - 1) / LOG_ENTRY_SIZE + 1;
|
|
i++) {
|
|
sbuf_put(sbuf, (uint8_t *)buffer +
|
|
i * LOG_ENTRY_SIZE);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
void print_logmsg_buffer(uint32_t cpu_id)
|
|
{
|
|
spinlock_rflags;
|
|
char buffer[LOG_ENTRY_SIZE + 1];
|
|
int read_cnt;
|
|
struct shared_buf *sbuf;
|
|
|
|
if (cpu_id >= (uint32_t)phy_cpu_num)
|
|
return;
|
|
|
|
sbuf = (struct shared_buf *)per_cpu(sbuf, cpu_id)[ACRN_HVLOG];
|
|
if (sbuf != NULL) {
|
|
spinlock_irqsave_obtain(&(logmsg.lock));
|
|
printf("CPU%d: head: 0x%x, tail: 0x%x\n\r",
|
|
cpu_id, sbuf->head, sbuf->tail);
|
|
spinlock_irqrestore_release(&(logmsg.lock));
|
|
do {
|
|
memset(buffer, 0, LOG_ENTRY_SIZE + 1);
|
|
read_cnt = sbuf_get(sbuf, (uint8_t *)buffer);
|
|
if (read_cnt > 0) {
|
|
uint32_t idx;
|
|
|
|
idx = (read_cnt < LOG_ENTRY_SIZE) ?
|
|
read_cnt : LOG_ENTRY_SIZE;
|
|
buffer[idx] = '\0';
|
|
|
|
spinlock_irqsave_obtain(&(logmsg.lock));
|
|
printf("%s\n\r", buffer);
|
|
spinlock_irqrestore_release(&(logmsg.lock));
|
|
}
|
|
} while (read_cnt > 0);
|
|
}
|
|
}
|