Path: blob/main/stand/efi/include/Protocol/EdidActive.h
34875 views
/** @file1EDID Active Protocol from the UEFI 2.0 specification.23Placed on the video output device child handle that is actively displaying output.45Copyright (c) 2006 - 2012, Intel Corporation. All rights reserved.<BR>6This program and the accompanying materials7are licensed and made available under the terms and conditions of the BSD License8which accompanies this distribution. The full text of the license may be found at9http://opensource.org/licenses/bsd-license.php1011THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,12WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.1314**/1516#ifndef __EDID_ACTIVE_H__17#define __EDID_ACTIVE_H__1819#define EFI_EDID_ACTIVE_PROTOCOL_GUID \20{ \210xbd8c1056, 0x9f36, 0x44ec, {0x92, 0xa8, 0xa6, 0x33, 0x7f, 0x81, 0x79, 0x86 } \22}2324///25/// This protocol contains the EDID information for an active video output device. This is either the26/// EDID information retrieved from the EFI_EDID_OVERRIDE_PROTOCOL if an override is27/// available, or an identical copy of the EDID information from the28/// EFI_EDID_DISCOVERED_PROTOCOL if no overrides are available.29///30typedef struct {31///32/// The size, in bytes, of the Edid buffer. 0 if no EDID information33/// is available from the video output device. Otherwise, it must be a34/// minimum of 128 bytes.35///36UINT32 SizeOfEdid;3738///39/// A pointer to a read-only array of bytes that contains the EDID40/// information for an active video output device. This pointer is41/// NULL if no EDID information is available for the video output42/// device. The minimum size of a valid Edid buffer is 128 bytes.43/// EDID information is defined in the E-EDID EEPROM44/// specification published by VESA (www.vesa.org).45///46UINT8 *Edid;47} EFI_EDID_ACTIVE_PROTOCOL;4849extern EFI_GUID gEfiEdidActiveProtocolGuid;5051#endif525354