blob: 2af7e6e61b91bef4289a26e029c2704cbe964973 [file] [log] [blame]
Sean Paulcd36a9e2015-01-22 18:01:18 -05001/*
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
Sean Paulef8f1f92015-04-29 16:05:23 -040017#ifndef ANDROID_DRM_HWCOMPOSER_H_
18#define ANDROID_DRM_HWCOMPOSER_H_
19
Lauri Peltonen902c8942015-03-02 19:10:04 +020020#include <stdbool.h>
21#include <stdint.h>
22
Rob Herringcff7b1e2018-05-09 15:18:36 -050023#include <vector>
24
Sean Paulef8f1f92015-04-29 16:05:23 -040025#include <hardware/hardware.h>
26#include <hardware/hwcomposer.h>
Zach Reiznerff30b522015-10-28 19:08:45 -070027#include "autofd.h"
Zach Reizner766518e2015-10-22 16:34:49 -070028#include "drmhwcgralloc.h"
29
30struct hwc_import_context;
31
32int hwc_import_init(struct hwc_import_context **ctx);
33int hwc_import_destroy(struct hwc_import_context *ctx);
34
35int hwc_import_bo_create(int fd, struct hwc_import_context *ctx,
36 buffer_handle_t buf, struct hwc_drm_bo *bo);
37bool hwc_import_bo_release(int fd, struct hwc_import_context *ctx,
38 struct hwc_drm_bo *bo);
Sean Paulef8f1f92015-04-29 16:05:23 -040039
Zach Reizner4a253652015-09-10 18:30:54 -070040namespace android {
41
42class Importer;
43
Zach Reizner4a253652015-09-10 18:30:54 -070044class DrmHwcBuffer {
45 public:
46 DrmHwcBuffer() = default;
47 DrmHwcBuffer(const hwc_drm_bo &bo, Importer *importer)
48 : bo_(bo), importer_(importer) {
49 }
50 DrmHwcBuffer(DrmHwcBuffer &&rhs) : bo_(rhs.bo_), importer_(rhs.importer_) {
51 rhs.importer_ = NULL;
52 }
53
54 ~DrmHwcBuffer() {
55 Clear();
56 }
57
58 DrmHwcBuffer &operator=(DrmHwcBuffer &&rhs) {
59 Clear();
60 importer_ = rhs.importer_;
61 rhs.importer_ = NULL;
62 bo_ = rhs.bo_;
63 return *this;
64 }
65
Zach Reiznerfd6dc332015-10-13 21:12:48 -070066 operator bool() const {
Zach Reizner4a253652015-09-10 18:30:54 -070067 return importer_ != NULL;
68 }
69
Zach Reiznerf99d53f2015-10-09 13:02:55 -070070 const hwc_drm_bo *operator->() const;
Zach Reizner4a253652015-09-10 18:30:54 -070071
72 void Clear();
73
74 int ImportBuffer(buffer_handle_t handle, Importer *importer);
75
76 private:
77 hwc_drm_bo bo_;
78 Importer *importer_ = NULL;
79};
80
81class DrmHwcNativeHandle {
82 public:
83 DrmHwcNativeHandle() = default;
84
Andrii Chepurnyidc1278c2018-03-20 19:41:18 +020085 DrmHwcNativeHandle(native_handle_t *handle) : handle_(handle) {
Zach Reizner4a253652015-09-10 18:30:54 -070086 }
87
88 DrmHwcNativeHandle(DrmHwcNativeHandle &&rhs) {
Zach Reizner4a253652015-09-10 18:30:54 -070089 handle_ = rhs.handle_;
90 rhs.handle_ = NULL;
91 }
92
93 ~DrmHwcNativeHandle();
94
95 DrmHwcNativeHandle &operator=(DrmHwcNativeHandle &&rhs) {
96 Clear();
Zach Reizner4a253652015-09-10 18:30:54 -070097 handle_ = rhs.handle_;
98 rhs.handle_ = NULL;
99 return *this;
100 }
101
John Stultzfb3599c2018-08-21 11:21:56 -0700102 int CopyBufferHandle(buffer_handle_t handle, int width, int height,
103 int layerCount, int format, int usage, int stride);
Zach Reizner4a253652015-09-10 18:30:54 -0700104
105 void Clear();
106
107 buffer_handle_t get() const {
108 return handle_;
109 }
110
111 private:
Zach Reizner4a253652015-09-10 18:30:54 -0700112 native_handle_t *handle_ = NULL;
113};
114
Sean Paul04b47ea2015-11-19 21:46:11 -0500115enum DrmHwcTransform {
Zach Reizner4a253652015-09-10 18:30:54 -0700116 kIdentity = 0,
Sean Paul04b47ea2015-11-19 21:46:11 -0500117 kFlipH = 1 << 0,
118 kFlipV = 1 << 1,
119 kRotate90 = 1 << 2,
120 kRotate180 = 1 << 3,
121 kRotate270 = 1 << 4,
Zach Reizner4a253652015-09-10 18:30:54 -0700122};
123
124enum class DrmHwcBlending : int32_t {
125 kNone = HWC_BLENDING_NONE,
126 kPreMult = HWC_BLENDING_PREMULT,
127 kCoverage = HWC_BLENDING_COVERAGE,
128};
129
130struct DrmHwcLayer {
131 buffer_handle_t sf_handle = NULL;
Zach Reizner36d7c6e2015-10-20 10:58:19 -0700132 int gralloc_buffer_usage = 0;
Zach Reizner4a253652015-09-10 18:30:54 -0700133 DrmHwcBuffer buffer;
134 DrmHwcNativeHandle handle;
Sean Paul04b47ea2015-11-19 21:46:11 -0500135 uint32_t transform;
Zach Reizner4a253652015-09-10 18:30:54 -0700136 DrmHwcBlending blending = DrmHwcBlending::kNone;
Stefan Schake025d0a62018-05-04 18:03:00 +0200137 uint16_t alpha = 0xffff;
Rob Herringcff7b1e2018-05-09 15:18:36 -0500138 hwc_frect_t source_crop;
139 hwc_rect_t display_frame;
Zach Reizner4a253652015-09-10 18:30:54 -0700140
141 UniqueFd acquire_fence;
142 OutputFd release_fence;
143
Andrii Chepurnyidc1278c2018-03-20 19:41:18 +0200144 int ImportBuffer(Importer *importer);
Alexandru Gheorgheb6a675e2018-03-27 16:10:55 +0100145 int InitFromDrmHwcLayer(DrmHwcLayer *layer, Importer *importer);
Sean Paul80b1a5d2016-03-10 15:35:13 -0500146
147 void SetTransform(int32_t sf_transform);
148 void SetSourceCrop(hwc_frect_t const &crop);
149 void SetDisplayFrame(hwc_rect_t const &frame);
Zach Reiznerf99d53f2015-10-09 13:02:55 -0700150
151 buffer_handle_t get_usable_handle() const {
152 return handle.get() != NULL ? handle.get() : sf_handle;
153 }
Zach Reiznerdb81fce2015-10-27 16:18:06 -0700154
155 bool protected_usage() const {
156 return (gralloc_buffer_usage & GRALLOC_USAGE_PROTECTED) ==
157 GRALLOC_USAGE_PROTECTED;
158 }
Zach Reizner4a253652015-09-10 18:30:54 -0700159};
160
161struct DrmHwcDisplayContents {
162 OutputFd retire_fence;
163 std::vector<DrmHwcLayer> layers;
164};
Sean Paulf72cccd2018-08-27 13:59:08 -0400165} // namespace android
Zach Reizner4a253652015-09-10 18:30:54 -0700166
Sean Paulef8f1f92015-04-29 16:05:23 -0400167#endif