If you don't know how to do so, you can read "DSDT edit for dummies" made by Silencer.
Useful applications are DSDTse (to extract your DSDT, but it is a buggy text editor ..), Fraise (good text editor) and iaslme (to compile to .aml and to de compile in .dsl which is text)
I think the DSDT edit you have to do is to replace "Device(HDEF)" with this one but I am not sure ...
Code: Select all
Device (HDEF)
{
Name (_ADR, 0x001B0000)
Name (_S3D, 0x03)
Name (RID, Zero)
Name (_PRW, Package (0x02)
{
0x0D,
0x04
})
Method (_PSW, 1, NotSerialized)
{
Noop
}
Method (_DSM, 4, NotSerialized)
{
Store (Package (0x08)
{
"layout-id",
Buffer (0x04)
{
0x0A, 0x00, 0x00, 0x00
},
"subsystem-id",
Buffer (0x04)
{
0xA0, 0x00, 0x00, 0x00
},
"subsystem-vendor-id",
Buffer (0x04)
{
0x6B, 0x10, 0x00, 0x00
},
"PinConfigurations",
Buffer (Zero) {}
}, Local0)
DTGP (Arg0, Arg1, Arg2, Arg3, RefOf (Local0))
Return (Local0)
}
}




