blob: 313a8eaeef9c4d26dcfdce7e7864ea48e82a390e [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>
Sean Paul6a55e9f2015-04-30 15:31:06 -040021#include <xf86drmMode.h>
Roman Stratiienkoaa3cd542020-08-29 11:26:16 +030022
Sean Paulf72cccd2018-08-27 13:59:08 -040023#include <string>
Sean Paul6a55e9f2015-04-30 15:31:06 -040024
25namespace android {
26
27class DrmMode {
28 public:
Zach Reiznerff30b522015-10-28 19:08:45 -070029 DrmMode() = default;
Sean Paul6a55e9f2015-04-30 15:31:06 -040030 DrmMode(drmModeModeInfoPtr m);
Sean Paul6a55e9f2015-04-30 15:31:06 -040031
32 bool operator==(const drmModeModeInfo &m) const;
Sean Paul877be972015-06-03 14:08:27 -040033 void ToDrmModeModeInfo(drm_mode_modeinfo *m) const;
Sean Paul6a55e9f2015-04-30 15:31:06 -040034
35 uint32_t id() const;
36 void set_id(uint32_t id);
37
38 uint32_t clock() const;
39
40 uint32_t h_display() const;
41 uint32_t h_sync_start() const;
42 uint32_t h_sync_end() const;
43 uint32_t h_total() const;
44 uint32_t h_skew() const;
45
46 uint32_t v_display() const;
47 uint32_t v_sync_start() const;
48 uint32_t v_sync_end() const;
49 uint32_t v_total() const;
50 uint32_t v_scan() const;
Stéphane Marchesinb74e08c2015-07-05 02:00:08 -070051 float v_refresh() const;
Sean Paul6a55e9f2015-04-30 15:31:06 -040052
53 uint32_t flags() const;
54 uint32_t type() const;
55
56 std::string name() const;
57
58 private:
Zach Reiznerff30b522015-10-28 19:08:45 -070059 uint32_t id_ = 0;
Sean Paul6a55e9f2015-04-30 15:31:06 -040060
Zach Reiznerff30b522015-10-28 19:08:45 -070061 uint32_t clock_ = 0;
Sean Paul6a55e9f2015-04-30 15:31:06 -040062
Zach Reiznerff30b522015-10-28 19:08:45 -070063 uint32_t h_display_ = 0;
64 uint32_t h_sync_start_ = 0;
65 uint32_t h_sync_end_ = 0;
66 uint32_t h_total_ = 0;
67 uint32_t h_skew_ = 0;
Sean Paul6a55e9f2015-04-30 15:31:06 -040068
Zach Reiznerff30b522015-10-28 19:08:45 -070069 uint32_t v_display_ = 0;
70 uint32_t v_sync_start_ = 0;
71 uint32_t v_sync_end_ = 0;
72 uint32_t v_total_ = 0;
73 uint32_t v_scan_ = 0;
74 uint32_t v_refresh_ = 0;
Sean Paul6a55e9f2015-04-30 15:31:06 -040075
Zach Reiznerff30b522015-10-28 19:08:45 -070076 uint32_t flags_ = 0;
77 uint32_t type_ = 0;
Sean Paul6a55e9f2015-04-30 15:31:06 -040078
79 std::string name_;
80};
Sean Paulf72cccd2018-08-27 13:59:08 -040081} // namespace android
Sean Paul6a55e9f2015-04-30 15:31:06 -040082
83#endif // ANDROID_DRM_MODE_H_