blob: fbea4e5fe3189d1afdfa0cffd2390ede0f1ed8d4 [file] [log] [blame]
Dominik Laskowskie9ef7c42018-03-12 19:34:30 -07001/*
Marin Shalamanova524a092020-07-27 21:39:55 +02002 * Copyright 2018 The Android Open Source Project
Dominik Laskowskie9ef7c42018-03-12 19:34:30 -07003 *
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>
Marin Shalamanova524a092020-07-27 21:39:55 +020027#include <ui/DisplayId.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 -070034
Dominik Laskowskie9ef7c42018-03-12 19:34:30 -070035using DisplayIdentificationData = std::vector<uint8_t>;
36
Dominik Laskowski075d3172018-05-24 15:50:06 -070037struct DisplayIdentificationInfo {
Marin Shalamanova524a092020-07-27 21:39:55 +020038 PhysicalDisplayId id;
Dominik Laskowski075d3172018-05-24 15:50:06 -070039 std::string name;
Marin Shalamanovf5de90d2019-10-08 10:57:25 +020040 std::optional<DeviceProductInfo> deviceProductInfo;
Dominik Laskowski075d3172018-05-24 15:50:06 -070041};
42
Marin Shalamanov7a9ba302020-03-02 17:49:16 +010043struct ExtensionBlock {
44 uint8_t tag;
45 uint8_t revisionNumber;
46};
47
48struct HdmiPhysicalAddress {
49 // The address describes the path from the display sink in the network of connected HDMI
50 // devices. The format of the address is "a.b.c.d". For example, address 2.1.0.0 means we are
51 // connected to port 1 of a device which is connected to port 2 of the sink.
52 uint8_t a, b, c, d;
53};
54
55struct HdmiVendorDataBlock {
Marin Shalamanov896e6302020-04-06 16:11:25 +020056 HdmiPhysicalAddress physicalAddress;
Marin Shalamanov7a9ba302020-03-02 17:49:16 +010057};
58
59struct Cea861ExtensionBlock : ExtensionBlock {
60 std::optional<HdmiVendorDataBlock> hdmiVendorDataBlock;
61};
62
Dominik Laskowskie9ef7c42018-03-12 19:34:30 -070063struct Edid {
64 uint16_t manufacturerId;
Marin Shalamanovf5de90d2019-10-08 10:57:25 +020065 uint16_t productId;
Dominik Laskowskie9ef7c42018-03-12 19:34:30 -070066 PnpId pnpId;
Dominik Laskowski17337962020-03-02 15:51:15 -080067 uint32_t modelHash;
Dominik Laskowskie9ef7c42018-03-12 19:34:30 -070068 std::string_view displayName;
Marin Shalamanovf5de90d2019-10-08 10:57:25 +020069 uint8_t manufactureOrModelYear;
70 uint8_t manufactureWeek;
Marin Shalamanov7a9ba302020-03-02 17:49:16 +010071 std::optional<Cea861ExtensionBlock> cea861Block;
Dominik Laskowskie9ef7c42018-03-12 19:34:30 -070072};
73
74bool isEdid(const DisplayIdentificationData&);
75std::optional<Edid> parseEdid(const DisplayIdentificationData&);
76std::optional<PnpId> getPnpId(uint16_t manufacturerId);
Marin Shalamanova524a092020-07-27 21:39:55 +020077std::optional<PnpId> getPnpId(PhysicalDisplayId);
Dominik Laskowskie9ef7c42018-03-12 19:34:30 -070078
Dominik Laskowski075d3172018-05-24 15:50:06 -070079std::optional<DisplayIdentificationInfo> parseDisplayIdentificationData(
80 uint8_t port, const DisplayIdentificationData&);
81
Marin Shalamanova524a092020-07-27 21:39:55 +020082PhysicalDisplayId getVirtualDisplayId(uint32_t id);
Dominik Laskowskie9ef7c42018-03-12 19:34:30 -070083
84} // namespace android
Dominik Laskowski34157762018-10-31 13:07:19 -070085