From 6a67ffb6ea0e05d42222b6159802aa5e18b22f8f Mon Sep 17 00:00:00 2001 From: Matt DeVillier Date: Fri, 2 Jun 2017 12:30:07 -0500 Subject: soc/braswell: fix scope for I2C ACPI devices For an unknown reason, the I2C ACPI devices were placed under \SB intead of \SB.PCI0, as with all other non-Atom based Intel platforms. While Linux is tolerant of this, Windows is not. Correct by moving I2C ACPI devices where they belong. Also, adjust I2C devices at board level for intel/strago and google/cyan as to not break compilation. Change-Id: Iaf8211bd86d6261ee8c4d9c4262338f7fe19ef43 Signed-off-by: Matt DeVillier Reviewed-on: https://review.coreboot.org/20055 Reviewed-by: Aaron Durbin Tested-by: build bot (Jenkins) --- src/mainboard/intel/strago/acpi/mainboard.asl | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'src/mainboard/intel') diff --git a/src/mainboard/intel/strago/acpi/mainboard.asl b/src/mainboard/intel/strago/acpi/mainboard.asl index c559296cc0..eaf9e854de 100644 --- a/src/mainboard/intel/strago/acpi/mainboard.asl +++ b/src/mainboard/intel/strago/acpi/mainboard.asl @@ -26,7 +26,7 @@ Scope (\_SB) } } -Scope (\_SB.I2C1) +Scope (\_SB.PCI0.I2C1) { Device (ATSB) { @@ -44,7 +44,7 @@ Scope (\_SB.I2C1) ControllerInitiated, /* SlaveMode */ 400000, /* ConnectionSpeed */ AddressingMode7Bit, /* AddressingMode */ - "\\_SB.I2C1", /* ResourceSource */ + "\\_SB.PCI0.I2C1", /* ResourceSource */ ) Interrupt (ResourceConsumer, Edge, ActiveLow) { @@ -83,7 +83,7 @@ Scope (\_SB.I2C1) ControllerInitiated, /* SlaveMode */ 400000, /* ConnectionSpeed */ AddressingMode7Bit, /* AddressingMode */ - "\\_SB.I2C1", /* ResourceSource */ + "\\_SB.PCI0.I2C1", /* ResourceSource */ ) Interrupt (ResourceConsumer, Edge, ActiveLow) { @@ -109,7 +109,7 @@ Scope (\_SB.I2C1) } } -Scope (\_SB.I2C5) +Scope (\_SB.PCI0.I2C5) { /* Realtek Audio Codec */ Device (RTEK) /* Audio Codec driver I2C */ @@ -129,7 +129,7 @@ Scope (\_SB.I2C5) ControllerInitiated, /* SlaveMode: default to ControllerInitiated */ 400000, /* ConnectionSpeed: in Hz */ AddressingMode7Bit, /* Addressing Mode: default to 7 bit */ - "\\_SB.I2C5", /* ResourceSource: I2C bus controller name */ + "\\_SB.PCI0.I2C5" /* ResourceSource: I2C bus controller name */ ) /* Jack Detect (index 0) */ @@ -146,7 +146,7 @@ Scope (\_SB.I2C5) } } -Scope (\_SB.I2C6) +Scope (\_SB.PCI0.I2C6) { Device (ETPA) { @@ -162,7 +162,7 @@ Scope (\_SB.I2C6) ControllerInitiated, /* SlaveMode */ 400000, /* ConnectionSpeed */ AddressingMode7Bit, /* AddressingMode */ - "\\_SB.I2C6", /* ResourceSource */ + "\\_SB.PCI0.I2C6", /* ResourceSource */ ) GpioInt (Edge, ActiveLow, ExclusiveAndWake, PullNone,, "\\_SB.GPNC") { BOARD_TRACKPAD_GPIO_INDEX } @@ -183,7 +183,7 @@ Scope (\_SB.I2C6) } } -Scope (\_SB.LPEA) +Scope (\_SB.PCI0.LPEA) { Name (GBUF, ResourceTemplate () { -- cgit v1.2.3