blob: ab3c7742c8184ab5d93fb119045d788787f4b438 [file] [log] [blame]
Deepak Kodihalli76794492017-02-16 23:48:18 -06001#pragma once
2
SunnySrivastava1984f6d541e2020-02-04 12:50:40 -06003#include "const.hpp"
Alpana Kumarif05effd2021-04-07 07:32:53 -05004#include "store.hpp"
Deepak Kodihalli76794492017-02-16 23:48:18 -06005#include "types.hpp"
6
Alpana Kumari735dee92022-03-25 01:24:40 -05007#include <nlohmann/json.hpp>
Patrick Williamsc78d8872023-05-10 07:50:56 -05008
9#include <iostream>
Santosh Puranik53b38ed2022-04-10 23:15:22 +053010#include <optional>
GiridhariKrishnan63639102023-03-02 05:55:47 -060011#include <variant>
SunnySrivastava1984d076da82020-03-05 05:33:35 -060012
Deepak Kodihalli76794492017-02-16 23:48:18 -060013namespace openpower
14{
15namespace vpd
16{
SunnySrivastava1984945a02d2020-05-06 01:55:41 -050017
Priyanga Ramasamy952d6c52022-11-07 07:20:24 -060018// Map which holds system vpd keywords which can be restored at standby and via
19// vpd-tool and also can be used to reset keywords to its defaults at
20// manufacturing. The list of keywords for VSYS record is as per the S0 system.
21// Should be updated for another type of systems For those keywords whose
22// default value is system specific, the default value field is left empty.
23// Record : {Keyword, Default value, Is PEL required on restore failure, Is MFG
Kantesh Nagaradder38ee9c82023-04-07 00:58:12 -050024// reset required, backupVpdRecName, backupVpdKwName}
Priyanga Ramasamy952d6c52022-11-07 07:20:24 -060025static const inventory::SystemKeywordsMap svpdKwdMap{
26 {"VSYS",
Kantesh Nagaradder38ee9c82023-04-07 00:58:12 -050027 {inventory::SystemKeywordInfo("BR", Binary(2, 0x20), true, true, "VSBK",
28 "BR"),
29 inventory::SystemKeywordInfo("TM", Binary(8, 0x20), true, true, "VSBK",
30 "TM"),
31 inventory::SystemKeywordInfo("SE", Binary(7, 0x20), true, true, "VSBK",
32 "SE"),
33 inventory::SystemKeywordInfo("SU", Binary(6, 0x20), true, true, "VSBK",
34 "SU"),
35 inventory::SystemKeywordInfo("RB", Binary(4, 0x20), true, true, "VSBK",
36 "RB"),
37 inventory::SystemKeywordInfo("WN", Binary(12, 0x20), true, true, "VSBK",
38 "WN"),
39 inventory::SystemKeywordInfo("RG", Binary(4, 0x20), true, true, "VSBK",
40 "RG"),
41 inventory::SystemKeywordInfo("FV", Binary(32, 0x20), false, true, "VSBK",
42 "FV")}},
Priyanga Ramasamy952d6c52022-11-07 07:20:24 -060043 {"VCEN",
Kantesh Nagaradder38ee9c82023-04-07 00:58:12 -050044 {inventory::SystemKeywordInfo("FC", Binary(), true, false, "VSBK", "FC"),
45 inventory::SystemKeywordInfo("SE", Binary(7, 0x20), true, true, "VSBK",
46 "ES")}},
47 {"LXR0",
48 {inventory::SystemKeywordInfo("LX", Binary(), true, false, "VSBK", "LX")}},
Priyanga Ramasamy952d6c52022-11-07 07:20:24 -060049 {"UTIL",
Kantesh Nagaradder38ee9c82023-04-07 00:58:12 -050050 {inventory::SystemKeywordInfo("D0", Binary(1, 0x00), true, true, "VSBK",
51 "D0"),
girik964db562023-05-05 03:09:18 -050052 inventory::SystemKeywordInfo("F0", Binary(8, 0x00), false, true, "VSBK",
53 "F0"),
Kantesh Nagaradder38ee9c82023-04-07 00:58:12 -050054 inventory::SystemKeywordInfo("F5", Binary(16, 0x00), false, true, "VSBK",
55 "F5"),
56 inventory::SystemKeywordInfo("F6", Binary(16, 0x00), false, true, "VSBK",
57 "F6")}}};
Santosh Puranik6b2b5372022-06-02 20:49:02 +053058
Santosh Puranikbd011b22020-01-23 04:05:25 -060059/** @brief Return the hex representation of the incoming byte
60 *
61 * @param [in] c - The input byte
62 * @returns The hex representation of the byte as a character.
63 */
64constexpr auto toHex(size_t c)
65{
66 constexpr auto map = "0123456789abcdef";
67 return map[c];
68}
Deepak Kodihalli76794492017-02-16 23:48:18 -060069
70namespace inventory
71{
PriyangaRamasamyc2fe40f2021-03-02 06:27:33 -060072/** @brief API to obtain a dictionary of path -> services
SunnySrivastava19849094d4f2020-08-05 09:32:29 -050073 * where path is in subtree and services is of the type
74 * returned by the GetObject method.
75 *
76 * @param [in] root - Root path for object subtree
77 * @param [in] depth - Maximum subtree depth required
78 * @param [in] interfaces - Array to interfaces for which
79 * result is required.
80 * @return A dictionary of Path -> services
81 */
82MapperResponse
83 getObjectSubtreeForInterfaces(const std::string& root, const int32_t depth,
84 const std::vector<std::string>& interfaces);
85
Deepak Kodihalli76794492017-02-16 23:48:18 -060086} // namespace inventory
87
SunnySrivastava1984f6d541e2020-02-04 12:50:40 -060088/**@brief This API reads 2 Bytes of data and swap the read data
89 * @param[in] iterator- Pointer pointing to the data to be read
90 * @return returns 2 Byte data read at the given pointer
91 */
92openpower::vpd::constants::LE2ByteData
93 readUInt16LE(Binary::const_iterator iterator);
94
SunnySrivastava1984d076da82020-03-05 05:33:35 -060095/** @brief Encodes a keyword for D-Bus.
96 * @param[in] kw - kwd data in string format
97 * @param[in] encoding - required for kwd data
98 */
Priyanga Ramasamye0084322022-09-27 06:28:33 -050099std::string encodeKeyword(const std::string& kw, const std::string& encoding);
SunnySrivastava198443306542020-04-01 02:50:20 -0500100
101/** @brief Reads a property from the inventory manager given object path,
102 * intreface and property.
103 * @param[in] obj - object path
104 * @param[in] inf - interface
105 * @param[in] prop - property whose value is fetched
106 * @return [out] - value of the property
107 */
Priyanga Ramasamye0084322022-09-27 06:28:33 -0500108std::string readBusProperty(const std::string& obj, const std::string& inf,
109 const std::string& prop);
SunnySrivastava1984a20be8e2020-08-26 02:00:50 -0500110
Priyanga Ramasamyf1449cd2022-07-13 04:28:30 -0500111/** @brief A templated function to read D-Bus properties.
112 *
113 * @param[in] service - Service path
114 * @param[in] object - object path
115 * @param[in] inf - interface
116 * @param[in] prop - property whose value is fetched
117 * @return The property value of its own type.
118 */
119template <typename T>
Priyanga Ramasamye0084322022-09-27 06:28:33 -0500120T readDBusProperty(const std::string& service, const std::string& object,
121 const std::string& inf, const std::string& prop)
Priyanga Ramasamyf1449cd2022-07-13 04:28:30 -0500122{
123 T retVal{};
124 try
125 {
126 auto bus = sdbusplus::bus::new_default();
Patrick Williamsc78d8872023-05-10 07:50:56 -0500127 auto properties = bus.new_method_call(service.c_str(), object.c_str(),
128 "org.freedesktop.DBus.Properties",
129 "Get");
Priyanga Ramasamyf1449cd2022-07-13 04:28:30 -0500130 properties.append(inf);
131 properties.append(prop);
132 auto result = bus.call(properties);
133 result.read(retVal);
134 }
135 catch (const sdbusplus::exception::SdBusError& e)
136 {
137 std::cerr << e.what();
138 }
139 return retVal;
140}
141
Priyanga Ramasamy43ffcf72022-06-08 14:10:11 -0500142/** @brief A templated method to get all D-Bus properties
143 *
144 * @param[in] service - Service path
145 * @param[in] object - Object path
146 * @param[in] inf - Interface
147 *
148 * @return All properties under the given interface.
149 */
150template <typename T>
151T getAllDBusProperty(const std::string& service, const std::string& object,
152 const std::string& inf)
153{
154 T retVal{};
155 try
156 {
157 auto bus = sdbusplus::bus::new_default();
158 auto allProperties =
159 bus.new_method_call(service.c_str(), object.c_str(),
160 "org.freedesktop.DBus.Properties", "GetAll");
161 allProperties.append(inf);
162
163 auto result = bus.call(allProperties);
164 result.read(retVal);
165 }
166 catch (const sdbusplus::exception::SdBusError& e)
167 {
168 std::cerr << e.what();
169 }
170 return retVal;
171}
172
SunnySrivastava1984a20be8e2020-08-26 02:00:50 -0500173/**
174 * @brief API to create PEL entry
Sunny Srivastavaa2ddc962022-06-29 08:53:16 -0500175 * The api makes synchronous call to phosphor-logging create api.
Sunny Srivastava0746eee2021-03-22 13:36:54 -0500176 * @param[in] additionalData - Map holding the additional data
177 * @param[in] sev - Severity
178 * @param[in] errIntf - error interface
SunnySrivastava1984a20be8e2020-08-26 02:00:50 -0500179 */
Sunny Srivastavaa2ddc962022-06-29 08:53:16 -0500180void createSyncPEL(const std::map<std::string, std::string>& additionalData,
181 const constants::PelSeverity& sev,
182 const std::string& errIntf);
183
184/**
185 * @brief Api to create PEL.
186 * A wrapper api through which sync/async call to phosphor-logging create api
187 * can be made as and when required.
188 * sdBus as nullptr will result in sync call else async call will be made with
189 * just "DESCRIPTION" key/value pair in additional data.
190 * To make asyn call with more fields in additional data call
191 * "sd_bus_call_method_async" in place.
192 *
193 * @param[in] additionalData - Map of additional data.
194 * @param[in] sev - severity of the PEL.
195 * @param[in] errIntf - Error interface to be used in PEL.
196 * @param[in] sdBus - Pointer to Sd-Bus
197 */
SunnySrivastava1984a20be8e2020-08-26 02:00:50 -0500198void createPEL(const std::map<std::string, std::string>& additionalData,
Sunny Srivastavaa2ddc962022-06-29 08:53:16 -0500199 const constants::PelSeverity& sev, const std::string& errIntf,
200 sd_bus* sdBus);
SunnySrivastava19849094d4f2020-08-05 09:32:29 -0500201
PriyangaRamasamyc0a534f2020-08-24 21:29:18 +0530202/**
203 * @brief getVpdFilePath
204 * Get vpd file path corresponding to the given object path.
205 * @param[in] - json file path
206 * @param[in] - Object path
207 * @return - Vpd file path
208 */
Priyanga Ramasamye0084322022-09-27 06:28:33 -0500209inventory::VPDfilepath getVpdFilePath(const std::string& jsonFile,
PriyangaRamasamyc0a534f2020-08-24 21:29:18 +0530210 const std::string& ObjPath);
211
212/**
213 * @brief isPathInJson
214 * API which checks for the presence of the given eeprom path in the given json.
215 * @param[in] - eepromPath
216 * @return - true if the eeprom is present in the json; false otherwise
217 */
218bool isPathInJson(const std::string& eepromPath);
219
220/**
221 * @brief isRecKwInDbusJson
222 * API which checks whether the given keyword under the given record is to be
223 * published on dbus or not. Checks against the keywords present in
224 * dbus_property.json.
225 * @param[in] - record name
226 * @param[in] - keyword name
227 * @return - true if the record-keyword pair is present in dbus_property.json;
228 * false otherwise.
229 */
230bool isRecKwInDbusJson(const std::string& record, const std::string& keyword);
231
Sunny Srivastava6c71c9d2021-04-15 04:43:54 -0500232/**
233 * @brief Check the type of VPD.
234 *
235 * Checks the type of vpd based on the start tag.
236 * @param[in] vector - Vpd data in vector format
237 *
238 * @return enum of type vpdType
239 */
240constants::vpdType vpdTypeCheck(const Binary& vector);
241
SunnySrivastava19849a195542020-09-07 06:04:50 -0500242/*
243 * @brief This method does nothing. Just an empty function to return null
244 * at the end of variadic template args
245 */
Priyanga Ramasamye0084322022-09-27 06:28:33 -0500246inline std::string getCommand()
SunnySrivastava19849a195542020-09-07 06:04:50 -0500247{
248 return "";
249}
250
251/**
252 * @brief This function to arrange all arguments to make commandy
253 * @param[in] arguments to create the command
254 * @return cmd - command string
255 */
256template <typename T, typename... Types>
Priyanga Ramasamye0084322022-09-27 06:28:33 -0500257inline std::string getCommand(T arg1, Types... args)
SunnySrivastava19849a195542020-09-07 06:04:50 -0500258{
Priyanga Ramasamye0084322022-09-27 06:28:33 -0500259 std::string cmd = " " + arg1 + getCommand(args...);
SunnySrivastava19849a195542020-09-07 06:04:50 -0500260
261 return cmd;
262}
263
264/**
265 * @brief This API takes arguments, creates a shell command line and executes
266 * them.
267 * @param[in] arguments for command
268 * @returns output of that command
269 */
270template <typename T, typename... Types>
Priyanga Ramasamye0084322022-09-27 06:28:33 -0500271inline std::vector<std::string> executeCmd(T&& path, Types... args)
SunnySrivastava19849a195542020-09-07 06:04:50 -0500272{
Priyanga Ramasamye0084322022-09-27 06:28:33 -0500273 std::vector<std::string> stdOutput;
274 std::array<char, 128> buffer;
SunnySrivastava19849a195542020-09-07 06:04:50 -0500275
Priyanga Ramasamye0084322022-09-27 06:28:33 -0500276 std::string cmd = path + getCommand(args...);
SunnySrivastava19849a195542020-09-07 06:04:50 -0500277
Priyanga Ramasamye0084322022-09-27 06:28:33 -0500278 std::unique_ptr<FILE, decltype(&pclose)> pipe(popen(cmd.c_str(), "r"),
279 pclose);
SunnySrivastava19849a195542020-09-07 06:04:50 -0500280 if (!pipe)
281 {
Priyanga Ramasamye0084322022-09-27 06:28:33 -0500282 throw std::runtime_error("popen() failed!");
SunnySrivastava19849a195542020-09-07 06:04:50 -0500283 }
284 while (fgets(buffer.data(), buffer.size(), pipe.get()) != nullptr)
285 {
286 stdOutput.emplace_back(buffer.data());
287 }
288
289 return stdOutput;
290}
291
Alpana Kumarif05effd2021-04-07 07:32:53 -0500292/** @brief This API checks for IM and HW keywords, and based
293 * on these values decides which system json to be used.
294 * @param[in] vpdMap - parsed vpd
295 * @returns System json path
296 */
Priyanga Ramasamye0084322022-09-27 06:28:33 -0500297std::string getSystemsJson(const Parsed& vpdMap);
Alpana Kumarif05effd2021-04-07 07:32:53 -0500298
299/** @brief Reads HW Keyword from the vpd
300 * @param[in] vpdMap - parsed vpd
301 * @returns value of HW Keyword
302 */
Priyanga Ramasamye0084322022-09-27 06:28:33 -0500303const std::string getHW(const Parsed& vpdMap);
Alpana Kumarif05effd2021-04-07 07:32:53 -0500304
305/** @brief Reads IM Keyword from the vpd
306 * @param[in] vpdMap - parsed vpd
307 * @returns value of IM Keyword
308 */
Priyanga Ramasamye0084322022-09-27 06:28:33 -0500309const std::string getIM(const Parsed& vpdMap);
Alpana Kumarif05effd2021-04-07 07:32:53 -0500310
PriyangaRamasamy647868e2020-09-08 17:03:19 +0530311/** @brief Translate udev event generated path to a generic /sys/bus eeprom path
312 * @param[io] file - path generated from udev event.
jinuthomasf457a3e2023-04-13 12:22:48 -0500313 * @param[in] driver - kernel driver used by the device.
PriyangaRamasamy647868e2020-09-08 17:03:19 +0530314 */
jinuthomasf457a3e2023-04-13 12:22:48 -0500315void udevToGenericPath(std::string& file, const std::string& driver);
PriyangaRamasamyc2fe40f2021-03-02 06:27:33 -0600316
317/**
318 * @brief API to generate a vpd name in some pattern.
319 * This vpd-name denotes name of the bad vpd file.
320 * For i2c eeproms - the pattern of the vpd-name will be
321 * i2c-<bus-number>-<eeprom-address>. For spi eeproms - the pattern of the
322 * vpd-name will be spi-<spi-number>.
323 *
324 * @param[in] file - file path of the vpd
325 * @return the vpd-name.
326 */
Priyanga Ramasamye0084322022-09-27 06:28:33 -0500327std::string getBadVpdName(const std::string& file);
PriyangaRamasamyc2fe40f2021-03-02 06:27:33 -0600328
329/**
330 * @brief API which dumps the broken/bad vpd in a directory
331 * When the vpd is bad, this api places the bad vpd file inside
332 * "/tmp/bad-vpd" in BMC, in order to collect bad VPD data as a part of user
333 * initiated BMC dump.
334 *
335 * @param[in] file - bad vpd file path
336 * @param[in] vpdVector - bad vpd vector
337 */
338void dumpBadVpd(const std::string& file, const Binary& vpdVector);
alpana077ce68722021-07-25 13:23:59 -0500339
340/*
341 * @brief This function fetches the value for given keyword in the given record
342 * from vpd data and returns this value.
343 *
344 * @param[in] vpdMap - vpd to find out the data
345 * @param[in] rec - Record under which desired keyword exists
346 * @param[in] kwd - keyword to read the data from
347 *
348 * @returns keyword value if record/keyword combination found
349 * empty string if record or keyword is not found.
350 */
Priyanga Ramasamye0084322022-09-27 06:28:33 -0500351const std::string getKwVal(const Parsed& vpdMap, const std::string& rec,
352 const std::string& kwd);
alpana077ce68722021-07-25 13:23:59 -0500353
Alpana Kumarib17dd3b2020-10-01 00:18:10 -0500354/** @brief This creates a complete command using all it's input parameters,
355 * to bind or unbind the driver.
356 * @param[in] devNameAddr - device address on that bus
357 * @param[in] busType - i2c, spi
358 * @param[in] driverType - type of driver like at24
359 * @param[in] bindOrUnbind - either bind or unbind
360 * @returns Command to bind or unbind the driver.
361 */
Priyanga Ramasamye0084322022-09-27 06:28:33 -0500362inline std::string createBindUnbindDriverCmnd(const std::string& devNameAddr,
363 const std::string& busType,
364 const std::string& driverType,
365 const std::string& bindOrUnbind)
Alpana Kumarib17dd3b2020-10-01 00:18:10 -0500366{
367 return ("echo " + devNameAddr + " > /sys/bus/" + busType + "/drivers/" +
368 driverType + "/" + bindOrUnbind);
369}
370
Priyanga Ramasamy02434932021-10-07 16:26:05 -0500371/**
372 * @brief Get Printable Value
373 *
GiridhariKrishnan63639102023-03-02 05:55:47 -0600374 * Checks if the value has non printable characters.
Priyanga Ramasamy02434932021-10-07 16:26:05 -0500375 * Returns hex value if non printable char is found else
376 * returns ascii value.
377 *
GiridhariKrishnan63639102023-03-02 05:55:47 -0600378 * @param[in] kwVal - Reference of the input data, Keyword value
Priyanga Ramasamy02434932021-10-07 16:26:05 -0500379 * @return printable value - either in hex or in ascii.
380 */
GiridhariKrishnan63639102023-03-02 05:55:47 -0600381std::string getPrintableValue(const std::variant<Binary, std::string>& kwVal);
Priyanga Ramasamyc9ecf8e2021-10-08 02:28:52 -0500382
383/**
GiridhariKrishnan63639102023-03-02 05:55:47 -0600384 * @brief Convert array to hex string.
385 * @param[in] kwVal - input data, Keyword value
Priyanga Ramasamyc9ecf8e2021-10-08 02:28:52 -0500386 * @return hexadecimal string of bytes.
387 */
GiridhariKrishnan63639102023-03-02 05:55:47 -0600388std::string hexString(const std::variant<Binary, std::string>& kwVal);
Priyanga Ramasamy02434932021-10-07 16:26:05 -0500389
Priyanga Ramasamyaa8a8932022-01-27 09:12:41 -0600390/**
Santosh Puranik53b38ed2022-04-10 23:15:22 +0530391 * @brief Return presence of the FRU.
392 *
393 * This API returns the presence information of the FRU corresponding to the
394 * given EEPROM. If the JSON contains no information about presence detect, this
395 * will return an empty optional. Else it will get the presence GPIO information
396 * from the JSON and return the appropriate present status.
397 * In case of GPIO find/read errors, it will return false.
398 *
399 * @param[in] json - The VPD JSON
400 * @param[in] file - EEPROM file path
401 * @return Empty optional if there is no presence info. Else returns presence
402 * based on the GPIO read.
403 */
Priyanga Ramasamye0084322022-09-27 06:28:33 -0500404std::optional<bool> isPresent(const nlohmann::json& json,
405 const std::string& file);
Santosh Puranik53b38ed2022-04-10 23:15:22 +0530406
407/**
408 * @brief Performs any pre-action needed to get the FRU setup for
409 * collection.
Alpana Kumari735dee92022-03-25 01:24:40 -0500410 *
411 * @param[in] json - json object
412 * @param[in] file - eeprom file path
413 * @return - success or failure
414 */
Priyanga Ramasamye0084322022-09-27 06:28:33 -0500415bool executePreAction(const nlohmann::json& json, const std::string& file);
Alpana Kumari735dee92022-03-25 01:24:40 -0500416
417/**
418 * @brief This API will be called at the end of VPD collection to perform any
419 * post actions.
420 *
421 * @param[in] json - json object
422 * @param[in] file - eeprom file path
423 */
Priyanga Ramasamye0084322022-09-27 06:28:33 -0500424void executePostFailAction(const nlohmann::json& json, const std::string& file);
Alpana Kumari735dee92022-03-25 01:24:40 -0500425
426/**
Priyanga Ramasamyaa8a8932022-01-27 09:12:41 -0600427 * @brief Helper function to insert or merge in map.
428 *
429 * This method checks in the given inventory::InterfaceMap if the given
430 * interface key is existing or not. If the interface key already exists, given
431 * property map is inserted into it. If the key does'nt exist then given
432 * interface and property map pair is newly created. If the property present in
433 * propertymap already exist in the InterfaceMap, then the new property value is
434 * ignored.
435 *
436 * @param[in,out] map - map object of type inventory::InterfaceMap only.
437 * @param[in] interface - Interface name.
438 * @param[in] property - new property map that needs to be emplaced.
439 */
440void insertOrMerge(inventory::InterfaceMap& map,
441 const inventory::Interface& interface,
442 inventory::PropertyMap&& property);
443
Santosh Puranikf2d3b532022-04-19 06:44:07 -0500444/**
445 * @brief Utility API to set a D-Bus property
446 *
447 * This calls org.freedesktop.DBus.Properties;Set method with the supplied
448 * arguments
449 *
450 * @tparam T Template type of the D-Bus property
451 * @param service[in] - The D-Bus service name.
452 * @param object[in] - The D-Bus object on which the property is to be set.
453 * @param interface[in] - The D-Bus interface to which the property belongs.
454 * @param propertyName[in] - The name of the property to set.
455 * @param propertyValue[in] - The value of the property.
456 */
457template <typename T>
458void setBusProperty(const std::string& service, const std::string& object,
459 const std::string& interface,
460 const std::string& propertyName,
461 const std::variant<T>& propertyValue)
462{
463 try
464 {
465 auto bus = sdbusplus::bus::new_default();
Patrick Williamsc78d8872023-05-10 07:50:56 -0500466 auto method = bus.new_method_call(service.c_str(), object.c_str(),
467 "org.freedesktop.DBus.Properties",
468 "Set");
Santosh Puranikf2d3b532022-04-19 06:44:07 -0500469 method.append(interface);
470 method.append(propertyName);
471 method.append(propertyValue);
472
473 bus.call(method);
474 }
475 catch (const sdbusplus::exception::SdBusError& e)
476 {
477 std::cerr << e.what() << std::endl;
478 }
479}
480
481/**
482 * @brief Reads BIOS Attribute by name.
483 *
484 * @param attrName[in] - The BIOS attribute name.
485 * @return std::variant<int64_t, std::string> - The BIOS attribute value.
486 */
487std::variant<int64_t, std::string>
488 readBIOSAttribute(const std::string& attrName);
Priyanga Ramasamy335873f2022-05-18 01:31:54 -0500489
490/**
491 * @brief Returns the power state for chassis0
492 * @return The chassis power state.
493 */
494std::string getPowerState();
Santosh Puranik6b2b5372022-06-02 20:49:02 +0530495
496/**
497 * @brief Reads VPD from the supplied EEPROM
498 *
499 * This function reads the given VPD EEPROM file and returns its contents as a
500 * byte array. It handles any offsets into the file that need to be taken care
501 * of by looking up the VPD JSON for a possible offset key.
502 *
503 * @param js[in] - The VPD JSON Object
504 * @param file[in] - The path to the EEPROM to read
505 * @return A byte array containing the raw VPD.
506 */
507Binary getVpdDataInVector(const nlohmann::json& js, const std::string& file);
Priyanga Ramasamy5629fbc2023-03-01 08:17:19 -0600508
509/**
510 * @brief Get D-bus name for the keyword
511 * Some of the VPD keywords has different name in PIM when compared with its
512 * name from hardware. This method returns the D-bus name for the given keyword.
513 *
514 * @param[in] keyword - Keyword name
515 * @return D-bus name for the keyword
516 */
517std::string getDbusNameForThisKw(const std::string& keyword);
518
Patrick Venturec83c4dc2018-11-01 16:29:18 -0700519} // namespace vpd
Patrick Williamsc78d8872023-05-10 07:50:56 -0500520} // namespace openpower