blob: 9789f12e71022d42ecec448dca834ba642258c22 [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
20#include "drmmode.h"
Sean Paul877be972015-06-03 14:08:27 -040021#include "drmproperty.h"
Sean Paul6a55e9f2015-04-30 15:31:06 -040022
23#include <stdint.h>
24#include <xf86drmMode.h>
25
26namespace android {
27
Sean Paul877be972015-06-03 14:08:27 -040028class DrmResources;
29
Sean Paul6a55e9f2015-04-30 15:31:06 -040030class DrmCrtc {
31 public:
Sean Paul877be972015-06-03 14:08:27 -040032 DrmCrtc(DrmResources *drm, drmModeCrtcPtr c, unsigned pipe);
Sean Paul6a55e9f2015-04-30 15:31:06 -040033 ~DrmCrtc();
34
Sean Paul877be972015-06-03 14:08:27 -040035 int Init();
36
Sean Paul6a55e9f2015-04-30 15:31:06 -040037 uint32_t id() const;
38 unsigned pipe() const;
39
Sean Paul6a55e9f2015-04-30 15:31:06 -040040 int display() const;
41 void set_display(int display);
42
43 bool can_bind(int display) const;
44
Sean Paul877be972015-06-03 14:08:27 -040045 const DrmProperty &active_property() const;
46 const DrmProperty &mode_property() const;
47
Sean Paul6a55e9f2015-04-30 15:31:06 -040048 private:
49 DrmCrtc(const DrmCrtc &);
50
Sean Paul877be972015-06-03 14:08:27 -040051 DrmResources *drm_;
52
Sean Paul6a55e9f2015-04-30 15:31:06 -040053 uint32_t id_;
54 unsigned pipe_;
55 int display_;
56
Sean Paul6a55e9f2015-04-30 15:31:06 -040057 uint32_t x_;
58 uint32_t y_;
59 uint32_t width_;
60 uint32_t height_;
61
62 DrmMode mode_;
Sean Paul5f9339c2015-05-18 08:31:06 -070063 bool mode_valid_;
Sean Paul877be972015-06-03 14:08:27 -040064
65 DrmProperty active_property_;
66 DrmProperty mode_property_;
Sean Paul6a55e9f2015-04-30 15:31:06 -040067};
68}
69
70#endif // ANDROID_DRM_CRTC_H_