acrn-hypervisor/hypervisor/release/console.c
Minggui Cao fde0bcc1ce HV: disable vuart when dbg uart is disabled
vuart it used for SOS to output log to HV console,
so if dbg uart is disabled, it need be disabled too:
just unregister its PIO.

Tracked-On: 2170
Signed-off-by: Minggui Cao <minggui.cao@intel.com>
Acked-by: Eddie Dong <eddie.dong@intel.com>
2019-01-02 12:15:53 +08:00

33 lines
718 B
C

/*
* Copyright (C) 2018 Intel Corporation. All rights reserved.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
#include <hypervisor.h>
size_t console_write(__unused const char *str, __unused size_t len)
{
return 0;
}
char console_getc(void)
{
return '\0';
}
void console_putc(__unused const char *ch) {}
void console_init(void) {}
void console_setup_timer(void) {}
void suspend_console(void) {}
void resume_console(void) {}
void uart16550_set_property(__unused bool enabled, __unused bool port_mapped, __unused uint64_t base_addr) {}
bool is_pci_dbg_uart(__unused union pci_bdf bdf_value) { return false; }
bool is_dbg_uart_enabled(void) { return false; }
void shell_init(void) {}
void shell_kick(void) {}