blob: 17845937890507df6a92e7be8fbe5cc068d3d2c3 [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"
Ramkumar Radhakrishnan47573e22012-11-07 11:36:41 -080022#include "qdMetaData.h"
Naseer Ahmedf48aef62012-07-20 09:05:53 -070023
24namespace qhwc {
25
Naseer Ahmed758bfc52012-11-28 17:02:08 -050026namespace ovutils = overlay::utils;
Naseer Ahmedf48aef62012-07-20 09:05:53 -070027
28//Static Members
Saurabh Shahc4d034f2012-09-27 15:55:15 -070029bool VideoOverlay::sIsModeOn[] = {false};
Naseer Ahmed758bfc52012-11-28 17:02:08 -050030ovutils::eDest VideoOverlay::sDest[] = {ovutils::OV_INVALID};
Naseer Ahmedf48aef62012-07-20 09:05:53 -070031
32//Cache stats, figure out the state, config overlay
Saurabh Shah3e858eb2012-09-17 16:53:21 -070033bool VideoOverlay::prepare(hwc_context_t *ctx, hwc_display_contents_1_t *list,
34 int dpy) {
Saurabh Shahc4d034f2012-09-27 15:55:15 -070035
Saurabh Shah3e858eb2012-09-17 16:53:21 -070036 int yuvIndex = ctx->listStats[dpy].yuvIndex;
Saurabh Shahc4d034f2012-09-27 15:55:15 -070037 sIsModeOn[dpy] = false;
Saurabh Shah3e858eb2012-09-17 16:53:21 -070038
Naseer Ahmed96c4c952012-07-25 18:27:14 -070039 if(!ctx->mMDP.hasOverlay) {
Naseer Ahmed31da0b12012-07-31 18:55:33 -070040 ALOGD_IF(VIDEO_DEBUG,"%s, this hw doesnt support overlay", __FUNCTION__);
41 return false;
42 }
Saurabh Shahc4d034f2012-09-27 15:55:15 -070043
Naseer Ahmed54821fe2012-11-28 18:44:38 -050044 if(isSecuring(ctx)) {
45 ALOGD_IF(VIDEO_DEBUG,"%s: MDP Secure is active", __FUNCTION__);
46 return false;
47 }
48
Saurabh Shahc4d034f2012-09-27 15:55:15 -070049 if(yuvIndex == -1 || ctx->listStats[dpy].yuvCount != 1) {
Naseer Ahmed2cc53dd2012-07-31 19:11:48 -070050 return false;
51 }
Naseer Ahmed4c588a22012-07-31 19:12:17 -070052
Saurabh Shah3e858eb2012-09-17 16:53:21 -070053 //index guaranteed to be not -1 at this point
Naseer Ahmed758bfc52012-11-28 17:02:08 -050054 hwc_layer_1_t *layer = &list->hwLayers[yuvIndex];
Naseer Ahmed68b88cf2012-10-02 14:15:12 -040055
Naseer Ahmed758bfc52012-11-28 17:02:08 -050056 private_handle_t *hnd = (private_handle_t *)layer->handle;
Naseer Ahmed68b88cf2012-10-02 14:15:12 -040057 if(ctx->mSecureMode) {
Naseer Ahmed68b88cf2012-10-02 14:15:12 -040058 if (! isSecureBuffer(hnd)) {
59 ALOGD_IF(VIDEO_DEBUG, "%s: Handle non-secure video layer"
60 "during secure playback gracefully", __FUNCTION__);
61 return false;
62 }
Naseer Ahmedcb5f25b2012-10-04 15:56:00 -040063 } else {
64 if (isSecureBuffer(hnd)) {
65 ALOGD_IF(VIDEO_DEBUG, "%s: Handle secure video layer"
66 "during non-secure playback gracefully", __FUNCTION__);
67 return false;
68 }
Naseer Ahmed68b88cf2012-10-02 14:15:12 -040069 }
Naseer Ahmed758bfc52012-11-28 17:02:08 -050070 if(configure(ctx, dpy, layer)) {
71 markFlags(layer);
Saurabh Shahc4d034f2012-09-27 15:55:15 -070072 sIsModeOn[dpy] = true;
Naseer Ahmedf48aef62012-07-20 09:05:53 -070073 }
74
Saurabh Shahc4d034f2012-09-27 15:55:15 -070075 return sIsModeOn[dpy];
Naseer Ahmedf48aef62012-07-20 09:05:53 -070076}
77
Naseer Ahmed758bfc52012-11-28 17:02:08 -050078void VideoOverlay::markFlags(hwc_layer_1_t *layer) {
79 if(layer) {
80 layer->compositionType = HWC_OVERLAY;
81 layer->hints |= HWC_HINT_CLEAR_FB;
Naseer Ahmedf48aef62012-07-20 09:05:53 -070082 }
83}
84
Naseer Ahmed758bfc52012-11-28 17:02:08 -050085bool VideoOverlay::configure(hwc_context_t *ctx, int dpy,
86 hwc_layer_1_t *layer) {
87 overlay::Overlay& ov = *(ctx->mOverlay);
Naseer Ahmed2cc53dd2012-07-31 19:11:48 -070088 private_handle_t *hnd = (private_handle_t *)layer->handle;
89 ovutils::Whf info(hnd->width, hnd->height, hnd->format, hnd->size);
Naseer Ahmedf48aef62012-07-20 09:05:53 -070090
Naseer Ahmed758bfc52012-11-28 17:02:08 -050091 //Request a VG pipe
92 ovutils::eDest dest = ov.nextPipe(ovutils::OV_MDP_PIPE_VG, dpy);
93 if(dest == ovutils::OV_INVALID) { //None available
94 return false;
95 }
96
97 sDest[dpy] = dest;
98
Naseer Ahmed2cc53dd2012-07-31 19:11:48 -070099 ovutils::eMdpFlags mdpFlags = ovutils::OV_MDP_FLAGS_NONE;
Saurabh Shah3e858eb2012-09-17 16:53:21 -0700100 if (isSecureBuffer(hnd)) {
Naseer Ahmed2cc53dd2012-07-31 19:11:48 -0700101 ovutils::setMdpFlags(mdpFlags,
102 ovutils::OV_MDP_SECURE_OVERLAY_SESSION);
103 }
Naseer Ahmedf48aef62012-07-20 09:05:53 -0700104
Saurabh Shah91a6a992012-08-20 15:25:28 -0700105 if(layer->blending == HWC_BLENDING_PREMULT) {
106 ovutils::setMdpFlags(mdpFlags,
107 ovutils::OV_MDP_BLEND_FG_PREMULT);
108 }
109
Ramkumar Radhakrishnan47573e22012-11-07 11:36:41 -0800110 MetaData_t *metadata = (MetaData_t *)hnd->base_metadata;
111 if ((metadata->operation & PP_PARAM_INTERLACED) && metadata->interlaced) {
112 ovutils::setMdpFlags(mdpFlags, ovutils::OV_MDP_DEINTERLACE);
113 }
114
Naseer Ahmed2cc53dd2012-07-31 19:11:48 -0700115 ovutils::eIsFg isFgFlag = ovutils::IS_FG_OFF;
Naseer Ahmed758bfc52012-11-28 17:02:08 -0500116 if (ctx->listStats[dpy].numAppLayers == 1) {
Naseer Ahmed2cc53dd2012-07-31 19:11:48 -0700117 isFgFlag = ovutils::IS_FG_SET;
118 }
Naseer Ahmedf48aef62012-07-20 09:05:53 -0700119
Naseer Ahmed2cc53dd2012-07-31 19:11:48 -0700120 ovutils::PipeArgs parg(mdpFlags,
121 info,
Naseer Ahmed54821fe2012-11-28 18:44:38 -0500122 ovutils::ZORDER_1,
Naseer Ahmed2cc53dd2012-07-31 19:11:48 -0700123 isFgFlag,
124 ovutils::ROT_FLAG_DISABLED);
Naseer Ahmedf48aef62012-07-20 09:05:53 -0700125
Naseer Ahmed758bfc52012-11-28 17:02:08 -0500126 ov.setSource(parg, dest);
127
128 int transform = layer->transform;
Saurabh Shah27c1d652012-08-14 19:30:28 -0700129 ovutils::eTransform orient =
130 static_cast<ovutils::eTransform>(transform);
131
Naseer Ahmed2cc53dd2012-07-31 19:11:48 -0700132 hwc_rect_t sourceCrop = layer->sourceCrop;
Naseer Ahmed2cc53dd2012-07-31 19:11:48 -0700133 hwc_rect_t displayFrame = layer->displayFrame;
Naseer Ahmedf48aef62012-07-20 09:05:53 -0700134
Naseer Ahmed2cc53dd2012-07-31 19:11:48 -0700135 //Calculate the rect for primary based on whether the supplied position
136 //is within or outside bounds.
Naseer Ahmed758bfc52012-11-28 17:02:08 -0500137 const int fbWidth = ctx->dpyAttr[dpy].xres;
138 const int fbHeight = ctx->dpyAttr[dpy].yres;
Naseer Ahmedf48aef62012-07-20 09:05:53 -0700139
Naseer Ahmed2cc53dd2012-07-31 19:11:48 -0700140 if( displayFrame.left < 0 ||
Naseer Ahmedf48aef62012-07-20 09:05:53 -0700141 displayFrame.top < 0 ||
142 displayFrame.right > fbWidth ||
143 displayFrame.bottom > fbHeight) {
Saurabh Shah27c1d652012-08-14 19:30:28 -0700144 calculate_crop_rects(sourceCrop, displayFrame, fbWidth, fbHeight,
145 transform);
Naseer Ahmedf48aef62012-07-20 09:05:53 -0700146 }
Naseer Ahmed2cc53dd2012-07-31 19:11:48 -0700147
Saurabh Shah1023ce22012-09-05 18:45:59 -0700148 // source crop x,y,w,h
149 ovutils::Dim dcrop(sourceCrop.left, sourceCrop.top,
150 sourceCrop.right - sourceCrop.left,
151 sourceCrop.bottom - sourceCrop.top);
Naseer Ahmed2cc53dd2012-07-31 19:11:48 -0700152 //Only for Primary
Naseer Ahmed758bfc52012-11-28 17:02:08 -0500153 ov.setCrop(dcrop, dest);
Naseer Ahmed2cc53dd2012-07-31 19:11:48 -0700154
Naseer Ahmed758bfc52012-11-28 17:02:08 -0500155 ov.setTransform(orient, dest);
Naseer Ahmed2cc53dd2012-07-31 19:11:48 -0700156
Saurabh Shah1023ce22012-09-05 18:45:59 -0700157 // position x,y,w,h
158 ovutils::Dim dpos(displayFrame.left,
159 displayFrame.top,
160 displayFrame.right - displayFrame.left,
161 displayFrame.bottom - displayFrame.top);
Naseer Ahmed758bfc52012-11-28 17:02:08 -0500162 ov.setPosition(dpos, dest);
Naseer Ahmed2cc53dd2012-07-31 19:11:48 -0700163
Naseer Ahmed758bfc52012-11-28 17:02:08 -0500164 if (!ov.commit(dest)) {
Naseer Ahmed2cc53dd2012-07-31 19:11:48 -0700165 ALOGE("%s: commit fails", __FUNCTION__);
166 return false;
167 }
168 return true;
169}
170
Saurabh Shah3e858eb2012-09-17 16:53:21 -0700171bool VideoOverlay::draw(hwc_context_t *ctx, hwc_display_contents_1_t *list,
172 int dpy)
Naseer Ahmedf48aef62012-07-20 09:05:53 -0700173{
Saurabh Shahc4d034f2012-09-27 15:55:15 -0700174 if(!sIsModeOn[dpy]) {
175 return true;
176 }
177
Saurabh Shah3e858eb2012-09-17 16:53:21 -0700178 int yuvIndex = ctx->listStats[dpy].yuvIndex;
Saurabh Shahc4d034f2012-09-27 15:55:15 -0700179 if(yuvIndex == -1) {
Naseer Ahmedf48aef62012-07-20 09:05:53 -0700180 return true;
181 }
182
Naseer Ahmed4c588a22012-07-31 19:12:17 -0700183 private_handle_t *hnd = (private_handle_t *)
Saurabh Shah3e858eb2012-09-17 16:53:21 -0700184 list->hwLayers[yuvIndex].handle;
Naseer Ahmed4c588a22012-07-31 19:12:17 -0700185
Naseer Ahmedf48aef62012-07-20 09:05:53 -0700186 bool ret = true;
Naseer Ahmed758bfc52012-11-28 17:02:08 -0500187 overlay::Overlay& ov = *(ctx->mOverlay);
Naseer Ahmedf48aef62012-07-20 09:05:53 -0700188
Naseer Ahmed758bfc52012-11-28 17:02:08 -0500189 if (!ov.queueBuffer(hnd->fd, hnd->offset,
190 sDest[dpy])) {
191 ALOGE("%s: queueBuffer failed for dpy=%d", __FUNCTION__, dpy);
192 ret = false;
Naseer Ahmedf48aef62012-07-20 09:05:53 -0700193 }
Naseer Ahmed758bfc52012-11-28 17:02:08 -0500194
Naseer Ahmedf48aef62012-07-20 09:05:53 -0700195 return ret;
196}
197
Naseer Ahmedf48aef62012-07-20 09:05:53 -0700198}; //namespace qhwc