blob: 65f458f51261d46b8702e0f79bc53698a6163021 [file] [log] [blame]
Sean Paul6a55e9f2015-04-30 15:31:06 -04001/*
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_PLANE_H_
18#define ANDROID_DRM_PLANE_H_
19
Sean Paul6a55e9f2015-04-30 15:31:06 -040020#include <xf86drmMode.h>
Roman Stratiienkoaa3cd542020-08-29 11:26:16 +030021
Roman Stratiienkoe78235c2021-12-23 17:36:12 +020022#include <cstdint>
Sean Paul6a55e9f2015-04-30 15:31:06 -040023#include <vector>
24
Roman Stratiienko13cc3662020-08-29 21:35:39 +030025#include "DrmCrtc.h"
26#include "DrmProperty.h"
Matvii Zorin67a89d32021-01-31 14:45:05 +020027#include "drmhwcomposer.h"
Roman Stratiienkoaa3cd542020-08-29 11:26:16 +030028
Sean Paul6a55e9f2015-04-30 15:31:06 -040029namespace android {
30
Alexandru Gheorghe0f5abd72018-05-01 14:37:10 +010031class DrmDevice;
Roman Stratiienko24a7fc42021-12-23 16:25:20 +020032struct DrmHwcLayer;
Sean Paul6a55e9f2015-04-30 15:31:06 -040033
Roman Stratiienkocad8e0c2022-01-31 16:40:16 +020034class DrmPlane : public PipelineBindable<DrmPlane> {
Sean Paul6a55e9f2015-04-30 15:31:06 -040035 public:
Zach Reiznerff30b522015-10-28 19:08:45 -070036 DrmPlane(const DrmPlane &) = delete;
37 DrmPlane &operator=(const DrmPlane &) = delete;
Sean Paul6a55e9f2015-04-30 15:31:06 -040038
Roman Stratiienkob671fab2022-01-29 00:50:22 +020039 static auto CreateInstance(DrmDevice &dev, uint32_t plane_id)
40 -> std::unique_ptr<DrmPlane>;
Sean Paul6a55e9f2015-04-30 15:31:06 -040041
Roman Stratiienkob671fab2022-01-29 00:50:22 +020042 bool IsCrtcSupported(const DrmCrtc &crtc) const;
Matvii Zorin67a89d32021-01-31 14:45:05 +020043 bool IsValidForLayer(DrmHwcLayer *layer);
Sean Paul6a55e9f2015-04-30 15:31:06 -040044
Roman Stratiienkob671fab2022-01-29 00:50:22 +020045 auto GetType() const {
46 return type_;
47 }
Sean Paul6a55e9f2015-04-30 15:31:06 -040048
Roman Kovalivskyi859b6072020-03-26 05:03:39 +020049 bool IsFormatSupported(uint32_t format) const;
Matvii Zorin8338c342020-09-08 16:12:51 +030050 bool HasNonRgbFormat() const;
Roman Kovalivskyi859b6072020-03-26 05:03:39 +020051
Roman Stratiienko0dbe6392021-09-29 12:47:16 +030052 auto AtomicSetState(drmModeAtomicReq &pset, DrmHwcLayer &layer, uint32_t zpos,
53 uint32_t crtc_id) -> int;
54 auto AtomicDisablePlane(drmModeAtomicReq &pset) -> int;
Roman Stratiienkob671fab2022-01-29 00:50:22 +020055 auto &GetZPosProperty() const {
56 return zpos_property_;
57 }
58
59 auto GetId() const {
60 return plane_->plane_id;
61 }
Sean Paul6a55e9f2015-04-30 15:31:06 -040062
63 private:
Roman Stratiienkob671fab2022-01-29 00:50:22 +020064 DrmPlane(DrmDevice &dev, DrmModePlaneUnique plane)
65 : drm_(&dev), plane_(std::move(plane)){};
66 DrmDevice *const drm_;
67 DrmModePlaneUnique plane_;
Sean Paul6a55e9f2015-04-30 15:31:06 -040068
Roman Stratiienko0b063882021-09-30 10:15:05 +030069 enum class Presence { kOptional, kMandatory };
70
Roman Stratiienkob671fab2022-01-29 00:50:22 +020071 auto Init() -> int;
Roman Stratiienko0b063882021-09-30 10:15:05 +030072 auto GetPlaneProperty(const char *prop_name, DrmProperty &property,
73 Presence presence = Presence::kMandatory) -> bool;
74
Roman Stratiienkob3b5c1e2021-02-15 13:44:19 +020075 uint32_t type_{};
Sean Paul6a55e9f2015-04-30 15:31:06 -040076
Roman Kovalivskyi859b6072020-03-26 05:03:39 +020077 std::vector<uint32_t> formats_;
78
Sean Paul6a55e9f2015-04-30 15:31:06 -040079 DrmProperty crtc_property_;
80 DrmProperty fb_property_;
81 DrmProperty crtc_x_property_;
82 DrmProperty crtc_y_property_;
83 DrmProperty crtc_w_property_;
84 DrmProperty crtc_h_property_;
85 DrmProperty src_x_property_;
86 DrmProperty src_y_property_;
87 DrmProperty src_w_property_;
88 DrmProperty src_h_property_;
Alexandru Gheorgheea1c5e52018-09-17 10:48:54 +010089 DrmProperty zpos_property_;
Sean Paul1c4c3262015-07-14 15:51:52 -040090 DrmProperty rotation_property_;
Sean Pauld8aefb62015-10-15 15:17:31 -040091 DrmProperty alpha_property_;
Lowry Li9b6cafd2018-08-28 17:58:21 +080092 DrmProperty blend_property_;
Robert Fossa09220c2016-09-30 10:27:23 -040093 DrmProperty in_fence_fd_property_;
Matvii Zorin8338c342020-09-08 16:12:51 +030094 DrmProperty color_encoding_propery_;
95 DrmProperty color_range_property_;
Roman Stratiienko4f1effa2021-09-29 12:47:26 +030096
Roman Stratiienko5063d532021-09-29 12:47:31 +030097 std::map<DrmHwcBlending, uint64_t> blending_enum_map_;
Roman Stratiienko4f1effa2021-09-29 12:47:26 +030098 std::map<DrmHwcColorSpace, uint64_t> color_encoding_enum_map_;
99 std::map<DrmHwcSampleRange, uint64_t> color_range_enum_map_;
Roman Stratiienko24a4c182021-09-29 12:59:54 +0300100 std::map<DrmHwcTransform, uint64_t> transform_enum_map_;
Sean Paul6a55e9f2015-04-30 15:31:06 -0400101};
Sean Paulf72cccd2018-08-27 13:59:08 -0400102} // namespace android
Sean Paul6a55e9f2015-04-30 15:31:06 -0400103
104#endif // ANDROID_DRM_PLANE_H_