bd7428c438cb08671a7093be3249aa11c40ed3d1
[platform/core/uifw/libtdm.git] / src / tdm_hwc.c
1 /**************************************************************************
2  *
3  * libtdm
4  *
5  * Copyright 2018 Samsung Electronics co., Ltd. All Rights Reserved.
6  *
7  * Contact: SooChan Lim <sc1.lim@samsung.com>,
8  *          Boram Park <boram1288.park@samsung.com>,
9  *          Changyeon Lee <cyeon.lee@samsung.com>,
10  *          Sangjin Lee <lsj119@samsung.com>
11  *
12  * Permission is hereby granted, free of charge, to any person obtaining a
13  * copy of this software and associated documentation files (the
14  * "Software"), to deal in the Software without restriction, including
15  * without limitation the rights to use, copy, modify, merge, publish,
16  * distribute, sub license, and/or sell copies of the Software, and to
17  * permit persons to whom the Software is furnished to do so, subject to
18  * the following conditions:
19  *
20  * The above copyright notice and this permission notice (including the
21  * next paragraph) shall be included in all copies or substantial portions
22  * of the Software.
23  *
24  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
25  * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
26  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
27  * IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR
28  * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
29  * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
30  * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
31  *
32 **************************************************************************/
33
34 #ifdef HAVE_CONFIG_H
35 #include "config.h"
36 #endif
37
38 #include "tdm_private.h"
39
40 #define HWC_FUNC_ENTRY() \
41         tdm_private_display *private_display; \
42         tdm_private_output *private_output; \
43         tdm_private_hwc *private_hwc; \
44         tdm_error ret = TDM_ERROR_NONE; /* default TDM_ERROR_NONE */\
45         TDM_RETURN_VAL_IF_FAIL(hwc != NULL, TDM_ERROR_INVALID_PARAMETER); \
46         private_hwc = (tdm_private_hwc*)hwc; \
47         private_output = private_hwc->private_output; \
48         TDM_RETURN_VAL_IF_FAIL(private_output != NULL, TDM_ERROR_INVALID_PARAMETER); \
49         private_display = private_output->private_display
50
51 #define HWC_FUNC_ENTRY_ERROR() \
52         tdm_private_display *private_display; \
53         tdm_private_output *private_output; \
54         tdm_private_hwc *private_hwc; \
55         tdm_error ret = TDM_ERROR_NONE; /* default TDM_ERROR_NONE */\
56         TDM_RETURN_VAL_IF_FAIL_WITH_ERROR(hwc != NULL, TDM_ERROR_INVALID_PARAMETER, NULL); \
57         private_hwc = (tdm_private_hwc*)hwc; \
58         private_output = private_hwc->private_output; \
59         TDM_RETURN_VAL_IF_FAIL_WITH_ERROR(private_output != NULL, TDM_ERROR_INVALID_PARAMETER, NULL); \
60         private_display = private_output->private_display
61
62 #define HWC_FUNC_ENTRY_VOID_RETURN() \
63         tdm_private_display *private_display; \
64         tdm_private_output *private_output; \
65         tdm_private_hwc *private_hwc; \
66         tdm_error ret = TDM_ERROR_NONE; /* default TDM_ERROR_NONE */\
67         TDM_RETURN_IF_FAIL(hwc != NULL); \
68         private_hwc = (tdm_private_hwc*)hwc; \
69         private_output = private_hwc->private_output; \
70         TDM_RETURN_IF_FAIL(private_output != NULL); \
71         private_display = private_output->private_display
72
73
74 static tdm_private_hwc_window *
75 _tdm_hwc_find_private_hwc_window(tdm_private_hwc *private_hwc, tdm_hwc_window *hwc_window_backend)
76 {
77         tdm_private_hwc_window *private_hwc_window = NULL;
78
79         LIST_FOR_EACH_ENTRY(private_hwc_window, &private_hwc->hwc_window_list, link) {
80                 if (private_hwc_window->hwc_window_backend == hwc_window_backend)
81                         return private_hwc_window;
82         }
83
84         return NULL;
85 }
86
87 static void
88 _tdm_hwc_thread_cb_commit(tdm_private_display *private_display, void *object,
89                                 tdm_thread_cb_base *cb_base, void *user_data)
90 {
91         tdm_thread_cb_hwc_commit *hwc_commit = (tdm_thread_cb_hwc_commit *)cb_base;
92         tdm_private_hwc_commit_handler *hwc_commit_handler = hwc_commit->base.data;
93         tdm_private_hwc *private_hwc = object;
94
95         TDM_RETURN_IF_FAIL(TDM_MUTEX_IS_LOCKED());
96
97         if (!hwc_commit_handler)
98                 return;
99
100         assert(hwc_commit_handler->owner_tid == syscall(SYS_gettid));
101
102         tdm_thread_cb_remove(private_hwc, TDM_THREAD_CB_HWC_COMMIT, hwc_commit_handler,
103                                         _tdm_hwc_thread_cb_commit, NULL);
104
105         LIST_DEL(&hwc_commit_handler->link);
106
107         if (tdm_debug_module & TDM_DEBUG_COMMIT) {
108                 TDM_INFO("----------------------------------------- hwc(%d) committed", private_hwc->index);
109                 TDM_INFO("handler(%p)", hwc_commit_handler);
110         }
111
112         if (hwc_commit_handler->func) {
113                 _pthread_mutex_unlock(&private_display->lock);
114                 hwc_commit_handler->func(private_hwc,
115                                                                         hwc_commit->sequence,
116                                                                         hwc_commit->tv_sec,
117                                                                         hwc_commit->tv_usec,
118                                                                         hwc_commit_handler->user_data);
119                 _pthread_mutex_lock(&private_display->lock);
120         }
121
122         free(hwc_commit_handler);
123
124         if (tdm_debug_module & TDM_DEBUG_COMMIT)
125                 TDM_INFO("-----------------------------------------...");
126 }
127
128 static void
129 _tdm_hwc_cb_commit(tdm_hwc *hwc_backend, unsigned int sequence,
130                                           unsigned int tv_sec, unsigned int tv_usec, void *user_data)
131 {
132         tdm_private_hwc_commit_handler *hwc_commit_handler = user_data;
133         tdm_private_hwc *private_hwc;
134         tdm_thread_cb_hwc_commit hwc_commit;
135         tdm_error ret;
136
137         if (hwc_commit_handler)
138                 private_hwc = hwc_commit_handler->private_hwc;
139         else
140                 private_hwc = tdm_display_find_private_hwc(tdm_display_get(), hwc_backend);
141
142         memset(&hwc_commit, 0, sizeof hwc_commit);
143         hwc_commit.base.type = TDM_THREAD_CB_HWC_COMMIT;
144         hwc_commit.base.length = sizeof hwc_commit;
145         hwc_commit.base.object_stamp = private_hwc->stamp;
146         hwc_commit.base.data = hwc_commit_handler;
147         hwc_commit.base.sync = 0;
148         hwc_commit.sequence = sequence;
149         hwc_commit.tv_sec = tv_sec;
150         hwc_commit.tv_usec = tv_usec;
151
152         ret = tdm_thread_cb_call(private_hwc, &hwc_commit.base, 1);
153         TDM_WARNING_IF_FAIL(ret == TDM_ERROR_NONE);
154 }
155
156 INTERN tdm_error
157 tdm_hwc_init(tdm_private_display *private_display)
158 {
159         tdm_thread_cb_set_find_func(TDM_THREAD_CB_HWC_COMMIT, tdm_display_find_hwc_stamp);
160
161         return TDM_ERROR_NONE;
162 }
163
164 EXTERN tdm_hwc_window *
165 tdm_hwc_create_window(tdm_hwc *hwc, tdm_error *error)
166 {
167         tdm_hwc_window *hwc_window = NULL;
168
169         HWC_FUNC_ENTRY_ERROR();
170
171         _pthread_mutex_lock(&private_display->lock);
172
173         hwc_window = (tdm_hwc_window *)tdm_hwc_window_create_internal(private_hwc, error);
174
175         _pthread_mutex_unlock(&private_display->lock);
176
177         return hwc_window;
178 }
179
180 EXTERN tdm_error
181 tdm_hwc_get_video_supported_formats(tdm_hwc *hwc, const tbm_format **formats, int *count)
182 {
183         tdm_private_module *private_module;
184         tdm_func_hwc *func_hwc;
185
186         HWC_FUNC_ENTRY();
187
188         TDM_RETURN_VAL_IF_FAIL(formats != NULL, TDM_ERROR_INVALID_PARAMETER);
189         TDM_RETURN_VAL_IF_FAIL(count != NULL, TDM_ERROR_INVALID_PARAMETER);
190
191         _pthread_mutex_lock(&private_display->lock);
192
193         private_module = private_output->private_module;
194         func_hwc = &private_module->func_hwc;
195
196         if (!func_hwc->hwc_get_video_supported_formats) {
197                 /* LCOV_EXCL_START */
198                 _pthread_mutex_unlock(&private_display->lock);
199                 TDM_WRN("not implemented!!");
200                 return TDM_ERROR_NOT_IMPLEMENTED;
201                 /* LCOV_EXCL_STOP */
202         }
203
204         ret = func_hwc->hwc_get_video_supported_formats(private_hwc->hwc_backend, formats, count);
205
206         _pthread_mutex_unlock(&private_display->lock);
207
208         return ret;
209 }
210
211 EXTERN tdm_error
212 tdm_hwc_get_video_available_properties(tdm_hwc *hwc, const tdm_prop **props, int *count)
213 {
214         tdm_private_module *private_module;
215         tdm_func_hwc *func_hwc = NULL;
216
217         HWC_FUNC_ENTRY();
218
219         TDM_RETURN_VAL_IF_FAIL(props != NULL, TDM_ERROR_INVALID_PARAMETER);
220         TDM_RETURN_VAL_IF_FAIL(count != NULL, TDM_ERROR_INVALID_PARAMETER);
221
222         _pthread_mutex_lock(&private_display->lock);
223
224         private_module = private_output->private_module;
225         func_hwc = &private_module->func_hwc;
226
227         if (!func_hwc->hwc_get_video_available_properties) {
228                 /* LCOV_EXCL_START */
229                 _pthread_mutex_unlock(&private_display->lock);
230                 TDM_WRN("not implemented!!");
231                 return TDM_ERROR_NOT_IMPLEMENTED;
232                 /* LCOV_EXCL_STOP */
233         }
234
235         ret = func_hwc->hwc_get_video_available_properties(private_hwc->hwc_backend, props, count);
236
237         _pthread_mutex_unlock(&private_display->lock);
238
239         return ret;
240 }
241
242 EXTERN tdm_error
243 tdm_hwc_get_video_capability(tdm_hwc *hwc,
244                                                         tdm_hwc_video_capability *video_capability)
245 {
246         tdm_private_module *private_module;
247         tdm_func_hwc *func_hwc;
248
249         HWC_FUNC_ENTRY();
250
251         _pthread_mutex_lock(&private_display->lock);
252
253         private_module = private_output->private_module;
254         func_hwc = &private_module->func_hwc;
255
256         if (!func_hwc->hwc_get_video_capability) {
257                 _pthread_mutex_unlock(&private_display->lock);
258                 TDM_WRN("not implemented!!");
259                 return TDM_ERROR_NOT_IMPLEMENTED;
260         }
261
262         ret = func_hwc->hwc_get_video_capability(private_hwc->hwc_backend,
263                                                                                         video_capability);
264
265         _pthread_mutex_unlock(&private_display->lock);
266
267         return ret;
268 }
269
270 EXTERN tdm_error
271 tdm_hwc_get_available_properties(tdm_hwc *hwc, const tdm_prop **props, int *count)
272 {
273         tdm_private_module *private_module;
274         tdm_func_hwc *func_hwc = NULL;
275
276         HWC_FUNC_ENTRY();
277
278         TDM_RETURN_VAL_IF_FAIL(props != NULL, TDM_ERROR_INVALID_PARAMETER);
279         TDM_RETURN_VAL_IF_FAIL(count != NULL, TDM_ERROR_INVALID_PARAMETER);
280
281         _pthread_mutex_lock(&private_display->lock);
282
283         private_module = private_output->private_module;
284         func_hwc = &private_module->func_hwc;
285
286         if (!func_hwc->hwc_get_available_properties) {
287                 /* LCOV_EXCL_START */
288                 _pthread_mutex_unlock(&private_display->lock);
289                 TDM_WRN("not implemented!!");
290                 return TDM_ERROR_NOT_IMPLEMENTED;
291                 /* LCOV_EXCL_STOP */
292         }
293
294         ret = func_hwc->hwc_get_available_properties(private_hwc->hwc_backend, props, count);
295
296         _pthread_mutex_unlock(&private_display->lock);
297
298         return ret;
299 }
300
301 EXTERN tbm_surface_queue_h
302 tdm_hwc_get_client_target_buffer_queue(tdm_hwc *hwc, tdm_error *error)
303 {
304         tdm_private_module *private_module;
305         tdm_func_hwc *func_hwc = NULL;
306         tbm_surface_queue_h queue = NULL;
307
308         HWC_FUNC_ENTRY_ERROR();
309
310         _pthread_mutex_lock(&private_display->lock);
311
312         private_module = private_hwc->private_module;
313         func_hwc = &private_module->func_hwc;
314
315         if (!func_hwc->hwc_get_client_target_buffer_queue) {
316                 /* LCOV_EXCL_START */
317                 _pthread_mutex_unlock(&private_display->lock);
318                 TDM_WRN("not implemented!!");
319                 return NULL;
320                 /* LCOV_EXCL_STOP */
321         }
322
323         queue = func_hwc->hwc_get_client_target_buffer_queue(private_hwc->hwc_backend, error);
324
325         _pthread_mutex_unlock(&private_display->lock);
326
327         return queue;
328 }
329
330 EXTERN tdm_error
331 tdm_hwc_set_client_target_buffer(tdm_hwc *hwc, tbm_surface_h target_buffer, tdm_region damage)
332 {
333         tdm_private_module *private_module;
334         tdm_func_hwc *func_hwc = NULL;
335
336         HWC_FUNC_ENTRY();
337
338         _pthread_mutex_lock(&private_display->lock);
339
340         if (tdm_debug_dump & TDM_DUMP_FLAG_WINDOW) {
341                 /* LCOV_EXCL_START */
342                 char str[TDM_PATH_LEN];
343                 static int i;
344                 snprintf(str, TDM_PATH_LEN, "target_window_%03d", i++);
345                 tdm_helper_dump_buffer_str(target_buffer, tdm_debug_dump_dir, str);
346                 /* LCOV_EXCL_STOP */
347         }
348
349         private_module = private_hwc->private_module;
350         func_hwc = &private_module->func_hwc;
351
352         if (!func_hwc->hwc_set_client_target_buffer) {
353                 /* LCOV_EXCL_START */
354                 _pthread_mutex_unlock(&private_display->lock);
355                 TDM_WRN("not implemented!!");
356                 return TDM_ERROR_NOT_IMPLEMENTED;
357                 /* LCOV_EXCL_STOP */
358         }
359
360         ret = func_hwc->hwc_set_client_target_buffer(private_hwc->hwc_backend, target_buffer, damage);
361
362         _pthread_mutex_unlock(&private_display->lock);
363
364         return ret;
365 }
366
367
368 EXTERN tdm_error
369 tdm_hwc_validate(tdm_hwc *hwc, tdm_hwc_window **composited_wnds, uint32_t num_wnds, uint32_t *num_types)
370 {
371         tdm_private_module *private_module;
372         tdm_func_hwc *func_hwc = NULL;
373         tdm_private_hwc_window **composited_wnds_frontend = NULL;
374         tdm_hwc_window **composited_wnds_backend = NULL;
375         int i;
376
377         HWC_FUNC_ENTRY();
378
379         TDM_RETURN_VAL_IF_FAIL(num_types != NULL, TDM_ERROR_INVALID_PARAMETER);
380
381         _pthread_mutex_lock(&private_display->lock);
382
383         private_module = private_hwc->private_module;
384         func_hwc = &private_module->func_hwc;
385
386         if (!func_hwc->hwc_validate) {
387                 /* LCOV_EXCL_START */
388                 _pthread_mutex_unlock(&private_display->lock);
389                 TDM_WRN("not implemented!!");
390                 return TDM_ERROR_NOT_IMPLEMENTED;
391                 /* LCOV_EXCL_STOP */
392         }
393
394         if (num_wnds == 0) {
395                 ret = func_hwc->hwc_validate(private_hwc->hwc_backend, NULL, 0, num_types);
396
397                 _pthread_mutex_unlock(&private_display->lock);
398                 return ret;
399         }
400
401         composited_wnds_backend = calloc(num_wnds, sizeof(tdm_hwc_window *));
402         if (!composited_wnds_backend) {
403                 /* LCOV_EXCL_START */
404                 _pthread_mutex_unlock(&private_display->lock);
405                 return TDM_ERROR_OUT_OF_MEMORY;
406                 /* LCOV_EXCL_STOP */
407         }
408
409         composited_wnds_frontend = (tdm_private_hwc_window **)composited_wnds;
410
411         for (i = 0; i < num_wnds; i++)
412                 composited_wnds_backend[i] = composited_wnds_frontend[i]->hwc_window_backend;
413
414         ret = func_hwc->hwc_validate(private_hwc->hwc_backend, composited_wnds_backend,
415                                                                 num_wnds, num_types);
416
417         free(composited_wnds_backend);
418
419         _pthread_mutex_unlock(&private_display->lock);
420
421         return ret;
422 }
423
424 EXTERN tdm_error
425 tdm_hwc_get_changed_composition_types(tdm_hwc *hwc, uint32_t *num_elements,
426                                                                 tdm_hwc_window **hwc_window,
427                                                                 tdm_hwc_window_composition *composition_types)
428 {
429         tdm_private_module *private_module;
430         tdm_func_hwc *func_hwc = NULL;
431         tdm_private_hwc_window * private_hwc_window = NULL;
432         int i = 0;
433
434         HWC_FUNC_ENTRY();
435
436         TDM_RETURN_VAL_IF_FAIL(num_elements != NULL, TDM_ERROR_INVALID_PARAMETER);
437
438         _pthread_mutex_lock(&private_display->lock);
439
440         private_module = private_hwc->private_module;
441         func_hwc = &private_module->func_hwc;
442
443         if (!func_hwc->hwc_get_changed_composition_types) {
444                 /* LCOV_EXCL_START */
445                 _pthread_mutex_unlock(&private_display->lock);
446                 TDM_WRN("not implemented!!");
447                 return TDM_ERROR_NOT_IMPLEMENTED;
448                 /* LCOV_EXCL_STOP */
449         }
450
451         ret = func_hwc->hwc_get_changed_composition_types(private_hwc->hwc_backend,
452                                                         num_elements, hwc_window, composition_types);
453         if (ret != TDM_ERROR_NONE) {
454                 /* LCOV_EXCL_START */
455                 _pthread_mutex_unlock(&private_display->lock);
456                 return ret;
457                 /* LCOV_EXCL_STOP */
458         }
459
460         if (hwc_window == NULL || composition_types == NULL) {
461                 _pthread_mutex_unlock(&private_display->lock);
462                 return TDM_ERROR_NONE;
463         }
464
465         for (i = 0; i < *num_elements; i++) {
466                 private_hwc_window = _tdm_hwc_find_private_hwc_window(private_hwc, hwc_window[i]);
467                 if (private_hwc_window == NULL) {
468                         /* LCOV_EXCL_START */
469                         TDM_ERR("failed! This should never happen!");
470                         tdm_hwc_window_destroy_internal(private_hwc_window);
471                         *num_elements = 0;
472                         _pthread_mutex_unlock(&private_display->lock);
473                         return TDM_ERROR_OPERATION_FAILED;
474                         /* LCOV_EXCL_STOP */
475                 }
476
477                 hwc_window[i] = (tdm_hwc_window*)private_hwc_window;
478         }
479
480         _pthread_mutex_unlock(&private_display->lock);
481
482         return ret;
483 }
484
485 EXTERN tdm_error
486 tdm_hwc_accept_validation(tdm_hwc *hwc)
487 {
488         tdm_private_module *private_module;
489         tdm_func_hwc *func_hwc = NULL;
490
491         HWC_FUNC_ENTRY();
492
493         _pthread_mutex_lock(&private_display->lock);
494
495         private_module = private_hwc->private_module;
496         func_hwc = &private_module->func_hwc;
497
498         if (!func_hwc->hwc_validate) {
499                 /* LCOV_EXCL_START */
500                 _pthread_mutex_unlock(&private_display->lock);
501                 TDM_WRN("not implemented!!");
502                 return TDM_ERROR_NOT_IMPLEMENTED;
503                 /* LCOV_EXCL_STOP */
504         }
505
506         ret = func_hwc->hwc_accept_validation(private_hwc->hwc_backend);
507
508         _pthread_mutex_unlock(&private_display->lock);
509
510         return ret;
511 }
512
513 /* temporary prototype to avoid build break */
514 tdm_error
515 tdm_hwc_accept_changes(tdm_hwc *hwc)
516 {
517    return tdm_hwc_accept_validation(hwc);
518 }
519
520 EXTERN tdm_error
521 tdm_hwc_commit(tdm_hwc *hwc, int sync, tdm_hwc_commit_handler func, void *user_data)
522 {
523         tdm_private_module *private_module;
524         tdm_func_hwc *func_hwc = NULL;
525         tdm_private_hwc_commit_handler *hwc_commit_handler = NULL;
526
527         HWC_FUNC_ENTRY();
528
529         _pthread_mutex_lock(&private_display->lock);
530
531         private_module = private_hwc->private_module;
532         func_hwc = &private_module->func_hwc;
533
534         if (!func_hwc->hwc_commit) {
535                 /* LCOV_EXCL_START */
536                 TDM_WRN("not implemented!!");
537                 _pthread_mutex_unlock(&private_display->lock);
538                 return TDM_ERROR_NOT_IMPLEMENTED;
539                 /* LCOV_EXCL_STOP */
540         }
541
542 //TODO: I am not sure yet whether we have to check the dpms at hwc_commit.
543 #if 0
544         /* check if the dpms is off */
545         if (TDM_OUTPUT_DPMS_VSYNC_IS_OFF(private_output->current_dpms_value)) {
546                 TDM_ERR("hwc(%d) dpms: %s", private_hwc->index,
547                                 tdm_dpms_str(private_output->current_dpms_value));
548                 _pthread_mutex_unlock(&private_display->lock);
549                 return TDM_ERROR_DPMS_OFF;
550         }
551 #endif
552
553         if (tdm_debug_module & TDM_DEBUG_COMMIT)
554                 TDM_INFO("hwc(%d) commit", private_hwc->index);
555
556         if (!private_hwc->regist_commit_cb) {
557                 private_hwc->regist_commit_cb = 1;
558                 ret = func_hwc->hwc_set_commit_handler(private_hwc->hwc_backend, _tdm_hwc_cb_commit);
559                 /* LCOV_EXCL_START */
560                 if (ret != TDM_ERROR_NONE) {
561                         private_hwc->regist_commit_cb = 0;
562                         TDM_ERR("hwc(%d) fail to set hwc_set_commit_handler", private_hwc->index);
563                         _pthread_mutex_unlock(&private_display->lock);
564                         return ret;
565                 /* LCOV_EXCL_STOP */
566                 }
567         }
568
569         hwc_commit_handler = calloc(1, sizeof(tdm_private_hwc_commit_handler));
570         if (!hwc_commit_handler) {
571                 /* LCOV_EXCL_START */
572                 TDM_ERR("failed: alloc memory");
573                 _pthread_mutex_unlock(&private_display->lock);
574                 return TDM_ERROR_OUT_OF_MEMORY;
575                 /* LCOV_EXCL_STOP */
576         }
577
578         ret = tdm_thread_cb_add(private_hwc, TDM_THREAD_CB_HWC_COMMIT, hwc_commit_handler,
579                                         _tdm_hwc_thread_cb_commit, NULL);
580         if (ret != TDM_ERROR_NONE) {
581                 TDM_ERR("tdm_thread_cb_add failed");
582                 free(hwc_commit_handler);
583                 _pthread_mutex_unlock(&private_display->lock);
584                 return ret;
585         }
586
587         LIST_ADDTAIL(&hwc_commit_handler->link, &private_hwc->hwc_commit_handler_list);
588         hwc_commit_handler->private_hwc = private_hwc;
589         hwc_commit_handler->func = func;
590         hwc_commit_handler->user_data = user_data;
591         hwc_commit_handler->owner_tid = syscall(SYS_gettid);
592
593         ret = func_hwc->hwc_commit(private_hwc->hwc_backend, sync, hwc_commit_handler);
594         TDM_GOTO_IF_FAIL(ret == TDM_ERROR_NONE, commit_failed);
595
596         if (tdm_debug_module & TDM_DEBUG_COMMIT)
597                 TDM_INFO("hwc(%d) backend commit: handle(%p) func(%p) user_data(%p)",
598                                 private_hwc->index, hwc_commit_handler, func, user_data);
599
600         _pthread_mutex_unlock(&private_display->lock);
601
602         return ret;
603
604 commit_failed:
605         /* LCOV_EXCL_START */
606         if (hwc_commit_handler) {
607                 tdm_thread_cb_remove(private_hwc, TDM_THREAD_CB_HWC_COMMIT, hwc_commit_handler,
608                                                 _tdm_hwc_thread_cb_commit, NULL);
609                 LIST_DEL(&hwc_commit_handler->link);
610                 free(hwc_commit_handler);
611         }
612
613         _pthread_mutex_unlock(&private_display->lock);
614
615         return ret;
616         /* LCOV_EXCL_STOP */
617 }