forked from kalyankondapally/external-drm_hwcomposer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
drmcrtc.cpp
94 lines (77 loc) · 2.11 KB
/
drmcrtc.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
/*
* Copyright (C) 2015 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#define LOG_TAG "hwc-drm-crtc"
#include "drmcrtc.h"
#include "drmresources.h"
#include <stdint.h>
#include <xf86drmMode.h>
#include <cutils/log.h>
namespace android {
DrmCrtc::DrmCrtc(DrmResources *drm, drmModeCrtcPtr c, unsigned pipe)
: drm_(drm),
id_(c->crtc_id),
pipe_(pipe),
display_(-1),
x_(c->x),
y_(c->y),
width_(c->width),
height_(c->height),
mode_(&c->mode),
mode_valid_(c->mode_valid) {
}
int DrmCrtc::Init() {
int ret = drm_->GetCrtcProperty(*this, "ACTIVE", &active_property_);
if (ret) {
ALOGE("Failed to get ACTIVE property");
return ret;
}
ret = drm_->GetCrtcProperty(*this, "MODE_ID", &mode_property_);
if (ret) {
ALOGE("Failed to get MODE_ID property");
return ret;
}
ret = drm_->GetCrtcProperty(*this, "OUT_FENCE_PTR", &out_fence_ptr_property_);
if (ret) {
ALOGE("Failed to get OUT_FENCE_PTR property");
return ret;
}
return 0;
}
uint32_t DrmCrtc::id() const {
return id_;
}
unsigned DrmCrtc::pipe() const {
return pipe_;
}
int DrmCrtc::display() const {
return display_;
}
void DrmCrtc::set_display(int display) {
display_ = display;
}
bool DrmCrtc::can_bind(int display) const {
return display_ == -1 || display_ == display;
}
const DrmProperty &DrmCrtc::active_property() const {
return active_property_;
}
const DrmProperty &DrmCrtc::mode_property() const {
return mode_property_;
}
const DrmProperty &DrmCrtc::out_fence_ptr_property() const {
return out_fence_ptr_property_;
}
}