blob: 8533af877667ce4334f9c3ab429daff567d75877 [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_CONNECTOR_H_
18#define ANDROID_DRM_CONNECTOR_H_
19
Roman Stratiienkoaa3cd542020-08-29 11:26:16 +030020#include <stdint.h>
21#include <xf86drmMode.h>
22
23#include <string>
24#include <vector>
25
Roman Stratiienko13cc3662020-08-29 21:35:39 +030026#include "DrmEncoder.h"
27#include "DrmMode.h"
28#include "DrmProperty.h"
Sean Paul6a55e9f2015-04-30 15:31:06 -040029
Sean Paul6a55e9f2015-04-30 15:31:06 -040030namespace android {
31
Alexandru Gheorghe0f5abd72018-05-01 14:37:10 +010032class DrmDevice;
Sean Paul6a55e9f2015-04-30 15:31:06 -040033
34class DrmConnector {
35 public:
Alexandru Gheorghe0f5abd72018-05-01 14:37:10 +010036 DrmConnector(DrmDevice *drm, drmModeConnectorPtr c,
Sean Paul6a55e9f2015-04-30 15:31:06 -040037 DrmEncoder *current_encoder,
38 std::vector<DrmEncoder *> &possible_encoders);
Zach Reiznerff30b522015-10-28 19:08:45 -070039 DrmConnector(const DrmProperty &) = delete;
40 DrmConnector &operator=(const DrmProperty &) = delete;
Sean Paul6a55e9f2015-04-30 15:31:06 -040041
42 int Init();
Andrii Chepurnyiadc5d822020-07-10 16:07:03 +030043 int UpdateEdidProperty();
44 int GetEdidBlob(drmModePropertyBlobPtr &blob);
Sean Paul6a55e9f2015-04-30 15:31:06 -040045
46 uint32_t id() const;
47
48 int display() const;
49 void set_display(int display);
50
Robert Foss610d9892017-11-01 12:50:04 -050051 bool internal() const;
52 bool external() const;
Alexandru Gheorghe364f9572018-03-21 11:40:01 +000053 bool writeback() const;
Robert Foss610d9892017-11-01 12:50:04 -050054 bool valid_type() const;
Sean Paul6a55e9f2015-04-30 15:31:06 -040055
Roman Kovalivskyidf882992019-11-04 17:43:40 +020056 std::string name() const;
57
Sean Paul6a55e9f2015-04-30 15:31:06 -040058 int UpdateModes();
59
Zach Reiznerff30b522015-10-28 19:08:45 -070060 const std::vector<DrmMode> &modes() const {
61 return modes_;
62 }
Sean Paul6a55e9f2015-04-30 15:31:06 -040063 const DrmMode &active_mode() const;
Sean Paul877be972015-06-03 14:08:27 -040064 void set_active_mode(const DrmMode &mode);
Sean Paul6a55e9f2015-04-30 15:31:06 -040065
66 const DrmProperty &dpms_property() const;
Sean Paul877be972015-06-03 14:08:27 -040067 const DrmProperty &crtc_id_property() const;
Lowry Li (Arm Technology China)b3d81782019-12-18 14:28:22 +080068 const DrmProperty &edid_property() const;
Alexandru Gheorghe364f9572018-03-21 11:40:01 +000069 const DrmProperty &writeback_pixel_formats() const;
70 const DrmProperty &writeback_fb_id() const;
71 const DrmProperty &writeback_out_fence() const;
Sean Paul6a55e9f2015-04-30 15:31:06 -040072
Zach Reiznerff30b522015-10-28 19:08:45 -070073 const std::vector<DrmEncoder *> &possible_encoders() const {
74 return possible_encoders_;
75 }
Sean Paul6a55e9f2015-04-30 15:31:06 -040076 DrmEncoder *encoder() const;
77 void set_encoder(DrmEncoder *encoder);
78
Sean Paul09216492015-10-26 15:36:37 -040079 drmModeConnection state() const;
80
Sean Paul6a55e9f2015-04-30 15:31:06 -040081 uint32_t mm_width() const;
82 uint32_t mm_height() const;
83
Andrii Chepurnyi1b1e35e2019-02-19 21:38:13 +020084 uint32_t get_preferred_mode_id() const {
85 return preferred_mode_id_;
86 }
87
Sean Paul6a55e9f2015-04-30 15:31:06 -040088 private:
Alexandru Gheorghe0f5abd72018-05-01 14:37:10 +010089 DrmDevice *drm_;
Sean Paul6a55e9f2015-04-30 15:31:06 -040090
91 uint32_t id_;
92 DrmEncoder *encoder_;
93 int display_;
94
95 uint32_t type_;
Roman Kovalivskyidf882992019-11-04 17:43:40 +020096 uint32_t type_id_;
Sean Paul6a55e9f2015-04-30 15:31:06 -040097 drmModeConnection state_;
98
99 uint32_t mm_width_;
100 uint32_t mm_height_;
101
102 DrmMode active_mode_;
103 std::vector<DrmMode> modes_;
104
105 DrmProperty dpms_property_;
Sean Paul877be972015-06-03 14:08:27 -0400106 DrmProperty crtc_id_property_;
Lowry Li (Arm Technology China)b3d81782019-12-18 14:28:22 +0800107 DrmProperty edid_property_;
Alexandru Gheorghe364f9572018-03-21 11:40:01 +0000108 DrmProperty writeback_pixel_formats_;
109 DrmProperty writeback_fb_id_;
110 DrmProperty writeback_out_fence_;
Sean Paul6a55e9f2015-04-30 15:31:06 -0400111
112 std::vector<DrmEncoder *> possible_encoders_;
Andrii Chepurnyi1b1e35e2019-02-19 21:38:13 +0200113
114 uint32_t preferred_mode_id_;
Sean Paul6a55e9f2015-04-30 15:31:06 -0400115};
Sean Paulf72cccd2018-08-27 13:59:08 -0400116} // namespace android
Sean Paul6a55e9f2015-04-30 15:31:06 -0400117
118#endif // ANDROID_DRM_PLANE_H_