VirtualBox

Changeset 58547 in vbox


Ignore:
Timestamp:
Nov 2, 2015 11:12:04 PM (9 years ago)
Author:
vboxsync
Message:

VMM: Add entry for Intel Atom

Location:
trunk/src/VBox/VMM
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/VMM/VMMR3/CPUMR3Db.cpp

    r58122 r58547  
    183183#include "cpus/Intel_Pentium_M_processor_2_00GHz.h"
    184184#include "cpus/Intel_Pentium_4_3_00GHz.h"
     185#include "cpus/Intel_Atom_330_1_60GHz.h"
    185186
    186187#include "cpus/AMD_FX_8150_Eight_Core.h"
     
    216217#ifdef VBOX_CPUDB_Intel_Core_i7_2635QM
    217218    &g_Entry_Intel_Core_i7_2635QM,
     219#endif
     220#ifdef VBOX_CPUDB_Intel_Atom_330_1_60GHz
     221    &g_Entry_Intel_Atom_330_1_60GHz,
    218222#endif
    219223#ifdef Intel_Pentium_M_processor_2_00GHz
  • trunk/src/VBox/VMM/tools/VBoxCpuReport.cpp

    r54737 r58547  
    508508#endif
    509509            /* Skip 0xc0011012..13 as it seems to be bad for our health (Phenom II X6 1100T). */
    510             if ((uMsr >= 0xc0011012 && uMsr <= 0xc0011013) && g_enmVendor == CPUMCPUVENDOR_AMD)
     510            /* Ditto for 0x0000002a (EBL_CR_POWERON) and 0x00000277 (MSR_IA32_CR_PAT) on Intel (Atom 330). */
     511            if (   ((uMsr >= 0xc0011012 && uMsr <= 0xc0011013) && g_enmVendor == CPUMCPUVENDOR_AMD)
     512                || (   (uMsr == 0x2a || uMsr == 0x277)
     513                    && g_enmVendor == CPUMCPUVENDOR_INTEL
     514                    && g_enmMicroarch == kCpumMicroarch_Intel_Atom_Bonnell))
    511515                vbCpuRepDebug("Skipping %#x\n", uMsr);
    512516            else
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette