Changeset 39135 in vbox for trunk/src/VBox/Devices/PC
- Timestamp:
- Oct 28, 2011 9:47:55 AM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 74586
- Location:
- trunk/src/VBox/Devices/PC
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/PC/DevAPIC.cpp
r39060 r39135 2280 2280 uint32_t ApicBase = pDev->paLapicsR3[0].apicbase & ~0xfff; 2281 2281 rc = PDMDevHlpMMIORegister(pDevIns, ApicBase, 0x1000, pDev, 2282 apicMMIOWrite, apicMMIORead, NULL, "APIC Memory"); 2282 IOMMMIO_FLAGS_READ_PASSTHRU | IOMMMIO_FLAGS_WRITE_PASSTHRU, 2283 apicMMIOWrite, apicMMIORead, "APIC Memory"); 2283 2284 if (RT_FAILURE(rc)) 2284 2285 return rc; -
trunk/src/VBox/Devices/PC/DevHPET.cpp
r39091 r39135 1444 1444 */ 1445 1445 rc = PDMDevHlpMMIORegister(pDevIns, HPET_BASE, 0x1000, pThis, 1446 hpetMMIOWrite, hpetMMIORead, NULL, "HPET Memory"); 1446 IOMMMIO_FLAGS_READ_PASSTHRU | IOMMMIO_FLAGS_WRITE_PASSTHRU, 1447 hpetMMIOWrite, hpetMMIORead, "HPET Memory"); 1447 1448 AssertRCReturn(rc, rc); 1448 1449 -
trunk/src/VBox/Devices/PC/DevIoApic.cpp
r39059 r39135 629 629 */ 630 630 rc = PDMDevHlpMMIORegister(pDevIns, 0xfec00000, 0x1000, s, 631 ioapicMMIOWrite, ioapicMMIORead, NULL, "I/O APIC Memory"); 631 IOMMMIO_FLAGS_READ_PASSTHRU | IOMMMIO_FLAGS_WRITE_PASSTHRU, 632 ioapicMMIOWrite, ioapicMMIORead, "I/O APIC Memory"); 632 633 if (RT_FAILURE(rc)) 633 634 return rc; -
trunk/src/VBox/Devices/PC/DevLPC.cpp
r37636 r39135 337 337 */ 338 338 rc = PDMDevHlpMMIORegister(pDevIns, RCBA_BASE, 0x4000, pThis, 339 lpcMMIOWrite, lpcMMIORead, NULL, "LPC Memory"); 339 IOMMMIO_FLAGS_READ_PASSTHRU | IOMMMIO_FLAGS_WRITE_PASSTHRU, 340 lpcMMIOWrite, lpcMMIORead, "LPC Memory"); 340 341 if (RT_FAILURE(rc)) 341 342 return rc;
Note:
See TracChangeset
for help on using the changeset viewer.