blob: 583440842720cd324ab93c0eaae78778d65074f7 [file] [log] [blame]
Cheng C Yang3e3269a2019-12-02 15:11:30 +08001/*
Zhikui Ren18a5ab92020-09-01 21:35:20 -07002// Copyright (c) 2018 Intel Corporation
Cheng C Yang3e3269a2019-12-02 15:11:30 +08003//
4// Licensed under the Apache License, Version 2.0 (the "License");
5// you may not use this file except in compliance with the License.
6// You may obtain a copy of the License at
7//
8// http://www.apache.org/licenses/LICENSE-2.0
9//
10// Unless required by applicable law or agreed to in writing, software
11// distributed under the License is distributed on an "AS IS" BASIS,
12// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13// See the License for the specific language governing permissions and
14// limitations under the License.
15*/
16
17#pragma once
Cheng C Yang43c6a1d2019-12-19 00:48:34 +080018#include "cpu.hpp"
Cheng C Yang2ca7a0f2019-12-19 10:46:42 +080019#include "dimm.hpp"
Jie Yang08e4a6d2021-08-23 13:07:41 -070020#include "pcieslot.hpp"
Zhikui Ren18a5ab92020-09-01 21:35:20 -070021#include "smbios_mdrv2.hpp"
Cheng C Yang2ca7a0f2019-12-19 10:46:42 +080022#include "system.hpp"
Cheng C Yang3e3269a2019-12-02 15:11:30 +080023
24#include <sys/stat.h>
25#include <sys/types.h>
26#include <unistd.h>
27
Zhikui Ren18a5ab92020-09-01 21:35:20 -070028#include <boost/asio/io_context.hpp>
29#include <boost/asio/steady_timer.hpp>
30#include <boost/container/flat_map.hpp>
Cheng C Yang3e3269a2019-12-02 15:11:30 +080031#include <phosphor-logging/elog-errors.hpp>
Alex Schendel5f2d6272021-09-22 10:35:40 -070032#include <phosphor-logging/lg2.hpp>
Cheng C Yang3e3269a2019-12-02 15:11:30 +080033#include <phosphor-logging/log.hpp>
Zhikui Ren18a5ab92020-09-01 21:35:20 -070034#include <sdbusplus/asio/object_server.hpp>
Cheng C Yang3e3269a2019-12-02 15:11:30 +080035#include <sdbusplus/server.hpp>
36#include <sdbusplus/timer.hpp>
Cheng C Yangeecaf822019-12-19 00:34:23 +080037#include <xyz/openbmc_project/Smbios/MDR_V2/server.hpp>
Cheng C Yang3e3269a2019-12-02 15:11:30 +080038
Josh Lehan027277a2023-09-11 05:28:19 -070039#include <filesystem>
40#include <memory>
Cheng C Yang3e3269a2019-12-02 15:11:30 +080041
Cheng C Yang3e3269a2019-12-02 15:11:30 +080042namespace phosphor
43{
44namespace smbios
45{
46
Josh Lehan027277a2023-09-11 05:28:19 -070047using RecordVariant =
48 std::variant<std::string, uint64_t, uint32_t, uint16_t, uint8_t>;
49
50static constexpr const char* defaultObjectPath =
51 "/xyz/openbmc_project/Smbios/MDR_V2";
Zhikui Ren18a5ab92020-09-01 21:35:20 -070052static constexpr const char* smbiosInterfaceName =
53 "xyz.openbmc_project.Smbios.GetRecordType";
Gobinath Krishnamoorthybb9c6222022-11-03 20:08:01 +000054static constexpr const char* mapperBusName = "xyz.openbmc_project.ObjectMapper";
55static constexpr const char* mapperPath = "/xyz/openbmc_project/object_mapper";
56static constexpr const char* mapperInterface =
57 "xyz.openbmc_project.ObjectMapper";
Josh Lehan027277a2023-09-11 05:28:19 -070058static constexpr const char* defaultInventoryPath =
Gobinath Krishnamoorthybb9c6222022-11-03 20:08:01 +000059 "/xyz/openbmc_project/inventory/system";
60static constexpr const char* systemInterface =
61 "xyz.openbmc_project.Inventory.Item.System";
Josh Lehanabdccd32024-01-26 15:49:50 -080062static constexpr const char* boardInterface =
63 "xyz.openbmc_project.Inventory.Item.Board";
Zhikui Ren18a5ab92020-09-01 21:35:20 -070064constexpr const int limitEntryLen = 0xff;
65
Josh Lehan027277a2023-09-11 05:28:19 -070066// Avoid putting multiple interfaces with same name on same object
67static std::string placeGetRecordType(const std::string& objectPath)
68{
69 if (objectPath != defaultObjectPath)
70 {
71 // Place GetRecordType interface on object itself, not parent
72 return objectPath;
73 }
74
75 std::filesystem::path path(objectPath);
76
77 // As there is only one default, safe to place it on the common parent
78 return path.parent_path().string();
79}
80
Jason M. Billsa3f5b382023-04-26 08:17:28 -070081class MDRV2 :
Patrick Williams77b9c472022-07-22 19:26:57 -050082 sdbusplus::server::object_t<
Jason M. Bills33ae81f2023-04-26 09:06:08 -070083 sdbusplus::server::xyz::openbmc_project::smbios::MDRV2>
Cheng C Yang3e3269a2019-12-02 15:11:30 +080084{
85 public:
Jason M. Billsa3f5b382023-04-26 08:17:28 -070086 MDRV2() = delete;
87 MDRV2(const MDRV2&) = delete;
88 MDRV2& operator=(const MDRV2&) = delete;
89 MDRV2(MDRV2&&) = delete;
90 MDRV2& operator=(MDRV2&&) = delete;
Cheng C Yang3e3269a2019-12-02 15:11:30 +080091
Josh Lehan027277a2023-09-11 05:28:19 -070092 virtual ~MDRV2()
Cheng C Yang3e3269a2019-12-02 15:11:30 +080093 {
Josh Lehan027277a2023-09-11 05:28:19 -070094 if (smbiosInterface)
95 {
96 if (objServer)
97 {
98 // Must manually undo add_interface()
99 objServer->remove_interface(smbiosInterface);
100 }
101 }
102 }
103
104 MDRV2(std::shared_ptr<boost::asio::io_context> io,
105 std::shared_ptr<sdbusplus::asio::connection> conn,
106 std::shared_ptr<sdbusplus::asio::object_server> obj,
107 std::string filePath, std::string objectPath,
108 std::string inventoryPath) :
109 sdbusplus::server::object_t<
110 sdbusplus::server::xyz::openbmc_project::smbios::MDRV2>(
111 *conn, objectPath.c_str()),
112 timer(*io), bus(conn), objServer(std::move(obj)),
113 smbiosInterface(objServer->add_interface(placeGetRecordType(objectPath),
114 smbiosInterfaceName)),
115 smbiosFilePath(std::move(filePath)),
116 smbiosObjectPath(std::move(objectPath)),
117 smbiosInventoryPath(std::move(inventoryPath))
118 {
119 lg2::info("SMBIOS data file path: {F}", "F", smbiosFilePath);
120 lg2::info("SMBIOS control object: {O}", "O", smbiosObjectPath);
121 lg2::info("SMBIOS inventory path: {I}", "I", smbiosInventoryPath);
122
Cheng C Yang3e3269a2019-12-02 15:11:30 +0800123 smbiosDir.agentVersion = smbiosAgentVersion;
Josh Lehanf079e832023-09-19 15:52:52 -0700124 smbiosDir.dirVersion = smbiosDirVersion;
Cheng C Yang3e3269a2019-12-02 15:11:30 +0800125 smbiosDir.dirEntries = 1;
126 directoryEntries(smbiosDir.dirEntries);
127 smbiosDir.status = 1;
128 smbiosDir.remoteDirVersion = 0;
129
130 std::copy(smbiosTableId.begin(), smbiosTableId.end(),
131 smbiosDir.dir[smbiosDirIndex].common.id.dataInfo);
132
133 smbiosDir.dir[smbiosDirIndex].dataStorage = smbiosTableStorage;
134
135 agentSynchronizeData();
Zhikui Ren18a5ab92020-09-01 21:35:20 -0700136
137 smbiosInterface->register_method("GetRecordType", [this](size_t type) {
138 return getRecordType(type);
139 });
140 smbiosInterface->initialize();
Cheng C Yang3e3269a2019-12-02 15:11:30 +0800141 }
142
Cheng C Yangeecaf822019-12-19 00:34:23 +0800143 std::vector<uint8_t> getDirectoryInformation(uint8_t dirIndex) override;
144
145 std::vector<uint8_t> getDataInformation(uint8_t idIndex) override;
146
Patrick Williams1d73dcc2024-08-16 15:21:42 -0400147 bool sendDirectoryInformation(
148 uint8_t dirVersion, uint8_t dirIndex, uint8_t returnedEntries,
149 uint8_t remainingEntries, std::vector<uint8_t> dirEntry) override;
Cheng C Yangeecaf822019-12-19 00:34:23 +0800150
151 std::vector<uint8_t> getDataOffer() override;
152
153 bool sendDataInformation(uint8_t idIndex, uint8_t flag, uint32_t dataLen,
154 uint32_t dataVer, uint32_t timeStamp) override;
155
156 int findIdIndex(std::vector<uint8_t> dataInfo) override;
157
158 bool agentSynchronizeData() override;
159
160 std::vector<uint32_t>
161 synchronizeDirectoryCommonData(uint8_t idIndex, uint32_t size) override;
162
163 uint8_t directoryEntries(uint8_t value) override;
164
Zhikui Ren18a5ab92020-09-01 21:35:20 -0700165 std::vector<boost::container::flat_map<std::string, RecordVariant>>
166 getRecordType(size_t type);
167
Cheng C Yang3e3269a2019-12-02 15:11:30 +0800168 private:
Zhikui Ren18a5ab92020-09-01 21:35:20 -0700169 boost::asio::steady_timer timer;
Cheng C Yang3e3269a2019-12-02 15:11:30 +0800170
Josh Lehan027277a2023-09-11 05:28:19 -0700171 std::shared_ptr<sdbusplus::asio::connection> bus;
172 std::shared_ptr<sdbusplus::asio::object_server> objServer;
Cheng C Yang3e3269a2019-12-02 15:11:30 +0800173
174 Mdr2DirStruct smbiosDir;
175
Cheng C Yangec634252019-12-19 00:42:36 +0800176 bool readDataFromFlash(MDRSMBIOSHeader* mdrHdr, uint8_t* data);
Arun P. Mohanan0435a482022-02-01 21:45:55 +0530177 bool checkSMBIOSVersion(uint8_t* dataIn);
Cheng C Yangec634252019-12-19 00:42:36 +0800178
Cheng C Yang3e3269a2019-12-02 15:11:30 +0800179 const std::array<uint8_t, 16> smbiosTableId{
180 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 0x42};
Josh Lehanc6d87a52024-02-08 19:01:29 -0800181 uint8_t smbiosTableStorage[smbiosTableStorageSize] = {};
Cheng C Yang3e3269a2019-12-02 15:11:30 +0800182
183 bool smbiosIsUpdating(uint8_t index);
184 bool smbiosIsAvailForUpdate(uint8_t index);
185 inline uint8_t smbiosValidFlag(uint8_t index);
186 void systemInfoUpdate(void);
Cheng C Yang43c6a1d2019-12-19 00:48:34 +0800187
Jonathan Domanf2d8bb42023-07-26 10:13:34 -0700188 std::optional<size_t> getTotalCpuSlot(void);
189 std::optional<size_t> getTotalDimmSlot(void);
190 std::optional<size_t> getTotalPcieSlot(void);
Cheng C Yang43c6a1d2019-12-19 00:48:34 +0800191 std::vector<std::unique_ptr<Cpu>> cpus;
Cheng C Yang8c3fab62019-12-19 00:51:06 +0800192 std::vector<std::unique_ptr<Dimm>> dimms;
Jie Yang08e4a6d2021-08-23 13:07:41 -0700193 std::vector<std::unique_ptr<Pcie>> pcies;
Cheng C Yangb4651b92019-12-19 00:59:01 +0800194 std::unique_ptr<System> system;
Zhikui Ren18a5ab92020-09-01 21:35:20 -0700195 std::shared_ptr<sdbusplus::asio::dbus_interface> smbiosInterface;
Josh Lehan027277a2023-09-11 05:28:19 -0700196
197 std::string smbiosFilePath;
198 std::string smbiosObjectPath;
199 std::string smbiosInventoryPath;
200 std::unique_ptr<sdbusplus::bus::match_t> motherboardConfigMatch;
Cheng C Yang3e3269a2019-12-02 15:11:30 +0800201};
202
203} // namespace smbios
204} // namespace phosphor