Searched refs:cpuInfo (Results 1 – 4 of 4) sorted by relevance
/openbmc/smbios-mdr/src/ |
H A D | cpu.cpp | 150 auto cpuInfo = reinterpret_cast<struct ProcessorInfo*>(dataIn); in infoUpdate() local 152 socket(cpuInfo->socketDesignation, cpuInfo->length, dataIn); // offset 4h in infoUpdate() 156 if ((cpuInfo->status & socketPopulatedMask) == 0) in infoUpdate() 164 if ((cpuInfo->status & statusMask) == 1) in infoUpdate() 174 family(cpuInfo->family, cpuInfo->family2); // offset 6h and 28h in infoUpdate() 175 manufacturer(cpuInfo->manufacturer, cpuInfo->length, in infoUpdate() 177 id(cpuInfo->id); // offset 8h in infoUpdate() 181 familyTable.find(cpuInfo->family); in infoUpdate() 198 uint16_t cpuStep = cpuInfo->id & 0xf; in infoUpdate() 199 uint16_t cpuModel = (cpuInfo->id & 0xf0) >> 4; in infoUpdate() [all …]
|
H A D | cpuinfo_main.cpp | 206 auto cpuInfo = cpuInfoIt->second; in tryReadSSpec() local 209 readSSpec(cpuInfo->i2cBus, cpuInfo->i2cDevice, sspecRegAddr, sspecSize); in tryReadSSpec() 210 logStream(cpuInfo->id) << "SSpec read status: " in tryReadSSpec() 212 if (newSSpec && newSSpec == cpuInfo->sSpec) in tryReadSSpec() 214 setCpuProperty(conn, cpuInfo->id, assetInterfaceName, "Model", in tryReadSSpec() 228 cpuInfo->sSpec = *newSSpec; in tryReadSSpec() 235 logStream(cpuInfo->id) << "PIROM Read failed too many times\n"; in tryReadSSpec() 367 std::shared_ptr<CPUInfo> cpuInfo = cpuInfoMap[cpu]; in getPPIN() local 369 if (cpuInfo->id != cpu) in getPPIN() 371 std::cerr << "Incorrect CPU id " << (unsigned)cpuInfo->id << " expect " in getPPIN() [all …]
|
/openbmc/linux/tools/power/pm-graph/ |
H A D | bootgraph.py | 1028 sysvals.cpuInfo()
|
H A D | sleepgraph.py | 462 def cpuInfo(self): member in SystemValues 7043 sysvals.cpuInfo()
|