From nobody Fri May 3 05:22:14 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zohomail.com: domain of groups.io designates 66.175.222.108 as permitted sender) client-ip=66.175.222.108; envelope-from=bounce+27952+72233+1787277+3901457@groups.io; helo=mail02.groups.io; Authentication-Results: mx.zohomail.com; dkim=pass; spf=pass (zohomail.com: domain of groups.io designates 66.175.222.108 as permitted sender) smtp.mailfrom=bounce+27952+72233+1787277+3901457@groups.io; dmarc=fail(p=none dis=none) header.from=arm.com ARC-Seal: i=1; a=rsa-sha256; t=1614363908; cv=none; d=zohomail.com; s=zohoarc; b=BQ2qk6i76AnpRJKeBOjIWt7MJ0ZeIRunGHgZmKDhzIVc9LSkqnYTleuXLLt1lXGpAltVOFdVfXC2EertD2B+xfPyolifT+HkVgx4BCe7T/5wbrbu1uM6Owl3Am343g4fsuNTlLRcwlrUgZZIwEvLyLzUHLoeOp8i7BheS3rgo3Q= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zohomail.com; s=zohoarc; t=1614363908; h=Content-Transfer-Encoding:Cc:Date:From:List-Id:List-Unsubscribe:MIME-Version:Message-ID:Reply-To:Sender:Subject:To; bh=qkBnHDuB1TSFqbAXOddN0erM3LQkBI+nGkDlkEH8JsU=; b=U0qryPWgulmE/Yzmn+rDZg/UNubtDSbYPZZRKuOQFHxPq4H2fwUh9oJw+tZimj699PKD5OzM3aSavuq3W2z8pm4NpjfhcRzl6HMGEpKC4efP+YkH1FnJTocx2OnceKlY/knwxM800TLdA/G9KFr+bu8yYRDzGqxCC6Skndz84Ho= ARC-Authentication-Results: i=1; mx.zohomail.com; dkim=pass; spf=pass (zohomail.com: domain of groups.io designates 66.175.222.108 as permitted sender) smtp.mailfrom=bounce+27952+72233+1787277+3901457@groups.io; dmarc=fail header.from= (p=none dis=none) header.from= Received: from mail02.groups.io (mail02.groups.io [66.175.222.108]) by mx.zohomail.com with SMTPS id 1614363908209754.8750612295131; Fri, 26 Feb 2021 10:25:08 -0800 (PST) Return-Path: X-Received: by 127.0.0.2 with SMTP id n3TEYY1788612xgstWLUqawh; Fri, 26 Feb 2021 10:25:07 -0800 X-Received: from foss.arm.com (foss.arm.com [217.140.110.172]) by mx.groups.io with SMTP id smtpd.web08.13661.1614363901598273208 for ; Fri, 26 Feb 2021 10:25:02 -0800 X-Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id 6148331B; Fri, 26 Feb 2021 10:25:00 -0800 (PST) X-Received: from u200856.usa.arm.com (unknown [10.119.48.7]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id 1CA9C3F73D; Fri, 26 Feb 2021 10:25:00 -0800 (PST) From: "Jeremy Linton" To: devel@edk2.groups.io Cc: pete@akeo.ie, awarkentin@vmware.com, samer.el-haj-mahmoud@arm.com, leif@nuviainc.com, ardb+tianocore@kernel.org, Jeremy Linton Subject: [edk2-devel] [BUG] Platform/RaspberryPi/Acpitables: Correct duplicate _UIDs Date: Fri, 26 Feb 2021 12:24:58 -0600 Message-Id: <20210226182458.398136-1-jeremy.linton@arm.com> MIME-Version: 1.0 Precedence: Bulk List-Unsubscribe: Sender: devel@edk2.groups.io List-Id: Mailing-List: list devel@edk2.groups.io; contact devel+owner@edk2.groups.io Reply-To: devel@edk2.groups.io,jeremy.linton@arm.com X-Gm-Message-State: JEgUEIIO515bFKybhqztf4Zbx1787277AA= Content-Transfer-Encoding: quoted-printable DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=groups.io; q=dns/txt; s=20140610; t=1614363907; bh=SZ/LPztWnBlUd/pnIT7A72SpNOZ1rQ2UCFak4vLP6GI=; h=Cc:Date:From:Reply-To:Subject:To; b=AlQs7eGvUfECaPFR7++XH5faP03VivGtoFbuvV1pkUJu+CpQnGvA9KHKEFAHGDLk1HL KzDgsiLu5RnUgWQ1ttcOXvCMqMPL71oNCDmbFkSnuxmwOoIq8ZdAZHdt4E24YQuccYE6m xGj5v8luiqKzQI3O+ac8oEiGEH6UGHGnP8c= X-ZohoMail-DKIM: pass (identity @groups.io) Content-Type: text/plain; charset="utf-8" From: Jeremy Linton The new emmc2 device adds a container with a _UID of 0 which duplicates an existing ACPI container. This causes windows to fail to boot with a Stop ACPI_BIOS_ERROR. The workaround without this fix is to go into the BDS menus and set the SD routing to the Arasan. Fixes: 311ed3c790 ("Platform/RaspberryPi/Acpitables: Add eMMC2 device and tweak Arasan") Signed-off-by: Jeremy Linton Reviewed-by: Ard Biesheuvel --- Platform/RaspberryPi/AcpiTables/Emmc.asl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Platform/RaspberryPi/AcpiTables/Emmc.asl b/Platform/RaspberryP= i/AcpiTables/Emmc.asl index 984db4eaa9..179dd3ecdb 100644 --- a/Platform/RaspberryPi/AcpiTables/Emmc.asl +++ b/Platform/RaspberryPi/AcpiTables/Emmc.asl @@ -18,7 +18,7 @@ DefinitionBlock (__FILE__, "SSDT", 5, "RPIFDN", "RPI4EMMC= ", 2) #if (RPI_MODEL =3D=3D 4) Device (GDV1) { Name (_HID, "ACPI0004") - Name (_UID, 0x0) + Name (_UID, 0x2) Name (_CCA, 0x0) =20 Name (RBUF, ResourceTemplate () --=20 2.13.7 -=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D- Groups.io Links: You receive all messages sent to this group. View/Reply Online (#72233): https://edk2.groups.io/g/devel/message/72233 Mute This Topic: https://groups.io/mt/80934251/1787277 Group Owner: devel+owner@edk2.groups.io Unsubscribe: https://edk2.groups.io/g/devel/unsub [importer@patchew.org] -=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-