From 039117dfaac098322e6177e8bc0d3f8e5a707adc Mon Sep 17 00:00:00 2001 From: Joonbum Ko Date: Mon, 27 Apr 2020 20:36:18 +0900 Subject: [PATCH 01/16] Replaced all getenv() by tpl_getenv() to reduce unnecessary calls. - In libtpl-egl, getenv() is using for debugging purposes only. - In most situations, it was frequently called getenv() which is not thread-safe, even though it is unnecessary. - It is difficult to make getenv() completely disabled, but replaced it with tpl_getenv() so that it can only be used in debugging situations. - tpl_getenv() returns the result of calling getenv() only if '/opt/usr/tpl_env' file exists, otherwise NULL. - example 1. $ export TPL_LOG_LEVEL=3 2. $ run gl app -> libtpl-egl will not get the env TPL_LOG_LEVEL 3. $ touch /opt/usr/tpl_env 4. $ run gl app -> TPL_LOG_LEVEL=3 will be accepted Change-Id: I4d40e1beb2f4c34e17b7694f96db5d237cb33bfe Signed-off-by: Joonbum Ko --- src/tpl.c | 4 ++-- src/tpl_object.c | 2 +- src/tpl_utils.h | 4 ++-- src/tpl_wayland_egl.c | 2 +- src/tpl_wayland_egl_thread.c | 2 +- src/tpl_x11_dri2.c | 4 ++-- src/tpl_x11_dri3.c | 2 +- 7 files changed, 10 insertions(+), 10 deletions(-) diff --git a/src/tpl.c b/src/tpl.c index 8107b8f..e6d90f0 100644 --- a/src/tpl.c +++ b/src/tpl.c @@ -231,11 +231,11 @@ __tpl_display_choose_backend(tpl_handle_t native_dpy) int wl_egl_thread = 0; #endif - thread = getenv("TPL_WL_EGL_THREAD"); + thread = tpl_getenv("TPL_WL_EGL_THREAD"); if (thread) wl_egl_thread = atoi(thread); - plat_name = getenv("EGL_PLATFORM"); + plat_name = tpl_getenv("EGL_PLATFORM"); if (plat_name) { #ifdef TPL_WINSYS_DRI2 diff --git a/src/tpl_object.c b/src/tpl_object.c index cf66cb0..4eb48c6 100644 --- a/src/tpl_object.c +++ b/src/tpl_object.c @@ -11,7 +11,7 @@ __tpl_object_hash_init(void) char *val; tpl_obj_hash_check = TPL_FALSE; - val = getenv("TPL_OBJECT_HASH_CHECK"); + val = tpl_getenv("TPL_OBJECT_HASH_CHECK"); if ((val) && (!strcmp(val, "1")) && (!tpl_obj_hash)) { tpl_obj_hash_check = TPL_TRUE; tpl_obj_hash = __tpl_hashlist_create(); diff --git a/src/tpl_utils.h b/src/tpl_utils.h index 9e0369f..92cb6a0 100644 --- a/src/tpl_utils.h +++ b/src/tpl_utils.h @@ -152,7 +152,7 @@ inline char *tpl_getenv(const char *name) { \ if (!tpl_log_initialized) \ { \ - char *env = getenv("TPL_LOG_LEVEL"); \ + char *env = tpl_getenv("TPL_LOG_LEVEL"); \ if (env == NULL) \ tpl_log_lvl = 0; \ else \ @@ -303,7 +303,7 @@ inline char *tpl_getenv(const char *name) } \ else \ { \ - char *env = getenv("TPL_DUMP_LEVEL"); \ + char *env = tpl_getenv("TPL_DUMP_LEVEL"); \ if (env == NULL) \ tpl_dump_lvl = 0; \ else \ diff --git a/src/tpl_wayland_egl.c b/src/tpl_wayland_egl.c index d3d4d38..19611a7 100755 --- a/src/tpl_wayland_egl.c +++ b/src/tpl_wayland_egl.c @@ -173,7 +173,7 @@ __tpl_wayland_egl_display_init(tpl_display_t *display) (struct wl_display *)display->native_handle; wayland_egl_display->wl_tbm_client = wayland_tbm_client_init((struct wl_display *) wl_dpy); - char *env = getenv("TPL_WAIT_VBLANK"); + char *env = tpl_getenv("TPL_WAIT_VBLANK"); if (!wayland_egl_display->wl_tbm_client) { TPL_ERR("Wayland TBM initialization failed!"); diff --git a/src/tpl_wayland_egl_thread.c b/src/tpl_wayland_egl_thread.c index 79bcb91..6722970 100755 --- a/src/tpl_wayland_egl_thread.c +++ b/src/tpl_wayland_egl_thread.c @@ -532,7 +532,7 @@ twe_thread_create(void) _twe_ctx->use_wait_vblank = TPL_TRUE; - env = getenv("TPL_WAIT_VBLANK"); + env = tpl_getenv("TPL_WAIT_VBLANK"); if (env && !atoi(env)) { _twe_ctx->use_wait_vblank = TPL_FALSE; } diff --git a/src/tpl_x11_dri2.c b/src/tpl_x11_dri2.c index c38f2c7..e5480a7 100644 --- a/src/tpl_x11_dri2.c +++ b/src/tpl_x11_dri2.c @@ -207,10 +207,10 @@ __tpl_x11_dri2_display_init(tpl_display_t *display) global.bufmgr = tbm_bufmgr_init(global.bufmgr_fd); /* Initialize swap type configuration. */ - __tpl_x11_swap_str_to_swap_type(getenv(EGL_X11_WINDOW_SWAP_TYPE_ENV_NAME), + __tpl_x11_swap_str_to_swap_type(tpl_getenv(EGL_X11_WINDOW_SWAP_TYPE_ENV_NAME), &global.win_swap_type); - __tpl_x11_swap_str_to_swap_type(getenv(EGL_X11_FB_SWAP_TYPE_ENV_NAME), + __tpl_x11_swap_str_to_swap_type(tpl_getenv(EGL_X11_FB_SWAP_TYPE_ENV_NAME), &global.fb_swap_type); } diff --git a/src/tpl_x11_dri3.c b/src/tpl_x11_dri3.c index 076446b..3f90de3 100644 --- a/src/tpl_x11_dri3.c +++ b/src/tpl_x11_dri3.c @@ -1237,7 +1237,7 @@ __tpl_x11_dri3_display_init(tpl_display_t *display) { const char *backend_env = NULL; int count = 0; - backend_env = getenv("MALI_EGL_DRI3_BUF_NUM"); + backend_env = tpl_getenv("MALI_EGL_DRI3_BUF_NUM"); /* 2015-05-13 joonbum.ko@samsung.com */ /* Change the value of dri3_max_back 5 to 3 */ if (!backend_env || strlen(backend_env) == 0) -- 2.7.4 From 9ed760f3c77d58726ba5921a64649cfa34c374a3 Mon Sep 17 00:00:00 2001 From: Joonbum Ko Date: Wed, 29 Apr 2020 15:04:23 +0900 Subject: [PATCH 02/16] Moved tpl_getenv init to tpl_init Change-Id: I825862911ca1fe4054908cc678d9e960aa5e75c7 Signed-off-by: Joonbum Ko --- src/tpl.c | 10 ++++++++++ src/tpl_utils.h | 15 --------------- 2 files changed, 10 insertions(+), 15 deletions(-) diff --git a/src/tpl.c b/src/tpl.c index e6d90f0..50e19af 100644 --- a/src/tpl.c +++ b/src/tpl.c @@ -31,6 +31,16 @@ __tpl_runtime_init() static void __attribute__((constructor)) __tpl_init(void) { + if (!tpl_getenv_initialized) + { + int ret = access("/opt/usr/tpl_env", F_OK); + if (ret == 0) + tpl_getenv_enabled = 1; + else + tpl_getenv_enabled = 0; + tpl_getenv_initialized = 1; + } + TPL_DEBUG("[libtpl-egl] loaded"); #ifdef OBJECT_HASH_CHECK __tpl_object_hash_init(); diff --git a/src/tpl_utils.h b/src/tpl_utils.h index 92cb6a0..89854a1 100644 --- a/src/tpl_utils.h +++ b/src/tpl_utils.h @@ -54,26 +54,11 @@ /* 0:uninitialized, 1:initialized,no log, 2:user log */ extern unsigned int tpl_log_lvl; extern unsigned int tpl_log_initialized; -extern unsigned int tpl_getenv_initialized; extern unsigned int tpl_getenv_enabled; extern unsigned int tpl_dump_lvl; -#define TPL_GETENV_INIT() \ - { \ - if (!tpl_getenv_initialized) \ - { \ - int ret = access("/opt/usr/tpl_env", F_OK); \ - if (ret == 0) \ - tpl_getenv_enabled = 1; \ - else \ - tpl_getenv_enabled = 0; \ - tpl_getenv_initialized = 1; \ - } \ - } - inline char *tpl_getenv(const char *name) { - TPL_GETENV_INIT(); if (tpl_getenv_enabled) return getenv(name); else -- 2.7.4 From e61ae4b4270b0b5000b4f4238e6b916696474b48 Mon Sep 17 00:00:00 2001 From: Joonbum Ko Date: Wed, 6 May 2020 18:44:54 +0900 Subject: [PATCH 03/16] Package version up to 1.7.6 Change-Id: I4ad491a190a0b18521a272d623738cd17cd0fa83 Signed-off-by: Joonbum Ko --- packaging/libtpl-egl.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packaging/libtpl-egl.spec b/packaging/libtpl-egl.spec index 98712ac..4c3c68b 100644 --- a/packaging/libtpl-egl.spec +++ b/packaging/libtpl-egl.spec @@ -4,7 +4,7 @@ #TPL VERSION MACROS %define TPL_VERSION_MAJOR 1 %define TPL_VERSION_MINOR 7 -%define TPL_VERSION_PATCH 5 +%define TPL_VERSION_PATCH 6 %define TPL_VERSION %{TPL_VERSION_MAJOR}.%{TPL_VERSION_MINOR}.%{TPL_VERSION_PATCH} #TPL WINDOW SYSTEM DEFINITION -- 2.7.4 From c3516d1de7e02d41852dd05ff441f796de0f9335 Mon Sep 17 00:00:00 2001 From: Joonbum Ko Date: Thu, 14 May 2020 19:07:14 +0900 Subject: [PATCH 04/16] Fixed to unref tbm_surface even when enqueue failed. Change-Id: I99a3e93833430a652cb653d8343a6dfd1a2d2342 Signed-off-by: Joonbum Ko --- src/tpl_wl_egl_thread.c | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/src/tpl_wl_egl_thread.c b/src/tpl_wl_egl_thread.c index f3a0fc9..5ca8691 100755 --- a/src/tpl_wl_egl_thread.c +++ b/src/tpl_wl_egl_thread.c @@ -598,16 +598,8 @@ __tpl_wl_egl_surface_enqueue_buffer(tpl_surface_t *surface, tsq_err = tbm_surface_queue_enqueue(wayland_egl_surface->tbm_queue, tbm_surface); - if (tsq_err == TBM_SURFACE_QUEUE_ERROR_NONE) { - /* - * If tbm_surface_queue has not been reset, tbm_surface_queue_enqueue - * will return ERROR_NONE. Otherwise, queue has been reset - * this tbm_surface may have only one ref_count. So we need to - * unreference this tbm_surface after getting ERROR_NONE result from - * tbm_surface_queue_enqueue in order to prevent destruction. - */ + if (tsq_err != TBM_SURFACE_QUEUE_ERROR_NONE) { tbm_surface_internal_unref(tbm_surface); - } else { TPL_ERR("Failed to enqueue tbm_surface(%p). tsq_err=%d", tbm_surface, tsq_err); TRACE_ASYNC_END((int)tbm_surface, "[DEQ]~[ENQ] BO_NAME:%d", bo_name); @@ -615,6 +607,8 @@ __tpl_wl_egl_surface_enqueue_buffer(tpl_surface_t *surface, return TPL_ERROR_INVALID_OPERATION; } + tbm_surface_internal_unref(tbm_surface); + TRACE_ASYNC_END((int)tbm_surface, "[DEQ]~[ENQ] BO_NAME:%d", bo_name); TPL_OBJECT_UNLOCK(wayland_egl_surface); -- 2.7.4 From 85995920898b3bd0c86824383180c4d8f5aaf79c Mon Sep 17 00:00:00 2001 From: Joonbum Ko Date: Wed, 27 May 2020 16:13:11 +0900 Subject: [PATCH 05/16] Changed the default log output from LOGD to LOGI. Change-Id: I26d2328a119dfe23523f279f9b72eab7ba9ea552 Signed-off-by: Joonbum Ko --- src/tpl_utils.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/tpl_utils.h b/src/tpl_utils.h index 89854a1..26b696e 100644 --- a/src/tpl_utils.h +++ b/src/tpl_utils.h @@ -80,10 +80,10 @@ inline char *tpl_getenv(const char *name) #endif #ifdef DLOG_DEFAULT_ENABLE -#define tpl_log_f(t, f, x...) LOGD(FONT_GREEN t FONT_DEFAULT " " f, ##x) -#define tpl_log_b(t, f, x...) LOGD(FONT_BLUE t FONT_DEFAULT " " f, ##x) -#define tpl_log_d(t, f, x...) LOGD(FONT_MAGENTA t FONT_DEFAULT " " f, ##x) -#define tpl_log_t(t, f, x...) LOGD(FONT_CYAN t FONT_DEFAULT " " f, ##x) +#define tpl_log_f(t, f, x...) LOGI(FONT_GREEN t FONT_DEFAULT " " f, ##x) +#define tpl_log_b(t, f, x...) LOGI(FONT_BLUE t FONT_DEFAULT " " f, ##x) +#define tpl_log_d(t, f, x...) LOGI(FONT_MAGENTA t FONT_DEFAULT " " f, ##x) +#define tpl_log_t(t, f, x...) LOGI(FONT_CYAN t FONT_DEFAULT " " f, ##x) #define tpl_log_e(t, f, x...) LOGE(FONT_RED t " " f FONT_DEFAULT, ##x) #define tpl_log_w(t, f, x...) LOGW(FONT_YELLOW t " " f FONT_DEFAULT, ##x) #else /* DLOG_DEFAULT_ENABLE */ -- 2.7.4 From b4dcff113ae780d2049053b3b067202401c0fe7a Mon Sep 17 00:00:00 2001 From: Joonbum Ko Date: Thu, 28 May 2020 12:52:09 +0900 Subject: [PATCH 06/16] Enhanced the error logs. Change-Id: I0ec3e186f1318a050c75fe1596b60803191f8100 Signed-off-by: Joonbum Ko --- src/tpl_wl_egl_thread.c | 37 ++++++++++++++++++++----------------- 1 file changed, 20 insertions(+), 17 deletions(-) diff --git a/src/tpl_wl_egl_thread.c b/src/tpl_wl_egl_thread.c index 5ca8691..15697a4 100755 --- a/src/tpl_wl_egl_thread.c +++ b/src/tpl_wl_egl_thread.c @@ -448,7 +448,7 @@ __tpl_wl_egl_surface_fini(tpl_surface_t *surface) static tpl_result_t __tpl_wl_egl_surface_set_rotation_capability(tpl_surface_t *surface, - tpl_bool_t set) + tpl_bool_t set) { tpl_wayland_egl_surface_t *wayland_egl_surface = NULL; @@ -459,8 +459,8 @@ __tpl_wl_egl_surface_set_rotation_capability(tpl_surface_t *surface, wayland_egl_surface = (tpl_wayland_egl_surface_t *)surface->backend.data; if (!wayland_egl_surface) { - TPL_ERR("Invalid parameter. wayland_egl_surface(%p)", - wayland_egl_surface); + TPL_ERR("Invalid parameter. surface(%p) wayland_egl_surface(%p)", + surface, wayland_egl_surface); return TPL_ERROR_INVALID_PARAMETER; } @@ -478,7 +478,7 @@ __tpl_wl_egl_surface_set_rotation_capability(tpl_surface_t *surface, static tpl_result_t __tpl_wl_egl_surface_set_post_interval(tpl_surface_t *surface, - int post_interval) + int post_interval) { tpl_wayland_egl_surface_t *wayland_egl_surface = NULL; @@ -489,8 +489,8 @@ __tpl_wl_egl_surface_set_post_interval(tpl_surface_t *surface, wayland_egl_surface = (tpl_wayland_egl_surface_t *)surface->backend.data; if (!wayland_egl_surface) { - TPL_ERR("Invalid parameter. wayland_egl_surface(%p)", - wayland_egl_surface); + TPL_ERR("Invalid parameter. surface(%p) wayland_egl_surface(%p)", + surface, wayland_egl_surface); return TPL_ERROR_INVALID_PARAMETER; } @@ -527,8 +527,8 @@ __tpl_wl_egl_surface_enqueue_buffer(tpl_surface_t *surface, bo_name = tbm_bo_export(tbm_surface_internal_get_bo(tbm_surface, 0)); if (!wayland_egl_surface) { - TPL_ERR("Invalid parameter. wayland_egl_surface(%p)", - wayland_egl_surface); + TPL_ERR("Invalid parameter. surface(%p) wayland_egl_surface(%p)", + surface, wayland_egl_surface); TRACE_ASYNC_END((int)tbm_surface, "[DEQ]~[ENQ] BO_NAME:%d", bo_name); TPL_OBJECT_UNLOCK(wayland_egl_surface); return TPL_ERROR_INVALID_PARAMETER; @@ -600,8 +600,8 @@ __tpl_wl_egl_surface_enqueue_buffer(tpl_surface_t *surface, tbm_surface); if (tsq_err != TBM_SURFACE_QUEUE_ERROR_NONE) { tbm_surface_internal_unref(tbm_surface); - TPL_ERR("Failed to enqueue tbm_surface(%p). tsq_err=%d", - tbm_surface, tsq_err); + TPL_ERR("Failed to enqueue tbm_surface(%p). tpl_surface(%p) tsq_err=%d", + tbm_surface, surface, tsq_err); TRACE_ASYNC_END((int)tbm_surface, "[DEQ]~[ENQ] BO_NAME:%d", bo_name); TPL_OBJECT_UNLOCK(wayland_egl_surface); return TPL_ERROR_INVALID_OPERATION; @@ -655,7 +655,8 @@ __tpl_wl_egl_surface_cancel_dequeued_buffer(tpl_surface_t *surface, tsq_err = tbm_surface_queue_cancel_dequeue(wayland_egl_surface->tbm_queue, tbm_surface); if (tsq_err != TBM_SURFACE_QUEUE_ERROR_NONE) { - TPL_ERR("Failed to release tbm_surface(%p)", tbm_surface); + TPL_ERR("Failed to release tbm_surface(%p) surface(%p)", + tbm_surface, surface); return TPL_ERROR_INVALID_OPERATION; } @@ -701,11 +702,12 @@ __tpl_wl_egl_surface_dequeue_buffer(tpl_surface_t *surface, uint64_t timeout_ns, lock_ret = twe_display_lock(wayland_egl_display->twe_display); if (tsq_err == TBM_SURFACE_QUEUE_ERROR_TIMEOUT) { - TPL_ERR("[CAN_DEQUEUE_TIMEOUT] queue(%p) will be reset", - wayland_egl_surface->tbm_queue); + TPL_ERR("[CAN_DEQUEUE_TIMEOUT] queue(%p) will be reset. surface(%p)", + wayland_egl_surface->tbm_queue, surface); if (twe_surface_queue_force_flush(wayland_egl_surface->twe_surface) != TPL_ERROR_NONE) { - TPL_ERR("Failed to timeout reset. tbm_queue(%p)", wayland_egl_surface->tbm_queue); + TPL_ERR("Failed to timeout reset. tbm_queue(%p) surface(%p)", + wayland_egl_surface->tbm_queue, surface); if (lock_ret == TPL_ERROR_NONE) twe_display_unlock(wayland_egl_display->twe_display); return NULL; @@ -715,7 +717,8 @@ __tpl_wl_egl_surface_dequeue_buffer(tpl_surface_t *surface, uint64_t timeout_ns, } if (tsq_err != TBM_SURFACE_QUEUE_ERROR_NONE) { - TPL_ERR("Failed to query can_dequeue. tbm_queue(%p)", wayland_egl_surface->tbm_queue); + TPL_ERR("Failed to query can_dequeue. tbm_queue(%p) surface(%p)", + wayland_egl_surface->tbm_queue, surface); if (lock_ret == TPL_ERROR_NONE) twe_display_unlock(wayland_egl_display->twe_display); return NULL; @@ -766,8 +769,8 @@ __tpl_wl_egl_surface_dequeue_buffer(tpl_surface_t *surface, uint64_t timeout_ns, tsq_err = tbm_surface_queue_dequeue(wayland_egl_surface->tbm_queue, &tbm_surface); if (!tbm_surface) { - TPL_ERR("Failed to get tbm_surface from tbm_surface_queue | tsq_err = %d", - tsq_err); + TPL_ERR("Failed to dequeue from tbm_queue(%p) surface(%p)| tsq_err = %d", + wayland_egl_surface->tbm_queue, surface, tsq_err); if (lock_ret == TPL_ERROR_NONE) twe_display_unlock(wayland_egl_display->twe_display); return NULL; -- 2.7.4 From 773e37bd4f9b80d116a75f2f664917f31165b61e Mon Sep 17 00:00:00 2001 From: Joonbum Ko Date: Thu, 28 May 2020 13:29:30 +0900 Subject: [PATCH 07/16] Package version up to 1.7.7 Change-Id: I059dad443fb17d301aaeb10aa870fb23be999c86 Signed-off-by: Joonbum Ko --- packaging/libtpl-egl.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packaging/libtpl-egl.spec b/packaging/libtpl-egl.spec index 4c3c68b..3609994 100644 --- a/packaging/libtpl-egl.spec +++ b/packaging/libtpl-egl.spec @@ -4,7 +4,7 @@ #TPL VERSION MACROS %define TPL_VERSION_MAJOR 1 %define TPL_VERSION_MINOR 7 -%define TPL_VERSION_PATCH 6 +%define TPL_VERSION_PATCH 7 %define TPL_VERSION %{TPL_VERSION_MAJOR}.%{TPL_VERSION_MINOR}.%{TPL_VERSION_PATCH} #TPL WINDOW SYSTEM DEFINITION -- 2.7.4 From 8d4dee8677e95eac9019a4e3e9b2c2e63fd5ddcd Mon Sep 17 00:00:00 2001 From: Joonbum Ko Date: Mon, 15 Jun 2020 16:25:27 +0900 Subject: [PATCH 08/16] Fixed a bug related to presentation sync timestamp. Change-Id: I0fad572699eb008378b52f6abbd5c2edc3795e66 Signed-off-by: Joonbum Ko --- src/tpl_wayland_egl_thread.c | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/src/tpl_wayland_egl_thread.c b/src/tpl_wayland_egl_thread.c index 6722970..8012edc 100755 --- a/src/tpl_wayland_egl_thread.c +++ b/src/tpl_wayland_egl_thread.c @@ -1346,11 +1346,17 @@ __cb_create_presentation_sync_fd(struct wl_egl_window *wl_egl_window, void *priv } if (surf_source->presentation_sync_timeline != -1) { + char name[32]; + snprintf(name, 32, "p_sync_timeline:%d", + surf_source->presentation_sync_timeline); + g_mutex_lock(&surf_source->pst_mutex); + surf_source->presentation_sync_timestamp++; + presentation_sync_fd = tbm_sync_fence_create(surf_source->presentation_sync_timeline, - NULL, - surf_source->presentation_sync_timestamp++); + name, + surf_source->presentation_sync_timestamp); TPL_DEBUG("[PRESENTATION_SYNC] surf_source(%p) timeline(%d) timestamp(%d) sync_fence(%d)", surf_source, surf_source->presentation_sync_timeline, surf_source->presentation_sync_timestamp, presentation_sync_fd); -- 2.7.4 From 8bdba6676623af16aded1772ec538922fb6f2fda Mon Sep 17 00:00:00 2001 From: Joonbum Ko Date: Tue, 16 Jun 2020 12:55:40 +0900 Subject: [PATCH 09/16] Fixed a bug related to commit sync. Change-Id: Ie104256039adcf193cd845b3727643fb97eae1f5 Signed-off-by: Joonbum Ko --- src/tpl_wayland_egl_thread.c | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/src/tpl_wayland_egl_thread.c b/src/tpl_wayland_egl_thread.c index 8012edc..56afe25 100755 --- a/src/tpl_wayland_egl_thread.c +++ b/src/tpl_wayland_egl_thread.c @@ -175,6 +175,8 @@ struct _twe_wl_buffer_info { tbm_fd sync_fd; tpl_bool_t is_vk_image; + unsigned int commit_sync_ts_backup; + tbm_surface_h tbm_surface; twe_wl_surf_source *surf_source; @@ -1317,7 +1319,7 @@ __cb_create_commit_sync_fd(struct wl_egl_window *wl_egl_window, void *private) name, surf_source->commit_sync_timestamp + 1); TPL_DEBUG("[COMMIT_SYNC] surf_source(%p) timeline(%d) timestamp(%d) name(%s) sync_fence(%d)", - surf_source, surf_source->commit_sync_timeline, surf_source->commit_sync_timestamp, + surf_source, surf_source->commit_sync_timeline, surf_source->commit_sync_timestamp + 1, name, commit_sync_fd); TRACE_ASYNC_BEGIN(surf_source->commit_sync_timestamp + 1, "[SYNC_FENCE]"); @@ -1584,6 +1586,8 @@ _twe_surface_set_wl_buffer_info(twe_wl_surf_source *surf_source, buf_info->need_to_commit = TPL_TRUE; buf_info->sync_fd = -1; + buf_info->commit_sync_ts_backup = ++surf_source->commit_sync_timestamp; + if (surf_source->in_use_buffers) { g_mutex_lock(&surf_source->surf_mutex); __tpl_list_push_back(surf_source->in_use_buffers, @@ -1668,6 +1672,7 @@ _twe_surface_set_wl_buffer_info(twe_wl_surf_source *surf_source, buf_info->sync_fd = -1; buf_info->sync_timeline = -1; buf_info->is_vk_image = surf_source->disp_source->is_vulkan_dpy; + buf_info->commit_sync_ts_backup = ++surf_source->commit_sync_timestamp; if (buf_info->is_vk_image) { buf_info->sync_timeline = tbm_sync_timeline_create(); @@ -2247,11 +2252,10 @@ _twe_thread_wl_surface_commit(twe_wl_surf_source *surf_source, } if (surf_source->commit_sync_timeline != -1) { - surf_source->commit_sync_timestamp++; - TRACE_ASYNC_END(surf_source->commit_sync_timestamp, "[SYNC_FENCE]"); + TRACE_ASYNC_END(buf_info->commit_sync_ts_backup, "[SYNC_FENCE]"); TPL_DEBUG("[COMMIT_SYNC][INC] surf_source(%p) timeline(%d) timestamp(%d)", - surf_source, surf_source->commit_sync_timeline, surf_source->commit_sync_timestamp); + surf_source, surf_source->commit_sync_timeline, buf_info->commit_sync_ts_backup); if (!tbm_sync_timeline_inc(surf_source->commit_sync_timeline, 1)) { TPL_ERR("Failed to increase timeline(%d)", surf_source->commit_sync_timeline); } -- 2.7.4 From 5516e085447c3cf40def01e269fc377bd024d158 Mon Sep 17 00:00:00 2001 From: Joonbum Ko Date: Mon, 1 Jun 2020 19:22:52 +0900 Subject: [PATCH 10/16] Moved wl_display_flush to be called immediately after wl_surface_commit. Change-Id: I7ab8f9d99824d1a6548db4c82d619c35024b54cd Signed-off-by: Joonbum Ko --- src/tpl_wayland_egl_thread.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/tpl_wayland_egl_thread.c b/src/tpl_wayland_egl_thread.c index 56afe25..f347d46 100755 --- a/src/tpl_wayland_egl_thread.c +++ b/src/tpl_wayland_egl_thread.c @@ -1689,7 +1689,6 @@ _twe_surface_set_wl_buffer_info(twe_wl_surf_source *surf_source, wl_buffer_add_listener((void *)buf_info->wl_buffer, &wl_buffer_release_listener, tbm_surface); - wl_display_flush(surf_source->disp_source->disp); tbm_surface_internal_add_user_data(tbm_surface, KEY_BUFFER_INFO, (tbm_data_free)__cb_twe_buffer_free_callback); @@ -2006,6 +2005,8 @@ _twe_thread_wl_vk_surface_commit(twe_wl_surf_source *surf_source, wl_surface_commit(wl_surface); + wl_display_flush(surf_source->disp_source->disp); + TRACE_MARK("[COMMIT] BO(%d)", tbm_bo_export(tbm_surface_internal_get_bo(tbm_surface, 0))); TRACE_ASYNC_BEGIN((int)tbm_surface, "[COMMIT ~ RELEASE] BO(%d)", @@ -2233,6 +2234,8 @@ _twe_thread_wl_surface_commit(twe_wl_surf_source *surf_source, wl_surface_commit(wl_surface); + wl_display_flush(surf_source->disp_source->disp); + TRACE_ASYNC_BEGIN((int)tbm_surface, "[COMMIT ~ RELEASE] BO(%d)", tbm_bo_export(tbm_surface_internal_get_bo(tbm_surface, 0))); -- 2.7.4 From b79a476a4d7ace0849710bf4adc9fc9ce10799d0 Mon Sep 17 00:00:00 2001 From: Joonbum Ko Date: Wed, 17 Jun 2020 13:54:39 +0900 Subject: [PATCH 11/16] Fixed missing close for open timeline fd. Change-Id: Ib0f009a12fec57968ea5f220426cada2497a4c34 Signed-off-by: Joonbum Ko --- src/tpl_wayland_egl_thread.c | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/tpl_wayland_egl_thread.c b/src/tpl_wayland_egl_thread.c index f347d46..1b12f4e 100755 --- a/src/tpl_wayland_egl_thread.c +++ b/src/tpl_wayland_egl_thread.c @@ -2754,6 +2754,16 @@ _twe_thread_wl_surf_source_destroy(void *source) surf_source->surf = NULL; } + if (surf_source->commit_sync_timeline >= 0) { + close(surf_source->commit_sync_timeline); + surf_source->commit_sync_timeline = -1; + } + + if (surf_source->presentation_sync_timeline >= 0) { + close(surf_source->presentation_sync_timeline); + surf_source->presentation_sync_timeline = -1; + } + g_mutex_unlock(&surf_source->surf_mutex); g_mutex_clear(&surf_source->surf_mutex); -- 2.7.4 From 1a3bffdccdc63a32682eef3e9f0481d6db141c2c Mon Sep 17 00:00:00 2001 From: Joonbum Ko Date: Wed, 17 Jun 2020 13:56:09 +0900 Subject: [PATCH 12/16] Package version up to 1.7.8 Change-Id: I566dad831a07e60cee55870081b183a1638895b4 Signed-off-by: Joonbum Ko --- packaging/libtpl-egl.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packaging/libtpl-egl.spec b/packaging/libtpl-egl.spec index 3609994..58ba310 100644 --- a/packaging/libtpl-egl.spec +++ b/packaging/libtpl-egl.spec @@ -4,7 +4,7 @@ #TPL VERSION MACROS %define TPL_VERSION_MAJOR 1 %define TPL_VERSION_MINOR 7 -%define TPL_VERSION_PATCH 7 +%define TPL_VERSION_PATCH 8 %define TPL_VERSION %{TPL_VERSION_MAJOR}.%{TPL_VERSION_MINOR}.%{TPL_VERSION_PATCH} #TPL WINDOW SYSTEM DEFINITION -- 2.7.4 From 3f87255dfd96439e86ef6d6d0289d86af4c2e38c Mon Sep 17 00:00:00 2001 From: Joonbum Ko Date: Thu, 25 Jun 2020 15:41:25 +0900 Subject: [PATCH 13/16] Added logging function to print status of buffer lists. Change-Id: I876514cace0d708445c9109f984f521f9a5f6ce1 Signed-off-by: Joonbum Ko --- src/tpl_wayland_egl_thread.c | 62 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 62 insertions(+) diff --git a/src/tpl_wayland_egl_thread.c b/src/tpl_wayland_egl_thread.c index 1b12f4e..5bff04f 100755 --- a/src/tpl_wayland_egl_thread.c +++ b/src/tpl_wayland_egl_thread.c @@ -634,6 +634,66 @@ _twe_display_print_err(twe_wl_disp_source *disp_source, disp_source->last_error = errno; } +static void +_twe_print_buffer_list(twe_wl_surf_source *surf_source) +{ + int count = 0; + int idx = 0; + tpl_list_node_t *node = NULL; + tbm_surface_h tbm_surface = NULL; + + /* vblank waiting list */ + count = __tpl_list_get_count(surf_source->vblank_waiting_buffers); + TPL_DEBUG("VBLANK WAITING BUFFERS | surf_source(%p) list(%p) count(%d)", + surf_source, surf_source->vblank_waiting_buffers, count); + + while ((!node && + (node = __tpl_list_get_front_node(surf_source->vblank_waiting_buffers))) || + (node && (node = __tpl_list_node_next(node)))) { + tbm_surface = (tbm_surface_h)__tpl_list_node_get_data(node); + TPL_DEBUG("VBLANK WAITING BUFFERS | %d | tbm_surface(%p) bo(%d)", + idx, tbm_surface, + tbm_bo_export(tbm_surface_internal_get_bo(tbm_surface, 0))); + idx++; + } + + idx = 0; + node = NULL; + + /* in use buffers list */ + count = __tpl_list_get_count(surf_source->in_use_buffers); + TPL_DEBUG("DEQUEUED BUFFERS | surf_source(%p) list(%p) count(%d)", + surf_source, surf_source->in_use_buffers, count); + + while ((!node && + (node = __tpl_list_get_front_node(surf_source->in_use_buffers))) || + (node && (node = __tpl_list_node_next(node)))) { + tbm_surface = (tbm_surface_h)__tpl_list_node_get_data(node); + TPL_DEBUG("DEQUEUED BUFFERS | %d | tbm_surface(%p) bo(%d)", + idx, tbm_surface, + tbm_bo_export(tbm_surface_internal_get_bo(tbm_surface, 0))); + idx++; + } + + idx = 0; + node = NULL; + + /* committed buffers list */ + count = __tpl_list_get_count(surf_source->committed_buffers); + TPL_DEBUG("COMMITTED BUFFERS | surf_source(%p) list(%p) count(%d)", + surf_source, surf_source->committed_buffers, count); + + while ((!node && + (node = __tpl_list_get_front_node(surf_source->committed_buffers))) || + (node && (node = __tpl_list_node_next(node)))) { + tbm_surface = (tbm_surface_h)__tpl_list_node_get_data(node); + TPL_DEBUG("COMMITTED BUFFERS | %d | tbm_surface(%p) bo(%d)", + idx, tbm_surface, + tbm_bo_export(tbm_surface_internal_get_bo(tbm_surface, 0))); + idx++; + } +} + static gboolean _twe_thread_wl_disp_prepare(GSource *source, gint *time) { @@ -3499,6 +3559,8 @@ twe_surface_queue_force_flush(twe_surface_h twe_surface) twe_wl_surf_source *surf_source = (twe_wl_surf_source *)twe_surface; tbm_surface_queue_error_e tsq_err = TBM_SURFACE_QUEUE_ERROR_NONE; + _twe_print_buffer_list(twe_surface); + if ((tsq_err = tbm_surface_queue_flush(surf_source->tbm_queue)) != TBM_SURFACE_QUEUE_ERROR_NONE) { TPL_ERR("[TIMEOUT_RESET] Failed to flush tbm_surface_queue(%p) tsq_err(%d)", -- 2.7.4 From 102cdd1120029514a6c8c6200f9ed85b470ff367 Mon Sep 17 00:00:00 2001 From: Joonbum Ko Date: Thu, 25 Jun 2020 20:24:13 +0900 Subject: [PATCH 14/16] Fixed a bug occured by fence signaled before enqueue. Changed g_source_attach from main thread to twe_thread. - Fixed problem scenario [MT] : main thread [TWE] : twe thread 1. [MT] __tpl_wl_egl_surface_enqueue_buffer (with sync_fd) 2. [MT] twe_surface_set_sync_fd 3. [MT] g_source_attach start<- It takes too long time (abnormal) [MT] : blocking wait at g_source_attach() 4. [TWE] fence wait source dispatch. but there is no acquirable buffer in tbm_queue. 5. [TWE] fence wait source finalize. 6. [MT] g_source_attach done. 7. [MT] tbm_surface_queue_enqueue. but it will be not commit. 8. [MT] call can_dequeue_timeout -> The release event does not come because the previous buffer was not wl_surface_commit. 9. [MT] 10s later, timeout and force flush occured. Change-Id: I8e7b57c0f5b78caa333410ef75e5bd8ce50d7173 Signed-off-by: Joonbum Ko --- src/tpl_wayland_egl_thread.c | 64 +++++++++++++++++++++++++++++++------------- 1 file changed, 45 insertions(+), 19 deletions(-) diff --git a/src/tpl_wayland_egl_thread.c b/src/tpl_wayland_egl_thread.c index 5bff04f..6cd5c58 100755 --- a/src/tpl_wayland_egl_thread.c +++ b/src/tpl_wayland_egl_thread.c @@ -147,6 +147,11 @@ struct _twe_wl_surf_source { tpl_bool_t use_sync_fence; int post_interval; + + struct { + tbm_surface_h tbm_surface; + int sync_fd; + } sync_info; }; struct _twe_wl_buffer_info { @@ -214,6 +219,10 @@ _twe_surface_wait_vblank(twe_wl_surf_source *surf_source); static struct tizen_private * _get_tizen_private(struct wl_egl_window *); +tpl_result_t +_twe_thread_fence_wait_source_attach(twe_wl_surf_source *surf_source, + tbm_surface_h tbm_surface, tbm_fd sync_fd); + static gpointer _twe_thread_loop(gpointer data) { @@ -1842,14 +1851,12 @@ __cb_tbm_queue_acquirable_callback(tbm_surface_queue_h surface_queue, g_mutex_lock(&surf_source->surf_mutex); - if (!surf_source->use_sync_fence) { - ret = write(surf_source->event_fd, &value, sizeof(uint64_t)); - if (ret == -1) { - TPL_ERR("failed to send acquirable event. twe_wl_surf_source(%p)", - surf_source); - g_mutex_unlock(&surf_source->surf_mutex); - return; - } + ret = write(surf_source->event_fd, &value, sizeof(uint64_t)); + if (ret == -1) { + TPL_ERR("failed to send acquirable event. twe_wl_surf_source(%p)", + surf_source); + g_mutex_unlock(&surf_source->surf_mutex); + return; } g_mutex_unlock(&surf_source->surf_mutex); @@ -2466,8 +2473,25 @@ _twe_thread_wl_surface_dispatch(GSource *source, GSourceFunc cb, gpointer data) res = TPL_ERROR_INVALID_CONNECTION; } - _twe_thread_wl_surface_acquire_and_commit(surf_source); + if (surf_source->use_sync_fence && + surf_source->sync_info.sync_fd > 0 && + surf_source->sync_info.tbm_surface) { + + int sync_fd = surf_source->sync_info.sync_fd; + tbm_surface_h tbm_surface = surf_source->sync_info.tbm_surface; + res = _twe_thread_fence_wait_source_attach(surf_source, tbm_surface, sync_fd); + if (res != TPL_ERROR_NONE) { + TPL_ERR("Failed to attach source with fence_fd(%d) ret(%d)", + sync_fd, res); + surf_source->use_sync_fence = TPL_FALSE; + } + + surf_source->sync_info.sync_fd = -1; + surf_source->sync_info.tbm_surface = NULL; + } else { + _twe_thread_wl_surface_acquire_and_commit(surf_source); + } } if (cond && !(cond & G_IO_IN)) { @@ -2919,6 +2943,9 @@ twe_surface_add(twe_thread* thread, source->presentation_sync_ts_backup = 0; source->presentation_sync_req_cnt = 0; + source->sync_info.tbm_surface = NULL; + source->sync_info.sync_fd = -1; + if (!disp_source->is_vulkan_dpy) { struct wl_egl_window *wl_egl_window = (struct wl_egl_window *)native_handle; @@ -3445,12 +3472,13 @@ _twe_thread_fence_wait_source_attach(twe_wl_surf_source *surf_source, G_IO_IN); /* When waiting is over, it will be removed from the list. */ - g_mutex_lock(&surf_source->surf_mutex); __tpl_list_push_back(surf_source->fence_waiting_sources, (void *)wait_source); - g_mutex_unlock(&surf_source->surf_mutex); g_source_attach(&wait_source->gsource, g_main_loop_get_context(_twe_ctx->twe_loop)); + TPL_LOG_T(BACKEND, "fence_wait_source(%p) attached | tbm_surface(%p) fence_fd(%d)", + wait_source, tbm_surface, sync_fd); + return TPL_ERROR_NONE; } @@ -3471,15 +3499,13 @@ twe_surface_set_sync_fd(twe_surface_h twe_surface, return TPL_ERROR_INVALID_PARAMETER; } - ret = _twe_thread_fence_wait_source_attach(surf_source, tbm_surface, sync_fd); - if (ret != TPL_ERROR_NONE) { - TPL_ERR("Failed to attach source with fence_fd(%d) ret(%d)", - sync_fd, ret); - surf_source->use_sync_fence = TPL_FALSE; - return ret; - } - + g_mutex_lock(&surf_source->surf_mutex); + surf_source->sync_info.sync_fd = sync_fd; + surf_source->sync_info.tbm_surface = tbm_surface; surf_source->use_sync_fence = TPL_TRUE; + TPL_DEBUG("set sync fd | surf_source(%p) tbm_surface(%p) sync_fd(%d)", + surf_source, tbm_surface, sync_fd); + g_mutex_unlock(&surf_source->surf_mutex); return ret; } -- 2.7.4 From 717d75b50df10d187187f424f71ddb6eb134dcfb Mon Sep 17 00:00:00 2001 From: Joonbum Ko Date: Sun, 12 Jul 2020 14:07:23 +0900 Subject: [PATCH 15/16] Implemented backend function to get size. Change-Id: I530e24aafd386b6447e4e886f6d6c97bce7595a1 Signed-off-by: Joonbum Ko --- src/tpl_internal.h | 2 ++ src/tpl_surface.c | 10 +++++++--- src/tpl_wl_egl_thread.c | 15 +++++++++++++++ 3 files changed, 24 insertions(+), 3 deletions(-) diff --git a/src/tpl_internal.h b/src/tpl_internal.h index ba161c9..2b663ed 100755 --- a/src/tpl_internal.h +++ b/src/tpl_internal.h @@ -111,6 +111,8 @@ struct _tpl_surface_backend { tpl_result_t (*set_rotation_capability)(tpl_surface_t *surface, tpl_bool_t set); tpl_result_t (*set_post_interval)(tpl_surface_t *surface, int post_interval); + + void (*get_size)(tpl_surface_t *surface, int *width, int *height); }; struct _tpl_object { diff --git a/src/tpl_surface.c b/src/tpl_surface.c index 994aec3..b41534b 100755 --- a/src/tpl_surface.c +++ b/src/tpl_surface.c @@ -193,9 +193,13 @@ tpl_surface_get_size(tpl_surface_t *surface, int *width, int *height) return TPL_ERROR_INVALID_PARAMETER; } - if (width) *width = surface->width; - - if (height) *height = surface->height; + if (surface->backend.get_size) { + surface->backend.get_size(surface, width, height); + } + else { + if (width) *width = surface->width; + if (height) *height = surface->height; + } return TPL_ERROR_NONE; } diff --git a/src/tpl_wl_egl_thread.c b/src/tpl_wl_egl_thread.c index 15697a4..1915fc9 100755 --- a/src/tpl_wl_egl_thread.c +++ b/src/tpl_wl_egl_thread.c @@ -795,6 +795,19 @@ __tpl_wl_egl_surface_dequeue_buffer(tpl_surface_t *surface, uint64_t timeout_ns, return tbm_surface; } +void +__tpl_wl_egl_surface_get_size(tpl_surface_t *surface, int *width, int *height) +{ + tpl_wayland_egl_surface_t *wayland_egl_surface = + (tpl_wayland_egl_surface_t *)surface->backend.data; + + if (width) + *width = tbm_surface_queue_get_width(wayland_egl_surface->tbm_queue); + if (height) + *height = tbm_surface_queue_get_height(wayland_egl_surface->tbm_queue); +} + + tpl_bool_t __tpl_display_choose_backend_wl_egl_thread(tpl_handle_t native_dpy) { @@ -843,5 +856,7 @@ __tpl_surface_init_backend_wl_egl_thread(tpl_surface_backend_t *backend) __tpl_wl_egl_surface_set_rotation_capability; backend->set_post_interval = __tpl_wl_egl_surface_set_post_interval; + backend->get_size = + __tpl_wl_egl_surface_get_size; } -- 2.7.4 From 397637ac3a497a2ed1f1d74c81894e0ceb84b485 Mon Sep 17 00:00:00 2001 From: Joonbum Ko Date: Mon, 20 Jul 2020 14:07:07 +0900 Subject: [PATCH 16/16] Package version up to 1.7.9 Change-Id: Iff7e93a9e1bb9c255625a9f1134e7ed8e02c35ce Signed-off-by: Joonbum Ko --- packaging/libtpl-egl.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packaging/libtpl-egl.spec b/packaging/libtpl-egl.spec index 58ba310..7a8b61f 100644 --- a/packaging/libtpl-egl.spec +++ b/packaging/libtpl-egl.spec @@ -4,7 +4,7 @@ #TPL VERSION MACROS %define TPL_VERSION_MAJOR 1 %define TPL_VERSION_MINOR 7 -%define TPL_VERSION_PATCH 8 +%define TPL_VERSION_PATCH 9 %define TPL_VERSION %{TPL_VERSION_MAJOR}.%{TPL_VERSION_MINOR}.%{TPL_VERSION_PATCH} #TPL WINDOW SYSTEM DEFINITION -- 2.7.4