diff options
author | Tan, Lean Sheng <lean.sheng.tan@intel.com> | 2021-05-23 23:33:11 -0700 |
---|---|---|
committer | Werner Zeh <werner.zeh@siemens.com> | 2021-05-26 14:08:54 +0000 |
commit | 29ad904cbeb52a6d0d8e546531b03a6b6a4d07d7 (patch) | |
tree | 4e2e85a784de0746547fe9073e2878d6fb3f81e7 /src | |
parent | 8d2177bf0188c987a602fbcb09f3f1ba91a393d8 (diff) |
soc/intel/elkhartlake: Minor fix for SCS & XHCI devices in ACPI
1. Remove the extra UAB devices in xhci.asl
2. Update SD controller ADR in scs.asl
3. Remove the unused SCS PID
Signed-off-by: Lean Sheng Tan <lean.sheng.tan@intel.com>
Change-Id: I1906fb4e6893dc5e2b0bc8d85f4a7b2efc85c3a4
Reviewed-on: https://review.coreboot.org/c/coreboot/+/54867
Reviewed-by: Mario Scheithauer <mario.scheithauer@siemens.com>
Reviewed-by: Werner Zeh <werner.zeh@siemens.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src')
-rw-r--r-- | src/soc/intel/elkhartlake/acpi/scs.asl | 2 | ||||
-rw-r--r-- | src/soc/intel/elkhartlake/acpi/xhci.asl | 10 | ||||
-rw-r--r-- | src/soc/intel/elkhartlake/include/soc/pcr_ids.h | 1 |
3 files changed, 5 insertions, 8 deletions
diff --git a/src/soc/intel/elkhartlake/acpi/scs.asl b/src/soc/intel/elkhartlake/acpi/scs.asl index b58608feed..c6d71c1faf 100644 --- a/src/soc/intel/elkhartlake/acpi/scs.asl +++ b/src/soc/intel/elkhartlake/acpi/scs.asl @@ -68,7 +68,7 @@ Scope (\_SB.PCI0) { /* SD CARD */ Device (SDXC) { - Name (_ADR, 0x00140005) + Name (_ADR, 0x001A0001) Name (_DDN, "SD Controller") Name (TEMP, 0) Name (DSUU, ToUUID("f6c13ea5-65cd-461f-ab7a-29f7e8d5bd61")) diff --git a/src/soc/intel/elkhartlake/acpi/xhci.asl b/src/soc/intel/elkhartlake/acpi/xhci.asl index 6557722ece..fb57065b87 100644 --- a/src/soc/intel/elkhartlake/acpi/xhci.asl +++ b/src/soc/intel/elkhartlake/acpi/xhci.asl @@ -40,13 +40,11 @@ Device (XHCI) Device (HS08) { Name (_ADR, 8) } Device (HS09) { Name (_ADR, 9) } Device (HS10) { Name (_ADR, 10) } - Device (HS11) { Name (_ADR, 11) } - Device (HS12) { Name (_ADR, 12) } /* USB3 */ - Device (SS01) { Name (_ADR, 13) } - Device (SS02) { Name (_ADR, 14) } - Device (SS03) { Name (_ADR, 15) } - Device (SS04) { Name (_ADR, 16) } + Device (SS01) { Name (_ADR, 11) } + Device (SS02) { Name (_ADR, 12) } + Device (SS03) { Name (_ADR, 13) } + Device (SS04) { Name (_ADR, 14) } } } diff --git a/src/soc/intel/elkhartlake/include/soc/pcr_ids.h b/src/soc/intel/elkhartlake/include/soc/pcr_ids.h index dbb886895f..20488e5b88 100644 --- a/src/soc/intel/elkhartlake/include/soc/pcr_ids.h +++ b/src/soc/intel/elkhartlake/include/soc/pcr_ids.h @@ -23,7 +23,6 @@ #define PID_PSF2 0xbb #define PID_PSF3 0xbc #define PID_PSF4 0xbd -#define PID_SCS 0xc0 #define PID_RTC 0xc3 #define PID_ITSS 0xc4 #define PID_ESPI 0xc7 |