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