[coreboot-gerrit] Patch set updated for coreboot: amd/gardenia: Add I2C devices to ACPI

Marshall Dawson (marshalldawson3rd@gmail.com) gerrit at coreboot.org
Fri Dec 16 19:53:16 CET 2016


Marshall Dawson (marshalldawson3rd at gmail.com) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/17847

-gerrit

commit 2c864212b406f1bedc5f3f854f6119475b7c4606
Author: Marshall Dawson <marshalldawson3rd at gmail.com>
Date:   Wed Oct 19 18:32:27 2016 -0400

    amd/gardenia: Add I2C devices to ACPI
    
    Add the missing two I2C controllers.
    
    Original-Signed-off-by: Marshall Dawson <marshalldawson3rd at gmail.com>
    Original-Reviewed-by: Marc Jones <marcj303 at gmail.com>
    (cherry picked from 0be00a96b9eb40c959a422a5ca4773d2353d244d)
    
    Change-Id: I3ea74a6c0472711102b19a7ca0209aaeeeb2d601
    Signed-off-by: Marshall Dawson <marshalldawson3rd at gmail.com>
---
 src/mainboard/amd/gardenia/acpi/carrizo_fch.asl | 26 +++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/src/mainboard/amd/gardenia/acpi/carrizo_fch.asl b/src/mainboard/amd/gardenia/acpi/carrizo_fch.asl
index a177306..2b9df3b 100644
--- a/src/mainboard/amd/gardenia/acpi/carrizo_fch.asl
+++ b/src/mainboard/amd/gardenia/acpi/carrizo_fch.asl
@@ -77,3 +77,29 @@ Device(I2CB)
 		Return (0x0F)
 	}
 }
+
+Device(I2CC) {
+	Name(_HID,"AMD0010")
+	Name(_UID,0x0)
+	Name(_CRS, ResourceTemplate() {
+		IRQ(Edge, ActiveHigh, Exclusive) {6}
+		Memory32Fixed(ReadWrite, 0xFEDC4000, 0x1000)
+	})
+
+	Method (_STA, 0x0, NotSerialized) {
+		Return (0x0F)
+	}
+}
+
+Device(I2CD)
+{
+	Name(_HID,"AMD0010")
+	Name(_UID,0x1)
+	Name(_CRS, ResourceTemplate() {
+		IRQ(Edge, ActiveHigh, Exclusive) {14}
+		Memory32Fixed(ReadWrite, 0xFEDC5000, 0x1000)
+	})
+	Method (_STA, 0x0, NotSerialized) {
+		Return (0x0F)
+	}
+}



More information about the coreboot-gerrit mailing list