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 | |
| 20 | #include "drmencoder.h" |
| 21 | #include "drmmode.h" |
| 22 | #include "drmproperty.h" |
| 23 | |
| 24 | #include <stdint.h> |
Sean Paul | 6a55e9f | 2015-04-30 15:31:06 -0400 | [diff] [blame] | 25 | #include <xf86drmMode.h> |
Roman Kovalivskyi | df88299 | 2019-11-04 17:43:40 +0200 | [diff] [blame] | 26 | #include <string> |
Sean Paul | f72cccd | 2018-08-27 13:59:08 -0400 | [diff] [blame] | 27 | #include <vector> |
Sean Paul | 6a55e9f | 2015-04-30 15:31:06 -0400 | [diff] [blame] | 28 | |
| 29 | namespace android { |
| 30 | |
Alexandru Gheorghe | 0f5abd7 | 2018-05-01 14:37:10 +0100 | [diff] [blame] | 31 | class DrmDevice; |
Sean Paul | 6a55e9f | 2015-04-30 15:31:06 -0400 | [diff] [blame] | 32 | |
| 33 | class DrmConnector { |
| 34 | public: |
Alexandru Gheorghe | 0f5abd7 | 2018-05-01 14:37:10 +0100 | [diff] [blame] | 35 | DrmConnector(DrmDevice *drm, drmModeConnectorPtr c, |
Sean Paul | 6a55e9f | 2015-04-30 15:31:06 -0400 | [diff] [blame] | 36 | DrmEncoder *current_encoder, |
| 37 | std::vector<DrmEncoder *> &possible_encoders); |
Zach Reizner | ff30b52 | 2015-10-28 19:08:45 -0700 | [diff] [blame] | 38 | DrmConnector(const DrmProperty &) = delete; |
| 39 | DrmConnector &operator=(const DrmProperty &) = delete; |
Sean Paul | 6a55e9f | 2015-04-30 15:31:06 -0400 | [diff] [blame] | 40 | |
| 41 | int Init(); |
| 42 | |
| 43 | uint32_t id() const; |
| 44 | |
| 45 | int display() const; |
| 46 | void set_display(int display); |
| 47 | |
Robert Foss | 610d989 | 2017-11-01 12:50:04 -0500 | [diff] [blame] | 48 | bool internal() const; |
| 49 | bool external() const; |
Alexandru Gheorghe | 364f957 | 2018-03-21 11:40:01 +0000 | [diff] [blame] | 50 | bool writeback() const; |
Robert Foss | 610d989 | 2017-11-01 12:50:04 -0500 | [diff] [blame] | 51 | bool valid_type() const; |
Sean Paul | 6a55e9f | 2015-04-30 15:31:06 -0400 | [diff] [blame] | 52 | |
Roman Kovalivskyi | df88299 | 2019-11-04 17:43:40 +0200 | [diff] [blame] | 53 | std::string name() const; |
| 54 | |
Sean Paul | 6a55e9f | 2015-04-30 15:31:06 -0400 | [diff] [blame] | 55 | int UpdateModes(); |
| 56 | |
Zach Reizner | ff30b52 | 2015-10-28 19:08:45 -0700 | [diff] [blame] | 57 | const std::vector<DrmMode> &modes() const { |
| 58 | return modes_; |
| 59 | } |
Sean Paul | 6a55e9f | 2015-04-30 15:31:06 -0400 | [diff] [blame] | 60 | const DrmMode &active_mode() const; |
Sean Paul | 877be97 | 2015-06-03 14:08:27 -0400 | [diff] [blame] | 61 | void set_active_mode(const DrmMode &mode); |
Sean Paul | 6a55e9f | 2015-04-30 15:31:06 -0400 | [diff] [blame] | 62 | |
| 63 | const DrmProperty &dpms_property() const; |
Sean Paul | 877be97 | 2015-06-03 14:08:27 -0400 | [diff] [blame] | 64 | const DrmProperty &crtc_id_property() const; |
Alexandru Gheorghe | 364f957 | 2018-03-21 11:40:01 +0000 | [diff] [blame] | 65 | const DrmProperty &writeback_pixel_formats() const; |
| 66 | const DrmProperty &writeback_fb_id() const; |
| 67 | const DrmProperty &writeback_out_fence() const; |
Sean Paul | 6a55e9f | 2015-04-30 15:31:06 -0400 | [diff] [blame] | 68 | |
Zach Reizner | ff30b52 | 2015-10-28 19:08:45 -0700 | [diff] [blame] | 69 | const std::vector<DrmEncoder *> &possible_encoders() const { |
| 70 | return possible_encoders_; |
| 71 | } |
Sean Paul | 6a55e9f | 2015-04-30 15:31:06 -0400 | [diff] [blame] | 72 | DrmEncoder *encoder() const; |
| 73 | void set_encoder(DrmEncoder *encoder); |
| 74 | |
Sean Paul | 0921649 | 2015-10-26 15:36:37 -0400 | [diff] [blame] | 75 | drmModeConnection state() const; |
| 76 | |
Sean Paul | 6a55e9f | 2015-04-30 15:31:06 -0400 | [diff] [blame] | 77 | uint32_t mm_width() const; |
| 78 | uint32_t mm_height() const; |
| 79 | |
Andrii Chepurnyi | 1b1e35e | 2019-02-19 21:38:13 +0200 | [diff] [blame] | 80 | uint32_t get_preferred_mode_id() const { |
| 81 | return preferred_mode_id_; |
| 82 | } |
| 83 | |
Sean Paul | 6a55e9f | 2015-04-30 15:31:06 -0400 | [diff] [blame] | 84 | private: |
Alexandru Gheorghe | 0f5abd7 | 2018-05-01 14:37:10 +0100 | [diff] [blame] | 85 | DrmDevice *drm_; |
Sean Paul | 6a55e9f | 2015-04-30 15:31:06 -0400 | [diff] [blame] | 86 | |
| 87 | uint32_t id_; |
| 88 | DrmEncoder *encoder_; |
| 89 | int display_; |
| 90 | |
| 91 | uint32_t type_; |
Roman Kovalivskyi | df88299 | 2019-11-04 17:43:40 +0200 | [diff] [blame] | 92 | uint32_t type_id_; |
Sean Paul | 6a55e9f | 2015-04-30 15:31:06 -0400 | [diff] [blame] | 93 | drmModeConnection state_; |
| 94 | |
| 95 | uint32_t mm_width_; |
| 96 | uint32_t mm_height_; |
| 97 | |
| 98 | DrmMode active_mode_; |
| 99 | std::vector<DrmMode> modes_; |
| 100 | |
| 101 | DrmProperty dpms_property_; |
Sean Paul | 877be97 | 2015-06-03 14:08:27 -0400 | [diff] [blame] | 102 | DrmProperty crtc_id_property_; |
Alexandru Gheorghe | 364f957 | 2018-03-21 11:40:01 +0000 | [diff] [blame] | 103 | DrmProperty writeback_pixel_formats_; |
| 104 | DrmProperty writeback_fb_id_; |
| 105 | DrmProperty writeback_out_fence_; |
Sean Paul | 6a55e9f | 2015-04-30 15:31:06 -0400 | [diff] [blame] | 106 | |
| 107 | std::vector<DrmEncoder *> possible_encoders_; |
Andrii Chepurnyi | 1b1e35e | 2019-02-19 21:38:13 +0200 | [diff] [blame] | 108 | |
| 109 | uint32_t preferred_mode_id_; |
Sean Paul | 6a55e9f | 2015-04-30 15:31:06 -0400 | [diff] [blame] | 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_ |