blob: 415633217c1965f7cd54ebe9991bc5d85c182ba2 [file] [log] [blame]
Mathias Agopiana350ff92010-08-10 17:14:02 -07001/*
2 * Copyright (C) 2010 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#ifndef ANDROID_SF_HWCOMPOSER_H
18#define ANDROID_SF_HWCOMPOSER_H
19
20#include <stdint.h>
21#include <sys/types.h>
22
Mathias Agopian3e8b8532012-05-13 20:42:01 -070023#include <hardware/hwcomposer_defs.h>
Mathias Agopiana350ff92010-08-10 17:14:02 -070024
Mathias Agopian921e6ac2012-07-23 23:11:29 -070025#include <utils/Condition.h>
26#include <utils/Mutex.h>
Mathias Agopianc7d14e22011-08-01 16:32:21 -070027#include <utils/StrongPointer.h>
Mathias Agopian921e6ac2012-07-23 23:11:29 -070028#include <utils/Thread.h>
29#include <utils/Timers.h>
Mathias Agopian22da60c2011-09-09 00:49:11 -070030#include <utils/Vector.h>
Mathias Agopiane60b0682012-08-21 23:34:09 -070031#include <utils/BitSet.h>
Mathias Agopianc7d14e22011-08-01 16:32:21 -070032
Mathias Agopian3eb38cb2012-04-03 22:09:52 -070033extern "C" int clock_nanosleep(clockid_t clock_id, int flags,
34 const struct timespec *request,
35 struct timespec *remain);
36
Jesse Hall5880cc52012-06-05 23:40:32 -070037struct hwc_composer_device_1;
Jesse Hallb685c542012-07-31 14:32:56 -070038struct hwc_display_contents_1;
Mathias Agopianda27af92012-09-13 18:17:13 -070039struct hwc_layer_1;
Mathias Agopian3e8b8532012-05-13 20:42:01 -070040struct hwc_procs;
Mathias Agopian8b736f12012-08-13 17:54:26 -070041struct framebuffer_device_t;
Mathias Agopian3e8b8532012-05-13 20:42:01 -070042
Mathias Agopiana350ff92010-08-10 17:14:02 -070043namespace android {
44// ---------------------------------------------------------------------------
45
Mathias Agopian921e6ac2012-07-23 23:11:29 -070046class GraphicBuffer;
Mathias Agopianda27af92012-09-13 18:17:13 -070047class Fence;
Mathias Agopian921e6ac2012-07-23 23:11:29 -070048class LayerBase;
Jamie Gennis1a4d8832012-08-02 20:11:05 -070049class Region;
Mathias Agopian83727852010-09-23 18:13:21 -070050class String8;
Mathias Agopianc7d14e22011-08-01 16:32:21 -070051class SurfaceFlinger;
Mathias Agopian83727852010-09-23 18:13:21 -070052
Mathias Agopiana350ff92010-08-10 17:14:02 -070053class HWComposer
54{
55public:
Mathias Agopian3eb38cb2012-04-03 22:09:52 -070056 class EventHandler {
57 friend class HWComposer;
Jesse Hall1bd20e02012-08-29 10:47:52 -070058 virtual void onVSyncReceived(int disp, nsecs_t timestamp) = 0;
Mathias Agopian3eb38cb2012-04-03 22:09:52 -070059 protected:
60 virtual ~EventHandler() {}
61 };
Mathias Agopiana350ff92010-08-10 17:14:02 -070062
Mathias Agopian1e260872012-08-08 18:35:12 -070063 enum {
Jesse Hall8f971ff2012-08-22 11:50:00 -070064 MAX_DISPLAYS = HWC_NUM_DISPLAY_TYPES + 1
Mathias Agopian1e260872012-08-08 18:35:12 -070065 };
66
Mathias Agopian8b736f12012-08-13 17:54:26 -070067 HWComposer(
68 const sp<SurfaceFlinger>& flinger,
Andy McFaddenb0d1dd32012-09-10 14:08:09 -070069 EventHandler& handler);
Mathias Agopian8b736f12012-08-13 17:54:26 -070070
Mathias Agopiana350ff92010-08-10 17:14:02 -070071 ~HWComposer();
72
73 status_t initCheck() const;
74
Mathias Agopiane60b0682012-08-21 23:34:09 -070075 // returns a display ID starting at MAX_DISPLAYS, this ID
76 // is to be used with createWorkList (and all other
77 // methods requiring an ID below).
78 // IDs below MAX_DISPLAY are pre-defined and therefore are always valid.
79 // returns a negative error code if an ID cannot be allocated
80 int32_t allocateDisplayId();
81
82 // recycles the given ID and frees the associated worklist.
83 // IDs below MAX_DISPLAYS are not recycled
84 status_t freeDisplayId(int32_t id);
85
86
Mathias Agopiana350ff92010-08-10 17:14:02 -070087 // Asks the HAL what it can do
Mathias Agopiane60b0682012-08-21 23:34:09 -070088 status_t prepare();
Mathias Agopiana350ff92010-08-10 17:14:02 -070089
90 // commits the list
Mathias Agopian30bcc612012-08-22 15:39:48 -070091 status_t commit();
Mathias Agopiana350ff92010-08-10 17:14:02 -070092
Colin Cross10fbdb62012-07-12 17:56:34 -070093 // release hardware resources and blank screen
Antti Hatalaf5f27122010-09-09 02:33:05 -070094 status_t release() const;
Mathias Agopiana350ff92010-08-10 17:14:02 -070095
Colin Cross10fbdb62012-07-12 17:56:34 -070096 // acquire hardware resources and unblank screen
97 status_t acquire() const;
98
Mathias Agopian3e8b8532012-05-13 20:42:01 -070099 // create a work list for numLayers layer. sets HWC_GEOMETRY_CHANGED.
Mathias Agopian1e260872012-08-08 18:35:12 -0700100 status_t createWorkList(int32_t id, size_t numLayers);
Mathias Agopiana350ff92010-08-10 17:14:02 -0700101
Mathias Agopianda27af92012-09-13 18:17:13 -0700102 bool supportsFramebufferTarget() const;
103
Mathias Agopiane60b0682012-08-21 23:34:09 -0700104 // does this display have layers handled by HWC
105 bool hasHwcComposition(int32_t id) const;
106
107 // does this display have layers handled by GLES
108 bool hasGlesComposition(int32_t id) const;
Mathias Agopian9c6e2972011-09-20 17:21:56 -0700109
Mathias Agopianda27af92012-09-13 18:17:13 -0700110 // get the releaseFence file descriptor for the given display
111 // the release fence is only valid after commit()
112 int getAndResetReleaseFenceFd(int32_t id);
113
Mathias Agopian3e8b8532012-05-13 20:42:01 -0700114 // needed forward declarations
115 class LayerListIterator;
116
Mathias Agopiancde87a32012-09-13 14:09:01 -0700117 // return the visual id to be used to find a suitable EGLConfig for
118 // *ALL* displays.
119 int getVisualID() const;
120
Andy McFaddenb0d1dd32012-09-10 14:08:09 -0700121 // Forwarding to FB HAL for pre-HWC-1.1 code (see FramebufferSurface).
Mathias Agopianda27af92012-09-13 18:17:13 -0700122 int fbPost(int32_t id, const sp<Fence>& acquireFence, const sp<GraphicBuffer>& buf);
Andy McFaddenb0d1dd32012-09-10 14:08:09 -0700123 int fbCompositionComplete();
124 void fbDump(String8& result);
125
Mathias Agopian3e8b8532012-05-13 20:42:01 -0700126 /*
127 * Interface to hardware composer's layers functionality.
128 * This abstracts the HAL interface to layers which can evolve in
129 * incompatible ways from one release to another.
130 * The idea is that we could extend this interface as we add
131 * features to h/w composer.
132 */
133 class HWCLayerInterface {
134 protected:
135 virtual ~HWCLayerInterface() { }
136 public:
137 virtual int32_t getCompositionType() const = 0;
138 virtual uint32_t getHints() const = 0;
Jesse Hallef194142012-06-14 14:45:17 -0700139 virtual int getAndResetReleaseFenceFd() = 0;
Mathias Agopian3e8b8532012-05-13 20:42:01 -0700140 virtual void setDefaultState() = 0;
141 virtual void setSkip(bool skip) = 0;
142 virtual void setBlending(uint32_t blending) = 0;
143 virtual void setTransform(uint32_t transform) = 0;
144 virtual void setFrame(const Rect& frame) = 0;
145 virtual void setCrop(const Rect& crop) = 0;
146 virtual void setVisibleRegionScreen(const Region& reg) = 0;
147 virtual void setBuffer(const sp<GraphicBuffer>& buffer) = 0;
Jesse Halldc5b4852012-06-29 15:21:18 -0700148 virtual void setAcquireFenceFd(int fenceFd) = 0;
Mathias Agopianc3973602012-08-31 17:51:25 -0700149 virtual void onDisplayed() = 0;
Mathias Agopian3e8b8532012-05-13 20:42:01 -0700150 };
151
152 /*
153 * Interface used to implement an iterator to a list
154 * of HWCLayer.
155 */
156 class HWCLayer : public HWCLayerInterface {
157 friend class LayerListIterator;
158 // select the layer at the given index
159 virtual status_t setLayer(size_t index) = 0;
160 virtual HWCLayer* dup() = 0;
161 static HWCLayer* copy(HWCLayer *rhs) {
162 return rhs ? rhs->dup() : NULL;
163 }
164 protected:
165 virtual ~HWCLayer() { }
166 };
167
168 /*
169 * Iterator through a HWCLayer list.
170 * This behaves more or less like a forward iterator.
171 */
172 class LayerListIterator {
173 friend struct HWComposer;
174 HWCLayer* const mLayerList;
175 size_t mIndex;
176
177 LayerListIterator() : mLayerList(NULL), mIndex(0) { }
178
179 LayerListIterator(HWCLayer* layer, size_t index)
180 : mLayerList(layer), mIndex(index) { }
181
182 // we don't allow assignment, because we don't need it for now
183 LayerListIterator& operator = (const LayerListIterator& rhs);
184
185 public:
186 // copy operators
187 LayerListIterator(const LayerListIterator& rhs)
188 : mLayerList(HWCLayer::copy(rhs.mLayerList)), mIndex(rhs.mIndex) {
189 }
190
191 ~LayerListIterator() { delete mLayerList; }
192
193 // pre-increment
194 LayerListIterator& operator++() {
195 mLayerList->setLayer(++mIndex);
196 return *this;
197 }
198
199 // dereference
200 HWCLayerInterface& operator * () { return *mLayerList; }
201 HWCLayerInterface* operator -> () { return mLayerList; }
202
203 // comparison
204 bool operator == (const LayerListIterator& rhs) const {
205 return mIndex == rhs.mIndex;
206 }
207 bool operator != (const LayerListIterator& rhs) const {
208 return !operator==(rhs);
209 }
210 };
211
212 // Returns an iterator to the beginning of the layer list
Mathias Agopian1e260872012-08-08 18:35:12 -0700213 LayerListIterator begin(int32_t id);
Mathias Agopian3e8b8532012-05-13 20:42:01 -0700214
215 // Returns an iterator to the end of the layer list
Mathias Agopian1e260872012-08-08 18:35:12 -0700216 LayerListIterator end(int32_t id);
Mathias Agopian3e8b8532012-05-13 20:42:01 -0700217
218
Mathias Agopian3eb38cb2012-04-03 22:09:52 -0700219 // Events handling ---------------------------------------------------------
220
221 enum {
222 EVENT_VSYNC = HWC_EVENT_VSYNC
223 };
224
Mathias Agopian03e40722012-04-26 16:11:59 -0700225 void eventControl(int event, int enabled);
Mathias Agopian3eb38cb2012-04-03 22:09:52 -0700226
Andy McFaddenb0d1dd32012-09-10 14:08:09 -0700227 // Query display parameters. Pass in a display index (e.g.
228 // HWC_DISPLAY_PRIMARY).
229 nsecs_t getRefreshPeriod(int disp) const;
230 nsecs_t getRefreshTimestamp(int disp) const;
Jesse Halldb276212012-09-07 11:20:56 -0700231 uint32_t getWidth(int disp) const;
232 uint32_t getHeight(int disp) const;
Andy McFaddenb0d1dd32012-09-10 14:08:09 -0700233 uint32_t getFormat(int disp) const;
234 float getDpiX(int disp) const;
235 float getDpiY(int disp) const;
Mathias Agopiand3ee2312012-08-02 14:01:42 -0700236
Mathias Agopian3eb38cb2012-04-03 22:09:52 -0700237 // this class is only used to fake the VSync event on systems that don't
238 // have it.
239 class VSyncThread : public Thread {
240 HWComposer& mHwc;
241 mutable Mutex mLock;
242 Condition mCondition;
243 bool mEnabled;
244 mutable nsecs_t mNextFakeVSync;
245 nsecs_t mRefreshPeriod;
Mathias Agopian2965b262012-04-08 15:13:32 -0700246 virtual void onFirstRef();
247 virtual bool threadLoop();
Mathias Agopian3eb38cb2012-04-03 22:09:52 -0700248 public:
Mathias Agopian2965b262012-04-08 15:13:32 -0700249 VSyncThread(HWComposer& hwc);
250 void setEnabled(bool enabled);
Mathias Agopian3eb38cb2012-04-03 22:09:52 -0700251 };
252
253 friend class VSyncThread;
254
255 // for debugging ----------------------------------------------------------
Mathias Agopian22da60c2011-09-09 00:49:11 -0700256 void dump(String8& out, char* scratch, size_t SIZE,
257 const Vector< sp<LayerBase> >& visibleLayersSortedByZ) const;
Mathias Agopian83727852010-09-23 18:13:21 -0700258
Mathias Agopiana350ff92010-08-10 17:14:02 -0700259private:
Andy McFaddenb0d1dd32012-09-10 14:08:09 -0700260 void loadHwcModule();
261 void loadFbHalModule();
Jesse Hallb685c542012-07-31 14:32:56 -0700262
Mathias Agopian1e260872012-08-08 18:35:12 -0700263 LayerListIterator getLayerIterator(int32_t id, size_t index);
Mathias Agopian31d28432012-04-03 16:31:39 -0700264
Mathias Agopian3e8b8532012-05-13 20:42:01 -0700265 struct cb_context;
Mathias Agopian31d28432012-04-03 16:31:39 -0700266
Jesse Hallbbd164a2012-08-21 12:05:09 -0700267 static void hook_invalidate(const struct hwc_procs* procs);
Jesse Hall1bd20e02012-08-29 10:47:52 -0700268 static void hook_vsync(const struct hwc_procs* procs, int disp,
Jesse Hallbbd164a2012-08-21 12:05:09 -0700269 int64_t timestamp);
Jesse Hall1bd20e02012-08-29 10:47:52 -0700270 static void hook_hotplug(const struct hwc_procs* procs, int disp,
271 int connected);
Mathias Agopian31d28432012-04-03 16:31:39 -0700272
Mathias Agopian3eb38cb2012-04-03 22:09:52 -0700273 inline void invalidate();
Jesse Hall1bd20e02012-08-29 10:47:52 -0700274 inline void vsync(int disp, int64_t timestamp);
275 inline void hotplug(int disp, int connected);
Mathias Agopianc7d14e22011-08-01 16:32:21 -0700276
Mathias Agopian1604f772012-09-18 21:54:42 -0700277 status_t queryDisplayProperties(int disp);
Mathias Agopian1e260872012-08-08 18:35:12 -0700278
Mathias Agopianda27af92012-09-13 18:17:13 -0700279 status_t setFramebufferTarget(int32_t id,
280 const sp<Fence>& acquireFence, const sp<GraphicBuffer>& buf);
281
282
Mathias Agopiane60b0682012-08-21 23:34:09 -0700283 struct DisplayData {
284 DisplayData() : xdpi(0), ydpi(0), refresh(0),
Mathias Agopianf4358632012-08-22 17:16:19 -0700285 hasFbComp(false), hasOvComp(false),
Mathias Agopianda27af92012-09-13 18:17:13 -0700286 capacity(0), list(NULL),
287 framebufferTarget(NULL), fbTargetHandle(NULL) { }
Mathias Agopianf4358632012-08-22 17:16:19 -0700288 ~DisplayData() {
289 free(list);
290 }
Jesse Halldb276212012-09-07 11:20:56 -0700291 uint32_t width;
292 uint32_t height;
Andy McFaddenb0d1dd32012-09-10 14:08:09 -0700293 uint32_t format; // pixel format from FB hal, for pre-hwc-1.1
Mathias Agopiane60b0682012-08-21 23:34:09 -0700294 float xdpi;
295 float ydpi;
296 nsecs_t refresh;
297 bool hasFbComp;
298 bool hasOvComp;
Mathias Agopianf4358632012-08-22 17:16:19 -0700299 size_t capacity;
300 hwc_display_contents_1* list;
Mathias Agopianda27af92012-09-13 18:17:13 -0700301 hwc_layer_1* framebufferTarget;
302 buffer_handle_t fbTargetHandle;
Mathias Agopiane60b0682012-08-21 23:34:09 -0700303 };
304
Jesse Hall5880cc52012-06-05 23:40:32 -0700305 sp<SurfaceFlinger> mFlinger;
Andy McFaddenb0d1dd32012-09-10 14:08:09 -0700306 framebuffer_device_t* mFbDev;
Jesse Hall5880cc52012-06-05 23:40:32 -0700307 struct hwc_composer_device_1* mHwc;
Jesse Hallb685c542012-07-31 14:32:56 -0700308 // invariant: mLists[0] != NULL iff mHwc != NULL
Mathias Agopiane60b0682012-08-21 23:34:09 -0700309 // mLists[i>0] can be NULL. that display is to be ignored
Jesse Hallb685c542012-07-31 14:32:56 -0700310 struct hwc_display_contents_1* mLists[MAX_DISPLAYS];
Mathias Agopiane60b0682012-08-21 23:34:09 -0700311 DisplayData mDisplayData[MAX_DISPLAYS];
Jesse Hall8f971ff2012-08-22 11:50:00 -0700312 size_t mNumDisplays;
Mathias Agopian1e260872012-08-08 18:35:12 -0700313
Jesse Hall5880cc52012-06-05 23:40:32 -0700314 cb_context* mCBContext;
315 EventHandler& mEventHandler;
Jesse Hall5880cc52012-06-05 23:40:32 -0700316 size_t mVSyncCount;
317 sp<VSyncThread> mVSyncThread;
318 bool mDebugForceFakeVSync;
Mathias Agopianf4358632012-08-22 17:16:19 -0700319 BitSet32 mAllocatedDisplayIDs;
Mathias Agopiand3ee2312012-08-02 14:01:42 -0700320
321 // protected by mLock
322 mutable Mutex mLock;
323 mutable nsecs_t mLastHwVSync;
Mathias Agopiana350ff92010-08-10 17:14:02 -0700324};
325
Mathias Agopiana350ff92010-08-10 17:14:02 -0700326// ---------------------------------------------------------------------------
327}; // namespace android
328
329#endif // ANDROID_SF_HWCOMPOSER_H