blob: c510b66892792176b0ed74c431fc3b1eacca1f19 [file] [log] [blame]
Naseer Ahmed29a26812012-06-14 00:56:20 -07001/*
2 * Copyright (C) 2010 The Android Open Source Project
Saurabh Shah56f610d2012-08-07 15:27:06 -07003 * Copyright (C) 2012, The Linux Foundation. All rights reserved.
Naseer Ahmed29a26812012-06-14 00:56:20 -07004 *
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 */
17
18#include <fcntl.h>
19#include <errno.h>
20
21#include <cutils/log.h>
22#include <cutils/atomic.h>
Naseer Ahmed72cf9762012-07-21 12:17:13 -070023#include <EGL/egl.h>
Naseer Ahmed29a26812012-06-14 00:56:20 -070024
Naseer Ahmed72cf9762012-07-21 12:17:13 -070025#include <overlay.h>
26#include <fb_priv.h>
Naseer Ahmed96c4c952012-07-25 18:27:14 -070027#include <mdp_version.h>
Naseer Ahmed29a26812012-06-14 00:56:20 -070028#include "hwc_utils.h"
Naseer Ahmedf48aef62012-07-20 09:05:53 -070029#include "hwc_video.h"
Saurabh Shah86623d72012-09-25 19:39:17 -070030#include "hwc_uimirror.h"
Saurabh Shah56f610d2012-08-07 15:27:06 -070031#include "external.h"
Naseer Ahmed7c958d42012-07-31 18:57:03 -070032#include "hwc_mdpcomp.h"
Naseer Ahmed29a26812012-06-14 00:56:20 -070033
Naseer Ahmedff4f0252012-10-01 13:03:01 -040034#define VSYNC_DEBUG 0
Naseer Ahmed29a26812012-06-14 00:56:20 -070035using namespace qhwc;
36
37static int hwc_device_open(const struct hw_module_t* module,
38 const char* name,
39 struct hw_device_t** device);
40
41static struct hw_module_methods_t hwc_module_methods = {
42 open: hwc_device_open
43};
44
45hwc_module_t HAL_MODULE_INFO_SYM = {
46 common: {
47 tag: HARDWARE_MODULE_TAG,
48 version_major: 2,
49 version_minor: 0,
50 id: HWC_HARDWARE_MODULE_ID,
51 name: "Qualcomm Hardware Composer Module",
52 author: "CodeAurora Forum",
53 methods: &hwc_module_methods,
54 dso: 0,
55 reserved: {0},
56 }
57};
58
59/*
60 * Save callback functions registered to HWC
61 */
Naseer Ahmed5b6708a2012-08-02 13:46:08 -070062static void hwc_registerProcs(struct hwc_composer_device_1* dev,
Naseer Ahmed29a26812012-06-14 00:56:20 -070063 hwc_procs_t const* procs)
64{
Iliyan Malchev0f9c3972012-10-11 15:16:15 -070065 ALOGI("%s", __FUNCTION__);
Naseer Ahmed29a26812012-06-14 00:56:20 -070066 hwc_context_t* ctx = (hwc_context_t*)(dev);
67 if(!ctx) {
68 ALOGE("%s: Invalid context", __FUNCTION__);
69 return;
70 }
Jesse Hall3be78d92012-08-21 15:12:23 -070071 ctx->proc = procs;
72
Naseer Ahmedff4f0252012-10-01 13:03:01 -040073 // Now that we have the functions needed, kick off
74 // the uevent & vsync threads
Jesse Hall3be78d92012-08-21 15:12:23 -070075 init_uevent_thread(ctx);
Naseer Ahmedff4f0252012-10-01 13:03:01 -040076 init_vsync_thread(ctx);
Naseer Ahmed29a26812012-06-14 00:56:20 -070077}
78
Saurabh Shah649cda62012-09-16 16:05:58 -070079//Helper
Saurabh Shah3e858eb2012-09-17 16:53:21 -070080static void reset(hwc_context_t *ctx, int numDisplays) {
81 memset(ctx->listStats, 0, sizeof(ctx->listStats));
82 for(int i = 0; i < numDisplays; i++){
83 ctx->listStats[i].yuvIndex = -1;
84 }
85}
86
87static int hwc_prepare_primary(hwc_composer_device_1 *dev,
88 hwc_display_contents_1_t *list) {
89 hwc_context_t* ctx = (hwc_context_t*)(dev);
Saurabh Shahc4d034f2012-09-27 15:55:15 -070090 ctx->overlayInUse[HWC_DISPLAY_PRIMARY] = false;
Saurabh Shahae823e72012-10-05 00:08:11 -040091 if (LIKELY(list && list->numHwLayers > 1)) {
Saurabh Shah86623d72012-09-25 19:39:17 -070092 uint32_t last = list->numHwLayers - 1;
93 hwc_layer_1_t *fblayer = &list->hwLayers[last];
Saurabh Shah3e858eb2012-09-17 16:53:21 -070094 setListStats(ctx, list, HWC_DISPLAY_PRIMARY);
95 if(VideoOverlay::prepare(ctx, list, HWC_DISPLAY_PRIMARY)) {
Saurabh Shahc4d034f2012-09-27 15:55:15 -070096 ctx->overlayInUse[HWC_DISPLAY_PRIMARY] = true;
Saurabh Shah3e858eb2012-09-17 16:53:21 -070097 } else if(MDPComp::configure(ctx, list)) {
Saurabh Shahc4d034f2012-09-27 15:55:15 -070098 ctx->overlayInUse[HWC_DISPLAY_PRIMARY] = true;
Saurabh Shah3e858eb2012-09-17 16:53:21 -070099 } else {
Saurabh Shahc4d034f2012-09-27 15:55:15 -0700100 ctx->overlayInUse[HWC_DISPLAY_PRIMARY] = false;
Saurabh Shah3e858eb2012-09-17 16:53:21 -0700101 }
102 }
103 return 0;
104}
105
106static int hwc_prepare_external(hwc_composer_device_1 *dev,
107 hwc_display_contents_1_t *list) {
108
109 hwc_context_t* ctx = (hwc_context_t*)(dev);
Saurabh Shahc4d034f2012-09-27 15:55:15 -0700110 ctx->overlayInUse[HWC_DISPLAY_EXTERNAL] = false;
111
Saurabh Shahae823e72012-10-05 00:08:11 -0400112 if (LIKELY(list && list->numHwLayers > 1) &&
Saurabh Shahc4d034f2012-09-27 15:55:15 -0700113 ctx->dpyAttr[HWC_DISPLAY_EXTERNAL].isActive &&
114 ctx->dpyAttr[HWC_DISPLAY_EXTERNAL].connected) {
115
116 setListStats(ctx, list, HWC_DISPLAY_EXTERNAL);
117
118 uint32_t last = list->numHwLayers - 1;
119 hwc_layer_1_t *fblayer = &list->hwLayers[last];
120 if(UIMirrorOverlay::prepare(ctx, fblayer)) {
121 ctx->overlayInUse[HWC_DISPLAY_EXTERNAL] = true;
122 }
123
124 if(VideoOverlay::prepare(ctx, list, HWC_DISPLAY_EXTERNAL)) {
125 ctx->overlayInUse[HWC_DISPLAY_EXTERNAL] = true;
126 } else {
127 ctx->mOverlay[HWC_DISPLAY_EXTERNAL]->setState(ovutils::OV_UI_MIRROR);
128 }
Saurabh Shah3e858eb2012-09-17 16:53:21 -0700129 }
130 return 0;
Saurabh Shah649cda62012-09-16 16:05:58 -0700131}
132
Naseer Ahmed5b6708a2012-08-02 13:46:08 -0700133static int hwc_prepare(hwc_composer_device_1 *dev, size_t numDisplays,
134 hwc_display_contents_1_t** displays)
Naseer Ahmed29a26812012-06-14 00:56:20 -0700135{
Saurabh Shah3e858eb2012-09-17 16:53:21 -0700136 int ret = 0;
Naseer Ahmed29a26812012-06-14 00:56:20 -0700137 hwc_context_t* ctx = (hwc_context_t*)(dev);
Naseer Ahmedf48aef62012-07-20 09:05:53 -0700138
Saurabh Shah3e858eb2012-09-17 16:53:21 -0700139 reset(ctx, numDisplays);
Saurabh Shah56f610d2012-08-07 15:27:06 -0700140
141 //If securing of h/w in progress skip comp using overlay.
142 if(ctx->mSecuring == true) return 0;
143
Saurabh Shah9171ec62012-09-13 09:33:51 -0700144 for (uint32_t i = 0; i < numDisplays; i++) {
145 hwc_display_contents_1_t *list = displays[i];
Naseer Ahmed6282c952012-09-26 18:33:58 -0400146 if(list && list->numHwLayers) {
147 uint32_t last = list->numHwLayers - 1;
148 if(list->hwLayers[last].handle != NULL) {
149 switch(i) {
150 case HWC_DISPLAY_PRIMARY:
151 ret = hwc_prepare_primary(dev, list);
152 break;
153 case HWC_DISPLAY_EXTERNAL:
154 ret = hwc_prepare_external(dev, list);
155 break;
156 default:
157 ret = -EINVAL;
158 }
159 }
Naseer Ahmed29a26812012-06-14 00:56:20 -0700160 }
161 }
Saurabh Shah3e858eb2012-09-17 16:53:21 -0700162 return ret;
Naseer Ahmed29a26812012-06-14 00:56:20 -0700163}
164
Naseer Ahmed5b6708a2012-08-02 13:46:08 -0700165static int hwc_eventControl(struct hwc_composer_device_1* dev, int dpy,
Naseer Ahmed72cf9762012-07-21 12:17:13 -0700166 int event, int enabled)
167{
168 int ret = 0;
Naseer Ahmedff4f0252012-10-01 13:03:01 -0400169
Naseer Ahmed72cf9762012-07-21 12:17:13 -0700170 hwc_context_t* ctx = (hwc_context_t*)(dev);
171 private_module_t* m = reinterpret_cast<private_module_t*>(
172 ctx->mFbDev->common.module);
Iliyan Malcheveac89652012-10-04 10:38:28 -0700173 pthread_mutex_lock(&ctx->vstate.lock);
Naseer Ahmed72cf9762012-07-21 12:17:13 -0700174 switch(event) {
175 case HWC_EVENT_VSYNC:
Omprakash Dhyade1ef881c2012-10-03 02:26:55 -0700176 if (ctx->vstate.enable == enabled)
177 break;
Iliyan Malcheveac89652012-10-04 10:38:28 -0700178 ctx->vstate.enable = !!enabled;
Naseer Ahmedc7faa702012-10-04 15:10:30 -0400179 pthread_cond_signal(&ctx->vstate.cond);
Iliyan Malcheveac89652012-10-04 10:38:28 -0700180 ALOGD_IF (VSYNC_DEBUG, "VSYNC state changed to %s",
181 (enabled)?"ENABLED":"DISABLED");
182 break;
Naseer Ahmed72cf9762012-07-21 12:17:13 -0700183 default:
184 ret = -EINVAL;
185 }
Iliyan Malcheveac89652012-10-04 10:38:28 -0700186 pthread_mutex_unlock(&ctx->vstate.lock);
Naseer Ahmed72cf9762012-07-21 12:17:13 -0700187 return ret;
188}
189
Naseer Ahmed5b6708a2012-08-02 13:46:08 -0700190static int hwc_blank(struct hwc_composer_device_1* dev, int dpy, int blank)
191{
Naseer Ahmed934790c2012-08-16 18:11:09 -0700192 hwc_context_t* ctx = (hwc_context_t*)(dev);
193 private_module_t* m = reinterpret_cast<private_module_t*>(
194 ctx->mFbDev->common.module);
Saurabh Shah3e858eb2012-09-17 16:53:21 -0700195 int ret = 0;
196 ALOGD("%s: Doing Dpy=%d, blank=%d", __FUNCTION__, dpy, blank);
197 switch(dpy) {
198 case HWC_DISPLAY_PRIMARY:
199 if(blank) {
Naseer Ahmed32ff2252012-09-29 01:41:21 -0400200 Locker::Autolock _l(ctx->mBlankLock);
Saurabh Shahc4d034f2012-09-27 15:55:15 -0700201 ctx->mOverlay[dpy]->setState(ovutils::OV_CLOSED);
Saurabh Shah3e858eb2012-09-17 16:53:21 -0700202 ret = ioctl(m->framebuffer->fd, FBIOBLANK, FB_BLANK_POWERDOWN);
203 } else {
204 ret = ioctl(m->framebuffer->fd, FBIOBLANK, FB_BLANK_UNBLANK);
205 }
206 break;
207 case HWC_DISPLAY_EXTERNAL:
208 if(blank) {
209 //TODO actual
210 } else {
211 }
212 break;
213 default:
214 return -EINVAL;
Naseer Ahmed5b6708a2012-08-02 13:46:08 -0700215 }
Saurabh Shah3e858eb2012-09-17 16:53:21 -0700216
217 if(ret < 0) {
218 ALOGE("%s: failed. Dpy=%d, blank=%d : %s",
219 __FUNCTION__, dpy, blank, strerror(errno));
220 return ret;
221 }
222 ALOGD("%s: Done Dpy=%d, blank=%d", __FUNCTION__, dpy, blank);
223 ctx->dpyAttr[dpy].isActive = !blank;
Naseer Ahmed5b6708a2012-08-02 13:46:08 -0700224 return 0;
225}
226
227static int hwc_query(struct hwc_composer_device_1* dev,
Naseer Ahmed72cf9762012-07-21 12:17:13 -0700228 int param, int* value)
229{
230 hwc_context_t* ctx = (hwc_context_t*)(dev);
231 private_module_t* m = reinterpret_cast<private_module_t*>(
232 ctx->mFbDev->common.module);
Saurabh Shah3e858eb2012-09-17 16:53:21 -0700233 int supported = HWC_DISPLAY_PRIMARY_BIT;
Naseer Ahmed72cf9762012-07-21 12:17:13 -0700234
235 switch (param) {
236 case HWC_BACKGROUND_LAYER_SUPPORTED:
237 // Not supported for now
238 value[0] = 0;
239 break;
Saurabh Shah3e858eb2012-09-17 16:53:21 -0700240 case HWC_VSYNC_PERIOD: //Not used for hwc > 1.1
Saurabh Shah2e2798c2012-08-30 14:47:10 -0700241 value[0] = m->fps;
Naseer Ahmed72cf9762012-07-21 12:17:13 -0700242 ALOGI("fps: %d", value[0]);
243 break;
Saurabh Shah3e858eb2012-09-17 16:53:21 -0700244 case HWC_DISPLAY_TYPES_SUPPORTED:
Saurabh Shahc4d034f2012-09-27 15:55:15 -0700245 if(ctx->mMDP.hasOverlay)
246 supported |= HWC_DISPLAY_EXTERNAL_BIT;
Saurabh Shah3e858eb2012-09-17 16:53:21 -0700247 value[0] = supported;
248 break;
Naseer Ahmed72cf9762012-07-21 12:17:13 -0700249 default:
250 return -EINVAL;
251 }
252 return 0;
253
254}
255
Saurabh Shah3e858eb2012-09-17 16:53:21 -0700256static int hwc_set_primary(hwc_context_t *ctx, hwc_display_contents_1_t* list) {
Saurabh Shahc4d034f2012-09-27 15:55:15 -0700257 if(!ctx->overlayInUse[HWC_DISPLAY_PRIMARY])
258 ctx->mOverlay[HWC_DISPLAY_PRIMARY]->setState(ovutils::OV_CLOSED);
259
Saurabh Shahae823e72012-10-05 00:08:11 -0400260 if (LIKELY(list && list->numHwLayers > 1) &&
261 ctx->dpyAttr[HWC_DISPLAY_PRIMARY].isActive) {
Saurabh Shahc4d034f2012-09-27 15:55:15 -0700262 uint32_t last = list->numHwLayers - 1;
263 hwc_layer_1_t *fbLayer = &list->hwLayers[last];
264
Saurabh Shah8c8bfd22012-09-26 21:09:40 -0700265 hwc_sync(ctx, list, HWC_DISPLAY_PRIMARY);
266
Saurabh Shah3e858eb2012-09-17 16:53:21 -0700267 VideoOverlay::draw(ctx, list, HWC_DISPLAY_PRIMARY);
268 MDPComp::draw(ctx, list);
Saurabh Shahc4d034f2012-09-27 15:55:15 -0700269
Saurabh Shah3e858eb2012-09-17 16:53:21 -0700270 //TODO We dont check for SKIP flag on this layer because we need PAN
271 //always. Last layer is always FB
Saurabh Shah3e858eb2012-09-17 16:53:21 -0700272 if(list->hwLayers[last].compositionType == HWC_FRAMEBUFFER_TARGET) {
Saurabh Shahc4d034f2012-09-27 15:55:15 -0700273 ctx->mFbDev->post(ctx->mFbDev, fbLayer->handle);
Saurabh Shah3e858eb2012-09-17 16:53:21 -0700274 }
275 }
276 return 0;
277}
278
279static int hwc_set_external(hwc_context_t *ctx,
280 hwc_display_contents_1_t* list) {
Kinjal Bhavsarf83d4482012-10-10 15:56:21 -0700281 Locker::Autolock _l(ctx->mExtSetLock);
Saurabh Shahc4d034f2012-09-27 15:55:15 -0700282 if(!ctx->overlayInUse[HWC_DISPLAY_EXTERNAL])
283 ctx->mOverlay[HWC_DISPLAY_EXTERNAL]->setState(ovutils::OV_CLOSED);
284
Saurabh Shahae823e72012-10-05 00:08:11 -0400285 if (LIKELY(list && list->numHwLayers > 1) &&
Saurabh Shahc4d034f2012-09-27 15:55:15 -0700286 ctx->dpyAttr[HWC_DISPLAY_EXTERNAL].isActive &&
287 ctx->dpyAttr[HWC_DISPLAY_EXTERNAL].connected) {
Saurabh Shah3e858eb2012-09-17 16:53:21 -0700288 uint32_t last = list->numHwLayers - 1;
Saurabh Shahc4d034f2012-09-27 15:55:15 -0700289 hwc_layer_1_t *fbLayer = &list->hwLayers[last];
290
291 hwc_sync(ctx, list, HWC_DISPLAY_EXTERNAL);
292
293 VideoOverlay::draw(ctx, list, HWC_DISPLAY_EXTERNAL);
294
295 private_handle_t *hnd = (private_handle_t *)fbLayer->handle;
Saurabh Shah150806a2012-10-09 15:38:23 -0700296 if(fbLayer->compositionType == HWC_FRAMEBUFFER_TARGET &&
297 !(fbLayer->flags & HWC_SKIP_LAYER) && hnd) {
Saurabh Shahc4d034f2012-09-27 15:55:15 -0700298 UIMirrorOverlay::draw(ctx, fbLayer);
Saurabh Shah3e858eb2012-09-17 16:53:21 -0700299 }
Saurabh Shah150806a2012-10-09 15:38:23 -0700300 ctx->mExtDisplay->post();
Saurabh Shah3e858eb2012-09-17 16:53:21 -0700301 }
302 return 0;
303}
304
Naseer Ahmed5b6708a2012-08-02 13:46:08 -0700305static int hwc_set(hwc_composer_device_1 *dev,
306 size_t numDisplays,
307 hwc_display_contents_1_t** displays)
Naseer Ahmed29a26812012-06-14 00:56:20 -0700308{
309 int ret = 0;
310 hwc_context_t* ctx = (hwc_context_t*)(dev);
Naseer Ahmed32ff2252012-09-29 01:41:21 -0400311 Locker::Autolock _l(ctx->mBlankLock);
Saurabh Shahc4d034f2012-09-27 15:55:15 -0700312
Saurabh Shah3e858eb2012-09-17 16:53:21 -0700313 for (uint32_t i = 0; i < numDisplays; i++) {
Naseer Ahmed5b6708a2012-08-02 13:46:08 -0700314 hwc_display_contents_1_t* list = displays[i];
Saurabh Shah3e858eb2012-09-17 16:53:21 -0700315 switch(i) {
316 case HWC_DISPLAY_PRIMARY:
317 ret = hwc_set_primary(ctx, list);
Saurabh Shahc4d034f2012-09-27 15:55:15 -0700318 break;
Saurabh Shah3e858eb2012-09-17 16:53:21 -0700319 case HWC_DISPLAY_EXTERNAL:
320 ret = hwc_set_external(ctx, list);
Saurabh Shahc4d034f2012-09-27 15:55:15 -0700321 break;
Saurabh Shah3e858eb2012-09-17 16:53:21 -0700322 default:
323 ret = -EINVAL;
Naseer Ahmed5b6708a2012-08-02 13:46:08 -0700324 }
Naseer Ahmed29a26812012-06-14 00:56:20 -0700325 }
Naseer Ahmed29a26812012-06-14 00:56:20 -0700326 return ret;
327}
328
Saurabh Shah3e858eb2012-09-17 16:53:21 -0700329int hwc_getDisplayConfigs(struct hwc_composer_device_1* dev, int disp,
330 uint32_t* configs, size_t* numConfigs) {
331 int ret = 0;
Saurabh Shahc4d034f2012-09-27 15:55:15 -0700332 hwc_context_t* ctx = (hwc_context_t*)(dev);
Saurabh Shah3e858eb2012-09-17 16:53:21 -0700333 //in 1.1 there is no way to choose a config, report as config id # 0
334 //This config is passed to getDisplayAttributes. Ignore for now.
Saurabh Shah3e858eb2012-09-17 16:53:21 -0700335 switch(disp) {
336 case HWC_DISPLAY_PRIMARY:
Saurabh Shahc4d034f2012-09-27 15:55:15 -0700337 if(*numConfigs > 0) {
338 configs[0] = 0;
339 *numConfigs = 1;
340 }
341 ret = 0; //NO_ERROR
Saurabh Shah3e858eb2012-09-17 16:53:21 -0700342 break;
343 case HWC_DISPLAY_EXTERNAL:
Saurabh Shahc4d034f2012-09-27 15:55:15 -0700344 ret = -1; //Not connected
345 if(ctx->dpyAttr[HWC_DISPLAY_EXTERNAL].connected) {
346 ret = 0; //NO_ERROR
347 if(*numConfigs > 0) {
348 configs[0] = 0;
349 *numConfigs = 1;
350 }
351 }
Saurabh Shah3e858eb2012-09-17 16:53:21 -0700352 break;
353 }
354 return ret;
355}
356
357int hwc_getDisplayAttributes(struct hwc_composer_device_1* dev, int disp,
358 uint32_t config, const uint32_t* attributes, int32_t* values) {
359
360 hwc_context_t* ctx = (hwc_context_t*)(dev);
Saurabh Shahc4d034f2012-09-27 15:55:15 -0700361 //If hotpluggable displays are inactive return error
362 if(disp == HWC_DISPLAY_EXTERNAL && !ctx->dpyAttr[disp].connected) {
363 return -1;
364 }
365
Saurabh Shah3e858eb2012-09-17 16:53:21 -0700366 //From HWComposer
367 static const uint32_t DISPLAY_ATTRIBUTES[] = {
368 HWC_DISPLAY_VSYNC_PERIOD,
369 HWC_DISPLAY_WIDTH,
370 HWC_DISPLAY_HEIGHT,
371 HWC_DISPLAY_DPI_X,
372 HWC_DISPLAY_DPI_Y,
373 HWC_DISPLAY_NO_ATTRIBUTE,
374 };
375
376 const int NUM_DISPLAY_ATTRIBUTES = (sizeof(DISPLAY_ATTRIBUTES) /
377 sizeof(DISPLAY_ATTRIBUTES)[0]);
378
379 for (size_t i = 0; i < NUM_DISPLAY_ATTRIBUTES - 1; i++) {
380 switch (attributes[i]) {
381 case HWC_DISPLAY_VSYNC_PERIOD:
382 values[i] = ctx->dpyAttr[disp].vsync_period;
383 break;
384 case HWC_DISPLAY_WIDTH:
385 values[i] = ctx->dpyAttr[disp].xres;
Saurabh Shahc4d034f2012-09-27 15:55:15 -0700386 ALOGD("%s disp = %d, width = %d",__FUNCTION__, disp,
387 ctx->dpyAttr[disp].xres);
Saurabh Shah3e858eb2012-09-17 16:53:21 -0700388 break;
389 case HWC_DISPLAY_HEIGHT:
390 values[i] = ctx->dpyAttr[disp].yres;
Saurabh Shahc4d034f2012-09-27 15:55:15 -0700391 ALOGD("%s disp = %d, height = %d",__FUNCTION__, disp,
392 ctx->dpyAttr[disp].yres);
Saurabh Shah3e858eb2012-09-17 16:53:21 -0700393 break;
394 case HWC_DISPLAY_DPI_X:
Naseer Ahmed7b80d9c2012-09-26 20:14:38 -0400395 values[i] = (int32_t) (ctx->dpyAttr[disp].xdpi*1000.0);
Saurabh Shah3e858eb2012-09-17 16:53:21 -0700396 break;
397 case HWC_DISPLAY_DPI_Y:
Naseer Ahmed7b80d9c2012-09-26 20:14:38 -0400398 values[i] = (int32_t) (ctx->dpyAttr[disp].ydpi*1000.0);
Saurabh Shah3e858eb2012-09-17 16:53:21 -0700399 break;
400 default:
401 ALOGE("Unknown display attribute %d",
402 attributes[i]);
403 return -EINVAL;
404 }
405 }
406 return 0;
407}
408
Naseer Ahmed29a26812012-06-14 00:56:20 -0700409static int hwc_device_close(struct hw_device_t *dev)
410{
411 if(!dev) {
Naseer Ahmed72cf9762012-07-21 12:17:13 -0700412 ALOGE("%s: NULL device pointer", __FUNCTION__);
Naseer Ahmed29a26812012-06-14 00:56:20 -0700413 return -1;
414 }
415 closeContext((hwc_context_t*)dev);
416 free(dev);
417
418 return 0;
419}
420
421static int hwc_device_open(const struct hw_module_t* module, const char* name,
422 struct hw_device_t** device)
423{
424 int status = -EINVAL;
425
426 if (!strcmp(name, HWC_HARDWARE_COMPOSER)) {
427 struct hwc_context_t *dev;
428 dev = (hwc_context_t*)malloc(sizeof(*dev));
429 memset(dev, 0, sizeof(*dev));
Naseer Ahmed72cf9762012-07-21 12:17:13 -0700430
431 //Initialize hwc context
Naseer Ahmed29a26812012-06-14 00:56:20 -0700432 initContext(dev);
Naseer Ahmed72cf9762012-07-21 12:17:13 -0700433
434 //Setup HWC methods
Saurabh Shah3e858eb2012-09-17 16:53:21 -0700435 dev->device.common.tag = HARDWARE_DEVICE_TAG;
436 dev->device.common.version = HWC_DEVICE_API_VERSION_1_1;
437 dev->device.common.module = const_cast<hw_module_t*>(module);
438 dev->device.common.close = hwc_device_close;
439 dev->device.prepare = hwc_prepare;
440 dev->device.set = hwc_set;
441 dev->device.eventControl = hwc_eventControl;
442 dev->device.blank = hwc_blank;
443 dev->device.query = hwc_query;
444 dev->device.registerProcs = hwc_registerProcs;
445 dev->device.dump = NULL;
446 dev->device.getDisplayConfigs = hwc_getDisplayConfigs;
447 dev->device.getDisplayAttributes = hwc_getDisplayAttributes;
448 *device = &dev->device.common;
Naseer Ahmed29a26812012-06-14 00:56:20 -0700449 status = 0;
450 }
451 return status;
452}