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> |
| 25 | #include <vector> |
| 26 | #include <xf86drmMode.h> |
| 27 | |
| 28 | namespace android { |
| 29 | |
Alexandru Gheorghe | 0f5abd7 | 2018-05-01 14:37:10 +0100 | [diff] [blame^] | 30 | class DrmDevice; |
Sean Paul | 6a55e9f | 2015-04-30 15:31:06 -0400 | [diff] [blame] | 31 | |
| 32 | class DrmConnector { |
| 33 | public: |
Alexandru Gheorghe | 0f5abd7 | 2018-05-01 14:37:10 +0100 | [diff] [blame^] | 34 | DrmConnector(DrmDevice *drm, drmModeConnectorPtr c, |
Sean Paul | 6a55e9f | 2015-04-30 15:31:06 -0400 | [diff] [blame] | 35 | DrmEncoder *current_encoder, |
| 36 | std::vector<DrmEncoder *> &possible_encoders); |
Zach Reizner | ff30b52 | 2015-10-28 19:08:45 -0700 | [diff] [blame] | 37 | DrmConnector(const DrmProperty &) = delete; |
| 38 | DrmConnector &operator=(const DrmProperty &) = delete; |
Sean Paul | 6a55e9f | 2015-04-30 15:31:06 -0400 | [diff] [blame] | 39 | |
| 40 | int Init(); |
| 41 | |
| 42 | uint32_t id() const; |
| 43 | |
| 44 | int display() const; |
| 45 | void set_display(int display); |
| 46 | |
Robert Foss | 610d989 | 2017-11-01 12:50:04 -0500 | [diff] [blame] | 47 | bool internal() const; |
| 48 | bool external() const; |
| 49 | bool valid_type() const; |
Sean Paul | 6a55e9f | 2015-04-30 15:31:06 -0400 | [diff] [blame] | 50 | |
| 51 | int UpdateModes(); |
| 52 | |
Zach Reizner | ff30b52 | 2015-10-28 19:08:45 -0700 | [diff] [blame] | 53 | const std::vector<DrmMode> &modes() const { |
| 54 | return modes_; |
| 55 | } |
Sean Paul | 6a55e9f | 2015-04-30 15:31:06 -0400 | [diff] [blame] | 56 | const DrmMode &active_mode() const; |
Sean Paul | 877be97 | 2015-06-03 14:08:27 -0400 | [diff] [blame] | 57 | void set_active_mode(const DrmMode &mode); |
Sean Paul | 6a55e9f | 2015-04-30 15:31:06 -0400 | [diff] [blame] | 58 | |
| 59 | const DrmProperty &dpms_property() const; |
Sean Paul | 877be97 | 2015-06-03 14:08:27 -0400 | [diff] [blame] | 60 | const DrmProperty &crtc_id_property() const; |
Sean Paul | 6a55e9f | 2015-04-30 15:31:06 -0400 | [diff] [blame] | 61 | |
Zach Reizner | ff30b52 | 2015-10-28 19:08:45 -0700 | [diff] [blame] | 62 | const std::vector<DrmEncoder *> &possible_encoders() const { |
| 63 | return possible_encoders_; |
| 64 | } |
Sean Paul | 6a55e9f | 2015-04-30 15:31:06 -0400 | [diff] [blame] | 65 | DrmEncoder *encoder() const; |
| 66 | void set_encoder(DrmEncoder *encoder); |
| 67 | |
Sean Paul | 0921649 | 2015-10-26 15:36:37 -0400 | [diff] [blame] | 68 | drmModeConnection state() const; |
| 69 | |
Sean Paul | 6a55e9f | 2015-04-30 15:31:06 -0400 | [diff] [blame] | 70 | uint32_t mm_width() const; |
| 71 | uint32_t mm_height() const; |
| 72 | |
| 73 | private: |
Alexandru Gheorghe | 0f5abd7 | 2018-05-01 14:37:10 +0100 | [diff] [blame^] | 74 | DrmDevice *drm_; |
Sean Paul | 6a55e9f | 2015-04-30 15:31:06 -0400 | [diff] [blame] | 75 | |
| 76 | uint32_t id_; |
| 77 | DrmEncoder *encoder_; |
| 78 | int display_; |
| 79 | |
| 80 | uint32_t type_; |
| 81 | drmModeConnection state_; |
| 82 | |
| 83 | uint32_t mm_width_; |
| 84 | uint32_t mm_height_; |
| 85 | |
| 86 | DrmMode active_mode_; |
| 87 | std::vector<DrmMode> modes_; |
| 88 | |
| 89 | DrmProperty dpms_property_; |
Sean Paul | 877be97 | 2015-06-03 14:08:27 -0400 | [diff] [blame] | 90 | DrmProperty crtc_id_property_; |
Sean Paul | 6a55e9f | 2015-04-30 15:31:06 -0400 | [diff] [blame] | 91 | |
| 92 | std::vector<DrmEncoder *> possible_encoders_; |
| 93 | }; |
| 94 | } |
| 95 | |
| 96 | #endif // ANDROID_DRM_PLANE_H_ |