1 /**************************************************************************
5 * Copyright 2015 Samsung Electronics co., Ltd. All Rights Reserved.
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>
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:
22 * The above copyright notice and this permission notice (including the
23 * next paragraph) shall be included in all copies or substantial portions
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.
34 **************************************************************************/
40 #include "tdm_private.h"
42 #define BACKEND_FUNC_ENTRY() \
43 tdm_private_display *private_display; \
44 TDM_RETURN_VAL_IF_FAIL(dpy != NULL, TDM_ERROR_INVALID_PARAMETER); \
45 private_display = (tdm_private_display*)dpy;
48 _check_abi_version(tdm_backend_module *module, int abimaj, int abimin)
50 int major = TDM_BACKEND_GET_ABI_MAJOR(module->abi_version);
51 int minor = TDM_BACKEND_GET_ABI_MINOR(module->abi_version);
53 if (major < abimaj) goto failed;
54 if (major > abimaj) return 0;
55 if (minor < abimin) goto failed;
58 TDM_ERR("The ABI version(%d.%d) of '%s' is less than %d.%d",
59 major, minor, module->name ? module->name : "unknown",
65 tdm_backend_register_func_display(tdm_display *dpy,
66 tdm_func_display *func_display)
68 tdm_backend_module *module;
70 TDM_RETURN_VAL_IF_FAIL(TDM_MUTEX_IS_LOCKED(), TDM_ERROR_OPERATION_FAILED);
74 TDM_RETURN_VAL_IF_FAIL(func_display != NULL, TDM_ERROR_INVALID_PARAMETER);
76 /* the ABI version of backend module should be more than 1.1 */
77 module = private_display->module_data;
78 if (_check_abi_version(module, 1, 1) < 0)
79 return TDM_ERROR_BAD_MODULE;
81 private_display->func_display = *func_display;
83 return TDM_ERROR_NONE;
87 tdm_backend_register_func_output(tdm_display *dpy, tdm_func_output *func_output)
89 tdm_backend_module *module;
91 TDM_RETURN_VAL_IF_FAIL(TDM_MUTEX_IS_LOCKED(), TDM_ERROR_OPERATION_FAILED);
95 TDM_RETURN_VAL_IF_FAIL(func_output != NULL, TDM_ERROR_INVALID_PARAMETER);
97 /* the ABI version of backend module should be more than 1.1 */
98 module = private_display->module_data;
99 if (_check_abi_version(module, 1, 1) < 0)
100 return TDM_ERROR_BAD_MODULE;
102 private_display->func_output = *func_output;
104 return TDM_ERROR_NONE;
108 tdm_backend_register_func_layer(tdm_display *dpy, tdm_func_layer *func_layer)
110 tdm_backend_module *module;
112 TDM_RETURN_VAL_IF_FAIL(TDM_MUTEX_IS_LOCKED(), TDM_ERROR_OPERATION_FAILED);
114 BACKEND_FUNC_ENTRY();
116 TDM_RETURN_VAL_IF_FAIL(func_layer != NULL, TDM_ERROR_INVALID_PARAMETER);
118 /* the ABI version of backend module should be more than 1.1 */
119 module = private_display->module_data;
120 if (_check_abi_version(module, 1, 1) < 0)
121 return TDM_ERROR_BAD_MODULE;
123 private_display->func_layer = *func_layer;
125 return TDM_ERROR_NONE;
129 tdm_backend_register_func_hwc_window(tdm_display *dpy, tdm_func_hwc_window *func_hwc_window)
131 tdm_backend_module *module;
133 TDM_RETURN_VAL_IF_FAIL(TDM_MUTEX_IS_LOCKED(), TDM_ERROR_OPERATION_FAILED);
135 BACKEND_FUNC_ENTRY();
137 TDM_RETURN_VAL_IF_FAIL(func_hwc_window != NULL, TDM_ERROR_INVALID_PARAMETER);
139 module = private_display->module_data;
141 Temporarily, we set the version of hwc window to 1.1 for the development.
142 Originally the hwc window version is 2.0. */
143 if (_check_abi_version(module, 1, 1) < 0)
144 return TDM_ERROR_BAD_MODULE;
146 private_display->func_hwc_window = *func_hwc_window;
148 return TDM_ERROR_NONE;
152 tdm_backend_register_func_pp(tdm_display *dpy, tdm_func_pp *func_pp)
154 TDM_RETURN_VAL_IF_FAIL(TDM_MUTEX_IS_LOCKED(), TDM_ERROR_OPERATION_FAILED);
156 BACKEND_FUNC_ENTRY();
159 return TDM_ERROR_NONE;
161 private_display->capabilities |= TDM_DISPLAY_CAPABILITY_PP;
162 private_display->func_pp = *func_pp;
164 return TDM_ERROR_NONE;
168 tdm_backend_register_func_capture(tdm_display *dpy,
169 tdm_func_capture *func_capture)
171 TDM_RETURN_VAL_IF_FAIL(TDM_MUTEX_IS_LOCKED(), TDM_ERROR_OPERATION_FAILED);
173 BACKEND_FUNC_ENTRY();
176 return TDM_ERROR_NONE;
178 private_display->capabilities |= TDM_DISPLAY_CAPABILITY_CAPTURE;
179 private_display->func_capture = *func_capture;
181 return TDM_ERROR_NONE;
184 /* backend operates itself types */
185 static tdm_private_output*
186 _look_for_frontend_hwc_output(tdm_output *backend_output)
188 tdm_private_output *frontend_output = NULL, *o = NULL;
189 tdm_private_display *dpy;
191 dpy = tdm_display_init(NULL);
192 TDM_RETURN_VAL_IF_FAIL(dpy != NULL, NULL);
194 LIST_FOR_EACH_ENTRY(o, &dpy->output_list, link) {
195 if (!(o->caps.capabilities & TDM_OUTPUT_CAPABILITY_HWC))
198 if (o->output_backend == backend_output) {
204 tdm_display_deinit(dpy);
206 return frontend_output;
210 tdm_backend_trigger_need_validate_event(tdm_output *output)
212 tdm_private_output *private_output;
216 private_output = _look_for_frontend_hwc_output(output);
217 TDM_RETURN_VAL_IF_FAIL(private_output != NULL, TDM_ERROR_INVALID_PARAMETER);
221 /* do not lock the global display lock here */
223 res = write(private_output->need_validate.event_fd, &value, sizeof(value));
225 return TDM_ERROR_OPERATION_FAILED;
227 return TDM_ERROR_NONE;