blob: a662b25f42c1e5468dba942eaede3856c4d4a314 [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
23#include <EGL/egl.h>
24
Mathias Agopian3e8b8532012-05-13 20:42:01 -070025#include <hardware/hwcomposer_defs.h>
Mathias Agopiana350ff92010-08-10 17:14:02 -070026
Mathias Agopianc7d14e22011-08-01 16:32:21 -070027#include <utils/StrongPointer.h>
Mathias Agopian22da60c2011-09-09 00:49:11 -070028#include <utils/Vector.h>
Mathias Agopianc7d14e22011-08-01 16:32:21 -070029
Mathias Agopian3eb38cb2012-04-03 22:09:52 -070030extern "C" int clock_nanosleep(clockid_t clock_id, int flags,
31 const struct timespec *request,
32 struct timespec *remain);
33
Jesse Hall5880cc52012-06-05 23:40:32 -070034struct hwc_composer_device_1;
35struct hwc_layer_list_1;
Mathias Agopian3e8b8532012-05-13 20:42:01 -070036struct hwc_procs;
37
Mathias Agopiana350ff92010-08-10 17:14:02 -070038namespace android {
39// ---------------------------------------------------------------------------
40
Mathias Agopian83727852010-09-23 18:13:21 -070041class String8;
Mathias Agopianc7d14e22011-08-01 16:32:21 -070042class SurfaceFlinger;
Mathias Agopian22da60c2011-09-09 00:49:11 -070043class LayerBase;
Mathias Agopian3e8b8532012-05-13 20:42:01 -070044class GraphicBuffer;
Mathias Agopian83727852010-09-23 18:13:21 -070045
Mathias Agopiana350ff92010-08-10 17:14:02 -070046class HWComposer
47{
48public:
Mathias Agopian3eb38cb2012-04-03 22:09:52 -070049 class EventHandler {
50 friend class HWComposer;
51 virtual void onVSyncReceived(int dpy, nsecs_t timestamp) = 0;
52 protected:
53 virtual ~EventHandler() {}
54 };
Mathias Agopiana350ff92010-08-10 17:14:02 -070055
Mathias Agopian3eb38cb2012-04-03 22:09:52 -070056 HWComposer(const sp<SurfaceFlinger>& flinger,
57 EventHandler& handler, nsecs_t refreshPeriod);
Mathias Agopiana350ff92010-08-10 17:14:02 -070058 ~HWComposer();
59
60 status_t initCheck() const;
61
62 // tells the HAL what the framebuffer is
63 void setFrameBuffer(EGLDisplay dpy, EGLSurface sur);
64
Mathias Agopiana350ff92010-08-10 17:14:02 -070065 // Asks the HAL what it can do
66 status_t prepare() const;
67
Mathias Agopian7ee4cd52011-09-02 12:22:39 -070068 // disable hwc until next createWorkList
69 status_t disable();
70
Mathias Agopiana350ff92010-08-10 17:14:02 -070071 // commits the list
72 status_t commit() const;
73
Antti Hatalaf5f27122010-09-09 02:33:05 -070074 // release hardware resources
75 status_t release() const;
Mathias Agopiana350ff92010-08-10 17:14:02 -070076
Mathias Agopian3e8b8532012-05-13 20:42:01 -070077 // create a work list for numLayers layer. sets HWC_GEOMETRY_CHANGED.
78 status_t createWorkList(size_t numLayers);
79
Mathias Agopian3eb38cb2012-04-03 22:09:52 -070080 // get the layer array created by createWorkList()
Mathias Agopian45721772010-08-12 15:03:26 -070081 size_t getNumLayers() const;
Mathias Agopiana350ff92010-08-10 17:14:02 -070082
Mathias Agopian3eb38cb2012-04-03 22:09:52 -070083 // get number of layers of the given type as updated in prepare().
84 // type is HWC_OVERLAY or HWC_FRAMEBUFFER
Mathias Agopian9c6e2972011-09-20 17:21:56 -070085 size_t getLayerCount(int type) const;
86
Mathias Agopian3e8b8532012-05-13 20:42:01 -070087 // needed forward declarations
88 class LayerListIterator;
89
90 /*
91 * Interface to hardware composer's layers functionality.
92 * This abstracts the HAL interface to layers which can evolve in
93 * incompatible ways from one release to another.
94 * The idea is that we could extend this interface as we add
95 * features to h/w composer.
96 */
97 class HWCLayerInterface {
98 protected:
99 virtual ~HWCLayerInterface() { }
100 public:
101 virtual int32_t getCompositionType() const = 0;
102 virtual uint32_t getHints() const = 0;
Jesse Hallef194142012-06-14 14:45:17 -0700103 virtual int getAndResetReleaseFenceFd() = 0;
Mathias Agopian3e8b8532012-05-13 20:42:01 -0700104 virtual void setDefaultState() = 0;
105 virtual void setSkip(bool skip) = 0;
106 virtual void setBlending(uint32_t blending) = 0;
107 virtual void setTransform(uint32_t transform) = 0;
108 virtual void setFrame(const Rect& frame) = 0;
109 virtual void setCrop(const Rect& crop) = 0;
110 virtual void setVisibleRegionScreen(const Region& reg) = 0;
111 virtual void setBuffer(const sp<GraphicBuffer>& buffer) = 0;
Jesse Halldc5b4852012-06-29 15:21:18 -0700112 virtual void setAcquireFenceFd(int fenceFd) = 0;
Mathias Agopian3e8b8532012-05-13 20:42:01 -0700113 };
114
115 /*
116 * Interface used to implement an iterator to a list
117 * of HWCLayer.
118 */
119 class HWCLayer : public HWCLayerInterface {
120 friend class LayerListIterator;
121 // select the layer at the given index
122 virtual status_t setLayer(size_t index) = 0;
123 virtual HWCLayer* dup() = 0;
124 static HWCLayer* copy(HWCLayer *rhs) {
125 return rhs ? rhs->dup() : NULL;
126 }
127 protected:
128 virtual ~HWCLayer() { }
129 };
130
131 /*
132 * Iterator through a HWCLayer list.
133 * This behaves more or less like a forward iterator.
134 */
135 class LayerListIterator {
136 friend struct HWComposer;
137 HWCLayer* const mLayerList;
138 size_t mIndex;
139
140 LayerListIterator() : mLayerList(NULL), mIndex(0) { }
141
142 LayerListIterator(HWCLayer* layer, size_t index)
143 : mLayerList(layer), mIndex(index) { }
144
145 // we don't allow assignment, because we don't need it for now
146 LayerListIterator& operator = (const LayerListIterator& rhs);
147
148 public:
149 // copy operators
150 LayerListIterator(const LayerListIterator& rhs)
151 : mLayerList(HWCLayer::copy(rhs.mLayerList)), mIndex(rhs.mIndex) {
152 }
153
154 ~LayerListIterator() { delete mLayerList; }
155
156 // pre-increment
157 LayerListIterator& operator++() {
158 mLayerList->setLayer(++mIndex);
159 return *this;
160 }
161
162 // dereference
163 HWCLayerInterface& operator * () { return *mLayerList; }
164 HWCLayerInterface* operator -> () { return mLayerList; }
165
166 // comparison
167 bool operator == (const LayerListIterator& rhs) const {
168 return mIndex == rhs.mIndex;
169 }
170 bool operator != (const LayerListIterator& rhs) const {
171 return !operator==(rhs);
172 }
173 };
174
175 // Returns an iterator to the beginning of the layer list
176 LayerListIterator begin();
177
178 // Returns an iterator to the end of the layer list
179 LayerListIterator end();
180
181
Mathias Agopian3eb38cb2012-04-03 22:09:52 -0700182 // Events handling ---------------------------------------------------------
183
184 enum {
185 EVENT_VSYNC = HWC_EVENT_VSYNC
186 };
187
Mathias Agopian03e40722012-04-26 16:11:59 -0700188 void eventControl(int event, int enabled);
Mathias Agopian3eb38cb2012-04-03 22:09:52 -0700189
190 // this class is only used to fake the VSync event on systems that don't
191 // have it.
192 class VSyncThread : public Thread {
193 HWComposer& mHwc;
194 mutable Mutex mLock;
195 Condition mCondition;
196 bool mEnabled;
197 mutable nsecs_t mNextFakeVSync;
198 nsecs_t mRefreshPeriod;
Mathias Agopian2965b262012-04-08 15:13:32 -0700199 virtual void onFirstRef();
200 virtual bool threadLoop();
Mathias Agopian3eb38cb2012-04-03 22:09:52 -0700201 public:
Mathias Agopian2965b262012-04-08 15:13:32 -0700202 VSyncThread(HWComposer& hwc);
203 void setEnabled(bool enabled);
Mathias Agopian3eb38cb2012-04-03 22:09:52 -0700204 };
205
206 friend class VSyncThread;
207
208 // for debugging ----------------------------------------------------------
Mathias Agopian22da60c2011-09-09 00:49:11 -0700209 void dump(String8& out, char* scratch, size_t SIZE,
210 const Vector< sp<LayerBase> >& visibleLayersSortedByZ) const;
Mathias Agopian83727852010-09-23 18:13:21 -0700211
Mathias Agopiana350ff92010-08-10 17:14:02 -0700212private:
Mathias Agopian3e8b8532012-05-13 20:42:01 -0700213 LayerListIterator getLayerIterator(size_t index);
Mathias Agopian31d28432012-04-03 16:31:39 -0700214
Mathias Agopian3e8b8532012-05-13 20:42:01 -0700215 struct cb_context;
Mathias Agopian31d28432012-04-03 16:31:39 -0700216
Mathias Agopianc7d14e22011-08-01 16:32:21 -0700217 static void hook_invalidate(struct hwc_procs* procs);
Mathias Agopian31d28432012-04-03 16:31:39 -0700218 static void hook_vsync(struct hwc_procs* procs, int dpy, int64_t timestamp);
219
Mathias Agopian3eb38cb2012-04-03 22:09:52 -0700220 inline void invalidate();
221 inline void vsync(int dpy, int64_t timestamp);
Mathias Agopianc7d14e22011-08-01 16:32:21 -0700222
Jesse Hall5880cc52012-06-05 23:40:32 -0700223 sp<SurfaceFlinger> mFlinger;
224 hw_module_t const* mModule;
225 struct hwc_composer_device_1* mHwc;
226 struct hwc_layer_list_1* mList;
227 size_t mCapacity;
228 mutable size_t mNumOVLayers;
229 mutable size_t mNumFBLayers;
230 EGLDisplay mDpy;
231 EGLSurface mSur;
232 cb_context* mCBContext;
233 EventHandler& mEventHandler;
234 nsecs_t mRefreshPeriod;
235 size_t mVSyncCount;
236 sp<VSyncThread> mVSyncThread;
237 bool mDebugForceFakeVSync;
Mathias Agopiana350ff92010-08-10 17:14:02 -0700238};
239
Mathias Agopiana350ff92010-08-10 17:14:02 -0700240// ---------------------------------------------------------------------------
241}; // namespace android
242
243#endif // ANDROID_SF_HWCOMPOSER_H