rename tdm-dbg to tdm-monitor
[platform/core/uifw/libtdm.git] / src / tdm_private.h
1 /**************************************************************************
2  *
3  * libtdm
4  *
5  * Copyright 2015 Samsung Electronics co., Ltd. All Rights Reserved.
6  *
7  * Contact: Eunchul Kim <chulspro.kim@samsung.com>,
8  *          JinYoung Jeon <jy0.jeon@samsung.com>,
9  *          Taeheon Kim <th908.kim@samsung.com>,
10  *          YoungJun Cho <yj44.cho@samsung.com>,
11  *          SooChan Lim <sc1.lim@samsung.com>,
12  *          Boram Park <sc1.lim@samsung.com>
13  *
14  * Permission is hereby granted, free of charge, to any person obtaining a
15  * copy of this software and associated documentation files (the
16  * "Software"), to deal in the Software without restriction, including
17  * without limitation the rights to use, copy, modify, merge, publish,
18  * distribute, sub license, and/or sell copies of the Software, and to
19  * permit persons to whom the Software is furnished to do so, subject to
20  * the following conditions:
21  *
22  * The above copyright notice and this permission notice (including the
23  * next paragraph) shall be included in all copies or substantial portions
24  * of the Software.
25  *
26  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
27  * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
28  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
29  * IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR
30  * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
31  * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
32  * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
33  *
34 **************************************************************************/
35
36 #ifndef _TDM_PRIVATE_H_
37 #define _TDM_PRIVATE_H_
38
39 #include <stdio.h>
40 #include <string.h>
41 #include <strings.h>
42 #include <stdlib.h>
43 #include <pthread.h>
44 #include <errno.h>
45 #include <unistd.h>
46 #include <limits.h>
47 #include <sys/types.h>
48 #include <sys/stat.h>
49 #include <fcntl.h>
50 #include <dlfcn.h>
51 #include <dirent.h>
52 #include <poll.h>
53 #include <sys/syscall.h>
54 #include <sys/types.h>
55 #include <math.h>
56
57 #include <tbm_bufmgr.h>
58 #include <tbm_surface_queue.h>
59
60 #include "tdm_backend.h"
61 #include "tdm_log.h"
62 #include "tdm_list.h"
63 #include "tdm_macro.h"
64
65 #ifdef __cplusplus
66 extern "C" {
67 #endif
68
69 //#define INIT_BUFMGR
70
71 /**
72  * @file tdm_private.h
73  * @brief The private header file for a frontend library
74  */
75
76 enum {
77         TDM_DEBUG_NONE,
78         TDM_DEBUG_BUFFER    = (1 << 0),
79         TDM_DEBUG_MUTEX     = (1 << 1),
80         TDM_DEBUG_THREAD    = (1 << 2),
81         TDM_DEBUG_SERVER    = (1 << 3),
82         TDM_DEBUG_VBLANK    = (1 << 4),
83 };
84
85 extern int tdm_debug_module;
86 extern int tdm_debug_dump;
87
88 #ifdef HAVE_TTRACE
89 #include <ttrace.h>
90 #define TDM_TRACE_BEGIN(NAME) traceBegin(TTRACE_TAG_GRAPHICS, "TDM:"#NAME)
91 #define TDM_TRACE_END() traceEnd(TTRACE_TAG_GRAPHICS)
92 #else
93 #define TDM_TRACE_BEGIN(NAME)
94 #define TDM_TRACE_END()
95 #endif
96
97 typedef enum {
98         TDM_CAPTURE_TARGET_OUTPUT,
99         TDM_CAPTURE_TARGET_LAYER,
100 } tdm_capture_target;
101
102 enum {
103         TDM_DUMP_FLAG_LAYER   = (1 << 0),
104         TDM_DUMP_FLAG_PP      = (1 << 1),
105         TDM_DUMP_FLAG_CAPTURE = (1 << 2),
106 };
107
108 typedef struct _tdm_private_display tdm_private_display;
109 typedef struct _tdm_private_output tdm_private_output;
110 typedef struct _tdm_private_layer tdm_private_layer;
111 typedef struct _tdm_private_pp tdm_private_pp;
112 typedef struct _tdm_private_capture tdm_private_capture;
113 typedef struct _tdm_private_loop tdm_private_loop;
114 typedef struct _tdm_private_server tdm_private_server;
115 typedef struct _tdm_private_thread tdm_private_thread;
116 typedef struct _tdm_private_vblank_handler tdm_private_vblank_handler;
117 typedef struct _tdm_private_commit_handler tdm_private_commit_handler;
118 typedef struct _tdm_private_change_handler tdm_private_change_handler;
119
120 struct _tdm_private_display {
121         pthread_mutex_t lock;
122         unsigned int init_count;
123
124         /* backend module info */
125         void *module;
126         tdm_backend_module *module_data;
127         tdm_backend_data *bdata;
128
129 #ifdef INIT_BUFMGR
130         tbm_bufmgr bufmgr;
131 #endif
132
133         /* backend function */
134         tdm_display_capability capabilities;
135         tdm_func_display func_display;
136         tdm_func_output func_output;
137         tdm_func_layer func_layer;
138         tdm_func_pp func_pp;
139         tdm_func_capture func_capture;
140
141         /* backend capability */
142         tdm_caps_display caps_display;
143         tdm_caps_pp caps_pp;
144         tdm_caps_capture caps_capture;
145
146         /* output, pp list */
147         struct list_head output_list;
148         struct list_head pp_list;
149         struct list_head capture_list;
150
151         void **outputs_ptr;
152
153         /* for event handling */
154         tdm_private_loop *private_loop;
155
156         /* output order */
157         tdm_output **outputs;
158 };
159
160 struct _tdm_private_output {
161         struct list_head link;
162
163         int index;
164         unsigned long stamp;
165
166         tdm_private_display *private_display;
167
168         tdm_caps_output caps;
169         tdm_output *output_backend;
170
171         unsigned int pipe;
172         tdm_output_dpms current_dpms_value;
173
174         int regist_vblank_cb;
175         int regist_commit_cb;
176         int regist_change_cb;
177
178         struct list_head layer_list;
179         struct list_head capture_list;
180         struct list_head vblank_handler_list;
181         struct list_head commit_handler_list;
182
183         /* seperate list for multi-thread*/
184         struct list_head change_handler_list_main;
185         struct list_head change_handler_list_sub;
186
187         void **layers_ptr;
188
189         /* TODO: temp solution for handling DPMS things in sub-htread */
190         tdm_event_loop_source *dpms_changed_timer;
191 };
192
193 struct _tdm_private_layer {
194         struct list_head link;
195
196         int index;
197
198         tdm_private_display *private_display;
199         tdm_private_output *private_output;
200
201         tdm_caps_layer caps;
202         tdm_layer *layer_backend;
203
204         tbm_surface_h pending_buffer;
205         tbm_surface_h waiting_buffer;
206         tbm_surface_h showing_buffer;
207         tbm_surface_queue_h buffer_queue;
208
209         struct list_head capture_list;
210
211         unsigned int usable;
212 };
213
214 struct _tdm_private_pp {
215         struct list_head link;
216
217         unsigned long stamp;
218
219         tdm_private_display *private_display;
220
221         tdm_pp *pp_backend;
222
223         struct list_head pending_buffer_list;
224         struct list_head buffer_list;
225
226         tdm_info_pp info;
227         pid_t owner_tid;
228
229         tdm_pp_done_handler done_func;
230         void *done_user_data;
231 };
232
233 struct _tdm_private_capture {
234         struct list_head link;
235         struct list_head display_link;
236
237         unsigned long stamp;
238
239         tdm_capture_target target;
240
241         tdm_private_display *private_display;
242         tdm_private_output *private_output;
243         tdm_private_layer *private_layer;
244
245         tdm_capture *capture_backend;
246
247         struct list_head pending_buffer_list;
248         struct list_head buffer_list;
249
250         tdm_info_capture info;
251         pid_t owner_tid;
252
253         tdm_capture_done_handler done_func;
254         void *done_user_data;
255 };
256
257 /* CAUTION:
258  * Note that we don't need to (un)lock mutex to use this structure. If there is
259  * no TDM thread, all TDM resources are protected by private_display's mutex.
260  * If there is a TDM thread, this struct will be used only in a TDM thread.
261  * So, we don't need to protect this structure by mutex. Not thread-safe.
262  */
263 struct _tdm_private_loop {
264         /* TDM uses wl_event_loop to handle various event sources including the TDM
265          * backend's fd.
266          */
267         struct wl_display *wl_display;
268         struct wl_event_loop *wl_loop;
269
270         int backend_fd;
271         tdm_event_loop_source *backend_source;
272
273         /* In event loop, all resources are accessed by this dpy.
274          * CAUTION:
275          * - DO NOT include other private structure in this structure because this
276          *   struct is not protected by mutex.
277          */
278         tdm_display *dpy;
279
280         /* for handling TDM client requests */
281         tdm_private_server *private_server;
282
283         /* To have a TDM event thread. If TDM_THREAD enviroment variable is not set
284          * private_thread is NULL.
285          */
286         tdm_private_thread *private_thread;
287 };
288
289 struct _tdm_private_vblank_handler {
290         struct list_head link;
291
292         tdm_private_output *private_output;
293         tdm_output_vblank_handler func;
294         void *user_data;
295
296         pid_t owner_tid;
297 };
298
299 struct _tdm_private_commit_handler {
300         struct list_head link;
301
302         tdm_private_output *private_output;
303         tdm_output_commit_handler func;
304         void *user_data;
305
306         pid_t owner_tid;
307 };
308
309 struct _tdm_private_change_handler {
310         struct list_head link;
311
312         tdm_private_output *private_output;
313         tdm_output_change_handler func;
314         void *user_data;
315
316         pid_t owner_tid;
317 };
318
319 typedef struct _tdm_buffer_info {
320         tbm_surface_h buffer;
321
322         /* ref_count for backend */
323         int backend_ref_count;
324
325         struct list_head release_funcs;
326         struct list_head destroy_funcs;
327
328         struct list_head *list;
329         struct list_head link;
330 } tdm_buffer_info;
331
332 typedef struct _tdm_pp_private_buffer {
333         tbm_surface_h src;
334         tbm_surface_h dst;
335         struct list_head link;
336         struct list_head commit_link;
337 } tdm_pp_private_buffer;
338
339 int
340 tdm_display_check_module_abi(tdm_private_display *private_display, int abimaj, int abimin);
341
342 tdm_private_output *
343 tdm_display_find_output_stamp(tdm_private_display *private_display,
344                                                           unsigned long stamp);
345 tdm_private_pp *
346 tdm_pp_find_stamp(tdm_private_display *private_display, unsigned long stamp);
347 tdm_private_capture *
348 tdm_capture_find_stamp(tdm_private_display *private_display, unsigned long stamp);
349
350 void
351 tdm_output_cb_vblank(tdm_output *output_backend, unsigned int sequence,
352                                          unsigned int tv_sec, unsigned int tv_usec, void *user_data);
353 void
354 tdm_output_cb_commit(tdm_output *output_backend, unsigned int sequence,
355                                          unsigned int tv_sec, unsigned int tv_usec, void *user_data);
356 void
357 tdm_output_cb_status(tdm_output *output_backend, tdm_output_conn_status status,
358                                          void *user_data);
359 void
360 tdm_pp_cb_done(tdm_pp *pp_backend, tbm_surface_h src, tbm_surface_h dst,
361                            void *user_data);
362 void
363 tdm_capture_cb_done(tdm_capture *capture_backend, tbm_surface_h buffer,
364                                         void *user_data);
365
366 void
367 tdm_output_call_change_handler_internal(tdm_private_output *private_output,
368                                                                                 struct list_head *change_handler_list,
369                                                                                 tdm_output_change_type type,
370                                                                                 tdm_value value,
371                                                                                 int no_check_thread_id);
372
373 tdm_private_pp *
374 tdm_pp_create_internal(tdm_private_display *private_display, tdm_error *error);
375 void
376 tdm_pp_destroy_internal(tdm_private_pp *private_pp);
377
378 tdm_private_capture *
379 tdm_capture_create_output_internal(tdm_private_output *private_output,
380                                                                    tdm_error *error);
381 tdm_private_capture *
382 tdm_capture_create_layer_internal(tdm_private_layer *private_layer,
383                                                                   tdm_error *error);
384 void
385 tdm_capture_destroy_internal(tdm_private_capture *private_capture);
386
387 /* utility buffer functions for private */
388 tdm_buffer_info*
389 tdm_buffer_get_info(tbm_surface_h buffer);
390 tbm_surface_h
391 tdm_buffer_list_get_first_entry(struct list_head *list);
392 void
393 tdm_buffer_list_dump(struct list_head *list);
394
395 void
396 tdm_buffer_remove_release_handler_internal(tbm_surface_h buffer);
397
398 /* event functions for private */
399 tdm_error
400 tdm_event_loop_init(tdm_private_display *private_display);
401 void
402 tdm_event_loop_deinit(tdm_private_display *private_display);
403 void
404 tdm_event_loop_create_backend_source(tdm_private_display *private_display);
405 int
406 tdm_event_loop_get_fd(tdm_private_display *private_display);
407 tdm_error
408 tdm_event_loop_dispatch(tdm_private_display *private_display);
409 void
410 tdm_event_loop_flush(tdm_private_display *private_display);
411
412 typedef enum {
413         TDM_THREAD_CB_NONE,
414         TDM_THREAD_CB_OUTPUT_COMMIT,
415         TDM_THREAD_CB_OUTPUT_VBLANK,
416         TDM_THREAD_CB_OUTPUT_STATUS,
417         TDM_THREAD_CB_PP_DONE,
418         TDM_THREAD_CB_CAPTURE_DONE,
419 } tdm_thread_cb_type;
420
421 typedef struct _tdm_thread_cb_base tdm_thread_cb_base;
422 typedef struct _tdm_thread_cb_output_vblank tdm_thread_cb_output_commit;
423 typedef struct _tdm_thread_cb_output_vblank tdm_thread_cb_output_vblank;
424 typedef struct _tdm_thread_cb_output_status tdm_thread_cb_output_status;
425 typedef struct _tdm_thread_cb_pp_done tdm_thread_cb_pp_done;
426 typedef struct _tdm_thread_cb_capture_done tdm_thread_cb_capture_done;
427
428 struct _tdm_thread_cb_base {
429         tdm_thread_cb_type type;
430         unsigned int length;
431 };
432
433 struct _tdm_thread_cb_output_vblank {
434         tdm_thread_cb_base base;
435         unsigned long output_stamp;
436         unsigned int sequence;
437         unsigned int tv_sec;
438         unsigned int tv_usec;
439         void *user_data;
440 };
441
442 struct _tdm_thread_cb_output_status {
443         tdm_thread_cb_base base;
444         unsigned long output_stamp;
445         tdm_output_conn_status status;
446         void *user_data;
447 };
448
449 struct _tdm_thread_cb_pp_done {
450         tdm_thread_cb_base base;
451         unsigned long pp_stamp;
452         tbm_surface_h src;
453         tbm_surface_h dst;
454         void *user_data;
455 };
456
457 struct _tdm_thread_cb_capture_done {
458         tdm_thread_cb_base base;
459         unsigned long capture_stamp;
460         tbm_surface_h buffer;
461         void *user_data;
462 };
463
464 tdm_error
465 tdm_thread_init(tdm_private_loop *private_loop);
466 void
467 tdm_thread_deinit(tdm_private_loop *private_loop);
468 int
469 tdm_thread_get_fd(tdm_private_loop *private_loop);
470 tdm_error
471 tdm_thread_send_cb(tdm_private_loop *private_loop, tdm_thread_cb_base *base);
472 tdm_error
473 tdm_thread_handle_cb(tdm_private_loop *private_loop);
474 int
475 tdm_thread_in_display_thread(pid_t tid);
476 int
477 tdm_thread_is_running(void);
478
479 tdm_error
480 tdm_server_init(tdm_private_loop *private_loop);
481 void
482 tdm_server_deinit(tdm_private_loop *private_loop);
483
484 void
485 tdm_helper_dump_buffer_str(tbm_surface_h buffer, const char *str);
486 unsigned long
487 tdm_helper_get_time_in_millis(void);
488 unsigned long
489 tdm_helper_get_time_in_micros(void);
490
491 extern pthread_mutex_t tdm_mutex_check_lock;
492 extern int tdm_mutex_locked;
493 extern int tdm_dump_enable;
494
495 #define _pthread_mutex_unlock(l) \
496         do { \
497                 if (tdm_debug_module & TDM_DEBUG_MUTEX) \
498                         TDM_INFO("mutex unlock"); \
499                 pthread_mutex_lock(&tdm_mutex_check_lock); \
500                 tdm_mutex_locked = 0; \
501                 pthread_mutex_unlock(&tdm_mutex_check_lock); \
502                 pthread_mutex_unlock(l); \
503         } while (0)
504 #ifdef TDM_CONFIG_MUTEX_TIMEOUT
505 #define MUTEX_TIMEOUT_SEC 5
506 #define _pthread_mutex_lock(l) \
507         do { \
508                 if (tdm_debug_module & TDM_DEBUG_MUTEX) \
509                         TDM_INFO("mutex lock"); \
510                 struct timespec rtime; \
511                 clock_gettime(CLOCK_REALTIME, &rtime); \
512                 rtime.tv_sec += MUTEX_TIMEOUT_SEC; \
513                 if (pthread_mutex_timedlock(l, &rtime)) { \
514                         TDM_ERR("Mutex lock failed PID %d", getpid()); \
515                         _pthread_mutex_unlock(l); \
516                 } \
517                 else { \
518                         pthread_mutex_lock(&tdm_mutex_check_lock); \
519                         tdm_mutex_locked = 1; \
520                         pthread_mutex_unlock(&tdm_mutex_check_lock); \
521                 } \
522         } while (0)
523 #else //TDM_CONFIG_MUTEX_TIMEOUT
524 #define _pthread_mutex_lock(l) \
525         do { \
526                 if (tdm_debug_module & TDM_DEBUG_MUTEX) \
527                         TDM_INFO("mutex lock"); \
528                 pthread_mutex_lock(l); \
529                 pthread_mutex_lock(&tdm_mutex_check_lock); \
530                 tdm_mutex_locked = 1; \
531                 pthread_mutex_unlock(&tdm_mutex_check_lock); \
532         } while (0)
533 #endif //TDM_CONFIG_MUTEX_TIMEOUT
534 //#define TDM_MUTEX_IS_LOCKED() (tdm_mutex_locked == 1)
535 static inline int TDM_MUTEX_IS_LOCKED(void)
536 {
537         int ret;
538         /* if thread is not running, we don't need to consider mutex things. */
539         if (!tdm_thread_is_running())
540                 return 1;
541         pthread_mutex_lock(&tdm_mutex_check_lock);
542         ret = (tdm_mutex_locked == 1);
543         pthread_mutex_unlock(&tdm_mutex_check_lock);
544         return ret;
545 }
546
547 #define tdm_display_lock(dpy)   _pthread_mutex_lock(&((tdm_private_display *)dpy)->lock)
548 #define tdm_display_unlock(dpy)   _pthread_mutex_unlock(&((tdm_private_display *)dpy)->lock)
549
550 tdm_error
551 tdm_display_update_output(tdm_private_display *private_display,
552                                                   tdm_output *output_backend, int pipe);
553 tdm_error
554 tdm_display_enable_debug_module(const char*modules);
555 tdm_error
556 tdm_display_enable_dump(const char *dump_str);
557 tdm_error
558 tdm_display_enable_path(const char *path);
559
560 /**
561  * @brief The tdm vblank object
562  */
563 typedef void tdm_vblank;
564
565 typedef void (*tdm_vblank_handler)(tdm_vblank *vblank, tdm_error error, unsigned int sequence,
566                                                                    unsigned int tv_sec, unsigned int tv_usec, void *user_data);
567
568 tdm_vblank*
569 tdm_vblank_create(tdm_display *dpy, tdm_output *output, tdm_error *error);
570 void
571 tdm_vblank_destroy(tdm_vblank *vblank);
572 tdm_error
573 tdm_vblank_set_fps(tdm_vblank *vblank, unsigned int fps);
574 tdm_error
575 tdm_vblank_set_offset(tdm_vblank *vblank, int offset);
576 tdm_error
577 tdm_vblank_set_enable_fake(tdm_vblank *vblank, unsigned int enable_fake);
578 tdm_error
579 tdm_vblank_wait(tdm_vblank *vblank, unsigned int req_sec, unsigned int req_usec, unsigned int interval, tdm_vblank_handler func, void *user_data);
580
581 void
582 tdm_monitor_server_command(tdm_display *dpy, const char *options, char *reply, int *len);
583
584 #ifdef __cplusplus
585 }
586 #endif
587
588 #endif /* _TDM_PRIVATE_H_ */