Specifications

©
2008 Advanced Micro Devices Inc.
Sample Programs
AMD SB600 BIOS Developer’s Guide (Public Version) Proprietary
Page 79
Name(_ADR, 0) // IDE Primary Channel
Device(P_D0) {
Name(_ADR, 0) // Drive 0 - Master
Method(_STA,0){
if (\_SB_.PCI0.SAT2.CST0) { // If SATA detected
return(0x0f)
}
else {
return (0x00)
}
} // End of Method(_STA)
} // End of P_D0
} // End of PRID
Device(SECD) {
Name(_ADR, 1) // IDE Secondary Channel
Device(S_D0) {
Name(_ADR, 0) // Drive 0 - Master
Method(_STA,0){
if (\_SB_.PCI0.SAT2.CST1) { // If SATA detected
return(0x0f)
}
else {
return (0x00)
}
} //End of Method(_STA)
} // End of S_D0
} // End of SECD
} // End of Scope(\_SB_.PCI0.SAT2)