commit d1edce71135cc6d98c0a4b5729774542b676e769 Author: sophgo-forum-service <forum_service@sophgo.com> Date: Fri Mar 15 16:07:33 2024 +0800 [fix] recommend using ssh method to clone repo. [fix] fix sensor driver repo branch name.
25 lines
489 B
C
25 lines
489 B
C
/* 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__ */
|