[coreboot-gerrit] Patch set updated for coreboot: mb/ga-g41m-es2l: Correctly configure PCI IRQ in ACPI

Arthur Heymans (arthur@aheymans.xyz) gerrit at coreboot.org
Sat Nov 19 10:02:32 CET 2016


Arthur Heymans (arthur at aheymans.xyz) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/17099

-gerrit

commit bf2005b9c40d5f0837bc76dedd143288919251d9
Author: Arthur Heymans <arthur at aheymans.xyz>
Date:   Mon Oct 24 01:43:17 2016 +0200

    mb/ga-g41m-es2l: Correctly configure PCI IRQ in ACPI
    
    Obtained from vendor bios DSDT, under "Device (HUB0),
    Name (_ADR, 0x001E0000)".
    
    Change-Id: I8e1c6cb986a2b345a5e1fddd454c7fb12fb8256a
    Signed-off-by: Arthur Heymans <arthur at aheymans.xyz>
---
 .../gigabyte/ga-g41m-es2l/acpi/ich7_pci_irqs.asl   | 26 +++++++++++++++-------
 1 file changed, 18 insertions(+), 8 deletions(-)

diff --git a/src/mainboard/gigabyte/ga-g41m-es2l/acpi/ich7_pci_irqs.asl b/src/mainboard/gigabyte/ga-g41m-es2l/acpi/ich7_pci_irqs.asl
index 0a69f3d..099a53f 100644
--- a/src/mainboard/gigabyte/ga-g41m-es2l/acpi/ich7_pci_irqs.asl
+++ b/src/mainboard/gigabyte/ga-g41m-es2l/acpi/ich7_pci_irqs.asl
@@ -19,16 +19,26 @@
 
 If (PICM) {
 	Return (Package() {
-		Package() { 0x001effff, 0, 0, 17},
-		Package() { 0x001effff, 1, 0, 20},
-		Package() { 0x001effff, 2, 0, 16},
-		Package() { 0x001effff, 3, 0, 16},
+		Package() { 0x0000ffff, 0, 0, 20},
+		Package() { 0x0000ffff, 1, 0, 19},
+		Package() { 0x0000ffff, 2, 0, 18},
+		Package() { 0x0000ffff, 3, 0, 16},
+
+		Package() { 0x0001ffff, 0, 0, 19},
+		Package() { 0x0001ffff, 1, 0, 18},
+		Package() { 0x0001ffff, 2, 0, 16},
+		Package() { 0x0001ffff, 3, 0, 20},
 	})
 } Else {
 	Return (Package() {
-		Package() { 0x001effff, 0, \_SB.PCI0.LPCB.LNKB, 0},
-		Package() { 0x001effff, 1, \_SB.PCI0.LPCB.LNKE, 0},
-		Package() { 0x001effff, 2, \_SB.PCI0.LPCB.LNKA, 0},
-		Package() { 0x001effff, 3, \_SB.PCI0.LPCB.LNKA, 0},
+		Package() { 0x0000ffff, 0, \_SB.PCI0.LPCB.LNKE, 0},
+		Package() { 0x0000ffff, 1, \_SB.PCI0.LPCB.LNKD, 0},
+		Package() { 0x0000ffff, 2, \_SB.PCI0.LPCB.LNKC, 0},
+		Package() { 0x0000ffff, 3, \_SB.PCI0.LPCB.LNKA, 0},
+
+		Package() { 0x0001ffff, 0, \_SB.PCI0.LPCB.LNKD, 0},
+		Package() { 0x0001ffff, 1, \_SB.PCI0.LPCB.LNKC, 0},
+		Package() { 0x0001ffff, 2, \_SB.PCI0.LPCB.LNKA, 0},
+		Package() { 0x0001ffff, 3, \_SB.PCI0.LPCB.LNKE, 0},
 	})
 }



More information about the coreboot-gerrit mailing list