Sean Paul | 6a55e9f | 2015-04-30 15:31:06 -0400 | [diff] [blame] | 1 | /* |
| 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 Stratiienko | aa3cd54 | 2020-08-29 11:26:16 +0300 | [diff] [blame] | 20 | #include <xf86drmMode.h> |
| 21 | |
Roman Stratiienko | e78235c | 2021-12-23 17:36:12 +0200 | [diff] [blame^] | 22 | #include <cstdint> |
Roman Stratiienko | aa3cd54 | 2020-08-29 11:26:16 +0300 | [diff] [blame] | 23 | #include <string> |
| 24 | #include <vector> |
| 25 | |
Roman Stratiienko | 13cc366 | 2020-08-29 21:35:39 +0300 | [diff] [blame] | 26 | #include "DrmEncoder.h" |
| 27 | #include "DrmMode.h" |
| 28 | #include "DrmProperty.h" |
Roman Stratiienko | 3e8ce57 | 2021-09-29 12:46:28 +0300 | [diff] [blame] | 29 | #include "DrmUnique.h" |
Sean Paul | 6a55e9f | 2015-04-30 15:31:06 -0400 | [diff] [blame] | 30 | |
Sean Paul | 6a55e9f | 2015-04-30 15:31:06 -0400 | [diff] [blame] | 31 | namespace android { |
| 32 | |
Alexandru Gheorghe | 0f5abd7 | 2018-05-01 14:37:10 +0100 | [diff] [blame] | 33 | class DrmDevice; |
Sean Paul | 6a55e9f | 2015-04-30 15:31:06 -0400 | [diff] [blame] | 34 | |
| 35 | class DrmConnector { |
| 36 | public: |
Alexandru Gheorghe | 0f5abd7 | 2018-05-01 14:37:10 +0100 | [diff] [blame] | 37 | DrmConnector(DrmDevice *drm, drmModeConnectorPtr c, |
Sean Paul | 6a55e9f | 2015-04-30 15:31:06 -0400 | [diff] [blame] | 38 | DrmEncoder *current_encoder, |
| 39 | std::vector<DrmEncoder *> &possible_encoders); |
Zach Reizner | ff30b52 | 2015-10-28 19:08:45 -0700 | [diff] [blame] | 40 | DrmConnector(const DrmProperty &) = delete; |
| 41 | DrmConnector &operator=(const DrmProperty &) = delete; |
Sean Paul | 6a55e9f | 2015-04-30 15:31:06 -0400 | [diff] [blame] | 42 | |
| 43 | int Init(); |
Andrii Chepurnyi | adc5d82 | 2020-07-10 16:07:03 +0300 | [diff] [blame] | 44 | int UpdateEdidProperty(); |
Roman Stratiienko | 3e8ce57 | 2021-09-29 12:46:28 +0300 | [diff] [blame] | 45 | auto GetEdidBlob() -> DrmModePropertyBlobUnique; |
Sean Paul | 6a55e9f | 2015-04-30 15:31:06 -0400 | [diff] [blame] | 46 | |
| 47 | uint32_t id() const; |
| 48 | |
| 49 | int display() const; |
| 50 | void set_display(int display); |
| 51 | |
Robert Foss | 610d989 | 2017-11-01 12:50:04 -0500 | [diff] [blame] | 52 | bool internal() const; |
| 53 | bool external() const; |
Alexandru Gheorghe | 364f957 | 2018-03-21 11:40:01 +0000 | [diff] [blame] | 54 | bool writeback() const; |
Robert Foss | 610d989 | 2017-11-01 12:50:04 -0500 | [diff] [blame] | 55 | bool valid_type() const; |
Sean Paul | 6a55e9f | 2015-04-30 15:31:06 -0400 | [diff] [blame] | 56 | |
Roman Kovalivskyi | df88299 | 2019-11-04 17:43:40 +0200 | [diff] [blame] | 57 | std::string name() const; |
| 58 | |
Sean Paul | 6a55e9f | 2015-04-30 15:31:06 -0400 | [diff] [blame] | 59 | int UpdateModes(); |
| 60 | |
Zach Reizner | ff30b52 | 2015-10-28 19:08:45 -0700 | [diff] [blame] | 61 | const std::vector<DrmMode> &modes() const { |
| 62 | return modes_; |
| 63 | } |
Sean Paul | 6a55e9f | 2015-04-30 15:31:06 -0400 | [diff] [blame] | 64 | const DrmMode &active_mode() const; |
Sean Paul | 877be97 | 2015-06-03 14:08:27 -0400 | [diff] [blame] | 65 | void set_active_mode(const DrmMode &mode); |
Sean Paul | 6a55e9f | 2015-04-30 15:31:06 -0400 | [diff] [blame] | 66 | |
| 67 | const DrmProperty &dpms_property() const; |
Sean Paul | 877be97 | 2015-06-03 14:08:27 -0400 | [diff] [blame] | 68 | const DrmProperty &crtc_id_property() const; |
Lowry Li (Arm Technology China) | b3d8178 | 2019-12-18 14:28:22 +0800 | [diff] [blame] | 69 | const DrmProperty &edid_property() const; |
Alexandru Gheorghe | 364f957 | 2018-03-21 11:40:01 +0000 | [diff] [blame] | 70 | const DrmProperty &writeback_pixel_formats() const; |
| 71 | const DrmProperty &writeback_fb_id() const; |
| 72 | const DrmProperty &writeback_out_fence() const; |
Sean Paul | 6a55e9f | 2015-04-30 15:31:06 -0400 | [diff] [blame] | 73 | |
Zach Reizner | ff30b52 | 2015-10-28 19:08:45 -0700 | [diff] [blame] | 74 | const std::vector<DrmEncoder *> &possible_encoders() const { |
| 75 | return possible_encoders_; |
| 76 | } |
Sean Paul | 6a55e9f | 2015-04-30 15:31:06 -0400 | [diff] [blame] | 77 | DrmEncoder *encoder() const; |
| 78 | void set_encoder(DrmEncoder *encoder); |
| 79 | |
Sean Paul | 0921649 | 2015-10-26 15:36:37 -0400 | [diff] [blame] | 80 | drmModeConnection state() const; |
| 81 | |
Sean Paul | 6a55e9f | 2015-04-30 15:31:06 -0400 | [diff] [blame] | 82 | uint32_t mm_width() const; |
| 83 | uint32_t mm_height() const; |
| 84 | |
| 85 | private: |
Alexandru Gheorghe | 0f5abd7 | 2018-05-01 14:37:10 +0100 | [diff] [blame] | 86 | DrmDevice *drm_; |
Sean Paul | 6a55e9f | 2015-04-30 15:31:06 -0400 | [diff] [blame] | 87 | |
| 88 | uint32_t id_; |
| 89 | DrmEncoder *encoder_; |
| 90 | int display_; |
| 91 | |
| 92 | uint32_t type_; |
Roman Kovalivskyi | df88299 | 2019-11-04 17:43:40 +0200 | [diff] [blame] | 93 | uint32_t type_id_; |
Sean Paul | 6a55e9f | 2015-04-30 15:31:06 -0400 | [diff] [blame] | 94 | 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 Paul | 877be97 | 2015-06-03 14:08:27 -0400 | [diff] [blame] | 103 | DrmProperty crtc_id_property_; |
Lowry Li (Arm Technology China) | b3d8178 | 2019-12-18 14:28:22 +0800 | [diff] [blame] | 104 | DrmProperty edid_property_; |
Alexandru Gheorghe | 364f957 | 2018-03-21 11:40:01 +0000 | [diff] [blame] | 105 | DrmProperty writeback_pixel_formats_; |
| 106 | DrmProperty writeback_fb_id_; |
| 107 | DrmProperty writeback_out_fence_; |
Sean Paul | 6a55e9f | 2015-04-30 15:31:06 -0400 | [diff] [blame] | 108 | |
| 109 | std::vector<DrmEncoder *> possible_encoders_; |
| 110 | }; |
Sean Paul | f72cccd | 2018-08-27 13:59:08 -0400 | [diff] [blame] | 111 | } // namespace android |
Sean Paul | 6a55e9f | 2015-04-30 15:31:06 -0400 | [diff] [blame] | 112 | |
| 113 | #endif // ANDROID_DRM_PLANE_H_ |