correct capture behavior
[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 #define TDM_TRACE_COUNT(NAME, COUNT) traceCounter(TTRACE_TAG_GRAPHICS, COUNT, "TDM:"#NAME)
93 #define TDM_TRACE_MARK(NAME) traceMark(TTRACE_TAG_GRAPHICS, "TDM:"#NAME)
94 #else
95 #define TDM_TRACE_BEGIN(NAME)
96 #define TDM_TRACE_END()
97 #define TDM_TRACE_COUNT(NAME, COUNT)
98 #define TDM_TRACE_MARK(NAME)
99 #endif
100
101 typedef enum {
102         TDM_CAPTURE_TARGET_OUTPUT,
103         TDM_CAPTURE_TARGET_LAYER,
104 } tdm_capture_target;
105
106 enum {
107         TDM_DUMP_FLAG_LAYER   = (1 << 0),
108         TDM_DUMP_FLAG_PP      = (1 << 1),
109         TDM_DUMP_FLAG_CAPTURE = (1 << 2),
110 };
111
112 #define TDM_DUMP_DIR    "/tmp"
113
114 typedef struct _tdm_private_display tdm_private_display;
115 typedef struct _tdm_private_output tdm_private_output;
116 typedef struct _tdm_private_layer tdm_private_layer;
117 typedef struct _tdm_private_pp tdm_private_pp;
118 typedef struct _tdm_private_capture tdm_private_capture;
119 typedef struct _tdm_private_loop tdm_private_loop;
120 typedef struct _tdm_private_server tdm_private_server;
121 typedef struct _tdm_private_thread tdm_private_thread;
122 typedef struct _tdm_private_vblank_handler tdm_private_vblank_handler;
123 typedef struct _tdm_private_commit_handler tdm_private_commit_handler;
124 typedef struct _tdm_private_change_handler tdm_private_change_handler;
125
126 struct _tdm_private_display {
127         pthread_mutex_t lock;
128         unsigned int init_count;
129
130         /* backend module info */
131         void *module;
132         tdm_backend_module *module_data;
133         tdm_backend_data *bdata;
134
135 #ifdef INIT_BUFMGR
136         tbm_bufmgr bufmgr;
137 #endif
138
139         /* backend function */
140         tdm_display_capability capabilities;
141         tdm_func_display func_display;
142         tdm_func_output func_output;
143         tdm_func_layer func_layer;
144         tdm_func_pp func_pp;
145         tdm_func_capture func_capture;
146
147         /* backend capability */
148         tdm_caps_display caps_display;
149         tdm_caps_pp caps_pp;
150         tdm_caps_capture caps_capture;
151
152         /* output, pp list */
153         struct list_head output_list;
154         struct list_head pp_list;
155         struct list_head capture_list;
156
157         void **outputs_ptr;
158
159         /* for event handling */
160         tdm_private_loop *private_loop;
161
162         /* output order */
163         tdm_output **outputs;
164 };
165
166 struct _tdm_private_output {
167         struct list_head link;
168
169         int index;
170         double stamp;
171
172         tdm_private_display *private_display;
173
174         tdm_caps_output caps;
175         tdm_output *output_backend;
176
177         unsigned int pipe;
178         tdm_output_dpms current_dpms_value;
179         const tdm_output_mode *current_mode;
180
181         int regist_vblank_cb;
182         int regist_commit_cb;
183         int regist_change_cb;
184         int regist_dpms_cb;
185
186         struct list_head layer_list;
187         struct list_head capture_list;
188         struct list_head vblank_handler_list;
189         struct list_head commit_handler_list;
190
191         /* seperate list for multi-thread*/
192         struct list_head change_handler_list_main;
193         struct list_head change_handler_list_sub;
194
195         void **layers_ptr;
196
197         /* TODO: temp solution for handling DPMS things in sub-htread */
198         tdm_event_loop_source *dpms_changed_timer;
199 };
200
201 struct _tdm_private_layer {
202         struct list_head link;
203
204         int index;
205
206         tdm_private_display *private_display;
207         tdm_private_output *private_output;
208
209         tdm_caps_layer caps;
210         tdm_layer *layer_backend;
211
212         tbm_surface_h pending_buffer;
213         tbm_surface_h waiting_buffer;
214         tbm_surface_h showing_buffer;
215         tbm_surface_queue_h buffer_queue;
216
217         struct list_head capture_list;
218
219         unsigned int usable;
220 };
221
222 struct _tdm_private_pp {
223         struct list_head link;
224
225         double stamp;
226
227         tdm_private_display *private_display;
228
229         tdm_pp *pp_backend;
230
231         struct list_head pending_buffer_list;
232         struct list_head buffer_list;
233
234         tdm_info_pp info;
235         pid_t owner_tid;
236
237         tdm_pp_done_handler done_func;
238         void *done_user_data;
239 };
240
241 struct _tdm_private_capture {
242         struct list_head link;
243         struct list_head display_link;
244
245         double stamp;
246
247         tdm_capture_target target;
248
249         tdm_private_display *private_display;
250         tdm_private_output *private_output;
251         tdm_private_layer *private_layer;
252
253         tdm_capture *capture_backend;
254
255         struct list_head pending_buffer_list;
256         struct list_head buffer_list;
257
258         tdm_info_capture info;
259         pid_t owner_tid;
260
261         tdm_capture_done_handler done_func;
262         void *done_user_data;
263 };
264
265 /* CAUTION:
266  * Note that we don't need to (un)lock mutex to use this structure. If there is
267  * no TDM thread, all TDM resources are protected by private_display's mutex.
268  * If there is a TDM thread, this struct will be used only in a TDM thread.
269  * So, we don't need to protect this structure by mutex. Not thread-safe.
270  */
271 struct _tdm_private_loop {
272         /* TDM uses wl_event_loop to handle various event sources including the TDM
273          * backend's fd.
274          */
275         struct wl_display *wl_display;
276         struct wl_event_loop *wl_loop;
277
278         int backend_fd;
279         tdm_event_loop_source *backend_source;
280
281         /* In event loop, all resources are accessed by this dpy.
282          * CAUTION:
283          * - DO NOT include other private structure in this structure because this
284          *   struct is not protected by mutex.
285          */
286         tdm_display *dpy;
287
288         /* for handling TDM client requests */
289         tdm_private_server *private_server;
290
291         /* To have a TDM event thread. If TDM_THREAD enviroment variable is not set
292          * private_thread is NULL.
293          */
294         tdm_private_thread *private_thread;
295 };
296
297 struct _tdm_private_vblank_handler {
298         struct list_head link;
299
300         tdm_private_output *private_output;
301         tdm_output_vblank_handler func;
302         void *user_data;
303
304         pid_t owner_tid;
305 };
306
307 struct _tdm_private_commit_handler {
308         struct list_head link;
309
310         tdm_private_output *private_output;
311         tdm_output_commit_handler func;
312         void *user_data;
313
314         pid_t owner_tid;
315 };
316
317 struct _tdm_private_change_handler {
318         struct list_head link;
319
320         tdm_private_output *private_output;
321         tdm_output_change_handler func;
322         void *user_data;
323
324         pid_t owner_tid;
325 };
326
327 typedef struct _tdm_buffer_info {
328         tbm_surface_h buffer;
329
330         /* ref_count for backend */
331         int backend_ref_count;
332
333         struct list_head release_funcs;
334         struct list_head destroy_funcs;
335
336         struct list_head *list;
337         struct list_head link;
338 } tdm_buffer_info;
339
340 typedef struct _tdm_pp_private_buffer {
341         tbm_surface_h src;
342         tbm_surface_h dst;
343         struct list_head link;
344         struct list_head commit_link;
345 } tdm_pp_private_buffer;
346
347 typedef struct _tdm_capture_private_buffer {
348         tbm_surface_h buffer;
349         struct list_head link;
350         struct list_head commit_link;
351 } tdm_capture_private_buffer;
352
353 int
354 tdm_display_check_module_abi(tdm_private_display *private_display, int abimaj, int abimin);
355
356 tdm_private_output *
357 tdm_display_find_output_stamp(tdm_private_display *private_display, double stamp);
358 tdm_private_pp *
359 tdm_pp_find_stamp(tdm_private_display *private_display, double stamp);
360 tdm_private_capture *
361 tdm_capture_find_stamp(tdm_private_display *private_display, double stamp);
362
363 void
364 tdm_output_cb_vblank(tdm_output *output_backend, unsigned int sequence,
365                                          unsigned int tv_sec, unsigned int tv_usec, void *user_data);
366 void
367 tdm_output_cb_commit(tdm_output *output_backend, unsigned int sequence,
368                                          unsigned int tv_sec, unsigned int tv_usec, void *user_data);
369 void
370 tdm_output_cb_status(tdm_output *output_backend, tdm_output_conn_status status,
371                                          void *user_data);
372 void
373 tdm_output_cb_dpms(tdm_output *output_backend, tdm_output_dpms dpms,
374                                    void *user_data);
375 void
376 tdm_pp_cb_done(tdm_pp *pp_backend, tbm_surface_h src, tbm_surface_h dst,
377                            void *user_data);
378 void
379 tdm_capture_cb_done(tdm_capture *capture_backend, tbm_surface_h buffer,
380                                         void *user_data);
381 tdm_error
382 tdm_vblank_cb_vblank_SW(tdm_vblank *vblank, double vblank_stamp);
383
384 void
385 tdm_output_call_change_handler_internal(tdm_private_output *private_output,
386                                                                                 struct list_head *change_handler_list,
387                                                                                 tdm_output_change_type type,
388                                                                                 tdm_value value,
389                                                                                 int no_check_thread_id);
390
391 tdm_private_pp *
392 tdm_pp_create_internal(tdm_private_display *private_display, tdm_error *error);
393 void
394 tdm_pp_destroy_internal(tdm_private_pp *private_pp);
395
396 tdm_private_capture *
397 tdm_capture_create_output_internal(tdm_private_output *private_output,
398                                                                    tdm_error *error);
399 tdm_private_capture *
400 tdm_capture_create_layer_internal(tdm_private_layer *private_layer,
401                                                                   tdm_error *error);
402 void
403 tdm_capture_destroy_internal(tdm_private_capture *private_capture);
404
405 /* utility buffer functions for private */
406 tdm_buffer_info*
407 tdm_buffer_get_info(tbm_surface_h buffer);
408 tbm_surface_h
409 tdm_buffer_list_get_first_entry(struct list_head *list);
410 void
411 tdm_buffer_list_dump(struct list_head *list);
412
413 void
414 tdm_buffer_remove_release_handler_internal(tbm_surface_h buffer);
415
416 /* event functions for private */
417 tdm_error
418 tdm_event_loop_init(tdm_private_display *private_display);
419 void
420 tdm_event_loop_deinit(tdm_private_display *private_display);
421 void
422 tdm_event_loop_create_backend_source(tdm_private_display *private_display);
423 int
424 tdm_event_loop_get_fd(tdm_private_display *private_display);
425 tdm_error
426 tdm_event_loop_dispatch(tdm_private_display *private_display);
427 void
428 tdm_event_loop_flush(tdm_private_display *private_display);
429
430 typedef enum {
431         TDM_THREAD_CB_NONE,
432         TDM_THREAD_CB_OUTPUT_COMMIT,
433         TDM_THREAD_CB_OUTPUT_VBLANK,
434         TDM_THREAD_CB_OUTPUT_STATUS,
435         TDM_THREAD_CB_OUTPUT_DPMS,
436         TDM_THREAD_CB_PP_DONE,
437         TDM_THREAD_CB_CAPTURE_DONE,
438         TDM_THREAD_CB_VBLANK_SW,
439 } tdm_thread_cb_type;
440
441 typedef struct _tdm_thread_cb_base tdm_thread_cb_base;
442 typedef struct _tdm_thread_cb_output_vblank tdm_thread_cb_output_commit;
443 typedef struct _tdm_thread_cb_output_vblank tdm_thread_cb_output_vblank;
444 typedef struct _tdm_thread_cb_output_status tdm_thread_cb_output_status;
445 typedef struct _tdm_thread_cb_output_dpms tdm_thread_cb_output_dpms;
446 typedef struct _tdm_thread_cb_pp_done tdm_thread_cb_pp_done;
447 typedef struct _tdm_thread_cb_capture_done tdm_thread_cb_capture_done;
448 typedef struct _tdm_thread_cb_vblank_sw tdm_thread_cb_vblank_sw;
449
450 struct _tdm_thread_cb_base {
451         tdm_thread_cb_type type;
452         unsigned int length;
453 };
454
455 struct _tdm_thread_cb_output_vblank {
456         tdm_thread_cb_base base;
457         double output_stamp;
458         unsigned int sequence;
459         unsigned int tv_sec;
460         unsigned int tv_usec;
461         void *user_data;
462 };
463
464 struct _tdm_thread_cb_output_status {
465         tdm_thread_cb_base base;
466         double output_stamp;
467         tdm_output_conn_status status;
468         void *user_data;
469 };
470
471 struct _tdm_thread_cb_output_dpms {
472         tdm_thread_cb_base base;
473         double output_stamp;
474         tdm_output_dpms dpms;
475         void *user_data;
476 };
477
478 struct _tdm_thread_cb_pp_done {
479         tdm_thread_cb_base base;
480         double pp_stamp;
481         tbm_surface_h src;
482         tbm_surface_h dst;
483         void *user_data;
484 };
485
486 struct _tdm_thread_cb_capture_done {
487         tdm_thread_cb_base base;
488         double capture_stamp;
489         tbm_surface_h buffer;
490         void *user_data;
491 };
492
493 struct _tdm_thread_cb_vblank_sw {
494         tdm_thread_cb_base base;
495         double vblank_stamp;
496 };
497
498 tdm_error
499 tdm_thread_init(tdm_private_loop *private_loop);
500 void
501 tdm_thread_deinit(tdm_private_loop *private_loop);
502 int
503 tdm_thread_get_fd(tdm_private_loop *private_loop);
504 tdm_error
505 tdm_thread_send_cb(tdm_private_loop *private_loop, tdm_thread_cb_base *base);
506 tdm_error
507 tdm_thread_handle_cb(tdm_private_loop *private_loop);
508 int
509 tdm_thread_in_display_thread(pid_t tid);
510 int
511 tdm_thread_is_running(void);
512
513 tdm_error
514 tdm_server_init(tdm_private_loop *private_loop);
515 void
516 tdm_server_deinit(tdm_private_loop *private_loop);
517
518 char *
519 tdm_helper_dump_make_directory(const char *path, char *reply, int *len);
520 void
521 tdm_helper_dump_buffer_str(tbm_surface_h buffer, char *dir, char *str);
522 double
523 tdm_helper_get_time(void);
524
525 extern pthread_mutex_t tdm_mutex_check_lock;
526 extern int tdm_mutex_locked;
527 extern int tdm_dump_enable;
528 extern char *tdm_debug_dump_dir;
529
530 #define _pthread_mutex_unlock(l) \
531         do { \
532                 if (tdm_debug_module & TDM_DEBUG_MUTEX) \
533                         TDM_INFO("mutex unlock"); \
534                 pthread_mutex_lock(&tdm_mutex_check_lock); \
535                 tdm_mutex_locked = 0; \
536                 pthread_mutex_unlock(&tdm_mutex_check_lock); \
537                 pthread_mutex_unlock(l); \
538         } while (0)
539 #ifdef TDM_CONFIG_MUTEX_TIMEOUT
540 #define MUTEX_TIMEOUT_SEC 5
541 #define _pthread_mutex_lock(l) \
542         do { \
543                 if (tdm_debug_module & TDM_DEBUG_MUTEX) \
544                         TDM_INFO("mutex lock"); \
545                 struct timespec rtime; \
546                 clock_gettime(CLOCK_REALTIME, &rtime); \
547                 rtime.tv_sec += MUTEX_TIMEOUT_SEC; \
548                 if (pthread_mutex_timedlock(l, &rtime)) { \
549                         TDM_ERR("Mutex lock failed PID %d", getpid()); \
550                         _pthread_mutex_unlock(l); \
551                 } \
552                 else { \
553                         pthread_mutex_lock(&tdm_mutex_check_lock); \
554                         tdm_mutex_locked = 1; \
555                         pthread_mutex_unlock(&tdm_mutex_check_lock); \
556                 } \
557         } while (0)
558 #else //TDM_CONFIG_MUTEX_TIMEOUT
559 #define _pthread_mutex_lock(l) \
560         do { \
561                 if (tdm_debug_module & TDM_DEBUG_MUTEX) \
562                         TDM_INFO("mutex lock"); \
563                 pthread_mutex_lock(l); \
564                 pthread_mutex_lock(&tdm_mutex_check_lock); \
565                 tdm_mutex_locked = 1; \
566                 pthread_mutex_unlock(&tdm_mutex_check_lock); \
567         } while (0)
568 #endif //TDM_CONFIG_MUTEX_TIMEOUT
569 //#define TDM_MUTEX_IS_LOCKED() (tdm_mutex_locked == 1)
570 static inline int TDM_MUTEX_IS_LOCKED(void)
571 {
572         int ret;
573         /* if thread is not running, we don't need to consider mutex things. */
574         if (!tdm_thread_is_running())
575                 return 1;
576         pthread_mutex_lock(&tdm_mutex_check_lock);
577         ret = (tdm_mutex_locked == 1);
578         pthread_mutex_unlock(&tdm_mutex_check_lock);
579         return ret;
580 }
581
582 #define tdm_display_lock(dpy)   _pthread_mutex_lock(&((tdm_private_display *)dpy)->lock)
583 #define tdm_display_unlock(dpy)   _pthread_mutex_unlock(&((tdm_private_display *)dpy)->lock)
584
585 tdm_error
586 tdm_display_update_output(tdm_private_display *private_display,
587                                                   tdm_output *output_backend, int pipe);
588 tdm_error
589 tdm_display_enable_debug_module(const char*modules);
590 tdm_error
591 tdm_display_enable_dump(tdm_private_display *private_display, const char *dump_str, char *reply, int *len);
592 tdm_error
593 tdm_display_enable_path(const char *path);
594 tdm_error
595 tdm_display_enable_ttrace_vblank(tdm_display *dpy, tdm_output *output, int enable);
596
597 void
598 tdm_monitor_server_command(tdm_display *dpy, const char *options, char *reply, int *len);
599
600 #ifdef __cplusplus
601 }
602 #endif
603
604 #endif /* _TDM_PRIVATE_H_ */