It occurred to me people may be having firewire problems with their Gigabyte boards.
CODE
FireWire runtime power conservation disabled. (2)
This is how to fix that.
CODE
Method (_L1A, 0, NotSerialized) // <-- Added for firewire
{
Notify (\_SB.PCI0.PCIB.FRWR, 0x00)
Notify (\_SB.PWRB, 0x02)
}
{
Notify (\_SB.PCI0.PCIB.FRWR, 0x00)
Notify (\_SB.PWRB, 0x02)
}
Within the Device (PCIB) I added another device:
CODE
Device (FRWR) // <--Firewire (check to be sure the _GPE value is OK)
{
Name (_ADR, 0x00070000)
Name (_GPE, 0x1A)
Method (_DSM, 4, NotSerialized)
{
Store (Package (0x02)
{
"fwhub",
Buffer (0x04)
{
0x00, 0x00, 0x00, 0x00
}
}, Local0)
DTGP (Arg0, Arg1, Arg2, Arg3, RefOf (Local0))
Return (Local0)
}
}
{
Name (_ADR, 0x00070000)
Name (_GPE, 0x1A)
Method (_DSM, 4, NotSerialized)
{
Store (Package (0x02)
{
"fwhub",
Buffer (0x04)
{
0x00, 0x00, 0x00, 0x00
}
}, Local0)
DTGP (Arg0, Arg1, Arg2, Arg3, RefOf (Local0))
Return (Local0)
}
}
Let me know what kind of results people get.
Click to view attachment