From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received-SPF: Pass (sender SPF authorized) identity=mailfrom; client-ip=134.134.136.24; helo=mga09.intel.com; envelope-from=liming.gao@intel.com; receiver=edk2-devel@lists.01.org Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ml01.01.org (Postfix) with ESMTPS id 8CA1E2063D77A for ; Tue, 22 May 2018 19:44:36 -0700 (PDT) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga003.fm.intel.com ([10.253.24.29]) by orsmga102.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 22 May 2018 19:44:36 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.49,431,1520924400"; d="scan'208";a="51428471" Received: from fmsmsx105.amr.corp.intel.com ([10.18.124.203]) by FMSMGA003.fm.intel.com with ESMTP; 22 May 2018 19:44:36 -0700 Received: from fmsmsx116.amr.corp.intel.com (10.18.116.20) by FMSMSX105.amr.corp.intel.com (10.18.124.203) with Microsoft SMTP Server (TLS) id 14.3.319.2; Tue, 22 May 2018 19:44:35 -0700 Received: from shsmsx101.ccr.corp.intel.com (10.239.4.153) by fmsmsx116.amr.corp.intel.com (10.18.116.20) with Microsoft SMTP Server (TLS) id 14.3.319.2; Tue, 22 May 2018 19:44:35 -0700 Received: from shsmsx104.ccr.corp.intel.com ([169.254.5.240]) by SHSMSX101.ccr.corp.intel.com ([169.254.1.40]) with mapi id 14.03.0319.002; Wed, 23 May 2018 10:44:33 +0800 From: "Gao, Liming" To: "Marvin.Haeuser@outlook.com" , "edk2-devel@lists.01.org" CC: "Kinney, Michael D" Thread-Topic: [PATCH v2] MdePkg/Hpet: Add Event Timer Block ID definition. Thread-Index: AQHT7dxmS4POE7uX0ESmSWnurigC8qQ8pCrw Date: Wed, 23 May 2018 02:44:32 +0000 Message-ID: <4A89E2EF3DFEDB4C8BFDE51014F606A14E22F1CA@SHSMSX104.ccr.corp.intel.com> References: In-Reply-To: Accept-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-originating-ip: [10.239.127.40] MIME-Version: 1.0 Subject: Re: [PATCH v2] MdePkg/Hpet: Add Event Timer Block ID definition. X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 May 2018 02:44:36 -0000 Content-Language: en-US Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Reviewed-by: Liming Gao >-----Original Message----- >From: edk2-devel [mailto:edk2-devel-bounces@lists.01.org] On Behalf Of >Marvin H?user >Sent: Thursday, May 17, 2018 8:42 PM >To: edk2-devel@lists.01.org >Cc: Kinney, Michael D ; Gao, Liming > >Subject: [edk2] [PATCH v2] MdePkg/Hpet: Add Event Timer Block ID definitio= n. > >This patch adds the HPET Event Timer Block ID definition that can be >found in the IA-PC HPET Specification, section 3.2.4. > >V2: > - Do not change the copyright date as requested. > >Contributed-under: TianoCore Contribution Agreement 1.1 >Signed-off-by: Marvin Haeuser >--- > MdePkg/Include/IndustryStandard/HighPrecisionEventTimerTable.h | 16 >++++++++++++++++ > 1 file changed, 16 insertions(+) > >diff --git >a/MdePkg/Include/IndustryStandard/HighPrecisionEventTimerTable.h >b/MdePkg/Include/IndustryStandard/HighPrecisionEventTimerTable.h >index 0d83cd5335de..6218a77c543c 100644 >--- a/MdePkg/Include/IndustryStandard/HighPrecisionEventTimerTable.h >+++ b/MdePkg/Include/IndustryStandard/HighPrecisionEventTimerTable.h >@@ -22,6 +22,22 @@ > // > #pragma pack(1) > >+/// >+/// HPET Event Timer Block ID described in IA-PC HPET Specification, 3.2.= 4. >+/// >+typedef union { >+ struct { >+ UINT32 Revision : 8; >+ UINT32 NumberOfTimers : 5; >+ UINT32 CounterSize : 1; >+ UINT32 Reserved : 1; >+ UINT32 LegacyRoute : 1; >+ UINT32 VendorId : 16; >+ } Bits; >+ UINT32 Uint32; >+} EFI_ACPI_HIGH_PRECISION_EVENT_TIMER_BLOCK_ID; >+ >+ > /// > /// High Precision Event Timer Table header definition. > /// >-- >2.17.0.windows.1 > >_______________________________________________ >edk2-devel mailing list >edk2-devel@lists.01.org >https://lists.01.org/mailman/listinfo/edk2-devel