[edk2-devel] [edk2-platforms][PATCH V2 0/7] Add Morello FVP platform support

chandni cherukuri posted 7 patches 3 years ago
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/edk2 tags/patchew/20210401143537.4799-1-chandni.cherukuri@arm.com
There is a newer version of this series
Platform/ARM/Morello/MorelloPlatform.dec      |   66 +
.../ConfigurationManagerFvp.dsc.inc           |   16 +
Platform/ARM/Morello/MorelloPlatform.dsc.inc  |  236 ++++
Platform/ARM/Morello/MorelloPlatformFvp.dsc   |   68 +
Platform/ARM/Morello/MorelloPlatformFvp.fdf   |  309 +++++
.../ConfigurationManagerDxeFvp.inf            |   94 ++
.../Drivers/PlatformDxe/PlatformDxeFvp.inf    |   46 +
.../PciHostBridgeLib/PciHostBridgeLibFvp.inf  |   48 +
.../Library/PlatformLib/PlatformLib.inf       |   52 +
.../ConfigurationManager.h                    |  281 ++++
.../ConfigurationManagerFvp.h                 |  122 ++
.../ConfigurationManagerDxe/Platform.h        |   91 ++
.../Guid/MorelloVirtioDevicesFormSet.h        |   17 +
.../ARM/Morello/Include/MorelloPlatform.h     |   63 +
.../ConfigurationManager.c                    | 1172 +++++++++++++++++
.../ConfigurationManagerFvp.c                 |  602 +++++++++
.../Drivers/PlatformDxe/PlatformDxeFvp.c      |   66 +
.../Drivers/PlatformDxe/VirtioDevices.c       |  148 +++
.../PciHostBridgeLib/PciHostBridgeLibFvp.c    |  180 +++
.../Morello/Library/PlatformLib/PlatformLib.c |   99 ++
.../Library/PlatformLib/PlatformLibMem.c      |  198 +++
.../AslTables/DsdtFvp.asl                     |   98 ++
.../AslTables/SsdtPciFvp.asl                  |  130 ++
.../Library/PlatformLib/AArch64/Helper.S      |   83 ++
Platform/ARM/Morello/Readme.md                |   46 +
25 files changed, 4331 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
create mode 100644 Platform/ARM/Morello/Readme.md
[edk2-devel] [edk2-platforms][PATCH V2 0/7] Add Morello FVP platform support
Posted by chandni cherukuri 3 years ago
Changes since V1:
- Added 2 new patches which provide virtio net support and documentation
  for the Morello FVP platform.
- Resolved the coding style errors and ran Ecc.
- Replaced function macros with functions in ConfigurationManager.

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_v2

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 (4):
  Platform/ARM/Morello: Add support for PciHostBridgeLib
  Platform/ARM/Morello: Add Configuration Manager for Morello
  Platform-ARM-Morello: Add Readme.md file
  Platform/ARM/Morello: Add virtio net support

 Platform/ARM/Morello/MorelloPlatform.dec      |   66 +
 .../ConfigurationManagerFvp.dsc.inc           |   16 +
 Platform/ARM/Morello/MorelloPlatform.dsc.inc  |  236 ++++
 Platform/ARM/Morello/MorelloPlatformFvp.dsc   |   68 +
 Platform/ARM/Morello/MorelloPlatformFvp.fdf   |  309 +++++
 .../ConfigurationManagerDxeFvp.inf            |   94 ++
 .../Drivers/PlatformDxe/PlatformDxeFvp.inf    |   46 +
 .../PciHostBridgeLib/PciHostBridgeLibFvp.inf  |   48 +
 .../Library/PlatformLib/PlatformLib.inf       |   52 +
 .../ConfigurationManager.h                    |  281 ++++
 .../ConfigurationManagerFvp.h                 |  122 ++
 .../ConfigurationManagerDxe/Platform.h        |   91 ++
 .../Guid/MorelloVirtioDevicesFormSet.h        |   17 +
 .../ARM/Morello/Include/MorelloPlatform.h     |   63 +
 .../ConfigurationManager.c                    | 1172 +++++++++++++++++
 .../ConfigurationManagerFvp.c                 |  602 +++++++++
 .../Drivers/PlatformDxe/PlatformDxeFvp.c      |   66 +
 .../Drivers/PlatformDxe/VirtioDevices.c       |  148 +++
 .../PciHostBridgeLib/PciHostBridgeLibFvp.c    |  180 +++
 .../Morello/Library/PlatformLib/PlatformLib.c |   99 ++
 .../Library/PlatformLib/PlatformLibMem.c      |  198 +++
 .../AslTables/DsdtFvp.asl                     |   98 ++
 .../AslTables/SsdtPciFvp.asl                  |  130 ++
 .../Library/PlatformLib/AArch64/Helper.S      |   83 ++
 Platform/ARM/Morello/Readme.md                |   46 +
 25 files changed, 4331 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
 create mode 100644 Platform/ARM/Morello/Readme.md

-- 
2.17.1



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