[hwc] use TDM_OUTPUT_CAPABILITY_HWC instead of TDM_DISPLAY_CAPABILITY_HWC
[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 <sys/eventfd.h>
56 #include <math.h>
57 #include <grp.h>
58
59 #include <wayland-server-protocol.h>
60 #include <tbm_bufmgr.h>
61 #include <tbm_surface_queue.h>
62
63 #include "tdm_backend.h"
64 #include "tdm_log.h"
65 #include "tdm_list.h"
66 #include "tdm_macro.h"
67
68 #ifdef __cplusplus
69 extern "C" {
70 #endif
71
72 //#define INIT_BUFMGR
73
74 /**
75  * @file tdm_private.h
76  * @brief The private header file for a frontend library
77  */
78
79 enum {
80         TDM_DEBUG_NONE,
81         TDM_DEBUG_BUFFER    = (1 << 0),
82         TDM_DEBUG_MUTEX     = (1 << 1),
83         TDM_DEBUG_THREAD    = (1 << 2),
84         TDM_DEBUG_SERVER    = (1 << 3),
85         TDM_DEBUG_VBLANK    = (1 << 4),
86         TDM_DEBUG_COMMIT    = (1 << 5),
87 };
88
89 extern int tdm_debug_module;
90 extern int tdm_debug_dump;
91
92 #ifdef HAVE_TTRACE
93 #include <ttrace.h>
94 #define TDM_TRACE_BEGIN(NAME) traceBegin(TTRACE_TAG_GRAPHICS, "TDM:"#NAME)
95 #define TDM_TRACE_END() traceEnd(TTRACE_TAG_GRAPHICS)
96 #define TDM_TRACE_COUNT(NAME, COUNT) traceCounter(TTRACE_TAG_GRAPHICS, COUNT, "TDM:"#NAME)
97 #define TDM_TRACE_MARK(NAME) traceMark(TTRACE_TAG_GRAPHICS, "TDM:"#NAME)
98 #else
99 #define TDM_TRACE_BEGIN(NAME)
100 #define TDM_TRACE_END()
101 #define TDM_TRACE_COUNT(NAME, COUNT)
102 #define TDM_TRACE_MARK(NAME)
103 #endif
104
105 typedef enum {
106         TDM_CAPTURE_TARGET_OUTPUT,
107         TDM_CAPTURE_TARGET_LAYER,
108 } tdm_capture_target;
109
110 enum {
111         TDM_DUMP_FLAG_LAYER   = (1 << 0),
112         TDM_DUMP_FLAG_PP      = (1 << 1),
113         TDM_DUMP_FLAG_CAPTURE = (1 << 2),
114         TDM_DUMP_FLAG_WINDOW = (1 << 3),
115 };
116
117 #define TDM_DUMP_DIR    "/tmp"
118
119 typedef enum {
120         TDM_COMMIT_TYPE_NONE,
121         TDM_COMMIT_TYPE_OUTPUT,
122         TDM_COMMIT_TYPE_LAYER,
123 } tdm_commit_type;
124
125 typedef struct _tdm_private_display tdm_private_display;
126 typedef struct _tdm_private_output tdm_private_output;
127 typedef struct _tdm_private_layer tdm_private_layer;
128 typedef struct _tdm_private_hwc_window tdm_private_hwc_window;
129 typedef struct _tdm_private_pp tdm_private_pp;
130 typedef struct _tdm_private_capture tdm_private_capture;
131 typedef struct _tdm_private_loop tdm_private_loop;
132 typedef struct _tdm_private_server tdm_private_server;
133 typedef struct _tdm_private_thread tdm_private_thread;
134 typedef struct _tdm_private_vblank_handler tdm_private_vblank_handler;
135 typedef struct _tdm_private_output_commit_handler tdm_private_output_commit_handler;
136 typedef struct _tdm_private_layer_commit_handler tdm_private_layer_commit_handler;
137 typedef struct _tdm_private_change_handler tdm_private_change_handler;
138 typedef struct _tdm_private_layer_buffer tdm_private_layer_buffer;
139
140 struct _tdm_private_display {
141         pthread_mutex_t lock;
142         unsigned int init_count;
143
144         /* backend module info */
145         void *module;
146         tdm_backend_module *module_data;
147         tdm_backend_data *bdata;
148
149 #ifdef INIT_BUFMGR
150         tbm_bufmgr bufmgr;
151 #endif
152
153         /* backend function */
154         tdm_display_capability capabilities;
155         tdm_func_display func_display;
156         tdm_func_output func_output;
157         tdm_func_layer func_layer;
158         tdm_func_hwc_window func_hwc_window;
159         tdm_func_pp func_pp;
160         tdm_func_capture func_capture;
161
162         /* backend capability */
163         tdm_caps_display caps_display;
164         tdm_caps_pp caps_pp;
165         tdm_caps_capture caps_capture;
166
167         /* output, pp list */
168         struct list_head output_list;
169         struct list_head pp_list;
170         struct list_head capture_list;
171
172         void **outputs_ptr;
173
174         /* for event handling */
175         tdm_private_loop *private_loop;
176
177         /* output order */
178         tdm_output **outputs;
179
180         /* calling a output commit per a vblank */
181         int commit_per_vblank;
182         tdm_commit_type commit_type;
183
184         int print_fps;
185 };
186
187 struct _tdm_private_output {
188         struct list_head link;
189
190         int index;
191         double stamp;
192
193         tdm_private_display *private_display;
194
195         tdm_caps_output caps;
196         tdm_output *output_backend;
197
198         unsigned int pipe;
199         tdm_output_dpms current_dpms_value;
200         unsigned int waiting_dpms_change;
201         const tdm_output_mode *current_mode;
202
203         int regist_vblank_cb;
204         int regist_commit_cb;
205         int regist_change_cb;
206         int regist_dpms_cb;
207
208         struct list_head layer_list;
209         struct list_head hwc_window_list;
210         struct list_head capture_list;
211         struct list_head vblank_handler_list;
212         struct list_head output_commit_handler_list;
213
214         /* for layer commit */
215         struct list_head layer_commit_handler_list;
216         struct list_head pending_commit_handler_list;
217         tdm_vblank *vblank;
218         int layer_waiting_vblank;
219
220         /* seperate list for multi-thread*/
221         struct list_head change_handler_list_main;
222         struct list_head change_handler_list_sub;
223
224         void **layers_ptr;
225
226         /* TODO: temp solution for handling DPMS things in sub-htread */
227         tdm_event_loop_source *dpms_changed_timer;
228
229         struct {
230                 /* look at the tdm_output_set_need_revalidate_handler() declaration for the details */
231                 tdm_output_need_validate_handler hndl;
232                 int event_fd;
233         } need_validate;
234 };
235
236 struct _tdm_private_layer {
237         struct list_head link;
238
239         int index;
240
241         tdm_private_display *private_display;
242         tdm_private_output *private_output;
243
244         tdm_caps_layer caps;
245         tdm_layer *layer_backend;
246
247         /* pending data until committed */
248         unsigned int pending_info_changed;
249         tdm_info_layer pending_info;
250         unsigned int pending_buffer_changed;
251         tbm_surface_h pending_buffer;
252
253         /* When a buffer is set to a layer, it will be stored to waiting_buffer.
254          * And when a layer is committed, it will be moved to committed_buffer.
255          * Finally when a commit handler is called, it will be moved to showing_buffer.
256          */
257         tdm_private_layer_buffer *waiting_buffer;
258         tdm_private_layer_buffer *committed_buffer;   /* for output_commit */
259         tdm_private_layer_buffer *showing_buffer;
260         tbm_surface_queue_h buffer_queue;
261
262         struct list_head capture_list;
263
264         unsigned int usable;
265         unsigned int committing;
266
267         double fps_stamp;
268         unsigned int fps_count;
269 };
270
271 struct _tdm_private_hwc_window {
272         struct list_head link;
273
274         int index;
275         uint32_t zpos;
276
277         tdm_private_display *private_display;
278         tdm_private_output *private_output;
279
280         tdm_hwc_window *hwc_window_backend;
281 };
282
283
284 struct _tdm_private_pp {
285         struct list_head link;
286
287         double stamp;
288
289         tdm_private_display *private_display;
290
291         tdm_pp *pp_backend;
292
293         struct list_head pending_buffer_list;
294         struct list_head buffer_list;
295
296         tdm_info_pp info;
297         pid_t owner_tid;
298
299         tdm_pp_done_handler done_func;
300         void *done_user_data;
301 };
302
303 struct _tdm_private_capture {
304         struct list_head link;
305         struct list_head display_link;
306
307         double stamp;
308
309         tdm_capture_target target;
310
311         tdm_private_display *private_display;
312         tdm_private_output *private_output;
313         tdm_private_layer *private_layer;
314
315         tdm_capture *capture_backend;
316
317         struct list_head pending_buffer_list;
318         struct list_head buffer_list;
319
320         tdm_info_capture info;
321         pid_t owner_tid;
322
323         tdm_capture_done_handler done_func;
324         void *done_user_data;
325 };
326
327 /* CAUTION:
328  * Note that we don't need to (un)lock mutex to use this structure. If there is
329  * no TDM thread, all TDM resources are protected by private_display's mutex.
330  * If there is a TDM thread, this struct will be used only in a TDM thread.
331  * So, we don't need to protect this structure by mutex. Not thread-safe.
332  */
333 struct _tdm_private_loop {
334         /* TDM uses wl_event_loop to handle various event sources including the TDM
335          * backend's fd.
336          */
337         struct wl_display *wl_display;
338         struct wl_event_loop *wl_loop;
339
340         int backend_fd;
341         tdm_event_loop_source *backend_source;
342
343         /* In event loop, all resources are accessed by this dpy.
344          * CAUTION:
345          * - DO NOT include other private structure in this structure because this
346          *   struct is not protected by mutex.
347          */
348         tdm_display *dpy;
349
350         /* for handling TDM client requests */
351         tdm_private_server *private_server;
352
353         /* To have a TDM event thread. If TDM_THREAD enviroment variable is not set
354          * private_thread is NULL.
355          */
356         tdm_private_thread *private_thread;
357 };
358
359 struct _tdm_private_vblank_handler {
360         struct list_head link;
361
362         tdm_private_output *private_output;
363         int interval;
364         int sync;
365         tdm_output_vblank_handler func;
366         void *user_data;
367
368         pid_t owner_tid;
369 };
370
371 struct _tdm_private_output_commit_handler {
372         struct list_head link;
373
374         tdm_private_output *private_output;
375         tdm_output_commit_handler func;
376         void *user_data;
377
378         pid_t owner_tid;
379 };
380
381 struct _tdm_private_layer_commit_handler {
382         struct list_head link;
383
384         tdm_private_layer *private_layer;
385         tdm_layer_commit_handler func;
386         void *user_data;
387
388         tdm_private_layer_buffer *committed_buffer;   /* for layer_commit */
389 };
390
391 struct _tdm_private_change_handler {
392         struct list_head link;
393
394         tdm_private_output *private_output;
395         tdm_output_change_handler func;
396         void *user_data;
397
398         pid_t owner_tid;
399 };
400
401 struct _tdm_private_layer_buffer {
402         tbm_surface_h buffer;
403         struct list_head link;
404 };
405
406 typedef struct _tdm_buffer_info {
407         tbm_surface_h buffer;
408
409         /* ref_count for backend */
410         int backend_ref_count;
411
412         struct list_head release_funcs;
413         struct list_head destroy_funcs;
414
415         struct list_head *list;
416         struct list_head link;
417 } tdm_buffer_info;
418
419 typedef struct _tdm_pp_private_buffer {
420         tbm_surface_h src;
421         tbm_surface_h dst;
422         struct list_head link;
423         struct list_head commit_link;
424 } tdm_pp_private_buffer;
425
426 typedef struct _tdm_capture_private_buffer {
427         tbm_surface_h buffer;
428         struct list_head link;
429         struct list_head commit_link;
430 } tdm_capture_private_buffer;
431
432 int
433 tdm_display_check_module_abi(tdm_private_display *private_display, int abimaj, int abimin);
434
435 tdm_private_output *
436 tdm_display_find_output_stamp(tdm_private_display *private_display, double stamp);
437 tdm_private_pp *
438 tdm_pp_find_stamp(tdm_private_display *private_display, double stamp);
439 tdm_private_capture *
440 tdm_capture_find_stamp(tdm_private_display *private_display, double stamp);
441
442 void
443 tdm_output_cb_vblank(tdm_output *output_backend, unsigned int sequence,
444                                          unsigned int tv_sec, unsigned int tv_usec, void *user_data);
445 void
446 tdm_output_cb_commit(tdm_output *output_backend, unsigned int sequence,
447                                          unsigned int tv_sec, unsigned int tv_usec, void *user_data);
448 void
449 tdm_output_cb_status(tdm_output *output_backend, tdm_output_conn_status status,
450                                          void *user_data);
451 void
452 tdm_output_cb_dpms(tdm_output *output_backend, tdm_output_dpms dpms,
453                                    void *user_data);
454 INTERN tdm_error
455 tdm_output_cb_need_validate(tdm_private_output *private_output);
456
457 tdm_error
458 tdm_output_wait_vblank_add_front(tdm_output *output, int interval, int sync,
459                                                                  tdm_output_vblank_handler func, void *user_data);
460 tdm_error
461 tdm_output_commit_internal(tdm_output *output, int sync, tdm_output_commit_handler func, void *user_data);
462 tdm_error
463 tdm_output_get_dpms_internal(tdm_output *output, tdm_output_dpms *dpms_value);
464
465 tdm_error
466 tdm_output_need_validate_event_init(tdm_output *output);
467
468 void
469 tdm_output_remove_vblank_handler_internal(tdm_output *output, tdm_output_vblank_handler func, void *user_data);
470 void
471 tdm_output_remove_commit_handler_internal(tdm_output *output, tdm_output_commit_handler func, void *user_data);
472 void
473 tdm_layer_remove_commit_handler_internal(tdm_layer *layer, tdm_layer_commit_handler func, void *user_data);
474
475 tdm_error
476 tdm_layer_commit_pending_data(tdm_private_layer *private_layer);
477 void
478 tdm_layer_committed(tdm_private_layer *private_layer, tdm_private_layer_buffer **committed_buffer);
479
480 void
481 tdm_pp_cb_done(tdm_pp *pp_backend, tbm_surface_h src, tbm_surface_h dst,
482                            void *user_data);
483 void
484 tdm_capture_cb_done(tdm_capture *capture_backend, tbm_surface_h buffer,
485                                         void *user_data);
486 tdm_error
487 tdm_vblank_cb_vblank_SW(tdm_vblank *vblank, double vblank_stamp);
488 tdm_error
489 tdm_vblank_set_add_front(tdm_vblank *vblank, unsigned int add_front);
490 tdm_error
491 tdm_vblank_set_resource(tdm_vblank *vblank, struct wl_resource *resource);
492 tdm_error
493 tdm_vblank_set_client_vblank_fps(unsigned int pid, const char *name, unsigned int fps);
494 void
495 tdm_vblank_get_vblank_list_information(tdm_display *dpy, char *reply, int *len);
496
497 void
498 tdm_output_call_change_handler_internal(tdm_private_output *private_output,
499                                                                                 struct list_head *change_handler_list,
500                                                                                 tdm_output_change_type type,
501                                                                                 tdm_value value,
502                                                                                 int no_check_thread_id);
503
504 tdm_private_pp *
505 tdm_pp_create_internal(tdm_private_display *private_display, tdm_error *error);
506 void
507 tdm_pp_destroy_internal(tdm_private_pp *private_pp);
508
509 tdm_hwc_window *
510 tdm_hwc_window_create_internal(tdm_private_output *private_output, tdm_error *error);
511 tdm_error
512 tdm_hwc_window_destroy_internal(tdm_private_hwc_window * private_hwc_window);
513
514 tdm_private_capture *
515 tdm_capture_create_output_internal(tdm_private_output *private_output,
516                                                                    tdm_error *error);
517 tdm_private_capture *
518 tdm_capture_create_layer_internal(tdm_private_layer *private_layer,
519                                                                   tdm_error *error);
520 void
521 tdm_capture_destroy_internal(tdm_private_capture *private_capture);
522
523 /* utility buffer functions for private */
524 tdm_buffer_info*
525 tdm_buffer_get_info(tbm_surface_h buffer);
526 tbm_surface_h
527 tdm_buffer_list_get_first_entry(struct list_head *list);
528 void
529 tdm_buffer_list_dump(struct list_head *list);
530
531 void
532 tdm_buffer_remove_release_handler_internal(tbm_surface_h buffer);
533
534 /* event functions for private */
535 tdm_error
536 tdm_event_loop_init(tdm_private_display *private_display);
537 void
538 tdm_event_loop_deinit(tdm_private_display *private_display);
539 void
540 tdm_event_loop_stop(tdm_private_display *private_display);
541 void
542 tdm_event_loop_create_backend_source(tdm_private_display *private_display);
543 int
544 tdm_event_loop_get_fd(tdm_private_display *private_display);
545 tdm_error
546 tdm_event_loop_dispatch(tdm_private_display *private_display);
547 void
548 tdm_event_loop_flush(tdm_private_display *private_display);
549 tdm_error
550 tdm_event_loop_trace_enable(tdm_private_display *private_display, unsigned int enable);
551
552 typedef enum {
553         TDM_THREAD_CB_NONE,
554         TDM_THREAD_CB_OUTPUT_COMMIT,
555         TDM_THREAD_CB_OUTPUT_VBLANK,
556         TDM_THREAD_CB_OUTPUT_STATUS,
557         TDM_THREAD_CB_OUTPUT_DPMS,
558         TDM_THREAD_CB_PP_DONE,
559         TDM_THREAD_CB_CAPTURE_DONE,
560         TDM_THREAD_CB_VBLANK_SW,
561         TDM_THREAD_CB_NEED_VALIDATE,
562 } tdm_thread_cb_type;
563
564 typedef struct _tdm_thread_cb_base tdm_thread_cb_base;
565 typedef struct _tdm_thread_cb_output_vblank tdm_thread_cb_output_commit;
566 typedef struct _tdm_thread_cb_output_vblank tdm_thread_cb_output_vblank;
567 typedef struct _tdm_thread_cb_output_status tdm_thread_cb_output_status;
568 typedef struct _tdm_thread_cb_output_dpms tdm_thread_cb_output_dpms;
569 typedef struct _tdm_thread_cb_pp_done tdm_thread_cb_pp_done;
570 typedef struct _tdm_thread_cb_capture_done tdm_thread_cb_capture_done;
571 typedef struct _tdm_thread_cb_vblank_sw tdm_thread_cb_vblank_sw;
572 typedef struct _tdm_thread_cb_need_validate tdm_thread_cb_need_validate;
573
574 struct _tdm_thread_cb_base {
575         tdm_thread_cb_type type;
576         unsigned int length;
577 };
578
579 struct _tdm_thread_cb_output_vblank {
580         tdm_thread_cb_base base;
581         double output_stamp;
582         unsigned int sequence;
583         unsigned int tv_sec;
584         unsigned int tv_usec;
585         void *user_data;
586 };
587
588 struct _tdm_thread_cb_output_status {
589         tdm_thread_cb_base base;
590         double output_stamp;
591         tdm_output_conn_status status;
592         void *user_data;
593 };
594
595 struct _tdm_thread_cb_output_dpms {
596         tdm_thread_cb_base base;
597         double output_stamp;
598         tdm_output_dpms dpms;
599         void *user_data;
600 };
601
602 struct _tdm_thread_cb_pp_done {
603         tdm_thread_cb_base base;
604         double pp_stamp;
605         tbm_surface_h src;
606         tbm_surface_h dst;
607         void *user_data;
608 };
609
610 struct _tdm_thread_cb_capture_done {
611         tdm_thread_cb_base base;
612         double capture_stamp;
613         tbm_surface_h buffer;
614         void *user_data;
615 };
616
617 struct _tdm_thread_cb_vblank_sw {
618         tdm_thread_cb_base base;
619         double vblank_stamp;
620 };
621
622 struct _tdm_thread_cb_need_validate {
623         tdm_thread_cb_base base;
624         tdm_private_output *o;
625 };
626
627 tdm_error
628 tdm_thread_init(tdm_private_loop *private_loop);
629 void
630 tdm_thread_deinit(tdm_private_loop *private_loop);
631 int
632 tdm_thread_get_fd(tdm_private_loop *private_loop);
633 tdm_error
634 tdm_thread_send_cb(tdm_private_loop *private_loop, tdm_thread_cb_base *base);
635 tdm_error
636 tdm_thread_handle_cb(tdm_private_loop *private_loop);
637 int
638 tdm_thread_in_display_thread(pid_t tid);
639 int
640 tdm_thread_is_running(void);
641
642 tdm_error
643 tdm_server_init(tdm_private_loop *private_loop);
644 void
645 tdm_server_deinit(tdm_private_loop *private_loop);
646 const char*
647 tdm_server_get_client_name(pid_t pid);
648
649 char *
650 tdm_helper_dump_make_directory(const char *path, char *reply, int *len);
651 void
652 tdm_helper_dump_buffer_str(tbm_surface_h buffer, char *dir, char *str);
653 double
654 tdm_helper_get_time(void);
655
656 extern pthread_mutex_t tdm_mutex_check_lock;
657 extern int tdm_mutex_locked;
658 extern const char *tdm_mutex_lock_func;
659 extern int tdm_mutex_lock_line;
660 extern const char *tdm_mutex_unlock_func;
661 extern int tdm_mutex_unlock_line;
662 extern int tdm_dump_enable;
663 extern char *tdm_debug_dump_dir;
664
665 #define _pthread_mutex_unlock(l) \
666         do { \
667                 if (tdm_debug_module & TDM_DEBUG_MUTEX) \
668                         TDM_INFO("mutex unlock"); \
669                 pthread_mutex_lock(&tdm_mutex_check_lock); \
670                 tdm_mutex_locked = 0; \
671                 tdm_mutex_lock_func = NULL; \
672                 tdm_mutex_lock_line = 0; \
673                 tdm_mutex_unlock_func = __FUNCTION__; \
674                 tdm_mutex_unlock_line = __LINE__; \
675                 pthread_mutex_unlock(&tdm_mutex_check_lock); \
676                 pthread_mutex_unlock(l); \
677         } while (0)
678 #ifdef TDM_CONFIG_MUTEX_TIMEOUT
679 #define MUTEX_TIMEOUT_SEC 5
680 #define _pthread_mutex_lock(l) \
681         do { \
682                 if (tdm_debug_module & TDM_DEBUG_MUTEX) \
683                         TDM_INFO("mutex lock"); \
684                 struct timespec rtime; \
685                 clock_gettime(CLOCK_REALTIME, &rtime); \
686                 rtime.tv_sec += MUTEX_TIMEOUT_SEC; \
687                 if (pthread_mutex_timedlock(l, &rtime)) { \
688                         TDM_ERR("Mutex lock failed PID %d", getpid()); \
689                         _pthread_mutex_unlock(l); \
690                 } \
691                 else { \
692                         pthread_mutex_lock(&tdm_mutex_check_lock); \
693                         tdm_mutex_locked = 1; \
694                         tdm_mutex_lock_func = __FUNCTION__; \
695                         tdm_mutex_lock_line = __LINE__; \
696                         tdm_mutex_unlock_func = NULL; \
697                         tdm_mutex_unlock_line = 0; \
698                         pthread_mutex_unlock(&tdm_mutex_check_lock); \
699                 } \
700         } while (0)
701 #else //TDM_CONFIG_MUTEX_TIMEOUT
702 #define _pthread_mutex_lock(l) \
703         do { \
704                 if (tdm_debug_module & TDM_DEBUG_MUTEX) \
705                         TDM_INFO("mutex lock"); \
706                 pthread_mutex_lock(l); \
707                 pthread_mutex_lock(&tdm_mutex_check_lock); \
708                 tdm_mutex_locked = 1; \
709                 tdm_mutex_lock_func = __FUNCTION__; \
710                 tdm_mutex_lock_line = __LINE__; \
711                 tdm_mutex_unlock_func = NULL; \
712                 tdm_mutex_unlock_line = 0; \
713                 pthread_mutex_unlock(&tdm_mutex_check_lock); \
714         } while (0)
715 #endif //TDM_CONFIG_MUTEX_TIMEOUT
716 //#define TDM_MUTEX_IS_LOCKED() (tdm_mutex_locked == 1)
717 static inline int TDM_MUTEX_IS_LOCKED(void)
718 {
719         int ret;
720         /* if thread is not running, we don't need to consider mutex things. */
721         if (!tdm_thread_is_running())
722                 return 1;
723         pthread_mutex_lock(&tdm_mutex_check_lock);
724         ret = (tdm_mutex_locked == 1);
725         pthread_mutex_unlock(&tdm_mutex_check_lock);
726         return ret;
727 }
728
729 #define tdm_display_lock(dpy)   _pthread_mutex_lock(&((tdm_private_display *)dpy)->lock)
730 #define tdm_display_unlock(dpy)   _pthread_mutex_unlock(&((tdm_private_display *)dpy)->lock)
731
732 tdm_error
733 tdm_display_update_output(tdm_private_display *private_display,
734                                                   tdm_output *output_backend, int pipe);
735 tdm_error
736 tdm_display_enable_debug_module(const char*modules);
737 tdm_error
738 tdm_display_enable_dump(tdm_private_display *private_display, const char *dump_str, char *reply, int *len);
739 tdm_error
740 tdm_display_enable_path(const char *path);
741 tdm_error
742 tdm_display_enable_ttrace_vblank(tdm_display *dpy, tdm_output *output, int enable);
743 tdm_error
744 tdm_display_enable_commit_per_vblank(tdm_private_display *private_display, int enable);
745 tdm_error
746 tdm_display_enable_fps(tdm_private_display *private_display, int enable);
747
748 void
749 tdm_monitor_server_command(tdm_display *dpy, const char *options, char *reply, int *len);
750
751 struct argument_details {
752         char type;
753         int nullable;
754 };
755
756
757 #ifdef __cplusplus
758 }
759 #endif
760
761 #endif /* _TDM_PRIVATE_H_ */