From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) (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 C70E720958969 for ; Wed, 5 Jul 2017 13:41:30 -0700 (PDT) Received: from smtp.corp.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id D4303285A0; Wed, 5 Jul 2017 20:43:09 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mx1.redhat.com D4303285A0 Authentication-Results: ext-mx06.extmail.prod.ext.phx2.redhat.com; dmarc=none (p=none dis=none) header.from=redhat.com Authentication-Results: ext-mx06.extmail.prod.ext.phx2.redhat.com; spf=pass smtp.mailfrom=lersek@redhat.com DKIM-Filter: OpenDKIM Filter v2.11.0 mx1.redhat.com D4303285A0 Received: from lacos-laptop-7.usersys.redhat.com (ovpn-116-25.phx2.redhat.com [10.3.116.25]) by smtp.corp.redhat.com (Postfix) with ESMTP id 3410360F88; Wed, 5 Jul 2017 20:43:08 +0000 (UTC) From: Laszlo Ersek To: edk2-devel-01 Cc: Jordan Justen References: <20170704165629.13610-1-lersek@redhat.com> Message-ID: Date: Wed, 5 Jul 2017 22:43:08 +0200 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.2.1 MIME-Version: 1.0 In-Reply-To: <20170704165629.13610-1-lersek@redhat.com> X-Scanned-By: MIMEDefang 2.79 on 10.5.11.12 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.30]); Wed, 05 Jul 2017 20:43:10 +0000 (UTC) Subject: Re: [PATCH v2 0/8] OvmfPkg: recognize an extended TSEG when QEMU offers it X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 05 Jul 2017 20:41:31 -0000 Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit On 07/04/17 18:56, Laszlo Ersek wrote: > This is version 2 of the series posted previously at > . > > Version 2 is a rewrite from scratch based on Jordan's feedback for v1 > and the subsequent discussion. > > Repo: https://github.com/lersek/edk2.git > Branch: extended_tseg_bz1447027_v2 > > Cc: Jordan Justen > > Thanks > Laszlo > > Laszlo Ersek (8): > OvmfPkg: widen PcdQ35TsegMbytes to UINT16 > OvmfPkg/PlatformPei: prepare for PcdQ35TsegMbytes becoming dynamic > OvmfPkg/SmmAccess: prepare for PcdQ35TsegMbytes becoming dynamic > OvmfPkg: make PcdQ35TsegMbytes dynamic > OvmfPkg/IndustryStandard/Q35MchIch9.h: add extended TSEG size macros > OvmfPkg/SmmAccess: support extended TSEG size > OvmfPkg/PlatformPei: honor extended TSEG in PcdQ35TsegMbytes if > available > OvmfPkg: mention the extended TSEG near the PcdQ35TsegMbytes > declaration > > OvmfPkg/Include/IndustryStandard/Q35MchIch9.h | 4 ++ > OvmfPkg/OvmfPkg.dec | 15 +++-- > OvmfPkg/OvmfPkgIa32.dsc | 1 + > OvmfPkg/OvmfPkgIa32X64.dsc | 1 + > OvmfPkg/OvmfPkgX64.dsc | 1 + > OvmfPkg/PlatformPei/MemDetect.c | 67 +++++++++++++++++++- > OvmfPkg/PlatformPei/Platform.c | 14 ++-- > OvmfPkg/PlatformPei/Platform.h | 7 ++ > OvmfPkg/SmmAccess/SmmAccess2Dxe.c | 1 + > OvmfPkg/SmmAccess/SmmAccess2Dxe.inf | 3 + > OvmfPkg/SmmAccess/SmmAccessPei.c | 10 +-- > OvmfPkg/SmmAccess/SmmAccessPei.inf | 4 +- > OvmfPkg/SmmAccess/SmramInternal.c | 25 +++++++- > OvmfPkg/SmmAccess/SmramInternal.h | 13 ++++ > 14 files changed, 142 insertions(+), 24 deletions(-) > Pushed: 253d81c71f67..d04b72c67097. Thanks Laszlo