Sean Paul | 6a55e9f | 2015-04-30 15:31:06 -0400 | [diff] [blame] | 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_PROPERTY_H_ |
| 18 | #define ANDROID_DRM_PROPERTY_H_ |
| 19 | |
| 20 | #include <stdint.h> |
Sean Paul | 6a55e9f | 2015-04-30 15:31:06 -0400 | [diff] [blame] | 21 | #include <xf86drmMode.h> |
Roman Stratiienko | aa3cd54 | 2020-08-29 11:26:16 +0300 | [diff] [blame^] | 22 | |
Sean Paul | f72cccd | 2018-08-27 13:59:08 -0400 | [diff] [blame] | 23 | #include <string> |
Sean Paul | 6a55e9f | 2015-04-30 15:31:06 -0400 | [diff] [blame] | 24 | #include <vector> |
| 25 | |
| 26 | namespace android { |
| 27 | |
| 28 | enum DrmPropertyType { |
| 29 | DRM_PROPERTY_TYPE_INT, |
| 30 | DRM_PROPERTY_TYPE_ENUM, |
Sean Paul | 877be97 | 2015-06-03 14:08:27 -0400 | [diff] [blame] | 31 | DRM_PROPERTY_TYPE_OBJECT, |
Sean Paul | 85c58c6 | 2015-07-08 10:43:54 -0400 | [diff] [blame] | 32 | DRM_PROPERTY_TYPE_BLOB, |
Sean Paul | 1eb6006 | 2015-05-19 08:10:50 -0700 | [diff] [blame] | 33 | DRM_PROPERTY_TYPE_INVALID, |
Sean Paul | 6a55e9f | 2015-04-30 15:31:06 -0400 | [diff] [blame] | 34 | }; |
| 35 | |
| 36 | class DrmProperty { |
| 37 | public: |
Zach Reizner | ff30b52 | 2015-10-28 19:08:45 -0700 | [diff] [blame] | 38 | DrmProperty() = default; |
Sean Paul | 6a55e9f | 2015-04-30 15:31:06 -0400 | [diff] [blame] | 39 | DrmProperty(drmModePropertyPtr p, uint64_t value); |
Zach Reizner | ff30b52 | 2015-10-28 19:08:45 -0700 | [diff] [blame] | 40 | DrmProperty(const DrmProperty &) = delete; |
| 41 | DrmProperty &operator=(const DrmProperty &) = delete; |
Sean Paul | 6a55e9f | 2015-04-30 15:31:06 -0400 | [diff] [blame] | 42 | |
| 43 | void Init(drmModePropertyPtr p, uint64_t value); |
Lowry Li | 9b6cafd | 2018-08-28 17:58:21 +0800 | [diff] [blame] | 44 | std::tuple<uint64_t, int> GetEnumValueWithName(std::string name) const; |
Sean Paul | 6a55e9f | 2015-04-30 15:31:06 -0400 | [diff] [blame] | 45 | |
| 46 | uint32_t id() const; |
| 47 | std::string name() const; |
| 48 | |
Sean Paul | fc0b1da | 2019-03-06 09:48:42 -0500 | [diff] [blame] | 49 | std::tuple<int, uint64_t> value() const; |
Sean Paul | 2689aeb | 2019-03-13 14:36:52 -0400 | [diff] [blame] | 50 | bool is_immutable() const; |
Sean Paul | 6a55e9f | 2015-04-30 15:31:06 -0400 | [diff] [blame] | 51 | |
Alexandru Gheorghe | 2ed463c | 2019-01-08 19:21:08 +0200 | [diff] [blame] | 52 | bool is_range() const; |
| 53 | std::tuple<int, uint64_t> range_min() const; |
| 54 | std::tuple<int, uint64_t> range_max() const; |
| 55 | |
Sean Paul | 6a55e9f | 2015-04-30 15:31:06 -0400 | [diff] [blame] | 56 | private: |
| 57 | class DrmPropertyEnum { |
| 58 | public: |
| 59 | DrmPropertyEnum(drm_mode_property_enum *e); |
| 60 | ~DrmPropertyEnum(); |
| 61 | |
| 62 | uint64_t value_; |
| 63 | std::string name_; |
| 64 | }; |
| 65 | |
Zach Reizner | ff30b52 | 2015-10-28 19:08:45 -0700 | [diff] [blame] | 66 | uint32_t id_ = 0; |
Sean Paul | 6a55e9f | 2015-04-30 15:31:06 -0400 | [diff] [blame] | 67 | |
Zach Reizner | ff30b52 | 2015-10-28 19:08:45 -0700 | [diff] [blame] | 68 | DrmPropertyType type_ = DRM_PROPERTY_TYPE_INVALID; |
| 69 | uint32_t flags_ = 0; |
Sean Paul | 6a55e9f | 2015-04-30 15:31:06 -0400 | [diff] [blame] | 70 | std::string name_; |
Zach Reizner | ff30b52 | 2015-10-28 19:08:45 -0700 | [diff] [blame] | 71 | uint64_t value_ = 0; |
Sean Paul | 6a55e9f | 2015-04-30 15:31:06 -0400 | [diff] [blame] | 72 | |
| 73 | std::vector<uint64_t> values_; |
| 74 | std::vector<DrmPropertyEnum> enums_; |
| 75 | std::vector<uint32_t> blob_ids_; |
| 76 | }; |
Sean Paul | f72cccd | 2018-08-27 13:59:08 -0400 | [diff] [blame] | 77 | } // namespace android |
Sean Paul | 6a55e9f | 2015-04-30 15:31:06 -0400 | [diff] [blame] | 78 | |
| 79 | #endif // ANDROID_DRM_PROPERTY_H_ |