summaryrefslogtreecommitdiff
path: root/include/cpu.hpp
diff options
context:
space:
mode:
authorNikita Kosenkov <NKosenkov@IBS.RU>2022-08-26 13:25:48 +0300
committerNikita Kosenkov <NKosenkov@IBS.RU>2022-08-26 13:25:48 +0300
commit43505a818a36050ee1a5455b28e94a7ea02a01a9 (patch)
tree2dd251df69e98e5c462862f774b6faf720cf06f8 /include/cpu.hpp
parent3dce1051f31c53541a0e9e3f2e30528d912e23dc (diff)
downloadsmbios-mdrv1-43505a818a36050ee1a5455b28e94a7ea02a01a9.tar.xz
Changes required to support the latest version of DBUS interfaces
Diffstat (limited to 'include/cpu.hpp')
-rw-r--r--include/cpu.hpp11
1 files changed, 0 insertions, 11 deletions
diff --git a/include/cpu.hpp b/include/cpu.hpp
index 953c549..4f31c93 100644
--- a/include/cpu.hpp
+++ b/include/cpu.hpp
@@ -41,12 +41,6 @@ using Item = sdbusplus::xyz::openbmc_project::Inventory::server::Item;
using association = sdbusplus::xyz::openbmc_project::Association::server::Definitions;
// Definition follow smbios spec DSP0134 3.0.0
-static const std::map<uint8_t, std::string> cpuTypeTable = {
- {0x1, "Other"}, {0x2, "Unknown"}, {0x3, "Central Processor"},
- {0x4, "Math Processor"}, {0x5, "DSP Processor"}, {0x6, "Vodeo Processor"},
-};
-
-// Definition follow smbios spec DSP0134 3.0.0
static const std::map<uint8_t, std::string> familyTable = {
{0x1, "Other"},
{0x2, "Unknown"},
@@ -125,13 +119,8 @@ class Cpu : sdbusplus::server::object_t<processor, asset, location, connector, r
void processorInfoUpdate(void);
std::string processorSocket(std::string value);
- std::string processorType(std::string value);
- std::string processorFamily(std::string value);
- std::string processorManufacturer(std::string value);
uint32_t processorId(uint32_t value);
- std::string processorVersion(std::string value);
uint16_t processorMaxSpeed(uint16_t value);
- std::string processorCharacteristics(std::string value) ;
uint16_t processorCoreCount(uint16_t value);
uint16_t processorThreadCount(uint16_t value);