]> git.proxmox.com Git - mirror_edk2.git/blame - MdePkg/Include/Protocol/EdidDiscovered.h
Remove Smbus related macro, which are defined in MdePkg.
[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
4ca9b6c4 29**/\r
d1f95000 30typedef struct {\r
a4e0b060 31 ///\r
32 /// The size, in bytes, of the Edid buffer. 0 if no EDID information\r
33 /// is available from the video output device. Otherwise, it must be a\r
34 /// minimum of 128 bytes.\r
35 ///\r
d1f95000 36 UINT32 SizeOfEdid;\r
a4e0b060 37 \r
38 ///\r
39 /// A pointer to a read-only array of bytes that contains the EDID\r
40 /// information for an active video output device. This pointer is\r
41 /// NULL if no EDID information is available for the video output\r
42 /// device. The minimum size of a valid Edid buffer is 128 bytes.\r
43 /// EDID information is defined in the E-DID EEPROM\r
44 /// specification published by VESA (www.vesa.org).\r
45 /// \r
d1f95000 46 UINT8 *Edid;\r
47} EFI_EDID_DISCOVERED_PROTOCOL;\r
48\r
49extern EFI_GUID gEfiEdidDiscoveredProtocolGuid;\r
50\r
51#endif\r