1 /*
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 <xf86drmMode.h>
22 
23 #include <string>
24 
25 namespace android {
26 
27 class DrmMode {
28  public:
29   DrmMode() = default;
30   DrmMode(drmModeModeInfoPtr m);
31 
32   bool operator==(const drmModeModeInfo &m) const;
33   void ToDrmModeModeInfo(drm_mode_modeinfo *m) const;
34 
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;
51   float v_refresh() const;
52 
53   uint32_t flags() const;
54   uint32_t type() const;
55 
56   std::string name() const;
57 
58  private:
59   uint32_t id_ = 0;
60 
61   uint32_t clock_ = 0;
62 
63   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;
68 
69   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;
75 
76   uint32_t flags_ = 0;
77   uint32_t type_ = 0;
78 
79   std::string name_;
80 };
81 }  // namespace android
82 
83 #endif  // ANDROID_DRM_MODE_H_
84