blob: 6c2d041d44b01573ec377bbc330e44e4c26a29a2 [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 <stdint.h>
21#include <xf86drmMode.h>
Roman Stratiienkoaa3cd542020-08-29 11:26:16 +030022
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;
Sean Paul6a55e9f2015-04-30 15:31:06 -040032
33class DrmPlane {
34 public:
Alexandru Gheorghe0f5abd72018-05-01 14:37:10 +010035 DrmPlane(DrmDevice *drm, drmModePlanePtr p);
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
39 int Init();
40
41 uint32_t id() const;
42
43 bool GetCrtcSupported(const DrmCrtc &crtc) const;
Matvii Zorin67a89d32021-01-31 14:45:05 +020044 bool IsValidForLayer(DrmHwcLayer *layer);
Sean Paul6a55e9f2015-04-30 15:31:06 -040045
46 uint32_t type() const;
47
Roman Kovalivskyi859b6072020-03-26 05:03:39 +020048 bool IsFormatSupported(uint32_t format) const;
Matvii Zorin8338c342020-09-08 16:12:51 +030049 bool HasNonRgbFormat() const;
Roman Kovalivskyi859b6072020-03-26 05:03:39 +020050
Roman Stratiienko0dbe6392021-09-29 12:47:16 +030051 auto AtomicSetState(drmModeAtomicReq &pset, DrmHwcLayer &layer, uint32_t zpos,
52 uint32_t crtc_id) -> int;
53 auto AtomicDisablePlane(drmModeAtomicReq &pset) -> int;
Alexandru Gheorgheea1c5e52018-09-17 10:48:54 +010054 const DrmProperty &zpos_property() const;
Sean Paul6a55e9f2015-04-30 15:31:06 -040055
56 private:
Alexandru Gheorghe0f5abd72018-05-01 14:37:10 +010057 DrmDevice *drm_;
Sean Paul6a55e9f2015-04-30 15:31:06 -040058 uint32_t id_;
59
60 uint32_t possible_crtc_mask_;
61
Roman Stratiienkob3b5c1e2021-02-15 13:44:19 +020062 uint32_t type_{};
Sean Paul6a55e9f2015-04-30 15:31:06 -040063
Roman Kovalivskyi859b6072020-03-26 05:03:39 +020064 std::vector<uint32_t> formats_;
65
Sean Paul6a55e9f2015-04-30 15:31:06 -040066 DrmProperty crtc_property_;
67 DrmProperty fb_property_;
68 DrmProperty crtc_x_property_;
69 DrmProperty crtc_y_property_;
70 DrmProperty crtc_w_property_;
71 DrmProperty crtc_h_property_;
72 DrmProperty src_x_property_;
73 DrmProperty src_y_property_;
74 DrmProperty src_w_property_;
75 DrmProperty src_h_property_;
Alexandru Gheorgheea1c5e52018-09-17 10:48:54 +010076 DrmProperty zpos_property_;
Sean Paul1c4c3262015-07-14 15:51:52 -040077 DrmProperty rotation_property_;
Sean Pauld8aefb62015-10-15 15:17:31 -040078 DrmProperty alpha_property_;
Lowry Li9b6cafd2018-08-28 17:58:21 +080079 DrmProperty blend_property_;
Robert Fossa09220c2016-09-30 10:27:23 -040080 DrmProperty in_fence_fd_property_;
Matvii Zorin8338c342020-09-08 16:12:51 +030081 DrmProperty color_encoding_propery_;
82 DrmProperty color_range_property_;
Sean Paul6a55e9f2015-04-30 15:31:06 -040083};
Sean Paulf72cccd2018-08-27 13:59:08 -040084} // namespace android
Sean Paul6a55e9f2015-04-30 15:31:06 -040085
86#endif // ANDROID_DRM_PLANE_H_