Changeset 50037 in vbox for trunk/src/VBox/Devices/Storage
- Timestamp:
- Jan 9, 2014 1:38:27 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Storage/DevAHCI.cpp
r50036 r50037 1291 1291 static int PortCmd_r(PAHCI ahci, PAHCIPort pAhciPort, uint32_t iReg, uint32_t *pu32Value) 1292 1292 { 1293 ahciLog(("%s: read regCMD=%#010x\n", __FUNCTION__, pAhciPort->regCMD ));1293 ahciLog(("%s: read regCMD=%#010x\n", __FUNCTION__, pAhciPort->regCMD | AHCI_PORT_CMD_CCS_SHIFT(pAhciPort->u32CurrentCommandSlot))); 1294 1294 ahciLog(("%s: ICC=%d ASP=%d ALPE=%d DLAE=%d ATAPI=%d CPD=%d ISP=%d HPCP=%d PMA=%d CPS=%d CR=%d FR=%d ISS=%d CCS=%d FRE=%d CLO=%d POD=%d SUD=%d ST=%d\n", 1295 1295 __FUNCTION__, (pAhciPort->regCMD & AHCI_PORT_CMD_ICC) >> 28, (pAhciPort->regCMD & AHCI_PORT_CMD_ASP) >> 27, … … 1325 1325 (u32Value & AHCI_PORT_CMD_POD) >> 2, (u32Value & AHCI_PORT_CMD_SUD) >> 1, 1326 1326 (u32Value & AHCI_PORT_CMD_ST))); 1327 1328 /* The PxCMD.CCS bits are R/O and maintained separately. */ 1329 u32Value &= ~AHCI_PORT_CMD_CCS; 1327 1330 1328 1331 if (pAhciPort->fPoweredOn && pAhciPort->fSpunUp)
Note:
See TracChangeset
for help on using the changeset viewer.