[media] v4l: vsp1: Add header display list support
[cascardo/linux.git] / drivers / media / platform / vsp1 / vsp1_dl.h
1 /*
2  * vsp1_dl.h  --  R-Car VSP1 Display List
3  *
4  * Copyright (C) 2015 Renesas Corporation
5  *
6  * Contact: Laurent Pinchart (laurent.pinchart@ideasonboard.com)
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  */
13 #ifndef __VSP1_DL_H__
14 #define __VSP1_DL_H__
15
16 #include <linux/types.h>
17
18 struct vsp1_device;
19 struct vsp1_dl_list;
20 struct vsp1_dl_manager;
21
22 void vsp1_dlm_setup(struct vsp1_device *vsp1);
23
24 struct vsp1_dl_manager *vsp1_dlm_create(struct vsp1_device *vsp1,
25                                         unsigned int index,
26                                         unsigned int prealloc);
27 void vsp1_dlm_destroy(struct vsp1_dl_manager *dlm);
28 void vsp1_dlm_reset(struct vsp1_dl_manager *dlm);
29 void vsp1_dlm_irq_display_start(struct vsp1_dl_manager *dlm);
30 void vsp1_dlm_irq_frame_end(struct vsp1_dl_manager *dlm);
31
32 struct vsp1_dl_list *vsp1_dl_list_get(struct vsp1_dl_manager *dlm);
33 void vsp1_dl_list_put(struct vsp1_dl_list *dl);
34 void vsp1_dl_list_write(struct vsp1_dl_list *dl, u32 reg, u32 data);
35 void vsp1_dl_list_commit(struct vsp1_dl_list *dl);
36
37 #endif /* __VSP1_DL_H__ */