From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from relay2-d.mail.gandi.net (relay2-d.mail.gandi.net [217.70.183.194]) by mx.groups.io with SMTP id smtpd.web11.3323.1577714903230662017 for ; Mon, 30 Dec 2019 06:08:23 -0800 Authentication-Results: mx.groups.io; dkim=missing; spf=pass (domain: invisible.ca, ip: 217.70.183.194, mailfrom: jmcneill@invisible.ca) X-Originating-IP: 47.55.176.191 Received: from localhost.localdomain (stjhnbsu1kw-47-55-176-191.dhcp-dynamic.fibreop.nb.bellaliant.net [47.55.176.191]) (Authenticated sender: jmcneill@invisible.ca) by relay2-d.mail.gandi.net (Postfix) with ESMTPSA id 7BC4740007; Mon, 30 Dec 2019 14:08:20 +0000 (UTC) From: Jared McNeill To: devel@edk2.groups.io Cc: Jared McNeill Subject: [edk2-platforms][PATCH] Platform/RPi4: Fix SDHC interrupt numbers. Date: Mon, 30 Dec 2019 10:07:56 -0400 Message-Id: X-Mailer: git-send-email 2.21.0 (Apple Git-122.2) MIME-Version: 1.0 Content-Transfer-Encoding: 8bit According to the bcm2711 devicetree, the Arasan SDHCI uses GIC SPI 126 and the Broadcom SDHost uses GIC SPI 120. Signed-off-by: Jared McNeill --- Platform/RaspberryPi/RPi4/AcpiTables/Sdhc.asl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Platform/RaspberryPi/RPi4/AcpiTables/Sdhc.asl b/Platform/RaspberryPi/RPi4/AcpiTables/Sdhc.asl index 57ee411a61..56d15c3927 100644 --- a/Platform/RaspberryPi/RPi4/AcpiTables/Sdhc.asl +++ b/Platform/RaspberryPi/RPi4/AcpiTables/Sdhc.asl @@ -33,7 +33,7 @@ Device (SDC1) Name (RBUF, ResourceTemplate () { MEMORY32FIXED (ReadWrite, 0xFE300000, 0x100,) - Interrupt (ResourceConsumer, Level, ActiveHigh, Exclusive) { 0x5E } + Interrupt (ResourceConsumer, Level, ActiveHigh, Exclusive) { 0x9E } }) Return (RBUF) } @@ -76,7 +76,7 @@ Device (SDC2) Name (RBUF, ResourceTemplate () { MEMORY32FIXED (ReadWrite, 0xFE202000, 0x100,) - Interrupt (ResourceConsumer, Level, ActiveHigh, Exclusive) { 0x58 } + Interrupt (ResourceConsumer, Level, ActiveHigh, Exclusive) { 0x98 } }) Return (RBUF) } -- 2.21.0 (Apple Git-122.2)