blob: 33446b996506d8edb50264bf60a035e245441aea [file] [log] [blame]
Naseer Ahmed29a26812012-06-14 00:56:20 -07001/*
2 * Copyright (C) 2010 The Android Open Source Project
3 * Copyright (C) 2012, Code Aurora Forum. All rights reserved.
4 *
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#ifndef HWC_UTILS_H
19#define HWC_UTILS_H
Naseer Ahmed72cf9762012-07-21 12:17:13 -070020
Naseer Ahmed5b6708a2012-08-02 13:46:08 -070021#define HWC_REMOVE_DEPRECATED_VERSIONS 1
Naseer Ahmed29a26812012-06-14 00:56:20 -070022#include <hardware/hwcomposer.h>
Naseer Ahmed72cf9762012-07-21 12:17:13 -070023#include <gralloc_priv.h>
Naseer Ahmed29a26812012-06-14 00:56:20 -070024
Naseer Ahmed31da0b12012-07-31 18:55:33 -070025#define ALIGN_TO(x, align) (((x) + ((align)-1)) & ~((align)-1))
Naseer Ahmed29a26812012-06-14 00:56:20 -070026#define LIKELY( exp ) (__builtin_expect( (exp) != 0, true ))
27#define UNLIKELY( exp ) (__builtin_expect( (exp) != 0, false ))
Naseer Ahmed31da0b12012-07-31 18:55:33 -070028#define FINAL_TRANSFORM_MASK 0x000F
Naseer Ahmed5b6708a2012-08-02 13:46:08 -070029#define MAX_NUM_DISPLAYS 4 //Yes, this is ambitious
Naseer Ahmed29a26812012-06-14 00:56:20 -070030
Naseer Ahmed72cf9762012-07-21 12:17:13 -070031//Fwrd decls
Naseer Ahmed29a26812012-06-14 00:56:20 -070032struct hwc_context_t;
Naseer Ahmed72cf9762012-07-21 12:17:13 -070033struct framebuffer_device_t;
34
35namespace overlay {
36class Overlay;
37}
38
Naseer Ahmed29a26812012-06-14 00:56:20 -070039namespace qhwc {
Naseer Ahmed72cf9762012-07-21 12:17:13 -070040//fwrd decl
41class QueuedBufferStore;
Naseer Ahmed96c4c952012-07-25 18:27:14 -070042class ExternalDisplay;
43class CopybitEngine;
44
45struct MDPInfo {
46 int version;
47 char panel;
48 bool hasOverlay;
49};
Naseer Ahmed29a26812012-06-14 00:56:20 -070050
Naseer Ahmed31da0b12012-07-31 18:55:33 -070051enum external_display_type {
52 EXT_TYPE_NONE,
53 EXT_TYPE_HDMI,
54 EXT_TYPE_WIFI
55};
56enum HWCCompositionType {
57 HWC_USE_GPU = HWC_FRAMEBUFFER, // This layer is to be handled by
58 // Surfaceflinger
59 HWC_USE_OVERLAY = HWC_OVERLAY, // This layer is to be handled by the overlay
60 HWC_USE_COPYBIT // This layer is to be handled by copybit
61};
62
Naseer Ahmed7c958d42012-07-31 18:57:03 -070063enum {
64 HWC_MDPCOMP = 0x00000002,
65 HWC_LAYER_RESERVED_0 = 0x00000004,
66 HWC_LAYER_RESERVED_1 = 0x00000008
67};
68
Naseer Ahmed31da0b12012-07-31 18:55:33 -070069
Naseer Ahmed29a26812012-06-14 00:56:20 -070070// -----------------------------------------------------------------------------
71// Utility functions - implemented in hwc_utils.cpp
Naseer Ahmed5b6708a2012-08-02 13:46:08 -070072void dumpLayer(hwc_layer_1_t const* l);
73void getLayerStats(hwc_context_t *ctx, const hwc_display_contents_1_t *list);
Naseer Ahmed29a26812012-06-14 00:56:20 -070074void initContext(hwc_context_t *ctx);
75void closeContext(hwc_context_t *ctx);
Naseer Ahmedf48aef62012-07-20 09:05:53 -070076//Crops source buffer against destination and FB boundaries
77void calculate_crop_rects(hwc_rect_t& crop, hwc_rect_t& dst,
78 const int fbWidth, const int fbHeight);
Naseer Ahmed29a26812012-06-14 00:56:20 -070079
Saurabh Shahfc2acbe2012-08-17 19:47:52 -070080// Waits for the fb_post to be called
81void wait4fbPost(hwc_context_t* ctx);
82
83// Waits for the fb_post to finish PAN (primary commit)
84void wait4Pan(hwc_context_t* ctx);
85
Naseer Ahmed29a26812012-06-14 00:56:20 -070086// Inline utility functions
Naseer Ahmed5b6708a2012-08-02 13:46:08 -070087static inline bool isSkipLayer(const hwc_layer_1_t* l) {
Naseer Ahmed29a26812012-06-14 00:56:20 -070088 return (UNLIKELY(l && (l->flags & HWC_SKIP_LAYER)));
89}
90
91// Returns true if the buffer is yuv
92static inline bool isYuvBuffer(const private_handle_t* hnd) {
93 return (hnd && (hnd->bufferType == BUFFER_TYPE_VIDEO));
94}
95
96//Return true if buffer is marked locked
97static inline bool isBufferLocked(const private_handle_t* hnd) {
98 return (hnd && (private_handle_t::PRIV_FLAGS_HWC_LOCK & hnd->flags));
99}
Naseer Ahmed31da0b12012-07-31 18:55:33 -0700100
Naseer Ahmed4c588a22012-07-31 19:12:17 -0700101//Return true if buffer is for external display only
102static inline bool isExtOnly(const private_handle_t* hnd) {
103 return (hnd && (hnd->flags & private_handle_t::PRIV_FLAGS_EXTERNAL_ONLY));
104}
105
106//Return true if buffer is for external display only with a BLOCK flag.
107static inline bool isExtBlock(const private_handle_t* hnd) {
108 return (hnd && (hnd->flags & private_handle_t::PRIV_FLAGS_EXTERNAL_BLOCK));
109}
110
111//Return true if buffer is for external display only with a Close Caption flag.
112static inline bool isExtCC(const private_handle_t* hnd) {
113 return (hnd && (hnd->flags & private_handle_t::PRIV_FLAGS_EXTERNAL_CC));
114}
115
Naseer Ahmed72cf9762012-07-21 12:17:13 -0700116// Initialize uevent thread
117void init_uevent_thread(hwc_context_t* ctx);
Naseer Ahmed29a26812012-06-14 00:56:20 -0700118
Naseer Ahmed5b6708a2012-08-02 13:46:08 -0700119inline void getLayerResolution(const hwc_layer_1_t* layer,
Naseer Ahmed7c958d42012-07-31 18:57:03 -0700120 int& width, int& height)
121{
122 hwc_rect_t displayFrame = layer->displayFrame;
123 width = displayFrame.right - displayFrame.left;
124 height = displayFrame.bottom - displayFrame.top;
125}
Naseer Ahmedf48aef62012-07-20 09:05:53 -0700126}; //qhwc namespace
Naseer Ahmed29a26812012-06-14 00:56:20 -0700127
Naseer Ahmed29a26812012-06-14 00:56:20 -0700128// -----------------------------------------------------------------------------
129// HWC context
130// This structure contains overall state
131struct hwc_context_t {
Naseer Ahmed5b6708a2012-08-02 13:46:08 -0700132 hwc_composer_device_1_t device;
Jesse Hall3be78d92012-08-21 15:12:23 -0700133 const hwc_procs_t* proc;
Naseer Ahmed29a26812012-06-14 00:56:20 -0700134 int numHwLayers;
Naseer Ahmedf48aef62012-07-20 09:05:53 -0700135 int overlayInUse;
Naseer Ahmed5b6708a2012-08-02 13:46:08 -0700136 hwc_display_t dpys[MAX_NUM_DISPLAYS];
Naseer Ahmed29a26812012-06-14 00:56:20 -0700137
138 //Framebuffer device
Naseer Ahmed72cf9762012-07-21 12:17:13 -0700139 framebuffer_device_t *mFbDev;
Naseer Ahmed31da0b12012-07-31 18:55:33 -0700140
141 //Copybit Engine
142 qhwc::CopybitEngine* mCopybitEngine;
Naseer Ahmed29a26812012-06-14 00:56:20 -0700143
144 //Overlay object - NULL for non overlay devices
145 overlay::Overlay *mOverlay;
146
147 //QueuedBufferStore to hold buffers for overlay
148 qhwc::QueuedBufferStore *qbuf;
Naseer Ahmed0c8b7b52012-07-20 09:06:13 -0700149
150 // External display related information
Naseer Ahmed72cf9762012-07-21 12:17:13 -0700151 qhwc::ExternalDisplay *mExtDisplay;
152
Naseer Ahmed96c4c952012-07-25 18:27:14 -0700153 qhwc::MDPInfo mMDP;
154
Naseer Ahmed29a26812012-06-14 00:56:20 -0700155};
156
Naseer Ahmed29a26812012-06-14 00:56:20 -0700157#endif //HWC_UTILS_H