1 /*
2  * Project Acrn
3  * Acrn-dm: pm-vuart
4  *
5  * Copyright (C) 2019-2022 Intel Corporation.
6  *
7  * SPDX-License-Identifier: BSD-3-Clause
8  *
9  */
10 
11 #ifndef	__PM_VUART__
12 #define	__PM_VUART__
13 
14 int parse_pm_by_vuart(const char *opts); /* obsolete interface */
15 int pm_by_vuart_init(struct vmctx *ctx, bool trigger_s5);
16 void pm_by_vuart_deinit(struct vmctx *ctx);
17 
18 #endif
19