blob: 48cb165e075cf2695a8212b526fbecb3f872bdc0 [file] [log] [blame]
Naseer Ahmedf48aef62012-07-20 09:05:53 -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 Ahmedf48aef62012-07-20 09:05:53 -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
Naseer Ahmed72cf9762012-07-21 12:17:13 -070018#define VIDEO_DEBUG 0
19#include <overlay.h>
Naseer Ahmedf48aef62012-07-20 09:05:53 -070020#include "hwc_video.h"
Saurabh Shah3e858eb2012-09-17 16:53:21 -070021#include "hwc_utils.h"
Naseer Ahmedf48aef62012-07-20 09:05:53 -070022
23namespace qhwc {
24
Naseer Ahmed758bfc52012-11-28 17:02:08 -050025namespace ovutils = overlay::utils;
Naseer Ahmedf48aef62012-07-20 09:05:53 -070026
27//Static Members
Saurabh Shahc4d034f2012-09-27 15:55:15 -070028bool VideoOverlay::sIsModeOn[] = {false};
Naseer Ahmed758bfc52012-11-28 17:02:08 -050029ovutils::eDest VideoOverlay::sDest[] = {ovutils::OV_INVALID};
Naseer Ahmedf48aef62012-07-20 09:05:53 -070030
31//Cache stats, figure out the state, config overlay
Saurabh Shah3e858eb2012-09-17 16:53:21 -070032bool VideoOverlay::prepare(hwc_context_t *ctx, hwc_display_contents_1_t *list,
33 int dpy) {
Saurabh Shahc4d034f2012-09-27 15:55:15 -070034
Saurabh Shah3e858eb2012-09-17 16:53:21 -070035 int yuvIndex = ctx->listStats[dpy].yuvIndex;
Saurabh Shahc4d034f2012-09-27 15:55:15 -070036 sIsModeOn[dpy] = false;
Saurabh Shah3e858eb2012-09-17 16:53:21 -070037
Naseer Ahmed96c4c952012-07-25 18:27:14 -070038 if(!ctx->mMDP.hasOverlay) {
Naseer Ahmed31da0b12012-07-31 18:55:33 -070039 ALOGD_IF(VIDEO_DEBUG,"%s, this hw doesnt support overlay", __FUNCTION__);
40 return false;
41 }
Saurabh Shahc4d034f2012-09-27 15:55:15 -070042
Naseer Ahmed54821fe2012-11-28 18:44:38 -050043 if(isSecuring(ctx)) {
44 ALOGD_IF(VIDEO_DEBUG,"%s: MDP Secure is active", __FUNCTION__);
45 return false;
46 }
47
Saurabh Shahc4d034f2012-09-27 15:55:15 -070048 if(yuvIndex == -1 || ctx->listStats[dpy].yuvCount != 1) {
Naseer Ahmed2cc53dd2012-07-31 19:11:48 -070049 return false;
50 }
Naseer Ahmed4c588a22012-07-31 19:12:17 -070051
Saurabh Shah3e858eb2012-09-17 16:53:21 -070052 //index guaranteed to be not -1 at this point
Naseer Ahmed758bfc52012-11-28 17:02:08 -050053 hwc_layer_1_t *layer = &list->hwLayers[yuvIndex];
Naseer Ahmed68b88cf2012-10-02 14:15:12 -040054
Naseer Ahmed758bfc52012-11-28 17:02:08 -050055 private_handle_t *hnd = (private_handle_t *)layer->handle;
Naseer Ahmed68b88cf2012-10-02 14:15:12 -040056 if(ctx->mSecureMode) {
Naseer Ahmed68b88cf2012-10-02 14:15:12 -040057 if (! isSecureBuffer(hnd)) {
58 ALOGD_IF(VIDEO_DEBUG, "%s: Handle non-secure video layer"
59 "during secure playback gracefully", __FUNCTION__);
60 return false;
61 }
Naseer Ahmedcb5f25b2012-10-04 15:56:00 -040062 } else {
63 if (isSecureBuffer(hnd)) {
64 ALOGD_IF(VIDEO_DEBUG, "%s: Handle secure video layer"
65 "during non-secure playback gracefully", __FUNCTION__);
66 return false;
67 }
Naseer Ahmed68b88cf2012-10-02 14:15:12 -040068 }
Naseer Ahmed758bfc52012-11-28 17:02:08 -050069 if(configure(ctx, dpy, layer)) {
70 markFlags(layer);
Saurabh Shahc4d034f2012-09-27 15:55:15 -070071 sIsModeOn[dpy] = true;
Naseer Ahmedf48aef62012-07-20 09:05:53 -070072 }
73
Saurabh Shahc4d034f2012-09-27 15:55:15 -070074 return sIsModeOn[dpy];
Naseer Ahmedf48aef62012-07-20 09:05:53 -070075}
76
Naseer Ahmed758bfc52012-11-28 17:02:08 -050077void VideoOverlay::markFlags(hwc_layer_1_t *layer) {
78 if(layer) {
79 layer->compositionType = HWC_OVERLAY;
80 layer->hints |= HWC_HINT_CLEAR_FB;
Naseer Ahmedf48aef62012-07-20 09:05:53 -070081 }
82}
83
Naseer Ahmed758bfc52012-11-28 17:02:08 -050084bool VideoOverlay::configure(hwc_context_t *ctx, int dpy,
85 hwc_layer_1_t *layer) {
86 overlay::Overlay& ov = *(ctx->mOverlay);
Naseer Ahmed2cc53dd2012-07-31 19:11:48 -070087 private_handle_t *hnd = (private_handle_t *)layer->handle;
88 ovutils::Whf info(hnd->width, hnd->height, hnd->format, hnd->size);
Naseer Ahmedf48aef62012-07-20 09:05:53 -070089
Naseer Ahmed758bfc52012-11-28 17:02:08 -050090 //Request a VG pipe
91 ovutils::eDest dest = ov.nextPipe(ovutils::OV_MDP_PIPE_VG, dpy);
92 if(dest == ovutils::OV_INVALID) { //None available
93 return false;
94 }
95
96 sDest[dpy] = dest;
97
Naseer Ahmed2cc53dd2012-07-31 19:11:48 -070098 ovutils::eMdpFlags mdpFlags = ovutils::OV_MDP_FLAGS_NONE;
Saurabh Shah3e858eb2012-09-17 16:53:21 -070099 if (isSecureBuffer(hnd)) {
Naseer Ahmed2cc53dd2012-07-31 19:11:48 -0700100 ovutils::setMdpFlags(mdpFlags,
101 ovutils::OV_MDP_SECURE_OVERLAY_SESSION);
102 }
Naseer Ahmedf48aef62012-07-20 09:05:53 -0700103
Saurabh Shah91a6a992012-08-20 15:25:28 -0700104 if(layer->blending == HWC_BLENDING_PREMULT) {
105 ovutils::setMdpFlags(mdpFlags,
106 ovutils::OV_MDP_BLEND_FG_PREMULT);
107 }
108
Naseer Ahmed2cc53dd2012-07-31 19:11:48 -0700109 ovutils::eIsFg isFgFlag = ovutils::IS_FG_OFF;
Naseer Ahmed758bfc52012-11-28 17:02:08 -0500110 if (ctx->listStats[dpy].numAppLayers == 1) {
Naseer Ahmed2cc53dd2012-07-31 19:11:48 -0700111 isFgFlag = ovutils::IS_FG_SET;
112 }
Naseer Ahmedf48aef62012-07-20 09:05:53 -0700113
Naseer Ahmed2cc53dd2012-07-31 19:11:48 -0700114 ovutils::PipeArgs parg(mdpFlags,
115 info,
Naseer Ahmed54821fe2012-11-28 18:44:38 -0500116 ovutils::ZORDER_1,
Naseer Ahmed2cc53dd2012-07-31 19:11:48 -0700117 isFgFlag,
118 ovutils::ROT_FLAG_DISABLED);
Naseer Ahmedf48aef62012-07-20 09:05:53 -0700119
Naseer Ahmed758bfc52012-11-28 17:02:08 -0500120 ov.setSource(parg, dest);
121
122 int transform = layer->transform;
Saurabh Shah27c1d652012-08-14 19:30:28 -0700123 ovutils::eTransform orient =
124 static_cast<ovutils::eTransform>(transform);
125
Naseer Ahmed2cc53dd2012-07-31 19:11:48 -0700126 hwc_rect_t sourceCrop = layer->sourceCrop;
Naseer Ahmed2cc53dd2012-07-31 19:11:48 -0700127 hwc_rect_t displayFrame = layer->displayFrame;
Naseer Ahmedf48aef62012-07-20 09:05:53 -0700128
Naseer Ahmed2cc53dd2012-07-31 19:11:48 -0700129 //Calculate the rect for primary based on whether the supplied position
130 //is within or outside bounds.
Naseer Ahmed758bfc52012-11-28 17:02:08 -0500131 const int fbWidth = ctx->dpyAttr[dpy].xres;
132 const int fbHeight = ctx->dpyAttr[dpy].yres;
Naseer Ahmedf48aef62012-07-20 09:05:53 -0700133
Naseer Ahmed2cc53dd2012-07-31 19:11:48 -0700134 if( displayFrame.left < 0 ||
Naseer Ahmedf48aef62012-07-20 09:05:53 -0700135 displayFrame.top < 0 ||
136 displayFrame.right > fbWidth ||
137 displayFrame.bottom > fbHeight) {
Saurabh Shah27c1d652012-08-14 19:30:28 -0700138 calculate_crop_rects(sourceCrop, displayFrame, fbWidth, fbHeight,
139 transform);
Naseer Ahmedf48aef62012-07-20 09:05:53 -0700140 }
Naseer Ahmed2cc53dd2012-07-31 19:11:48 -0700141
Saurabh Shah1023ce22012-09-05 18:45:59 -0700142 // source crop x,y,w,h
143 ovutils::Dim dcrop(sourceCrop.left, sourceCrop.top,
144 sourceCrop.right - sourceCrop.left,
145 sourceCrop.bottom - sourceCrop.top);
Naseer Ahmed2cc53dd2012-07-31 19:11:48 -0700146 //Only for Primary
Naseer Ahmed758bfc52012-11-28 17:02:08 -0500147 ov.setCrop(dcrop, dest);
Naseer Ahmed2cc53dd2012-07-31 19:11:48 -0700148
Naseer Ahmed758bfc52012-11-28 17:02:08 -0500149 ov.setTransform(orient, dest);
Naseer Ahmed2cc53dd2012-07-31 19:11:48 -0700150
Saurabh Shah1023ce22012-09-05 18:45:59 -0700151 // position x,y,w,h
152 ovutils::Dim dpos(displayFrame.left,
153 displayFrame.top,
154 displayFrame.right - displayFrame.left,
155 displayFrame.bottom - displayFrame.top);
Naseer Ahmed758bfc52012-11-28 17:02:08 -0500156 ov.setPosition(dpos, dest);
Naseer Ahmed2cc53dd2012-07-31 19:11:48 -0700157
Naseer Ahmed758bfc52012-11-28 17:02:08 -0500158 if (!ov.commit(dest)) {
Naseer Ahmed2cc53dd2012-07-31 19:11:48 -0700159 ALOGE("%s: commit fails", __FUNCTION__);
160 return false;
161 }
162 return true;
163}
164
Saurabh Shah3e858eb2012-09-17 16:53:21 -0700165bool VideoOverlay::draw(hwc_context_t *ctx, hwc_display_contents_1_t *list,
166 int dpy)
Naseer Ahmedf48aef62012-07-20 09:05:53 -0700167{
Saurabh Shahc4d034f2012-09-27 15:55:15 -0700168 if(!sIsModeOn[dpy]) {
169 return true;
170 }
171
Saurabh Shah3e858eb2012-09-17 16:53:21 -0700172 int yuvIndex = ctx->listStats[dpy].yuvIndex;
Saurabh Shahc4d034f2012-09-27 15:55:15 -0700173 if(yuvIndex == -1) {
Naseer Ahmedf48aef62012-07-20 09:05:53 -0700174 return true;
175 }
176
Naseer Ahmed4c588a22012-07-31 19:12:17 -0700177 private_handle_t *hnd = (private_handle_t *)
Saurabh Shah3e858eb2012-09-17 16:53:21 -0700178 list->hwLayers[yuvIndex].handle;
Naseer Ahmed4c588a22012-07-31 19:12:17 -0700179
Naseer Ahmedf48aef62012-07-20 09:05:53 -0700180 bool ret = true;
Naseer Ahmed758bfc52012-11-28 17:02:08 -0500181 overlay::Overlay& ov = *(ctx->mOverlay);
Naseer Ahmedf48aef62012-07-20 09:05:53 -0700182
Naseer Ahmed758bfc52012-11-28 17:02:08 -0500183 if (!ov.queueBuffer(hnd->fd, hnd->offset,
184 sDest[dpy])) {
185 ALOGE("%s: queueBuffer failed for dpy=%d", __FUNCTION__, dpy);
186 ret = false;
Naseer Ahmedf48aef62012-07-20 09:05:53 -0700187 }
Naseer Ahmed758bfc52012-11-28 17:02:08 -0500188
Naseer Ahmedf48aef62012-07-20 09:05:53 -0700189 return ret;
190}
191
Naseer Ahmedf48aef62012-07-20 09:05:53 -0700192}; //namespace qhwc