46 #include "params/X86SMBiosBiosInformation.hh" 47 #include "params/X86SMBiosSMBiosStructure.hh" 48 #include "params/X86SMBiosSMBiosTable.hh" 68 typename T::iterator vecIt;
69 for (vecIt = vec.begin(); vecIt != vec.end(); vecIt++) {
70 val |= (1 << (*vecIt));
80 uint8_t
length = getLength();
83 uint16_t handleGuest =
htole(handle);
84 proxy.
writeBlob(addr + 2, &handleGuest, 2);
86 return length + getStringLength();
100 const uint8_t nullTerminator = 0;
105 proxy.
writeBlob(addr + offset, &nullTerminator, 1);
109 proxy.
writeBlob(addr + offset, it->c_str(), it->length() + 1);
110 offset += it->length() + 1;
113 proxy.
writeBlob(addr + offset, &nullTerminator, 1);
123 size += it->length() + 1;
135 if (newString.length() == 0)
144 assert(n > 0 && n <=
strings.size());
151 assert(n > 0 && n <=
strings.size());
157 startingAddrSegment(p->starting_addr_segment),
158 romSize(p->rom_size),
159 majorVer(p->major), minorVer(p->minor),
160 embContFirmwareMajor(p->emb_cont_firmware_major),
161 embContFirmwareMinor(p->emb_cont_firmware_minor)
181 proxy.
writeBlob(addr + 0x6, &startingAddrSegmentGuest, 2);
187 proxy.
writeBlob(addr + 0xA, &characteristicsGuest, 8);
189 uint16_t characteristicExtBytesGuest =
191 proxy.
writeBlob(addr + 0x12, &characteristicExtBytesGuest, 2);
208 assert(p->major_version <= 9);
209 assert(p->minor_version <= 9);
211 (p->major_version << 4) | p->minor_version;
223 uint8_t mainChecksum = 0;
225 proxy.
writeBlob(addr, (uint8_t *)smbiosHeader.anchorString, 4);
226 for (
int i = 0;
i < 4;
i++)
227 mainChecksum += smbiosHeader.anchorString[
i];
231 proxy.
writeBlob(addr + 0x5, &smbiosHeader.entryPointLength, 1);
232 mainChecksum += smbiosHeader.entryPointLength;
233 proxy.
writeBlob(addr + 0x6, &smbiosHeader.majorVersion, 1);
234 mainChecksum += smbiosHeader.majorVersion;
235 proxy.
writeBlob(addr + 0x7, &smbiosHeader.minorVersion, 1);
236 mainChecksum += smbiosHeader.minorVersion;
238 proxy.
writeBlob(addr + 0xA, &smbiosHeader.entryPointRevision, 1);
239 mainChecksum += smbiosHeader.entryPointRevision;
240 proxy.
writeBlob(addr + 0xB, &smbiosHeader.formattedArea, 5);
241 for (
int i = 0;
i < 5;
i++)
242 mainChecksum += smbiosHeader.formattedArea[
i];
247 uint8_t intChecksum = 0;
250 smbiosHeader.intermediateHeader.anchorString, 5);
251 for (
int i = 0;
i < 5;
i++)
252 intChecksum += smbiosHeader.intermediateHeader.anchorString[
i];
257 uint32_t tableAddrGuest =
258 htole(smbiosHeader.intermediateHeader.tableAddr);
259 proxy.
writeBlob(addr + 0x18, &tableAddrGuest, 4);
260 for (
int i = 0;
i < 4;
i++) {
261 intChecksum += tableAddrGuest;
262 tableAddrGuest >>= 8;
265 uint16_t numStructs =
letoh(structures.size());
266 proxy.
writeBlob(addr + 0x1C, &numStructs, 2);
267 for (
int i = 0;
i < 2;
i++) {
268 intChecksum += numStructs;
273 &smbiosHeader.intermediateHeader.smbiosBCDRevision, 1);
274 intChecksum += smbiosHeader.intermediateHeader.smbiosBCDRevision;
280 Addr base = smbiosHeader.intermediateHeader.tableAddr;
282 uint16_t maxSize = 0;
284 for (it = structures.begin(); it != structures.end(); it++) {
285 uint16_t size = (*it)->writeOut(proxy, base + offset);
297 maxSize =
htole(maxSize);
298 proxy.
writeBlob(addr + 0x8, &maxSize, 2);
299 for (
int i = 0;
i < 2;
i++) {
300 mainChecksum += maxSize;
305 mainChecksum = -mainChecksum;
306 proxy.
writeBlob(addr + 0x4, &mainChecksum, 1);
312 uint16_t tableSize =
offset;
313 tableSize =
htole(tableSize);
314 proxy.
writeBlob(addr + 0x16, &tableSize, 2);
315 for (
int i = 0;
i < 2;
i++) {
316 intChecksum += tableSize;
320 intChecksum = -intChecksum;
321 proxy.
writeBlob(addr + 0x15, &intChecksum, 1);
325 X86SMBiosBiosInformationParams::create()
331 X86SMBiosSMBiosTableParams::create()
void writeOutStrings(PortProxy &proxy, Addr addr)
void writeOut(PortProxy &proxy, Addr addr, Addr &headerSize, Addr &structSize)
std::string readString(int n)
SMBiosStructure(Params *p, uint8_t _type)
Overload hash function for BasicBlockRange type.
virtual uint16_t writeOut(PortProxy &proxy, Addr addr)
X86SMBiosSMBiosStructureParams Params
PortProxy Object Declaration.
void writeBlob(Addr addr, const void *p, int size) const
Same as tryWriteBlob, but insists on success.
int addString(std::string &newString)
struct X86ISA::SMBios::SMBiosTable::SMBiosHeader smbiosHeader
Defines global host-dependent types: Counter, Tick, and (indirectly) {int,uint}{8,16,32,64}_t.
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
void setString(int n, std::string &newString)
This object is a proxy for a port or other object which implements the functional response protocol...
uint64_t composeBitVector(T vec)
X86SMBiosSMBiosTableParams Params
Abstract superclass for simulation objects.
std::vector< std::string > strings