blob: 868132156e9bbcae543dc159ace0baa5e9303654 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
 | /* SPDX-License-Identifier: GPL-2.0
 *
 * (C) 2020, EPAM Systems Inc.
 */
#ifndef __XEN_H__
#define __XEN_H__
/**
 * xen_init() - Xen initialization
 *
 * Map Xen memory pages, initialize event handler and xenbus,
 * setup the grant table.
 */
int xen_init(void);
/**
 * xen_fini() - Board cleanup before Linux kernel start
 *
 * Unmap Xen memory pages the specified guest's pseudophysical
 * address space and unbind all event channels.
 */
void xen_fini(void);
#endif /* __XEN_H__ */
 |