blob: 4819d1d18b0a4487134823f5cbb56dfabf7964ff [file] [log] [blame]
Dominik Laskowskie9ef7c42018-03-12 19:34:30 -07001/*
2 * Copyright (C) 2018 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#pragma once
18
19#include <array>
20#include <cstdint>
21#include <optional>
Dominik Laskowski075d3172018-05-24 15:50:06 -070022#include <string>
Dominik Laskowskie9ef7c42018-03-12 19:34:30 -070023#include <string_view>
24#include <vector>
25
Marin Shalamanovf5de90d2019-10-08 10:57:25 +020026#include <ui/DeviceProductInfo.h>
Dominik Laskowski5acb2b82019-11-01 13:16:38 -070027#include <ui/PhysicalDisplayId.h>
Dominik Laskowskidcb38bb2019-01-25 02:35:50 -080028
Peiyong Lin65248e02020-04-18 21:15:07 -070029#define LEGACY_DISPLAY_TYPE_PRIMARY 0
30#define LEGACY_DISPLAY_TYPE_EXTERNAL 1
31
Dominik Laskowskie9ef7c42018-03-12 19:34:30 -070032namespace android {
33
Dominik Laskowski34157762018-10-31 13:07:19 -070034struct DisplayId {
Dominik Laskowskidcb38bb2019-01-25 02:35:50 -080035 using Type = PhysicalDisplayId;
Dominik Laskowski34157762018-10-31 13:07:19 -070036 Type value;
37
38 uint16_t manufacturerId() const;
39
Dominik Laskowski17337962020-03-02 15:51:15 -080040 static DisplayId fromEdid(uint8_t port, uint16_t manufacturerId, uint32_t modelHash);
Dominik Laskowski34157762018-10-31 13:07:19 -070041};
42
43inline bool operator==(DisplayId lhs, DisplayId rhs) {
44 return lhs.value == rhs.value;
45}
46
47inline bool operator!=(DisplayId lhs, DisplayId rhs) {
48 return !(lhs == rhs);
49}
50
51inline std::string to_string(DisplayId displayId) {
52 return std::to_string(displayId.value);
53}
54
Dominik Laskowskie9ef7c42018-03-12 19:34:30 -070055using DisplayIdentificationData = std::vector<uint8_t>;
56
Dominik Laskowski075d3172018-05-24 15:50:06 -070057struct DisplayIdentificationInfo {
58 DisplayId id;
59 std::string name;
Marin Shalamanovf5de90d2019-10-08 10:57:25 +020060 std::optional<DeviceProductInfo> deviceProductInfo;
Dominik Laskowski075d3172018-05-24 15:50:06 -070061};
62
Marin Shalamanovf1274d42020-03-02 17:49:16 +010063struct ExtensionBlock {
64 uint8_t tag;
65 uint8_t revisionNumber;
66};
67
68struct HdmiPhysicalAddress {
69 // The address describes the path from the display sink in the network of connected HDMI
70 // devices. The format of the address is "a.b.c.d". For example, address 2.1.0.0 means we are
71 // connected to port 1 of a device which is connected to port 2 of the sink.
72 uint8_t a, b, c, d;
73};
74
75struct HdmiVendorDataBlock {
Marin Shalamanovdac1acb2020-04-06 16:11:25 +020076 HdmiPhysicalAddress physicalAddress;
Marin Shalamanovf1274d42020-03-02 17:49:16 +010077};
78
79struct Cea861ExtensionBlock : ExtensionBlock {
80 std::optional<HdmiVendorDataBlock> hdmiVendorDataBlock;
81};
82
Dominik Laskowskie9ef7c42018-03-12 19:34:30 -070083struct Edid {
84 uint16_t manufacturerId;
Marin Shalamanovf5de90d2019-10-08 10:57:25 +020085 uint16_t productId;
Dominik Laskowskie9ef7c42018-03-12 19:34:30 -070086 PnpId pnpId;
Dominik Laskowski17337962020-03-02 15:51:15 -080087 uint32_t modelHash;
Dominik Laskowskie9ef7c42018-03-12 19:34:30 -070088 std::string_view displayName;
Marin Shalamanovf5de90d2019-10-08 10:57:25 +020089 uint8_t manufactureOrModelYear;
90 uint8_t manufactureWeek;
Marin Shalamanovf1274d42020-03-02 17:49:16 +010091 std::optional<Cea861ExtensionBlock> cea861Block;
Dominik Laskowskie9ef7c42018-03-12 19:34:30 -070092};
93
94bool isEdid(const DisplayIdentificationData&);
95std::optional<Edid> parseEdid(const DisplayIdentificationData&);
96std::optional<PnpId> getPnpId(uint16_t manufacturerId);
Dominik Laskowski34157762018-10-31 13:07:19 -070097std::optional<PnpId> getPnpId(DisplayId);
Dominik Laskowskie9ef7c42018-03-12 19:34:30 -070098
Dominik Laskowski075d3172018-05-24 15:50:06 -070099std::optional<DisplayIdentificationInfo> parseDisplayIdentificationData(
100 uint8_t port, const DisplayIdentificationData&);
101
102DisplayId getFallbackDisplayId(uint8_t port);
103DisplayId getVirtualDisplayId(uint32_t id);
Dominik Laskowskie9ef7c42018-03-12 19:34:30 -0700104
105} // namespace android
Dominik Laskowski34157762018-10-31 13:07:19 -0700106
107namespace std {
108
109template <>
110struct hash<android::DisplayId> {
111 size_t operator()(android::DisplayId displayId) const {
112 return hash<android::DisplayId::Type>()(displayId.value);
113 }
114};
115
116} // namespace std