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 | |
Roman Stratiienko | 0f679aa | 2021-09-29 12:59:48 +0300 | [diff] [blame^] | 23 | #include <map> |
Sean Paul | f72cccd | 2018-08-27 13:59:08 -0400 | [diff] [blame] | 24 | #include <string> |
Sean Paul | 6a55e9f | 2015-04-30 15:31:06 -0400 | [diff] [blame] | 25 | #include <vector> |
| 26 | |
| 27 | namespace android { |
| 28 | |
| 29 | enum DrmPropertyType { |
| 30 | DRM_PROPERTY_TYPE_INT, |
| 31 | DRM_PROPERTY_TYPE_ENUM, |
Sean Paul | 877be97 | 2015-06-03 14:08:27 -0400 | [diff] [blame] | 32 | DRM_PROPERTY_TYPE_OBJECT, |
Sean Paul | 85c58c6 | 2015-07-08 10:43:54 -0400 | [diff] [blame] | 33 | DRM_PROPERTY_TYPE_BLOB, |
Benjamin Li | 9127dc8 | 2021-05-05 09:23:15 -0700 | [diff] [blame] | 34 | DRM_PROPERTY_TYPE_BITMASK, |
Sean Paul | 1eb6006 | 2015-05-19 08:10:50 -0700 | [diff] [blame] | 35 | DRM_PROPERTY_TYPE_INVALID, |
Sean Paul | 6a55e9f | 2015-04-30 15:31:06 -0400 | [diff] [blame] | 36 | }; |
| 37 | |
| 38 | class DrmProperty { |
| 39 | public: |
Zach Reizner | ff30b52 | 2015-10-28 19:08:45 -0700 | [diff] [blame] | 40 | DrmProperty() = default; |
Roman Stratiienko | 7fd8f88 | 2021-09-29 12:46:54 +0300 | [diff] [blame] | 41 | DrmProperty(uint32_t obj_id, drmModePropertyPtr p, uint64_t value); |
Zach Reizner | ff30b52 | 2015-10-28 19:08:45 -0700 | [diff] [blame] | 42 | DrmProperty(const DrmProperty &) = delete; |
| 43 | DrmProperty &operator=(const DrmProperty &) = delete; |
Sean Paul | 6a55e9f | 2015-04-30 15:31:06 -0400 | [diff] [blame] | 44 | |
Roman Stratiienko | 7fd8f88 | 2021-09-29 12:46:54 +0300 | [diff] [blame] | 45 | auto Init(uint32_t obj_id, drmModePropertyPtr p, uint64_t value) -> void; |
Roman Stratiienko | e2f2c92 | 2021-02-13 10:57:47 +0200 | [diff] [blame] | 46 | std::tuple<uint64_t, int> GetEnumValueWithName(const std::string &name) const; |
Sean Paul | 6a55e9f | 2015-04-30 15:31:06 -0400 | [diff] [blame] | 47 | |
| 48 | uint32_t id() const; |
| 49 | std::string name() const; |
| 50 | |
Sean Paul | fc0b1da | 2019-03-06 09:48:42 -0500 | [diff] [blame] | 51 | std::tuple<int, uint64_t> value() const; |
Sean Paul | 2689aeb | 2019-03-13 14:36:52 -0400 | [diff] [blame] | 52 | bool is_immutable() const; |
Sean Paul | 6a55e9f | 2015-04-30 15:31:06 -0400 | [diff] [blame] | 53 | |
Alexandru Gheorghe | 2ed463c | 2019-01-08 19:21:08 +0200 | [diff] [blame] | 54 | bool is_range() const; |
| 55 | std::tuple<int, uint64_t> range_min() const; |
| 56 | std::tuple<int, uint64_t> range_max() const; |
| 57 | |
Roman Stratiienko | 7fd8f88 | 2021-09-29 12:46:54 +0300 | [diff] [blame] | 58 | [[nodiscard]] auto AtomicSet(drmModeAtomicReq &pset, uint64_t value) const |
| 59 | -> bool; |
| 60 | |
Roman Stratiienko | 0f679aa | 2021-09-29 12:59:48 +0300 | [diff] [blame^] | 61 | template <class E> |
| 62 | auto AddEnumToMap(const std::string &name, E key, std::map<E, uint64_t> &map) |
| 63 | -> bool; |
| 64 | |
Roman Stratiienko | 7fd8f88 | 2021-09-29 12:46:54 +0300 | [diff] [blame] | 65 | operator bool() const { |
| 66 | return id_ != 0; |
| 67 | } |
| 68 | |
Sean Paul | 6a55e9f | 2015-04-30 15:31:06 -0400 | [diff] [blame] | 69 | private: |
| 70 | class DrmPropertyEnum { |
| 71 | public: |
| 72 | DrmPropertyEnum(drm_mode_property_enum *e); |
Roman Stratiienko | e2f2c92 | 2021-02-13 10:57:47 +0200 | [diff] [blame] | 73 | ~DrmPropertyEnum() = default; |
Sean Paul | 6a55e9f | 2015-04-30 15:31:06 -0400 | [diff] [blame] | 74 | |
| 75 | uint64_t value_; |
| 76 | std::string name_; |
| 77 | }; |
| 78 | |
Roman Stratiienko | 7fd8f88 | 2021-09-29 12:46:54 +0300 | [diff] [blame] | 79 | uint32_t obj_id_ = 0; |
Zach Reizner | ff30b52 | 2015-10-28 19:08:45 -0700 | [diff] [blame] | 80 | uint32_t id_ = 0; |
Sean Paul | 6a55e9f | 2015-04-30 15:31:06 -0400 | [diff] [blame] | 81 | |
Zach Reizner | ff30b52 | 2015-10-28 19:08:45 -0700 | [diff] [blame] | 82 | DrmPropertyType type_ = DRM_PROPERTY_TYPE_INVALID; |
| 83 | uint32_t flags_ = 0; |
Sean Paul | 6a55e9f | 2015-04-30 15:31:06 -0400 | [diff] [blame] | 84 | std::string name_; |
Zach Reizner | ff30b52 | 2015-10-28 19:08:45 -0700 | [diff] [blame] | 85 | uint64_t value_ = 0; |
Sean Paul | 6a55e9f | 2015-04-30 15:31:06 -0400 | [diff] [blame] | 86 | |
| 87 | std::vector<uint64_t> values_; |
| 88 | std::vector<DrmPropertyEnum> enums_; |
| 89 | std::vector<uint32_t> blob_ids_; |
| 90 | }; |
Roman Stratiienko | 0f679aa | 2021-09-29 12:59:48 +0300 | [diff] [blame^] | 91 | |
| 92 | template <class E> |
| 93 | auto DrmProperty::AddEnumToMap(const std::string &name, E key, |
| 94 | std::map<E, uint64_t> &map) -> bool { |
| 95 | uint64_t enum_value = UINT64_MAX; |
| 96 | int err = 0; |
| 97 | std::tie(enum_value, err) = GetEnumValueWithName(name); |
| 98 | if (err == 0) { |
| 99 | map[key] = enum_value; |
| 100 | return true; |
| 101 | } |
| 102 | |
| 103 | return false; |
| 104 | } |
| 105 | |
Sean Paul | f72cccd | 2018-08-27 13:59:08 -0400 | [diff] [blame] | 106 | } // namespace android |
Sean Paul | 6a55e9f | 2015-04-30 15:31:06 -0400 | [diff] [blame] | 107 | |
| 108 | #endif // ANDROID_DRM_PROPERTY_H_ |