blob: 6d792c27245da1cc08b82bb756393a7472d7b942 [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_H_
18#define ANDROID_DRM_H_
19
Roman Stratiienkoe78235c2021-12-23 17:36:12 +020020#include <cstdint>
Roman Stratiienkob2e9fe22020-10-03 10:52:36 +030021#include <map>
Roman Stratiienkoaa3cd542020-08-29 11:26:16 +030022#include <tuple>
23
Roman Stratiienko13cc3662020-08-29 21:35:39 +030024#include "DrmConnector.h"
25#include "DrmCrtc.h"
26#include "DrmEncoder.h"
Roman Stratiienko8666dc92021-02-09 17:49:55 +020027#include "DrmFbImporter.h"
Roman Stratiienko0fade372021-02-20 13:59:55 +020028#include "utils/UniqueFd.h"
Sean Paul6a55e9f2015-04-30 15:31:06 -040029
30namespace android {
31
Roman Stratiienko8666dc92021-02-09 17:49:55 +020032class DrmFbImporter;
33class DrmPlane;
34
Alexandru Gheorghe0f5abd72018-05-01 14:37:10 +010035class DrmDevice {
Sean Paul6a55e9f2015-04-30 15:31:06 -040036 public:
Alexandru Gheorghe0f5abd72018-05-01 14:37:10 +010037 DrmDevice();
Roman Stratiienko1e053b42021-10-25 22:54:20 +030038 ~DrmDevice() = default;
Sean Paul6a55e9f2015-04-30 15:31:06 -040039
Alexandru Gheorghec5463582018-03-27 15:52:02 +010040 std::tuple<int, int> Init(const char *path, int num_displays);
Sean Paul6a55e9f2015-04-30 15:31:06 -040041
Roman Stratiienko7d899112022-01-31 11:30:27 +020042 auto GetFd() const {
Roman Stratiienko0fade372021-02-20 13:59:55 +020043 return fd_.Get();
Zach Reiznerff30b522015-10-28 19:08:45 -070044 }
Sean Paul6a55e9f2015-04-30 15:31:06 -040045
Roman Stratiienko7d899112022-01-31 11:30:27 +020046 auto GetConnectors() -> const std::vector<std::unique_ptr<DrmConnector>> &;
47 auto GetPlanes() -> const std::vector<std::unique_ptr<DrmPlane>> &;
48 auto GetCrtcs() -> const std::vector<std::unique_ptr<DrmCrtc>> &;
49 auto GetEncoders() -> const std::vector<std::unique_ptr<DrmEncoder>> &;
Zach Reiznerff30b522015-10-28 19:08:45 -070050
Roman Stratiienko7d899112022-01-31 11:30:27 +020051 auto GetMinResolution() const {
Sean Paul406dbfc2016-02-10 15:35:17 -080052 return min_resolution_;
53 }
54
Roman Stratiienko7d899112022-01-31 11:30:27 +020055 auto GetMaxResolution() const {
Sean Paul406dbfc2016-02-10 15:35:17 -080056 return max_resolution_;
57 }
58
Sean Paul6a55e9f2015-04-30 15:31:06 -040059 DrmConnector *GetConnectorForDisplay(int display) const;
60 DrmCrtc *GetCrtcForDisplay(int display) const;
Sean Paul6a55e9f2015-04-30 15:31:06 -040061
Roman Stratiienkoe2f2c922021-02-13 10:57:47 +020062 std::string GetName() const;
Matvii Zorinef3c7972020-08-11 15:15:44 +030063
Roman Stratiienko6ede4662021-09-30 10:18:28 +030064 auto RegisterUserPropertyBlob(void *data, size_t length) const
65 -> DrmModeUserPropertyBlobUnique;
66
Alexandru Gheorghec5463582018-03-27 15:52:02 +010067 bool HandlesDisplay(int display) const;
Sean Paul57355412015-09-19 09:14:34 -040068
Roman Stratiienko8666dc92021-02-09 17:49:55 +020069 bool HasAddFb2ModifiersSupport() const {
70 return HasAddFb2ModifiersSupport_;
71 }
72
Roman Stratiienko7d899112022-01-31 11:30:27 +020073 auto &GetDrmFbImporter() {
74 return *drm_fb_importer_;
Roman Stratiienko8666dc92021-02-09 17:49:55 +020075 }
76
Roman Stratiienko56f4adc2021-09-29 12:47:12 +030077 static auto IsKMSDev(const char *path) -> bool;
78
Roman Stratiienko027987b2022-01-30 21:06:35 +020079 auto FindCrtcById(uint32_t id) const -> DrmCrtc * {
80 for (const auto &crtc : crtcs_) {
81 if (crtc->GetId() == id) {
82 return crtc.get();
83 }
84 };
85
86 return nullptr;
87 }
88
Roman Stratiienko650299a2022-01-30 23:46:10 +020089 auto FindEncoderById(uint32_t id) const -> DrmEncoder * {
90 for (const auto &enc : encoders_) {
91 if (enc->GetId() == id) {
92 return enc.get();
93 }
94 };
95
96 return nullptr;
97 }
98
99 auto GetDisplayId(DrmConnector *conn) {
100 return connectors_to_display_id_.at(conn);
101 }
102
Sean Paul6a55e9f2015-04-30 15:31:06 -0400103 int GetProperty(uint32_t obj_id, uint32_t obj_type, const char *prop_name,
Roman Stratiienkoe2f2c922021-02-13 10:57:47 +0200104 DrmProperty *property) const;
Sean Paul6a55e9f2015-04-30 15:31:06 -0400105
Roman Stratiienko0b063882021-09-30 10:15:05 +0300106 private:
107 int TryEncoderForDisplay(int display, DrmEncoder *enc);
108
Sean Paul877be972015-06-03 14:08:27 -0400109 int CreateDisplayPipe(DrmConnector *connector);
110
Zach Reiznerff30b522015-10-28 19:08:45 -0700111 UniqueFd fd_;
Sean Paul6a55e9f2015-04-30 15:31:06 -0400112
Zach Reiznerff30b522015-10-28 19:08:45 -0700113 std::vector<std::unique_ptr<DrmConnector>> connectors_;
Alexandru Gheorgheb46b9302018-03-21 14:19:58 +0000114 std::vector<std::unique_ptr<DrmConnector>> writeback_connectors_;
Zach Reiznerff30b522015-10-28 19:08:45 -0700115 std::vector<std::unique_ptr<DrmEncoder>> encoders_;
116 std::vector<std::unique_ptr<DrmCrtc>> crtcs_;
117 std::vector<std::unique_ptr<DrmPlane>> planes_;
Sean Paul406dbfc2016-02-10 15:35:17 -0800118
119 std::pair<uint32_t, uint32_t> min_resolution_;
120 std::pair<uint32_t, uint32_t> max_resolution_;
Roman Stratiienko8666dc92021-02-09 17:49:55 +0200121
Roman Stratiienko10be8752022-01-30 20:28:46 +0200122 std::map<int /*display*/, DrmCrtc *> bound_crtcs_;
Roman Stratiienko650299a2022-01-30 23:46:10 +0200123 std::map<int /*display*/, DrmConnector *> bound_connectors_;
124 std::map<DrmConnector *, int /*display*/> connectors_to_display_id_;
125 std::map<DrmEncoder *, int /*display*/> encoders_to_display_id_;
Roman Stratiienko027987b2022-01-30 21:06:35 +0200126 std::map<DrmCrtc *, DrmEncoder *> bound_encoders_;
Roman Stratiienko10be8752022-01-30 20:28:46 +0200127
Roman Stratiienko8666dc92021-02-09 17:49:55 +0200128 bool HasAddFb2ModifiersSupport_{};
129
Roman Stratiienko7d899112022-01-31 11:30:27 +0200130 std::unique_ptr<DrmFbImporter> drm_fb_importer_;
Sean Paul6a55e9f2015-04-30 15:31:06 -0400131};
Sean Paulf72cccd2018-08-27 13:59:08 -0400132} // namespace android
Sean Paul6a55e9f2015-04-30 15:31:06 -0400133
134#endif // ANDROID_DRM_H_