blob: dc64b389e30485703847cc71eeea94a38aa4add7 [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
20#include "drmencoder.h"
21#include "drmmode.h"
22#include "drmproperty.h"
23
24#include <stdint.h>
Sean Paul6a55e9f2015-04-30 15:31:06 -040025#include <xf86drmMode.h>
Roman Kovalivskyidf882992019-11-04 17:43:40 +020026#include <string>
Sean Paulf72cccd2018-08-27 13:59:08 -040027#include <vector>
Sean Paul6a55e9f2015-04-30 15:31:06 -040028
29namespace android {
30
Alexandru Gheorghe0f5abd72018-05-01 14:37:10 +010031class DrmDevice;
Sean Paul6a55e9f2015-04-30 15:31:06 -040032
33class DrmConnector {
34 public:
Alexandru Gheorghe0f5abd72018-05-01 14:37:10 +010035 DrmConnector(DrmDevice *drm, drmModeConnectorPtr c,
Sean Paul6a55e9f2015-04-30 15:31:06 -040036 DrmEncoder *current_encoder,
37 std::vector<DrmEncoder *> &possible_encoders);
Zach Reiznerff30b522015-10-28 19:08:45 -070038 DrmConnector(const DrmProperty &) = delete;
39 DrmConnector &operator=(const DrmProperty &) = delete;
Sean Paul6a55e9f2015-04-30 15:31:06 -040040
41 int Init();
42
43 uint32_t id() const;
44
45 int display() const;
46 void set_display(int display);
47
Robert Foss610d9892017-11-01 12:50:04 -050048 bool internal() const;
49 bool external() const;
Alexandru Gheorghe364f9572018-03-21 11:40:01 +000050 bool writeback() const;
Robert Foss610d9892017-11-01 12:50:04 -050051 bool valid_type() const;
Sean Paul6a55e9f2015-04-30 15:31:06 -040052
Roman Kovalivskyidf882992019-11-04 17:43:40 +020053 std::string name() const;
54
Sean Paul6a55e9f2015-04-30 15:31:06 -040055 int UpdateModes();
56
Zach Reiznerff30b522015-10-28 19:08:45 -070057 const std::vector<DrmMode> &modes() const {
58 return modes_;
59 }
Sean Paul6a55e9f2015-04-30 15:31:06 -040060 const DrmMode &active_mode() const;
Sean Paul877be972015-06-03 14:08:27 -040061 void set_active_mode(const DrmMode &mode);
Sean Paul6a55e9f2015-04-30 15:31:06 -040062
63 const DrmProperty &dpms_property() const;
Sean Paul877be972015-06-03 14:08:27 -040064 const DrmProperty &crtc_id_property() const;
Lowry Li (Arm Technology China)b3d81782019-12-18 14:28:22 +080065 const DrmProperty &edid_property() const;
Alexandru Gheorghe364f9572018-03-21 11:40:01 +000066 const DrmProperty &writeback_pixel_formats() const;
67 const DrmProperty &writeback_fb_id() const;
68 const DrmProperty &writeback_out_fence() const;
Sean Paul6a55e9f2015-04-30 15:31:06 -040069
Zach Reiznerff30b522015-10-28 19:08:45 -070070 const std::vector<DrmEncoder *> &possible_encoders() const {
71 return possible_encoders_;
72 }
Sean Paul6a55e9f2015-04-30 15:31:06 -040073 DrmEncoder *encoder() const;
74 void set_encoder(DrmEncoder *encoder);
75
Sean Paul09216492015-10-26 15:36:37 -040076 drmModeConnection state() const;
77
Sean Paul6a55e9f2015-04-30 15:31:06 -040078 uint32_t mm_width() const;
79 uint32_t mm_height() const;
80
Andrii Chepurnyi1b1e35e2019-02-19 21:38:13 +020081 uint32_t get_preferred_mode_id() const {
82 return preferred_mode_id_;
83 }
84
Sean Paul6a55e9f2015-04-30 15:31:06 -040085 private:
Alexandru Gheorghe0f5abd72018-05-01 14:37:10 +010086 DrmDevice *drm_;
Sean Paul6a55e9f2015-04-30 15:31:06 -040087
88 uint32_t id_;
89 DrmEncoder *encoder_;
90 int display_;
91
92 uint32_t type_;
Roman Kovalivskyidf882992019-11-04 17:43:40 +020093 uint32_t type_id_;
Sean Paul6a55e9f2015-04-30 15:31:06 -040094 drmModeConnection state_;
95
96 uint32_t mm_width_;
97 uint32_t mm_height_;
98
99 DrmMode active_mode_;
100 std::vector<DrmMode> modes_;
101
102 DrmProperty dpms_property_;
Sean Paul877be972015-06-03 14:08:27 -0400103 DrmProperty crtc_id_property_;
Lowry Li (Arm Technology China)b3d81782019-12-18 14:28:22 +0800104 DrmProperty edid_property_;
Alexandru Gheorghe364f9572018-03-21 11:40:01 +0000105 DrmProperty writeback_pixel_formats_;
106 DrmProperty writeback_fb_id_;
107 DrmProperty writeback_out_fence_;
Sean Paul6a55e9f2015-04-30 15:31:06 -0400108
109 std::vector<DrmEncoder *> possible_encoders_;
Andrii Chepurnyi1b1e35e2019-02-19 21:38:13 +0200110
111 uint32_t preferred_mode_id_;
Sean Paul6a55e9f2015-04-30 15:31:06 -0400112};
Sean Paulf72cccd2018-08-27 13:59:08 -0400113} // namespace android
Sean Paul6a55e9f2015-04-30 15:31:06 -0400114
115#endif // ANDROID_DRM_PLANE_H_