2018-11-27 15:08:22 +08:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2018 Intel Corporation. All rights reserved.
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
*/
|
|
|
|
|
2019-02-28 10:58:32 +08:00
|
|
|
#include <types.h>
|
|
|
|
#include <vm.h>
|
2018-11-27 15:08:22 +08:00
|
|
|
|
|
|
|
void vuart_init(__unused struct acrn_vm *vm) {}
|
|
|
|
|
|
|
|
struct acrn_vuart *vuart_console_active(void)
|
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
void vuart_console_tx_chars(__unused struct acrn_vuart *vu) {}
|
|
|
|
void vuart_console_rx_chars(__unused struct acrn_vuart *vu) {}
|
2018-12-24 21:41:31 +08:00
|
|
|
|
2019-01-10 11:15:11 +08:00
|
|
|
bool hv_used_dbg_intx(__unused uint32_t intx_pin)
|
2018-12-24 21:41:31 +08:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|