a2740a01122a84b5e0a64f3358b946b161f4c567
[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         pid_t owner_tid;
227 };
228
229 struct _tdm_private_capture {
230         struct list_head link;
231         struct list_head display_link;
232
233         unsigned long stamp;
234
235         tdm_capture_target target;
236
237         tdm_private_display *private_display;
238         tdm_private_output *private_output;
239         tdm_private_layer *private_layer;
240
241         tdm_capture *capture_backend;
242
243         struct list_head pending_buffer_list;
244         struct list_head buffer_list;
245
246         pid_t owner_tid;
247 };
248
249 /* CAUTION:
250  * Note that we don't need to (un)lock mutex to use this structure. If there is
251  * no TDM thread, all TDM resources are protected by private_display's mutex.
252  * If there is a TDM thread, this struct will be used only in a TDM thread.
253  * So, we don't need to protect this structure by mutex. Not thread-safe.
254  */
255 struct _tdm_private_loop {
256         /* TDM uses wl_event_loop to handle various event sources including the TDM
257          * backend's fd.
258          */
259         struct wl_display *wl_display;
260         struct wl_event_loop *wl_loop;
261
262         int backend_fd;
263         tdm_event_loop_source *backend_source;
264
265         /* In event loop, all resources are accessed by this dpy.
266          * CAUTION:
267          * - DO NOT include other private structure in this structure because this
268          *   struct is not protected by mutex.
269          */
270         tdm_display *dpy;
271
272         /* for handling TDM client requests */
273         tdm_private_server *private_server;
274
275         /* To have a TDM event thread. If TDM_THREAD enviroment variable is not set
276          * private_thread is NULL.
277          */
278         tdm_private_thread *private_thread;
279 };
280
281 struct _tdm_private_vblank_handler {
282         struct list_head link;
283
284         tdm_private_output *private_output;
285         tdm_output_vblank_handler func;
286         void *user_data;
287
288         pid_t owner_tid;
289 };
290
291 struct _tdm_private_commit_handler {
292         struct list_head link;
293
294         tdm_private_output *private_output;
295         tdm_output_commit_handler func;
296         void *user_data;
297
298         pid_t owner_tid;
299 };
300
301 struct _tdm_private_change_handler {
302         struct list_head link;
303
304         tdm_private_output *private_output;
305         tdm_output_change_handler func;
306         void *user_data;
307
308         pid_t owner_tid;
309 };
310
311 typedef struct _tdm_buffer_info {
312         tbm_surface_h buffer;
313
314         /* ref_count for backend */
315         int backend_ref_count;
316
317         struct list_head release_funcs;
318         struct list_head destroy_funcs;
319
320         struct list_head *list;
321         struct list_head link;
322 } tdm_buffer_info;
323
324 int
325 tdm_display_check_module_abi(tdm_private_display *private_display, int abimaj, int abimin);
326
327 tdm_private_output *
328 tdm_display_find_output_stamp(tdm_private_display *private_display,
329                                                           unsigned long stamp);
330 tdm_private_pp *
331 tdm_pp_find_stamp(tdm_private_display *private_display, unsigned long stamp);
332 tdm_private_capture *
333 tdm_capture_find_stamp(tdm_private_display *private_display, unsigned long stamp);
334
335 void
336 tdm_output_cb_vblank(tdm_output *output_backend, unsigned int sequence,
337                                          unsigned int tv_sec, unsigned int tv_usec, void *user_data);
338 void
339 tdm_output_cb_commit(tdm_output *output_backend, unsigned int sequence,
340                                          unsigned int tv_sec, unsigned int tv_usec, void *user_data);
341 void
342 tdm_output_cb_status(tdm_output *output_backend, tdm_output_conn_status status,
343                                          void *user_data);
344 void
345 tdm_pp_cb_done(tdm_pp *pp_backend, tbm_surface_h src, tbm_surface_h dst,
346                            void *user_data);
347 void
348 tdm_capture_cb_done(tdm_capture *capture_backend, tbm_surface_h buffer,
349                                         void *user_data);
350
351 void
352 tdm_output_call_change_handler_internal(tdm_private_output *private_output,
353                                                                                 struct list_head *change_handler_list,
354                                                                                 tdm_output_change_type type,
355                                                                                 tdm_value value,
356                                                                                 int no_check_thread_id);
357
358 tdm_private_pp *
359 tdm_pp_create_internal(tdm_private_display *private_display, tdm_error *error);
360 void
361 tdm_pp_destroy_internal(tdm_private_pp *private_pp);
362
363 tdm_private_capture *
364 tdm_capture_create_output_internal(tdm_private_output *private_output,
365                                                                    tdm_error *error);
366 tdm_private_capture *
367 tdm_capture_create_layer_internal(tdm_private_layer *private_layer,
368                                                                   tdm_error *error);
369 void
370 tdm_capture_destroy_internal(tdm_private_capture *private_capture);
371
372 /* utility buffer functions for private */
373 tdm_buffer_info*
374 tdm_buffer_get_info(tbm_surface_h buffer);
375 tbm_surface_h
376 tdm_buffer_list_get_first_entry(struct list_head *list);
377 void
378 tdm_buffer_list_dump(struct list_head *list);
379
380 /* event functions for private */
381 tdm_error
382 tdm_event_loop_init(tdm_private_display *private_display);
383 void
384 tdm_event_loop_deinit(tdm_private_display *private_display);
385 void
386 tdm_event_loop_create_backend_source(tdm_private_display *private_display);
387 int
388 tdm_event_loop_get_fd(tdm_private_display *private_display);
389 tdm_error
390 tdm_event_loop_dispatch(tdm_private_display *private_display);
391 void
392 tdm_event_loop_flush(tdm_private_display *private_display);
393
394 typedef enum {
395         TDM_THREAD_CB_NONE,
396         TDM_THREAD_CB_OUTPUT_COMMIT,
397         TDM_THREAD_CB_OUTPUT_VBLANK,
398         TDM_THREAD_CB_OUTPUT_STATUS,
399         TDM_THREAD_CB_PP_DONE,
400         TDM_THREAD_CB_CAPTURE_DONE,
401 } tdm_thread_cb_type;
402
403 typedef struct _tdm_thread_cb_base tdm_thread_cb_base;
404 typedef struct _tdm_thread_cb_output_vblank tdm_thread_cb_output_commit;
405 typedef struct _tdm_thread_cb_output_vblank tdm_thread_cb_output_vblank;
406 typedef struct _tdm_thread_cb_output_status tdm_thread_cb_output_status;
407 typedef struct _tdm_thread_cb_pp_done tdm_thread_cb_pp_done;
408 typedef struct _tdm_thread_cb_capture_done tdm_thread_cb_capture_done;
409
410 struct _tdm_thread_cb_base {
411         tdm_thread_cb_type type;
412         unsigned int length;
413 };
414
415 struct _tdm_thread_cb_output_vblank {
416         tdm_thread_cb_base base;
417         unsigned long output_stamp;
418         unsigned int sequence;
419         unsigned int tv_sec;
420         unsigned int tv_usec;
421         void *user_data;
422 };
423
424 struct _tdm_thread_cb_output_status {
425         tdm_thread_cb_base base;
426         unsigned long output_stamp;
427         tdm_output_conn_status status;
428         void *user_data;
429 };
430
431 struct _tdm_thread_cb_pp_done {
432         tdm_thread_cb_base base;
433         unsigned long pp_stamp;
434         tbm_surface_h src;
435         tbm_surface_h dst;
436         void *user_data;
437 };
438
439 struct _tdm_thread_cb_capture_done {
440         tdm_thread_cb_base base;
441         unsigned long capture_stamp;
442         tbm_surface_h buffer;
443         void *user_data;
444 };
445
446 tdm_error
447 tdm_thread_init(tdm_private_loop *private_loop);
448 void
449 tdm_thread_deinit(tdm_private_loop *private_loop);
450 int
451 tdm_thread_get_fd(tdm_private_loop *private_loop);
452 tdm_error
453 tdm_thread_send_cb(tdm_private_loop *private_loop, tdm_thread_cb_base *base);
454 tdm_error
455 tdm_thread_handle_cb(tdm_private_loop *private_loop);
456 int
457 tdm_thread_in_display_thread(pid_t tid);
458 int
459 tdm_thread_is_running(void);
460
461 tdm_error
462 tdm_server_init(tdm_private_loop *private_loop);
463 void
464 tdm_server_deinit(tdm_private_loop *private_loop);
465
466 void
467 tdm_helper_dump_buffer_str(tbm_surface_h buffer, const char *str);
468 unsigned long
469 tdm_helper_get_time_in_millis(void);
470 unsigned long
471 tdm_helper_get_time_in_micros(void);
472
473 extern pthread_mutex_t tdm_mutex_check_lock;
474 extern int tdm_mutex_locked;
475 extern int tdm_dump_enable;
476
477 #define _pthread_mutex_unlock(l) \
478         do { \
479                 if (tdm_debug_module & TDM_DEBUG_MUTEX) \
480                         TDM_INFO("mutex unlock"); \
481                 pthread_mutex_lock(&tdm_mutex_check_lock); \
482                 tdm_mutex_locked = 0; \
483                 pthread_mutex_unlock(&tdm_mutex_check_lock); \
484                 pthread_mutex_unlock(l); \
485         } while (0)
486 #ifdef TDM_CONFIG_MUTEX_TIMEOUT
487 #define MUTEX_TIMEOUT_SEC 5
488 #define _pthread_mutex_lock(l) \
489         do { \
490                 if (tdm_debug_module & TDM_DEBUG_MUTEX) \
491                         TDM_INFO("mutex lock"); \
492                 struct timespec rtime; \
493                 clock_gettime(CLOCK_REALTIME, &rtime); \
494                 rtime.tv_sec += MUTEX_TIMEOUT_SEC; \
495                 if (pthread_mutex_timedlock(l, &rtime)) { \
496                         TDM_ERR("Mutex lock failed PID %d", getpid()); \
497                         _pthread_mutex_unlock(l); \
498                 } \
499                 else { \
500                         pthread_mutex_lock(&tdm_mutex_check_lock); \
501                         tdm_mutex_locked = 1; \
502                         pthread_mutex_unlock(&tdm_mutex_check_lock); \
503                 } \
504         } while (0)
505 #else //TDM_CONFIG_MUTEX_TIMEOUT
506 #define _pthread_mutex_lock(l) \
507         do { \
508                 if (tdm_debug_module & TDM_DEBUG_MUTEX) \
509                         TDM_INFO("mutex lock"); \
510                 pthread_mutex_lock(l); \
511                 pthread_mutex_lock(&tdm_mutex_check_lock); \
512                 tdm_mutex_locked = 1; \
513                 pthread_mutex_unlock(&tdm_mutex_check_lock); \
514         } while (0)
515 #endif //TDM_CONFIG_MUTEX_TIMEOUT
516 //#define TDM_MUTEX_IS_LOCKED() (tdm_mutex_locked == 1)
517 static inline int TDM_MUTEX_IS_LOCKED(void)
518 {
519         int ret;
520         /* if thread is not running, we don't need to consider mutex things. */
521         if (!tdm_thread_is_running())
522                 return 1;
523         pthread_mutex_lock(&tdm_mutex_check_lock);
524         ret = (tdm_mutex_locked == 1);
525         pthread_mutex_unlock(&tdm_mutex_check_lock);
526         return ret;
527 }
528
529 #define tdm_display_lock(dpy)   _pthread_mutex_lock(&((tdm_private_display *)dpy)->lock)
530 #define tdm_display_unlock(dpy)   _pthread_mutex_unlock(&((tdm_private_display *)dpy)->lock)
531
532 tdm_error
533 tdm_display_update_output(tdm_private_display *private_display,
534                                                   tdm_output *output_backend, int pipe);
535 tdm_error
536 tdm_display_enable_debug_module(const char*modules);
537 tdm_error
538 tdm_display_enable_dump(const char *dump_str);
539 tdm_error
540 tdm_display_enable_path(const char *path);
541
542 /**
543  * @brief The tdm vblank object
544  */
545 typedef void tdm_vblank;
546
547 typedef void (*tdm_vblank_handler)(tdm_vblank *vblank, tdm_error error, unsigned int sequence,
548                                                                    unsigned int tv_sec, unsigned int tv_usec, void *user_data);
549
550 tdm_vblank*
551 tdm_vblank_create(tdm_display *dpy, tdm_output *output, tdm_error *error);
552 void
553 tdm_vblank_destroy(tdm_vblank *vblank);
554 tdm_error
555 tdm_vblank_set_fps(tdm_vblank *vblank, unsigned int fps);
556 tdm_error
557 tdm_vblank_set_offset(tdm_vblank *vblank, int offset);
558 tdm_error
559 tdm_vblank_set_enable_fake(tdm_vblank *vblank, unsigned int enable_fake);
560 tdm_error
561 tdm_vblank_wait(tdm_vblank *vblank, unsigned int req_sec, unsigned int req_usec, unsigned int interval, tdm_vblank_handler func, void *user_data);
562
563 void
564 tdm_dbg_server_command(tdm_display *dpy, const char *options, char *reply, int *len);
565
566 #ifdef __cplusplus
567 }
568 #endif
569
570 #endif /* _TDM_PRIVATE_H_ */