public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
* [PATCH edk2-platforms v2 00/11] Fix build breaks and update IORT revision macro
@ 2022-07-06 10:39 Sami Mujawar
  2022-07-06 10:39 ` [PATCH edk2-platforms v2 01/11] Platform/ARM: FVP: Update for IORT revision macro renaming Sami Mujawar
                   ` (10 more replies)
  0 siblings, 11 replies; 16+ messages in thread
From: Sami Mujawar @ 2022-07-06 10:39 UTC (permalink / raw)
  To: devel
  Cc: Sami Mujawar, ardb+tianocore, quic_llindhol, pierre.gondois,
	Matteo.Carlini, Akanksha.Jain2, Ben.Adderson, gaoliming,
	jeremy.linton, thomas.abraham, Chandni.Cherukuri, nhi, vunguyen,
	thang, chuong, xiepeng, jialing, shuyiqi, nd

The patch series fixes the build break in Ampere/Jade and
Pythium/FT2000-4 due to missing VariableFlashInfoLib dependency
and also updates the IORT revision macro.

The IORT Rev E.d specification updates the IORT table revision
to 5. Following this the IORT table revision macro 
EFI_ACPI_IO_REMAPPING_TABLE_REVISION which was at Rev 0 has
been renamed to EFI_ACPI_IO_REMAPPING_TABLE_REV0. Therefore,
this series updates the following platforms to reflect this
renaming:
 - FVP
 - Morello FVP
 - SGI
 - AMD/Styx
 - Socionext/SynQuacer
 - RaspberryPi
 - N1SDP
 - Ampere/Jade
 - Pythium/FT2000-4

Note: This patch series is dependent on the edk2 patch series:
  "[PATCH v4 0/8] IORT Rev E.d specification updates"
  (https://edk2.groups.io/g/devel/message/91091), which must
be merged in edk2 before this patch series can be integrated.

The changes can be seen at:
https://github.com/samimujawar/edk2-platforms/tree/1527_iort_rev_ed_platforms_v2

Sami Mujawar (11):
  Platform/ARM: FVP: Update for IORT revision macro renaming
  Platform/ARM: Morello: Update for IORT revision macro renaming
  Platform/ARM: SGI: Update for IORT revision macro renaming
  Silicon/AMD/Styx: Update for IORT revision macro renaming
  Silicon/Socionext/SynQuacer: Update for IORT revision macro renaming
  Platform/RaspberryPi: Update for IORT revision macro renaming
  Platform/ARM: N1SDP: Update for IORT revision macro renaming
  Silicon/Ampere: Add VariableFlashInfoLib
  Platform/Ampere: JadePkg: Update for IORT revision macro renaming
  Silicon/Phytium: Add VariableFlashInfoLib
  Silicon/Phytium: FT2000-4Pkg: Update for IORT revision macro renaming

 Platform/ARM/Morello/ConfigurationManager/ConfigurationManagerDxe/ConfigurationManagerFvp.c  | 2 +-
 Platform/ARM/N1Sdp/ConfigurationManager/ConfigurationManagerDxe/ConfigurationManager.c       | 2 +-
 Platform/ARM/SgiPkg/AcpiTables/Iort.aslc                                                     | 2 +-
 Platform/ARM/VExpressPkg/ConfigurationManager/ConfigurationManagerDxe/ConfigurationManager.c | 2 +-
 Platform/Ampere/JadePkg/Drivers/AcpiPlatformDxe/AcpiIort.c                                   | 2 +-
 Platform/RaspberryPi/AcpiTables/Iort.aslc                                                    | 2 +-
 Silicon/AMD/Styx/Drivers/AcpiPlatformDxe/Iort.aslc                                           | 2 +-
 Silicon/Ampere/AmpereAltraPkg/AmpereAltraPkg.dsc.inc                                         | 1 +
 Silicon/Phytium/FT2000-4Pkg/Drivers/AcpiTables/Iort.aslc                                     | 2 +-
 Silicon/Phytium/PhytiumCommonPkg/PhytiumCommonPkg.dsc.inc                                    | 1 +
 Silicon/Socionext/SynQuacer/AcpiTables/Iort.aslc                                             | 2 +-
 11 files changed, 11 insertions(+), 9 deletions(-)

-- 
'Guid(CE165669-3EF3-493F-B85D-6190EE5B9759)'


^ permalink raw reply	[flat|nested] 16+ messages in thread

end of thread, other threads:[~2022-07-07 13:48 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-07-06 10:39 [PATCH edk2-platforms v2 00/11] Fix build breaks and update IORT revision macro Sami Mujawar
2022-07-06 10:39 ` [PATCH edk2-platforms v2 01/11] Platform/ARM: FVP: Update for IORT revision macro renaming Sami Mujawar
2022-07-06 10:39 ` [PATCH edk2-platforms v2 02/11] Platform/ARM: Morello: " Sami Mujawar
2022-07-06 10:39 ` [PATCH edk2-platforms v2 03/11] Platform/ARM: SGI: " Sami Mujawar
2022-07-06 14:18   ` Thomas Abraham
2022-07-06 15:15     ` Sami Mujawar
2022-07-06 15:38       ` Thomas Abraham
2022-07-06 10:39 ` [PATCH edk2-platforms v2 04/11] Silicon/AMD/Styx: " Sami Mujawar
2022-07-06 10:39 ` [PATCH edk2-platforms v2 05/11] Silicon/Socionext/SynQuacer: " Sami Mujawar
2022-07-06 10:39 ` [PATCH edk2-platforms v2 06/11] Platform/RaspberryPi: " Sami Mujawar
2022-07-07 13:48   ` Jeremy Linton
2022-07-06 10:39 ` [PATCH edk2-platforms v2 07/11] Platform/ARM: N1SDP: " Sami Mujawar
2022-07-06 10:39 ` [PATCH edk2-platforms v2 08/11] Silicon/Ampere: Add VariableFlashInfoLib Sami Mujawar
2022-07-06 10:39 ` [PATCH edk2-platforms v2 09/11] Platform/Ampere: JadePkg: Update for IORT revision macro renaming Sami Mujawar
2022-07-06 10:39 ` [PATCH edk2-platforms v2 10/11] Silicon/Phytium: Add VariableFlashInfoLib Sami Mujawar
2022-07-06 10:39 ` [PATCH edk2-platforms v2 11/11] Silicon/Phytium: FT2000-4Pkg: Update for IORT revision macro renaming Sami Mujawar

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox