blob: 5472c4e3e31a14dfc80074a83dc62f0152a352b4 [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
Roman Stratiienkobde95662022-12-10 20:27:58 +020017#pragma once
Sean Paul6a55e9f2015-04-30 15:31:06 -040018
Sean Paul6a55e9f2015-04-30 15:31:06 -040019#include <xf86drmMode.h>
Roman Stratiienkoaa3cd542020-08-29 11:26:16 +030020
Roman Stratiienkoe78235c2021-12-23 17:36:12 +020021#include <cstdint>
Roman Stratiienko0f679aa2021-09-29 12:59:48 +030022#include <map>
Sean Paulf72cccd2018-08-27 13:59:08 -040023#include <string>
Sean Paul6a55e9f2015-04-30 15:31:06 -040024#include <vector>
25
26namespace android {
27
28enum DrmPropertyType {
29 DRM_PROPERTY_TYPE_INT,
30 DRM_PROPERTY_TYPE_ENUM,
Sean Paul877be972015-06-03 14:08:27 -040031 DRM_PROPERTY_TYPE_OBJECT,
Sean Paul85c58c62015-07-08 10:43:54 -040032 DRM_PROPERTY_TYPE_BLOB,
Benjamin Li9127dc82021-05-05 09:23:15 -070033 DRM_PROPERTY_TYPE_BITMASK,
Sean Paul1eb60062015-05-19 08:10:50 -070034 DRM_PROPERTY_TYPE_INVALID,
Sean Paul6a55e9f2015-04-30 15:31:06 -040035};
36
37class DrmProperty {
38 public:
Zach Reiznerff30b522015-10-28 19:08:45 -070039 DrmProperty() = default;
Roman Stratiienko7fd8f882021-09-29 12:46:54 +030040 DrmProperty(uint32_t obj_id, drmModePropertyPtr p, uint64_t value);
Zach Reiznerff30b522015-10-28 19:08:45 -070041 DrmProperty(const DrmProperty &) = delete;
42 DrmProperty &operator=(const DrmProperty &) = delete;
Sean Paul6a55e9f2015-04-30 15:31:06 -040043
Roman Stratiienko7fd8f882021-09-29 12:46:54 +030044 auto Init(uint32_t obj_id, drmModePropertyPtr p, uint64_t value) -> void;
Roman Stratiienkoe2f2c922021-02-13 10:57:47 +020045 std::tuple<uint64_t, int> GetEnumValueWithName(const std::string &name) const;
Sean Paul6a55e9f2015-04-30 15:31:06 -040046
47 uint32_t id() const;
48 std::string name() const;
49
Sean Paulfc0b1da2019-03-06 09:48:42 -050050 std::tuple<int, uint64_t> value() const;
Sean Paul2689aeb2019-03-13 14:36:52 -040051 bool is_immutable() const;
Sean Paul6a55e9f2015-04-30 15:31:06 -040052
Alexandru Gheorghe2ed463c2019-01-08 19:21:08 +020053 bool is_range() const;
54 std::tuple<int, uint64_t> range_min() const;
55 std::tuple<int, uint64_t> range_max() const;
56
Roman Stratiienko7fd8f882021-09-29 12:46:54 +030057 [[nodiscard]] auto AtomicSet(drmModeAtomicReq &pset, uint64_t value) const
58 -> bool;
59
Roman Stratiienko0f679aa2021-09-29 12:59:48 +030060 template <class E>
61 auto AddEnumToMap(const std::string &name, E key, std::map<E, uint64_t> &map)
62 -> bool;
63
Roman Stratiienkoe78235c2021-12-23 17:36:12 +020064 explicit operator bool() const {
Roman Stratiienko7fd8f882021-09-29 12:46:54 +030065 return id_ != 0;
66 }
67
Sean Paul6a55e9f2015-04-30 15:31:06 -040068 private:
69 class DrmPropertyEnum {
70 public:
Roman Stratiienkoe78235c2021-12-23 17:36:12 +020071 explicit DrmPropertyEnum(drm_mode_property_enum *e);
Roman Stratiienkoe2f2c922021-02-13 10:57:47 +020072 ~DrmPropertyEnum() = default;
Sean Paul6a55e9f2015-04-30 15:31:06 -040073
74 uint64_t value_;
75 std::string name_;
76 };
77
Roman Stratiienko7fd8f882021-09-29 12:46:54 +030078 uint32_t obj_id_ = 0;
Zach Reiznerff30b522015-10-28 19:08:45 -070079 uint32_t id_ = 0;
Sean Paul6a55e9f2015-04-30 15:31:06 -040080
Zach Reiznerff30b522015-10-28 19:08:45 -070081 DrmPropertyType type_ = DRM_PROPERTY_TYPE_INVALID;
82 uint32_t flags_ = 0;
Sean Paul6a55e9f2015-04-30 15:31:06 -040083 std::string name_;
Zach Reiznerff30b522015-10-28 19:08:45 -070084 uint64_t value_ = 0;
Sean Paul6a55e9f2015-04-30 15:31:06 -040085
86 std::vector<uint64_t> values_;
87 std::vector<DrmPropertyEnum> enums_;
88 std::vector<uint32_t> blob_ids_;
89};
Roman Stratiienko0f679aa2021-09-29 12:59:48 +030090
91template <class E>
92auto DrmProperty::AddEnumToMap(const std::string &name, E key,
93 std::map<E, uint64_t> &map) -> bool {
94 uint64_t enum_value = UINT64_MAX;
95 int err = 0;
96 std::tie(enum_value, err) = GetEnumValueWithName(name);
97 if (err == 0) {
98 map[key] = enum_value;
99 return true;
100 }
101
102 return false;
103}
104
Sean Paulf72cccd2018-08-27 13:59:08 -0400105} // namespace android