From patchwork Thu Jun 24 18:41:02 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Erico Nunes X-Patchwork-Id: 1496762 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=none (no SPF record) smtp.mailfrom=lists.ubuntu.com (client-ip=91.189.94.19; helo=huckleberry.canonical.com; envelope-from=fwts-devel-bounces@lists.ubuntu.com; receiver=) Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (1024-bit key; unprotected) header.d=redhat.com header.i=@redhat.com header.a=rsa-sha256 header.s=mimecast20190719 header.b=aGd3YW9H; dkim-atps=neutral Received: from huckleberry.canonical.com (huckleberry.canonical.com [91.189.94.19]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 4G9qCV2CtGz9sRf for ; Fri, 25 Jun 2021 04:58:13 +1000 (AEST) Received: from localhost ([127.0.0.1] helo=huckleberry.canonical.com) by huckleberry.canonical.com with esmtp (Exim 4.86_2) (envelope-from ) id 1lwUIS-0003N8-4i; Thu, 24 Jun 2021 18:41:52 +0000 Received: from us-smtp-delivery-124.mimecast.com ([216.205.24.124]) by huckleberry.canonical.com with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.86_2) (envelope-from ) id 1lwUIQ-0003N2-PF for fwts-devel@lists.ubuntu.com; Thu, 24 Jun 2021 18:41:50 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1624560109; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding; bh=H58XIH2+HOlxOcHaxBYgTaFGNdpN3tEb9Jm61m6TP2k=; b=aGd3YW9H6QxmIfhrCAQ5+uLJt4Ji3Bqr2ipeL5qDcM0BqZHmTXeFqUcffBkA9FL2qfBfqg c/4zbujcSttlu8BGRyoP9JuLcE7fHsSKOY3XqQ4TX+2Jzwmjp7TISPR3h/mq5WFfIsxjvj 13FcaZNtvX167TsbjjLecKmrmX/L36g= Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-339-rDItSt3YN5KTv2aVy0ndjQ-1; Thu, 24 Jun 2021 14:41:48 -0400 X-MC-Unique: rDItSt3YN5KTv2aVy0ndjQ-1 Received: from smtp.corp.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 6FA7880430E for ; Thu, 24 Jun 2021 18:41:47 +0000 (UTC) Received: from centennial.enunes.eu (ovpn-114-202.ams2.redhat.com [10.36.114.202]) by smtp.corp.redhat.com (Postfix) with ESMTP id C2296421F; Thu, 24 Jun 2021 18:41:46 +0000 (UTC) From: Erico Nunes To: fwts-devel@lists.ubuntu.com Subject: [PATCH 1/2] sbbr: remove SSDT from mandatory list Date: Thu, 24 Jun 2021 20:41:02 +0200 Message-Id: <20210624184103.684831-1-ernunes@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.11 Authentication-Results: relay.mimecast.com; auth=pass smtp.auth=CUSA124A263 smtp.mailfrom=ernunes@redhat.com X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com X-BeenThere: fwts-devel@lists.ubuntu.com X-Mailman-Version: 2.1.20 Precedence: list List-Id: Firmware Test Suite Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: fwts-devel-bounces@lists.ubuntu.com Sender: "fwts-devel" According to the SBBR version 1.2, section 4.2.1.4 DSDT and SSDT: Secondary System Description Table (SSDT), ACPI ยง 5.2.11.2. This table is optional. One or more of this table can be used to provide additional definition blocks if necessary. Signed-off-by: Erico Nunes Acked-by: Alex Hung Acked-by: Ivan Hu --- src/sbbr/acpitables/acpitables.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/sbbr/acpitables/acpitables.c b/src/sbbr/acpitables/acpitables.c index 3a378e03..20b50c1f 100644 --- a/src/sbbr/acpitables/acpitables.c +++ b/src/sbbr/acpitables/acpitables.c @@ -200,8 +200,7 @@ static const char *mandatory_acpi_tables[] = { "RSDP", "XSDT", "FACP", - "DSDT", - "SSDT", + "DSDT", /* SSDT is optional */ "MADT", "GTDT", "DBG2", From patchwork Thu Jun 24 18:41:03 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Erico Nunes X-Patchwork-Id: 1496751 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=none (no SPF record) smtp.mailfrom=lists.ubuntu.com (client-ip=91.189.94.19; helo=huckleberry.canonical.com; envelope-from=fwts-devel-bounces@lists.ubuntu.com; receiver=) Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (1024-bit key; unprotected) header.d=redhat.com header.i=@redhat.com header.a=rsa-sha256 header.s=mimecast20190719 header.b=A8UoD4Qz; dkim-atps=neutral Received: from huckleberry.canonical.com (huckleberry.canonical.com [91.189.94.19]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 4G9prt3DB7z9sPf for ; Fri, 25 Jun 2021 04:42:05 +1000 (AEST) Received: from localhost ([127.0.0.1] helo=huckleberry.canonical.com) by huckleberry.canonical.com with esmtp (Exim 4.86_2) (envelope-from ) id 1lwUIY-0003Nl-7a; Thu, 24 Jun 2021 18:41:58 +0000 Received: from us-smtp-delivery-124.mimecast.com ([170.10.133.124]) by huckleberry.canonical.com with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.86_2) (envelope-from ) id 1lwUIW-0003NU-Tx for fwts-devel@lists.ubuntu.com; Thu, 24 Jun 2021 18:41:57 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1624560115; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=oKJNRY+ttoXZMh6OFd5rjo1vcI4Ui0qnKLgFI/t3xTw=; b=A8UoD4QzEMOinoS+SPIpuiZuurNuiZgpyW2b+XLRfxL3Wf34QuECP1412WNzftjpRifToD ohw7Jgz/5tl0Sszde5J/C9ZpE4NGCmui2aUpyFwd8KfPkt/uTLOZW6g4PJjsGS78pN1vmF RAQSY9OSnjZwdkfHH0lm94cwzR+JBJU= Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-300-WAMb0dv9PDKjK2ZEE0UBfw-1; Thu, 24 Jun 2021 14:41:54 -0400 X-MC-Unique: WAMb0dv9PDKjK2ZEE0UBfw-1 Received: from smtp.corp.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id D4F15193578E for ; Thu, 24 Jun 2021 18:41:53 +0000 (UTC) Received: from centennial.enunes.eu (ovpn-114-202.ams2.redhat.com [10.36.114.202]) by smtp.corp.redhat.com (Postfix) with ESMTP id 32C4B421F; Thu, 24 Jun 2021 18:41:53 +0000 (UTC) From: Erico Nunes To: fwts-devel@lists.ubuntu.com Subject: [PATCH 2/2] sbbr: adjust signature name for MADT Date: Thu, 24 Jun 2021 20:41:03 +0200 Message-Id: <20210624184103.684831-2-ernunes@redhat.com> In-Reply-To: <20210624184103.684831-1-ernunes@redhat.com> References: <20210624184103.684831-1-ernunes@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.11 Authentication-Results: relay.mimecast.com; auth=pass smtp.auth=CUSA124A263 smtp.mailfrom=ernunes@redhat.com X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com X-BeenThere: fwts-devel@lists.ubuntu.com X-Mailman-Version: 2.1.20 Precedence: list List-Id: Firmware Test Suite Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: fwts-devel-bounces@lists.ubuntu.com Sender: "fwts-devel" The Multiple APIC Description Table (MADT) is a required table in SBBR version 1.2, but it is present with the signature "APIC" rather than "MADT". Adjust the signature name so it doesn't report failure in compliant systems. Signed-off-by: Erico Nunes Acked-by: Alex Hung Acked-by: Ivan Hu --- src/sbbr/acpitables/acpitables.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sbbr/acpitables/acpitables.c b/src/sbbr/acpitables/acpitables.c index 20b50c1f..d124ee08 100644 --- a/src/sbbr/acpitables/acpitables.c +++ b/src/sbbr/acpitables/acpitables.c @@ -201,7 +201,7 @@ static const char *mandatory_acpi_tables[] = { "XSDT", "FACP", "DSDT", /* SSDT is optional */ - "MADT", + "APIC", /* MADT */ "GTDT", "DBG2", "SPCR",