blob: b383168cf52cb3847ee63a9623748fd36fe27b18 [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_MODE_H_
18#define ANDROID_DRM_MODE_H_
19
20#include <stdint.h>
21#include <string>
22#include <xf86drmMode.h>
23
24namespace android {
25
26class DrmMode {
27 public:
Zach Reiznerff30b522015-10-28 19:08:45 -070028 DrmMode() = default;
Sean Paul6a55e9f2015-04-30 15:31:06 -040029 DrmMode(drmModeModeInfoPtr m);
Sean Paul6a55e9f2015-04-30 15:31:06 -040030
31 bool operator==(const drmModeModeInfo &m) const;
Sean Paul877be972015-06-03 14:08:27 -040032 void ToDrmModeModeInfo(drm_mode_modeinfo *m) const;
Sean Paul6a55e9f2015-04-30 15:31:06 -040033
34 uint32_t id() const;
35 void set_id(uint32_t id);
36
37 uint32_t clock() const;
38
39 uint32_t h_display() const;
40 uint32_t h_sync_start() const;
41 uint32_t h_sync_end() const;
42 uint32_t h_total() const;
43 uint32_t h_skew() const;
44
45 uint32_t v_display() const;
46 uint32_t v_sync_start() const;
47 uint32_t v_sync_end() const;
48 uint32_t v_total() const;
49 uint32_t v_scan() const;
Stéphane Marchesinb74e08c2015-07-05 02:00:08 -070050 float v_refresh() const;
Sean Paul6a55e9f2015-04-30 15:31:06 -040051
52 uint32_t flags() const;
53 uint32_t type() const;
54
55 std::string name() const;
56
57 private:
Zach Reiznerff30b522015-10-28 19:08:45 -070058 uint32_t id_ = 0;
Sean Paul6a55e9f2015-04-30 15:31:06 -040059
Zach Reiznerff30b522015-10-28 19:08:45 -070060 uint32_t clock_ = 0;
Sean Paul6a55e9f2015-04-30 15:31:06 -040061
Zach Reiznerff30b522015-10-28 19:08:45 -070062 uint32_t h_display_ = 0;
63 uint32_t h_sync_start_ = 0;
64 uint32_t h_sync_end_ = 0;
65 uint32_t h_total_ = 0;
66 uint32_t h_skew_ = 0;
Sean Paul6a55e9f2015-04-30 15:31:06 -040067
Zach Reiznerff30b522015-10-28 19:08:45 -070068 uint32_t v_display_ = 0;
69 uint32_t v_sync_start_ = 0;
70 uint32_t v_sync_end_ = 0;
71 uint32_t v_total_ = 0;
72 uint32_t v_scan_ = 0;
73 uint32_t v_refresh_ = 0;
Sean Paul6a55e9f2015-04-30 15:31:06 -040074
Zach Reiznerff30b522015-10-28 19:08:45 -070075 uint32_t flags_ = 0;
76 uint32_t type_ = 0;
Sean Paul6a55e9f2015-04-30 15:31:06 -040077
78 std::string name_;
79};
80}
81
82#endif // ANDROID_DRM_MODE_H_