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 | |
Sean Paul | f72cccd | 2018-08-27 13:59:08 -0400 | [diff] [blame] | 17 | #include "drmencoder.h" |
Alexandru Gheorghe | 0f5abd7 | 2018-05-01 14:37:10 +0100 | [diff] [blame] | 18 | #include "drmdevice.h" |
Sean Paul | 6a55e9f | 2015-04-30 15:31:06 -0400 | [diff] [blame] | 19 | |
| 20 | #include <stdint.h> |
| 21 | #include <xf86drmMode.h> |
| 22 | |
| 23 | namespace android { |
| 24 | |
| 25 | DrmEncoder::DrmEncoder(drmModeEncoderPtr e, DrmCrtc *current_crtc, |
| 26 | const std::vector<DrmCrtc *> &possible_crtcs) |
| 27 | : id_(e->encoder_id), |
| 28 | crtc_(current_crtc), |
Alexandru Gheorghe | ae4324c | 2018-03-21 12:06:20 +0000 | [diff] [blame] | 29 | display_(-1), |
Sean Paul | 6a55e9f | 2015-04-30 15:31:06 -0400 | [diff] [blame] | 30 | possible_crtcs_(possible_crtcs) { |
| 31 | } |
| 32 | |
Sean Paul | 6a55e9f | 2015-04-30 15:31:06 -0400 | [diff] [blame] | 33 | uint32_t DrmEncoder::id() const { |
| 34 | return id_; |
| 35 | } |
| 36 | |
| 37 | DrmCrtc *DrmEncoder::crtc() const { |
| 38 | return crtc_; |
| 39 | } |
| 40 | |
Alexandru Gheorghe | e8b668c | 2018-03-22 11:31:29 +0000 | [diff] [blame] | 41 | bool DrmEncoder::CanClone(DrmEncoder *possible_clone) { |
| 42 | return possible_clones_.find(possible_clone) != possible_clones_.end(); |
| 43 | } |
| 44 | |
| 45 | void DrmEncoder::AddPossibleClone(DrmEncoder *possible_clone) { |
| 46 | possible_clones_.insert(possible_clone); |
| 47 | } |
| 48 | |
Sean Paul | 6a55e9f | 2015-04-30 15:31:06 -0400 | [diff] [blame] | 49 | void DrmEncoder::set_crtc(DrmCrtc *crtc) { |
| 50 | crtc_ = crtc; |
Alexandru Gheorghe | ae4324c | 2018-03-21 12:06:20 +0000 | [diff] [blame] | 51 | display_ = crtc->display(); |
| 52 | } |
| 53 | |
| 54 | int DrmEncoder::display() const { |
| 55 | return display_; |
| 56 | } |
| 57 | |
| 58 | bool DrmEncoder::can_bind(int display) const { |
| 59 | return display_ == -1 || display_ == display; |
Sean Paul | 6a55e9f | 2015-04-30 15:31:06 -0400 | [diff] [blame] | 60 | } |
Sean Paul | f72cccd | 2018-08-27 13:59:08 -0400 | [diff] [blame] | 61 | } // namespace android |