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 <sc1.lim@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_BACKEND_H_
37 #define _TDM_BACKEND_H_
39 #include <tbm_surface.h>
40 #include <tbm_surface_queue.h>
42 #include "tdm_types.h"
50 * @brief The backend header file of TDM to implement a TDM backend module.
53 * #include <tdm_backend.h>
58 * @brief The backend module data
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
64 typedef void tdm_backend_data;
67 * @brief The output status handler
68 * @details This handler will be called when the status of a output object is
71 typedef void (*tdm_output_status_handler)(tdm_output *output,
72 tdm_output_conn_status status,
76 * @brief The output dpms handler
77 * @details This handler will be called when the dpms of a output object is
80 typedef void (*tdm_output_dpms_handler)(tdm_output *output,
85 * @brief The display capabilities structure of a backend module
86 * @see The display_get_capability() function of #tdm_func_display
88 typedef struct _tdm_caps_display {
89 int max_layer_count; /**< The maximum layer count */
93 * @brief The capabilities structure of a output object
94 * @see The output_get_capability() function of #tdm_func_output
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 */
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 */
105 unsigned int mode_count; /**< The count of available modes */
107 *modes; /**< The @b newly-allocated array of modes. will be freed in frontend. */
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. */
112 unsigned int mmWidth; /**< The physical width (milimeter) */
113 unsigned int mmHeight; /**< The physical height (milimeter) */
114 unsigned int subpixel; /**< The subpixel */
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 */
122 tdm_output_capability capabilities; /**< The capabilities of output. @since 1.4.1 */
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 */
132 * @brief The capabilities structure of a layer object
133 * @see The layer_get_capability() function of #tdm_func_layer
135 typedef struct _tdm_caps_layer {
136 tdm_layer_capability capabilities; /**< The capabilities of layer */
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.
153 unsigned int format_count; /**< The count of available formats */
155 *formats; /**< The @b newly-allocated array of formats. will be freed in frontend. */
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. */
162 * @brief The capabilities structure of a pp object
163 * @see The display_get_pp_capability() function of #tdm_func_display
165 typedef struct _tdm_caps_pp {
166 tdm_pp_capability capabilities; /**< The capabilities of pp */
168 unsigned int format_count; /**< The count of available formats */
170 *formats; /**< The @b newly-allocated array. will be freed in frontend. */
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 */
178 /**< The attach count which a PP object can handle. @since 1.2.0 */
179 int max_attach_count;
183 * @brief The capabilities structure of a capture object
184 * @see The display_get_capture_capability() function of #tdm_func_display
186 typedef struct _tdm_caps_capture {
187 tdm_capture_capability capabilities; /**< The capabilities of capture */
189 unsigned int format_count; /**< The count of available formats */
191 *formats; /**< The @b newly-allocated array of formats. will be freed in frontend. */
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 */
199 /**< The attach count which a capture object can handle. @since 1.2.0 */
200 int max_attach_count;
204 * @brief The display functions for a backend module.
206 typedef struct _tdm_func_display {
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.
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
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
220 tdm_error (*display_get_capability)(tdm_backend_data *bdata, tdm_caps_display *caps);
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
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.
236 tdm_error (*display_get_pp_capability)(tdm_backend_data *bdata, tdm_caps_pp *caps);
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
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.
252 tdm_error (*display_get_capture_capability)(tdm_backend_data *bdata, tdm_caps_capture *caps);
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
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
265 * A backend module @b SHOULD return the @b newly-allocated array which contains
266 * "tdm_output*" data. It will be freed in frontend.
270 * drm_display_get_outputs(tdm_backend_data *bdata, int *count, tdm_error *error)
272 * tdm_drm_data *drm_data = bdata;
273 * tdm_drm_output_data *output_data = NULL;
274 * tdm_output **outputs;
278 * LIST_FOR_EACH_ENTRY(output_data, &drm_data->output_list, link)
283 * if (error) *error = TDM_ERROR_NONE;
287 * // will be freed in frontend
288 * outputs = calloc(*count, sizeof(tdm_drm_output_data*));
292 * if (error) *error = TDM_ERROR_OUT_OF_MEMORY;
297 * LIST_FOR_EACH_ENTRY(output_data, &drm_data->output_list, link)
298 * outputs[i++] = output_data;
300 * if (error) *error = TDM_ERROR_NONE;
306 tdm_output **(*display_get_outputs)(tdm_backend_data *bdata, int *count,
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
316 * A backend module can return epoll's fd which is watching the backend device one more fds.
318 tdm_error (*display_get_fd)(tdm_backend_data *bdata, int *fd);
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.
325 tdm_error (*display_handle_events)(tdm_backend_data *bdata);
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
334 * A backend module doesn't need to implement this function if a hardware
335 * doesn't have the memory-to-memory converting device.
337 tdm_pp *(*display_create_pp)(tdm_backend_data *bdata, tdm_error *error);
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);
350 * @brief The output functions for a backend module.
352 typedef struct _tdm_func_output {
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.
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
362 * #tdm_caps_output contains connection status, modes, avaiable properties,
363 * size restriction information, etc.
365 tdm_error (*output_get_capability)(tdm_output *output, tdm_caps_output *caps);
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
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
377 * A backend module @b SHOULD return the @b newly-allocated array which contains
378 * "tdm_layer*" data. It will be freed in frontend.
380 tdm_layer **(*output_get_layers)(tdm_output *output, int *count,
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.
390 tdm_error (*output_set_property)(tdm_output *output, unsigned int id,
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.
400 tdm_error (*output_get_property)(tdm_output *output, unsigned int id,
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
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
416 tdm_error (*output_wait_vblank)(tdm_output *output, int interval, int sync,
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.
425 tdm_error (*output_set_vblank_handler)(tdm_output *output,
426 tdm_output_vblank_handler func);
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
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
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.
443 tdm_error (*output_commit)(tdm_output *output, int sync, void *user_data);
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.
451 tdm_error (*output_set_commit_handler)(tdm_output *output,
452 tdm_output_commit_handler func);
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.
460 tdm_error (*output_set_dpms)(tdm_output *output, tdm_output_dpms dpms_value);
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.
468 tdm_error (*output_get_dpms)(tdm_output *output, tdm_output_dpms *dpms_value);
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.
476 tdm_error (*output_set_mode)(tdm_output *output, const tdm_output_mode *mode);
479 * @brief Get the mode of a output object
481 * @param[in] output A output object
482 * @param[out] mode A output mode
483 * @return #TDM_ERROR_NONE if success. Otherwise, error value.
485 tdm_error (*output_get_mode)(tdm_output *output, const tdm_output_mode **mode);
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
494 * A backend module doesn't need to implement this function if a hardware
495 * doesn't have the capture device.
497 tdm_capture *(*output_create_capture)(tdm_output *output, tdm_error *error);
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
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.
510 tdm_error (*output_set_status_handler)(tdm_output *output,
511 tdm_output_status_handler func,
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
526 tdm_error (*output_set_dpms_handler)(tdm_output *output,
527 tdm_output_dpms_handler func,
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
543 tdm_error (*output_set_dpms_async)(tdm_output *output, tdm_output_dpms dpms_value);
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
552 tdm_hwc_window *(*output_hwc_create_window)(tdm_output *output, tdm_error *error);
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.
561 tdm_error (*output_hwc_destroy_window)(tdm_output *output, tdm_hwc_window *hwc_window);
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
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).
576 * The damage parameter describes a buffer damage region as defined in the
577 * description of hwc_window_set_buffer_damage().
579 * List of composited hwc_windows (hwc_windows which buffers are presented on #target_buffer)
580 * will be passed along with #target_buffer to allow tdm to make the smooth transition
581 * from a DEVICE type to a CLIENT type.
583 * Will be called before output_commit() if any of the layers are marked as
584 * TDM_COMPOSITION_CLIENT or TDM_COMPOSITION_DEVICE_CANDIDATE. If no layers are
585 * so marked, then it is not necessary to call this function. It is not necessary
586 * to call output_hwc_validate() after changing the target through this function.
587 * @param[in] output A output object
588 * @param[in] target The new target buffer
589 * @param[in] damage The buffer damage region
590 * @param[in] composited_wnds The array of composited hwc_wnds
591 * @param[in] num_wnds The size of #composited_wnds array
592 * @return #TDM_ERROR_NONE if success. Otherwise, error value.
595 tdm_error (*output_hwc_set_client_target_buffer)(tdm_output *output, tbm_surface_h target_buffer, tdm_hwc_region damage);
598 * @brief Unset the client(relative to the TDM) target buffer
600 * @param[in] output A output object
601 * @return #TDM_ERROR_NONE if success. Otherwise, error value.
604 tdm_error (*output_hwc_unset_client_target_buffer)(tdm_output *output);
607 * @brief Get the layer associated with the client target buffer
609 * @param[in] output A output object
610 * @param[out] error #TDM_ERROR_NONE if success. Otherwise, error value.
611 * @return A layer object.
614 tdm_layer *(*output_hwc_get_client_target_buffer_layer)(tdm_output *output, tdm_error *error);
617 * @brief Get the buffer which is set to the client target buffer
619 * @param[in] output A output object
620 * @param[out] error #TDM_ERROR_NONE if success. Otherwise, error value.
621 * @return A layer object.
624 tbm_surface_h (*output_hwc_get_client_target_buffer)(tdm_output *output, tdm_error *error);
627 * @brief Validate the output
628 * @details Instructs the device to inspect all of the layer state and
629 * determine if there are any composition type changes necessary before
630 * presenting the output. Permitted changes are described in the definition
631 * of tdm_composition_t above.
632 * @param[in] output A output object
633 * @param[out] num_types The number of composition type changes required by
634 * the device; if greater than 0, the client must either set and validate new
635 * types, or call output_hwc_accept_changes() to accept the changes returned by
636 * output_hwc_get_changed_composition_types(); must be the same as the number of
637 * changes returned by output_hwc_get_changed_composition_types (see the
638 * declaration of that function for more information); pointer will be non-NULL
639 * @return #TDM_ERROR_NONE if success. Otherwise, error value.
642 tdm_error (*output_hwc_validate)(tdm_output *output, tdm_hwc_window **composited_wnds, uint32_t num_wnds,
643 uint32_t *num_types);
646 * @brief Get changed composition types
647 * @details Retrieves the windows for which the device requires a different
648 * composition type than had been set prior to the last call to output_hwc_validate().
649 * The client will either update its state with these types and call
650 * output_hwc_accept_changes, or will set new types and attempt to validate the
652 * layers and types may be NULL to retrieve the number of elements which
653 * will be returned. The number of elements returned must be the same as the
654 * value returned in num_types from the last call to output_hwc_validate().
655 * @param[in] output A output object
656 * @param[out] num_elements If windows or types were NULL, the number of layers
657 * and types which would have been returned; if both were non-NULL, the
658 * number of elements returned in layers and types, which must not exceed
659 * the value stored in num_elements prior to the call; pointer will be
661 * @param[out] windows An array of windows
662 * @param[out] composition_types An array of composition types, each
663 * corresponding to an element of windows
664 * @return #TDM_ERROR_NONE if success. Otherwise, error value.
667 tdm_error (*output_hwc_get_changed_composition_types)(tdm_output *output,
668 uint32_t *num_elements,
669 tdm_hwc_window **hwc_window,
670 tdm_hwc_window_composition *composition_types);
672 * @brief Accepts the changes required by the device
673 * @details Accepts the changes required by the device from the previous
674 * output_hwc_validate() call (which may be queried using
675 * output_get_chaged_composition_types()) and revalidates the display. This
676 * function is equivalent to requesting the changed types from
677 * output_get_chaged_composition_types(), setting those types on the
678 * corresponding windows, and then calling output_hwc_validate again.
679 * After this call it must be valid to present this display. Calling this after
680 * output_hwc_validate() returns 0 changes must succeed with TDM_ERROR_NONE, but
681 * should have no other effect.
682 * @param[in] output A output object
683 * @return #TDM_ERROR_NONE if success. Otherwise, error value.
686 tdm_error (*output_hwc_accept_changes)(tdm_output *output);
689 * @brief Get a target buffer queue
690 * @param[in] output A output object
691 * @param[out] error #TDM_ERROR_NONE if success. Otherwise, error value.
692 * @return A buffer queue
695 tbm_surface_queue_h (*output_hwc_get_target_buffer_queue)(tdm_output *output,
699 * @brief Get the supported format array for video hwc windows of a output object.
700 * @param[in] output A output object
701 * @param[out] formats The available format array
702 * @param[out] count The count of formats
703 * @return #TDM_ERROR_NONE if success. Otherwise, error value.
705 tdm_error (*output_hwc_get_video_supported_formats)(tdm_layer *layer,
706 const tbm_format **formats, int *count);
709 * @brief Creates a new video window on the given output.
710 * @param[in] output A output object
711 * @param[out] error #TDM_ERROR_NONE if success. Otherwise, error value.
712 * @return A created window object. If the video abilities isn't accessed return NULL
715 tdm_hwc_window *(*output_hwc_create_video_window)(tdm_output *output, tdm_error *error);
717 void (*reserved5)(void);
718 void (*reserved6)(void);
719 void (*reserved7)(void);
720 void (*reserved8)(void);
724 * @brief The layer functions for a backend module.
726 typedef struct _tdm_func_layer {
728 * @brief Get the capabilities of a layer object
729 * @param[in] layer A layer object
730 * @param[out] caps The capabilities of a layer object
731 * @return #TDM_ERROR_NONE if success. Otherwise, error value.
733 * A backend module @b SHOULD implement this function. TDM calls this function
734 * not only at the initial time, but also at the update time when new output
736 * #tdm_caps_layer contains avaiable formats/properties, zpos information, etc.
738 tdm_error (*layer_get_capability)(tdm_layer *layer, tdm_caps_layer *caps);
741 * @brief Set the property which has a given id.
742 * @param[in] layer A layer object
743 * @param[in] id The property id
744 * @param[in] value The value
745 * @return #TDM_ERROR_NONE if success. Otherwise, error value.
747 tdm_error (*layer_set_property)(tdm_layer *layer, unsigned int id,
751 * @brief Get the property which has a given id.
752 * @param[in] layer A layer object
753 * @param[in] id The property id
754 * @param[out] value The value
755 * @return #TDM_ERROR_NONE if success. Otherwise, error value.
757 tdm_error (*layer_get_property)(tdm_layer *layer, unsigned int id,
761 * @brief Set the geometry information to a layer object
762 * @param[in] layer A layer object
763 * @param[in] info The geometry information
764 * @return #TDM_ERROR_NONE if success. Otherwise, error value.
765 * @see output_commit() function of #tdm_func_output
767 * A backend module would apply the geometry information when the output object
768 * of a layer object is committed.
770 tdm_error (*layer_set_info)(tdm_layer *layer, tdm_info_layer *info);
773 * @brief Get the geometry information to a layer object
774 * @param[in] layer A layer object
775 * @param[out] info The geometry information
776 * @return #TDM_ERROR_NONE if success. Otherwise, error value.
778 tdm_error (*layer_get_info)(tdm_layer *layer, tdm_info_layer *info);
781 * @brief Set a TDM buffer to a layer object
782 * @param[in] layer A layer object
783 * @param[in] buffer A TDM buffer
784 * @return #TDM_ERROR_NONE if success. Otherwise, error value.
785 * @see output_commit() function of #tdm_func_output
787 * A backend module would show a TDM buffer on screen when the output object
788 * of a layer object is committed.
790 tdm_error (*layer_set_buffer)(tdm_layer *layer, tbm_surface_h buffer);
793 * @brief Unset a TDM buffer from a layer object
794 * @param[in] layer A layer object
795 * @return #TDM_ERROR_NONE if success. Otherwise, error value.
797 * A backend module @b SHOULD remove the current showing buffer from screen.
799 tdm_error (*layer_unset_buffer)(tdm_layer *layer);
802 * @brief Set the zpos for a VIDEO layer object
803 * @param[in] layer A layer object
804 * @param[in] zpos z-order
805 * @return #TDM_ERROR_NONE if success. Otherwise, error value.
806 * @see tdm_caps_layer, tdm_layer_capability
808 * A backend module doesn't need to implement this function if a backend
809 * module doesn't have VIDEO layers.\n
810 * This function is for VIDEO layers.
811 * GRAPHIC layers are non-changeable. The zpos of GRAPHIC layers starts
812 * from 0. If there are 4 GRAPHIC layers, The zpos SHOULD be 0, 1, 2, 3.\n
813 * But the zpos of VIDEO layer is changeable. And The zpos of VIDEO layers
814 * is less than GRAPHIC layers or more than GRAPHIC layers.
815 * ie, ..., -2, -1, 4, 5, ... (if 0 <= GRAPHIC layer's zpos < 4).
816 * The zpos of VIDEO layers is @b relative. It doesn't need to start
817 * from -1 or 4. Let's suppose that there are two VIDEO layers.
818 * One has -2 zpos. Another has -4 zpos. Then -2 Video layer is higher
819 * than -4 VIDEO layer.
821 tdm_error (*layer_set_video_pos)(tdm_layer *layer, int zpos);
824 * @brief Create a capture object of a layer object
825 * @param[in] output A output object
826 * @param[out] error #TDM_ERROR_NONE if success. Otherwise, error value.
827 * @return A capture object
828 * @see capture_destroy() function of #tdm_func_capture
830 * A backend module doesn't need to implement this function if a hardware
831 * doesn't have the capture device.
833 tdm_capture *(*layer_create_capture)(tdm_layer *layer, tdm_error *error);
836 * @brief Get buffer flags which the layer can support.
837 * @param[in] layer A layer object
838 * @param[out] flags The buffer flags which should be the tbm_bo flags
839 * @return #TDM_ERROR_NONE if success. Otherwise, error value.
841 tdm_error (*layer_get_buffer_flags)(tdm_layer *layer, unsigned int *flags);
843 void (*reserved1)(void);
844 void (*reserved2)(void);
845 void (*reserved3)(void);
846 void (*reserved4)(void);
847 void (*reserved5)(void);
848 void (*reserved6)(void);
849 void (*reserved7)(void);
853 * @brief The window functions for a backend module.
856 typedef struct _tdm_func_window {
858 * @brief Get a buffer queue for the window object
859 * @param[in] hwc_window A window object
860 * @param[out] error #TDM_ERROR_NONE if success. Otherwise, error value.
861 * @return A buffer queue
863 tbm_surface_queue_h (*hwc_window_get_tbm_buffer_queue)(tdm_hwc_window *hwc_window,
867 * @brief Sets the desired composition type of the given window.
868 * @details During output_hwc_validate(), the device may request changes to
869 * the composition types of any of the layers as described in the definition
870 * of tdm_hwc_window_composition_t above.
871 * @param[in] hwc_window A window object
872 * @param[in] composition_type The new composition type
873 * @return #TDM_ERROR_NONE if success. Otherwise, error value.
875 tdm_error (*hwc_window_set_composition_type)(tdm_hwc_window *hwc_window,
876 tdm_hwc_window_composition composition_type);
879 * @brief Set the buffer damage
880 * @details Provides the region of the source buffer which has been modified
881 * since the last frame. This region does not need to be validated before
882 * calling output_commit().
883 * Once set through this function, the damage region remains the same until a
884 * subsequent call to this function.
885 * If damage.num_rects > 0, then it may be assumed that any portion of the source
886 * buffer not covered by one of the rects has not been modified this frame. If
887 * damage.num_rects == 0, then the whole source buffer must be treated as if it
889 * If the layer's contents are not modified relative to the prior frame, damage
890 * will contain exactly one empty rect([0, 0, 0, 0]).
891 * The damage rects are relative to the pre-transformed buffer, and their origin
892 * is the top-left corner. They will not exceed the dimensions of the latched
894 * @param[in] hwc_window A window object
895 * @param[in] damage The new buffer damage region
896 * @return #TDM_ERROR_NONE if success. Otherwise, error value.
898 tdm_error (*hwc_window_set_buffer_damage)(tdm_hwc_window *hwc_window,
899 tdm_hwc_region damage);
902 * @brief Set the information to a window object
903 * @details The information will be applied when the output object
904 * of a layer object is committed.
905 * @param[in] hwc_window A window object
906 * @param[in] info The geometry information
907 * @return #TDM_ERROR_NONE if success. Otherwise, error value.
909 tdm_error (*hwc_window_set_info)(tdm_hwc_window *hwc_window,
910 tdm_hwc_window_info *info);
913 * @brief Set a TDM buffer to a window object
914 * @details A TDM buffer will be applied when the output object
915 * of a layer object is committed.
916 * @param[in] hwc_window A window object
917 * @param[in] buffer A TDM buffer
918 * @return #TDM_ERROR_NONE if success. Otherwise, error value.
920 * Implementation should return #TDM_ERROR_BUSY if #hwc_window can't
921 * be updated right now, this won't be interpreted like some critical
924 tdm_error (*hwc_window_set_buffer)(tdm_hwc_window *hwc_window,
925 tbm_surface_h buffer);
928 * @brief Unset a TDM buffer to a window object
929 * @details A TDM buffer will be applied when the output object
930 * of a layer object is committed.
931 * @param[in] hwc_window A window object
932 * @return #TDM_ERROR_NONE if success. Otherwise, error value.
934 * Implementation should return #TDM_ERROR_BUSY if #hwc_window can't
935 * be updated right now, this won't be interpreted like some critical
938 tdm_error (*hwc_window_unset_buffer)(tdm_hwc_window *hwc_window);
941 * @brief Set a flags to a window object
942 * @param[in] hwc_window A window object
943 * @param[in] flags A hwc_window flags
944 * @return #TDM_ERROR_NONE if success. Otherwise, error value.
946 tdm_error (*hwc_window_set_flags)(tdm_hwc_window *hwc_window,
947 tdm_hwc_window_flag flags);
950 * @brief Unset a flags from a window object
951 * @param[in] hwc_window A window object
952 * @param[in] flags A hwc_window flags
953 * @return #TDM_ERROR_NONE if success. Otherwise, error value.
955 tdm_error (*hwc_window_unset_flags)(tdm_hwc_window *hwc_window,
956 tdm_hwc_window_flag flags);
959 * @brief Get the window video capability
960 * @param[in] hwc_window A window object
961 * @param[out] video_capability A hwc window video capability
962 * @return #TDM_ERROR_NONE if success. Otherwise, error value.
964 tdm_error (*hwc_window_video_get_capability)(tdm_hwc_window *hwc_window,
965 tdm_hwc_window_video_capability *video_capability);
968 * @brief Get the available property array of a video hwc window object.
969 * @param[in] hwc window A video hwc window object
970 * @param[out] props The available property array
971 * @param[out] count The count of properties
972 * @return #TDM_ERROR_NONE if success. Otherwise, error value.
974 tdm_error (*hwc_window_video_get_available_properties)(
975 tdm_hwc_window *hwc_window,
976 const tdm_prop **props, int *count);
979 * @brief Get the property which has a given id.
980 * @param[in] hwc window A video hwc window object
981 * @param[in] id The property id
982 * @param[out] value The value
983 * @return #TDM_ERROR_NONE if success. Otherwise, error value.
985 tdm_error (*hwc_window_video_get_property)(tdm_hwc_window *hwc_window,
986 uint32_t id, tdm_value *value);
989 * @brief Set the property which has a given id.
990 * @param[in] hwc window A video hwc window object
991 * @param[in] id The property id
992 * @param[in] value The value
993 * @return #TDM_ERROR_NONE if success. Otherwise, error value.
995 tdm_error (*hwc_window_video_set_property)(tdm_hwc_window *hwc_window,
996 uint32_t id, tdm_value value);
998 } tdm_func_hwc_window;
1001 * @brief The pp functions for a backend module.
1003 typedef struct _tdm_func_pp {
1005 * @brief Destroy a pp object
1006 * @param[in] pp A pp object
1007 * @see display_create_pp() function of #tdm_func_display
1009 void (*pp_destroy)(tdm_pp *pp);
1012 * @brief Set the geometry information to a pp object
1013 * @param[in] pp A pp object
1014 * @param[in] info The geometry information
1015 * @return #TDM_ERROR_NONE if success. Otherwise, error value.
1016 * @see pp_commit() function of #tdm_func_pp
1018 * A backend module would apply the geometry information when committed.
1020 tdm_error (*pp_set_info)(tdm_pp *pp, tdm_info_pp *info);
1023 * @brief Attach a source buffer and a destination buffer to a pp object
1024 * @param[in] pp A pp object
1025 * @param[in] src A source buffer
1026 * @param[in] dst A destination buffer
1027 * @return #TDM_ERROR_NONE if success. Otherwise, error value.
1028 * @see pp_set_info() function of #tdm_func_pp
1029 * @see pp_commit() function of #tdm_func_pp
1030 * @see pp_set_done_handler, tdm_pp_done_handler
1032 * A backend module converts the image of a source buffer to a destination
1033 * buffer when committed. The size/crop/transform information is set via
1034 * #pp_set_info() of #tdm_func_pp. When done, a backend module @b SHOULD
1035 * return the source/destination buffer via tdm_pp_done_handler.
1037 tdm_error (*pp_attach)(tdm_pp *pp, tbm_surface_h src, tbm_surface_h dst);
1040 * @brief Commit changes for a pp object
1041 * @param[in] pp A pp object
1042 * @return #TDM_ERROR_NONE if success. Otherwise, error value.
1044 tdm_error (*pp_commit)(tdm_pp *pp);
1047 * @brief Set a user done handler to a pp object
1048 * @param[in] pp A pp object
1049 * @param[in] func A user done handler
1050 * @param[in] user_data user data
1051 * @return #TDM_ERROR_NONE if success. Otherwise, error value.
1053 * A backend module @b SHOULD call #tdm_pp_done_handler when converintg a image is done.
1055 tdm_error (*pp_set_done_handler)(tdm_pp *pp, tdm_pp_done_handler func,
1058 void (*reserved1)(void);
1059 void (*reserved2)(void);
1060 void (*reserved3)(void);
1061 void (*reserved4)(void);
1062 void (*reserved5)(void);
1063 void (*reserved6)(void);
1064 void (*reserved7)(void);
1065 void (*reserved8)(void);
1069 * @brief The capture functions for a backend module.
1071 typedef struct _tdm_func_capture {
1073 * @brief Destroy a capture object
1074 * @param[in] capture A capture object
1075 * @see output_create_capture() function of #tdm_func_output
1076 * @see layer_create_capture() function of #tdm_func_layer
1078 void (*capture_destroy)(tdm_capture *capture);
1081 * @brief Set the geometry information to a capture object
1082 * @param[in] capture A capture object
1083 * @param[in] info The geometry information
1084 * @return #TDM_ERROR_NONE if success. Otherwise, error value.
1085 * @see capture_commit() function of #tdm_func_capture
1087 * A backend module would apply the geometry information when committed.
1089 tdm_error (*capture_set_info)(tdm_capture *capture, tdm_info_capture *info);
1092 * @brief Attach a TDM buffer to a capture object
1093 * @details When capture_commit() function is called, a backend module starts
1094 * to dump a output or a layer to a TDM buffer.
1095 * @param[in] capture A capture object
1096 * @param[in] buffer A TDM buffer
1097 * @return #TDM_ERROR_NONE if success. Otherwise, error value.
1098 * @see capture_set_info() function of #tdm_func_capture
1099 * @see capture_commit() function of #tdm_func_capture
1100 * @see capture_set_done_handler, tdm_capture_done_handler
1102 * A backend module starts to dump a output or a layer to to a TDM buffer when
1103 * committed. The size/crop/transform information is set via #capture_set_info()
1104 * of #tdm_func_capture. When done, a backend module @b SHOULD return the TDM
1105 * buffer via tdm_capture_done_handler.
1107 tdm_error (*capture_attach)(tdm_capture *capture, tbm_surface_h buffer);
1110 * @brief Commit changes for a capture object
1111 * @param[in] capture A capture object
1112 * @return #TDM_ERROR_NONE if success. Otherwise, error value.
1114 tdm_error (*capture_commit)(tdm_capture *capture);
1117 * @brief Set a user done handler to a capture object
1118 * @param[in] capture A capture object
1119 * @param[in] func A user done handler
1120 * @param[in] user_data user data
1121 * @return #TDM_ERROR_NONE if success. Otherwise, error value.
1123 * A backend module @b SHOULD call #tdm_capture_done_handler when capture operation is done.
1125 tdm_error (*capture_set_done_handler)(tdm_capture *capture,
1126 tdm_capture_done_handler func, void *user_data);
1128 void (*reserved1)(void);
1129 void (*reserved2)(void);
1130 void (*reserved3)(void);
1131 void (*reserved4)(void);
1132 void (*reserved5)(void);
1133 void (*reserved6)(void);
1134 void (*reserved7)(void);
1135 void (*reserved8)(void);
1139 * @brief The tdm event source
1141 typedef void tdm_event_loop_source;
1144 * @brief The fd source handler
1146 typedef tdm_error (*tdm_event_loop_fd_handler)(int fd, tdm_event_loop_mask mask, void *user_data);
1149 * @brief The timer source handler
1151 typedef tdm_error (*tdm_event_loop_timer_handler)(void *user_data);
1153 #define TDM_BACKEND_MINOR_VERSION_MASK 0x0000FFFF
1154 #define TDM_BACKEND_MAJOR_VERSION_MASK 0xFFFF0000
1155 #define TDM_BACKEND_GET_ABI_MINOR(v) ((v) & TDM_BACKEND_MINOR_VERSION_MASK)
1156 #define TDM_BACKEND_GET_ABI_MAJOR(v) (((v) & TDM_BACKEND_MAJOR_VERSION_MASK) >> 16)
1160 * The ABI version of TDM backend module. It has a major and minor revision.
1161 * Modules using lower minor revisions will work with TDM frontend of a higher
1162 * minor revision. There is no compatibility between different major revisions.
1163 * The minor revision mask is 0x0000FFFF and the major revision mask is 0xFFFF0000.
1166 * tdm_backend_module tdm_backend_module_data = {
1169 * TDM_BACKEND_SET_ABI_VERSION(1,1),
1175 #define TDM_BACKEND_SET_ABI_VERSION(major, minor) \
1176 (((major) << 16) & TDM_BACKEND_MAJOR_VERSION_MASK) | \
1177 ((minor) & TDM_BACKEND_MINOR_VERSION_MASK)
1181 * This MACRO is deprecated since 1.2.0. Use TDM_BACKEND_SET_ABI_VERSION instead of this.
1183 * Use #TDM_BACKEND_SET_ABI_VERSION macro instead of this macro.
1185 #define TDM_BACKEND_ABI_VERSION TDM_BACKEND_SET_ABI_VERSION(1, 1)
1188 * @brief The backend module information of the entry point to initialize a TDM
1191 * A backend module @b SHOULD define the global data symbol of which name is
1192 * @b "tdm_backend_module_data". TDM will read this symbol, @b "tdm_backend_module_data",
1193 * at the initial time and call init() function of #tdm_backend_module.
1195 typedef struct _tdm_backend_module {
1196 const char *name; /**< The module name of a backend module */
1197 const char *vendor; /**< The vendor name of a backend module */
1198 unsigned long abi_version; /**< The ABI version of a backend module */
1201 * @brief The init function of a backend module
1202 * @param[in] dpy A display object
1203 * @param[out] error #TDM_ERROR_NONE if success. Otherwise, error value.
1204 * @return The backend module data
1205 * @see tdm_backend_data
1207 tdm_backend_data *(*init)(tdm_display *dpy, tdm_error *error);
1210 * @brief The deinit function of a backend module
1211 * @param[in] bdata The backend module data
1213 void (*deinit)(tdm_backend_data *bdata);
1214 } tdm_backend_module;
1217 * @brief Register the backend display functions to a display
1218 * @param[in] dpy A display object
1219 * @param[in] func_display display functions
1220 * @return #TDM_ERROR_NONE if success. Otherwise, error value.
1221 * @see tdm_backend_register_func_output, tdm_backend_register_func_layer
1223 * A backend module @b SHOULD set the backend display functions at least.
1226 tdm_backend_register_func_display(tdm_display *dpy,
1227 tdm_func_display *func_display);
1230 * @brief Register the backend output functions to a display
1231 * @param[in] dpy A display object
1232 * @param[in] func_output output functions
1233 * @return #TDM_ERROR_NONE if success. Otherwise, error value.
1234 * @see tdm_backend_register_func_display, tdm_backend_register_func_layer
1236 * A backend module @b SHOULD set the backend output functions at least.
1239 tdm_backend_register_func_output(tdm_display *dpy,
1240 tdm_func_output *func_output);
1243 * @brief Register the backend layer functions to a display
1244 * @param[in] dpy A display object
1245 * @param[in] func_layer layer functions
1246 * @return #TDM_ERROR_NONE if success. Otherwise, error value.
1247 * @see tdm_backend_register_func_display, tdm_backend_register_func_output
1249 * A backend module @b SHOULD set the backend layer functions at least.
1252 tdm_backend_register_func_layer(tdm_display *dpy, tdm_func_layer *func_layer);
1255 * @brief Register the backend hwc_window functions to a display
1256 * @param[in] dpy A display object
1257 * @param[in] func_hwc_window hwc_window functions
1258 * @return #TDM_ERROR_NONE if success. Otherwise, error value.
1259 * @see tdm_backend_register_func_display, tdm_backend_register_func_output
1261 * A backend module @b SHOULD set the backend hwc_window functions at least.
1265 tdm_backend_register_func_hwc_window(tdm_display *dpy, tdm_func_hwc_window *func_hwc_window);
1268 * @brief Register the backend pp functions to a display
1269 * @param[in] dpy A display object
1270 * @param[in] func_pp pp functions
1271 * @return #TDM_ERROR_NONE if success. Otherwise, error value.
1272 * @see tdm_backend_register_func_display, tdm_backend_register_func_capture
1274 * A backend module doesn'tcan skip to register the backend pp functions
1275 * if a hardware doesn't have the memory-to-memory converting device.
1278 tdm_backend_register_func_pp(tdm_display *dpy, tdm_func_pp *func_pp);
1281 * @brief Register the backend capture functions to a display
1282 * @param[in] dpy A display object
1283 * @param[in] func_capture capture functions
1284 * @return #TDM_ERROR_NONE if success. Otherwise, error value.
1285 * @see tdm_backend_register_func_display, tdm_backend_register_func_pp
1287 * A backend module can skip to register the backend capture functions
1288 * if a hardware doesn't have the capture device.
1291 tdm_backend_register_func_capture(tdm_display *dpy,
1292 tdm_func_capture *func_capture);
1295 * @brief Increase the ref_count of a TDM buffer
1297 * TDM has its own buffer release mechanism to let an frontend user know when a TDM buffer
1298 * becomes available for a next job. A TDM buffer can be used for TDM to show
1299 * it on screen or to capture an output and a layer. After all operations,
1300 * TDM will release it immediately when TDM doesn't need it any more.
1301 * @param[in] buffer A TDM buffer
1302 * @return A buffer itself. Otherwise, NULL.
1303 * @see tdm_buffer_unref_backend
1305 * - This function @b SHOULD be paired with #tdm_buffer_unref_backend. \n
1306 * - For example, this function @b SHOULD be called in case that a backend module uses the TDM
1307 * buffer of a layer for capturing a output or a layer to avoid tearing issue.
1310 tdm_buffer_ref_backend(tbm_surface_h buffer);
1313 * @brief Decrease the ref_count of a TDM buffer
1314 * @param[in] buffer A TDM buffer
1315 * @see tdm_buffer_ref_backend
1318 tdm_buffer_unref_backend(tbm_surface_h buffer);
1321 * @brief The destroy handler of a TDM buffer
1322 * @param[in] buffer A TDM buffer
1323 * @param[in] user_data user data
1324 * @see tdm_buffer_add_destroy_handler, tdm_buffer_remove_destroy_handler
1326 typedef void (*tdm_buffer_destroy_handler)(tbm_surface_h buffer,
1330 * @brief Add a destroy handler to a TDM buffer
1331 * @param[in] buffer A TDM buffer
1332 * @param[in] func A destroy handler
1333 * @param[in] user_data user data
1334 * @return #TDM_ERROR_NONE if success. Otherwise, error value.
1335 * @see tdm_buffer_remove_destroy_handler
1337 * A backend module can add a TDM buffer destroy handler to a TDM buffer which
1338 * is a #tbm_surface_h object. When the TDM buffer is destroyed, this handler will
1342 tdm_buffer_add_destroy_handler(tbm_surface_h buffer,
1343 tdm_buffer_destroy_handler func, void *user_data);
1346 * @brief Remove a destroy handler from a TDM buffer
1347 * @param[in] buffer A TDM buffer
1348 * @param[in] func A destroy handler
1349 * @param[in] user_data user data
1350 * @see tdm_buffer_add_destroy_handler
1353 tdm_buffer_remove_destroy_handler(tbm_surface_h buffer,
1354 tdm_buffer_destroy_handler func, void *user_data);
1357 * @brief Add a FD handler for activity on the given file descriptor
1358 * @param[in] dpy A display object
1359 * @param[in] fd A file descriptor
1360 * @param[in] mask to monitor FD
1361 * @param[in] func A FD handler function
1362 * @param[in] user_data user data
1363 * @param[out] error #TDM_ERROR_NONE if success. Otherwise, error value.
1364 * @return A FD event source
1365 * @see #tdm_event_loop_source_fd_update, #tdm_event_loop_source_remove
1367 tdm_event_loop_source*
1368 tdm_event_loop_add_fd_handler(tdm_display *dpy, int fd, tdm_event_loop_mask mask,
1369 tdm_event_loop_fd_handler func, void *user_data,
1373 * @brief Update the mask of the given FD event source
1374 * @param[in] source The given FD event source
1375 * @param[in] mask to monitor FD
1376 * @return #TDM_ERROR_NONE if success. Otherwise, error value.
1379 tdm_event_loop_source_fd_update(tdm_event_loop_source *source, tdm_event_loop_mask mask);
1382 * @brief Add a timer handler
1383 * @param[in] dpy A display object
1384 * @param[in] func A timer handler function
1385 * @param[in] user_data user data
1386 * @param[out] error #TDM_ERROR_NONE if success. Otherwise, error value.
1387 * @return A timer event source
1388 * @see #tdm_event_loop_source_timer_update, #tdm_event_loop_source_remove
1390 tdm_event_loop_source*
1391 tdm_event_loop_add_timer_handler(tdm_display *dpy, tdm_event_loop_timer_handler func,
1392 void *user_data, tdm_error *error);
1395 * @brief Update the millisecond delay time of the given timer event source.
1396 * @param[in] source The given timer event source
1397 * @param[in] ms_delay The millisecond delay time. zero "0" disarms the timer.
1398 * @return #TDM_ERROR_NONE if success. Otherwise, error value.
1401 tdm_event_loop_source_timer_update(tdm_event_loop_source *source, unsigned int ms_delay);
1404 * @brief Remove the given event source
1405 * @param[in] source The given event source
1406 * @see #tdm_event_loop_add_fd_handler, #tdm_event_loop_add_timer_handler
1409 tdm_event_loop_source_remove(tdm_event_loop_source *source);
1412 * @brief Trigger a 'need to validate' event.
1413 * @param[in] output The output the event should be triggered for.
1414 * @note The global display lock has to be locked before the call to this function.
1415 * @see #tdm_output_hwc_set_need_validate_handler
1419 tdm_backend_trigger_need_validate_event(tdm_output *output);
1425 #endif /* _TDM_BACKEND_H_ */