From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received-SPF: Pass (sender SPF authorized) identity=mailfrom; client-ip=217.140.101.70; helo=foss.arm.com; envelope-from=thomas.abraham@arm.com; receiver=edk2-devel@lists.01.org Received: from foss.arm.com (foss.arm.com [217.140.101.70]) by ml01.01.org (Postfix) with ESMTP id F15B12096185C for ; Mon, 21 May 2018 01:26:01 -0700 (PDT) Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.72.51.249]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id 5BAB180D; Mon, 21 May 2018 01:26:01 -0700 (PDT) Received: from usa.arm.com (a74716-lin.blr.arm.com [10.162.4.145]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPA id 47B483F25D; Mon, 21 May 2018 01:26:00 -0700 (PDT) From: Thomas Abraham To: edk2-devel@lists.01.org Cc: ard.biesheuvel@linaro.org, leif.lindholm@linaro.org Date: Mon, 21 May 2018 13:55:43 +0530 Message-Id: <1526891152-18739-1-git-send-email-thomas.abraham@arm.com> X-Mailer: git-send-email 2.7.4 Subject: [PATCH edk2-platforms v4 0/9] Platform/ARM/Sgi: Add Arm's SGI platform support X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 May 2018 08:26:02 -0000 Changes since v3: - Adds support for SMSC9118 ethernet controller - Adds support for PCIe and SATA controller to enable SATA disk access Changes since v2: - addressed all the comments from Ard. - PrePeiCore is used instead of PrePi. Changes since v1: - minor update to commit messages Arm CoreLink System Guidance for Infrastructure is a collection of resources to provide a representative view of typical compute subsystems that can be designed and implemented using specific generations of Arm IP. These compute subsystems address the expected requirements of a specific segment of the infrastructure market which includes servers, storage and networking. This patch series adds initial platform port support for Arm'S SGI-575 platform. This platform has 8x Cortex-A75 CPUs, supports DynamIQ with L3 cache options, supports 2x DDR4-3200 (DMC-620) memory controller and is SBSAv3 compliant. This series includes support for GIC, Serial, smsc91x and virtio block device. Daniil Egranov (4): Platform/ARM/Sgi: add initial platform dxe driver implementation Platform/ARM/Sgi: add support for virtio block device Platform/ARM/Sgi: add the initial set of acpi tables Platform/ARM/Sgi: add support for smsc91x ethernet controller Thomas Abraham (3): Platform/ARM/Sgi: Add Platform library implementation Platform/ARM/Sgi: implement PciHostBridgeLib support Platform/ARM/Sgi: Add Ssdt, Iort and Mcfg tables Vishwanatha HG (2): Platform/ARM/Sgi: add NOR flash platform library implementation Platform/ARM/Sgi: add initial support for ARM SGI platform .../ARM/SgiPkg/AcpiTables/Sgi575/AcpiTables.inf | 58 ++++ Platform/ARM/SgiPkg/AcpiTables/Sgi575/Dbg2.aslc | 90 ++++++ Platform/ARM/SgiPkg/AcpiTables/Sgi575/Dsdt.asl | 99 ++++++ Platform/ARM/SgiPkg/AcpiTables/Sgi575/Fadt.aslc | 87 ++++++ Platform/ARM/SgiPkg/AcpiTables/Sgi575/Gtdt.aslc | 123 ++++++++ Platform/ARM/SgiPkg/AcpiTables/Sgi575/Iort.aslc | 106 +++++++ Platform/ARM/SgiPkg/AcpiTables/Sgi575/Madt.aslc | 173 +++++++++++ Platform/ARM/SgiPkg/AcpiTables/Sgi575/Mcfg.aslc | 59 ++++ Platform/ARM/SgiPkg/AcpiTables/Sgi575/Spcr.aslc | 77 +++++ Platform/ARM/SgiPkg/AcpiTables/Sgi575/Ssdt.asl | 91 ++++++ .../ARM/SgiPkg/Drivers/PlatformDxe/PlatformDxe.c | 48 +++ .../ARM/SgiPkg/Drivers/PlatformDxe/PlatformDxe.inf | 74 +++++ .../ARM/SgiPkg/Drivers/PlatformDxe/VirtioBlockIo.c | 76 +++++ Platform/ARM/SgiPkg/Include/SgiAcpiHeader.h | 41 +++ Platform/ARM/SgiPkg/Include/SgiPlatform.h | 71 +++++ .../ARM/SgiPkg/Library/NorFlashLib/NorFlashLib.c | 66 ++++ .../ARM/SgiPkg/Library/NorFlashLib/NorFlashLib.inf | 34 ++ .../Library/PciHostBridgeLib/PciHostBridgeLib.c | 189 ++++++++++++ .../Library/PciHostBridgeLib/PciHostBridgeLib.inf | 63 ++++ .../SgiPkg/Library/PlatformLib/AArch64/Helper.S | 65 ++++ .../ARM/SgiPkg/Library/PlatformLib/PlatformLib.c | 73 +++++ .../ARM/SgiPkg/Library/PlatformLib/PlatformLib.inf | 66 ++++ .../SgiPkg/Library/PlatformLib/PlatformLibMem.c | 128 ++++++++ Platform/ARM/SgiPkg/SgiPlatform.dec | 41 +++ Platform/ARM/SgiPkg/SgiPlatform.dsc | 305 ++++++++++++++++++ Platform/ARM/SgiPkg/SgiPlatform.fdf | 342 +++++++++++++++++++++ 26 files changed, 2645 insertions(+) create mode 100644 Platform/ARM/SgiPkg/AcpiTables/Sgi575/AcpiTables.inf create mode 100644 Platform/ARM/SgiPkg/AcpiTables/Sgi575/Dbg2.aslc create mode 100644 Platform/ARM/SgiPkg/AcpiTables/Sgi575/Dsdt.asl create mode 100644 Platform/ARM/SgiPkg/AcpiTables/Sgi575/Fadt.aslc create mode 100644 Platform/ARM/SgiPkg/AcpiTables/Sgi575/Gtdt.aslc create mode 100644 Platform/ARM/SgiPkg/AcpiTables/Sgi575/Iort.aslc create mode 100644 Platform/ARM/SgiPkg/AcpiTables/Sgi575/Madt.aslc create mode 100644 Platform/ARM/SgiPkg/AcpiTables/Sgi575/Mcfg.aslc create mode 100644 Platform/ARM/SgiPkg/AcpiTables/Sgi575/Spcr.aslc create mode 100644 Platform/ARM/SgiPkg/AcpiTables/Sgi575/Ssdt.asl create mode 100644 Platform/ARM/SgiPkg/Drivers/PlatformDxe/PlatformDxe.c create mode 100644 Platform/ARM/SgiPkg/Drivers/PlatformDxe/PlatformDxe.inf create mode 100644 Platform/ARM/SgiPkg/Drivers/PlatformDxe/VirtioBlockIo.c create mode 100644 Platform/ARM/SgiPkg/Include/SgiAcpiHeader.h create mode 100644 Platform/ARM/SgiPkg/Include/SgiPlatform.h create mode 100644 Platform/ARM/SgiPkg/Library/NorFlashLib/NorFlashLib.c create mode 100644 Platform/ARM/SgiPkg/Library/NorFlashLib/NorFlashLib.inf create mode 100644 Platform/ARM/SgiPkg/Library/PciHostBridgeLib/PciHostBridgeLib.c create mode 100644 Platform/ARM/SgiPkg/Library/PciHostBridgeLib/PciHostBridgeLib.inf create mode 100644 Platform/ARM/SgiPkg/Library/PlatformLib/AArch64/Helper.S create mode 100644 Platform/ARM/SgiPkg/Library/PlatformLib/PlatformLib.c create mode 100644 Platform/ARM/SgiPkg/Library/PlatformLib/PlatformLib.inf create mode 100644 Platform/ARM/SgiPkg/Library/PlatformLib/PlatformLibMem.c create mode 100644 Platform/ARM/SgiPkg/SgiPlatform.dec create mode 100644 Platform/ARM/SgiPkg/SgiPlatform.dsc create mode 100644 Platform/ARM/SgiPkg/SgiPlatform.fdf -- 2.7.4