blob: 0706ae5b7674dab59a1bb2cf556f5af05eda542a [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
Roman Stratiienkoadd24cb2020-10-23 22:28:38 +0300102 int CopyBufferHandle(buffer_handle_t handle);
Zach Reizner4a253652015-09-10 18:30:54 -0700103
104 void Clear();
105
106 buffer_handle_t get() const {
107 return handle_;
108 }
109
110 private:
Zach Reizner4a253652015-09-10 18:30:54 -0700111 native_handle_t *handle_ = NULL;
112};
113
Sean Paul04b47ea2015-11-19 21:46:11 -0500114enum DrmHwcTransform {
Zach Reizner4a253652015-09-10 18:30:54 -0700115 kIdentity = 0,
Sean Paul04b47ea2015-11-19 21:46:11 -0500116 kFlipH = 1 << 0,
117 kFlipV = 1 << 1,
118 kRotate90 = 1 << 2,
119 kRotate180 = 1 << 3,
120 kRotate270 = 1 << 4,
Zach Reizner4a253652015-09-10 18:30:54 -0700121};
122
123enum class DrmHwcBlending : int32_t {
124 kNone = HWC_BLENDING_NONE,
125 kPreMult = HWC_BLENDING_PREMULT,
126 kCoverage = HWC_BLENDING_COVERAGE,
127};
128
129struct DrmHwcLayer {
130 buffer_handle_t sf_handle = NULL;
Zach Reizner36d7c6e2015-10-20 10:58:19 -0700131 int gralloc_buffer_usage = 0;
Zach Reizner4a253652015-09-10 18:30:54 -0700132 DrmHwcBuffer buffer;
133 DrmHwcNativeHandle handle;
Sean Paul04b47ea2015-11-19 21:46:11 -0500134 uint32_t transform;
Zach Reizner4a253652015-09-10 18:30:54 -0700135 DrmHwcBlending blending = DrmHwcBlending::kNone;
Stefan Schake025d0a62018-05-04 18:03:00 +0200136 uint16_t alpha = 0xffff;
Rob Herringcff7b1e2018-05-09 15:18:36 -0500137 hwc_frect_t source_crop;
138 hwc_rect_t display_frame;
Zach Reizner4a253652015-09-10 18:30:54 -0700139
140 UniqueFd acquire_fence;
141 OutputFd release_fence;
142
Andrii Chepurnyidc1278c2018-03-20 19:41:18 +0200143 int ImportBuffer(Importer *importer);
Alexandru Gheorgheb6a675e2018-03-27 16:10:55 +0100144 int InitFromDrmHwcLayer(DrmHwcLayer *layer, Importer *importer);
Sean Paul80b1a5d2016-03-10 15:35:13 -0500145
146 void SetTransform(int32_t sf_transform);
147 void SetSourceCrop(hwc_frect_t const &crop);
148 void SetDisplayFrame(hwc_rect_t const &frame);
Zach Reiznerf99d53f2015-10-09 13:02:55 -0700149
150 buffer_handle_t get_usable_handle() const {
151 return handle.get() != NULL ? handle.get() : sf_handle;
152 }
Zach Reiznerdb81fce2015-10-27 16:18:06 -0700153
154 bool protected_usage() const {
155 return (gralloc_buffer_usage & GRALLOC_USAGE_PROTECTED) ==
156 GRALLOC_USAGE_PROTECTED;
157 }
Zach Reizner4a253652015-09-10 18:30:54 -0700158};
159
Sean Paulf72cccd2018-08-27 13:59:08 -0400160} // namespace android
Zach Reizner4a253652015-09-10 18:30:54 -0700161
Sean Paulef8f1f92015-04-29 16:05:23 -0400162#endif