blob: 36cd63d211543744949a7fba0a411f8eed5e4e85 [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
17#ifndef ANDROID_DRM_PROPERTY_H_
18#define ANDROID_DRM_PROPERTY_H_
19
20#include <stdint.h>
Sean Paul6a55e9f2015-04-30 15:31:06 -040021#include <xf86drmMode.h>
Sean Paulf72cccd2018-08-27 13:59:08 -040022#include <string>
Sean Paul6a55e9f2015-04-30 15:31:06 -040023#include <vector>
24
25namespace android {
26
27enum DrmPropertyType {
28 DRM_PROPERTY_TYPE_INT,
29 DRM_PROPERTY_TYPE_ENUM,
Sean Paul877be972015-06-03 14:08:27 -040030 DRM_PROPERTY_TYPE_OBJECT,
Sean Paul85c58c62015-07-08 10:43:54 -040031 DRM_PROPERTY_TYPE_BLOB,
Sean Paul1eb60062015-05-19 08:10:50 -070032 DRM_PROPERTY_TYPE_INVALID,
Sean Paul6a55e9f2015-04-30 15:31:06 -040033};
34
35class DrmProperty {
36 public:
Zach Reiznerff30b522015-10-28 19:08:45 -070037 DrmProperty() = default;
Sean Paul6a55e9f2015-04-30 15:31:06 -040038 DrmProperty(drmModePropertyPtr p, uint64_t value);
Zach Reiznerff30b522015-10-28 19:08:45 -070039 DrmProperty(const DrmProperty &) = delete;
40 DrmProperty &operator=(const DrmProperty &) = delete;
Sean Paul6a55e9f2015-04-30 15:31:06 -040041
42 void Init(drmModePropertyPtr p, uint64_t value);
Lowry Li9b6cafd2018-08-28 17:58:21 +080043 std::tuple<uint64_t, int> GetEnumValueWithName(std::string name) const;
Sean Paul6a55e9f2015-04-30 15:31:06 -040044
45 uint32_t id() const;
46 std::string name() const;
47
Sean Paulfc0b1da2019-03-06 09:48:42 -050048 std::tuple<int, uint64_t> value() const;
Alexandru Gheorgheea1c5e52018-09-17 10:48:54 +010049 bool immutable() const;
Sean Paul6a55e9f2015-04-30 15:31:06 -040050
51 private:
52 class DrmPropertyEnum {
53 public:
54 DrmPropertyEnum(drm_mode_property_enum *e);
55 ~DrmPropertyEnum();
56
57 uint64_t value_;
58 std::string name_;
59 };
60
Zach Reiznerff30b522015-10-28 19:08:45 -070061 uint32_t id_ = 0;
Sean Paul6a55e9f2015-04-30 15:31:06 -040062
Zach Reiznerff30b522015-10-28 19:08:45 -070063 DrmPropertyType type_ = DRM_PROPERTY_TYPE_INVALID;
64 uint32_t flags_ = 0;
Sean Paul6a55e9f2015-04-30 15:31:06 -040065 std::string name_;
Zach Reiznerff30b522015-10-28 19:08:45 -070066 uint64_t value_ = 0;
Sean Paul6a55e9f2015-04-30 15:31:06 -040067
68 std::vector<uint64_t> values_;
69 std::vector<DrmPropertyEnum> enums_;
70 std::vector<uint32_t> blob_ids_;
71};
Sean Paulf72cccd2018-08-27 13:59:08 -040072} // namespace android
Sean Paul6a55e9f2015-04-30 15:31:06 -040073
74#endif // ANDROID_DRM_PROPERTY_H_