implement new mechanism for smooth transition from DEVICE to CLIENT
[platform/core/uifw/libtdm.git] / include / tdm_backend.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_BACKEND_H_
37 #define _TDM_BACKEND_H_
38
39 #include <tbm_surface.h>
40 #include <tbm_surface_queue.h>
41
42 #include "tdm_types.h"
43
44 #ifdef __cplusplus
45 extern "C" {
46 #endif
47
48 /**
49  * @file tdm_backend.h
50  * @brief The backend header file of TDM to implement a TDM backend module.
51  * @par Example
52  * @code
53  * #include <tdm_backend.h>
54  * @endcode
55  */
56
57 /**
58  * @brief The backend module data
59  * @details
60  * The init() function of #tdm_backend_module returns the backend module data.
61  * And it will be passed to display functions of #tdm_func_display.
62  * @see tdm_backend_module, tdm_backend_module
63  */
64 typedef void tdm_backend_data;
65
66 /**
67  * @brief The output status handler
68  * @details This handler will be called when the status of a output object is
69  * changed in runtime.
70  */
71 typedef void (*tdm_output_status_handler)(tdm_output *output,
72                                                                                   tdm_output_conn_status status,
73                                                                                   void *user_data);
74
75 /**
76  * @brief The output dpms handler
77  * @details This handler will be called when the dpms of a output object is
78  * changed in runtime.
79  */
80 typedef void (*tdm_output_dpms_handler)(tdm_output *output,
81                                                                                 tdm_output_dpms dpms,
82                                                                                 void *user_data);
83
84 /**
85  * @brief The display capabilities structure of a backend module
86  * @see The display_get_capability() function of #tdm_func_display
87  */
88 typedef struct _tdm_caps_display {
89         int max_layer_count;    /**< The maximum layer count */
90 } tdm_caps_display;
91
92 /**
93  * @brief The capabilities structure of a output object
94  * @see The output_get_capability() function of #tdm_func_output
95  */
96 typedef struct _tdm_caps_output {
97         char maker[TDM_NAME_LEN];       /**< The output maker */
98         char model[TDM_NAME_LEN];       /**< The output model */
99         char name[TDM_NAME_LEN];        /**< The output name */
100
101         tdm_output_conn_status status;  /**< The connection status */
102         tdm_output_type type;           /**< The connection type */
103         unsigned int type_id;           /**< The connection type id */
104
105         unsigned int mode_count;        /**< The count of available modes */
106         tdm_output_mode
107         *modes;         /**< The @b newly-allocated array of modes. will be freed in frontend. */
108
109         unsigned int prop_count;        /**< The count of available properties */
110         tdm_prop *props;                /**< The @b newly-allocated array of properties. will be freed in frontend. */
111
112         unsigned int mmWidth;           /**< The physical width (milimeter) */
113         unsigned int mmHeight;          /**< The physical height (milimeter) */
114         unsigned int subpixel;          /**< The subpixel */
115
116         int min_w;              /**< The minimun width */
117         int min_h;              /**< The minimun height */
118         int max_w;              /**< The maximum width */
119         int max_h;              /**< The maximum height */
120         int preferred_align;    /**< The prefered align */
121
122         tdm_output_capability capabilities;  /**< The capabilities of output. @since 1.4.1 */
123
124         int cursor_min_w;              /**< The minimun width.  @since 1.5.0 */
125         int cursor_min_h;              /**< The minimun height. @since 1.5.0 */
126         int cursor_max_w;              /**< The maximum width. @since 1.5.0 */
127         int cursor_max_h;              /**< The maximum height. @since 1.5.0 */
128         int cursor_preferred_align;    /**< The prefered align. @since 1.5.0 */
129 } tdm_caps_output;
130
131 /**
132  * @brief The capabilities structure of a layer object
133  * @see The layer_get_capability() function of #tdm_func_layer
134  */
135 typedef struct _tdm_caps_layer {
136         tdm_layer_capability capabilities;  /**< The capabilities of layer */
137
138         /**
139          * The z-order
140          * GRAPHIC layers are non-changeable. The zpos of GRAPHIC layers starts
141          * from 0. If there are 4 GRAPHIC layers, The zpos SHOULD be 0, 1, 2, 3.\n
142          * But the zpos of VIDEO layer is changeable by layer_set_video_pos() function
143          * of #tdm_func_layer. And The zpos of VIDEO layers is less than GRAPHIC
144          * layers or more than GRAPHIC layers.
145          * ie, ..., -2, -1, 4, 5, ... (if 0 <= GRAPHIC layer's zpos < 4).
146          * The zpos of VIDEO layers is @b relative. It doesn't need to start
147          * from -1 or 4. Let's suppose that there are two VIDEO layers.
148          * One has -2 zpos. Another has -4 zpos. Then -2 Video layer is higher
149          * than -4 VIDEO layer.
150         */
151         int zpos;
152
153         unsigned int format_count;      /**< The count of available formats */
154         tbm_format
155         *formats;            /**< The @b newly-allocated array of formats. will be freed in frontend. */
156
157         unsigned int prop_count;        /**< The count of available properties */
158         tdm_prop *props;                /**< The @b newly-allocated array of properties. will be freed in frontend. */
159 } tdm_caps_layer;
160
161 /**
162  * @brief The capabilities structure of a pp object
163  * @see The display_get_pp_capability() function of #tdm_func_display
164  */
165 typedef struct _tdm_caps_pp {
166         tdm_pp_capability capabilities; /**< The capabilities of pp */
167
168         unsigned int format_count;      /**< The count of available formats */
169         tbm_format
170         *formats;            /**< The @b newly-allocated array. will be freed in frontend. */
171
172         int min_w;              /**< The minimun width */
173         int min_h;              /**< The minimun height */
174         int max_w;              /**< The maximum width */
175         int max_h;              /**< The maximum height */
176         int preferred_align;    /**< The prefered align */
177
178         /**< The attach count which a PP object can handle. @since 1.2.0 */
179         int max_attach_count;
180 } tdm_caps_pp;
181
182 /**
183  * @brief The capabilities structure of a capture object
184  * @see The display_get_capture_capability() function of #tdm_func_display
185  */
186 typedef struct _tdm_caps_capture {
187         tdm_capture_capability capabilities;    /**< The capabilities of capture */
188
189         unsigned int format_count;      /**< The count of available formats */
190         tbm_format
191         *formats;            /**< The @b newly-allocated array of formats. will be freed in frontend. */
192
193         int min_w;              /**< The minimun width */
194         int min_h;              /**< The minimun height */
195         int max_w;              /**< The maximum width */
196         int max_h;              /**< The maximum height */
197         int preferred_align;    /**< The prefered align */
198
199         /**< The attach count which a capture object can handle. @since 1.2.0 */
200         int max_attach_count;
201 } tdm_caps_capture;
202
203 /**
204  * @brief The display functions for a backend module.
205  */
206 typedef struct _tdm_func_display {
207         /**
208          * @brief Get the display capabilities of a backend module
209          * @param[in] bdata The backend module data
210          * @param[out] caps The display capabilities of a backend module
211          * @return #TDM_ERROR_NONE if success. Otherwise, error value.
212          * @remark
213          * A backend module @b SHOULD implement this function. TDM calls this function
214          * not only at the initial time, but also at the update time when new output
215          * is connected.\n
216          * If a hardware has the restriction of the number of max usable layer count,
217          * a backend module can set the max count to max_layer_count of #tdm_caps_display
218          * structure.
219          */
220         tdm_error (*display_get_capability)(tdm_backend_data *bdata, tdm_caps_display *caps);
221
222         /**
223          * @brief Get the pp capabilities of a backend module
224          * @param[in] bdata The backend module data
225          * @param[out] caps The pp capabilities of a backend module
226          * @return #TDM_ERROR_NONE if success. Otherwise, error value.
227          * @see tdm_backend_register_func_pp
228          * @remark
229          * TDM calls this function not only at the initial time, but also at the update
230          * time when new output is connected.\n
231          * A backend module doesn't need to implement this function if a hardware
232          * doesn't have the memory-to-memory converting device. Otherwise, a backend module
233          * @b SHOULD fill the #tdm_caps_pp data. #tdm_caps_pp contains the hardware
234          * restriction information which a converting device can handle. ie, format, size, etc.
235          */
236         tdm_error (*display_get_pp_capability)(tdm_backend_data *bdata, tdm_caps_pp *caps);
237
238         /**
239          * @brief Get the capture capabilities of a backend module
240          * @param[in] bdata The backend module data
241          * @param[out] caps The capture capabilities of a backend module
242          * @return #TDM_ERROR_NONE if success. Otherwise, error value.
243          * @see tdm_backend_register_func_capture
244          * @remark
245          * TDM calls this function not only at the initial time, but also at the update
246          * time when new output is connected.\n
247          * A backend module doesn't need to implement this function if a hardware
248          * doesn't have the capture device. Otherwise, a backend module @b SHOULD fill the
249          * #tdm_caps_capture data. #tdm_caps_capture contains the hardware restriction
250          * information which a capture device can handle. ie, format, size, etc.
251          */
252         tdm_error (*display_get_capture_capability)(tdm_backend_data *bdata, tdm_caps_capture *caps);
253
254         /**
255          * @brief Get a output array of a backend module
256          * @param[in] bdata The backend module data
257          * @param[out] count The count of outputs
258          * @param[out] error #TDM_ERROR_NONE if success. Otherwise, error value.
259          * @return A output array which is @b newly-allocated
260          * @see tdm_backend_register_func_capture
261          * @remark
262          * A backend module @b SHOULD implement this function. TDM calls this function
263          * not only at the initial time, but also at the update time when new output
264          * is connected.\n
265          * A backend module @b SHOULD return the @b newly-allocated array which contains
266          * "tdm_output*" data. It will be freed in frontend.
267          * @par Example
268          * @code
269          *  tdm_output**
270          *  drm_display_get_outputs(tdm_backend_data *bdata, int *count, tdm_error *error)
271          *  {
272          *      tdm_drm_data *drm_data = bdata;
273          *      tdm_drm_output_data *output_data = NULL;
274          *      tdm_output **outputs;
275          *      int i;
276          *
277          *      (*count) = 0;
278          *      LIST_FOR_EACH_ENTRY(output_data, &drm_data->output_list, link)
279          *          (*count)++;
280          *
281          *      if ((*count) == 0)
282          *      {
283          *          if (error) *error = TDM_ERROR_NONE;
284          *          return NULL;
285          *      }
286          *
287          *      // will be freed in frontend
288          *      outputs = calloc(*count, sizeof(tdm_drm_output_data*));
289          *      if (!outputs)
290          *      {
291          *          (*count) = 0;
292          *          if (error) *error = TDM_ERROR_OUT_OF_MEMORY;
293          *          return NULL;
294          *      }
295          *
296          *      i = 0;
297          *      LIST_FOR_EACH_ENTRY(output_data, &drm_data->output_list, link)
298          *          outputs[i++] = output_data;
299          *
300          *      if (error) *error = TDM_ERROR_NONE;
301          *
302          *      return outputs;
303          *  }
304          * @endcode
305          */
306         tdm_output **(*display_get_outputs)(tdm_backend_data *bdata, int *count,
307                                                                                 tdm_error *error);
308
309         /**
310          * @brief Get the file descriptor of a backend module
311          * @param[in] bdata The backend module data
312          * @param[out] fd The fd of a backend module
313          * @return #TDM_ERROR_NONE if success. Otherwise, error value.
314          * @see display_handle_events() function of #tdm_func_display
315          * @remark
316          * A backend module can return epoll's fd which is watching the backend device one more fds.
317          */
318         tdm_error (*display_get_fd)(tdm_backend_data *bdata, int *fd);
319
320         /**
321          * @brief Handle the events which happens on the fd of a backend module
322          * @param[in] bdata The backend module data
323          * @return #TDM_ERROR_NONE if success. Otherwise, error value.
324          */
325         tdm_error (*display_handle_events)(tdm_backend_data *bdata);
326
327         /**
328          * @brief Create a pp object of a backend module
329          * @param[in] bdata The backend module data
330          * @param[out] error #TDM_ERROR_NONE if success. Otherwise, error value.
331          * @return A pp object
332          * @see pp_destroy() function of #tdm_func_pp
333          * @remark
334          * A backend module doesn't need to implement this function if a hardware
335          * doesn't have the memory-to-memory converting device.
336          */
337         tdm_pp *(*display_create_pp)(tdm_backend_data *bdata, tdm_error *error);
338
339         void (*reserved1)(void);
340         void (*reserved2)(void);
341         void (*reserved3)(void);
342         void (*reserved4)(void);
343         void (*reserved5)(void);
344         void (*reserved6)(void);
345         void (*reserved7)(void);
346         void (*reserved8)(void);
347 } tdm_func_display;
348
349 /**
350  * @brief The output functions for a backend module.
351  */
352 typedef struct _tdm_func_output {
353         /**
354          * @brief Get the capabilities of a output object
355          * @param[in] output A output object
356          * @param[out] caps The capabilities of a output object
357          * @return #TDM_ERROR_NONE if success. Otherwise, error value.
358          * @remark
359          * A backend module @b SHOULD implement this function. TDM calls this function
360          * not only at the initial time, but also at the update time when new output
361          * is connected.\n
362          * #tdm_caps_output contains connection status, modes, avaiable properties,
363          * size restriction information, etc.
364          */
365         tdm_error (*output_get_capability)(tdm_output *output, tdm_caps_output *caps);
366
367         /**
368          * @brief Get a layer array of a output object
369          * @param[in] output A output object
370          * @param[out] count The count of layers
371          * @param[out] error #TDM_ERROR_NONE if success. Otherwise, error value.
372          * @return A layer array which is @b newly-allocated
373          * @remark
374          * A backend module @b SHOULD implement this function. TDM calls this function
375          * not only at the initial time, but also at the update time when new output
376          * is connected.\n
377          * A backend module @b SHOULD return the @b newly-allocated array which contains
378          * "tdm_layer*" data. It will be freed in frontend.
379          */
380         tdm_layer **(*output_get_layers)(tdm_output *output, int *count,
381                                                                          tdm_error *error);
382
383         /**
384          * @brief Set the property which has a given id
385          * @param[in] output A output object
386          * @param[in] id The property id
387          * @param[in] value The value
388          * @return #TDM_ERROR_NONE if success. Otherwise, error value.
389          */
390         tdm_error (*output_set_property)(tdm_output *output, unsigned int id,
391                                                                          tdm_value value);
392
393         /**
394          * @brief Get the property which has a given id
395          * @param[in] output A output object
396          * @param[in] id The property id
397          * @param[out] value The value
398          * @return #TDM_ERROR_NONE if success. Otherwise, error value.
399          */
400         tdm_error (*output_get_property)(tdm_output *output, unsigned int id,
401                                                                          tdm_value *value);
402
403         /**
404          * @brief Wait for VBLANK
405          * @param[in] output A output object
406          * @param[in] interval vblank interval
407          * @param[in] sync 0: asynchronous, 1:synchronous
408          * @param[in] user_data The user data
409          * @return #TDM_ERROR_NONE if success. Otherwise, error value.
410          * @see output_set_vblank_handler, tdm_output_vblank_handler
411          * @remark
412          * If this function returns TDM_ERROR_NONE, a backend module @b SHOULD call
413          * a user vblank handler with the user data of this function after interval
414          * vblanks.
415          */
416         tdm_error (*output_wait_vblank)(tdm_output *output, int interval, int sync,
417                                                                         void *user_data);
418
419         /**
420          * @brief Set a user vblank handler
421          * @param[in] output A output object
422          * @param[in] func A user vblank handler
423          * @return #TDM_ERROR_NONE if success. Otherwise, error value.
424          */
425         tdm_error (*output_set_vblank_handler)(tdm_output *output,
426                                                                                    tdm_output_vblank_handler func);
427
428         /**
429          * @brief Commit changes for a output object
430          * @param[in] output A output object
431          * @param[in] sync 0: asynchronous, 1:synchronous
432          * @param[in] user_data The user data
433          * @return #TDM_ERROR_NONE if success. Otherwise, error value.
434          * @see output_set_commit_handler, tdm_output_commit_handler
435          * @remark
436          * When this function is called, a backend module @b SHOULD apply the all
437          * changes of the given output object to screen as well as the layer changes
438          * of this output.
439          * If this function returns TDM_ERROR_NONE, a backend module @b SHOULD call
440          * a user commit handler with the user data of this function after all
441          * changes of the given output object are applied.
442          */
443         tdm_error (*output_commit)(tdm_output *output, int sync, void *user_data);
444
445         /**
446          * @brief Set a user commit handler
447          * @param[in] output A output object
448          * @param[in] func A user commit handler
449          * @return #TDM_ERROR_NONE if success. Otherwise, error value.
450          */
451         tdm_error (*output_set_commit_handler)(tdm_output *output,
452                                                                                    tdm_output_commit_handler func);
453
454         /**
455          * @brief Set DPMS of a output object synchronously
456          * @param[in] output A output object
457          * @param[in] dpms_value DPMS value
458          * @return #TDM_ERROR_NONE if success. Otherwise, error value.
459          */
460         tdm_error (*output_set_dpms)(tdm_output *output, tdm_output_dpms dpms_value);
461
462         /**
463          * @brief Get DPMS of a output object
464          * @param[in] output A output object
465          * @param[out] dpms_value DPMS value
466          * @return #TDM_ERROR_NONE if success. Otherwise, error value.
467          */
468         tdm_error (*output_get_dpms)(tdm_output *output, tdm_output_dpms *dpms_value);
469
470         /**
471          * @brief Set one of available modes of a output object
472          * @param[in] output A output object
473          * @param[in] mode A output mode
474          * @return #TDM_ERROR_NONE if success. Otherwise, error value.
475          */
476         tdm_error (*output_set_mode)(tdm_output *output, const tdm_output_mode *mode);
477
478         /**
479          * @brief Get the mode of a output object
480          * @deprecated
481          * @param[in] output A output object
482          * @param[out] mode A output mode
483          * @return #TDM_ERROR_NONE if success. Otherwise, error value.
484          */
485         tdm_error (*output_get_mode)(tdm_output *output, const tdm_output_mode **mode);
486
487         /**
488          * @brief Create a capture object of a output object
489          * @param[in] output A output object
490          * @param[out] error #TDM_ERROR_NONE if success. Otherwise, error value.
491          * @return A capture object
492          * @see capture_destroy() function of #tdm_func_capture
493          * @remark
494          * A backend module doesn't need to implement this function if a hardware
495          * doesn't have the capture device.
496          */
497         tdm_capture *(*output_create_capture)(tdm_output *output, tdm_error *error);
498
499         /**
500          * @brief Set a output connection status handler
501          * @details A backend module need to call the output status handler when the
502          * output connection status has been changed to let the TDM frontend know
503          * the change.
504          * @param[in] output A output object
505          * @param[in] func A output status handler
506          * @param[in] user_data The user data
507          * @return #TDM_ERROR_NONE if success. Otherwise, error value.
508          * @since 1.1.0
509          */
510         tdm_error (*output_set_status_handler)(tdm_output *output,
511                                                                                    tdm_output_status_handler func,
512                                                                                    void *user_data);
513
514         /**
515          * @brief Set a output dpms handler
516          * @details This function can be NULL if an output doesn't support asynchronous
517          * DPMS control. Otherwise, a backend module needs to call the output dpms handler
518          * to let the TDM frontend know the output DPMS change indeed.
519          * @param[in] output A output object
520          * @param[in] func A output dpms handler
521          * @param[in] user_data The user data
522          * @return #TDM_ERROR_NONE if success. Otherwise, error value.
523          * @see #output_set_dpms_async, #TDM_OUTPUT_CAPABILITY_ASYNC_DPMS
524          * @since 1.4.0
525          */
526         tdm_error (*output_set_dpms_handler)(tdm_output *output,
527                                                                                  tdm_output_dpms_handler func,
528                                                                                  void *user_data);
529
530         /**
531          * @brief Set DPMS of a output object asynchronously
532          * @param[in] output A output object
533          * @details This function can be NULL if an output doesn't support asynchronous
534          * DPMS control. Otherwise, an output should have #TDM_OUTPUT_CAPABILITY_ASYNC_DPMS
535          * flags which #output_get_capability returns. And if a output dpms handler is added with
536          * #output_set_dpms_handler, a backend module needs to call the output dpms handler
537          * to let the TDM frontend know the output DPMS change indeed.
538          * @param[in] dpms_value DPMS value
539          * @return #TDM_ERROR_NONE if success. Otherwise, error value.
540          * @see #output_set_dpms_handler, #TDM_OUTPUT_CAPABILITY_ASYNC_DPMS
541          * @since 1.7.0
542          */
543         tdm_error (*output_set_dpms_async)(tdm_output *output, tdm_output_dpms dpms_value);
544
545         /**
546          * @brief Creates a new window on the given display.
547          * @param[in] output A output object
548          * @param[out] error #TDM_ERROR_NONE if success. Otherwise, error value.
549          * @return A created window object
550          * @since 2.0.0
551          */
552         tdm_hwc_window *(*output_hwc_create_window)(tdm_output *output, tdm_error *error);
553
554         /**
555          * @brief Destroys the given window.
556          * @param[in] output A output object
557          * @param[in] window the pointer of the window to destroy
558          * @return #TDM_ERROR_NONE if success. Otherwise, error value.
559          * @since 2.0.0
560          */
561         tdm_error (*output_hwc_destroy_window)(tdm_output *output, tdm_hwc_window *hwc_window);
562
563         /**
564          * @brief Set the client(relative to the TDM) target buffer
565          * @details Sets the buffer which will receive the output of client composition.
566          * Window marked as TDM_COMPOSITION_CLIENT or TDM_COMPOSITION_DEVICE_CANDIDATE
567          * will be composited into this buffer prior to the call to output_commit(),
568          * and windows not marked as TDM_COMPOSITION_CLIENT and
569          * TDM_COMPOSITION_DEVICE_CANDIDATE should be composited with this buffer by the
570          * device.
571          *
572          * The buffer handle provided may be null if no windows are being composited by
573          * the client. This must not result in an error (unless an invalid display
574          * handle is also provided).
575          *
576          * The damage parameter describes a buffer damage region as defined in the
577          * description of hwc_window_set_buffer_damage().
578          *
579          * Will be called before output_commit() if any of the layers are marked as
580          * TDM_COMPOSITION_CLIENT or TDM_COMPOSITION_DEVICE_CANDIDATE. If no layers are
581          * so marked, then it is not necessary to call this function. It is not necessary
582          * to call output_hwc_validate() after changing the target through this function.
583          * @param[in] output A output object
584          * @param[in] target The new target buffer
585          * @param[in] damage The buffer damage region
586          * @return #TDM_ERROR_NONE if success. Otherwise, error value.
587          * @since 2.0.0
588          */
589         tdm_error (*output_hwc_set_client_target_buffer)(tdm_output *output, tbm_surface_h target_buffer,
590                                                                                                  tdm_hwc_region damage, tdm_hwc_window **composited_wnds,
591                                                                                                  uint32_t num_wnds);
592
593         /**
594          * @brief Validate the output
595          * @details Instructs the device to inspect all of the layer state and
596          * determine if there are any composition type changes necessary before
597          * presenting the output. Permitted changes are described in the definition
598          * of tdm_composition_t above.
599          * @param[in] output A output object
600          * @param[out] num_types The number of composition type changes required by
601          * the device; if greater than 0, the client must either set and validate new
602          * types, or call output_hwc_accept_changes() to accept the changes returned by
603          * output_hwc_get_changed_composition_types(); must be the same as the number of
604          * changes returned by output_hwc_get_changed_composition_types (see the
605          * declaration of that function for more information); pointer will be non-NULL
606          * @return #TDM_ERROR_NONE if success. Otherwise, error value.
607          * @since 2.0.0
608          */
609         tdm_error (*output_hwc_validate)(tdm_output *output, uint32_t *num_types);
610
611         /**
612          * @brief Get changed composition types
613          * @details Retrieves the windows for which the device requires a different
614          * composition type than had been set prior to the last call to output_hwc_validate().
615          * The client will either update its state with these types and call
616          * output_hwc_accept_changes, or will set new types and attempt to validate the
617          * display again.
618          * layers and types may be NULL to retrieve the number of elements which
619          * will be returned. The number of elements returned must be the same as the
620          * value returned in num_types from the last call to output_hwc_validate().
621          * @param[in] output A output object
622          * @param[out] num_elements If windows or types were NULL, the number of layers
623          * and types which would have been returned; if both were non-NULL, the
624          * number of elements returned in layers and types, which must not exceed
625          * the value stored in num_elements prior to the call; pointer will be
626          * non-NULL
627          * @param[out] windows An array of windows
628          * @param[out] composition_types An array of composition types, each
629          * corresponding to an element of windows
630          * @return #TDM_ERROR_NONE if success. Otherwise, error value.
631          * @since 2.0.0
632          */
633         tdm_error (*output_hwc_get_changed_composition_types)(tdm_output *output,
634                                                                                                           uint32_t *num_elements,
635                                                                                                           tdm_hwc_window **hwc_window,
636                                                                                                           tdm_hwc_window_composition *composition_types);
637         /**
638          * @brief Accepts the changes required by the device
639          * @details Accepts the changes required by the device from the previous
640          * output_hwc_validate() call (which may be queried using
641          * output_get_chaged_composition_types()) and revalidates the display. This
642          * function is equivalent to requesting the changed types from
643          * output_get_chaged_composition_types(), setting those types on the
644          * corresponding windows, and then calling output_hwc_validate again.
645          * After this call it must be valid to present this display. Calling this after
646          * output_hwc_validate() returns 0 changes must succeed with TDM_ERROR_NONE, but
647          * should have no other effect.
648          * @param[in] output A output object
649          * @return #TDM_ERROR_NONE if success. Otherwise, error value.
650          * @since 2.0.0
651          */
652         tdm_error (*output_hwc_accept_changes)(tdm_output *output);
653
654         /**
655          * @brief Get a target buffer queue
656          * @param[in] output A output object
657          * @param[out] error #TDM_ERROR_NONE if success. Otherwise, error value.
658          * @return A buffer queue
659          * @since 2.0.0
660          */
661         tbm_surface_queue_h (*output_hwc_get_target_buffer_queue)(tdm_output *output,
662                                                                                                                    tdm_error *error);
663
664         /**
665          * @brief Get the supported format array for video hwc windows of a output object.
666          * @param[in] output A output object
667          * @param[out] formats The available format array
668          * @param[out] count The count of formats
669          * @return #TDM_ERROR_NONE if success. Otherwise, error value.
670          */
671         tdm_error (*output_hwc_get_video_supported_formats)(tdm_layer *layer,
672                                                                         const tbm_format **formats, int *count);
673
674         /**
675          * @brief Creates a new video window on the given output.
676          * @param[in] output A output object
677          * @param[out] error #TDM_ERROR_NONE if success. Otherwise, error value.
678          * @return A created window object. If the video abilities isn't accessed return NULL
679          * @since 2.0.0
680          */
681         tdm_hwc_window *(*output_hwc_create_video_window)(tdm_output *output, tdm_error *error);
682
683         void (*reserved5)(void);
684         void (*reserved6)(void);
685         void (*reserved7)(void);
686         void (*reserved8)(void);
687 } tdm_func_output;
688
689 /**
690  * @brief The layer functions for a backend module.
691  */
692 typedef struct _tdm_func_layer {
693         /**
694          * @brief Get the capabilities of a layer object
695          * @param[in] layer A layer object
696          * @param[out] caps The capabilities of a layer object
697          * @return #TDM_ERROR_NONE if success. Otherwise, error value.
698          * @remark
699          * A backend module @b SHOULD implement this function. TDM calls this function
700          * not only at the initial time, but also at the update time when new output
701          * is connected.\n
702          * #tdm_caps_layer contains avaiable formats/properties, zpos information, etc.
703          */
704         tdm_error (*layer_get_capability)(tdm_layer *layer, tdm_caps_layer *caps);
705
706         /**
707          * @brief Set the property which has a given id.
708          * @param[in] layer A layer object
709          * @param[in] id The property id
710          * @param[in] value The value
711          * @return #TDM_ERROR_NONE if success. Otherwise, error value.
712          */
713         tdm_error (*layer_set_property)(tdm_layer *layer, unsigned int id,
714                                                                         tdm_value value);
715
716         /**
717          * @brief Get the property which has a given id.
718          * @param[in] layer A layer object
719          * @param[in] id The property id
720          * @param[out] value The value
721          * @return #TDM_ERROR_NONE if success. Otherwise, error value.
722          */
723         tdm_error (*layer_get_property)(tdm_layer *layer, unsigned int id,
724                                                                         tdm_value *value);
725
726         /**
727          * @brief Set the geometry information to a layer object
728          * @param[in] layer A layer object
729          * @param[in] info The geometry information
730          * @return #TDM_ERROR_NONE if success. Otherwise, error value.
731          * @see output_commit() function of #tdm_func_output
732          * @remark
733          * A backend module would apply the geometry information when the output object
734          * of a layer object is committed.
735          */
736         tdm_error (*layer_set_info)(tdm_layer *layer, tdm_info_layer *info);
737
738         /**
739          * @brief Get the geometry information to a layer object
740          * @param[in] layer A layer object
741          * @param[out] info The geometry information
742          * @return #TDM_ERROR_NONE if success. Otherwise, error value.
743          */
744         tdm_error (*layer_get_info)(tdm_layer *layer, tdm_info_layer *info);
745
746         /**
747          * @brief Set a TDM buffer to a layer object
748          * @param[in] layer A layer object
749          * @param[in] buffer A TDM buffer
750          * @return #TDM_ERROR_NONE if success. Otherwise, error value.
751          * @see output_commit() function of #tdm_func_output
752          * @remark
753          * A backend module would show a TDM buffer on screen when the output object
754          * of a layer object is committed.
755          */
756         tdm_error (*layer_set_buffer)(tdm_layer *layer, tbm_surface_h buffer);
757
758         /**
759          * @brief Unset a TDM buffer from a layer object
760          * @param[in] layer A layer object
761          * @return #TDM_ERROR_NONE if success. Otherwise, error value.
762          * @remark
763          * A backend module @b SHOULD remove the current showing buffer from screen.
764          */
765         tdm_error (*layer_unset_buffer)(tdm_layer *layer);
766
767         /**
768          * @brief Set the zpos for a VIDEO layer object
769          * @param[in] layer A layer object
770          * @param[in] zpos z-order
771          * @return #TDM_ERROR_NONE if success. Otherwise, error value.
772          * @see tdm_caps_layer, tdm_layer_capability
773          * @remark
774          * A backend module doesn't need to implement this function if a backend
775          * module doesn't have VIDEO layers.\n
776          * This function is for VIDEO layers.
777          * GRAPHIC layers are non-changeable. The zpos of GRAPHIC layers starts
778          * from 0. If there are 4 GRAPHIC layers, The zpos SHOULD be 0, 1, 2, 3.\n
779          * But the zpos of VIDEO layer is changeable. And The zpos of VIDEO layers
780          * is less than GRAPHIC layers or more than GRAPHIC layers.
781          * ie, ..., -2, -1, 4, 5, ... (if 0 <= GRAPHIC layer's zpos < 4).
782          * The zpos of VIDEO layers is @b relative. It doesn't need to start
783          * from -1 or 4. Let's suppose that there are two VIDEO layers.
784          * One has -2 zpos. Another has -4 zpos. Then -2 Video layer is higher
785          * than -4 VIDEO layer.
786          */
787         tdm_error (*layer_set_video_pos)(tdm_layer *layer, int zpos);
788
789         /**
790          * @brief Create a capture object of a layer object
791          * @param[in] output A output object
792          * @param[out] error #TDM_ERROR_NONE if success. Otherwise, error value.
793          * @return A capture object
794          * @see capture_destroy() function of #tdm_func_capture
795          * @remark
796          * A backend module doesn't need to implement this function if a hardware
797          * doesn't have the capture device.
798          */
799         tdm_capture *(*layer_create_capture)(tdm_layer *layer, tdm_error *error);
800
801         /**
802          * @brief Get buffer flags which the layer can support.
803          * @param[in] layer A layer object
804          * @param[out] flags The buffer flags which should be the tbm_bo flags
805          * @return #TDM_ERROR_NONE if success. Otherwise, error value.
806          */
807         tdm_error (*layer_get_buffer_flags)(tdm_layer *layer, unsigned int *flags);
808
809         void (*reserved1)(void);
810         void (*reserved2)(void);
811         void (*reserved3)(void);
812         void (*reserved4)(void);
813         void (*reserved5)(void);
814         void (*reserved6)(void);
815         void (*reserved7)(void);
816 } tdm_func_layer;
817
818 /**
819  * @brief The window functions for a backend module.
820  * @since 2.0.0
821  */
822 typedef struct _tdm_func_window {
823         /**
824          * @brief Get a buffer queue for the window object
825          * @param[in] hwc_window A window object
826          * @param[out] error #TDM_ERROR_NONE if success. Otherwise, error value.
827          * @return A buffer queue
828          */
829         tbm_surface_queue_h (*hwc_window_get_tbm_buffer_queue)(tdm_hwc_window *hwc_window,
830                                                                                                                         tdm_error *error);
831
832         /**
833          * @brief Sets the desired Z order (height) of the given window. A window with
834          * a greater Z value occludes a window with a lesser Z value.
835          * @param[in] hwc_window A window object
836          * @param[in] z the new Z order
837          * @return #TDM_ERROR_NONE if success. Otherwise, error value.
838          */
839         tdm_error (*hwc_window_set_zpos)(tdm_hwc_window *hwc_window, uint32_t zpos);
840
841         /**
842          * @brief Sets the desired composition type of the given window.
843          * @details During output_hwc_validate(), the device may request changes to
844          * the composition types of any of the layers as described in the definition
845          * of tdm_hwc_window_composition_t above.
846          * @param[in] hwc_window A window object
847          * @param[in] composition_type The new composition type
848          * @return #TDM_ERROR_NONE if success. Otherwise, error value.
849          */
850         tdm_error (*hwc_window_set_composition_type)(tdm_hwc_window *hwc_window,
851                                                                                                  tdm_hwc_window_composition composition_type);
852
853         /**
854          * @brief Set the buffer damage
855          * @details Provides the region of the source buffer which has been modified
856          * since the last frame. This region does not need to be validated before
857          * calling output_commit().
858          * Once set through this function, the damage region remains the same until a
859          * subsequent call to this function.
860          * If damage.num_rects > 0, then it may be assumed that any portion of the source
861          * buffer not covered by one of the rects has not been modified this frame. If
862          * damage.num_rects == 0, then the whole source buffer must be treated as if it
863          * has been modified.
864          * If the layer's contents are not modified relative to the prior frame, damage
865          * will contain exactly one empty rect([0, 0, 0, 0]).
866          * The damage rects are relative to the pre-transformed buffer, and their origin
867          * is the top-left corner. They will not exceed the dimensions of the latched
868          * buffer.
869          * @param[in] hwc_window A window object
870          * @param[in] damage The new buffer damage region
871          * @return #TDM_ERROR_NONE if success. Otherwise, error value.
872          */
873         tdm_error (*hwc_window_set_buffer_damage)(tdm_hwc_window *hwc_window,
874                                                                                            tdm_hwc_region damage);
875
876         /**
877          * @brief Set the information to a window object
878          * @details The information will be applied when the output object
879          * of a layer object is committed.
880          * @param[in] hwc_window A window object
881          * @param[in] info The geometry information
882          * @return #TDM_ERROR_NONE if success. Otherwise, error value.
883          */
884         tdm_error (*hwc_window_set_info)(tdm_hwc_window *hwc_window,
885                                                                          tdm_hwc_window_info *info);
886
887         /**
888          * @brief Set a TDM buffer to a window object
889          * @details A TDM buffer will be applied when the output object
890          * of a layer object is committed.
891          * @param[in] hwc_window A window object
892          * @param[in] buffer A TDM buffer
893          * @return #TDM_ERROR_NONE if success. Otherwise, error value.
894          */
895         tdm_error (*hwc_window_set_buffer)(tdm_hwc_window *hwc_window,
896                                                                            tbm_surface_h buffer);
897
898         /**
899          * @brief Set a flags to a window object
900          * @param[in] hwc_window A window object
901          * @param[in] flags A hwc_window flags
902          * @return #TDM_ERROR_NONE if success. Otherwise, error value.
903          */
904         tdm_error (*hwc_window_set_flags)(tdm_hwc_window *hwc_window,
905                                                                           tdm_hwc_window_flag flags);
906
907         /**
908          * @brief Unset a flags from a window object
909          * @param[in] hwc_window A window object
910          * @param[in] flags A hwc_window flags
911          * @return #TDM_ERROR_NONE if success. Otherwise, error value.
912          */
913         tdm_error (*hwc_window_unset_flags)(tdm_hwc_window *hwc_window,
914                                                                                 tdm_hwc_window_flag flags);
915
916         /**
917          * @brief Get the window video capability
918          * @param[in] hwc_window A window object
919          * @param[out] video_capability A hwc window video capability
920          * @return #TDM_ERROR_NONE if success. Otherwise, error value.
921          */
922         tdm_error (*hwc_window_video_get_capability)(tdm_hwc_window *hwc_window,
923                                                         tdm_hwc_window_video_capability *video_capability);
924
925         /**
926          * @brief Get the available property array  of a video hwc window object.
927          * @param[in] hwc window A video hwc window object
928          * @param[out] props The available property array
929          * @param[out] count The count of properties
930          * @return #TDM_ERROR_NONE if success. Otherwise, error value.
931          */
932         tdm_error (*hwc_window_video_get_available_properties)(
933                                                                                         tdm_hwc_window *hwc_window,
934                                                                                         const tdm_prop **props, int *count);
935
936         /**
937          * @brief Get the property which has a given id.
938          * @param[in] hwc window A video hwc window object
939          * @param[in] id The property id
940          * @param[out] value The value
941          * @return #TDM_ERROR_NONE if success. Otherwise, error value.
942          */
943         tdm_error (*hwc_window_video_get_property)(tdm_hwc_window *hwc_window,
944                                                                                            uint32_t id, tdm_value *value);
945
946         /**
947          * @brief Set the property which has a given id.
948          * @param[in] hwc window  A video hwc window object
949          * @param[in] id The property id
950          * @param[in] value The value
951          * @return #TDM_ERROR_NONE if success. Otherwise, error value.
952          */
953         tdm_error (*hwc_window_video_set_property)(tdm_hwc_window *hwc_window,
954                                                                                            uint32_t id, tdm_value value);
955
956 } tdm_func_hwc_window;
957
958 /**
959  * @brief The pp functions for a backend module.
960  */
961 typedef struct _tdm_func_pp {
962         /**
963          * @brief Destroy a pp object
964          * @param[in] pp A pp object
965          * @see display_create_pp() function of #tdm_func_display
966          */
967         void (*pp_destroy)(tdm_pp *pp);
968
969         /**
970          * @brief Set the geometry information to a pp object
971          * @param[in] pp A pp object
972          * @param[in] info The geometry information
973          * @return #TDM_ERROR_NONE if success. Otherwise, error value.
974          * @see pp_commit() function of #tdm_func_pp
975          * @remark
976          * A backend module would apply the geometry information when committed.
977          */
978         tdm_error (*pp_set_info)(tdm_pp *pp, tdm_info_pp *info);
979
980         /**
981          * @brief Attach a source buffer and a destination buffer to a pp object
982          * @param[in] pp A pp object
983          * @param[in] src A source buffer
984          * @param[in] dst A destination buffer
985          * @return #TDM_ERROR_NONE if success. Otherwise, error value.
986          * @see pp_set_info() function of #tdm_func_pp
987          * @see pp_commit() function of #tdm_func_pp
988          * @see pp_set_done_handler, tdm_pp_done_handler
989          * @remark
990          * A backend module converts the image of a source buffer to a destination
991          * buffer when committed. The size/crop/transform information is set via
992          * #pp_set_info() of #tdm_func_pp. When done, a backend module @b SHOULD
993          * return the source/destination buffer via tdm_pp_done_handler.
994          */
995         tdm_error (*pp_attach)(tdm_pp *pp, tbm_surface_h src, tbm_surface_h dst);
996
997         /**
998          * @brief Commit changes for a pp object
999          * @param[in] pp A pp object
1000          * @return #TDM_ERROR_NONE if success. Otherwise, error value.
1001          */
1002         tdm_error (*pp_commit)(tdm_pp *pp);
1003
1004         /**
1005          * @brief Set a user done handler to a pp object
1006          * @param[in] pp A pp object
1007          * @param[in] func A user done handler
1008          * @param[in] user_data user data
1009          * @return #TDM_ERROR_NONE if success. Otherwise, error value.
1010          * @remark
1011          * A backend module @b SHOULD call #tdm_pp_done_handler when converintg a image is done.
1012          */
1013         tdm_error (*pp_set_done_handler)(tdm_pp *pp, tdm_pp_done_handler func,
1014                                                                          void *user_data);
1015
1016         void (*reserved1)(void);
1017         void (*reserved2)(void);
1018         void (*reserved3)(void);
1019         void (*reserved4)(void);
1020         void (*reserved5)(void);
1021         void (*reserved6)(void);
1022         void (*reserved7)(void);
1023         void (*reserved8)(void);
1024 } tdm_func_pp;
1025
1026 /**
1027  * @brief The capture functions for a backend module.
1028  */
1029 typedef struct _tdm_func_capture {
1030         /**
1031          * @brief Destroy a capture object
1032          * @param[in] capture A capture object
1033          * @see output_create_capture() function of #tdm_func_output
1034          * @see layer_create_capture() function of #tdm_func_layer
1035          */
1036         void (*capture_destroy)(tdm_capture *capture);
1037
1038         /**
1039          * @brief Set the geometry information to a capture object
1040          * @param[in] capture A capture object
1041          * @param[in] info The geometry information
1042          * @return #TDM_ERROR_NONE if success. Otherwise, error value.
1043          * @see capture_commit() function of #tdm_func_capture
1044          * @remark
1045          * A backend module would apply the geometry information when committed.
1046          */
1047         tdm_error (*capture_set_info)(tdm_capture *capture, tdm_info_capture *info);
1048
1049         /**
1050          * @brief Attach a TDM buffer to a capture object
1051          * @details When capture_commit() function is called, a backend module starts
1052          * to dump a output or a layer to a TDM buffer.
1053          * @param[in] capture A capture object
1054          * @param[in] buffer A TDM buffer
1055          * @return #TDM_ERROR_NONE if success. Otherwise, error value.
1056          * @see capture_set_info() function of #tdm_func_capture
1057          * @see capture_commit() function of #tdm_func_capture
1058          * @see capture_set_done_handler, tdm_capture_done_handler
1059          * @remark
1060          * A backend module starts to dump a output or a layer to to a TDM buffer when
1061          * committed. The size/crop/transform information is set via #capture_set_info()
1062          * of #tdm_func_capture. When done, a backend module @b SHOULD return the TDM
1063          * buffer via tdm_capture_done_handler.
1064          */
1065         tdm_error (*capture_attach)(tdm_capture *capture, tbm_surface_h buffer);
1066
1067         /**
1068          * @brief Commit changes for a capture object
1069          * @param[in] capture A capture object
1070          * @return #TDM_ERROR_NONE if success. Otherwise, error value.
1071          */
1072         tdm_error (*capture_commit)(tdm_capture *capture);
1073
1074         /**
1075          * @brief Set a user done handler to a capture object
1076          * @param[in] capture A capture object
1077          * @param[in] func A user done handler
1078          * @param[in] user_data user data
1079          * @return #TDM_ERROR_NONE if success. Otherwise, error value.
1080          * @remark
1081          * A backend module @b SHOULD call #tdm_capture_done_handler when capture operation is done.
1082          */
1083         tdm_error (*capture_set_done_handler)(tdm_capture *capture,
1084                                                                                   tdm_capture_done_handler func, void *user_data);
1085
1086         void (*reserved1)(void);
1087         void (*reserved2)(void);
1088         void (*reserved3)(void);
1089         void (*reserved4)(void);
1090         void (*reserved5)(void);
1091         void (*reserved6)(void);
1092         void (*reserved7)(void);
1093         void (*reserved8)(void);
1094 } tdm_func_capture;
1095
1096 /**
1097  * @brief The tdm event source
1098  */
1099 typedef void tdm_event_loop_source;
1100
1101 /**
1102  * @brief The fd source handler
1103  */
1104 typedef tdm_error (*tdm_event_loop_fd_handler)(int fd, tdm_event_loop_mask mask, void *user_data);
1105
1106 /**
1107  * @brief The timer source handler
1108  */
1109 typedef tdm_error (*tdm_event_loop_timer_handler)(void *user_data);
1110
1111 #define TDM_BACKEND_MINOR_VERSION_MASK  0x0000FFFF
1112 #define TDM_BACKEND_MAJOR_VERSION_MASK  0xFFFF0000
1113 #define TDM_BACKEND_GET_ABI_MINOR(v)    ((v) & TDM_BACKEND_MINOR_VERSION_MASK)
1114 #define TDM_BACKEND_GET_ABI_MAJOR(v)    (((v) & TDM_BACKEND_MAJOR_VERSION_MASK) >> 16)
1115
1116 /**
1117  * @brief
1118  * The ABI version of TDM backend module. It has a major and minor revision.
1119  * Modules using lower minor revisions will work with TDM frontend of a higher
1120  * minor revision. There is no compatibility between different major revisions.
1121  * The minor revision mask is 0x0000FFFF and the major revision mask is 0xFFFF0000.
1122  * @par Example
1123  * @code
1124  *  tdm_backend_module tdm_backend_module_data = {
1125  *      "drm",
1126  *      "Samsung",
1127  *      TDM_BACKEND_SET_ABI_VERSION(1,1),
1128  *      tdm_drm_init,
1129  *      tdm_drm_deinit
1130  *  };
1131  * @endcode
1132  */
1133 #define TDM_BACKEND_SET_ABI_VERSION(major, minor) \
1134         (((major) << 16) & TDM_BACKEND_MAJOR_VERSION_MASK) | \
1135         ((minor) & TDM_BACKEND_MINOR_VERSION_MASK)
1136
1137 /**
1138  * @brief
1139  * This MACRO is deprecated since 1.2.0. Use TDM_BACKEND_SET_ABI_VERSION instead of this.
1140  * @deprecated
1141  * Use #TDM_BACKEND_SET_ABI_VERSION macro instead of this macro.
1142  */
1143 #define TDM_BACKEND_ABI_VERSION     TDM_BACKEND_SET_ABI_VERSION(1, 1)
1144
1145 /**
1146  * @brief The backend module information of the entry point to initialize a TDM
1147  * backend module.
1148  * @remark
1149  * A backend module @b SHOULD define the global data symbol of which name is
1150  * @b "tdm_backend_module_data". TDM will read this symbol, @b "tdm_backend_module_data",
1151  * at the initial time and call init() function of #tdm_backend_module.
1152  */
1153 typedef struct _tdm_backend_module {
1154         const char *name;           /**< The module name of a backend module */
1155         const char *vendor;         /**< The vendor name of a backend module */
1156         unsigned long abi_version;  /**< The ABI version of a backend module */
1157
1158         /**
1159          * @brief The init function of a backend module
1160          * @param[in] dpy A display object
1161          * @param[out] error #TDM_ERROR_NONE if success. Otherwise, error value.
1162          * @return The backend module data
1163          * @see tdm_backend_data
1164          */
1165         tdm_backend_data *(*init)(tdm_display *dpy, tdm_error *error);
1166
1167         /**
1168          * @brief The deinit function of a backend module
1169          * @param[in] bdata The backend module data
1170          */
1171         void (*deinit)(tdm_backend_data *bdata);
1172 } tdm_backend_module;
1173
1174 /**
1175  * @brief Register the backend display functions to a display
1176  * @param[in] dpy A display object
1177  * @param[in] func_display display functions
1178  * @return #TDM_ERROR_NONE if success. Otherwise, error value.
1179  * @see tdm_backend_register_func_output, tdm_backend_register_func_layer
1180  * @remarks
1181  * A backend module @b SHOULD set the backend display functions at least.
1182  */
1183 tdm_error
1184 tdm_backend_register_func_display(tdm_display *dpy,
1185                                                                   tdm_func_display *func_display);
1186
1187 /**
1188  * @brief Register the backend output functions to a display
1189  * @param[in] dpy A display object
1190  * @param[in] func_output output functions
1191  * @return #TDM_ERROR_NONE if success. Otherwise, error value.
1192  * @see tdm_backend_register_func_display, tdm_backend_register_func_layer
1193  * @remarks
1194  * A backend module @b SHOULD set the backend output functions at least.
1195  */
1196 tdm_error
1197 tdm_backend_register_func_output(tdm_display *dpy,
1198                                                                  tdm_func_output *func_output);
1199
1200 /**
1201  * @brief Register the backend layer functions to a display
1202  * @param[in] dpy A display object
1203  * @param[in] func_layer layer functions
1204  * @return #TDM_ERROR_NONE if success. Otherwise, error value.
1205  * @see tdm_backend_register_func_display, tdm_backend_register_func_output
1206  * @remarks
1207  * A backend module @b SHOULD set the backend layer functions at least.
1208  */
1209 tdm_error
1210 tdm_backend_register_func_layer(tdm_display *dpy, tdm_func_layer *func_layer);
1211
1212 /**
1213  * @brief Register the backend hwc_window functions to a display
1214  * @param[in] dpy A display object
1215  * @param[in] func_hwc_window hwc_window functions
1216  * @return #TDM_ERROR_NONE if success. Otherwise, error value.
1217  * @see tdm_backend_register_func_display, tdm_backend_register_func_output
1218  * @remarks
1219  * A backend module @b SHOULD set the backend hwc_window functions at least.
1220  * @since 2.0.0
1221  */
1222 tdm_error
1223 tdm_backend_register_func_hwc_window(tdm_display *dpy, tdm_func_hwc_window *func_hwc_window);
1224
1225 /**
1226  * @brief Register the backend pp functions to a display
1227  * @param[in] dpy A display object
1228  * @param[in] func_pp pp functions
1229  * @return #TDM_ERROR_NONE if success. Otherwise, error value.
1230  * @see tdm_backend_register_func_display, tdm_backend_register_func_capture
1231  * @remark
1232  * A backend module doesn'tcan skip to register the backend pp functions
1233  * if a hardware doesn't have the memory-to-memory converting device.
1234  */
1235 tdm_error
1236 tdm_backend_register_func_pp(tdm_display *dpy, tdm_func_pp *func_pp);
1237
1238 /**
1239  * @brief Register the backend capture functions to a display
1240  * @param[in] dpy A display object
1241  * @param[in] func_capture capture functions
1242  * @return #TDM_ERROR_NONE if success. Otherwise, error value.
1243  * @see tdm_backend_register_func_display, tdm_backend_register_func_pp
1244  * @remark
1245  * A backend module can skip to register the backend capture functions
1246  * if a hardware doesn't have the capture device.
1247  */
1248 tdm_error
1249 tdm_backend_register_func_capture(tdm_display *dpy,
1250                                                                   tdm_func_capture *func_capture);
1251
1252 /**
1253  * @brief Increase the ref_count of a TDM buffer
1254  * @details
1255  * TDM has its own buffer release mechanism to let an frontend user know when a TDM buffer
1256  * becomes available for a next job. A TDM buffer can be used for TDM to show
1257  * it on screen or to capture an output and a layer. After all operations,
1258  * TDM will release it immediately when TDM doesn't need it any more.
1259  * @param[in] buffer A TDM buffer
1260  * @return A buffer itself. Otherwise, NULL.
1261  * @see tdm_buffer_unref_backend
1262  * @remark
1263  * - This function @b SHOULD be paired with #tdm_buffer_unref_backend. \n
1264  * - For example, this function @b SHOULD be called in case that a backend module uses the TDM
1265  * buffer of a layer for capturing a output or a layer to avoid tearing issue.
1266  */
1267 tbm_surface_h
1268 tdm_buffer_ref_backend(tbm_surface_h buffer);
1269
1270 /**
1271  * @brief Decrease the ref_count of a TDM buffer
1272  * @param[in] buffer A TDM buffer
1273  * @see tdm_buffer_ref_backend
1274  */
1275 void
1276 tdm_buffer_unref_backend(tbm_surface_h buffer);
1277
1278 /**
1279  * @brief The destroy handler of a TDM buffer
1280  * @param[in] buffer A TDM buffer
1281  * @param[in] user_data user data
1282  * @see tdm_buffer_add_destroy_handler, tdm_buffer_remove_destroy_handler
1283  */
1284 typedef void (*tdm_buffer_destroy_handler)(tbm_surface_h buffer,
1285                                                                                    void *user_data);
1286
1287 /**
1288  * @brief Add a destroy handler to a TDM buffer
1289  * @param[in] buffer A TDM buffer
1290  * @param[in] func A destroy handler
1291  * @param[in] user_data user data
1292  * @return #TDM_ERROR_NONE if success. Otherwise, error value.
1293  * @see tdm_buffer_remove_destroy_handler
1294  * @remark
1295  * A backend module can add a TDM buffer destroy handler to a TDM buffer which
1296  * is a #tbm_surface_h object. When the TDM buffer is destroyed, this handler will
1297  * be called.
1298  */
1299 tdm_error
1300 tdm_buffer_add_destroy_handler(tbm_surface_h buffer,
1301                                                            tdm_buffer_destroy_handler func, void *user_data);
1302
1303 /**
1304  * @brief Remove a destroy handler from a TDM buffer
1305  * @param[in] buffer A TDM buffer
1306  * @param[in] func A destroy handler
1307  * @param[in] user_data user data
1308  * @see tdm_buffer_add_destroy_handler
1309  */
1310 void
1311 tdm_buffer_remove_destroy_handler(tbm_surface_h buffer,
1312                                                                   tdm_buffer_destroy_handler func, void *user_data);
1313
1314 /**
1315  * @brief Add a FD handler for activity on the given file descriptor
1316  * @param[in] dpy A display object
1317  * @param[in] fd A file descriptor
1318  * @param[in] mask to monitor FD
1319  * @param[in] func A FD handler function
1320  * @param[in] user_data user data
1321  * @param[out] error #TDM_ERROR_NONE if success. Otherwise, error value.
1322  * @return A FD event source
1323  * @see #tdm_event_loop_source_fd_update, #tdm_event_loop_source_remove
1324  */
1325 tdm_event_loop_source*
1326 tdm_event_loop_add_fd_handler(tdm_display *dpy, int fd, tdm_event_loop_mask mask,
1327                                                           tdm_event_loop_fd_handler func, void *user_data,
1328                                                           tdm_error *error);
1329
1330 /**
1331  * @brief Update the mask of the given FD event source
1332  * @param[in] source The given FD event source
1333  * @param[in] mask to monitor FD
1334  * @return #TDM_ERROR_NONE if success. Otherwise, error value.
1335  */
1336 tdm_error
1337 tdm_event_loop_source_fd_update(tdm_event_loop_source *source, tdm_event_loop_mask mask);
1338
1339 /**
1340  * @brief Add a timer handler
1341  * @param[in] dpy A display object
1342  * @param[in] func A timer handler function
1343  * @param[in] user_data user data
1344  * @param[out] error #TDM_ERROR_NONE if success. Otherwise, error value.
1345  * @return A timer event source
1346  * @see #tdm_event_loop_source_timer_update, #tdm_event_loop_source_remove
1347  */
1348 tdm_event_loop_source*
1349 tdm_event_loop_add_timer_handler(tdm_display *dpy, tdm_event_loop_timer_handler func,
1350                                                                  void *user_data, tdm_error *error);
1351
1352 /**
1353  * @brief Update the millisecond delay time of the given timer event source.
1354  * @param[in] source The given timer event source
1355  * @param[in] ms_delay The millisecond delay time. zero "0" disarms the timer.
1356  * @return #TDM_ERROR_NONE if success. Otherwise, error value.
1357  */
1358 tdm_error
1359 tdm_event_loop_source_timer_update(tdm_event_loop_source *source, unsigned int ms_delay);
1360
1361 /**
1362  * @brief Remove the given event source
1363  * @param[in] source The given event source
1364  * @see #tdm_event_loop_add_fd_handler, #tdm_event_loop_add_timer_handler
1365  */
1366 void
1367 tdm_event_loop_source_remove(tdm_event_loop_source *source);
1368
1369 /**
1370  * @brief Trigger a 'need to validate' event.
1371  * @param[in] output The output the event should be triggered for.
1372  * @note The global display lock has to be locked before the call to this function.
1373  * @see #tdm_output_hwc_set_need_validate_handler
1374  * @since 2.0.0
1375  */
1376 tdm_error
1377 tdm_backend_trigger_need_validate_event(tdm_output *output);
1378
1379 #ifdef __cplusplus
1380 }
1381 #endif
1382
1383 #endif /* _TDM_BACKEND_H_ */