blob: 7a915cc15ea55a94436978da604e3ed040304d5e [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"
Roman Stratiienkoaa3cd542020-08-29 11:26:16 +030027
Sean Paul6a55e9f2015-04-30 15:31:06 -040028namespace android {
29
Alexandru Gheorghe0f5abd72018-05-01 14:37:10 +010030class DrmDevice;
Sean Paul6a55e9f2015-04-30 15:31:06 -040031
32class DrmPlane {
33 public:
Alexandru Gheorghe0f5abd72018-05-01 14:37:10 +010034 DrmPlane(DrmDevice *drm, drmModePlanePtr p);
Zach Reiznerff30b522015-10-28 19:08:45 -070035 DrmPlane(const DrmPlane &) = delete;
36 DrmPlane &operator=(const DrmPlane &) = delete;
Sean Paul6a55e9f2015-04-30 15:31:06 -040037
38 int Init();
39
40 uint32_t id() const;
41
42 bool GetCrtcSupported(const DrmCrtc &crtc) const;
43
44 uint32_t type() const;
45
Roman Kovalivskyi859b6072020-03-26 05:03:39 +020046 bool IsFormatSupported(uint32_t format) const;
Matvii Zorin8338c342020-09-08 16:12:51 +030047 bool HasNonRgbFormat() const;
Roman Kovalivskyi859b6072020-03-26 05:03:39 +020048
Sean Paul6a55e9f2015-04-30 15:31:06 -040049 const DrmProperty &crtc_property() const;
50 const DrmProperty &fb_property() const;
51 const DrmProperty &crtc_x_property() const;
52 const DrmProperty &crtc_y_property() const;
53 const DrmProperty &crtc_w_property() const;
54 const DrmProperty &crtc_h_property() const;
55 const DrmProperty &src_x_property() const;
56 const DrmProperty &src_y_property() const;
57 const DrmProperty &src_w_property() const;
58 const DrmProperty &src_h_property() const;
Alexandru Gheorgheea1c5e52018-09-17 10:48:54 +010059 const DrmProperty &zpos_property() const;
Sean Paul1c4c3262015-07-14 15:51:52 -040060 const DrmProperty &rotation_property() const;
Sean Pauld8aefb62015-10-15 15:17:31 -040061 const DrmProperty &alpha_property() const;
Lowry Li9b6cafd2018-08-28 17:58:21 +080062 const DrmProperty &blend_property() const;
Robert Fossa09220c2016-09-30 10:27:23 -040063 const DrmProperty &in_fence_fd_property() const;
Matvii Zorin8338c342020-09-08 16:12:51 +030064 const DrmProperty &color_encoding_propery() const;
65 const DrmProperty &color_range_property() const;
Sean Paul6a55e9f2015-04-30 15:31:06 -040066
67 private:
Alexandru Gheorghe0f5abd72018-05-01 14:37:10 +010068 DrmDevice *drm_;
Sean Paul6a55e9f2015-04-30 15:31:06 -040069 uint32_t id_;
70
71 uint32_t possible_crtc_mask_;
72
73 uint32_t type_;
74
Roman Kovalivskyi859b6072020-03-26 05:03:39 +020075 std::vector<uint32_t> formats_;
76
Sean Paul6a55e9f2015-04-30 15:31:06 -040077 DrmProperty crtc_property_;
78 DrmProperty fb_property_;
79 DrmProperty crtc_x_property_;
80 DrmProperty crtc_y_property_;
81 DrmProperty crtc_w_property_;
82 DrmProperty crtc_h_property_;
83 DrmProperty src_x_property_;
84 DrmProperty src_y_property_;
85 DrmProperty src_w_property_;
86 DrmProperty src_h_property_;
Alexandru Gheorgheea1c5e52018-09-17 10:48:54 +010087 DrmProperty zpos_property_;
Sean Paul1c4c3262015-07-14 15:51:52 -040088 DrmProperty rotation_property_;
Sean Pauld8aefb62015-10-15 15:17:31 -040089 DrmProperty alpha_property_;
Lowry Li9b6cafd2018-08-28 17:58:21 +080090 DrmProperty blend_property_;
Robert Fossa09220c2016-09-30 10:27:23 -040091 DrmProperty in_fence_fd_property_;
Matvii Zorin8338c342020-09-08 16:12:51 +030092 DrmProperty color_encoding_propery_;
93 DrmProperty color_range_property_;
Sean Paul6a55e9f2015-04-30 15:31:06 -040094};
Sean Paulf72cccd2018-08-27 13:59:08 -040095} // namespace android
Sean Paul6a55e9f2015-04-30 15:31:06 -040096
97#endif // ANDROID_DRM_PLANE_H_