Better debugging output for the ide controller

dev/ide_ctrl.cc:
    Better debugging

--HG--
extra : convert_revision : 854e17f9f36fe4a0b6b69fd48027d2b1b231e858
This commit is contained in:
Nathan Binkert 2005-04-06 17:39:25 -04:00
parent 6d412f63a3
commit 235186859c

View file

@ -289,15 +289,16 @@ IdeController::ReadConfig(int offset, int size, uint8_t *data)
memcpy((void *)data, (void *)&pci_regs[offset], size); memcpy((void *)data, (void *)&pci_regs[offset], size);
} }
DPRINTF(IdeCtrl, "IDE PCI read offset: %#x (%#x) size: %#x data: %#x\n", DPRINTF(IdeCtrl, "PCI read offset: %#x (%#x) size: %#x data: %#x\n",
origOffset, offset, size, *(uint32_t *)data); origOffset, offset, size,
(*(uint32_t *)data) & (0xffffffff >> 8 * (4 - size)));
} }
void void
IdeController::WriteConfig(int offset, int size, uint32_t data) IdeController::WriteConfig(int offset, int size, uint32_t data)
{ {
DPRINTF(IdeCtrl, "IDE PCI write offset: %#x size: %#x data: %#x\n", DPRINTF(IdeCtrl, "PCI write offset: %#x size: %#x data: %#x\n",
offset, size, data); offset, size, data & (0xffffffff >> 8 * (4 - size)));
// do standard write stuff if in standard PCI space // do standard write stuff if in standard PCI space
if (offset < PCI_DEVICE_SPECIFIC) { if (offset < PCI_DEVICE_SPECIFIC) {
@ -438,8 +439,9 @@ IdeController::read(MemReqPtr &req, uint8_t *data)
memcpy((void *)data, &bmi_regs[offset], req->size); memcpy((void *)data, &bmi_regs[offset], req->size);
} }
DPRINTF(IdeCtrl, "IDE read from offset: %#x size: %#x data: %#x\n", DPRINTF(IdeCtrl, "read from offset: %#x size: %#x data: %#x\n",
offset, req->size, *(uint32_t *)data); offset, req->size,
(*(uint32_t *)data) & (0xffffffff >> 8 * (4 - req->size)));
return No_Fault; return No_Fault;
} }
@ -458,8 +460,9 @@ IdeController::write(MemReqPtr &req, const uint8_t *data)
byte = (req->size == sizeof(uint8_t)) ? true : false; byte = (req->size == sizeof(uint8_t)) ? true : false;
cmdBlk = (type == COMMAND_BLOCK) ? true : false; cmdBlk = (type == COMMAND_BLOCK) ? true : false;
DPRINTF(IdeCtrl, "IDE write from offset: %#x size: %#x data: %#x\n", DPRINTF(IdeCtrl, "write from offset: %#x size: %#x data: %#x\n",
offset, req->size, *(uint32_t *)data); offset, req->size,
(*(uint32_t *)data) & (0xffffffff >> 8 * (4 - req->size)));
uint8_t oldVal, newVal; uint8_t oldVal, newVal;