From mboxrd@z Thu Jan 1 00:00:00 1970 Authentication-Results: mx.groups.io; dkim=missing; spf=pass (domain: intel.com, ip: 192.55.52.115, mailfrom: jordan.l.justen@intel.com) Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by groups.io with SMTP; Wed, 24 Apr 2019 00:51:19 -0700 X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga008.fm.intel.com ([10.253.24.58]) by fmsmga103.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 24 Apr 2019 00:51:18 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.60,389,1549958400"; d="scan'208";a="143164694" Received: from spaul-mobl2.amr.corp.intel.com (HELO localhost) ([10.251.22.38]) by fmsmga008.fm.intel.com with ESMTP; 24 Apr 2019 00:51:18 -0700 MIME-Version: 1.0 To: devel@edk2.groups.io From: "Jordan Justen" Cc: "Ni, Ray" , Andrew Fish , Laszlo Ersek , Leif Lindholm , Mike Kinney , Vincent Zimmer Subject: [RFC] Remove PI spec TemporaryRamSupport PPI from PEI Core Message-ID: <155609227739.7682.10069568985394331160@jljusten-skl> User-Agent: alot/0.8 Date: Wed, 24 Apr 2019 00:51:17 -0700 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Short summary: Despite being part of the Platorm Initialization Specificication, this proposal would remove support for the TemporaryRamSupport PPI from PEI Core. Arguably, this would mean the PEI Core does not support the PI spec, but we do not currently know if any platforms require this PPI. Main question: Does anyone know of a platform that requires this PPI, or does anyone have major concerns with removing it before the PI specification can be updated to remove the PPI? Alternatives: Continue to support the PPI, but we would need to merge a bug-fix patchset which adds some assembly code into the PEI Core. More details: I discussed this topic with the Tianocore Stewards, Vincent and Ray. Although the path forward was not unanimous, it appears that the majority thought we should propose to remove support for the TemporaryRamSupport PPI from the PEI Core. This PPI is defined in MdePkg/Include/Ppi/TemporaryRamSupport.h. I believe it has been present in all versions of the Platorm Initialization Specificication, including the latest, version 1.7. (https://uefi.org/specsandtesttools) The TemporaryRamSupport PPI is defined as "optional" in the PI spec, but I believe this only applied to producers of the PPI (PI platforms). The PEI Core (which is the consumer of this PPI) should arguably support the PPI in order to fully support PI spec based platforms. But, there are some subtle issues with the PPI that make it difficult to implement for both the consumer (PEI Core) and the producer (the platform). In fact, there is a bug currently with the PEI Core's implementation, which I sent a patch series to address on April 10th, with the subject of "[PATCH v2 0/6] Fix PEI Core issue during TemporaryRamMigration". Unfortunately the fix is not very simple, and requires adding assembly code to the PEI Core module. Based on this, we discussed if the TemporaryRamSupport PPI is no longer required by current PI platforms, despite being present in the PI spec. The only known example of it being required was a platform based on the IPF architecture, which is no longer supported by EDK II. Several EDK II sample platforms produce this PPI in EDK II, but only as sample code. Clearly the removal would have to take this into account. There are two replacements for the TemporaryRamSupport PPI, but they do not cover all types of potential hardware. If a platform cannot access main memory at the same time as the Temporary RAM, then it would not be supported by the alternatives. Nevertheless, the two replacements are: 1. Stop producing the PPI, and the PEI Core will automatically copy the required memory from Temporary RAM to the main memory. This will work for platforms that do not require special code to shut down Temporary RAM. 2. Produce the MdePkg/Include/Ppi/TemporaryRamDone.h PPI. This will cause the PEI Core to notify the platform after it has copied memory, and the platform can take special actions to disable Temporary RAM mode if required. Since both of these options will cause the PEI Core to do a memory copy from Temporary RAM to the main memory, there might be platforms that they cannot work with as described above. Thanks for your time, -Jordan