/* $Id: Intel_80486.h 82968 2020-02-04 10:35:17Z vboxsync $ */ /** @file * CPU database entry "Intel 80486". * Handcrafted. */ /* * Copyright (C) 2013-2020 Oracle Corporation * * This file is part of VirtualBox Open Source Edition (OSE), as * available from http://www.virtualbox.org. This file is free software; * you can redistribute it and/or modify it under the terms of the GNU * General Public License (GPL) as published by the Free Software * Foundation, in version 2 as it comes in the "COPYING" file of the * VirtualBox OSE distribution. VirtualBox OSE is distributed in the * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind. */ #ifndef VBOX_CPUDB_Intel_80486_h #define VBOX_CPUDB_Intel_80486_h #ifndef RT_WITHOUT_PRAGMA_ONCE # pragma once #endif #ifndef CPUM_DB_STANDALONE /** * Fake CPUID leaves for Intel(R) 80486(DX2). * * The extended leaves are fake to make CPUM happy. */ static CPUMCPUIDLEAF const g_aCpuIdLeaves_Intel_80486[] = { { 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x756e6547, 0x6c65746e, 0x49656e69, 0 }, { 0x00000001, 0x00000000, 0x00000000, 0x00000430, 0x00000100, 0x00000000, 0x00000111, 0 }, { 0x80000000, 0x00000000, 0x00000000, 0x80000008, 0x00000000, 0x00000000, 0x00000000, 0 }, { 0x80000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0 }, { 0x80000002, 0x00000000, 0x00000000, 0x65746e49, 0x2952286c, 0x34303820, 0x58443638, 0 }, { 0x80000003, 0x00000000, 0x00000000, 0x20202032, 0x20202020, 0x20202020, 0x20202020, 0 }, { 0x80000004, 0x00000000, 0x00000000, 0x20202020, 0x20202020, 0x20202020, 0x20202020, 0 }, { 0x80000005, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0 }, { 0x80000006, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0 }, { 0x80000007, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0 }, { 0x80000008, 0x00000000, 0x00000000, 0x00002020, 0x00000000, 0x00000000, 0x00000000, 0 }, }; #endif /* !CPUM_DB_STANDALONE */ /** * Database entry for Intel(R) 80486. */ static CPUMDBENTRY const g_Entry_Intel_80486 = { /*.pszName = */ "Intel 80486", /*.pszFullName = */ "Intel(R) 80486DX2", /*.enmVendor = */ CPUMCPUVENDOR_INTEL, /*.uFamily = */ 4, /*.uModel = */ 3, /*.uStepping = */ 0, /*.enmMicroarch = */ kCpumMicroarch_Intel_80486, /*.uScalableBusFreq = */ CPUM_SBUSFREQ_UNKNOWN, /*.fFlags = */ 0, /*.cMaxPhysAddrWidth= */ 32, /*.fMxCsrMask = */ 0, /*.paCpuIdLeaves = */ NULL_ALONE(g_aCpuIdLeaves_Intel_80486), /*.cCpuIdLeaves = */ ZERO_ALONE(RT_ELEMENTS(g_aCpuIdLeaves_Intel_80486)), /*.enmUnknownCpuId = */ CPUMUNKNOWNCPUID_DEFAULTS, /*.DefUnknownCpuId = */ { 0x00000000, 0x00000000, 0x00000000, 0x00000000 }, /*.fMsrMask = */ 0, /*.cMsrRanges = */ 0, /*.paMsrRanges = */ NULL, }; #endif /* !VBOX_CPUDB_Intel_80486_h */