blob: a49a023f82999cbbed8bdc188bb945857e3f15ea [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 Agopian3e8b8532012-05-13 20:42:01 -070039struct hwc_procs;
Mathias Agopian8b736f12012-08-13 17:54:26 -070040struct framebuffer_device_t;
Mathias Agopian3e8b8532012-05-13 20:42:01 -070041
Mathias Agopiana350ff92010-08-10 17:14:02 -070042namespace android {
43// ---------------------------------------------------------------------------
44
Mathias Agopian921e6ac2012-07-23 23:11:29 -070045class GraphicBuffer;
46class LayerBase;
Jamie Gennis1a4d8832012-08-02 20:11:05 -070047class Region;
Mathias Agopian83727852010-09-23 18:13:21 -070048class String8;
Mathias Agopianc7d14e22011-08-01 16:32:21 -070049class SurfaceFlinger;
Mathias Agopian83727852010-09-23 18:13:21 -070050
Mathias Agopiana350ff92010-08-10 17:14:02 -070051class HWComposer
52{
53public:
Mathias Agopian3eb38cb2012-04-03 22:09:52 -070054 class EventHandler {
55 friend class HWComposer;
Jesse Hall1bd20e02012-08-29 10:47:52 -070056 virtual void onVSyncReceived(int disp, nsecs_t timestamp) = 0;
Mathias Agopian3eb38cb2012-04-03 22:09:52 -070057 protected:
58 virtual ~EventHandler() {}
59 };
Mathias Agopiana350ff92010-08-10 17:14:02 -070060
Mathias Agopian1e260872012-08-08 18:35:12 -070061 enum {
Jesse Hall8f971ff2012-08-22 11:50:00 -070062 MAX_DISPLAYS = HWC_NUM_DISPLAY_TYPES + 1
Mathias Agopian1e260872012-08-08 18:35:12 -070063 };
64
Mathias Agopian8b736f12012-08-13 17:54:26 -070065 HWComposer(
66 const sp<SurfaceFlinger>& flinger,
67 EventHandler& handler,
68 framebuffer_device_t const* fbDev);
69
Mathias Agopiana350ff92010-08-10 17:14:02 -070070 ~HWComposer();
71
72 status_t initCheck() const;
73
Mathias Agopiane60b0682012-08-21 23:34:09 -070074 // returns a display ID starting at MAX_DISPLAYS, this ID
75 // is to be used with createWorkList (and all other
76 // methods requiring an ID below).
77 // IDs below MAX_DISPLAY are pre-defined and therefore are always valid.
78 // returns a negative error code if an ID cannot be allocated
79 int32_t allocateDisplayId();
80
81 // recycles the given ID and frees the associated worklist.
82 // IDs below MAX_DISPLAYS are not recycled
83 status_t freeDisplayId(int32_t id);
84
85
Mathias Agopiana350ff92010-08-10 17:14:02 -070086 // Asks the HAL what it can do
Mathias Agopiane60b0682012-08-21 23:34:09 -070087 status_t prepare();
Mathias Agopiana350ff92010-08-10 17:14:02 -070088
89 // commits the list
Mathias Agopian30bcc612012-08-22 15:39:48 -070090 status_t commit();
Mathias Agopiana350ff92010-08-10 17:14:02 -070091
Colin Cross10fbdb62012-07-12 17:56:34 -070092 // release hardware resources and blank screen
Antti Hatalaf5f27122010-09-09 02:33:05 -070093 status_t release() const;
Mathias Agopiana350ff92010-08-10 17:14:02 -070094
Colin Cross10fbdb62012-07-12 17:56:34 -070095 // acquire hardware resources and unblank screen
96 status_t acquire() const;
97
Mathias Agopian3e8b8532012-05-13 20:42:01 -070098 // create a work list for numLayers layer. sets HWC_GEOMETRY_CHANGED.
Mathias Agopian1e260872012-08-08 18:35:12 -070099 status_t createWorkList(int32_t id, size_t numLayers);
Mathias Agopiana350ff92010-08-10 17:14:02 -0700100
Mathias Agopiane60b0682012-08-21 23:34:09 -0700101 // does this display have layers handled by HWC
102 bool hasHwcComposition(int32_t id) const;
103
104 // does this display have layers handled by GLES
105 bool hasGlesComposition(int32_t id) const;
Mathias Agopian9c6e2972011-09-20 17:21:56 -0700106
Mathias Agopian3e8b8532012-05-13 20:42:01 -0700107 // needed forward declarations
108 class LayerListIterator;
109
110 /*
111 * Interface to hardware composer's layers functionality.
112 * This abstracts the HAL interface to layers which can evolve in
113 * incompatible ways from one release to another.
114 * The idea is that we could extend this interface as we add
115 * features to h/w composer.
116 */
117 class HWCLayerInterface {
118 protected:
119 virtual ~HWCLayerInterface() { }
120 public:
121 virtual int32_t getCompositionType() const = 0;
122 virtual uint32_t getHints() const = 0;
Jesse Hallef194142012-06-14 14:45:17 -0700123 virtual int getAndResetReleaseFenceFd() = 0;
Mathias Agopian3e8b8532012-05-13 20:42:01 -0700124 virtual void setDefaultState() = 0;
125 virtual void setSkip(bool skip) = 0;
126 virtual void setBlending(uint32_t blending) = 0;
127 virtual void setTransform(uint32_t transform) = 0;
128 virtual void setFrame(const Rect& frame) = 0;
129 virtual void setCrop(const Rect& crop) = 0;
130 virtual void setVisibleRegionScreen(const Region& reg) = 0;
131 virtual void setBuffer(const sp<GraphicBuffer>& buffer) = 0;
Jesse Halldc5b4852012-06-29 15:21:18 -0700132 virtual void setAcquireFenceFd(int fenceFd) = 0;
Mathias Agopianc3973602012-08-31 17:51:25 -0700133 virtual void onDisplayed() = 0;
Mathias Agopian3e8b8532012-05-13 20:42:01 -0700134 };
135
136 /*
137 * Interface used to implement an iterator to a list
138 * of HWCLayer.
139 */
140 class HWCLayer : public HWCLayerInterface {
141 friend class LayerListIterator;
142 // select the layer at the given index
143 virtual status_t setLayer(size_t index) = 0;
144 virtual HWCLayer* dup() = 0;
145 static HWCLayer* copy(HWCLayer *rhs) {
146 return rhs ? rhs->dup() : NULL;
147 }
148 protected:
149 virtual ~HWCLayer() { }
150 };
151
152 /*
153 * Iterator through a HWCLayer list.
154 * This behaves more or less like a forward iterator.
155 */
156 class LayerListIterator {
157 friend struct HWComposer;
158 HWCLayer* const mLayerList;
159 size_t mIndex;
160
161 LayerListIterator() : mLayerList(NULL), mIndex(0) { }
162
163 LayerListIterator(HWCLayer* layer, size_t index)
164 : mLayerList(layer), mIndex(index) { }
165
166 // we don't allow assignment, because we don't need it for now
167 LayerListIterator& operator = (const LayerListIterator& rhs);
168
169 public:
170 // copy operators
171 LayerListIterator(const LayerListIterator& rhs)
172 : mLayerList(HWCLayer::copy(rhs.mLayerList)), mIndex(rhs.mIndex) {
173 }
174
175 ~LayerListIterator() { delete mLayerList; }
176
177 // pre-increment
178 LayerListIterator& operator++() {
179 mLayerList->setLayer(++mIndex);
180 return *this;
181 }
182
183 // dereference
184 HWCLayerInterface& operator * () { return *mLayerList; }
185 HWCLayerInterface* operator -> () { return mLayerList; }
186
187 // comparison
188 bool operator == (const LayerListIterator& rhs) const {
189 return mIndex == rhs.mIndex;
190 }
191 bool operator != (const LayerListIterator& rhs) const {
192 return !operator==(rhs);
193 }
194 };
195
196 // Returns an iterator to the beginning of the layer list
Mathias Agopian1e260872012-08-08 18:35:12 -0700197 LayerListIterator begin(int32_t id);
Mathias Agopian3e8b8532012-05-13 20:42:01 -0700198
199 // Returns an iterator to the end of the layer list
Mathias Agopian1e260872012-08-08 18:35:12 -0700200 LayerListIterator end(int32_t id);
Mathias Agopian3e8b8532012-05-13 20:42:01 -0700201
202
Mathias Agopian3eb38cb2012-04-03 22:09:52 -0700203 // Events handling ---------------------------------------------------------
204
205 enum {
206 EVENT_VSYNC = HWC_EVENT_VSYNC
207 };
208
Mathias Agopian03e40722012-04-26 16:11:59 -0700209 void eventControl(int event, int enabled);
Mathias Agopian3eb38cb2012-04-03 22:09:52 -0700210
Mathias Agopian888c8222012-08-04 21:10:38 -0700211 nsecs_t getRefreshPeriod() const;
Mathias Agopiand3ee2312012-08-02 14:01:42 -0700212 nsecs_t getRefreshTimestamp() const;
Mathias Agopian8b736f12012-08-13 17:54:26 -0700213 float getDpiX() const;
214 float getDpiY() const;
Mathias Agopiand3ee2312012-08-02 14:01:42 -0700215
Mathias Agopian3eb38cb2012-04-03 22:09:52 -0700216 // this class is only used to fake the VSync event on systems that don't
217 // have it.
218 class VSyncThread : public Thread {
219 HWComposer& mHwc;
220 mutable Mutex mLock;
221 Condition mCondition;
222 bool mEnabled;
223 mutable nsecs_t mNextFakeVSync;
224 nsecs_t mRefreshPeriod;
Mathias Agopian2965b262012-04-08 15:13:32 -0700225 virtual void onFirstRef();
226 virtual bool threadLoop();
Mathias Agopian3eb38cb2012-04-03 22:09:52 -0700227 public:
Mathias Agopian2965b262012-04-08 15:13:32 -0700228 VSyncThread(HWComposer& hwc);
229 void setEnabled(bool enabled);
Mathias Agopian3eb38cb2012-04-03 22:09:52 -0700230 };
231
232 friend class VSyncThread;
233
234 // for debugging ----------------------------------------------------------
Mathias Agopian22da60c2011-09-09 00:49:11 -0700235 void dump(String8& out, char* scratch, size_t SIZE,
236 const Vector< sp<LayerBase> >& visibleLayersSortedByZ) const;
Mathias Agopian83727852010-09-23 18:13:21 -0700237
Mathias Agopiana350ff92010-08-10 17:14:02 -0700238private:
Jesse Hallb685c542012-07-31 14:32:56 -0700239
Mathias Agopian1e260872012-08-08 18:35:12 -0700240 LayerListIterator getLayerIterator(int32_t id, size_t index);
241 size_t getNumLayers(int32_t id) const;
Mathias Agopian31d28432012-04-03 16:31:39 -0700242
Mathias Agopian3e8b8532012-05-13 20:42:01 -0700243 struct cb_context;
Mathias Agopian31d28432012-04-03 16:31:39 -0700244
Jesse Hallbbd164a2012-08-21 12:05:09 -0700245 static void hook_invalidate(const struct hwc_procs* procs);
Jesse Hall1bd20e02012-08-29 10:47:52 -0700246 static void hook_vsync(const struct hwc_procs* procs, int disp,
Jesse Hallbbd164a2012-08-21 12:05:09 -0700247 int64_t timestamp);
Jesse Hall1bd20e02012-08-29 10:47:52 -0700248 static void hook_hotplug(const struct hwc_procs* procs, int disp,
249 int connected);
Mathias Agopian31d28432012-04-03 16:31:39 -0700250
Mathias Agopian3eb38cb2012-04-03 22:09:52 -0700251 inline void invalidate();
Jesse Hall1bd20e02012-08-29 10:47:52 -0700252 inline void vsync(int disp, int64_t timestamp);
253 inline void hotplug(int disp, int connected);
Mathias Agopianc7d14e22011-08-01 16:32:21 -0700254
Jesse Hall1bd20e02012-08-29 10:47:52 -0700255 void queryDisplayProperties(int disp);
Mathias Agopian1e260872012-08-08 18:35:12 -0700256
Mathias Agopiane60b0682012-08-21 23:34:09 -0700257 struct DisplayData {
258 DisplayData() : xdpi(0), ydpi(0), refresh(0),
Mathias Agopianf4358632012-08-22 17:16:19 -0700259 hasFbComp(false), hasOvComp(false),
260 capacity(0), list(NULL) { }
261 ~DisplayData() {
262 free(list);
263 }
Mathias Agopiane60b0682012-08-21 23:34:09 -0700264 float xdpi;
265 float ydpi;
266 nsecs_t refresh;
267 bool hasFbComp;
268 bool hasOvComp;
Mathias Agopianf4358632012-08-22 17:16:19 -0700269 size_t capacity;
270 hwc_display_contents_1* list;
Mathias Agopiane60b0682012-08-21 23:34:09 -0700271 };
272
Jesse Hall5880cc52012-06-05 23:40:32 -0700273 sp<SurfaceFlinger> mFlinger;
274 hw_module_t const* mModule;
275 struct hwc_composer_device_1* mHwc;
Jesse Hallb685c542012-07-31 14:32:56 -0700276 // invariant: mLists[0] != NULL iff mHwc != NULL
Mathias Agopiane60b0682012-08-21 23:34:09 -0700277 // mLists[i>0] can be NULL. that display is to be ignored
Jesse Hallb685c542012-07-31 14:32:56 -0700278 struct hwc_display_contents_1* mLists[MAX_DISPLAYS];
Mathias Agopiane60b0682012-08-21 23:34:09 -0700279 DisplayData mDisplayData[MAX_DISPLAYS];
Jesse Hall8f971ff2012-08-22 11:50:00 -0700280 size_t mNumDisplays;
Mathias Agopian1e260872012-08-08 18:35:12 -0700281
Jesse Hall5880cc52012-06-05 23:40:32 -0700282 cb_context* mCBContext;
283 EventHandler& mEventHandler;
Jesse Hall5880cc52012-06-05 23:40:32 -0700284 size_t mVSyncCount;
285 sp<VSyncThread> mVSyncThread;
286 bool mDebugForceFakeVSync;
Mathias Agopianf4358632012-08-22 17:16:19 -0700287 BitSet32 mAllocatedDisplayIDs;
Mathias Agopiand3ee2312012-08-02 14:01:42 -0700288
289 // protected by mLock
290 mutable Mutex mLock;
291 mutable nsecs_t mLastHwVSync;
Mathias Agopiana350ff92010-08-10 17:14:02 -0700292};
293
Mathias Agopiana350ff92010-08-10 17:14:02 -0700294// ---------------------------------------------------------------------------
295}; // namespace android
296
297#endif // ANDROID_SF_HWCOMPOSER_H