[edk2-devel] [edk2-platforms][PATCH V1 0/5] Add Morello FVP platform support

Chandni Cherukuri posted 5 patches 3 years, 1 month ago
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/edk2 tags/patchew/20210224131224.11481-1-chandni.cherukuri@arm.com
There is a newer version of this series
Platform/ARM/Morello/MorelloPlatform.dec      |   59 +
.../ConfigurationManagerFvp.dsc.inc           |   16 +
Platform/ARM/Morello/MorelloPlatform.dsc.inc  |  235 ++++
Platform/ARM/Morello/MorelloPlatformFvp.dsc   |   60 +
Platform/ARM/Morello/MorelloPlatformFvp.fdf   |  302 +++++
.../ConfigurationManagerDxeFvp.inf            |   94 ++
.../Drivers/PlatformDxe/PlatformDxeFvp.inf    |   43 +
.../PciHostBridgeLib/PciHostBridgeLibFvp.inf  |   48 +
.../Library/PlatformLib/PlatformLib.inf       |   52 +
.../ConfigurationManager.h                    |  304 +++++
.../ConfigurationManagerFvp.h                 |   81 ++
.../ConfigurationManagerDxe/Platform.h        |   91 ++
.../Guid/MorelloVirtioDevicesFormSet.h        |   14 +
.../ARM/Morello/Include/MorelloPlatform.h     |   67 ++
.../ConfigurationManager.c                    | 1005 +++++++++++++++++
.../ConfigurationManagerFvp.c                 |  531 +++++++++
.../Drivers/PlatformDxe/PlatformDxeFvp.c      |   58 +
.../Drivers/PlatformDxe/VirtioDevices.c       |   91 ++
.../PciHostBridgeLib/PciHostBridgeLibFvp.c    |  182 +++
.../Morello/Library/PlatformLib/PlatformLib.c |   66 ++
.../Library/PlatformLib/PlatformLibMem.c      |  194 ++++
.../AslTables/DsdtFvp.asl                     |  114 ++
.../AslTables/SsdtPciFvp.asl                  |  130 +++
.../Library/PlatformLib/AArch64/Helper.S      |   83 ++
24 files changed, 3920 insertions(+)
create mode 100644 Platform/ARM/Morello/MorelloPlatform.dec
create mode 100644 Platform/ARM/Morello/ConfigurationManager/ConfigurationManagerFvp.dsc.inc
create mode 100644 Platform/ARM/Morello/MorelloPlatform.dsc.inc
create mode 100644 Platform/ARM/Morello/MorelloPlatformFvp.dsc
create mode 100644 Platform/ARM/Morello/MorelloPlatformFvp.fdf
create mode 100644 Platform/ARM/Morello/ConfigurationManager/ConfigurationManagerDxe/ConfigurationManagerDxeFvp.inf
create mode 100644 Platform/ARM/Morello/Drivers/PlatformDxe/PlatformDxeFvp.inf
create mode 100644 Platform/ARM/Morello/Library/PciHostBridgeLib/PciHostBridgeLibFvp.inf
create mode 100644 Platform/ARM/Morello/Library/PlatformLib/PlatformLib.inf
create mode 100644 Platform/ARM/Morello/ConfigurationManager/ConfigurationManagerDxe/ConfigurationManager.h
create mode 100644 Platform/ARM/Morello/ConfigurationManager/ConfigurationManagerDxe/ConfigurationManagerFvp.h
create mode 100644 Platform/ARM/Morello/ConfigurationManager/ConfigurationManagerDxe/Platform.h
create mode 100644 Platform/ARM/Morello/Include/Guid/MorelloVirtioDevicesFormSet.h
create mode 100644 Platform/ARM/Morello/Include/MorelloPlatform.h
create mode 100644 Platform/ARM/Morello/ConfigurationManager/ConfigurationManagerDxe/ConfigurationManager.c
create mode 100644 Platform/ARM/Morello/ConfigurationManager/ConfigurationManagerDxe/ConfigurationManagerFvp.c
create mode 100644 Platform/ARM/Morello/Drivers/PlatformDxe/PlatformDxeFvp.c
create mode 100644 Platform/ARM/Morello/Drivers/PlatformDxe/VirtioDevices.c
create mode 100644 Platform/ARM/Morello/Library/PciHostBridgeLib/PciHostBridgeLibFvp.c
create mode 100644 Platform/ARM/Morello/Library/PlatformLib/PlatformLib.c
create mode 100644 Platform/ARM/Morello/Library/PlatformLib/PlatformLibMem.c
create mode 100644 Platform/ARM/Morello/ConfigurationManager/ConfigurationManagerDxe/AslTables/DsdtFvp.asl
create mode 100644 Platform/ARM/Morello/ConfigurationManager/ConfigurationManagerDxe/AslTables/SsdtPciFvp.asl
create mode 100644 Platform/ARM/Morello/Library/PlatformLib/AArch64/Helper.S
[edk2-devel] [edk2-platforms][PATCH V1 0/5] Add Morello FVP platform support
Posted by Chandni Cherukuri 3 years, 1 month ago
Morello is an ARMv8-A platform that implements the capability architecture
extension. This patch series provides ARMv8-A architecture enablement
for the Morello FVP platform.

