Changeset 80038 in vbox
- Timestamp:
- Jul 29, 2019 9:30:52 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/PC/DevPcBios.cpp
r77259 r80038 196 196 /** PXE debug logging enabled? */ 197 197 uint8_t u8PXEDebug; 198 /** Physical address of the MP table. */ 199 uint32_t u32MPTableAddr; 198 200 /** PXE boot PCI bus/dev/fn list. */ 199 201 uint16_t au16NetBootDev[NET_BOOT_DEVS]; … … 1037 1039 PDEVPCBIOS pThis = PDMINS_2_DATA(pDevIns, PDEVPCBIOS); 1038 1040 LogFlow(("pcbiosMemSetup:\n")); 1041 1042 if (pThis->u8IOAPIC) 1043 FwCommonPlantMpsFloatPtr(pDevIns, pThis->u32MPTableAddr); 1039 1044 1040 1045 /* … … 1602 1607 if (pThis->u8IOAPIC) 1603 1608 { 1609 pThis->u32MPTableAddr = VBOX_DMI_TABLE_BASE + VBOX_DMI_TABLE_SIZE; 1604 1610 FwCommonPlantMpsTable(pDevIns, pThis->au8DMIPage /* aka VBOX_DMI_TABLE_BASE */ + VBOX_DMI_TABLE_SIZE, 1605 1611 _4K - VBOX_DMI_TABLE_SIZE, pThis->cCpus); 1606 FwCommonPlantMpsFloatPtr(pDevIns, VBOX_DMI_TABLE_BASE + VBOX_DMI_TABLE_SIZE); 1607 LogRel(("PcBios: MPS table at %08x\n", VBOX_DMI_TABLE_BASE + VBOX_DMI_TABLE_SIZE)); 1612 LogRel(("PcBios: MPS table at %08x\n", pThis->u32MPTableAddr)); 1608 1613 } 1609 1614
Note:
See TracChangeset
for help on using the changeset viewer.