Changeset 60542 in vbox for trunk/src/VBox/VMM/VMMR3
- Timestamp:
- Apr 18, 2016 3:02:26 PM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 106671
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/APIC.cpp
r60516 r60542 207 207 memset((void *)&pX2ApicPage->self_ipi, 0, sizeof(pX2ApicPage->self_ipi)); 208 208 209 /* Clear the p ostedinterrupt bitmaps. */209 /* Clear the pending-interrupt bitmaps. */ 210 210 PAPICCPU pApicCpu = VMCPU_TO_APICCPU(pVCpu); 211 211 memset((void *)&pApicCpu->ApicPibLevel, 0, sizeof(APICPIB)); … … 251 251 LogFlow(("APIC%u: APICR3Reset\n", pVCpu->idCpu)); 252 252 253 #ifdef RT_STRICT253 #ifdef VBOX_STRICT 254 254 /* Verify that the initial APIC ID reported via CPUID matches our VMCPU ID assumption. */ 255 CPUMCPUIDLEAF CpuLeaf;256 int rc = CPUMR3CpuIdGetLeaf(pVCpu->CTX_SUFF(pVM), &CpuLeaf, 1, 0);257 AssertRC(rc);258 Assert((( CpuLeaf.uEbx >> 24) & 0xff) == pVCpu->idCpu);255 uint32_t uEax, uEbx, uEcx, uEdx; 256 uEax = uEbx = uEcx = uEdx = UINT32_MAX; 257 CPUMGetGuestCpuId(pVCpu, 1, 0, &uEax, &uEbx, &uEcx, &uEdx); 258 Assert(((uEbx >> 24) & 0xff) == pVCpu->idCpu); 259 259 #endif 260 260 261 /* 262 * The state following a power-up or reset is a superset of the INIT state. 263 * See Intel spec. 10.4.7.3 "Local APIC State After an INIT Reset ('Wait-for-SIPI' State)" 264 */ 261 265 apicR3InitIpi(pVCpu); 262 263 PXAPICPAGE pXApicPage = VMCPU_TO_XAPICPAGE(pVCpu);264 266 265 267 /* … … 268 270 * The version determines the number of LVT entries and size of the APIC ID (8 bits for P4). 269 271 */ 272 PXAPICPAGE pXApicPage = VMCPU_TO_XAPICPAGE(pVCpu); 270 273 #if XAPIC_HARDWARE_VERSION == XAPIC_HARDWARE_VERSION_P4 271 274 pXApicPage->version.u.u8MaxLvtEntry = XAPIC_MAX_LVT_ENTRIES_P4 - 1; … … 276 279 #endif 277 280 278 /** @todo It isn't very clear where the default base address is (re)initialized,279 * atm we do it here in Reset. */281 /** @todo It isn't clear in the spec. where exactly the default base address 282 * is (re)initialized, atm we do it here in Reset. */ 280 283 apicR3ResetBaseMsr(pVCpu); 281 284 … … 985 988 SupApicPage.Phys = NIL_RTHCPHYS; 986 989 990 Assert(pVCpu->idCpu == idCpu); 987 991 Assert(pApicCpu->pvApicPageR3 == NIL_RTR0PTR); 988 992 Assert(pApicCpu->pvApicPageR0 == NIL_RTR0PTR); … … 1154 1158 pApic->pApicDevRC = PDMINS_2_DATA_RCPTR(pDevIns); 1155 1159 1156 rc = apicR3InitState(pVM); 1157 AssertRCReturn(rc, rc); 1160 apicR3InitState(pVM); 1158 1161 1159 1162 /*
Note:
See TracChangeset
for help on using the changeset viewer.