From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from atlmailgw1.ami.com (atlmailgw1.ami.com [63.147.10.40]) by mx.groups.io with SMTP id smtpd.web10.11027.1592929824035415510 for ; Tue, 23 Jun 2020 09:30:24 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=pass (domain: ami.com, ip: 63.147.10.40, mailfrom: oleksiyy@ami.com) X-AuditID: ac1060b2-ed1ff70000003d78-f9-5ef22e1e2c94 Received: from atlms1.us.megatrends.com (atlms1.us.megatrends.com [172.16.96.144]) (using TLS with cipher ECDHE-RSA-AES256-SHA384 (256/256 bits)) (Client did not present a certificate) by atlmailgw1.ami.com (Symantec Messaging Gateway) with SMTP id 53.C5.15736.F1E22FE5; Tue, 23 Jun 2020 12:30:23 -0400 (EDT) Received: from Oleksiy77.us.megatrends.com (172.16.97.158) by atlms1.us.megatrends.com (172.16.96.144) with Microsoft SMTP Server id 14.3.468.0; Tue, 23 Jun 2020 12:29:28 -0400 From: "Oleksiy Yakovlev" To: CC: , , , Subject: [PATCH] MdePkg: Add Serial Terminal Device Type Guid Date: Tue, 23 Jun 2020 12:29:27 -0400 Message-ID: <20200623162927.82884-1-oleksiyy@ami.com> X-Mailer: git-send-email 2.9.0.windows.1 MIME-Version: 1.0 Return-Path: oleksiyy@ami.com X-Brightmail-Tracker: H4sIAAAAAAAAA+NgFprOIsWRmVeSWpSXmKPExsWyRiBhgq683qc4g83PeS3aJ8xms1hxbwO7 RUfHPyYHZo/t3y8weize85IpgCmqgdEmMS8vvySxJFUhJbU42VYpoCizLDG5UkkhM8VWyVBJ oSAnMTk1NzWvxFYpsaAgNS9FyY5LAQPYAJVl5imk5iXnp2TmpdsqeQb761pYmFrqGirZhWSk KmTmpeUX5SaWZObnKSTn55UAVaemAEUVEro5MxZP/cFUcIa34svpd+wNjG3cXYwcHBICJhId exy6GLk4hAR2MUm0rt3KBuFsYZT4dWUqkMPJwSagKXHg2BRGEFtEQEpiyoGZTCA2s0CCxN0b 98BqhAVsJa786gGrYRFQlbjy5jQ7iM0rYCrx/Pt9VhBbQkBDYtqau0wQcUGJkzOfsEDMkZA4 +OIFM4gtJCAr0Xb8OfsERt5ZSMpmISlbwMi0ilEosSQnNzEzJ73cUC8xN1MvOT93EyMkVjbt YGy5aH6IkYmD8RCjBAezkgjv64B3cUK8KYmVValF+fFFpTmpxYcYnYAOncgsxQ0KKGDIxxsb GEiJwjiGJmYm5kbmhpYm5sbGSuK8k9euiRMSSAfGYHZqakFqEcwQJg5OqQZGvdwpD/zuSd/I OMF97o6ngRGDXk1JEucf+dl3Ep59njdf+snyZT2ivbHz2E9b8M1uLsphNn/S3nSmdJGQm5yM 0l3V+fVrJL5vuMZ8RkKxbo4hl3gku+IDLn8l9iUdv8ymrss5d6bhi68/V2xsAEvkxp5in7Ap lysmMnZ+U6zZ9K4m/6juhNlKLMUZiYZazEXFiQD9TKXHqgIAAA== Content-Type: text/plain Add definition of EFI_SERIAL_TERMINAL_DEVICE_TYPE_GUID. It was miseed in "Extend SERIAL_IO with DeviceTypeGuid" patch. (UEFI 2.8, mantis 1832) Signed-off-by: Oleksiy Yakovlev --- MdePkg/Include/Protocol/SerialIo.h | 6 ++++++ MdePkg/MdePkg.dec | 6 ++++++ 2 files changed, 12 insertions(+) diff --git a/MdePkg/Include/Protocol/SerialIo.h b/MdePkg/Include/Protocol/SerialIo.h index e2e0c61..16a865b 100644 --- a/MdePkg/Include/Protocol/SerialIo.h +++ b/MdePkg/Include/Protocol/SerialIo.h @@ -17,6 +17,11 @@ 0xBB25CF6F, 0xF1D4, 0x11D2, {0x9A, 0x0C, 0x00, 0x90, 0x27, 0x3F, 0xC1, 0xFD } \ } +#define EFI_SERIAL_TERMINAL_DEVICE_TYPE_GUID \ + { \ + 0X6AD9A60F, 0X5815, 0X4C7C, { 0X8A, 0X10, 0X50, 0X53, 0XD2, 0XBF, 0X7A, 0X1B } \ + } + /// /// Protocol GUID defined in EFI1.1. /// @@ -299,5 +304,6 @@ struct _EFI_SERIAL_IO_PROTOCOL { }; extern EFI_GUID gEfiSerialIoProtocolGuid; +extern EFI_GUID gEfiSerialTerminalDeviceTypeGuid; #endif diff --git a/MdePkg/MdePkg.dec b/MdePkg/MdePkg.dec index d03fc5b..2ffb71d 100644 --- a/MdePkg/MdePkg.dec +++ b/MdePkg/MdePkg.dec @@ -798,6 +798,12 @@ # gTianoCustomDecompressGuid = { 0xA31280AD, 0x481E, 0x41B6, { 0x95, 0xE8, 0x12, 0x7F, 0x4C, 0x98, 0x47, 0x79 }} + # + # GUID defined For Serial Io Prtotocol Devicee Type + # + ## Include/Protocol/SerilaIo.h + gEfiSerialTerminalDeviceTypeGuid = { 0x6AD9A60F, 0x5815, 0x4C7C, { 0x08A, 0x10, 0x50, 0x53, 0xD2, 0xBF, 0x7A, 0x1B }} + [Guids.IA32, Guids.X64] ## Include/Guid/Cper.h gEfiIa32X64ErrorTypeCacheCheckGuid = { 0xA55701F5, 0xE3EF, 0x43de, { 0xAC, 0x72, 0x24, 0x9B, 0x57, 0x3F, 0xAD, 0x2C }} -- 2.9.0.windows.1 Please consider the environment before printing this email. The information contained in this message may be confidential and proprietary to American Megatrends (AMI). This communication is intended to be read only by the individual or entity to whom it is addressed or by their designee. If the reader of this message is not the intended recipient, you are on notice that any distribution of this message, in any form, is strictly prohibited. Please promptly notify the sender by reply e-mail or by telephone at 770-246-8600, and then delete or destroy all copies of the transmission.