Dominik Laskowski | e9ef7c4 | 2018-03-12 19:34:30 -0700 | [diff] [blame] | 1 | /* |
| 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 Laskowski | 075d317 | 2018-05-24 15:50:06 -0700 | [diff] [blame] | 22 | #include <string> |
Dominik Laskowski | e9ef7c4 | 2018-03-12 19:34:30 -0700 | [diff] [blame] | 23 | #include <string_view> |
| 24 | #include <vector> |
| 25 | |
Marin Shalamanov | f5de90d | 2019-10-08 10:57:25 +0200 | [diff] [blame] | 26 | #include <ui/DeviceProductInfo.h> |
Dominik Laskowski | 5acb2b8 | 2019-11-01 13:16:38 -0700 | [diff] [blame] | 27 | #include <ui/PhysicalDisplayId.h> |
Dominik Laskowski | dcb38bb | 2019-01-25 02:35:50 -0800 | [diff] [blame] | 28 | |
Dominik Laskowski | e9ef7c4 | 2018-03-12 19:34:30 -0700 | [diff] [blame] | 29 | namespace android { |
| 30 | |
Dominik Laskowski | 3415776 | 2018-10-31 13:07:19 -0700 | [diff] [blame] | 31 | struct DisplayId { |
Dominik Laskowski | dcb38bb | 2019-01-25 02:35:50 -0800 | [diff] [blame] | 32 | using Type = PhysicalDisplayId; |
Dominik Laskowski | 3415776 | 2018-10-31 13:07:19 -0700 | [diff] [blame] | 33 | Type value; |
| 34 | |
| 35 | uint16_t manufacturerId() const; |
| 36 | |
Dominik Laskowski | 1733796 | 2020-03-02 15:51:15 -0800 | [diff] [blame] | 37 | static DisplayId fromEdid(uint8_t port, uint16_t manufacturerId, uint32_t modelHash); |
Dominik Laskowski | 3415776 | 2018-10-31 13:07:19 -0700 | [diff] [blame] | 38 | }; |
| 39 | |
| 40 | inline bool operator==(DisplayId lhs, DisplayId rhs) { |
| 41 | return lhs.value == rhs.value; |
| 42 | } |
| 43 | |
| 44 | inline bool operator!=(DisplayId lhs, DisplayId rhs) { |
| 45 | return !(lhs == rhs); |
| 46 | } |
| 47 | |
| 48 | inline std::string to_string(DisplayId displayId) { |
| 49 | return std::to_string(displayId.value); |
| 50 | } |
| 51 | |
Dominik Laskowski | e9ef7c4 | 2018-03-12 19:34:30 -0700 | [diff] [blame] | 52 | using DisplayIdentificationData = std::vector<uint8_t>; |
| 53 | |
Dominik Laskowski | 075d317 | 2018-05-24 15:50:06 -0700 | [diff] [blame] | 54 | struct DisplayIdentificationInfo { |
| 55 | DisplayId id; |
| 56 | std::string name; |
Marin Shalamanov | f5de90d | 2019-10-08 10:57:25 +0200 | [diff] [blame] | 57 | std::optional<DeviceProductInfo> deviceProductInfo; |
Dominik Laskowski | 075d317 | 2018-05-24 15:50:06 -0700 | [diff] [blame] | 58 | }; |
| 59 | |
Marin Shalamanov | 7a9ba30 | 2020-03-02 17:49:16 +0100 | [diff] [blame] | 60 | struct ExtensionBlock { |
| 61 | uint8_t tag; |
| 62 | uint8_t revisionNumber; |
| 63 | }; |
| 64 | |
| 65 | struct HdmiPhysicalAddress { |
| 66 | // The address describes the path from the display sink in the network of connected HDMI |
| 67 | // devices. The format of the address is "a.b.c.d". For example, address 2.1.0.0 means we are |
| 68 | // connected to port 1 of a device which is connected to port 2 of the sink. |
| 69 | uint8_t a, b, c, d; |
| 70 | }; |
| 71 | |
| 72 | struct HdmiVendorDataBlock { |
Marin Shalamanov | 896e630 | 2020-04-06 16:11:25 +0200 | [diff] [blame^] | 73 | HdmiPhysicalAddress physicalAddress; |
Marin Shalamanov | 7a9ba30 | 2020-03-02 17:49:16 +0100 | [diff] [blame] | 74 | }; |
| 75 | |
| 76 | struct Cea861ExtensionBlock : ExtensionBlock { |
| 77 | std::optional<HdmiVendorDataBlock> hdmiVendorDataBlock; |
| 78 | }; |
| 79 | |
Dominik Laskowski | e9ef7c4 | 2018-03-12 19:34:30 -0700 | [diff] [blame] | 80 | struct Edid { |
| 81 | uint16_t manufacturerId; |
Marin Shalamanov | f5de90d | 2019-10-08 10:57:25 +0200 | [diff] [blame] | 82 | uint16_t productId; |
Dominik Laskowski | e9ef7c4 | 2018-03-12 19:34:30 -0700 | [diff] [blame] | 83 | PnpId pnpId; |
Dominik Laskowski | 1733796 | 2020-03-02 15:51:15 -0800 | [diff] [blame] | 84 | uint32_t modelHash; |
Dominik Laskowski | e9ef7c4 | 2018-03-12 19:34:30 -0700 | [diff] [blame] | 85 | std::string_view displayName; |
Marin Shalamanov | f5de90d | 2019-10-08 10:57:25 +0200 | [diff] [blame] | 86 | uint8_t manufactureOrModelYear; |
| 87 | uint8_t manufactureWeek; |
Marin Shalamanov | 7a9ba30 | 2020-03-02 17:49:16 +0100 | [diff] [blame] | 88 | std::optional<Cea861ExtensionBlock> cea861Block; |
Dominik Laskowski | e9ef7c4 | 2018-03-12 19:34:30 -0700 | [diff] [blame] | 89 | }; |
| 90 | |
| 91 | bool isEdid(const DisplayIdentificationData&); |
| 92 | std::optional<Edid> parseEdid(const DisplayIdentificationData&); |
| 93 | std::optional<PnpId> getPnpId(uint16_t manufacturerId); |
Dominik Laskowski | 3415776 | 2018-10-31 13:07:19 -0700 | [diff] [blame] | 94 | std::optional<PnpId> getPnpId(DisplayId); |
Dominik Laskowski | e9ef7c4 | 2018-03-12 19:34:30 -0700 | [diff] [blame] | 95 | |
Dominik Laskowski | 075d317 | 2018-05-24 15:50:06 -0700 | [diff] [blame] | 96 | std::optional<DisplayIdentificationInfo> parseDisplayIdentificationData( |
| 97 | uint8_t port, const DisplayIdentificationData&); |
| 98 | |
| 99 | DisplayId getFallbackDisplayId(uint8_t port); |
| 100 | DisplayId getVirtualDisplayId(uint32_t id); |
Dominik Laskowski | e9ef7c4 | 2018-03-12 19:34:30 -0700 | [diff] [blame] | 101 | |
| 102 | } // namespace android |
Dominik Laskowski | 3415776 | 2018-10-31 13:07:19 -0700 | [diff] [blame] | 103 | |
| 104 | namespace std { |
| 105 | |
| 106 | template <> |
| 107 | struct hash<android::DisplayId> { |
| 108 | size_t operator()(android::DisplayId displayId) const { |
| 109 | return hash<android::DisplayId::Type>()(displayId.value); |
| 110 | } |
| 111 | }; |
| 112 | |
| 113 | } // namespace std |