2cda6d6436e97a72cede7b06d705ac48a059da2b
[platform/core/uifw/libtdm.git] / include / tdm_types.h
1 /**************************************************************************
2  *
3  * libtdm
4  *
5  * Copyright 2015 Samsung Electronics co., Ltd. All Rights Reserved.
6  *
7  * Contact: Eunchul Kim <chulspro.kim@samsung.com>,
8  *          JinYoung Jeon <jy0.jeon@samsung.com>,
9  *          Taeheon Kim <th908.kim@samsung.com>,
10  *          YoungJun Cho <yj44.cho@samsung.com>,
11  *          SooChan Lim <sc1.lim@samsung.com>,
12  *          Boram Park <sc1.lim@samsung.com>
13  *
14  * Permission is hereby granted, free of charge, to any person obtaining a
15  * copy of this software and associated documentation files (the
16  * "Software"), to deal in the Software without restriction, including
17  * without limitation the rights to use, copy, modify, merge, publish,
18  * distribute, sub license, and/or sell copies of the Software, and to
19  * permit persons to whom the Software is furnished to do so, subject to
20  * the following conditions:
21  *
22  * The above copyright notice and this permission notice (including the
23  * next paragraph) shall be included in all copies or substantial portions
24  * of the Software.
25  *
26  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
27  * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
28  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
29  * IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR
30  * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
31  * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
32  * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
33  *
34 **************************************************************************/
35
36 #ifndef _TDM_TYPES_H_
37 #define _TDM_TYPES_H_
38
39 #include <tbm_surface.h>
40
41 #ifdef __cplusplus
42 extern "C" {
43 #endif
44
45 /**
46  * @file tdm_types.h
47  * @brief The header file which defines Enumerations and Structures for frontend and backend.
48  * @details
49  * Both frontend(@ref tdm.h) and backend(@ref tdm_backend.h) header files
50  * include @ref tdm_types.h
51  * @par Example
52  * @code
53  * #include <tdm.h>    //for a frontend user
54  * @endcode
55  * @code
56  * #include <tdm_backend.h>  //for a vendor to implement a backend module
57  * @endcode
58  */
59
60 #include <tdm_common.h>
61
62 typedef enum {
63         TDM_EVENT_LOOP_READABLE = (1 << 0),
64         TDM_EVENT_LOOP_WRITABLE = (1 << 1),
65         TDM_EVENT_LOOP_HANGUP   = (1 << 2),
66         TDM_EVENT_LOOP_ERROR    = (1 << 3),
67 } tdm_event_loop_mask;
68
69 /**
70  * @brief The output mode structure
71  */
72 typedef struct _tdm_output_mode {
73         unsigned int clock;
74         unsigned int hdisplay, hsync_start, hsync_end, htotal, hskew;
75         unsigned int vdisplay, vsync_start, vsync_end, vtotal, vscan;
76         unsigned int vrefresh;
77         unsigned int flags;
78         unsigned int type;
79         char name[TDM_NAME_LEN];
80 } tdm_output_mode;
81
82 /**
83  * @brief The property structure
84  */
85 typedef struct _tdm_prop {
86         unsigned int id;
87         char name[TDM_NAME_LEN];
88         tdm_value_type type;
89 } tdm_prop;
90
91 /**
92  * @brief The info config structure
93  */
94 typedef struct _tdm_info_config {
95         tdm_size size;
96         tdm_pos pos;
97         tbm_format format;
98 } tdm_info_config;
99
100 /**
101  * @brief The layer info structre
102  */
103 typedef struct _tdm_info_layer {
104         tdm_info_config src_config;
105         tdm_pos dst_pos;
106         tdm_transform transform;
107 } tdm_info_layer;
108
109 /**
110  * @brief The pp info structre
111  */
112 typedef struct _tdm_info_pp {
113         tdm_info_config src_config;
114         tdm_info_config dst_config;
115         tdm_transform transform;
116         int sync;
117         int flags;
118 } tdm_info_pp;
119
120 /**
121  * @brief The capture info structre
122  */
123 typedef struct _tdm_info_capture {
124         tdm_info_config dst_config;
125         tdm_transform transform;
126         tdm_capture_type type;
127         int frequency;
128         int flags;
129 } tdm_info_capture;
130
131 /**
132  * @brief The tdm display object
133  */
134 typedef void tdm_display;
135
136 /**
137  * @brief The tdm output object
138  */
139 typedef void tdm_output;
140
141 /**
142  * @brief The tdm layer object
143  */
144 typedef void tdm_layer;
145
146 /**
147  * @brief The tdm capture object
148  */
149 typedef void tdm_capture;
150
151 /**
152  * @brief The tdm pp object
153  */
154 typedef void tdm_pp;
155
156 /**
157  * @brief The tdm vblank object
158  */
159 typedef void tdm_vblank;
160
161 /**
162  * @brief The vblank handler
163  * @see output_set_vblank_handler() function of #tdm_func_display
164  */
165 typedef void (*tdm_output_vblank_handler)(tdm_output *output, unsigned int sequence,
166                                                                                   unsigned int tv_sec, unsigned int tv_usec,
167                                                                                   void *user_data);
168
169 /**
170  * @brief The output commit handler
171  * @see output_set_commit_handler() function of #tdm_func_display
172  */
173 typedef void (*tdm_output_commit_handler)(tdm_output *output, unsigned int sequence,
174                                                                                   unsigned int tv_sec, unsigned int tv_usec,
175                                                                                   void *user_data);
176
177 /**
178  * @brief The layer commit handler
179  */
180 typedef void (*tdm_layer_commit_handler)(tdm_layer *layer, unsigned int sequence,
181                                                                                  unsigned int tv_sec, unsigned int tv_usec,
182                                                                                  void *user_data);
183
184 /**
185  * @brief The done handler of a pp object
186  */
187 typedef void (*tdm_pp_done_handler)(tdm_pp *pp, tbm_surface_h src,
188                                                                         tbm_surface_h dst, void *user_data);
189
190 /**
191  * @brief The done handler of a capture object
192  */
193 typedef void (*tdm_capture_done_handler)(tdm_capture *capture,
194                                                                                  tbm_surface_h buffer, void *user_data);
195
196 #ifdef __cplusplus
197 }
198 #endif
199
200 #endif /* _TDM_TYPES_H_ */