From patchwork Thu Mar 2 22:26:36 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Supreeth Venkatesh X-Patchwork-Id: 734847 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from huckleberry.canonical.com (huckleberry.canonical.com [91.189.94.19]) by ozlabs.org (Postfix) with ESMTP id 3vZ6QY6d7Rz9s7l; Fri, 3 Mar 2017 09:28:05 +1100 (AEDT) Received: from localhost ([127.0.0.1] helo=huckleberry.canonical.com) by huckleberry.canonical.com with esmtp (Exim 4.76) (envelope-from ) id 1cjZCe-0008FO-MG; Thu, 02 Mar 2017 22:28:04 +0000 Received: from foss.arm.com ([217.140.101.70]) by huckleberry.canonical.com with esmtp (Exim 4.76) (envelope-from ) id 1cjZCM-0008DK-0Y for fwts-devel@lists.ubuntu.com; Thu, 02 Mar 2017 22:27:46 +0000 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 78D4F2B; Thu, 2 Mar 2017 14:27:45 -0800 (PST) Received: from usa.arm.com (bc-c3-3-12.eu.iaas.arm.com [10.6.43.226]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPA id 8352A3F220; Thu, 2 Mar 2017 14:27:44 -0800 (PST) From: Supreeth Venkatesh To: fwts-devel@lists.ubuntu.com Subject: [PATCH 12/12] sbbr: Add initial sbbr test case files. Date: Thu, 2 Mar 2017 22:26:36 +0000 Message-Id: <1488493596-3437-13-git-send-email-supreeth.venkatesh@arm.com> X-Mailer: git-send-email 2.7.4 In-Reply-To: <1488493596-3437-1-git-send-email-supreeth.venkatesh@arm.com> References: <1488493596-3437-1-git-send-email-supreeth.venkatesh@arm.com> Cc: achin.gupta@arm.com, paul.benson@arm.com, charles.garcia-tobin@arm.com X-BeenThere: fwts-devel@lists.ubuntu.com X-Mailman-Version: 2.1.14 Precedence: list List-Id: Firmware Test Suite Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: fwts-devel-bounces@lists.ubuntu.com Sender: fwts-devel-bounces@lists.ubuntu.com Server Base Boot Requirements (SBBR) specification is intended for SBSA- compliant 64-bit ARMv8 servers. It defines the base firmware requirements for out-of-box support of any ARM SBSA-compatible Operating System or hypervisor. The requirements in this specification are expected to be minimal yet complete for booting a multi-core ARMv8 server platform, while leaving plenty of room for OEM or ODM innovations and design details. For more information, download the SBBR specification here: http://infocenter.arm.com/help/index.jsp?topic=/com.arm.doc.den0044b/index.html This change adds initial sbbr test files for FWTS build. Signed-off-by: Supreeth Venkatesh --- src/Makefile.am | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/Makefile.am b/src/Makefile.am index c1eb285..833fd74 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -150,6 +150,16 @@ fwts_SOURCES = main.c \ pci/aspm/aspm.c \ pci/crs/crs.c \ pci/maxreadreq/maxreadreq.c \ + sbbr/acpitables/acpitables.c \ + sbbr/dbg2/dbg2.c \ + sbbr/dmicheck/dmicheck.c \ + sbbr/fadt/fadt.c \ + sbbr/gtdt/gtdt.c \ + sbbr/madt/madt.c \ + sbbr/method/method.c \ + sbbr/rsdp/rsdp.c \ + sbbr/spcr/spcr.c \ + sbbr/xsdt/xsdt.c \ uefi/csm/csm.c \ uefi/uefidump/uefidump.c \ uefi/uefirttime/uefirttime.c \