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 <string> 22 #include <xf86drmMode.h> 23 24 namespace android { 25 26 class DrmMode { 27 public: 28 DrmMode(drmModeModeInfoPtr m); 29 DrmMode(); 30 ~DrmMode(); 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 uint32_t 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_; 60 61 uint32_t clock_; 62 63 uint32_t h_display_; 64 uint32_t h_sync_start_; 65 uint32_t h_sync_end_; 66 uint32_t h_total_; 67 uint32_t h_skew_; 68 69 uint32_t v_display_; 70 uint32_t v_sync_start_; 71 uint32_t v_sync_end_; 72 uint32_t v_total_; 73 uint32_t v_scan_; 74 uint32_t v_refresh_; 75 76 uint32_t flags_; 77 uint32_t type_; 78 79 std::string name_; 80 }; 81 } 82 83 #endif // ANDROID_DRM_MODE_H_ 84