From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.133.124]) by mx.groups.io with SMTP id smtpd.web09.3954.1663747918297327724 for ; Wed, 21 Sep 2022 01:11:58 -0700 Authentication-Results: mx.groups.io; dkim=pass header.i=@redhat.com header.s=mimecast20190719 header.b=DzQ8YgQL; spf=pass (domain: redhat.com, ip: 170.10.133.124, mailfrom: kraxel@redhat.com) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1663747917; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=P0bOIU7ESQYk6EL/Ag+R85EsBrHcFWWA9+jpmVSqbhI=; b=DzQ8YgQLgjSusl93cn9BMDbd7JJfbT/RH8WJ+VxxUgrb4dlup5UX9nA8X0spC+0nygtSjg ZFmFJvXLPYRxfemqZ7iJ3B7ziu1sNoKWS8RXdjTkFlRkEtR2bTr96L+dPiVCbDuBz7xDg7 WRdzjrRBPulV3aXXNHkTR/l/FMFb53Y= Received: from mimecast-mx02.redhat.com (mx3-rdu2.redhat.com [66.187.233.73]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-204-E3lXAgdgPlqFwnLnKaqicA-1; Wed, 21 Sep 2022 04:11:54 -0400 X-MC-Unique: E3lXAgdgPlqFwnLnKaqicA-1 Received: from smtp.corp.redhat.com (int-mx10.intmail.prod.int.rdu2.redhat.com [10.11.54.10]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id 9B1743C0D193; Wed, 21 Sep 2022 08:11:53 +0000 (UTC) Received: from sirius.home.kraxel.org (unknown [10.39.192.24]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 60D3E492B1B; Wed, 21 Sep 2022 08:11:53 +0000 (UTC) Received: by sirius.home.kraxel.org (Postfix, from userid 1000) id 763841800081; Wed, 21 Sep 2022 10:11:51 +0200 (CEST) Date: Wed, 21 Sep 2022 10:11:51 +0200 From: "Gerd Hoffmann" To: Min Xu Cc: devel@edk2.groups.io, Erdem Aktas , James Bottomley , Jiewen Yao , Tom Lendacky Subject: Re: [PATCH V4 07/10] OvmfPkg: Introduce lazy accept in PlatformInitLib and PlatformPei Message-ID: <20220921081151.b4jbkaoploksmana@sirius.home.kraxel.org> References: <7b67ee2b4b49c696edb2c519840f50600c6d334f.1663026445.git.min.m.xu@intel.com> MIME-Version: 1.0 In-Reply-To: <7b67ee2b4b49c696edb2c519840f50600c6d334f.1663026445.git.min.m.xu@intel.com> X-Scanned-By: MIMEDefang 3.1 on 10.11.54.10 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Tue, Sep 13, 2022 at 08:02:11AM +0800, Min Xu wrote: > From: Min M Xu > > RFC: https://bugzilla.tianocore.org/show_bug.cgi?id=3937 > > There are below major changes in PlatformInitLib/PlatformPei > 1. ProcessHobList > The unaccepted memory is accepted if it is under 4G address. > Please be noted: in current stage, we only accept the memory under 4G. > We will re-visit here in the future when on-demand accept memory is > required. > > 2. TransferTdxHobList > Transfer the unaccepted memory hob to EFI_RESOURCE_SYSTEM_MEMORY hob > if it is accepted. > > Cc: Erdem Aktas > Cc: Gerd Hoffmann > Cc: James Bottomley > Cc: Jiewen Yao > Cc: Tom Lendacky > Signed-off-by: Min Xu Acked-by: Gerd Hoffmann