1 /**************************************************************************
5 * Copyright 2015 Samsung Electronics co., Ltd. All Rights Reserved.
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 <boram1288.park@samsung.com>
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:
22 * The above copyright notice and this permission notice (including the
23 * next paragraph) shall be included in all copies or substantial portions
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.
34 **************************************************************************/
36 #ifndef _TDM_COMMON_H_
37 #define _TDM_COMMON_H_
45 #define TDM_NAME_LEN 64
46 #define TDM_PATH_LEN 1024
47 #define TDM_VBLANK_DEFAULT_NAME "Unknown"
51 * @brief The header file which defines Enumerations and Structures for TDM
52 * frontend, backend and client.
56 * @brief The error enumeration
59 TDM_ERROR_NONE = 0, /**< none */
60 TDM_ERROR_BAD_REQUEST = -1, /**< bad request */
61 TDM_ERROR_OPERATION_FAILED = -2, /**< operaion failed */
62 TDM_ERROR_INVALID_PARAMETER = -3, /**< wrong input parameter */
63 TDM_ERROR_PERMISSION_DENIED = -4, /**< access denied */
64 TDM_ERROR_BUSY = -5, /**< hardware resource busy */
65 TDM_ERROR_OUT_OF_MEMORY = -6, /**< no free memory */
66 TDM_ERROR_BAD_MODULE = -7, /**< bad backend module */
67 TDM_ERROR_NOT_IMPLEMENTED = -8, /**< not implemented */
68 TDM_ERROR_NO_CAPABILITY = -9, /**< no capability */
69 TDM_ERROR_DPMS_OFF = -10, /**< dpms off */
70 TDM_ERROR_OUTPUT_DISCONNECTED = -11, /**< output disconnected */
71 TDM_ERROR_PROTOCOL_ERROR = -12, /**< protocol error */
72 TDM_ERROR_TIMEOUT = -13, /**< timeout */
73 TDM_ERROR_NO_MODULE = -14, /**< no backend module */
77 * @brief The transform enumeration(rotate, flip)
80 TDM_TRANSFORM_NORMAL = 0, /**< no transform */
81 TDM_TRANSFORM_90 = 1, /**< rotate 90 */
82 TDM_TRANSFORM_180 = 2, /**< rotate 180 */
83 TDM_TRANSFORM_270 = 3, /**< rotate 270 */
84 TDM_TRANSFORM_FLIPPED = 4, /**< no rotate and horizontal flip */
85 TDM_TRANSFORM_FLIPPED_90 = 5, /**< rotate 90 and horizontal flip */
86 TDM_TRANSFORM_FLIPPED_180 = 6, /**< rotate 180 and horizontal flip */
87 TDM_TRANSFORM_FLIPPED_270 = 7, /**< rotate 270 and horizontal flip */
91 * @brief The output capability enumeration
93 * If a backend module provides #TDM_OUTPUT_CAPABILITY_EXTENDED_DPMS, we can set
94 * an extended DPMS mode to an output which a backend module supports.
95 * Don't use the low-4bit for an extended DPMS mode value. It's used for default
99 TDM_OUTPUT_CAPABILITY_ASYNC_DPMS = (1 << 0), /**< if a outupt supports asynchronous DPMS operation */
100 TDM_OUTPUT_CAPABILITY_HWC = (1 << 1), /**< if a outupt supports hwc operation @since 2.0.0*/
101 TDM_OUTPUT_CAPABILITY_EXTENDED_DPMS = (1 << 2), /**< if a outupt supports extended DPMS operation @since 2.0.0 */
102 TDM_OUTPUT_CAPABILITY_MIRROR = (1 << 3), /**< if a outupt supports the displying mirror image of the src_output @since 2.9.0 */
103 } tdm_output_capability;
106 * @brief The layer capability enumeration
108 * A layer can have one of CURSOR, PRIMARY and OVERLAY capability. And a layer
109 * also can have one of GRAPHIC and VIDEO capability. And a layer also can have
110 * SCALE and TRANSFORM capability.\n
114 * capabilities = TDM_LAYER_CAPABILITY_PRIMARY | TDM_LAYER_CAPABILITY_GRAPHIC;
115 * capabilities = TDM_LAYER_CAPABILITY_OVERLAY | TDM_LAYER_CAPABILITY_GRAPHIC | TDM_LAYER_CAPABILITY_SCALE;
116 * capabilities = TDM_LAYER_CAPABILITY_OVERLAY | TDM_LAYER_CAPABILITY_GRAPHIC | TDM_LAYER_CAPABILITY_SCALE | TDM_LAYER_CAPABILITY_TRANSFORM;
117 * capabilities = TDM_LAYER_CAPABILITY_CURSOR | TDM_LAYER_CAPABILITY_GRAPHIC;
118 * capabilities = TDM_LAYER_CAPABILITY_OVERLAY | TDM_LAYER_CAPABILITY_VIDEO;
121 * - When a video plays, in most of cases, video buffers will be displayed to
122 * a GRAPHIC layer after converting RGB buffers via PP. In this case, a backend
123 * module doesn't need to offer VIDEO layer.
124 * - But in case that s vendor wants to handle a video by their own way,
125 * a backend module offer VIDEO layers. And a display server will pass a video
126 * buffer to a VIDEO layer without converting.
129 TDM_LAYER_CAPABILITY_CURSOR = (1 << 0), /**< cursor */
130 TDM_LAYER_CAPABILITY_PRIMARY = (1 << 1), /**< primary */
131 TDM_LAYER_CAPABILITY_OVERLAY = (1 << 2), /**< overlay */
132 TDM_LAYER_CAPABILITY_GRAPHIC = (1 << 4), /**< graphic */
133 TDM_LAYER_CAPABILITY_VIDEO = (1 << 5), /**< video */
134 TDM_LAYER_CAPABILITY_SCALE = (1 << 8), /**< if a layer has scale capability */
135 TDM_LAYER_CAPABILITY_TRANSFORM = (1 << 9), /**< if a layer has transform capability */
136 TDM_LAYER_CAPABILITY_SCANOUT = (1 << 10), /**< if a layer allows a scanout buffer only */
137 TDM_LAYER_CAPABILITY_RESEVED_MEMORY = (1 << 11), /**< if a layer allows a reserved buffer only */
138 TDM_LAYER_CAPABILITY_NO_CROP = (1 << 12), /**< if a layer has no cropping capability */
139 } tdm_layer_capability;
142 * @brief The pp capability enumeration
143 * @details The scale, transform and CSC functionalities seem the default functions of PP.
144 * If hardware device doesn't support one of them, we'd better let a developer know
145 * what a backend doesn't support like TDM_PP_CAPABILITY_NO_CSC.
148 TDM_PP_CAPABILITY_SYNC = (1 << 0), /**< The pp device supports synchronous operation */
149 TDM_PP_CAPABILITY_ASYNC = (1 << 1), /**< The pp device supports asynchronous operation */
150 TDM_PP_CAPABILITY_SCANOUT = (1 << 4), /**< The pp device supports only scanout buffer */
151 TDM_PP_CAPABILITY_NO_CSC = (1 << 5), /**< The pp device doesn't supports Color Space Conversion */
155 * @brief The capture capability enumeration
156 * @details The scale, transform and CSC functionalities seem the default functions of capture.
157 * If hardware device doesn't support one of them, we'd better let a developer know
158 * what a backend doesn't support like TDM_PP_CAPABILITY_NO_CSC.
161 TDM_CAPTURE_CAPABILITY_OUTPUT = (1 << 0), /**< The capture device supports to dump a output */
162 TDM_CAPTURE_CAPABILITY_LAYER = (1 << 1), /**< The capture device supports to dump a layer */
163 TDM_CAPTURE_CAPABILITY_ONESHOT = (1 << 4), /**< The capture device supports oneshot dump */
164 TDM_CAPTURE_CAPABILITY_STREAM = (1 << 5), /**< The capture device supports streamp sump */
165 } tdm_capture_capability;
168 * @brief The capture type enumeration
171 TDM_CAPTURE_TYPE_ONESHOT = (1 << 0), /**< The oneshot capture */
172 TDM_CAPTURE_TYPE_STREAM = (1 << 1), /**< The stream capture */
176 * @brief The output change enumeration of #tdm_output_change_handler
179 TDM_OUTPUT_CHANGE_CONNECTION = (1 << 0), /**< connection chagne */
180 TDM_OUTPUT_CHANGE_DPMS = (1 << 1), /**< dpms change */
181 } tdm_output_change_type;
184 * @brief The output connection status enumeration
187 TDM_OUTPUT_CONN_STATUS_DISCONNECTED, /**< output disconnected */
188 TDM_OUTPUT_CONN_STATUS_CONNECTED, /**< output connected */
189 TDM_OUTPUT_CONN_STATUS_MODE_SETTED, /**< output connected and setted a mode */
190 } tdm_output_conn_status;
193 * @brief The output connection status enumeration
194 * @details bit compatible with the libdrm definitions.
197 TDM_OUTPUT_TYPE_Unknown, /**< unknown */
198 TDM_OUTPUT_TYPE_VGA, /**< VGA connection */
199 TDM_OUTPUT_TYPE_DVII, /**< DVII connection */
200 TDM_OUTPUT_TYPE_DVID, /**< DVID connection */
201 TDM_OUTPUT_TYPE_DVIA, /**< DVIA connection */
202 TDM_OUTPUT_TYPE_Composite, /**< Composite connection */
203 TDM_OUTPUT_TYPE_SVIDEO, /**< SVIDEO connection */
204 TDM_OUTPUT_TYPE_LVDS, /**< LVDS connection */
205 TDM_OUTPUT_TYPE_Component, /**< Component connection */
206 TDM_OUTPUT_TYPE_9PinDIN, /**< 9PinDIN connection */
207 TDM_OUTPUT_TYPE_DisplayPort, /**< DisplayPort connection */
208 TDM_OUTPUT_TYPE_HDMIA, /**< HDMIA connection */
209 TDM_OUTPUT_TYPE_HDMIB, /**< HDMIB connection */
210 TDM_OUTPUT_TYPE_TV, /**< TV connection */
211 TDM_OUTPUT_TYPE_eDP, /**< eDP connection */
212 TDM_OUTPUT_TYPE_VIRTUAL, /**< Virtual connection for WiFi Display */
213 TDM_OUTPUT_TYPE_DSI, /**< DSI connection */
217 * @brief The DPMS enumeration
218 * @details bit compatible with the libdrm definitions.
221 TDM_OUTPUT_DPMS_ON, /**< On, Vsync On */
222 TDM_OUTPUT_DPMS_STANDBY, /**< StandBy, Vsync On */
223 TDM_OUTPUT_DPMS_SUSPEND, /**< Suspend, Vsync Off */
224 TDM_OUTPUT_DPMS_OFF, /**< Off, Vsync Off */
225 TDM_OUTPUT_DPMS_AOD = 0x10, /**< AOD, Vsync On, extended DPMS mode */
229 * @brief The output mode type enumeration
230 * @details bit compatible with the libdrm definitions.
233 TDM_OUTPUT_MODE_TYPE_BUILTIN = (1 << 0),
234 TDM_OUTPUT_MODE_TYPE_CLOCK_C = ((1 << 1) | TDM_OUTPUT_MODE_TYPE_BUILTIN),
235 TDM_OUTPUT_MODE_TYPE_CRTC_C = ((1 << 2) | TDM_OUTPUT_MODE_TYPE_BUILTIN),
236 TDM_OUTPUT_MODE_TYPE_PREFERRED = (1 << 3),
237 TDM_OUTPUT_MODE_TYPE_DEFAULT = (1 << 4),
238 TDM_OUTPUT_MODE_TYPE_USERDEF = (1 << 5),
239 TDM_OUTPUT_MODE_TYPE_DRIVER = (1 << 6),
240 } tdm_output_mode_type;
243 * @brief The output mode flag enumeration
244 * @details bit compatible with the libdrm definitions.
247 TDM_OUTPUT_MODE_FLAG_PHSYNC = (1 << 0),
248 TDM_OUTPUT_MODE_FLAG_NHSYNC = (1 << 1),
249 TDM_OUTPUT_MODE_FLAG_PVSYNC = (1 << 2),
250 TDM_OUTPUT_MODE_FLAG_NVSYNC = (1 << 3),
251 TDM_OUTPUT_MODE_FLAG_INTERLACE = (1 << 4),
252 TDM_OUTPUT_MODE_FLAG_DBLSCAN = (1 << 5),
253 TDM_OUTPUT_MODE_FLAG_CSYNC = (1 << 6),
254 TDM_OUTPUT_MODE_FLAG_PCSYNC = (1 << 7),
255 TDM_OUTPUT_MODE_FLAG_NCSYNC = (1 << 8),
256 TDM_OUTPUT_MODE_FLAG_HSKEW = (1 << 9), /* hskew provided */
257 TDM_OUTPUT_MODE_FLAG_BCAST = (1 << 10),
258 TDM_OUTPUT_MODE_FLAG_PIXMUX = (1 << 11),
259 TDM_OUTPUT_MODE_FLAG_DBLCLK = (1 << 12),
260 TDM_OUTPUT_MODE_FLAG_CLKDIV2 = (1 << 13),
261 } tdm_output_mode_flag;
264 * @brief The hwc video capability enumeration
268 TDM_HWC_CAPABILITY_VIDEO_STREAM = (1 << 1), /**< if a hwc has video stream capability */
269 TDM_HWC_CAPABILITY_VIDEO_SCALE = (1 << 2), /**< if a hwc allows to scale the video buffer */
270 TDM_HWC_CAPABILITY_VIDEO_TRANSFORM = (1 << 3), /**< if a hwc allows video to transform the video buffer */
271 TDM_HWC_CAPABILITY_VIDEO_SCANOUT = (1 << 4), /**< if a hwc allows video to accept the scanout buffer only */
272 } tdm_hwc_capability;
275 * @brief The size structure
277 typedef struct _tdm_size {
278 unsigned int h; /**< width */
279 unsigned int v; /**< height */
283 * @brief The pos structure
285 typedef struct _tdm_pos {
293 * @brief The tdm value type enumeration
296 TDM_VALUE_TYPE_UNKNOWN,
298 TDM_VALUE_TYPE_INT32,
299 TDM_VALUE_TYPE_UINT32,
300 TDM_VALUE_TYPE_INT64,
301 TDM_VALUE_TYPE_UINT64,
305 * @brief The value union
319 #endif /* _TDM_COMMON_H_ */