gem5  v21.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
intelmp.cc
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2008 The Hewlett-Packard Development Company
3  * All rights reserved.
4  *
5  * The license below extends only to copyright in the software and shall
6  * not be construed as granting a license to any other intellectual
7  * property including but not limited to intellectual property relating
8  * to a hardware implementation of the functionality of the software
9  * licensed hereunder. You may use the software subject to the license
10  * terms below provided that you ensure that this notice is replicated
11  * unmodified and in its entirety in all distributions of the software,
12  * modified or unmodified, in source code or in binary form.
13  *
14  * Redistribution and use in source and binary forms, with or without
15  * modification, are permitted provided that the following conditions are
16  * met: redistributions of source code must retain the above copyright
17  * notice, this list of conditions and the following disclaimer;
18  * redistributions in binary form must reproduce the above copyright
19  * notice, this list of conditions and the following disclaimer in the
20  * documentation and/or other materials provided with the distribution;
21  * neither the name of the copyright holders nor the names of its
22  * contributors may be used to endorse or promote products derived from
23  * this software without specific prior written permission.
24  *
25  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
26  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
27  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
28  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
29  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
30  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
31  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
32  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
33  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
34  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
35  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36  */
37 
38 #include "arch/x86/bios/intelmp.hh"
39 
40 #include "arch/x86/isa_traits.hh"
41 #include "base/logging.hh"
42 #include "base/types.hh"
43 #include "mem/port_proxy.hh"
44 #include "sim/byteswap.hh"
45 
46 // Config entry types
47 #include "params/X86IntelMPBaseConfigEntry.hh"
48 #include "params/X86IntelMPExtConfigEntry.hh"
49 
50 // General table structures
51 #include "params/X86IntelMPConfigTable.hh"
52 #include "params/X86IntelMPFloatingPointer.hh"
53 
54 // Base entry types
55 #include "params/X86IntelMPBus.hh"
56 #include "params/X86IntelMPIOAPIC.hh"
57 #include "params/X86IntelMPIOIntAssignment.hh"
58 #include "params/X86IntelMPLocalIntAssignment.hh"
59 #include "params/X86IntelMPProcessor.hh"
60 
61 // Extended entry types
62 #include "params/X86IntelMPAddrSpaceMapping.hh"
63 #include "params/X86IntelMPBusHierarchy.hh"
64 #include "params/X86IntelMPCompatAddrSpaceMod.hh"
65 
67 
68 template<class T>
69 uint8_t
71 {
72  uint64_t guestVal = htole(val);
73  proxy.writeBlob(addr, &guestVal, sizeof(T));
74 
75  uint8_t checkSum = 0;
76  while (guestVal) {
77  checkSum += guestVal;
78  guestVal >>= 8;
79  }
80  return checkSum;
81 }
82 
83 uint8_t
84 writeOutString(PortProxy& proxy, Addr addr, std::string str, int length)
85 {
86  char cleanedString[length + 1];
87  cleanedString[length] = 0;
88 
89  if (str.length() > length) {
90  memcpy(cleanedString, str.c_str(), length);
91  warn("Intel MP configuration table string \"%s\" "
92  "will be truncated to \"%s\".\n", str, (char *)&cleanedString);
93  } else {
94  memcpy(cleanedString, str.c_str(), str.length());
95  memset(cleanedString + str.length(), 0, length - str.length());
96  }
97  proxy.writeBlob(addr, &cleanedString, length);
98 
99  uint8_t checkSum = 0;
100  for (int i = 0; i < length; i++)
101  checkSum += cleanedString[i];
102 
103  return checkSum;
104 }
105 
106 Addr
108 {
109  // Make sure that either a config table is present or a default
110  // configuration was found but not both.
111  if (!tableAddr && !defaultConfig)
112  fatal("Either an MP configuration table or a default configuration "
113  "must be used.");
114  if (tableAddr && defaultConfig)
115  fatal("Both an MP configuration table and a default configuration "
116  "were set.");
117 
118  uint8_t checkSum = 0;
119 
120  proxy.writeBlob(addr, signature, 4);
121  for (int i = 0; i < 4; i++)
122  checkSum += signature[i];
123 
124  checkSum += writeOutField(proxy, addr + 4, tableAddr);
125 
126  // The length of the structure in paragraphs, aka 16 byte chunks.
127  uint8_t length = 1;
128  proxy.writeBlob(addr + 8, &length, 1);
129  checkSum += length;
130 
131  proxy.writeBlob(addr + 9, &specRev, 1);
132  checkSum += specRev;
133 
134  proxy.writeBlob(addr + 11, &defaultConfig, 1);
135  checkSum += defaultConfig;
136 
137  uint32_t features2_5 = imcrPresent ? (1 << 7) : 0;
138  checkSum += writeOutField(proxy, addr + 12, features2_5);
139 
140  checkSum = -checkSum;
141  proxy.writeBlob(addr + 10, &checkSum, 1);
142 
143  return 16;
144 }
145 
147  SimObject(p), tableAddr(0), specRev(p.spec_rev),
148  defaultConfig(p.default_config), imcrPresent(p.imcr_present)
149 {}
150 
151 Addr
153  Addr addr, uint8_t &checkSum)
154 {
155  proxy.writeBlob(addr, &type, 1);
156  checkSum += type;
157  return 1;
158 }
159 
161  const Params &p, uint8_t _type) :
162  SimObject(p), type(_type)
163 {}
164 
165 Addr
167  Addr addr, uint8_t &checkSum)
168 {
169  proxy.writeBlob(addr, &type, 1);
170  checkSum += type;
171  proxy.writeBlob(addr + 1, &length, 1);
172  checkSum += length;
173  return 1;
174 }
175 
177  uint8_t _type, uint8_t _length) :
178  SimObject(p), type(_type), length(_length)
179 {}
180 
181 const char X86ISA::IntelMP::ConfigTable::signature[] = "PCMP";
182 
183 Addr
185 {
186  uint8_t checkSum = 0;
187 
188  proxy.writeBlob(addr, signature, 4);
189  for (int i = 0; i < 4; i++)
190  checkSum += signature[i];
191 
192  // Base table length goes here but will be calculated later.
193 
194  proxy.writeBlob(addr + 6, &specRev, 1);
195  checkSum += specRev;
196 
197  // The checksum goes here but is still being calculated.
198 
199  checkSum += writeOutString(proxy, addr + 8, oemID, 8);
200  checkSum += writeOutString(proxy, addr + 16, productID, 12);
201 
202  checkSum += writeOutField(proxy, addr + 28, oemTableAddr);
203  checkSum += writeOutField(proxy, addr + 32, oemTableSize);
204  checkSum += writeOutField(proxy, addr + 34, (uint16_t)baseEntries.size());
205  checkSum += writeOutField(proxy, addr + 36, localApic);
206 
207  uint8_t reserved = 0;
208  proxy.writeBlob(addr + 43, &reserved, 1);
209  checkSum += reserved;
210 
212  uint16_t offset = 44;
213  for (baseEnt = baseEntries.begin();
214  baseEnt != baseEntries.end(); baseEnt++) {
215  offset += (*baseEnt)->writeOut(proxy, addr + offset, checkSum);
216  }
217 
218  // We've found the end of the base table this point.
219  checkSum += writeOutField(proxy, addr + 4, offset);
220 
222  uint16_t extOffset = 0;
223  uint8_t extCheckSum = 0;
224  for (extEnt = extEntries.begin();
225  extEnt != extEntries.end(); extEnt++) {
226  extOffset += (*extEnt)->writeOut(proxy,
227  addr + offset + extOffset, extCheckSum);
228  }
229 
230  checkSum += writeOutField(proxy, addr + 40, extOffset);
231  extCheckSum = -extCheckSum;
232  checkSum += writeOutField(proxy, addr + 42, extCheckSum);
233 
234  // And now, we finally have the whole check sum completed.
235  checkSum = -checkSum;
236  writeOutField(proxy, addr + 7, checkSum);
237 
238  return offset + extOffset;
239 };
240 
242  specRev(p.spec_rev), oemID(p.oem_id), productID(p.product_id),
243  oemTableAddr(p.oem_table_addr), oemTableSize(p.oem_table_size),
244  localApic(p.local_apic),
245  baseEntries(p.base_entries), extEntries(p.ext_entries)
246 {}
247 
248 Addr
250  PortProxy& proxy, Addr addr, uint8_t &checkSum)
251 {
252  BaseConfigEntry::writeOut(proxy, addr, checkSum);
253  checkSum += writeOutField(proxy, addr + 1, localApicID);
254  checkSum += writeOutField(proxy, addr + 2, localApicVersion);
255  checkSum += writeOutField(proxy, addr + 3, cpuFlags);
256  checkSum += writeOutField(proxy, addr + 4, cpuSignature);
257  checkSum += writeOutField(proxy, addr + 8, featureFlags);
258 
259  uint32_t reserved = 0;
260  proxy.writeBlob(addr + 12, &reserved, 4);
261  proxy.writeBlob(addr + 16, &reserved, 4);
262  return 20;
263 }
264 
266  localApicID(p.local_apic_id), localApicVersion(p.local_apic_version),
267  cpuFlags(0), cpuSignature(0), featureFlags(p.feature_flags)
268 {
269  if (p.enable)
270  cpuFlags |= (1 << 0);
271  if (p.bootstrap)
272  cpuFlags |= (1 << 1);
273 
274  replaceBits(cpuSignature, 3, 0, p.stepping);
275  replaceBits(cpuSignature, 7, 4, p.model);
276  replaceBits(cpuSignature, 11, 8, p.family);
277 }
278 
279 Addr
281  PortProxy& proxy, Addr addr, uint8_t &checkSum)
282 {
283  BaseConfigEntry::writeOut(proxy, addr, checkSum);
284  checkSum += writeOutField(proxy, addr + 1, busID);
285  checkSum += writeOutString(proxy, addr + 2, busType, 6);
286  return 8;
287 }
288 
290  busID(p.bus_id), busType(p.bus_type)
291 {}
292 
293 Addr
295  PortProxy& proxy, Addr addr, uint8_t &checkSum)
296 {
297  BaseConfigEntry::writeOut(proxy, addr, checkSum);
298  checkSum += writeOutField(proxy, addr + 1, id);
299  checkSum += writeOutField(proxy, addr + 2, version);
300  checkSum += writeOutField(proxy, addr + 3, flags);
301  checkSum += writeOutField(proxy, addr + 4, address);
302  return 8;
303 }
304 
306  id(p.id), version(p.version), flags(0), address(p.address)
307 {
308  if (p.enable)
309  flags |= 1;
310 }
311 
312 Addr
314  PortProxy& proxy, Addr addr, uint8_t &checkSum)
315 {
316  BaseConfigEntry::writeOut(proxy, addr, checkSum);
317  checkSum += writeOutField(proxy, addr + 1, interruptType);
318  checkSum += writeOutField(proxy, addr + 2, flags);
319  checkSum += writeOutField(proxy, addr + 4, sourceBusID);
320  checkSum += writeOutField(proxy, addr + 5, sourceBusIRQ);
321  checkSum += writeOutField(proxy, addr + 6, destApicID);
322  checkSum += writeOutField(proxy, addr + 7, destApicIntIn);
323  return 8;
324 }
325 
327  IntAssignment(p, p.interrupt_type, p.polarity, p.trigger, 3,
328  p.source_bus_id, p.source_bus_irq,
329  p.dest_io_apic_id, p.dest_io_apic_intin)
330 {}
331 
333  IntAssignment(p, p.interrupt_type, p.polarity, p.trigger, 4,
334  p.source_bus_id, p.source_bus_irq,
335  p.dest_local_apic_id, p.dest_local_apic_intin)
336 {}
337 
338 Addr
340  PortProxy& proxy, Addr addr, uint8_t &checkSum)
341 {
342  ExtConfigEntry::writeOut(proxy, addr, checkSum);
343  checkSum += writeOutField(proxy, addr + 2, busID);
344  checkSum += writeOutField(proxy, addr + 3, addrType);
345  checkSum += writeOutField(proxy, addr + 4, addr);
346  checkSum += writeOutField(proxy, addr + 12, addrLength);
347  return length;
348 }
349 
351  ExtConfigEntry(p, 128, 20),
352  busID(p.bus_id), addrType(p.address_type),
353  addr(p.address), addrLength(p.length)
354 {}
355 
356 Addr
358  PortProxy& proxy, Addr addr, uint8_t &checkSum)
359 {
360  ExtConfigEntry::writeOut(proxy, addr, checkSum);
361  checkSum += writeOutField(proxy, addr + 2, busID);
362  checkSum += writeOutField(proxy, addr + 3, info);
363  checkSum += writeOutField(proxy, addr + 4, parentBus);
364 
365  uint32_t reserved = 0;
366  proxy.writeBlob(addr + 5, &reserved, 3);
367 
368  return length;
369 }
370 
372  ExtConfigEntry(p, 129, 8),
373  busID(p.bus_id), info(0), parentBus(p.parent_bus)
374 {
375  if (p.subtractive_decode)
376  info |= 1;
377 }
378 
379 Addr
381  PortProxy& proxy, Addr addr, uint8_t &checkSum)
382 {
383  ExtConfigEntry::writeOut(proxy, addr, checkSum);
384  checkSum += writeOutField(proxy, addr + 2, busID);
385  checkSum += writeOutField(proxy, addr + 3, mod);
386  checkSum += writeOutField(proxy, addr + 4, rangeList);
387  return length;
388 }
389 
391  ExtConfigEntry(p, 130, 8),
392  busID(p.bus_id), mod(0), rangeList(p.range_list)
393 {
394  if (p.add)
395  mod |= 1;
396 }
fatal
#define fatal(...)
This implements a cprintf based fatal() function.
Definition: logging.hh:183
X86ISA::IntelMP::FloatingPointer::writeOut
Addr writeOut(PortProxy &proxy, Addr addr)
Definition: intelmp.cc:107
X86ISA::IntelMP::Bus::Bus
Bus(const Params &p)
Definition: intelmp.cc:289
X86ISA::IntelMP::BaseConfigEntry
Definition: intelmp.hh:115
warn
#define warn(...)
Definition: logging.hh:239
X86ISA::IntelMP::Processor::cpuFlags
uint8_t cpuFlags
Definition: intelmp.hh:174
X86ISA::IntelMP::AddrSpaceMapping::AddrSpaceMapping
AddrSpaceMapping(const Params &p)
Definition: intelmp.cc:350
X86ISA::IntelMP::BusHierarchy::writeOut
Addr writeOut(PortProxy &proxy, Addr addr, uint8_t &checkSum)
Definition: intelmp.cc:357
X86ISA::IntelMP::ConfigTable::signature
static const char signature[]
Definition: intelmp.hh:149
X86ISA::IntelMP::BaseConfigEntry::Params
X86IntelMPBaseConfigEntryParams Params
Definition: intelmp.hh:118
writeOutField
uint8_t writeOutField(PortProxy &proxy, Addr addr, T val)
Definition: intelmp.cc:70
ArmISA::i
Bitfield< 7 > i
Definition: miscregs_types.hh:63
intelmp.hh
htole
T htole(T value)
Definition: byteswap.hh:141
X86ISA::IntelMP::Processor::cpuSignature
uint32_t cpuSignature
Definition: intelmp.hh:175
std::vector
STL vector class.
Definition: stl.hh:37
X86ISA::IntelMP::FloatingPointer::tableAddr
uint32_t tableAddr
Definition: intelmp.hh:91
X86ISA::IntelMP::ConfigTable::writeOut
Addr writeOut(PortProxy &proxy, Addr addr)
Definition: intelmp.cc:184
X86ISA::IntelMP::ConfigTable::ConfigTable
ConfigTable(const Params &p)
Definition: intelmp.cc:241
X86ISA::IntelMP::LocalIntAssignment::LocalIntAssignment
LocalIntAssignment(const Params &p)
Definition: intelmp.cc:332
X86ISA::IntelMP::BaseConfigEntry::BaseConfigEntry
BaseConfigEntry(const Params &p, uint8_t _type)
Definition: intelmp.cc:160
PortProxy::writeBlob
void writeBlob(Addr addr, const void *p, int size) const
Same as tryWriteBlob, but insists on success.
Definition: port_proxy.hh:187
X86ISA::IntelMP::IntAssignment::writeOut
Addr writeOut(PortProxy &proxy, Addr addr, uint8_t &checkSum)
Definition: intelmp.cc:313
reserved
reserved
Definition: pcireg.h:54
X86ISA::IntelMP::BaseConfigEntry::writeOut
virtual Addr writeOut(PortProxy &proxy, Addr addr, uint8_t &checkSum)
Definition: intelmp.cc:152
X86ISA::IntelMP::FloatingPointer::specRev
uint8_t specRev
Definition: intelmp.hh:92
X86ISA::IntelMP::ConfigTable::Params
X86IntelMPConfigTableParams Params
Definition: intelmp.hh:147
X86ISA::IntelMP::CompatAddrSpaceMod::writeOut
Addr writeOut(PortProxy &proxy, Addr addr, uint8_t &checkSum)
Definition: intelmp.cc:380
X86ISA::IntelMP::BusHierarchy::BusHierarchy
BusHierarchy(const Params &p)
Definition: intelmp.cc:371
X86ISA::IntelMP::FloatingPointer::imcrPresent
bool imcrPresent
Definition: intelmp.hh:94
writeOutString
uint8_t writeOutString(PortProxy &proxy, Addr addr, std::string str, int length)
Definition: intelmp.cc:84
X86ISA::IntelMP::IOAPIC::IOAPIC
IOAPIC(const Params &p)
Definition: intelmp.cc:305
X86ISA::IntelMP::ExtConfigEntry::writeOut
virtual Addr writeOut(PortProxy &proxy, Addr addr, uint8_t &checkSum)
Definition: intelmp.cc:166
port_proxy.hh
X86ISA::IntelMP::IOIntAssignment::IOIntAssignment
IOIntAssignment(const Params &p)
Definition: intelmp.cc:326
isa_traits.hh
X86ISA::IntelMP::ExtConfigEntry::ExtConfigEntry
ExtConfigEntry(const Params &p, uint8_t _type, uint8_t _length)
Definition: intelmp.cc:176
X86ISA::IntelMP::BusHierarchy::info
uint8_t info
Definition: intelmp.hh:287
X86ISA::val
Bitfield< 63 > val
Definition: misc.hh:769
X86ISA::IntelMP::ExtConfigEntry::Params
X86IntelMPExtConfigEntryParams Params
Definition: intelmp.hh:132
Addr
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:148
X86ISA::IntelMP::ExtConfigEntry
Definition: intelmp.hh:129
X86ISA::offset
offset
Definition: misc.hh:1024
X86ISA::IntelMP::AddrSpaceMapping::writeOut
Addr writeOut(PortProxy &proxy, Addr addr, uint8_t &checkSum)
Definition: intelmp.cc:339
X86ISA::addr
Bitfield< 3 > addr
Definition: types.hh:80
X86ISA::IntelMP::Processor::writeOut
Addr writeOut(PortProxy &proxy, Addr addr, uint8_t &checkSum)
Definition: intelmp.cc:249
PortProxy
This object is a proxy for a port or other object which implements the functional response protocol,...
Definition: port_proxy.hh:80
X86ISA::mod
mod
Definition: types.hh:87
X86ISA::p
Bitfield< 0 > p
Definition: pagetable.hh:148
types.hh
X86ISA::IntelMP::IOAPIC::writeOut
Addr writeOut(PortProxy &proxy, Addr addr, uint8_t &checkSum)
Definition: intelmp.cc:294
logging.hh
X86ISA::IntelMP::CompatAddrSpaceMod::CompatAddrSpaceMod
CompatAddrSpaceMod(const Params &p)
Definition: intelmp.cc:390
X86ISA::type
type
Definition: misc.hh:727
X86ISA::IntelMP::Processor::Processor
Processor(const Params &p)
Definition: intelmp.cc:265
X86ISA::IntelMP::Bus::writeOut
Addr writeOut(PortProxy &proxy, Addr addr, uint8_t &checkSum)
Definition: intelmp.cc:280
X86ISA::IntelMP::IOAPIC::flags
uint8_t flags
Definition: intelmp.hh:205
X86ISA::IntelMP::CompatAddrSpaceMod::mod
uint8_t mod
Definition: intelmp.hh:302
X86ISA::IntelMP::FloatingPointer::Params
X86IntelMPFloatingPointerParams Params
Definition: intelmp.hh:89
X86ISA::IntelMP::FloatingPointer::FloatingPointer
FloatingPointer(const Params &p)
Definition: intelmp.cc:146
X86ISA::trigger
Bitfield< 21 > trigger
Definition: intmessage.hh:48
X86ISA::IntelMP::IntAssignment
Definition: intelmp.hh:214
X86ISA::IntelMP::FloatingPointer::signature
static const char signature[]
Definition: intelmp.hh:96
X86ISA::IntelMP::FloatingPointer::defaultConfig
uint8_t defaultConfig
Definition: intelmp.hh:93
replaceBits
constexpr void replaceBits(T &val, unsigned first, unsigned last, B bit_val)
A convenience function to replace bits first to last of val with bit_val in place.
Definition: bitfield.hh:174
ArmISA::id
Bitfield< 33 > id
Definition: miscregs_types.hh:247
byteswap.hh
SimObject
Abstract superclass for simulation objects.
Definition: sim_object.hh:141

Generated on Tue Mar 23 2021 19:41:23 for gem5 by doxygen 1.8.17