blob: 85e067ab5a2bff83a460bcb2e4ee071d6002c395 [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
17#ifndef ANDROID_DRM_CRTC_H_
18#define ANDROID_DRM_CRTC_H_
19
Sean Paul6a55e9f2015-04-30 15:31:06 -040020#include <xf86drmMode.h>
21
Roman Stratiienkoe78235c2021-12-23 17:36:12 +020022#include <cstdint>
23
Roman Stratiienko13cc3662020-08-29 21:35:39 +030024#include "DrmMode.h"
25#include "DrmProperty.h"
Roman Stratiienkoaa3cd542020-08-29 11:26:16 +030026
Sean Paul6a55e9f2015-04-30 15:31:06 -040027namespace android {
28
Alexandru Gheorghe0f5abd72018-05-01 14:37:10 +010029class DrmDevice;
Sean Paul877be972015-06-03 14:08:27 -040030
Sean Paul6a55e9f2015-04-30 15:31:06 -040031class DrmCrtc {
32 public:
Alexandru Gheorghe0f5abd72018-05-01 14:37:10 +010033 DrmCrtc(DrmDevice *drm, drmModeCrtcPtr c, unsigned pipe);
Zach Reiznerff30b522015-10-28 19:08:45 -070034 DrmCrtc(const DrmCrtc &) = delete;
35 DrmCrtc &operator=(const DrmCrtc &) = delete;
Sean Paul6a55e9f2015-04-30 15:31:06 -040036
Sean Paul877be972015-06-03 14:08:27 -040037 int Init();
38
Sean Paul6a55e9f2015-04-30 15:31:06 -040039 uint32_t id() const;
40 unsigned pipe() const;
41
Sean Paul6a55e9f2015-04-30 15:31:06 -040042 int display() const;
43 void set_display(int display);
44
45 bool can_bind(int display) const;
46
Sean Paul877be972015-06-03 14:08:27 -040047 const DrmProperty &active_property() const;
48 const DrmProperty &mode_property() const;
Robert Fossca0fbba2016-10-20 10:14:43 -040049 const DrmProperty &out_fence_ptr_property() const;
Sean Paul877be972015-06-03 14:08:27 -040050
Sean Paul6a55e9f2015-04-30 15:31:06 -040051 private:
Alexandru Gheorghe0f5abd72018-05-01 14:37:10 +010052 DrmDevice *drm_;
Sean Paul877be972015-06-03 14:08:27 -040053
Sean Paul6a55e9f2015-04-30 15:31:06 -040054 uint32_t id_;
55 unsigned pipe_;
56 int display_;
57
Sean Paul6a55e9f2015-04-30 15:31:06 -040058 DrmMode mode_;
Sean Paul877be972015-06-03 14:08:27 -040059
60 DrmProperty active_property_;
61 DrmProperty mode_property_;
Robert Fossca0fbba2016-10-20 10:14:43 -040062 DrmProperty out_fence_ptr_property_;
Sean Paul6a55e9f2015-04-30 15:31:06 -040063};
Sean Paulf72cccd2018-08-27 13:59:08 -040064} // namespace android
Sean Paul6a55e9f2015-04-30 15:31:06 -040065
66#endif // ANDROID_DRM_CRTC_H_