aboutsummaryrefslogtreecommitdiff
path: root/src/soc/intel/braswell/acpi/scc.asl
diff options
context:
space:
mode:
Diffstat (limited to 'src/soc/intel/braswell/acpi/scc.asl')
-rw-r--r--src/soc/intel/braswell/acpi/scc.asl38
1 files changed, 38 insertions, 0 deletions
diff --git a/src/soc/intel/braswell/acpi/scc.asl b/src/soc/intel/braswell/acpi/scc.asl
index 95f224435d..128edc55d6 100644
--- a/src/soc/intel/braswell/acpi/scc.asl
+++ b/src/soc/intel/braswell/acpi/scc.asl
@@ -77,6 +77,44 @@ Device (EMMC)
}
}
+Device (PEMC)
+{
+ Name (_ADR, 0x00100000) // _ADR: Address
+
+ OperationRegion (SDIO, PCI_Config, 0x84, 0x04)
+ Field (SDIO, WordAcc, NoLock, Preserve)
+ {
+ Offset (0x01),
+ PMEE, 1,
+ , 6,
+ PMES, 1
+ }
+
+ Method (_STA, 0, NotSerialized)
+ {
+ If (LEqual (\C0EN, 1)) {
+ Return (0x0)
+ }
+ Else
+ {
+ Return (0xF)
+ }
+ }
+
+ Method (_DSW, 3, NotSerialized)
+ {
+ }
+
+ Device (CARD)
+ {
+ Name (_ADR, 0x08)
+ Method (_RMV, 0, NotSerialized)
+ {
+ Return (Zero)
+ }
+ }
+}
+
Device (SDIO)
{
Name (_HID, "INT33BB")