Package version up to 2.7.1
[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_capabilities(tdm_hwc *hwc, tdm_hwc_capability *capabilities)
244 {
245         tdm_private_module *private_module;
246         tdm_func_hwc *func_hwc;
247
248         HWC_FUNC_ENTRY();
249
250         _pthread_mutex_lock(&private_display->lock);
251
252         private_module = private_output->private_module;
253         func_hwc = &private_module->func_hwc;
254
255         if (!func_hwc->hwc_get_capabilities) {
256                 _pthread_mutex_unlock(&private_display->lock);
257                 TDM_WRN("not implemented!!");
258                 return TDM_ERROR_NOT_IMPLEMENTED;
259         }
260
261         ret = func_hwc->hwc_get_capabilities(private_hwc->hwc_backend, capabilities);
262
263         _pthread_mutex_unlock(&private_display->lock);
264
265         return ret;
266 }
267
268 EXTERN tdm_error
269 tdm_hwc_get_available_properties(tdm_hwc *hwc, const tdm_prop **props, int *count)
270 {
271         tdm_private_module *private_module;
272         tdm_func_hwc *func_hwc = NULL;
273
274         HWC_FUNC_ENTRY();
275
276         TDM_RETURN_VAL_IF_FAIL(props != NULL, TDM_ERROR_INVALID_PARAMETER);
277         TDM_RETURN_VAL_IF_FAIL(count != NULL, TDM_ERROR_INVALID_PARAMETER);
278
279         _pthread_mutex_lock(&private_display->lock);
280
281         private_module = private_output->private_module;
282         func_hwc = &private_module->func_hwc;
283
284         if (!func_hwc->hwc_get_available_properties) {
285                 /* LCOV_EXCL_START */
286                 _pthread_mutex_unlock(&private_display->lock);
287                 TDM_WRN("not implemented!!");
288                 return TDM_ERROR_NOT_IMPLEMENTED;
289                 /* LCOV_EXCL_STOP */
290         }
291
292         ret = func_hwc->hwc_get_available_properties(private_hwc->hwc_backend, props, count);
293
294         _pthread_mutex_unlock(&private_display->lock);
295
296         return ret;
297 }
298
299 EXTERN tbm_surface_queue_h
300 tdm_hwc_get_client_target_buffer_queue(tdm_hwc *hwc, tdm_error *error)
301 {
302         tdm_private_module *private_module;
303         tdm_func_hwc *func_hwc = NULL;
304         tbm_surface_queue_h queue = NULL;
305
306         HWC_FUNC_ENTRY_ERROR();
307
308         _pthread_mutex_lock(&private_display->lock);
309
310         private_module = private_hwc->private_module;
311         func_hwc = &private_module->func_hwc;
312
313         if (!func_hwc->hwc_get_client_target_buffer_queue) {
314                 /* LCOV_EXCL_START */
315                 _pthread_mutex_unlock(&private_display->lock);
316                 TDM_WRN("not implemented!!");
317                 return NULL;
318                 /* LCOV_EXCL_STOP */
319         }
320
321         queue = func_hwc->hwc_get_client_target_buffer_queue(private_hwc->hwc_backend, error);
322
323         _pthread_mutex_unlock(&private_display->lock);
324
325         return queue;
326 }
327
328 EXTERN tdm_error
329 tdm_hwc_set_client_target_buffer(tdm_hwc *hwc, tbm_surface_h target_buffer, tdm_region damage)
330 {
331         tdm_private_module *private_module;
332         tdm_func_hwc *func_hwc = NULL;
333
334         HWC_FUNC_ENTRY();
335
336         _pthread_mutex_lock(&private_display->lock);
337
338         if (tdm_debug_dump & TDM_DUMP_FLAG_WINDOW) {
339                 /* LCOV_EXCL_START */
340                 char str[TDM_PATH_LEN];
341                 static int i;
342                 snprintf(str, TDM_PATH_LEN, "target_window_%03d", i++);
343                 tdm_helper_dump_buffer_str(target_buffer, tdm_debug_dump_dir, str);
344                 /* LCOV_EXCL_STOP */
345         }
346
347         private_module = private_hwc->private_module;
348         func_hwc = &private_module->func_hwc;
349
350         if (!func_hwc->hwc_set_client_target_buffer) {
351                 /* LCOV_EXCL_START */
352                 _pthread_mutex_unlock(&private_display->lock);
353                 TDM_WRN("not implemented!!");
354                 return TDM_ERROR_NOT_IMPLEMENTED;
355                 /* LCOV_EXCL_STOP */
356         }
357
358         ret = func_hwc->hwc_set_client_target_buffer(private_hwc->hwc_backend, target_buffer, damage);
359
360         _pthread_mutex_unlock(&private_display->lock);
361
362         return ret;
363 }
364
365
366 EXTERN tdm_error
367 tdm_hwc_validate(tdm_hwc *hwc, tdm_hwc_window **composited_wnds, uint32_t num_wnds, uint32_t *num_types)
368 {
369         tdm_private_module *private_module;
370         tdm_func_hwc *func_hwc = NULL;
371         tdm_private_hwc_window **composited_wnds_frontend = NULL;
372         tdm_hwc_window **composited_wnds_backend = NULL;
373         int i;
374
375         HWC_FUNC_ENTRY();
376
377         TDM_RETURN_VAL_IF_FAIL(num_types != NULL, TDM_ERROR_INVALID_PARAMETER);
378
379         _pthread_mutex_lock(&private_display->lock);
380
381         private_module = private_hwc->private_module;
382         func_hwc = &private_module->func_hwc;
383
384         if (!func_hwc->hwc_validate) {
385                 /* LCOV_EXCL_START */
386                 _pthread_mutex_unlock(&private_display->lock);
387                 TDM_WRN("not implemented!!");
388                 return TDM_ERROR_NOT_IMPLEMENTED;
389                 /* LCOV_EXCL_STOP */
390         }
391
392         if (num_wnds == 0) {
393                 ret = func_hwc->hwc_validate(private_hwc->hwc_backend, NULL, 0, num_types);
394
395                 _pthread_mutex_unlock(&private_display->lock);
396                 return ret;
397         }
398
399         composited_wnds_backend = calloc(num_wnds, sizeof(tdm_hwc_window *));
400         if (!composited_wnds_backend) {
401                 /* LCOV_EXCL_START */
402                 _pthread_mutex_unlock(&private_display->lock);
403                 return TDM_ERROR_OUT_OF_MEMORY;
404                 /* LCOV_EXCL_STOP */
405         }
406
407         composited_wnds_frontend = (tdm_private_hwc_window **)composited_wnds;
408
409         for (i = 0; i < num_wnds; i++)
410                 composited_wnds_backend[i] = composited_wnds_frontend[i]->hwc_window_backend;
411
412         ret = func_hwc->hwc_validate(private_hwc->hwc_backend, composited_wnds_backend,
413                                                                 num_wnds, num_types);
414
415         free(composited_wnds_backend);
416
417         _pthread_mutex_unlock(&private_display->lock);
418
419         return ret;
420 }
421
422 EXTERN tdm_error
423 tdm_hwc_get_changed_composition_types(tdm_hwc *hwc, uint32_t *num_elements,
424                                                                 tdm_hwc_window **hwc_window,
425                                                                 tdm_hwc_window_composition *composition_types)
426 {
427         tdm_private_module *private_module;
428         tdm_func_hwc *func_hwc = NULL;
429         tdm_private_hwc_window * private_hwc_window = NULL;
430         int i = 0;
431
432         HWC_FUNC_ENTRY();
433
434         TDM_RETURN_VAL_IF_FAIL(num_elements != NULL, TDM_ERROR_INVALID_PARAMETER);
435
436         _pthread_mutex_lock(&private_display->lock);
437
438         private_module = private_hwc->private_module;
439         func_hwc = &private_module->func_hwc;
440
441         if (!func_hwc->hwc_get_changed_composition_types) {
442                 /* LCOV_EXCL_START */
443                 _pthread_mutex_unlock(&private_display->lock);
444                 TDM_WRN("not implemented!!");
445                 return TDM_ERROR_NOT_IMPLEMENTED;
446                 /* LCOV_EXCL_STOP */
447         }
448
449         ret = func_hwc->hwc_get_changed_composition_types(private_hwc->hwc_backend,
450                                                         num_elements, hwc_window, composition_types);
451         if (ret != TDM_ERROR_NONE) {
452                 /* LCOV_EXCL_START */
453                 _pthread_mutex_unlock(&private_display->lock);
454                 return ret;
455                 /* LCOV_EXCL_STOP */
456         }
457
458         if (hwc_window == NULL || composition_types == NULL) {
459                 _pthread_mutex_unlock(&private_display->lock);
460                 return TDM_ERROR_NONE;
461         }
462
463         for (i = 0; i < *num_elements; i++) {
464                 private_hwc_window = _tdm_hwc_find_private_hwc_window(private_hwc, hwc_window[i]);
465                 if (private_hwc_window == NULL) {
466                         /* LCOV_EXCL_START */
467                         TDM_ERR("failed! This should never happen!");
468                         tdm_hwc_window_destroy_internal(private_hwc_window);
469                         *num_elements = 0;
470                         _pthread_mutex_unlock(&private_display->lock);
471                         return TDM_ERROR_OPERATION_FAILED;
472                         /* LCOV_EXCL_STOP */
473                 }
474
475                 hwc_window[i] = (tdm_hwc_window*)private_hwc_window;
476         }
477
478         _pthread_mutex_unlock(&private_display->lock);
479
480         return ret;
481 }
482
483 EXTERN tdm_error
484 tdm_hwc_accept_validation(tdm_hwc *hwc)
485 {
486         tdm_private_module *private_module;
487         tdm_func_hwc *func_hwc = NULL;
488
489         HWC_FUNC_ENTRY();
490
491         _pthread_mutex_lock(&private_display->lock);
492
493         private_module = private_hwc->private_module;
494         func_hwc = &private_module->func_hwc;
495
496         if (!func_hwc->hwc_validate) {
497                 /* LCOV_EXCL_START */
498                 _pthread_mutex_unlock(&private_display->lock);
499                 TDM_WRN("not implemented!!");
500                 return TDM_ERROR_NOT_IMPLEMENTED;
501                 /* LCOV_EXCL_STOP */
502         }
503
504         ret = func_hwc->hwc_accept_validation(private_hwc->hwc_backend);
505
506         _pthread_mutex_unlock(&private_display->lock);
507
508         return ret;
509 }
510
511 EXTERN tdm_error
512 tdm_hwc_commit(tdm_hwc *hwc, int sync, tdm_hwc_commit_handler func, void *user_data)
513 {
514         tdm_private_module *private_module;
515         tdm_func_hwc *func_hwc = NULL;
516         tdm_private_hwc_commit_handler *hwc_commit_handler = NULL;
517
518         HWC_FUNC_ENTRY();
519
520         _pthread_mutex_lock(&private_display->lock);
521
522         private_module = private_hwc->private_module;
523         func_hwc = &private_module->func_hwc;
524
525         if (!func_hwc->hwc_commit) {
526                 /* LCOV_EXCL_START */
527                 TDM_WRN("not implemented!!");
528                 _pthread_mutex_unlock(&private_display->lock);
529                 return TDM_ERROR_NOT_IMPLEMENTED;
530                 /* LCOV_EXCL_STOP */
531         }
532
533 //TODO: I am not sure yet whether we have to check the dpms at hwc_commit.
534 #if 0
535         /* check if the dpms is off */
536         if (TDM_OUTPUT_DPMS_VSYNC_IS_OFF(private_output->current_dpms_value)) {
537                 TDM_ERR("hwc(%d) dpms: %s", private_hwc->index,
538                                 tdm_dpms_str(private_output->current_dpms_value));
539                 _pthread_mutex_unlock(&private_display->lock);
540                 return TDM_ERROR_DPMS_OFF;
541         }
542 #endif
543
544         if (tdm_debug_module & TDM_DEBUG_COMMIT)
545                 TDM_INFO("hwc(%d) commit", private_hwc->index);
546
547         if (!private_hwc->regist_commit_cb) {
548                 private_hwc->regist_commit_cb = 1;
549                 ret = func_hwc->hwc_set_commit_handler(private_hwc->hwc_backend, _tdm_hwc_cb_commit);
550                 /* LCOV_EXCL_START */
551                 if (ret != TDM_ERROR_NONE) {
552                         private_hwc->regist_commit_cb = 0;
553                         TDM_ERR("hwc(%d) fail to set hwc_set_commit_handler", private_hwc->index);
554                         _pthread_mutex_unlock(&private_display->lock);
555                         return ret;
556                 /* LCOV_EXCL_STOP */
557                 }
558         }
559
560         hwc_commit_handler = calloc(1, sizeof(tdm_private_hwc_commit_handler));
561         if (!hwc_commit_handler) {
562                 /* LCOV_EXCL_START */
563                 TDM_ERR("failed: alloc memory");
564                 _pthread_mutex_unlock(&private_display->lock);
565                 return TDM_ERROR_OUT_OF_MEMORY;
566                 /* LCOV_EXCL_STOP */
567         }
568
569         ret = tdm_thread_cb_add(private_hwc, TDM_THREAD_CB_HWC_COMMIT, hwc_commit_handler,
570                                         _tdm_hwc_thread_cb_commit, NULL);
571         if (ret != TDM_ERROR_NONE) {
572                 TDM_ERR("tdm_thread_cb_add failed");
573                 free(hwc_commit_handler);
574                 _pthread_mutex_unlock(&private_display->lock);
575                 return ret;
576         }
577
578         LIST_ADDTAIL(&hwc_commit_handler->link, &private_hwc->hwc_commit_handler_list);
579         hwc_commit_handler->private_hwc = private_hwc;
580         hwc_commit_handler->func = func;
581         hwc_commit_handler->user_data = user_data;
582         hwc_commit_handler->owner_tid = syscall(SYS_gettid);
583
584         ret = func_hwc->hwc_commit(private_hwc->hwc_backend, sync, hwc_commit_handler);
585         TDM_GOTO_IF_FAIL(ret == TDM_ERROR_NONE, commit_failed);
586
587         if (tdm_debug_module & TDM_DEBUG_COMMIT)
588                 TDM_INFO("hwc(%d) backend commit: handle(%p) func(%p) user_data(%p)",
589                                 private_hwc->index, hwc_commit_handler, func, user_data);
590
591         _pthread_mutex_unlock(&private_display->lock);
592
593         return ret;
594
595 commit_failed:
596         /* LCOV_EXCL_START */
597         if (hwc_commit_handler) {
598                 tdm_thread_cb_remove(private_hwc, TDM_THREAD_CB_HWC_COMMIT, hwc_commit_handler,
599                                                 _tdm_hwc_thread_cb_commit, NULL);
600                 LIST_DEL(&hwc_commit_handler->link);
601                 free(hwc_commit_handler);
602         }
603
604         _pthread_mutex_unlock(&private_display->lock);
605
606         return ret;
607         /* LCOV_EXCL_STOP */
608 }