The changes can be seen at:
https://github.com/chandnich/edk2-platforms/tree/morello_plat_support_v1

Anurag Koul (3):
  Platform/ARM/Morello: Add Platform library implementation
  Platform/ARM/Morello: Add PlatformDxe driver for Morello
  Platform/ARM/Morello: Add initial support for Morello Platform

Chandni Cherukuri (2):
  Platform/ARM/Morello: Add support for PciHostBridgeLib
  Platform/ARM/Morello: Add Configuration Manager for Morello

 Platform/ARM/Morello/MorelloPlatform.dec      |   59 +
 .../ConfigurationManagerFvp.dsc.inc           |   16 +
 Platform/ARM/Morello/MorelloPlatform.dsc.inc  |  235 ++++
 Platform/ARM/Morello/MorelloPlatformFvp.dsc   |   60 +
 Platform/ARM/Morello/MorelloPlatformFvp.fdf   |  302 +++++
 .../ConfigurationManagerDxeFvp.inf            |   94 ++
 .../Drivers/PlatformDxe/PlatformDxeFvp.inf    |   43 +
 .../PciHostBridgeLib/PciHostBridgeLibFvp.inf  |   48 +
 .../Library/PlatformLib/PlatformLib.inf       |   52 +
 .../ConfigurationManager.h                    |  304 +++++
 .../ConfigurationManagerFvp.h                 |   81 ++
 .../ConfigurationManagerDxe/Platform.h        |   91 ++
 .../Guid/MorelloVirtioDevicesFormSet.h        |   14 +
 .../ARM/Morello/Include/MorelloPlatform.h     |   67 ++
 .../ConfigurationManager.c                    | 1005 +++++++++++++++++
 .../ConfigurationManagerFvp.c                 |  531 +++++++++
 .../Drivers/PlatformDxe/PlatformDxeFvp.c      |   58 +
 .../Drivers/PlatformDxe/VirtioDevices.c       |   91 ++
 .../PciHostBridgeLib/PciHostBridgeLibFvp.c    |  182 +++
 .../Morello/Library/PlatformLib/PlatformLib.c |   66 ++
 .../Library/PlatformLib/PlatformLibMem.c      |  194 ++++
 .../AslTables/DsdtFvp.asl                     |  114 ++
 .../AslTables/SsdtPciFvp.asl                  |  130 +++
 .../Library/PlatformLib/AArch64/Helper.S      |   83 ++
 24 files changed, 3920 insertions(+)
 create mode 100644 Platform/ARM/Morello/MorelloPlatform.dec
 create mode 100644 Platform/ARM/Morello/ConfigurationManager/ConfigurationManagerFvp.dsc.inc
 create mode 100644 Platform/ARM/Morello/MorelloPlatform.dsc.inc
 create mode 100644 Platform/ARM/Morello/MorelloPlatformFvp.dsc
 create mode 100644 Platform/ARM/Morello/MorelloPlatformFvp.fdf
 create mode 100644 Platform/ARM/Morello/ConfigurationManager/ConfigurationManagerDxe/ConfigurationManagerDxeFvp.inf
 create mode 100644 Platform/ARM/Morello/Drivers/PlatformDxe/PlatformDxeFvp.inf
 create mode 100644 Platform/ARM/Morello/Library/PciHostBridgeLib/PciHostBridgeLibFvp.inf
 create mode 100644 Platform/ARM/Morello/Library/PlatformLib/PlatformLib.inf
 create mode 100644 Platform/ARM/Morello/ConfigurationManager/ConfigurationManagerDxe/ConfigurationManager.h
 create mode 100644 Platform/ARM/Morello/ConfigurationManager/ConfigurationManagerDxe/ConfigurationManagerFvp.h
 create mode 100644 Platform/ARM/Morello/ConfigurationManager/ConfigurationManagerDxe/Platform.h
 create mode 100644 Platform/ARM/Morello/Include/Guid/MorelloVirtioDevicesFormSet.h
 create mode 100644 Platform/ARM/Morello/Include/MorelloPlatform.h
 create mode 100644 Platform/ARM/Morello/ConfigurationManager/ConfigurationManagerDxe/ConfigurationManager.c
 create mode 100644 Platform/ARM/Morello/ConfigurationManager/ConfigurationManagerDxe/ConfigurationManagerFvp.c
 create mode 100644 Platform/ARM/Morello/Drivers/PlatformDxe/PlatformDxeFvp.c
 create mode 100644 Platform/ARM/Morello/Drivers/PlatformDxe/VirtioDevices.c
 create mode 100644 Platform/ARM/Morello/Library/PciHostBridgeLib/PciHostBridgeLibFvp.c
 create mode 100644 Platform/ARM/Morello/Library/PlatformLib/PlatformLib.c
 create mode 100644 Platform/ARM/Morello/Library/PlatformLib/PlatformLibMem.c
 create mode 100644 Platform/ARM/Morello/ConfigurationManager/ConfigurationManagerDxe/AslTables/DsdtFvp.asl
 create mode 100644 Platform/ARM/Morello/ConfigurationManager/ConfigurationManagerDxe/AslTables/SsdtPciFvp.asl
 create mode 100644 Platform/ARM/Morello/Library/PlatformLib/AArch64/Helper.S

