X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2Ftbm_bufmgr_int.h;h=f4cc290b9bb39cdacf971fc564b331d8c0cb3feb;hb=d470174e6839eacee9b4d9759c0aa414b671b188;hp=2305e421243ff7b555e16707cbbb7322fdea3de5;hpb=b9326d48052edcc2bb74ce2598f6074bf3d1b904;p=platform%2Fcore%2Fuifw%2Flibtbm.git diff --git a/src/tbm_bufmgr_int.h b/src/tbm_bufmgr_int.h index 2305e42..f4cc290 100644 --- a/src/tbm_bufmgr_int.h +++ b/src/tbm_bufmgr_int.h @@ -32,10 +32,12 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. #ifndef _TBM_BUFMGR_INT_H_ #define _TBM_BUFMGR_INT_H_ +#include #include #include #include #include +#include #include #include #include @@ -44,26 +46,22 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. #include #include #include +#include #include +#include #include +#include #include #include -#include #include +#include +#include +#include +#include -/* check condition */ -#define TBM_RETURN_IF_FAIL(cond) {\ - if (!(cond)) {\ - TBM_LOG("[%s] : '%s' failed.\n", __func__, #cond);\ - return;\ - } \ -} -#define TBM_RETURN_VAL_IF_FAIL(cond, val) {\ - if (!(cond)) {\ - TBM_LOG("[%s] : '%s' failed.\n", __func__, #cond);\ - return val;\ - } \ -} +extern tbm_bufmgr gBufMgr; +extern int b_dump_queue; +extern int trace_mask; /* check flags */ #define RETURN_CHECK_FLAG(cond) {\ @@ -77,8 +75,64 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. } \ } +#define TBM_TRACE_BO(fmt, args...) \ + do { \ + if (trace_mask&TBM_BUFGMR_DEBUG_TRACE_BO) { \ + struct timespec ts; \ + clock_gettime(CLOCK_MONOTONIC, &ts); \ + tbm_log_print(TBM_LOG_LEVEL_INFO, "[%5d.%06d][%d][%s %d](TRACE)"fmt, \ + (int)ts.tv_sec, (int)ts.tv_nsec / 1000, \ + (int)syscall(SYS_gettid), __FUNCTION__, __LINE__, ##args); \ + } \ + } while (0) + +#define TBM_TRACE_SURFACE_INTERNAL(fmt, args...) \ + do { \ + if (trace_mask&TBM_BUFGMR_DEBUG_TRACE_SURFACE_INTERNAL) { \ + struct timespec ts; \ + clock_gettime(CLOCK_MONOTONIC, &ts); \ + tbm_log_print(TBM_LOG_LEVEL_INFO, "[%5d.%06d][%d][%s %d](TRACE)"fmt, \ + (int)ts.tv_sec, (int)ts.tv_nsec / 1000, \ + (int)syscall(SYS_gettid), __FUNCTION__, __LINE__, ##args); \ + } \ + } while (0) + +#define TBM_TRACE_SURFACE(fmt, args...) \ + do { \ + if (trace_mask&TBM_BUFGMR_DEBUG_TRACE_SURFACE) { \ + struct timespec ts; \ + clock_gettime(CLOCK_MONOTONIC, &ts); \ + tbm_log_print(TBM_LOG_LEVEL_INFO, "[%5d.%06d][%d][%s %d](TRACE)"fmt, \ + (int)ts.tv_sec, (int)ts.tv_nsec / 1000, \ + (int)syscall(SYS_gettid), __FUNCTION__, __LINE__, ##args); \ + } \ + } while (0) + +#define TBM_TRACE_SURFACE_QUEUE(fmt, args...) \ + do { \ + if (trace_mask&TBM_BUFGMR_DEBUG_TRACE_SURFACE_QUEUE) { \ + struct timespec ts; \ + clock_gettime(CLOCK_MONOTONIC, &ts); \ + tbm_log_print(TBM_LOG_LEVEL_INFO, "[%5d.%06d][%d][%s %d](TRACE)"fmt, \ + (int)ts.tv_sec, (int)ts.tv_nsec / 1000, \ + (int)syscall(SYS_gettid), __FUNCTION__, __LINE__, ##args); \ + } \ + } while (0) + +#define TBM_TRACE(fmt, args...) \ + do { \ + if (trace_mask&0x1) { \ + struct timespec ts; \ + clock_gettime(CLOCK_MONOTONIC, &ts); \ + tbm_log_print(TBM_LOG_LEVEL_INFO, "[%5d.%06d][%d][%s %d](TRACE)"fmt, \ + (int)ts.tv_sec, (int)ts.tv_nsec / 1000, \ + (int)syscall(SYS_gettid), __FUNCTION__, __LINE__, ##args); \ + } \ + } while (0) + + /* check validation */ -#define TBM_BUFMGR_IS_VALID(mgr) (mgr) +#define TBM_BUFMGR_IS_VALID(mgr) (mgr && mgr == gBufMgr) #define TBM_BO_IS_VALID(bo) (bo && \ TBM_BUFMGR_IS_VALID(bo->bufmgr) && \ bo->item_link.next && \ @@ -88,66 +142,42 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. surf->item_link.next && \ surf->item_link.next->prev == &surf->item_link) -#define TBM_DEBUG(fmt, ...) fprintf(stderr, "[TBM:DEBUG(%d)] " fmt, getpid(), ##__VA_ARGS__) -#define TBM_LOG(fmt, ...) fprintf(stderr, "[TBM(%d):%s] " fmt, getpid(), __func__, ##__VA_ARGS__) + +#define TBM_SNRPRINTF(p, len, count, fmt, ARG...) \ + do { \ + if (p) { \ + int rest = len - count; \ + int s = snprintf(&p[count], rest, fmt, ##ARG); \ + while (s >= rest) { \ + len *= 2; \ + p = realloc(p, len); \ + rest = len - count; \ + s = snprintf(&p[count], rest, fmt, ##ARG); \ + } \ + count += s; \ + } \ + } while (0) struct list_head { struct list_head *prev; struct list_head *next; }; -/* unneeded version 2.0 */ -#define TBM_ALL_CTRL_BACKEND_VALID(flags) \ - ((flags&TBM_CACHE_CTRL_BACKEND) &&\ - (flags&TBM_LOCK_CTRL_BACKEND)) -#define TBM_CACHE_CTRL_BACKEND_VALID(flags) \ - (flags&TBM_CACHE_CTRL_BACKEND) -#define TBM_LOCK_CTRL_BACKEND_VALID(flags) \ - (flags&TBM_LOCK_CTRL_BACKEND) - -typedef union _tbm_bo_cache_state tbm_bo_cache_state; - -union _tbm_bo_cache_state { - unsigned int val; - struct { - unsigned int cntFlush: 16; /*Flush all index for sync */ - unsigned int isCacheable: 1; - unsigned int isCached: 1; - unsigned int isDirtied: 2; - } data; -}; -/* unneeded version 2.0 */ - /** * @brief tbm_bo : buffer object of Tizen Buffer Manager */ struct _tbm_bo { - tbm_bufmgr bufmgr; /* tbm buffer manager */ - - int ref_cnt; /* ref count of bo */ - - int flags; /* TBM_BO_FLAGS :bo memory type */ - - struct list_head user_data_list; /* list of the user_date in bo */ - - void *priv; /* bo private */ - - struct list_head item_link; /* link of bo */ - - tbm_surface_h surface; /* tbm_surface */ - - int lock_cnt; /* lock count of bo */ - - unsigned int map_cnt; /* device map count */ - - /* unneeded version 2.0 */ - tbm_bo_handle default_handle; /*default handle */ - - unsigned int tgl_key; /*global key for tizen global lock */ - - /* for cache control */ - tbm_bo_cache_state cache_state; /*cache state */ - /* unneeded version 2.0 */ + tbm_bufmgr bufmgr; /* tbm buffer manager */ + int ref_cnt; /* ref count of bo */ + int flags; /* TBM_BO_FLAGS :bo memory type */ + struct list_head user_data_list; /* list of the user_date in bo */ + void *priv; /* bo private (will be DEPRECATED) */ + struct list_head item_link; /* link of bo */ + tbm_surface_h surface; /* tbm_surface */ + int lock_cnt; /* lock count of bo */ + unsigned int map_cnt; /* device map count */ + + tbm_backend_bo_data *bo_data; /* bo data of the backend module */ }; /** @@ -155,31 +185,25 @@ struct _tbm_bo { * */ struct _tbm_bufmgr { - pthread_mutex_t lock; /* mutex lock */ - - int ref_count; /*reference count */ - - int fd; /* bufmgr fd */ - - int lock_type; /* lock_type of bufmgr */ - - struct list_head bo_list; /* list of bos belonging to bufmgr */ - - struct list_head surf_list; /* list of surfaces belonging to bufmgr */ - - void *module_data; - - tbm_bufmgr_backend backend; /* bufmgr backend */ - - int use_2_0; - - /* unneeded version 2.0 */ - int lock_fd; /* fd of tizen global lock */ - - int fd_flag; /* flag set 1 when bufmgr fd open in tbm_bufmgr_init */ - - int use_map_cache; /* flag to use the map_cahce */ - /* unneeded version 2.0 */ + pthread_mutex_t lock; /* mutex lock */ + int ref_count; /* reference count */ + int fd; /* bufmgr fd */ + tbm_bufmgr_bo_lock_type bo_lock_type; /* lock_type of bufmgr */ + int capabilities; /* capabilities of bufmgr */ + int display_server; /* used by display server */ + unsigned int bo_cnt; /* number of bos */ + struct list_head bo_list; /* list of bos belonging to bufmgr */ + struct list_head surf_list; /* list of surfaces belonging to bufmgr */ + struct list_head surf_queue_list; /* list of surface queues belonging to bufmgr */ + struct list_head debug_key_list; /* list of debug data key list belonging to bufmgr */ + + void *module_data; /* backend module */ + tbm_bufmgr_backend backend; /* bufmgr backend (will be DEPRECATED) */ + + tbm_backend_module *backend_module_data; /* backend module data */ + tbm_backend_bufmgr_data *bufmgr_data; /* backend data of the backend module */ + tbm_backend_bufmgr_func *bufmgr_func; /* backend functions for bufmgr */ + tbm_backend_bo_func *bo_func; /* backend functions for bo */ }; /** @@ -208,6 +232,15 @@ struct _tbm_surface { struct list_head item_link; /* link of surface */ struct list_head user_data_list; /* list of the user_date in surface */ + + struct list_head debug_data_list; /* list of debug data */ + + struct { + int x; + int y; + int width; + int height; + } damage; }; typedef struct { @@ -219,10 +252,18 @@ typedef struct { struct list_head item_link; } tbm_user_data; -int tbm_bufmgr_get_drm_fd_x11(void); -int tbm_bufmgr_get_drm_fd_wayland(void); +typedef struct { + char *key; + char *value; + + /* link of user_data */ + struct list_head item_link; +} tbm_surface_debug_data; +tbm_bufmgr _tbm_bufmgr_get_bufmgr(void); int _tbm_bo_set_surface(tbm_bo bo, tbm_surface_h surface); +int _tbm_surface_is_valid(tbm_surface_h surface); +void _tbm_bo_free(tbm_bo bo); /* functions for mutex */ int tbm_surface_internal_get_info(tbm_surface_h surface, int opt, @@ -233,6 +274,7 @@ unsigned int tbm_surface_internal_get_height(tbm_surface_h surface); tbm_format tbm_surface_internal_get_format(tbm_surface_h surface); unsigned int _tbm_surface_internal_get_debug_pid(tbm_surface_h surface); char *_tbm_surface_internal_format_to_str(tbm_format format); +char * _tbm_surface_internal_get_debug_data(tbm_surface_h surface, char *key); tbm_user_data *user_data_lookup(struct list_head *user_data_list, unsigned long key); @@ -240,4 +282,9 @@ tbm_user_data *user_data_create(unsigned long key, tbm_data_free data_free_func); void user_data_delete(tbm_user_data *user_data); +int tbm_bufmgr_get_fd_limit(void); +tbm_bufmgr tbm_bufmgr_get(void); + +void _tbm_set_last_result(tbm_error_e err); + #endif /* _TBM_BUFMGR_INT_H_ */