VirtualBox

source: vbox/trunk/src/VBox/VMM/VMMR3/cpus/Intel_80486.h@ 76553

Last change on this file since 76553 was 76553, checked in by vboxsync, 5 years ago

scm --update-copyright-year

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.9 KB
Line 
1/* $Id: Intel_80486.h 76553 2019-01-01 01:45:53Z vboxsync $ */
2/** @file
3 * CPU database entry "Intel 80486".
4 * Handcrafted.
5 */
6
7/*
8 * Copyright (C) 2013-2019 Oracle Corporation
9 *
10 * This file is part of VirtualBox Open Source Edition (OSE), as
11 * available from http://www.virtualbox.org. This file is free software;
12 * you can redistribute it and/or modify it under the terms of the GNU
13 * General Public License (GPL) as published by the Free Software
14 * Foundation, in version 2 as it comes in the "COPYING" file of the
15 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
16 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
17 */
18
19#ifndef VBOX_CPUDB_Intel_80486
20#define VBOX_CPUDB_Intel_80486
21#ifndef RT_WITHOUT_PRAGMA_ONCE
22# pragma once
23#endif
24
25#ifndef CPUM_DB_STANDALONE
26/**
27 * Fake CPUID leaves for Intel(R) 80486(DX2).
28 *
29 * The extended leaves are fake to make CPUM happy.
30 */
31static CPUMCPUIDLEAF const g_aCpuIdLeaves_Intel_80486[] =
32{
33 { 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x756e6547, 0x6c65746e, 0x49656e69, 0 },
34 { 0x00000001, 0x00000000, 0x00000000, 0x00000430, 0x00000100, 0x00000000, 0x00000111, 0 },
35 { 0x80000000, 0x00000000, 0x00000000, 0x80000008, 0x00000000, 0x00000000, 0x00000000, 0 },
36 { 0x80000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0 },
37 { 0x80000002, 0x00000000, 0x00000000, 0x65746e49, 0x2952286c, 0x34303820, 0x58443638, 0 },
38 { 0x80000003, 0x00000000, 0x00000000, 0x20202032, 0x20202020, 0x20202020, 0x20202020, 0 },
39 { 0x80000004, 0x00000000, 0x00000000, 0x20202020, 0x20202020, 0x20202020, 0x20202020, 0 },
40 { 0x80000005, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0 },
41 { 0x80000006, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0 },
42 { 0x80000007, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0 },
43 { 0x80000008, 0x00000000, 0x00000000, 0x00002020, 0x00000000, 0x00000000, 0x00000000, 0 },
44};
45#endif /* !CPUM_DB_STANDALONE */
46
47/**
48 * Database entry for Intel(R) 80486.
49 */
50static CPUMDBENTRY const g_Entry_Intel_80486 =
51{
52 /*.pszName = */ "Intel 80486",
53 /*.pszFullName = */ "Intel(R) 80486DX2",
54 /*.enmVendor = */ CPUMCPUVENDOR_INTEL,
55 /*.uFamily = */ 4,
56 /*.uModel = */ 3,
57 /*.uStepping = */ 0,
58 /*.enmMicroarch = */ kCpumMicroarch_Intel_80486,
59 /*.uScalableBusFreq = */ CPUM_SBUSFREQ_UNKNOWN,
60 /*.fFlags = */ 0,
61 /*.cMaxPhysAddrWidth= */ 32,
62 /*.fMxCsrMask = */ 0,
63 /*.paCpuIdLeaves = */ NULL_ALONE(g_aCpuIdLeaves_Intel_80486),
64 /*.cCpuIdLeaves = */ ZERO_ALONE(RT_ELEMENTS(g_aCpuIdLeaves_Intel_80486)),
65 /*.enmUnknownCpuId = */ CPUMUNKNOWNCPUID_DEFAULTS,
66 /*.DefUnknownCpuId = */ { 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
67 /*.fMsrMask = */ 0,
68 /*.cMsrRanges = */ 0,
69 /*.paMsrRanges = */ NULL,
70};
71
72#endif /* !VBOX_CPUDB_Intel_80486 */
73
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use