Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0 OR MIT */
0002 
0003 /*
0004  *  Xen para-virtual DRM device
0005  *
0006  * Copyright (C) 2016-2018 EPAM Systems Inc.
0007  *
0008  * Author: Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
0009  */
0010 
0011 #ifndef __XEN_DRM_FRONT_KMS_H_
0012 #define __XEN_DRM_FRONT_KMS_H_
0013 
0014 #include <linux/types.h>
0015 
0016 struct xen_drm_front_drm_info;
0017 struct xen_drm_front_drm_pipeline;
0018 
0019 int xen_drm_front_kms_init(struct xen_drm_front_drm_info *drm_info);
0020 
0021 void xen_drm_front_kms_fini(struct xen_drm_front_drm_info *drm_info);
0022 
0023 void xen_drm_front_kms_on_frame_done(struct xen_drm_front_drm_pipeline *pipeline,
0024                      u64 fb_cookie);
0025 
0026 #endif /* __XEN_DRM_FRONT_KMS_H_ */