]> git.proxmox.com Git - mirror_edk2.git/blame - MdePkg/Include/Protocol/EdidDiscovered.h
Code Scrub for Protocol and Ppi Definition
[mirror_edk2.git] / MdePkg / Include / Protocol / EdidDiscovered.h
CommitLineData
d1f95000 1/** @file\r
2 EDID Discovered Protocol from the UEFI 2.0 specification.\r
3\r
4 This protocol is placed on the video output device child handle and it represents\r
5 the EDID information being used for output device represented by the child handle.\r
6\r
4ca9b6c4 7 Copyright (c) 2006 - 2008, Intel Corporation \r
d1f95000 8 All rights reserved. This program and the accompanying materials \r
9 are licensed and made available under the terms and conditions of the BSD License \r
10 which accompanies this distribution. The full text of the license may be found at \r
11 http://opensource.org/licenses/bsd-license.php \r
12\r
13 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, \r
14 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. \r
15\r
d1f95000 16**/\r
17\r
18#ifndef __EDID_DISCOVERED_H__\r
19#define __EDID_DISCOVERED_H__\r
20\r
21#define EFI_EDID_DISCOVERED_PROTOCOL_GUID \\r
22 { \\r
23 0x1c0c34f6, 0xd380, 0x41fa, {0xa0, 0x49, 0x8a, 0xd0, 0x6c, 0x1a, 0x66, 0xaa } \\r
24 }\r
25\r
4ca9b6c4
LG
26/**\r
27 @par Protocol Description:\r
28 This protocol contains the EDID information retrieved from a video output device.\r
29\r
30 @param SizeOfEdid \r
31 The size, in bytes, of the Edid buffer. 0 if no EDID information\r
32 is available from the video output device. Otherwise, it must be a\r
33 minimum of 128 bytes.\r
34 \r
35 @param Edid \r
36 A pointer to a read-only array of bytes that contains the EDID\r
37 information for an active video output device. This pointer is\r
38 NULL if no EDID information is available for the video output\r
39 device. The minimum size of a valid Edid buffer is 128 bytes.\r
40 EDID information is defined in the E-DID EEPROM\r
41 specification published by VESA (www.vesa.org).\r
42**/\r
d1f95000 43typedef struct {\r
44 UINT32 SizeOfEdid;\r
45 UINT8 *Edid;\r
46} EFI_EDID_DISCOVERED_PROTOCOL;\r
47\r
48extern EFI_GUID gEfiEdidDiscoveredProtocolGuid;\r
49\r
50#endif\r