diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/soc/intel/cannonlake/acpi/scs.asl | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/soc/intel/cannonlake/acpi/scs.asl b/src/soc/intel/cannonlake/acpi/scs.asl index 61f1739e86..4d68d56391 100644 --- a/src/soc/intel/cannonlake/acpi/scs.asl +++ b/src/soc/intel/cannonlake/acpi/scs.asl @@ -17,6 +17,7 @@ Scope (\_SB.PCI0) { /* EMMC */ Device(PEMC) { Name(_ADR, 0x001A0000) + Name (_DDN, "eMMC Controller") Name (TEMP, 0) OperationRegion(SCSR, PCI_Config, 0x00, 0x100) @@ -45,12 +46,22 @@ Scope (\_SB.PCI0) { Or (PMCR, 0x0003, PMCR) Store (PMCR, ^TEMP) } + + Device (CARD) + { + Name (_ADR, 0x00000008) + Method (_RMV, 0, NotSerialized) + { + Return (0) + } + } } /* SD CARD */ Device (SDXC) { Name (_ADR, 0x00140005) + Name (_DDN, "SD Controller") Name (TEMP, 0) OperationRegion (SDPC, PCI_Config, 0x00, 0x100) @@ -80,5 +91,14 @@ Scope (\_SB.PCI0) { Or (PMCR, 0x0003, PMCR) Store (PMCR, ^TEMP) } + + Device (CARD) + { + Name (_ADR, 0x00000008) + Method (_RMV, 0, NotSerialized) + { + Return (1) + } + } } /* Device (SDXC) */ } |