soc/intel/apollolake: add _RMV attributes to eMMC device ACPI
Required so Windows knows if the storage is removable or not. Change-Id: I0822d767ada872d55357ff229e47e08fbe778a36 Signed-off-by: Patrick Georgi <pgeorgi@chromium.org> Reviewed-on: https://review.coreboot.org/22830 Reviewed-by: Aaron Durbin <adurbin@chromium.org> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
parent
8240a88c05
commit
0019f1a6c0
|
@ -109,6 +109,15 @@ Scope (\_SB.PCI0) {
|
|||
*/
|
||||
^^SCPG(1,0x00000041)
|
||||
}
|
||||
|
||||
Device (CARD)
|
||||
{
|
||||
Name (_ADR, 0x00000008)
|
||||
Method (_RMV, 0, NotSerialized)
|
||||
{
|
||||
Return (0)
|
||||
}
|
||||
}
|
||||
} /* Device (SDHA) */
|
||||
|
||||
/* SD CARD */
|
||||
|
@ -162,5 +171,13 @@ Scope (\_SB.PCI0) {
|
|||
Store (0, ^^GRR3)
|
||||
}
|
||||
|
||||
Device (CARD)
|
||||
{
|
||||
Name (_ADR, 0x00000008)
|
||||
Method (_RMV, 0, NotSerialized)
|
||||
{
|
||||
Return (1)
|
||||
}
|
||||
}
|
||||
} /* Device (SDCD) */
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue