blob: bcf0926e449ff3be9f050dc5595c50694acea250 [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
Roman Stratiienko13cc3662020-08-29 21:35:39 +030017#include "DrmEncoder.h"
Sean Paul6a55e9f2015-04-30 15:31:06 -040018
19#include <stdint.h>
20#include <xf86drmMode.h>
21
Roman Stratiienko13cc3662020-08-29 21:35:39 +030022#include "DrmDevice.h"
23
Sean Paul6a55e9f2015-04-30 15:31:06 -040024namespace android {
25
26DrmEncoder::DrmEncoder(drmModeEncoderPtr e, DrmCrtc *current_crtc,
27 const std::vector<DrmCrtc *> &possible_crtcs)
28 : id_(e->encoder_id),
29 crtc_(current_crtc),
Alexandru Gheorgheae4324c2018-03-21 12:06:20 +000030 display_(-1),
Sean Paul6a55e9f2015-04-30 15:31:06 -040031 possible_crtcs_(possible_crtcs) {
32}
33
Sean Paul6a55e9f2015-04-30 15:31:06 -040034uint32_t DrmEncoder::id() const {
35 return id_;
36}
37
38DrmCrtc *DrmEncoder::crtc() const {
39 return crtc_;
40}
41
Alexandru Gheorghee8b668c2018-03-22 11:31:29 +000042bool DrmEncoder::CanClone(DrmEncoder *possible_clone) {
43 return possible_clones_.find(possible_clone) != possible_clones_.end();
44}
45
46void DrmEncoder::AddPossibleClone(DrmEncoder *possible_clone) {
47 possible_clones_.insert(possible_clone);
48}
49
Sean Paul6a55e9f2015-04-30 15:31:06 -040050void DrmEncoder::set_crtc(DrmCrtc *crtc) {
51 crtc_ = crtc;
Alexandru Gheorgheae4324c2018-03-21 12:06:20 +000052 display_ = crtc->display();
53}
54
55int DrmEncoder::display() const {
56 return display_;
57}
58
59bool DrmEncoder::can_bind(int display) const {
60 return display_ == -1 || display_ == display;
Sean Paul6a55e9f2015-04-30 15:31:06 -040061}
Sean Paulf72cccd2018-08-27 13:59:08 -040062} // namespace android