Sean Paul | 98e73c8 | 2015-06-24 14:38:49 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2015 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_DRM_DISPLAY_COMPOSITOR_H_ |
| 18 | #define ANDROID_DRM_DISPLAY_COMPOSITOR_H_ |
| 19 | |
| 20 | #include "drm_hwcomposer.h" |
| 21 | #include "drmcomposition.h" |
| 22 | #include "drmcompositorworker.h" |
Zach Reizner | 713a678 | 2015-07-31 15:12:44 -0700 | [diff] [blame] | 23 | #include "drmframebuffer.h" |
Sean Paul | 98e73c8 | 2015-06-24 14:38:49 -0700 | [diff] [blame] | 24 | |
| 25 | #include <pthread.h> |
| 26 | #include <queue> |
| 27 | #include <sstream> |
| 28 | |
| 29 | #include <hardware/hardware.h> |
| 30 | #include <hardware/hwcomposer.h> |
| 31 | |
Zach Reizner | 713a678 | 2015-07-31 15:12:44 -0700 | [diff] [blame] | 32 | #define DRM_DISPLAY_BUFFERS 2 |
| 33 | |
Sean Paul | 98e73c8 | 2015-06-24 14:38:49 -0700 | [diff] [blame] | 34 | namespace android { |
| 35 | |
Zach Reizner | 713a678 | 2015-07-31 15:12:44 -0700 | [diff] [blame] | 36 | class GLWorkerCompositor; |
| 37 | |
Sean Paul | 98e73c8 | 2015-06-24 14:38:49 -0700 | [diff] [blame] | 38 | class DrmDisplayCompositor { |
| 39 | public: |
| 40 | DrmDisplayCompositor(); |
| 41 | ~DrmDisplayCompositor(); |
| 42 | |
| 43 | int Init(DrmResources *drm, int display); |
| 44 | |
| 45 | int QueueComposition(std::unique_ptr<DrmDisplayComposition> composition); |
| 46 | int Composite(); |
| 47 | void Dump(std::ostringstream *out) const; |
| 48 | |
| 49 | bool HaveQueuedComposites() const; |
| 50 | |
| 51 | private: |
| 52 | DrmDisplayCompositor(const DrmDisplayCompositor &) = delete; |
| 53 | |
Sean Paul | 971be15 | 2015-10-13 15:44:45 -0400 | [diff] [blame] | 54 | // We'll wait for acquire fences to fire for kAcquireWaitTimeoutMs, |
| 55 | // kAcquireWaitTries times, logging a warning in between. |
| 56 | static const int kAcquireWaitTries = 5; |
| 57 | static const int kAcquireWaitTimeoutMs = 100; |
Sean Paul | d106b91 | 2015-09-29 00:56:00 -0400 | [diff] [blame] | 58 | |
Zach Reizner | 713a678 | 2015-07-31 15:12:44 -0700 | [diff] [blame] | 59 | int ApplyPreComposite(DrmDisplayComposition *display_comp); |
Sean Paul | 98e73c8 | 2015-06-24 14:38:49 -0700 | [diff] [blame] | 60 | int ApplyFrame(DrmDisplayComposition *display_comp); |
Sean Paul | db7a17d | 2015-06-24 18:46:05 -0700 | [diff] [blame] | 61 | int ApplyDpms(DrmDisplayComposition *display_comp); |
Sean Paul | 7b1e4bc | 2015-10-13 15:47:22 -0400 | [diff] [blame] | 62 | int DisablePlanes(DrmDisplayComposition *display_comp); |
Sean Paul | 98e73c8 | 2015-06-24 14:38:49 -0700 | [diff] [blame] | 63 | |
| 64 | DrmResources *drm_; |
| 65 | int display_; |
| 66 | |
| 67 | DrmCompositorWorker worker_; |
| 68 | |
| 69 | std::queue<std::unique_ptr<DrmDisplayComposition>> composite_queue_; |
| 70 | std::unique_ptr<DrmDisplayComposition> active_composition_; |
| 71 | |
Sean Paul | 98e73c8 | 2015-06-24 14:38:49 -0700 | [diff] [blame] | 72 | bool initialized_; |
Sean Paul | db7a17d | 2015-06-24 18:46:05 -0700 | [diff] [blame] | 73 | bool active_; |
Sean Paul | 98e73c8 | 2015-06-24 14:38:49 -0700 | [diff] [blame] | 74 | |
Sean Paul | 5735541 | 2015-09-19 09:14:34 -0400 | [diff] [blame] | 75 | DrmMode next_mode_; |
| 76 | bool needs_modeset_; |
| 77 | |
Zach Reizner | 713a678 | 2015-07-31 15:12:44 -0700 | [diff] [blame] | 78 | int framebuffer_index_; |
| 79 | DrmFramebuffer framebuffers_[DRM_DISPLAY_BUFFERS]; |
| 80 | std::unique_ptr<GLWorkerCompositor> pre_compositor_; |
| 81 | |
Sean Paul | 98e73c8 | 2015-06-24 14:38:49 -0700 | [diff] [blame] | 82 | // mutable since we need to acquire in HaveQueuedComposites |
| 83 | mutable pthread_mutex_t lock_; |
| 84 | |
| 85 | // State tracking progress since our last Dump(). These are mutable since |
| 86 | // we need to reset them on every Dump() call. |
| 87 | mutable uint64_t dump_frames_composited_; |
| 88 | mutable uint64_t dump_last_timestamp_ns_; |
| 89 | }; |
| 90 | } |
| 91 | |
| 92 | #endif // ANDROID_DRM_DISPLAY_COMPOSITOR_H_ |