gem5  v21.0.1.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
cpuid.cc
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2008 The Regents of The University of Michigan
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions are
7  * met: redistributions of source code must retain the above copyright
8  * notice, this list of conditions and the following disclaimer;
9  * redistributions in binary form must reproduce the above copyright
10  * notice, this list of conditions and the following disclaimer in the
11  * documentation and/or other materials provided with the distribution;
12  * neither the name of the copyright holders nor the names of its
13  * contributors may be used to endorse or promote products derived from
14  * this software without specific prior written permission.
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27  */
28 
29 #include "arch/x86/cpuid.hh"
30 
31 #include "arch/x86/isa.hh"
32 #include "base/bitfield.hh"
33 #include "cpu/thread_context.hh"
34 
35 namespace X86ISA {
46  };
47 
58 
59  /*
60  * The following are defined by the spec but not yet implemented
61  */
62 /* // Function 9 is reserved
63  SVMInfo = 10,
64  // Functions 11-24 are reserved
65  TLB1GBPageInfo = 25,
66  PerformanceInfo,*/
67 
69  };
70 
71  static const int nameStringSize = 48;
72  static const char nameString[nameStringSize] = "Fake M5 x86_64 CPU";
73 
74  uint64_t
75  stringToRegister(const char *str)
76  {
77  uint64_t reg = 0;
78  for (int pos = 3; pos >=0; pos--) {
79  reg <<= 8;
80  reg |= str[pos];
81  }
82  return reg;
83  }
84 
85  bool
86  doCpuid(ThreadContext * tc, uint32_t function,
87  uint32_t index, CpuidResult &result)
88  {
89  uint16_t family = bits(function, 31, 16);
90  uint16_t funcNum = bits(function, 15, 0);
91  if (family == 0x8000) {
92  // The extended functions
93  switch (funcNum) {
95  {
96  ISA *isa = dynamic_cast<ISA *>(tc->getIsaPtr());
97  auto vendor_string = isa->getVendorString();
98  result = CpuidResult(
99  0x80000000 + NumExtendedCpuidFuncs - 1,
100  stringToRegister(vendor_string.c_str()),
101  stringToRegister(vendor_string.c_str() + 4),
102  stringToRegister(vendor_string.c_str() + 8));
103  }
104  break;
106  result = CpuidResult(0x00020f51, 0x00000405,
107  0xebd3fbff, 0x00000001);
108  break;
109  case NameString1:
110  case NameString2:
111  case NameString3:
112  {
113  // Zero fill anything beyond the end of the string. This
114  // should go away once the string is a vetted parameter.
115  char cleanName[nameStringSize];
116  memset(cleanName, '\0', nameStringSize);
117  strncpy(cleanName, nameString, nameStringSize);
118 
119  int offset = (funcNum - NameString1) * 16;
120  assert(nameStringSize >= offset + 16);
121  result = CpuidResult(
122  stringToRegister(cleanName + offset + 0),
123  stringToRegister(cleanName + offset + 4),
124  stringToRegister(cleanName + offset + 12),
125  stringToRegister(cleanName + offset + 8));
126  }
127  break;
128  case L1CacheAndTLB:
129  result = CpuidResult(0xff08ff08, 0xff20ff20,
130  0x40020140, 0x40020140);
131  break;
132  case L2L3CacheAndL2TLB:
133  result = CpuidResult(0x00000000, 0x42004200,
134  0x00000000, 0x04008140);
135  break;
136  case APMInfo:
137  result = CpuidResult(0x80000018, 0x68747541,
138  0x69746e65, 0x444d4163);
139  break;
140  case LongModeAddressSize:
141  result = CpuidResult(0x00003030, 0x00000000,
142  0x00000000, 0x00000000);
143  break;
144 /* case SVMInfo:
145  case TLB1GBPageInfo:
146  case PerformanceInfo:*/
147  default:
148  warn("x86 cpuid family 0x8000: unimplemented function %u",
149  funcNum);
150  return false;
151  }
152  } else if (family == 0x0000) {
153  // The standard functions
154  switch (funcNum) {
156  {
157  ISA *isa = dynamic_cast<ISA *>(tc->getIsaPtr());
158  auto vendor_string = isa->getVendorString();
159  result = CpuidResult(
161  stringToRegister(vendor_string.c_str()),
162  stringToRegister(vendor_string.c_str() + 4),
163  stringToRegister(vendor_string.c_str() + 8));
164  }
165  break;
166  case FamilyModelStepping:
167  result = CpuidResult(0x00020f51, 0x00000805,
168  0xefdbfbff, 0x00000209);
169  break;
170  case ExtendedFeatures:
171  result = CpuidResult(0x00000000, 0x01800000,
172  0x00000000, 0x00000000);
173  break;
174  default:
175  warn("x86 cpuid family 0x0000: unimplemented function %u",
176  funcNum);
177  return false;
178  }
179  } else {
180  warn("x86 cpuid: unknown family %#x", family);
181  return false;
182  }
183 
184  return true;
185  }
186 } // namespace X86ISA
X86ISA::nameStringSize
static const int nameStringSize
Definition: cpuid.cc:71
warn
#define warn(...)
Definition: logging.hh:239
X86ISA::CacheParams
@ CacheParams
Definition: cpuid.cc:41
X86ISA::ISA
Definition: isa.hh:50
X86ISA::NameString1
@ NameString1
Definition: cpuid.cc:51
X86ISA::VendorAndLargestStdFunc
@ VendorAndLargestStdFunc
Definition: cpuid.cc:37
X86ISA::LongModeAddressSize
@ LongModeAddressSize
Definition: cpuid.cc:57
X86ISA::VendorAndLargestExtFunc
@ VendorAndLargestExtFunc
Definition: cpuid.cc:49
X86ISA::StandardCpuidFunction
StandardCpuidFunction
Definition: cpuid.cc:36
X86ISA::APMInfo
@ APMInfo
Definition: cpuid.cc:56
X86ISA::stringToRegister
uint64_t stringToRegister(const char *str)
Definition: cpuid.cc:75
X86ISA::reg
Bitfield< 5, 3 > reg
Definition: types.hh:88
X86ISA::ISA::getVendorString
std::string getVendorString() const
Definition: isa.cc:434
ThreadContext::getIsaPtr
virtual BaseISA * getIsaPtr()=0
X86ISA::ExtendedCpuidFunctions
ExtendedCpuidFunctions
Definition: cpuid.cc:48
X86ISA::index
Bitfield< 5, 3 > index
Definition: types.hh:94
ThreadContext
ThreadContext is the external interface to all thread state for anything outside of the CPU.
Definition: thread_context.hh:88
bitfield.hh
X86ISA::L2L3CacheAndL2TLB
@ L2L3CacheAndL2TLB
Definition: cpuid.cc:55
X86ISA::ExtendedFeatures
@ ExtendedFeatures
Definition: cpuid.cc:44
X86ISA::NumStandardCpuidFuncs
@ NumStandardCpuidFuncs
Definition: cpuid.cc:45
X86ISA::FamilyModelStepping
@ FamilyModelStepping
Definition: cpuid.cc:38
X86ISA::NumExtendedCpuidFuncs
@ NumExtendedCpuidFuncs
Definition: cpuid.cc:68
X86ISA
This is exposed globally, independent of the ISA.
Definition: acpi.hh:55
isa.hh
X86ISA::offset
offset
Definition: misc.hh:1024
X86ISA::nameString
static const char nameString[nameStringSize]
Definition: cpuid.cc:72
X86ISA::MonitorMwait
@ MonitorMwait
Definition: cpuid.cc:42
X86ISA::NameString2
@ NameString2
Definition: cpuid.cc:52
X86ISA::FamilyModelSteppingBrandFeatures
@ FamilyModelSteppingBrandFeatures
Definition: cpuid.cc:50
X86ISA::doCpuid
bool doCpuid(ThreadContext *tc, uint32_t function, uint32_t index, CpuidResult &result)
Definition: cpuid.cc:86
cpuid.hh
X86ISA::L1CacheAndTLB
@ L1CacheAndTLB
Definition: cpuid.cc:54
bits
constexpr T bits(T val, unsigned first, unsigned last)
Extract the bitfield from position 'first' to 'last' (inclusive) from 'val' and right justify it.
Definition: bitfield.hh:73
X86ISA::NameString3
@ NameString3
Definition: cpuid.cc:53
X86ISA::CacheAndTLB
@ CacheAndTLB
Definition: cpuid.cc:39
X86ISA::ThermalPowerMgmt
@ ThermalPowerMgmt
Definition: cpuid.cc:43
thread_context.hh
X86ISA::SerialNumber
@ SerialNumber
Definition: cpuid.cc:40
X86ISA::CpuidResult
Definition: cpuid.hh:38

Generated on Tue Jun 22 2021 15:28:25 for gem5 by doxygen 1.8.17