blob: 20515f91cc25cddd2b2f0e7019ed24891871b7ab [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
Sean Paul6a55e9f2015-04-30 15:31:06 -040020#include <xf86drmMode.h>
Roman Stratiienkoaa3cd542020-08-29 11:26:16 +030021
Roman Stratiienkoa148f212021-11-16 18:23:18 +020022#include <cstdint>
Roman Stratiienkoe78235c2021-12-23 17:36:12 +020023#include <cstdio>
Sean Paulf72cccd2018-08-27 13:59:08 -040024#include <string>
Sean Paul6a55e9f2015-04-30 15:31:06 -040025
Roman Stratiienko40b374b2021-10-22 18:13:09 +030026#include "DrmUnique.h"
27
Sean Paul6a55e9f2015-04-30 15:31:06 -040028namespace android {
29
Roman Stratiienko40b374b2021-10-22 18:13:09 +030030class DrmDevice;
31
Sean Paul6a55e9f2015-04-30 15:31:06 -040032class DrmMode {
33 public:
Zach Reiznerff30b522015-10-28 19:08:45 -070034 DrmMode() = default;
Roman Stratiienkoe78235c2021-12-23 17:36:12 +020035 explicit DrmMode(drmModeModeInfoPtr m);
Sean Paul6a55e9f2015-04-30 15:31:06 -040036
37 bool operator==(const drmModeModeInfo &m) const;
Sean Paul6a55e9f2015-04-30 15:31:06 -040038
Sean Paul6a55e9f2015-04-30 15:31:06 -040039 uint32_t clock() const;
40
Roman Stratiienko40b374b2021-10-22 18:13:09 +030041 uint16_t h_display() const;
42 uint16_t h_sync_start() const;
43 uint16_t h_sync_end() const;
44 uint16_t h_total() const;
45 uint16_t h_skew() const;
Sean Paul6a55e9f2015-04-30 15:31:06 -040046
Roman Stratiienko40b374b2021-10-22 18:13:09 +030047 uint16_t v_display() const;
48 uint16_t v_sync_start() const;
49 uint16_t v_sync_end() const;
50 uint16_t v_total() const;
51 uint16_t v_scan() const;
Stéphane Marchesinb74e08c2015-07-05 02:00:08 -070052 float v_refresh() const;
Sean Paul6a55e9f2015-04-30 15:31:06 -040053
54 uint32_t flags() const;
55 uint32_t type() const;
56
57 std::string name() const;
58
Roman Stratiienko40b374b2021-10-22 18:13:09 +030059 auto CreateModeBlob(const DrmDevice &drm) -> DrmModeUserPropertyBlobUnique;
60
Sean Paul6a55e9f2015-04-30 15:31:06 -040061 private:
Zach Reiznerff30b522015-10-28 19:08:45 -070062 uint32_t clock_ = 0;
Sean Paul6a55e9f2015-04-30 15:31:06 -040063
Roman Stratiienko40b374b2021-10-22 18:13:09 +030064 uint16_t h_display_ = 0;
65 uint16_t h_sync_start_ = 0;
66 uint16_t h_sync_end_ = 0;
67 uint16_t h_total_ = 0;
68 uint16_t h_skew_ = 0;
Sean Paul6a55e9f2015-04-30 15:31:06 -040069
Roman Stratiienko40b374b2021-10-22 18:13:09 +030070 uint16_t v_display_ = 0;
71 uint16_t v_sync_start_ = 0;
72 uint16_t v_sync_end_ = 0;
73 uint16_t v_total_ = 0;
74 uint16_t v_scan_ = 0;
75 uint16_t v_refresh_ = 0;
Sean Paul6a55e9f2015-04-30 15:31:06 -040076
Zach Reiznerff30b522015-10-28 19:08:45 -070077 uint32_t flags_ = 0;
78 uint32_t type_ = 0;
Sean Paul6a55e9f2015-04-30 15:31:06 -040079
80 std::string name_;
81};
Sean Paulf72cccd2018-08-27 13:59:08 -040082} // namespace android
Sean Paul6a55e9f2015-04-30 15:31:06 -040083
84#endif // ANDROID_DRM_MODE_H_