mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-06-19 04:02:05 +00:00
vuart can be used as communication channel between VMs; here vuart used to control vm's power off flow; control command is from SOS to UOS Tracked-On: #3564 Signed-off-by: Minggui Cao <minggui.cao@intel.com> Acked-by: Yin Fengwei <fengwei.yin@intel.com>
19 lines
335 B
C
19 lines
335 B
C
/*
|
|
* Project Acrn
|
|
* Acrn-dm: pm-vuart
|
|
*
|
|
* Copyright (C) 2019 Intel Corporation. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*
|
|
*/
|
|
|
|
#ifndef __PM_VUART__
|
|
#define __PM_VUART__
|
|
|
|
int parse_pm_by_vuart(const char *opts);
|
|
void pm_by_vuart_init(struct vmctx *ctx);
|
|
void pm_by_vuart_deinit(struct vmctx *ctx);
|
|
|
|
#endif
|