-- 
2.17.1



-=-=-=-=-=-=-=-=-=-=-=-
Groups.io Links: You receive all messages sent to this group.
View/Reply Online (#72155): https://edk2.groups.io/g/devel/message/72155
Mute This Topic: https://groups.io/mt/80885825/1787277
Group Owner: devel+owner@edk2.groups.io
Unsubscribe: https://edk2.groups.io/g/devel/unsub [importer@patchew.org]
-=-=-=-=-=-=-=-=-=-=-=-


Re: [edk2-devel] [edk2-platforms][PATCH V1 0/5] Add Morello FVP platform support
Posted by Sami Mujawar 3 years, 1 month ago
Hi Chandni,

Thank you for this patch series.

Can you add a Platform\ARM\Morello\Readme.md file describing the following, please?
 - Where to find the documentation for the platform.
 - Morello FVP binary download location.
 - Toolchain to be used and location to download the same.
 - Firmware build instructions and supported build hosts.
 - Any other dependencies required to boot to the UEFI shell on Morello FVP.

This file could be added as a new patch in the v2 series.

Regards,

Sami Mujawar

-----Original Message-----
From: Chandni Cherukuri <chandni.cherukuri@arm.com> 
Sent: 24 February 2021 01:12 PM
To: devel@edk2.groups.io
Cc: Ard Biesheuvel <ardb+tianocore@kernel.org>; Leif Lindholm <leif@nuviainc.com>; Sami Mujawar <Sami.Mujawar@arm.com>
Subject: [edk2-platforms][PATCH V1 0/5] Add Morello FVP platform support

Morello is an ARMv8-A platform that implements the capability architecture
extension. This patch series provides ARMv8-A architecture enablement
for the Morello FVP platform.

The changes can be seen at:
https://github.com/chandnich/edk2-platforms/tree/morello_plat_support_v1

Anurag Koul (3):
  Platform/ARM/Morello: Add Platform library implementation
  Platform/ARM/Morello: Add PlatformDxe driver for Morello
  Platform/ARM/Morello: Add initial support for Morello Platform

Chandni Cherukuri (2):
  Platform/ARM/Morello: Add support for PciHostBridgeLib
  Platform/ARM/Morello: Add Configuration Manager for Morello

 Platform/ARM/Morello/MorelloPlatform.dec      |   59 +
 .../ConfigurationManagerFvp.dsc.inc           |   16 +
 Platform/ARM/Morello/MorelloPlatform.dsc.inc  |  235 ++++
 Platform/ARM/Morello/MorelloPlatformFvp.dsc   |   60 +
 Platform/ARM/Morello/MorelloPlatformFvp.fdf   |  302 +++++
 .../ConfigurationManagerDxeFvp.inf            |   94 ++
 .../Drivers/PlatformDxe/PlatformDxeFvp.inf    |   43 +
 .../PciHostBridgeLib/PciHostBridgeLibFvp.inf  |   48 +
 .../Library/PlatformLib/PlatformLib.inf       |   52 +
 .../ConfigurationManager.h                    |  304 +++++
 .../ConfigurationManagerFvp.h                 |   81 ++
 .../ConfigurationManagerDxe/Platform.h        |   91 ++
 .../Guid/MorelloVirtioDevicesFormSet.h        |   14 +
 .../ARM/Morello/Include/MorelloPlatform.h     |   67 ++
 .../ConfigurationManager.c                    | 1005 +++++++++++++++++
 .../ConfigurationManagerFvp.c                 |  531 +++++++++
 .../Drivers/PlatformDxe/PlatformDxeFvp.c      |   58 +
 .../Drivers/PlatformDxe/VirtioDevices.c       |   91 ++
 .../PciHostBridgeLib/PciHostBridgeLibFvp.c    |  182 +++
 .../Morello/Library/PlatformLib/PlatformLib.c |   66 ++
 .../Library/PlatformLib/PlatformLibMem.c      |  194 ++++
 .../AslTables/DsdtFvp.asl                     |  114 ++
 .../AslTables/SsdtPciFvp.asl                  |  130 +++
 .../Library/PlatformLib/AArch64/Helper.S      |   83 ++
 24 files changed, 3920 insertions(+)
 create mode 100644 Platform/ARM/Morello/MorelloPlatform.dec
 create mode 100644 Platform/ARM/Morello/ConfigurationManager/ConfigurationManagerFvp.dsc.inc
 create mode 100644 Platform/ARM/Morello/MorelloPlatform.dsc.inc
 create mode 100644 Platform/ARM/Morello/MorelloPlatformFvp.dsc
 create mode 100644 Platform/ARM/Morello/MorelloPlatformFvp.fdf
 create mode 100644 Platform/ARM/Morello/ConfigurationManager/ConfigurationManagerDxe/ConfigurationManagerDxeFvp.inf
 create mode 100644 Platform/ARM/Morello/Drivers/PlatformDxe/PlatformDxeFvp.inf
 create mode 100644 Platform/ARM/Morello/Library/PciHostBridgeLib/PciHostBridgeLibFvp.inf
 create mode 100644 Platform/ARM/Morello/Library/PlatformLib/PlatformLib.inf
 create mode 100644 Platform/ARM/Morello/ConfigurationManager/ConfigurationManagerDxe/ConfigurationManager.h
 create mode 100644 Platform/ARM/Morello/ConfigurationManager/ConfigurationManagerDxe/ConfigurationManagerFvp.h
 create mode 100644 Platform/ARM/Morello/ConfigurationManager/ConfigurationManagerDxe/Platform.h
 create mode 100644 Platform/ARM/Morello/Include/Guid/MorelloVirtioDevicesFormSet.h
 create mode 100644 Platform/ARM/Morello/Include/MorelloPlatform.h
 create mode 100644 Platform/ARM/Morello/ConfigurationManager/ConfigurationManagerDxe/ConfigurationManager.c
 create mode 100644 Platform/ARM/Morello/ConfigurationManager/ConfigurationManagerDxe/ConfigurationManagerFvp.c
 create mode 100644 Platform/ARM/Morello/Drivers/PlatformDxe/PlatformDxeFvp.c
 create mode 100644 Platform/ARM/Morello/Drivers/PlatformDxe/VirtioDevices.c
 create mode 100644 Platform/ARM/Morello/Library/PciHostBridgeLib/PciHostBridgeLibFvp.c
 create mode 100644 Platform/ARM/Morello/Library/PlatformLib/PlatformLib.c
 create mode 100644 Platform/ARM/Morello/Library/PlatformLib/PlatformLibMem.c
 create mode 100644 Platform/ARM/Morello/ConfigurationManager/ConfigurationManagerDxe/AslTables/DsdtFvp.asl
 create mode 100644 Platform/ARM/Morello/ConfigurationManager/ConfigurationManagerDxe/AslTables/SsdtPciFvp.asl
 create mode 100644 Platform/ARM/Morello/Library/PlatformLib/AArch64/Helper.S

-- 
2.17.1



-=-=-=-=-=-=-=-=-=-=-=-
Groups.io Links: You receive all messages sent to this group.
View/Reply Online (#72273): https://edk2.groups.io/g/devel/message/72273
Mute This Topic: https://groups.io/mt/80885825/1787277
Group Owner: devel+owner@edk2.groups.io
Unsubscribe: https://edk2.groups.io/g/devel/unsub [importer@patchew.org]
-=-=-=-=-=-=-=-=-=-=-=-