Rapkiewicz, Pawel | 443c293 | 2018-10-22 15:08:49 +0200 | [diff] [blame] | 1 | /* |
| 2 | // Copyright (c) 2018 Intel Corporation |
| 3 | // |
| 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 | #pragma once |
| 17 | |
Willy Tu | 13451e3 | 2023-05-24 16:08:18 -0700 | [diff] [blame] | 18 | #include "bmcweb_config.h" |
| 19 | |
Ed Tanous | 3ccb3ad | 2023-01-13 17:40:03 -0800 | [diff] [blame] | 20 | #include "app.hpp" |
| 21 | #include "dbus_utility.hpp" |
Ed Tanous | 3ccb3ad | 2023-01-13 17:40:03 -0800 | [diff] [blame] | 22 | #include "query.hpp" |
| 23 | #include "registries/privilege_registry.hpp" |
| 24 | #include "utils/collection.hpp" |
| 25 | #include "utils/dbus_utils.hpp" |
| 26 | #include "utils/hex_utils.hpp" |
| 27 | #include "utils/json_utils.hpp" |
James Feist | 35e257a | 2020-06-05 13:30:51 -0700 | [diff] [blame] | 28 | |
George Liu | e99073f | 2022-12-09 11:06:16 +0800 | [diff] [blame] | 29 | #include <boost/system/error_code.hpp> |
Ed Tanous | ef4c65b | 2023-04-24 15:28:50 -0700 | [diff] [blame] | 30 | #include <boost/url/format.hpp> |
Nan Zhou | d7f04fd | 2022-05-01 01:11:07 +0000 | [diff] [blame] | 31 | #include <nlohmann/json.hpp> |
Krzysztof Grobelny | c1343bf | 2022-08-31 13:15:26 +0200 | [diff] [blame] | 32 | #include <sdbusplus/asio/property.hpp> |
| 33 | #include <sdbusplus/unpack_properties.hpp> |
Rapkiewicz, Pawel | 443c293 | 2018-10-22 15:08:49 +0200 | [diff] [blame] | 34 | |
George Liu | 7a1dbc4 | 2022-12-07 16:03:22 +0800 | [diff] [blame] | 35 | #include <array> |
| 36 | #include <string_view> |
| 37 | |
Rapkiewicz, Pawel | 443c293 | 2018-10-22 15:08:49 +0200 | [diff] [blame] | 38 | namespace redfish |
| 39 | { |
| 40 | |
Gunnar Mills | 313efb1 | 2020-10-26 16:05:08 -0500 | [diff] [blame] | 41 | inline std::string translateMemoryTypeToRedfish(const std::string& memoryType) |
| 42 | { |
| 43 | if (memoryType == "xyz.openbmc_project.Inventory.Item.Dimm.DeviceType.DDR") |
| 44 | { |
| 45 | return "DDR"; |
| 46 | } |
| 47 | if (memoryType == "xyz.openbmc_project.Inventory.Item.Dimm.DeviceType.DDR2") |
| 48 | { |
| 49 | return "DDR2"; |
| 50 | } |
| 51 | if (memoryType == "xyz.openbmc_project.Inventory.Item.Dimm.DeviceType.DDR3") |
| 52 | { |
| 53 | return "DDR3"; |
| 54 | } |
| 55 | if (memoryType == "xyz.openbmc_project.Inventory.Item.Dimm.DeviceType.DDR4") |
| 56 | { |
| 57 | return "DDR4"; |
| 58 | } |
| 59 | if (memoryType == |
| 60 | "xyz.openbmc_project.Inventory.Item.Dimm.DeviceType.DDR4E_SDRAM") |
| 61 | { |
| 62 | return "DDR4E_SDRAM"; |
| 63 | } |
Mansi Joshi | 11a2f0f | 2021-07-19 14:33:27 +0530 | [diff] [blame] | 64 | if (memoryType == "xyz.openbmc_project.Inventory.Item.Dimm.DeviceType.DDR5") |
| 65 | { |
| 66 | return "DDR5"; |
| 67 | } |
Gunnar Mills | 313efb1 | 2020-10-26 16:05:08 -0500 | [diff] [blame] | 68 | if (memoryType == |
| 69 | "xyz.openbmc_project.Inventory.Item.Dimm.DeviceType.LPDDR4_SDRAM") |
| 70 | { |
| 71 | return "LPDDR4_SDRAM"; |
| 72 | } |
| 73 | if (memoryType == |
| 74 | "xyz.openbmc_project.Inventory.Item.Dimm.DeviceType.LPDDR3_SDRAM") |
| 75 | { |
| 76 | return "LPDDR3_SDRAM"; |
| 77 | } |
| 78 | if (memoryType == |
| 79 | "xyz.openbmc_project.Inventory.Item.Dimm.DeviceType.DDR2_SDRAM_FB_DIMM") |
| 80 | { |
| 81 | return "DDR2_SDRAM_FB_DIMM"; |
| 82 | } |
George Liu | 0fda0f1 | 2021-11-16 10:06:17 +0800 | [diff] [blame] | 83 | if (memoryType == |
| 84 | "xyz.openbmc_project.Inventory.Item.Dimm.DeviceType.DDR2_SDRAM_FB_DIMM_PROB") |
Gunnar Mills | 313efb1 | 2020-10-26 16:05:08 -0500 | [diff] [blame] | 85 | { |
| 86 | return "DDR2_SDRAM_FB_DIMM_PROBE"; |
| 87 | } |
| 88 | if (memoryType == |
| 89 | "xyz.openbmc_project.Inventory.Item.Dimm.DeviceType.DDR_SGRAM") |
| 90 | { |
| 91 | return "DDR_SGRAM"; |
| 92 | } |
| 93 | if (memoryType == "xyz.openbmc_project.Inventory.Item.Dimm.DeviceType.ROM") |
| 94 | { |
| 95 | return "ROM"; |
| 96 | } |
| 97 | if (memoryType == |
| 98 | "xyz.openbmc_project.Inventory.Item.Dimm.DeviceType.SDRAM") |
| 99 | { |
| 100 | return "SDRAM"; |
| 101 | } |
| 102 | if (memoryType == "xyz.openbmc_project.Inventory.Item.Dimm.DeviceType.EDO") |
| 103 | { |
| 104 | return "EDO"; |
| 105 | } |
| 106 | if (memoryType == |
| 107 | "xyz.openbmc_project.Inventory.Item.Dimm.DeviceType.FastPageMode") |
| 108 | { |
| 109 | return "FastPageMode"; |
| 110 | } |
| 111 | if (memoryType == |
| 112 | "xyz.openbmc_project.Inventory.Item.Dimm.DeviceType.PipelinedNibble") |
| 113 | { |
| 114 | return "PipelinedNibble"; |
| 115 | } |
| 116 | if (memoryType == |
| 117 | "xyz.openbmc_project.Inventory.Item.Dimm.DeviceType.Logical") |
| 118 | { |
| 119 | return "Logical"; |
| 120 | } |
| 121 | if (memoryType == "xyz.openbmc_project.Inventory.Item.Dimm.DeviceType.HBM") |
| 122 | { |
| 123 | return "HBM"; |
| 124 | } |
| 125 | if (memoryType == "xyz.openbmc_project.Inventory.Item.Dimm.DeviceType.HBM2") |
| 126 | { |
| 127 | return "HBM2"; |
| 128 | } |
Tyson Tuckerbear | ce34d51 | 2022-09-13 16:26:15 -0700 | [diff] [blame] | 129 | if (memoryType == "xyz.openbmc_project.Inventory.Item.Dimm.DeviceType.HBM3") |
| 130 | { |
| 131 | return "HBM3"; |
| 132 | } |
Gunnar Mills | 313efb1 | 2020-10-26 16:05:08 -0500 | [diff] [blame] | 133 | // This is values like Other or Unknown |
| 134 | // Also D-Bus values: |
| 135 | // DRAM |
| 136 | // EDRAM |
| 137 | // VRAM |
| 138 | // SRAM |
| 139 | // RAM |
| 140 | // FLASH |
| 141 | // EEPROM |
| 142 | // FEPROM |
| 143 | // EPROM |
| 144 | // CDRAM |
| 145 | // ThreeDRAM |
| 146 | // RDRAM |
| 147 | // FBD2 |
| 148 | // LPDDR_SDRAM |
| 149 | // LPDDR2_SDRAM |
Mansi Joshi | 11a2f0f | 2021-07-19 14:33:27 +0530 | [diff] [blame] | 150 | // LPDDR5_SDRAM |
Gunnar Mills | 313efb1 | 2020-10-26 16:05:08 -0500 | [diff] [blame] | 151 | return ""; |
| 152 | } |
| 153 | |
Ed Tanous | ac106bf | 2023-06-07 09:24:59 -0700 | [diff] [blame] | 154 | inline void dimmPropToHex(const std::shared_ptr<bmcweb::AsyncResp>& asyncResp, |
Krzysztof Grobelny | c1343bf | 2022-08-31 13:15:26 +0200 | [diff] [blame] | 155 | const char* key, const uint16_t* value, |
| 156 | const nlohmann::json::json_pointer& jsonPtr) |
James Feist | c50e7c6 | 2020-07-27 15:39:36 -0700 | [diff] [blame] | 157 | { |
James Feist | c50e7c6 | 2020-07-27 15:39:36 -0700 | [diff] [blame] | 158 | if (value == nullptr) |
| 159 | { |
James Feist | c50e7c6 | 2020-07-27 15:39:36 -0700 | [diff] [blame] | 160 | return; |
| 161 | } |
Ed Tanous | ac106bf | 2023-06-07 09:24:59 -0700 | [diff] [blame] | 162 | asyncResp->res.jsonValue[jsonPtr][key] = "0x" + intToHexString(*value, 4); |
James Feist | c50e7c6 | 2020-07-27 15:39:36 -0700 | [diff] [blame] | 163 | } |
| 164 | |
zhanghch05 | 8d1b46d | 2021-04-01 11:18:24 +0800 | [diff] [blame] | 165 | inline void getPersistentMemoryProperties( |
Ed Tanous | ac106bf | 2023-06-07 09:24:59 -0700 | [diff] [blame] | 166 | const std::shared_ptr<bmcweb::AsyncResp>& asyncResp, |
Krzysztof Grobelny | c1343bf | 2022-08-31 13:15:26 +0200 | [diff] [blame] | 167 | const dbus::utility::DBusPropertiesMap& properties, |
Nan Zhou | d7f04fd | 2022-05-01 01:11:07 +0000 | [diff] [blame] | 168 | const nlohmann::json::json_pointer& jsonPtr) |
James Feist | c50e7c6 | 2020-07-27 15:39:36 -0700 | [diff] [blame] | 169 | { |
Krzysztof Grobelny | c1343bf | 2022-08-31 13:15:26 +0200 | [diff] [blame] | 170 | const uint16_t* moduleManufacturerID = nullptr; |
| 171 | const uint16_t* moduleProductID = nullptr; |
| 172 | const uint16_t* subsystemVendorID = nullptr; |
| 173 | const uint16_t* subsystemDeviceID = nullptr; |
| 174 | const uint64_t* volatileRegionSizeLimitInKiB = nullptr; |
| 175 | const uint64_t* pmRegionSizeLimitInKiB = nullptr; |
| 176 | const uint64_t* volatileSizeInKiB = nullptr; |
| 177 | const uint64_t* pmSizeInKiB = nullptr; |
| 178 | const uint64_t* cacheSizeInKB = nullptr; |
| 179 | const uint64_t* voltaileRegionMaxSizeInKib = nullptr; |
| 180 | const uint64_t* pmRegionMaxSizeInKiB = nullptr; |
| 181 | const uint64_t* allocationIncrementInKiB = nullptr; |
| 182 | const uint64_t* allocationAlignmentInKiB = nullptr; |
| 183 | const uint64_t* volatileRegionNumberLimit = nullptr; |
| 184 | const uint64_t* pmRegionNumberLimit = nullptr; |
| 185 | const uint64_t* spareDeviceCount = nullptr; |
| 186 | const bool* isSpareDeviceInUse = nullptr; |
| 187 | const bool* isRankSpareEnabled = nullptr; |
| 188 | const std::vector<uint32_t>* maxAveragePowerLimitmW = nullptr; |
| 189 | const bool* configurationLocked = nullptr; |
| 190 | const std::string* allowedMemoryModes = nullptr; |
| 191 | const std::string* memoryMedia = nullptr; |
| 192 | const bool* configurationLockCapable = nullptr; |
| 193 | const bool* dataLockCapable = nullptr; |
| 194 | const bool* passphraseCapable = nullptr; |
| 195 | const uint64_t* maxPassphraseCount = nullptr; |
| 196 | const uint64_t* passphraseLockLimit = nullptr; |
James Feist | c50e7c6 | 2020-07-27 15:39:36 -0700 | [diff] [blame] | 197 | |
Krzysztof Grobelny | c1343bf | 2022-08-31 13:15:26 +0200 | [diff] [blame] | 198 | const bool success = sdbusplus::unpackPropertiesNoThrow( |
| 199 | dbus_utils::UnpackErrorPrinter(), properties, "ModuleManufacturerID", |
| 200 | moduleManufacturerID, "ModuleProductID", moduleProductID, |
| 201 | "SubsystemVendorID", subsystemVendorID, "SubsystemDeviceID", |
| 202 | subsystemDeviceID, "VolatileRegionSizeLimitInKiB", |
| 203 | volatileRegionSizeLimitInKiB, "PmRegionSizeLimitInKiB", |
| 204 | pmRegionSizeLimitInKiB, "VolatileSizeInKiB", volatileSizeInKiB, |
| 205 | "PmSizeInKiB", pmSizeInKiB, "CacheSizeInKB", cacheSizeInKB, |
| 206 | "VoltaileRegionMaxSizeInKib", voltaileRegionMaxSizeInKib, |
| 207 | "PmRegionMaxSizeInKiB", pmRegionMaxSizeInKiB, |
| 208 | "AllocationIncrementInKiB", allocationIncrementInKiB, |
| 209 | "AllocationAlignmentInKiB", allocationAlignmentInKiB, |
| 210 | "VolatileRegionNumberLimit", volatileRegionNumberLimit, |
| 211 | "PmRegionNumberLimit", pmRegionNumberLimit, "SpareDeviceCount", |
| 212 | spareDeviceCount, "IsSpareDeviceInUse", isSpareDeviceInUse, |
| 213 | "IsRankSpareEnabled", isRankSpareEnabled, "MaxAveragePowerLimitmW", |
| 214 | maxAveragePowerLimitmW, "ConfigurationLocked", configurationLocked, |
| 215 | "AllowedMemoryModes", allowedMemoryModes, "MemoryMedia", memoryMedia, |
| 216 | "ConfigurationLockCapable", configurationLockCapable, "DataLockCapable", |
| 217 | dataLockCapable, "PassphraseCapable", passphraseCapable, |
| 218 | "MaxPassphraseCount", maxPassphraseCount, "PassphraseLockLimit", |
| 219 | passphraseLockLimit); |
| 220 | |
| 221 | if (!success) |
| 222 | { |
Ed Tanous | ac106bf | 2023-06-07 09:24:59 -0700 | [diff] [blame] | 223 | messages::internalError(asyncResp->res); |
Krzysztof Grobelny | c1343bf | 2022-08-31 13:15:26 +0200 | [diff] [blame] | 224 | return; |
| 225 | } |
| 226 | |
Ed Tanous | ac106bf | 2023-06-07 09:24:59 -0700 | [diff] [blame] | 227 | dimmPropToHex(asyncResp, "ModuleManufacturerID", moduleManufacturerID, |
| 228 | jsonPtr); |
| 229 | dimmPropToHex(asyncResp, "ModuleProductID", moduleProductID, jsonPtr); |
| 230 | dimmPropToHex(asyncResp, "MemorySubsystemControllerManufacturerID", |
Krzysztof Grobelny | c1343bf | 2022-08-31 13:15:26 +0200 | [diff] [blame] | 231 | subsystemVendorID, jsonPtr); |
Ed Tanous | ac106bf | 2023-06-07 09:24:59 -0700 | [diff] [blame] | 232 | dimmPropToHex(asyncResp, "MemorySubsystemControllerProductID", |
Krzysztof Grobelny | c1343bf | 2022-08-31 13:15:26 +0200 | [diff] [blame] | 233 | subsystemDeviceID, jsonPtr); |
| 234 | |
| 235 | if (volatileRegionSizeLimitInKiB != nullptr) |
| 236 | { |
Ed Tanous | ac106bf | 2023-06-07 09:24:59 -0700 | [diff] [blame] | 237 | asyncResp->res.jsonValue[jsonPtr]["VolatileRegionSizeLimitMiB"] = |
Krzysztof Grobelny | c1343bf | 2022-08-31 13:15:26 +0200 | [diff] [blame] | 238 | (*volatileRegionSizeLimitInKiB) >> 10; |
Jiaqing Zhao | 80badf7 | 2022-03-18 17:48:53 +0800 | [diff] [blame] | 239 | } |
James Feist | c50e7c6 | 2020-07-27 15:39:36 -0700 | [diff] [blame] | 240 | |
Krzysztof Grobelny | c1343bf | 2022-08-31 13:15:26 +0200 | [diff] [blame] | 241 | if (pmRegionSizeLimitInKiB != nullptr) |
| 242 | { |
Ed Tanous | ac106bf | 2023-06-07 09:24:59 -0700 | [diff] [blame] | 243 | asyncResp->res.jsonValue[jsonPtr]["PersistentRegionSizeLimitMiB"] = |
Krzysztof Grobelny | c1343bf | 2022-08-31 13:15:26 +0200 | [diff] [blame] | 244 | (*pmRegionSizeLimitInKiB) >> 10; |
Jiaqing Zhao | 80badf7 | 2022-03-18 17:48:53 +0800 | [diff] [blame] | 245 | } |
James Feist | c50e7c6 | 2020-07-27 15:39:36 -0700 | [diff] [blame] | 246 | |
Krzysztof Grobelny | c1343bf | 2022-08-31 13:15:26 +0200 | [diff] [blame] | 247 | if (volatileSizeInKiB != nullptr) |
Jiaqing Zhao | 80badf7 | 2022-03-18 17:48:53 +0800 | [diff] [blame] | 248 | { |
Ed Tanous | ac106bf | 2023-06-07 09:24:59 -0700 | [diff] [blame] | 249 | asyncResp->res.jsonValue[jsonPtr]["VolatileSizeMiB"] = |
Krzysztof Grobelny | c1343bf | 2022-08-31 13:15:26 +0200 | [diff] [blame] | 250 | (*volatileSizeInKiB) >> 10; |
| 251 | } |
| 252 | |
| 253 | if (pmSizeInKiB != nullptr) |
| 254 | { |
Ed Tanous | ac106bf | 2023-06-07 09:24:59 -0700 | [diff] [blame] | 255 | asyncResp->res.jsonValue[jsonPtr]["NonVolatileSizeMiB"] = |
| 256 | (*pmSizeInKiB) >> 10; |
Krzysztof Grobelny | c1343bf | 2022-08-31 13:15:26 +0200 | [diff] [blame] | 257 | } |
| 258 | |
| 259 | if (cacheSizeInKB != nullptr) |
| 260 | { |
Ed Tanous | ac106bf | 2023-06-07 09:24:59 -0700 | [diff] [blame] | 261 | asyncResp->res.jsonValue[jsonPtr]["CacheSizeMiB"] = |
| 262 | (*cacheSizeInKB >> 10); |
Krzysztof Grobelny | c1343bf | 2022-08-31 13:15:26 +0200 | [diff] [blame] | 263 | } |
| 264 | |
| 265 | if (voltaileRegionMaxSizeInKib != nullptr) |
| 266 | { |
Ed Tanous | ac106bf | 2023-06-07 09:24:59 -0700 | [diff] [blame] | 267 | asyncResp->res.jsonValue[jsonPtr]["VolatileRegionSizeMaxMiB"] = |
Krzysztof Grobelny | c1343bf | 2022-08-31 13:15:26 +0200 | [diff] [blame] | 268 | (*voltaileRegionMaxSizeInKib) >> 10; |
Jiaqing Zhao | 80badf7 | 2022-03-18 17:48:53 +0800 | [diff] [blame] | 269 | } |
James Feist | c50e7c6 | 2020-07-27 15:39:36 -0700 | [diff] [blame] | 270 | |
Krzysztof Grobelny | c1343bf | 2022-08-31 13:15:26 +0200 | [diff] [blame] | 271 | if (pmRegionMaxSizeInKiB != nullptr) |
| 272 | { |
Ed Tanous | ac106bf | 2023-06-07 09:24:59 -0700 | [diff] [blame] | 273 | asyncResp->res.jsonValue[jsonPtr]["PersistentRegionSizeMaxMiB"] = |
Krzysztof Grobelny | c1343bf | 2022-08-31 13:15:26 +0200 | [diff] [blame] | 274 | (*pmRegionMaxSizeInKiB) >> 10; |
Jiaqing Zhao | 80badf7 | 2022-03-18 17:48:53 +0800 | [diff] [blame] | 275 | } |
James Feist | c50e7c6 | 2020-07-27 15:39:36 -0700 | [diff] [blame] | 276 | |
Krzysztof Grobelny | c1343bf | 2022-08-31 13:15:26 +0200 | [diff] [blame] | 277 | if (allocationIncrementInKiB != nullptr) |
| 278 | { |
Ed Tanous | ac106bf | 2023-06-07 09:24:59 -0700 | [diff] [blame] | 279 | asyncResp->res.jsonValue[jsonPtr]["AllocationIncrementMiB"] = |
Krzysztof Grobelny | c1343bf | 2022-08-31 13:15:26 +0200 | [diff] [blame] | 280 | (*allocationIncrementInKiB) >> 10; |
Jiaqing Zhao | 80badf7 | 2022-03-18 17:48:53 +0800 | [diff] [blame] | 281 | } |
James Feist | c50e7c6 | 2020-07-27 15:39:36 -0700 | [diff] [blame] | 282 | |
Krzysztof Grobelny | c1343bf | 2022-08-31 13:15:26 +0200 | [diff] [blame] | 283 | if (allocationAlignmentInKiB != nullptr) |
| 284 | { |
Ed Tanous | ac106bf | 2023-06-07 09:24:59 -0700 | [diff] [blame] | 285 | asyncResp->res.jsonValue[jsonPtr]["AllocationAlignmentMiB"] = |
Krzysztof Grobelny | c1343bf | 2022-08-31 13:15:26 +0200 | [diff] [blame] | 286 | (*allocationAlignmentInKiB) >> 10; |
Jiaqing Zhao | 80badf7 | 2022-03-18 17:48:53 +0800 | [diff] [blame] | 287 | } |
Krzysztof Grobelny | c1343bf | 2022-08-31 13:15:26 +0200 | [diff] [blame] | 288 | |
| 289 | if (volatileRegionNumberLimit != nullptr) |
Jiaqing Zhao | 80badf7 | 2022-03-18 17:48:53 +0800 | [diff] [blame] | 290 | { |
Ed Tanous | ac106bf | 2023-06-07 09:24:59 -0700 | [diff] [blame] | 291 | asyncResp->res.jsonValue[jsonPtr]["VolatileRegionNumberLimit"] = |
Krzysztof Grobelny | c1343bf | 2022-08-31 13:15:26 +0200 | [diff] [blame] | 292 | *volatileRegionNumberLimit; |
Jiaqing Zhao | 80badf7 | 2022-03-18 17:48:53 +0800 | [diff] [blame] | 293 | } |
Krzysztof Grobelny | c1343bf | 2022-08-31 13:15:26 +0200 | [diff] [blame] | 294 | |
| 295 | if (pmRegionNumberLimit != nullptr) |
Jiaqing Zhao | 80badf7 | 2022-03-18 17:48:53 +0800 | [diff] [blame] | 296 | { |
Ed Tanous | ac106bf | 2023-06-07 09:24:59 -0700 | [diff] [blame] | 297 | asyncResp->res.jsonValue[jsonPtr]["PersistentRegionNumberLimit"] = |
Krzysztof Grobelny | c1343bf | 2022-08-31 13:15:26 +0200 | [diff] [blame] | 298 | *pmRegionNumberLimit; |
Jiaqing Zhao | 80badf7 | 2022-03-18 17:48:53 +0800 | [diff] [blame] | 299 | } |
Krzysztof Grobelny | c1343bf | 2022-08-31 13:15:26 +0200 | [diff] [blame] | 300 | |
| 301 | if (spareDeviceCount != nullptr) |
Jiaqing Zhao | 80badf7 | 2022-03-18 17:48:53 +0800 | [diff] [blame] | 302 | { |
Ed Tanous | ac106bf | 2023-06-07 09:24:59 -0700 | [diff] [blame] | 303 | asyncResp->res.jsonValue[jsonPtr]["SpareDeviceCount"] = |
| 304 | *spareDeviceCount; |
Jiaqing Zhao | 80badf7 | 2022-03-18 17:48:53 +0800 | [diff] [blame] | 305 | } |
Krzysztof Grobelny | c1343bf | 2022-08-31 13:15:26 +0200 | [diff] [blame] | 306 | |
| 307 | if (isSpareDeviceInUse != nullptr) |
Jiaqing Zhao | 80badf7 | 2022-03-18 17:48:53 +0800 | [diff] [blame] | 308 | { |
Ed Tanous | ac106bf | 2023-06-07 09:24:59 -0700 | [diff] [blame] | 309 | asyncResp->res.jsonValue[jsonPtr]["IsSpareDeviceEnabled"] = |
Krzysztof Grobelny | c1343bf | 2022-08-31 13:15:26 +0200 | [diff] [blame] | 310 | *isSpareDeviceInUse; |
Jiaqing Zhao | 80badf7 | 2022-03-18 17:48:53 +0800 | [diff] [blame] | 311 | } |
Krzysztof Grobelny | c1343bf | 2022-08-31 13:15:26 +0200 | [diff] [blame] | 312 | |
| 313 | if (isRankSpareEnabled != nullptr) |
Jiaqing Zhao | 80badf7 | 2022-03-18 17:48:53 +0800 | [diff] [blame] | 314 | { |
Ed Tanous | ac106bf | 2023-06-07 09:24:59 -0700 | [diff] [blame] | 315 | asyncResp->res.jsonValue[jsonPtr]["IsRankSpareEnabled"] = |
Krzysztof Grobelny | c1343bf | 2022-08-31 13:15:26 +0200 | [diff] [blame] | 316 | *isRankSpareEnabled; |
Jiaqing Zhao | 80badf7 | 2022-03-18 17:48:53 +0800 | [diff] [blame] | 317 | } |
Krzysztof Grobelny | c1343bf | 2022-08-31 13:15:26 +0200 | [diff] [blame] | 318 | |
| 319 | if (maxAveragePowerLimitmW != nullptr) |
Jiaqing Zhao | 80badf7 | 2022-03-18 17:48:53 +0800 | [diff] [blame] | 320 | { |
Ed Tanous | ac106bf | 2023-06-07 09:24:59 -0700 | [diff] [blame] | 321 | asyncResp->res.jsonValue[jsonPtr]["MaxTDPMilliWatts"] = |
Krzysztof Grobelny | c1343bf | 2022-08-31 13:15:26 +0200 | [diff] [blame] | 322 | *maxAveragePowerLimitmW; |
Jiaqing Zhao | 80badf7 | 2022-03-18 17:48:53 +0800 | [diff] [blame] | 323 | } |
Krzysztof Grobelny | c1343bf | 2022-08-31 13:15:26 +0200 | [diff] [blame] | 324 | |
| 325 | if (configurationLocked != nullptr) |
Jiaqing Zhao | 80badf7 | 2022-03-18 17:48:53 +0800 | [diff] [blame] | 326 | { |
Ed Tanous | ac106bf | 2023-06-07 09:24:59 -0700 | [diff] [blame] | 327 | asyncResp->res.jsonValue[jsonPtr]["ConfigurationLocked"] = |
Krzysztof Grobelny | c1343bf | 2022-08-31 13:15:26 +0200 | [diff] [blame] | 328 | *configurationLocked; |
Jiaqing Zhao | 80badf7 | 2022-03-18 17:48:53 +0800 | [diff] [blame] | 329 | } |
Krzysztof Grobelny | c1343bf | 2022-08-31 13:15:26 +0200 | [diff] [blame] | 330 | |
| 331 | if (allowedMemoryModes != nullptr) |
Jiaqing Zhao | 80badf7 | 2022-03-18 17:48:53 +0800 | [diff] [blame] | 332 | { |
Jiaqing Zhao | 80badf7 | 2022-03-18 17:48:53 +0800 | [diff] [blame] | 333 | constexpr const std::array<const char*, 3> values{"Volatile", "PMEM", |
| 334 | "Block"}; |
James Feist | c50e7c6 | 2020-07-27 15:39:36 -0700 | [diff] [blame] | 335 | |
Jiaqing Zhao | 80badf7 | 2022-03-18 17:48:53 +0800 | [diff] [blame] | 336 | for (const char* v : values) |
| 337 | { |
Krzysztof Grobelny | c1343bf | 2022-08-31 13:15:26 +0200 | [diff] [blame] | 338 | if (allowedMemoryModes->ends_with(v)) |
James Feist | c50e7c6 | 2020-07-27 15:39:36 -0700 | [diff] [blame] | 339 | { |
Ed Tanous | ac106bf | 2023-06-07 09:24:59 -0700 | [diff] [blame] | 340 | asyncResp->res.jsonValue[jsonPtr]["OperatingMemoryModes"] |
| 341 | .push_back(v); |
Jiaqing Zhao | 80badf7 | 2022-03-18 17:48:53 +0800 | [diff] [blame] | 342 | break; |
James Feist | c50e7c6 | 2020-07-27 15:39:36 -0700 | [diff] [blame] | 343 | } |
| 344 | } |
Jiaqing Zhao | 80badf7 | 2022-03-18 17:48:53 +0800 | [diff] [blame] | 345 | } |
Krzysztof Grobelny | c1343bf | 2022-08-31 13:15:26 +0200 | [diff] [blame] | 346 | |
| 347 | if (memoryMedia != nullptr) |
Jiaqing Zhao | 80badf7 | 2022-03-18 17:48:53 +0800 | [diff] [blame] | 348 | { |
Jiaqing Zhao | 80badf7 | 2022-03-18 17:48:53 +0800 | [diff] [blame] | 349 | constexpr const std::array<const char*, 3> values{"DRAM", "NAND", |
| 350 | "Intel3DXPoint"}; |
James Feist | c50e7c6 | 2020-07-27 15:39:36 -0700 | [diff] [blame] | 351 | |
Jiaqing Zhao | 80badf7 | 2022-03-18 17:48:53 +0800 | [diff] [blame] | 352 | for (const char* v : values) |
Ed Tanous | 5fb91ba | 2020-09-28 15:41:28 -0700 | [diff] [blame] | 353 | { |
Krzysztof Grobelny | c1343bf | 2022-08-31 13:15:26 +0200 | [diff] [blame] | 354 | if (memoryMedia->ends_with(v)) |
Ed Tanous | 5fb91ba | 2020-09-28 15:41:28 -0700 | [diff] [blame] | 355 | { |
Ed Tanous | ac106bf | 2023-06-07 09:24:59 -0700 | [diff] [blame] | 356 | asyncResp->res.jsonValue[jsonPtr]["MemoryMedia"].push_back(v); |
Jiaqing Zhao | 80badf7 | 2022-03-18 17:48:53 +0800 | [diff] [blame] | 357 | break; |
Ed Tanous | 5fb91ba | 2020-09-28 15:41:28 -0700 | [diff] [blame] | 358 | } |
Ed Tanous | 5fb91ba | 2020-09-28 15:41:28 -0700 | [diff] [blame] | 359 | } |
Jiaqing Zhao | 80badf7 | 2022-03-18 17:48:53 +0800 | [diff] [blame] | 360 | } |
Krzysztof Grobelny | c1343bf | 2022-08-31 13:15:26 +0200 | [diff] [blame] | 361 | |
| 362 | if (configurationLockCapable != nullptr) |
Jiaqing Zhao | 80badf7 | 2022-03-18 17:48:53 +0800 | [diff] [blame] | 363 | { |
Ed Tanous | ac106bf | 2023-06-07 09:24:59 -0700 | [diff] [blame] | 364 | asyncResp->res.jsonValue[jsonPtr]["SecurityCapabilities"] |
| 365 | ["ConfigurationLockCapable"] = |
Krzysztof Grobelny | c1343bf | 2022-08-31 13:15:26 +0200 | [diff] [blame] | 366 | *configurationLockCapable; |
Jiaqing Zhao | 80badf7 | 2022-03-18 17:48:53 +0800 | [diff] [blame] | 367 | } |
Krzysztof Grobelny | c1343bf | 2022-08-31 13:15:26 +0200 | [diff] [blame] | 368 | |
| 369 | if (dataLockCapable != nullptr) |
Jiaqing Zhao | 80badf7 | 2022-03-18 17:48:53 +0800 | [diff] [blame] | 370 | { |
Ed Tanous | ac106bf | 2023-06-07 09:24:59 -0700 | [diff] [blame] | 371 | asyncResp->res.jsonValue[jsonPtr]["SecurityCapabilities"] |
| 372 | ["DataLockCapable"] = *dataLockCapable; |
Krzysztof Grobelny | c1343bf | 2022-08-31 13:15:26 +0200 | [diff] [blame] | 373 | } |
| 374 | |
| 375 | if (passphraseCapable != nullptr) |
| 376 | { |
Ed Tanous | ac106bf | 2023-06-07 09:24:59 -0700 | [diff] [blame] | 377 | asyncResp->res.jsonValue[jsonPtr]["SecurityCapabilities"] |
| 378 | ["PassphraseCapable"] = *passphraseCapable; |
Krzysztof Grobelny | c1343bf | 2022-08-31 13:15:26 +0200 | [diff] [blame] | 379 | } |
| 380 | |
| 381 | if (maxPassphraseCount != nullptr) |
| 382 | { |
Ed Tanous | ac106bf | 2023-06-07 09:24:59 -0700 | [diff] [blame] | 383 | asyncResp->res.jsonValue[jsonPtr]["SecurityCapabilities"] |
| 384 | ["MaxPassphraseCount"] = *maxPassphraseCount; |
Krzysztof Grobelny | c1343bf | 2022-08-31 13:15:26 +0200 | [diff] [blame] | 385 | } |
| 386 | |
| 387 | if (passphraseLockLimit != nullptr) |
| 388 | { |
Ed Tanous | ac106bf | 2023-06-07 09:24:59 -0700 | [diff] [blame] | 389 | asyncResp->res.jsonValue[jsonPtr]["SecurityCapabilities"] |
| 390 | ["PassphraseLockLimit"] = *passphraseLockLimit; |
James Feist | c50e7c6 | 2020-07-27 15:39:36 -0700 | [diff] [blame] | 391 | } |
| 392 | } |
| 393 | |
Nan Zhou | 9a5acea | 2022-05-17 21:12:43 +0000 | [diff] [blame] | 394 | inline void |
| 395 | assembleDimmProperties(std::string_view dimmId, |
Ed Tanous | ac106bf | 2023-06-07 09:24:59 -0700 | [diff] [blame] | 396 | const std::shared_ptr<bmcweb::AsyncResp>& asyncResp, |
Nan Zhou | d7f04fd | 2022-05-01 01:11:07 +0000 | [diff] [blame] | 397 | const dbus::utility::DBusPropertiesMap& properties, |
| 398 | const nlohmann::json::json_pointer& jsonPtr) |
Nan Zhou | 9a5acea | 2022-05-17 21:12:43 +0000 | [diff] [blame] | 399 | { |
Ed Tanous | ac106bf | 2023-06-07 09:24:59 -0700 | [diff] [blame] | 400 | asyncResp->res.jsonValue[jsonPtr]["Id"] = dimmId; |
| 401 | asyncResp->res.jsonValue[jsonPtr]["Name"] = "DIMM Slot"; |
| 402 | asyncResp->res.jsonValue[jsonPtr]["Status"]["State"] = "Enabled"; |
| 403 | asyncResp->res.jsonValue[jsonPtr]["Status"]["Health"] = "OK"; |
Nan Zhou | 9a5acea | 2022-05-17 21:12:43 +0000 | [diff] [blame] | 404 | |
Krzysztof Grobelny | c1343bf | 2022-08-31 13:15:26 +0200 | [diff] [blame] | 405 | const uint16_t* memoryDataWidth = nullptr; |
| 406 | const size_t* memorySizeInKB = nullptr; |
| 407 | const std::string* partNumber = nullptr; |
| 408 | const std::string* serialNumber = nullptr; |
| 409 | const std::string* manufacturer = nullptr; |
| 410 | const uint16_t* revisionCode = nullptr; |
| 411 | const bool* present = nullptr; |
| 412 | const uint16_t* memoryTotalWidth = nullptr; |
| 413 | const std::string* ecc = nullptr; |
| 414 | const std::string* formFactor = nullptr; |
| 415 | const std::vector<uint16_t>* allowedSpeedsMT = nullptr; |
George Liu | 6995c1c | 2023-06-15 08:53:11 +0800 | [diff] [blame] | 416 | const size_t* memoryAttributes = nullptr; |
Krzysztof Grobelny | c1343bf | 2022-08-31 13:15:26 +0200 | [diff] [blame] | 417 | const uint16_t* memoryConfiguredSpeedInMhz = nullptr; |
| 418 | const std::string* memoryType = nullptr; |
Jayaprakash Mutyala | 6fde597 | 2023-06-15 07:56:58 +0000 | [diff] [blame] | 419 | const std::uint8_t* channel = nullptr; |
| 420 | const std::uint8_t* memoryController = nullptr; |
| 421 | const std::uint8_t* slot = nullptr; |
| 422 | const std::uint8_t* socket = nullptr; |
Krzysztof Grobelny | c1343bf | 2022-08-31 13:15:26 +0200 | [diff] [blame] | 423 | const std::string* sparePartNumber = nullptr; |
| 424 | const std::string* model = nullptr; |
| 425 | const std::string* locationCode = nullptr; |
| 426 | |
| 427 | const bool success = sdbusplus::unpackPropertiesNoThrow( |
| 428 | dbus_utils::UnpackErrorPrinter(), properties, "MemoryDataWidth", |
| 429 | memoryDataWidth, "MemorySizeInKB", memorySizeInKB, "PartNumber", |
Nikhil Namjoshi | 656472d | 2022-09-13 20:54:44 +0000 | [diff] [blame] | 430 | partNumber, "SerialNumber", serialNumber, "Manufacturer", manufacturer, |
| 431 | "RevisionCode", revisionCode, "Present", present, "MemoryTotalWidth", |
| 432 | memoryTotalWidth, "ECC", ecc, "FormFactor", formFactor, |
| 433 | "AllowedSpeedsMT", allowedSpeedsMT, "MemoryAttributes", |
Krzysztof Grobelny | c1343bf | 2022-08-31 13:15:26 +0200 | [diff] [blame] | 434 | memoryAttributes, "MemoryConfiguredSpeedInMhz", |
| 435 | memoryConfiguredSpeedInMhz, "MemoryType", memoryType, "Channel", |
| 436 | channel, "MemoryController", memoryController, "Slot", slot, "Socket", |
| 437 | socket, "SparePartNumber", sparePartNumber, "Model", model, |
| 438 | "LocationCode", locationCode); |
| 439 | |
| 440 | if (!success) |
Nan Zhou | 9a5acea | 2022-05-17 21:12:43 +0000 | [diff] [blame] | 441 | { |
Ed Tanous | ac106bf | 2023-06-07 09:24:59 -0700 | [diff] [blame] | 442 | messages::internalError(asyncResp->res); |
Krzysztof Grobelny | c1343bf | 2022-08-31 13:15:26 +0200 | [diff] [blame] | 443 | return; |
| 444 | } |
Nan Zhou | 9a5acea | 2022-05-17 21:12:43 +0000 | [diff] [blame] | 445 | |
Krzysztof Grobelny | c1343bf | 2022-08-31 13:15:26 +0200 | [diff] [blame] | 446 | if (memoryDataWidth != nullptr) |
| 447 | { |
Ed Tanous | ac106bf | 2023-06-07 09:24:59 -0700 | [diff] [blame] | 448 | asyncResp->res.jsonValue[jsonPtr]["DataWidthBits"] = *memoryDataWidth; |
Krzysztof Grobelny | c1343bf | 2022-08-31 13:15:26 +0200 | [diff] [blame] | 449 | } |
Nan Zhou | 9a5acea | 2022-05-17 21:12:43 +0000 | [diff] [blame] | 450 | |
Krzysztof Grobelny | c1343bf | 2022-08-31 13:15:26 +0200 | [diff] [blame] | 451 | if (memorySizeInKB != nullptr) |
| 452 | { |
Ed Tanous | ac106bf | 2023-06-07 09:24:59 -0700 | [diff] [blame] | 453 | asyncResp->res.jsonValue[jsonPtr]["CapacityMiB"] = |
| 454 | (*memorySizeInKB >> 10); |
Krzysztof Grobelny | c1343bf | 2022-08-31 13:15:26 +0200 | [diff] [blame] | 455 | } |
Nan Zhou | 9a5acea | 2022-05-17 21:12:43 +0000 | [diff] [blame] | 456 | |
Krzysztof Grobelny | c1343bf | 2022-08-31 13:15:26 +0200 | [diff] [blame] | 457 | if (partNumber != nullptr) |
| 458 | { |
Ed Tanous | ac106bf | 2023-06-07 09:24:59 -0700 | [diff] [blame] | 459 | asyncResp->res.jsonValue[jsonPtr]["PartNumber"] = *partNumber; |
Krzysztof Grobelny | c1343bf | 2022-08-31 13:15:26 +0200 | [diff] [blame] | 460 | } |
Nan Zhou | 9a5acea | 2022-05-17 21:12:43 +0000 | [diff] [blame] | 461 | |
Krzysztof Grobelny | c1343bf | 2022-08-31 13:15:26 +0200 | [diff] [blame] | 462 | if (serialNumber != nullptr) |
| 463 | { |
Ed Tanous | ac106bf | 2023-06-07 09:24:59 -0700 | [diff] [blame] | 464 | asyncResp->res.jsonValue[jsonPtr]["SerialNumber"] = *serialNumber; |
Krzysztof Grobelny | c1343bf | 2022-08-31 13:15:26 +0200 | [diff] [blame] | 465 | } |
| 466 | |
| 467 | if (manufacturer != nullptr) |
| 468 | { |
Ed Tanous | ac106bf | 2023-06-07 09:24:59 -0700 | [diff] [blame] | 469 | asyncResp->res.jsonValue[jsonPtr]["Manufacturer"] = *manufacturer; |
Krzysztof Grobelny | c1343bf | 2022-08-31 13:15:26 +0200 | [diff] [blame] | 470 | } |
| 471 | |
| 472 | if (revisionCode != nullptr) |
| 473 | { |
Ed Tanous | ac106bf | 2023-06-07 09:24:59 -0700 | [diff] [blame] | 474 | asyncResp->res.jsonValue[jsonPtr]["FirmwareRevision"] = |
Krzysztof Grobelny | c1343bf | 2022-08-31 13:15:26 +0200 | [diff] [blame] | 475 | std::to_string(*revisionCode); |
| 476 | } |
| 477 | |
| 478 | if (present != nullptr && !*present) |
| 479 | { |
Ed Tanous | ac106bf | 2023-06-07 09:24:59 -0700 | [diff] [blame] | 480 | asyncResp->res.jsonValue[jsonPtr]["Status"]["State"] = "Absent"; |
Krzysztof Grobelny | c1343bf | 2022-08-31 13:15:26 +0200 | [diff] [blame] | 481 | } |
| 482 | |
| 483 | if (memoryTotalWidth != nullptr) |
| 484 | { |
Ed Tanous | ac106bf | 2023-06-07 09:24:59 -0700 | [diff] [blame] | 485 | asyncResp->res.jsonValue[jsonPtr]["BusWidthBits"] = *memoryTotalWidth; |
Krzysztof Grobelny | c1343bf | 2022-08-31 13:15:26 +0200 | [diff] [blame] | 486 | } |
| 487 | |
| 488 | if (ecc != nullptr) |
| 489 | { |
| 490 | constexpr const std::array<const char*, 4> values{ |
| 491 | "NoECC", "SingleBitECC", "MultiBitECC", "AddressParity"}; |
| 492 | |
| 493 | for (const char* v : values) |
Nan Zhou | 9a5acea | 2022-05-17 21:12:43 +0000 | [diff] [blame] | 494 | { |
Krzysztof Grobelny | c1343bf | 2022-08-31 13:15:26 +0200 | [diff] [blame] | 495 | if (ecc->ends_with(v)) |
Nan Zhou | 9a5acea | 2022-05-17 21:12:43 +0000 | [diff] [blame] | 496 | { |
Ed Tanous | ac106bf | 2023-06-07 09:24:59 -0700 | [diff] [blame] | 497 | asyncResp->res.jsonValue[jsonPtr]["ErrorCorrection"] = v; |
Krzysztof Grobelny | c1343bf | 2022-08-31 13:15:26 +0200 | [diff] [blame] | 498 | break; |
Nan Zhou | 9a5acea | 2022-05-17 21:12:43 +0000 | [diff] [blame] | 499 | } |
Nan Zhou | 9a5acea | 2022-05-17 21:12:43 +0000 | [diff] [blame] | 500 | } |
| 501 | } |
Krzysztof Grobelny | c1343bf | 2022-08-31 13:15:26 +0200 | [diff] [blame] | 502 | |
| 503 | if (formFactor != nullptr) |
| 504 | { |
| 505 | constexpr const std::array<const char*, 11> values{ |
| 506 | "RDIMM", "UDIMM", "SO_DIMM", "LRDIMM", |
| 507 | "Mini_RDIMM", "Mini_UDIMM", "SO_RDIMM_72b", "SO_UDIMM_72b", |
| 508 | "SO_DIMM_16b", "SO_DIMM_32b", "Die"}; |
| 509 | |
| 510 | for (const char* v : values) |
| 511 | { |
| 512 | if (formFactor->ends_with(v)) |
| 513 | { |
Ed Tanous | ac106bf | 2023-06-07 09:24:59 -0700 | [diff] [blame] | 514 | asyncResp->res.jsonValue[jsonPtr]["BaseModuleType"] = v; |
Krzysztof Grobelny | c1343bf | 2022-08-31 13:15:26 +0200 | [diff] [blame] | 515 | break; |
| 516 | } |
| 517 | } |
| 518 | } |
| 519 | |
| 520 | if (allowedSpeedsMT != nullptr) |
| 521 | { |
| 522 | nlohmann::json& jValue = |
Ed Tanous | ac106bf | 2023-06-07 09:24:59 -0700 | [diff] [blame] | 523 | asyncResp->res.jsonValue[jsonPtr]["AllowedSpeedsMHz"]; |
Krzysztof Grobelny | c1343bf | 2022-08-31 13:15:26 +0200 | [diff] [blame] | 524 | jValue = nlohmann::json::array(); |
| 525 | for (uint16_t subVal : *allowedSpeedsMT) |
| 526 | { |
| 527 | jValue.push_back(subVal); |
| 528 | } |
| 529 | } |
| 530 | |
| 531 | if (memoryAttributes != nullptr) |
| 532 | { |
George Liu | 6995c1c | 2023-06-15 08:53:11 +0800 | [diff] [blame] | 533 | asyncResp->res.jsonValue[jsonPtr]["RankCount"] = *memoryAttributes; |
Krzysztof Grobelny | c1343bf | 2022-08-31 13:15:26 +0200 | [diff] [blame] | 534 | } |
| 535 | |
| 536 | if (memoryConfiguredSpeedInMhz != nullptr) |
| 537 | { |
Ed Tanous | ac106bf | 2023-06-07 09:24:59 -0700 | [diff] [blame] | 538 | asyncResp->res.jsonValue[jsonPtr]["OperatingSpeedMhz"] = |
Krzysztof Grobelny | c1343bf | 2022-08-31 13:15:26 +0200 | [diff] [blame] | 539 | *memoryConfiguredSpeedInMhz; |
| 540 | } |
| 541 | |
| 542 | if (memoryType != nullptr) |
| 543 | { |
| 544 | std::string memoryDeviceType = |
| 545 | translateMemoryTypeToRedfish(*memoryType); |
| 546 | // Values like "Unknown" or "Other" will return empty |
| 547 | // so just leave off |
| 548 | if (!memoryDeviceType.empty()) |
| 549 | { |
Ed Tanous | ac106bf | 2023-06-07 09:24:59 -0700 | [diff] [blame] | 550 | asyncResp->res.jsonValue[jsonPtr]["MemoryDeviceType"] = |
Krzysztof Grobelny | c1343bf | 2022-08-31 13:15:26 +0200 | [diff] [blame] | 551 | memoryDeviceType; |
| 552 | } |
| 553 | if (memoryType->find("DDR") != std::string::npos) |
| 554 | { |
Ed Tanous | ac106bf | 2023-06-07 09:24:59 -0700 | [diff] [blame] | 555 | asyncResp->res.jsonValue[jsonPtr]["MemoryType"] = "DRAM"; |
Krzysztof Grobelny | c1343bf | 2022-08-31 13:15:26 +0200 | [diff] [blame] | 556 | } |
| 557 | else if (memoryType->ends_with("Logical")) |
| 558 | { |
Ed Tanous | ac106bf | 2023-06-07 09:24:59 -0700 | [diff] [blame] | 559 | asyncResp->res.jsonValue[jsonPtr]["MemoryType"] = "IntelOptane"; |
Krzysztof Grobelny | c1343bf | 2022-08-31 13:15:26 +0200 | [diff] [blame] | 560 | } |
| 561 | } |
| 562 | |
| 563 | if (channel != nullptr) |
| 564 | { |
Ed Tanous | ac106bf | 2023-06-07 09:24:59 -0700 | [diff] [blame] | 565 | asyncResp->res.jsonValue[jsonPtr]["MemoryLocation"]["Channel"] = |
| 566 | *channel; |
Krzysztof Grobelny | c1343bf | 2022-08-31 13:15:26 +0200 | [diff] [blame] | 567 | } |
| 568 | |
| 569 | if (memoryController != nullptr) |
| 570 | { |
Ed Tanous | ac106bf | 2023-06-07 09:24:59 -0700 | [diff] [blame] | 571 | asyncResp->res.jsonValue[jsonPtr]["MemoryLocation"] |
| 572 | ["MemoryController"] = *memoryController; |
Krzysztof Grobelny | c1343bf | 2022-08-31 13:15:26 +0200 | [diff] [blame] | 573 | } |
| 574 | |
| 575 | if (slot != nullptr) |
| 576 | { |
Ed Tanous | ac106bf | 2023-06-07 09:24:59 -0700 | [diff] [blame] | 577 | asyncResp->res.jsonValue[jsonPtr]["MemoryLocation"]["Slot"] = *slot; |
Krzysztof Grobelny | c1343bf | 2022-08-31 13:15:26 +0200 | [diff] [blame] | 578 | } |
| 579 | |
| 580 | if (socket != nullptr) |
| 581 | { |
Ed Tanous | ac106bf | 2023-06-07 09:24:59 -0700 | [diff] [blame] | 582 | asyncResp->res.jsonValue[jsonPtr]["MemoryLocation"]["Socket"] = *socket; |
Krzysztof Grobelny | c1343bf | 2022-08-31 13:15:26 +0200 | [diff] [blame] | 583 | } |
| 584 | |
| 585 | if (sparePartNumber != nullptr) |
| 586 | { |
Ed Tanous | ac106bf | 2023-06-07 09:24:59 -0700 | [diff] [blame] | 587 | asyncResp->res.jsonValue[jsonPtr]["SparePartNumber"] = *sparePartNumber; |
Krzysztof Grobelny | c1343bf | 2022-08-31 13:15:26 +0200 | [diff] [blame] | 588 | } |
| 589 | |
| 590 | if (model != nullptr) |
| 591 | { |
Ed Tanous | ac106bf | 2023-06-07 09:24:59 -0700 | [diff] [blame] | 592 | asyncResp->res.jsonValue[jsonPtr]["Model"] = *model; |
Krzysztof Grobelny | c1343bf | 2022-08-31 13:15:26 +0200 | [diff] [blame] | 593 | } |
| 594 | |
| 595 | if (locationCode != nullptr) |
| 596 | { |
Ed Tanous | ac106bf | 2023-06-07 09:24:59 -0700 | [diff] [blame] | 597 | asyncResp->res.jsonValue[jsonPtr]["Location"]["PartLocation"] |
| 598 | ["ServiceLabel"] = *locationCode; |
Krzysztof Grobelny | c1343bf | 2022-08-31 13:15:26 +0200 | [diff] [blame] | 599 | } |
| 600 | |
Ed Tanous | ac106bf | 2023-06-07 09:24:59 -0700 | [diff] [blame] | 601 | getPersistentMemoryProperties(asyncResp, properties, jsonPtr); |
Nan Zhou | 9a5acea | 2022-05-17 21:12:43 +0000 | [diff] [blame] | 602 | } |
| 603 | |
Ed Tanous | ac106bf | 2023-06-07 09:24:59 -0700 | [diff] [blame] | 604 | inline void getDimmDataByService(std::shared_ptr<bmcweb::AsyncResp> asyncResp, |
Ed Tanous | 80789c8 | 2020-08-19 09:19:09 -0700 | [diff] [blame] | 605 | const std::string& dimmId, |
| 606 | const std::string& service, |
| 607 | const std::string& objPath) |
Rapkiewicz, Pawel | 443c293 | 2018-10-22 15:08:49 +0200 | [diff] [blame] | 608 | { |
Ed Tanous | 62598e3 | 2023-07-17 17:06:25 -0700 | [diff] [blame] | 609 | BMCWEB_LOG_DEBUG("Get available system components."); |
Krzysztof Grobelny | c1343bf | 2022-08-31 13:15:26 +0200 | [diff] [blame] | 610 | sdbusplus::asio::getAllProperties( |
| 611 | *crow::connections::systemBus, service, objPath, "", |
Ed Tanous | ac106bf | 2023-06-07 09:24:59 -0700 | [diff] [blame] | 612 | [dimmId, asyncResp{std::move(asyncResp)}]( |
Ed Tanous | 5e7e2dc | 2023-02-16 10:37:01 -0800 | [diff] [blame] | 613 | const boost::system::error_code& ec, |
Ed Tanous | b9d36b4 | 2022-02-26 21:42:46 -0800 | [diff] [blame] | 614 | const dbus::utility::DBusPropertiesMap& properties) { |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 615 | if (ec) |
| 616 | { |
Ed Tanous | 62598e3 | 2023-07-17 17:06:25 -0700 | [diff] [blame] | 617 | BMCWEB_LOG_DEBUG("DBUS response error"); |
Ed Tanous | ac106bf | 2023-06-07 09:24:59 -0700 | [diff] [blame] | 618 | messages::internalError(asyncResp->res); |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 619 | return; |
| 620 | } |
Ed Tanous | ac106bf | 2023-06-07 09:24:59 -0700 | [diff] [blame] | 621 | assembleDimmProperties(dimmId, asyncResp, properties, ""_json_pointer); |
Patrick Williams | 5a39f77 | 2023-10-20 11:20:21 -0500 | [diff] [blame] | 622 | }); |
Rapkiewicz, Pawel | 443c293 | 2018-10-22 15:08:49 +0200 | [diff] [blame] | 623 | } |
| 624 | |
Nan Zhou | ef00d7d | 2022-05-20 21:22:32 +0000 | [diff] [blame] | 625 | inline void assembleDimmPartitionData( |
Ed Tanous | ac106bf | 2023-06-07 09:24:59 -0700 | [diff] [blame] | 626 | const std::shared_ptr<bmcweb::AsyncResp>& asyncResp, |
Nan Zhou | d7f04fd | 2022-05-01 01:11:07 +0000 | [diff] [blame] | 627 | const dbus::utility::DBusPropertiesMap& properties, |
| 628 | const nlohmann::json::json_pointer& regionPtr) |
Nan Zhou | ef00d7d | 2022-05-20 21:22:32 +0000 | [diff] [blame] | 629 | { |
Krzysztof Grobelny | c1343bf | 2022-08-31 13:15:26 +0200 | [diff] [blame] | 630 | const std::string* memoryClassification = nullptr; |
| 631 | const uint64_t* offsetInKiB = nullptr; |
| 632 | const std::string* partitionId = nullptr; |
| 633 | const bool* passphraseState = nullptr; |
| 634 | const uint64_t* sizeInKiB = nullptr; |
| 635 | |
| 636 | const bool success = sdbusplus::unpackPropertiesNoThrow( |
| 637 | dbus_utils::UnpackErrorPrinter(), properties, "MemoryClassification", |
| 638 | memoryClassification, "OffsetInKiB", offsetInKiB, "PartitionId", |
| 639 | partitionId, "PassphraseState", passphraseState, "SizeInKiB", |
| 640 | sizeInKiB); |
| 641 | |
| 642 | if (!success) |
Nan Zhou | ef00d7d | 2022-05-20 21:22:32 +0000 | [diff] [blame] | 643 | { |
Ed Tanous | ac106bf | 2023-06-07 09:24:59 -0700 | [diff] [blame] | 644 | messages::internalError(asyncResp->res); |
Krzysztof Grobelny | c1343bf | 2022-08-31 13:15:26 +0200 | [diff] [blame] | 645 | return; |
Nan Zhou | ef00d7d | 2022-05-20 21:22:32 +0000 | [diff] [blame] | 646 | } |
Krzysztof Grobelny | c1343bf | 2022-08-31 13:15:26 +0200 | [diff] [blame] | 647 | |
| 648 | nlohmann::json::object_t partition; |
| 649 | |
| 650 | if (memoryClassification != nullptr) |
| 651 | { |
| 652 | partition["MemoryClassification"] = *memoryClassification; |
| 653 | } |
| 654 | |
| 655 | if (offsetInKiB != nullptr) |
| 656 | { |
| 657 | partition["OffsetMiB"] = (*offsetInKiB >> 10); |
| 658 | } |
| 659 | |
| 660 | if (partitionId != nullptr) |
| 661 | { |
| 662 | partition["RegionId"] = *partitionId; |
| 663 | } |
| 664 | |
| 665 | if (passphraseState != nullptr) |
| 666 | { |
| 667 | partition["PassphraseEnabled"] = *passphraseState; |
| 668 | } |
| 669 | |
| 670 | if (sizeInKiB != nullptr) |
| 671 | { |
| 672 | partition["SizeMiB"] = (*sizeInKiB >> 10); |
| 673 | } |
| 674 | |
Ed Tanous | ac106bf | 2023-06-07 09:24:59 -0700 | [diff] [blame] | 675 | asyncResp->res.jsonValue[regionPtr].emplace_back(std::move(partition)); |
Nan Zhou | ef00d7d | 2022-05-20 21:22:32 +0000 | [diff] [blame] | 676 | } |
| 677 | |
Ed Tanous | ac106bf | 2023-06-07 09:24:59 -0700 | [diff] [blame] | 678 | inline void getDimmPartitionData(std::shared_ptr<bmcweb::AsyncResp> asyncResp, |
Ed Tanous | 23a21a1 | 2020-07-25 04:45:05 +0000 | [diff] [blame] | 679 | const std::string& service, |
| 680 | const std::string& path) |
James Feist | 45094ad | 2020-04-29 14:02:30 -0700 | [diff] [blame] | 681 | { |
Krzysztof Grobelny | c1343bf | 2022-08-31 13:15:26 +0200 | [diff] [blame] | 682 | sdbusplus::asio::getAllProperties( |
| 683 | *crow::connections::systemBus, service, path, |
| 684 | "xyz.openbmc_project.Inventory.Item.PersistentMemory.Partition", |
Ed Tanous | ac106bf | 2023-06-07 09:24:59 -0700 | [diff] [blame] | 685 | [asyncResp{std::move(asyncResp)}]( |
Ed Tanous | 5e7e2dc | 2023-02-16 10:37:01 -0800 | [diff] [blame] | 686 | const boost::system::error_code& ec, |
Ed Tanous | b9d36b4 | 2022-02-26 21:42:46 -0800 | [diff] [blame] | 687 | const dbus::utility::DBusPropertiesMap& properties) { |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 688 | if (ec) |
| 689 | { |
Ed Tanous | 62598e3 | 2023-07-17 17:06:25 -0700 | [diff] [blame] | 690 | BMCWEB_LOG_DEBUG("DBUS response error"); |
Ed Tanous | ac106bf | 2023-06-07 09:24:59 -0700 | [diff] [blame] | 691 | messages::internalError(asyncResp->res); |
James Feist | 45094ad | 2020-04-29 14:02:30 -0700 | [diff] [blame] | 692 | |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 693 | return; |
| 694 | } |
Nan Zhou | d7f04fd | 2022-05-01 01:11:07 +0000 | [diff] [blame] | 695 | nlohmann::json::json_pointer regionPtr = "/Regions"_json_pointer; |
Ed Tanous | ac106bf | 2023-06-07 09:24:59 -0700 | [diff] [blame] | 696 | assembleDimmPartitionData(asyncResp, properties, regionPtr); |
Patrick Williams | 5a39f77 | 2023-10-20 11:20:21 -0500 | [diff] [blame] | 697 | } |
James Feist | 45094ad | 2020-04-29 14:02:30 -0700 | [diff] [blame] | 698 | |
Krzysztof Grobelny | c1343bf | 2022-08-31 13:15:26 +0200 | [diff] [blame] | 699 | ); |
James Feist | 45094ad | 2020-04-29 14:02:30 -0700 | [diff] [blame] | 700 | } |
| 701 | |
Ed Tanous | ac106bf | 2023-06-07 09:24:59 -0700 | [diff] [blame] | 702 | inline void getDimmData(std::shared_ptr<bmcweb::AsyncResp> asyncResp, |
Ed Tanous | 23a21a1 | 2020-07-25 04:45:05 +0000 | [diff] [blame] | 703 | const std::string& dimmId) |
Rapkiewicz, Pawel | 443c293 | 2018-10-22 15:08:49 +0200 | [diff] [blame] | 704 | { |
Ed Tanous | 62598e3 | 2023-07-17 17:06:25 -0700 | [diff] [blame] | 705 | BMCWEB_LOG_DEBUG("Get available system dimm resources."); |
George Liu | e99073f | 2022-12-09 11:06:16 +0800 | [diff] [blame] | 706 | constexpr std::array<std::string_view, 2> dimmInterfaces = { |
| 707 | "xyz.openbmc_project.Inventory.Item.Dimm", |
| 708 | "xyz.openbmc_project.Inventory.Item.PersistentMemory.Partition"}; |
| 709 | dbus::utility::getSubTree( |
| 710 | "/xyz/openbmc_project/inventory", 0, dimmInterfaces, |
Ed Tanous | ac106bf | 2023-06-07 09:24:59 -0700 | [diff] [blame] | 711 | [dimmId, asyncResp{std::move(asyncResp)}]( |
George Liu | e99073f | 2022-12-09 11:06:16 +0800 | [diff] [blame] | 712 | const boost::system::error_code& ec, |
Ed Tanous | b9d36b4 | 2022-02-26 21:42:46 -0800 | [diff] [blame] | 713 | const dbus::utility::MapperGetSubTreeResponse& subtree) { |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 714 | if (ec) |
| 715 | { |
Ed Tanous | 62598e3 | 2023-07-17 17:06:25 -0700 | [diff] [blame] | 716 | BMCWEB_LOG_DEBUG("DBUS response error"); |
Ed Tanous | ac106bf | 2023-06-07 09:24:59 -0700 | [diff] [blame] | 717 | messages::internalError(asyncResp->res); |
Rapkiewicz, Pawel | 443c293 | 2018-10-22 15:08:49 +0200 | [diff] [blame] | 718 | |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 719 | return; |
| 720 | } |
| 721 | bool found = false; |
Nan Zhou | 76686dc | 2022-06-17 23:01:51 +0000 | [diff] [blame] | 722 | for (const auto& [rawPath, object] : subtree) |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 723 | { |
Nan Zhou | 76686dc | 2022-06-17 23:01:51 +0000 | [diff] [blame] | 724 | sdbusplus::message::object_path path(rawPath); |
| 725 | for (const auto& [service, interfaces] : object) |
Rapkiewicz, Pawel | 443c293 | 2018-10-22 15:08:49 +0200 | [diff] [blame] | 726 | { |
Nan Zhou | 76686dc | 2022-06-17 23:01:51 +0000 | [diff] [blame] | 727 | for (const auto& interface : interfaces) |
Rapkiewicz, Pawel | 443c293 | 2018-10-22 15:08:49 +0200 | [diff] [blame] | 728 | { |
Nan Zhou | 76686dc | 2022-06-17 23:01:51 +0000 | [diff] [blame] | 729 | if (interface == |
| 730 | "xyz.openbmc_project.Inventory.Item.Dimm" && |
| 731 | path.filename() == dimmId) |
Rapkiewicz, Pawel | 443c293 | 2018-10-22 15:08:49 +0200 | [diff] [blame] | 732 | { |
Ed Tanous | ac106bf | 2023-06-07 09:24:59 -0700 | [diff] [blame] | 733 | getDimmDataByService(asyncResp, dimmId, service, |
| 734 | rawPath); |
Nan Zhou | 76686dc | 2022-06-17 23:01:51 +0000 | [diff] [blame] | 735 | found = true; |
| 736 | } |
James Feist | 45094ad | 2020-04-29 14:02:30 -0700 | [diff] [blame] | 737 | |
Nan Zhou | 76686dc | 2022-06-17 23:01:51 +0000 | [diff] [blame] | 738 | // partitions are separate as there can be multiple |
| 739 | // per |
| 740 | // device, i.e. |
| 741 | // /xyz/openbmc_project/Inventory/Item/Dimm1/Partition1 |
| 742 | // /xyz/openbmc_project/Inventory/Item/Dimm1/Partition2 |
| 743 | if (interface == |
| 744 | "xyz.openbmc_project.Inventory.Item.PersistentMemory.Partition" && |
| 745 | path.parent_path().filename() == dimmId) |
| 746 | { |
Ed Tanous | ac106bf | 2023-06-07 09:24:59 -0700 | [diff] [blame] | 747 | getDimmPartitionData(asyncResp, service, rawPath); |
Rapkiewicz, Pawel | 443c293 | 2018-10-22 15:08:49 +0200 | [diff] [blame] | 748 | } |
| 749 | } |
| 750 | } |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 751 | } |
| 752 | // Object not found |
| 753 | if (!found) |
| 754 | { |
Ed Tanous | ac106bf | 2023-06-07 09:24:59 -0700 | [diff] [blame] | 755 | messages::resourceNotFound(asyncResp->res, "Memory", dimmId); |
Rapkiewicz, Pawel | 443c293 | 2018-10-22 15:08:49 +0200 | [diff] [blame] | 756 | return; |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 757 | } |
| 758 | // Set @odata only if object is found |
Ed Tanous | ac106bf | 2023-06-07 09:24:59 -0700 | [diff] [blame] | 759 | asyncResp->res.jsonValue["@odata.type"] = "#Memory.v1_11_0.Memory"; |
| 760 | asyncResp->res.jsonValue["@odata.id"] = |
Ed Tanous | ef4c65b | 2023-04-24 15:28:50 -0700 | [diff] [blame] | 761 | boost::urls::format("/redfish/v1/Systems/system/Memory/{}", dimmId); |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 762 | return; |
Patrick Williams | 5a39f77 | 2023-10-20 11:20:21 -0500 | [diff] [blame] | 763 | }); |
Ed Tanous | 271584a | 2019-07-09 16:24:22 -0700 | [diff] [blame] | 764 | } |
Rapkiewicz, Pawel | 443c293 | 2018-10-22 15:08:49 +0200 | [diff] [blame] | 765 | |
John Edward Broadbent | 7e860f1 | 2021-04-08 15:57:16 -0700 | [diff] [blame] | 766 | inline void requestRoutesMemoryCollection(App& app) |
Ed Tanous | 029573d | 2019-02-01 10:57:49 -0800 | [diff] [blame] | 767 | { |
Ed Tanous | 029573d | 2019-02-01 10:57:49 -0800 | [diff] [blame] | 768 | /** |
| 769 | * Functions triggers appropriate requests on DBus |
| 770 | */ |
Ed Tanous | 22d268c | 2022-05-19 09:39:07 -0700 | [diff] [blame] | 771 | BMCWEB_ROUTE(app, "/redfish/v1/Systems/<str>/Memory/") |
Ed Tanous | ed39821 | 2021-06-09 17:05:54 -0700 | [diff] [blame] | 772 | .privileges(redfish::privileges::getMemoryCollection) |
John Edward Broadbent | 7e860f1 | 2021-04-08 15:57:16 -0700 | [diff] [blame] | 773 | .methods(boost::beast::http::verb::get)( |
Ed Tanous | 45ca1b8 | 2022-03-25 13:07:27 -0700 | [diff] [blame] | 774 | [&app](const crow::Request& req, |
Ed Tanous | 22d268c | 2022-05-19 09:39:07 -0700 | [diff] [blame] | 775 | const std::shared_ptr<bmcweb::AsyncResp>& asyncResp, |
| 776 | const std::string& systemName) { |
Carson Labrado | 3ba0007 | 2022-06-06 19:40:56 +0000 | [diff] [blame] | 777 | if (!redfish::setUpRedfishRoute(app, req, asyncResp)) |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 778 | { |
| 779 | return; |
| 780 | } |
Ed Tanous | 25b54db | 2024-04-17 15:40:31 -0700 | [diff] [blame^] | 781 | if constexpr (BMCWEB_EXPERIMENTAL_REDFISH_MULTI_COMPUTER_SYSTEM) |
Ed Tanous | 7f3e84a | 2022-12-28 16:22:54 -0800 | [diff] [blame] | 782 | { |
| 783 | // Option currently returns no systems. TBD |
| 784 | messages::resourceNotFound(asyncResp->res, "ComputerSystem", |
| 785 | systemName); |
| 786 | return; |
| 787 | } |
Ed Tanous | 22d268c | 2022-05-19 09:39:07 -0700 | [diff] [blame] | 788 | if (systemName != "system") |
| 789 | { |
| 790 | messages::resourceNotFound(asyncResp->res, "ComputerSystem", |
| 791 | systemName); |
| 792 | return; |
| 793 | } |
| 794 | |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 795 | asyncResp->res.jsonValue["@odata.type"] = |
| 796 | "#MemoryCollection.MemoryCollection"; |
| 797 | asyncResp->res.jsonValue["Name"] = "Memory Module Collection"; |
| 798 | asyncResp->res.jsonValue["@odata.id"] = |
| 799 | "/redfish/v1/Systems/system/Memory"; |
Rapkiewicz, Pawel | 443c293 | 2018-10-22 15:08:49 +0200 | [diff] [blame] | 800 | |
George Liu | 7a1dbc4 | 2022-12-07 16:03:22 +0800 | [diff] [blame] | 801 | constexpr std::array<std::string_view, 1> interfaces{ |
| 802 | "xyz.openbmc_project.Inventory.Item.Dimm"}; |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 803 | collection_util::getCollectionMembers( |
Willy Tu | ae9031f | 2022-09-27 05:48:07 +0000 | [diff] [blame] | 804 | asyncResp, boost::urls::url("/redfish/v1/Systems/system/Memory"), |
Lakshmi Yadlapati | 36b5f1e | 2023-09-26 23:53:28 -0500 | [diff] [blame] | 805 | interfaces, "/xyz/openbmc_project/inventory"); |
Patrick Williams | 5a39f77 | 2023-10-20 11:20:21 -0500 | [diff] [blame] | 806 | }); |
John Edward Broadbent | 7e860f1 | 2021-04-08 15:57:16 -0700 | [diff] [blame] | 807 | } |
Rapkiewicz, Pawel | 443c293 | 2018-10-22 15:08:49 +0200 | [diff] [blame] | 808 | |
John Edward Broadbent | 7e860f1 | 2021-04-08 15:57:16 -0700 | [diff] [blame] | 809 | inline void requestRoutesMemory(App& app) |
Rapkiewicz, Pawel | 443c293 | 2018-10-22 15:08:49 +0200 | [diff] [blame] | 810 | { |
Rapkiewicz, Pawel | 443c293 | 2018-10-22 15:08:49 +0200 | [diff] [blame] | 811 | /** |
| 812 | * Functions triggers appropriate requests on DBus |
| 813 | */ |
Ed Tanous | 22d268c | 2022-05-19 09:39:07 -0700 | [diff] [blame] | 814 | BMCWEB_ROUTE(app, "/redfish/v1/Systems/<str>/Memory/<str>/") |
Ed Tanous | ed39821 | 2021-06-09 17:05:54 -0700 | [diff] [blame] | 815 | .privileges(redfish::privileges::getMemory) |
John Edward Broadbent | 7e860f1 | 2021-04-08 15:57:16 -0700 | [diff] [blame] | 816 | .methods(boost::beast::http::verb::get)( |
Ed Tanous | 45ca1b8 | 2022-03-25 13:07:27 -0700 | [diff] [blame] | 817 | [&app](const crow::Request& req, |
| 818 | const std::shared_ptr<bmcweb::AsyncResp>& asyncResp, |
Ed Tanous | 22d268c | 2022-05-19 09:39:07 -0700 | [diff] [blame] | 819 | const std::string& systemName, const std::string& dimmId) { |
Carson Labrado | 3ba0007 | 2022-06-06 19:40:56 +0000 | [diff] [blame] | 820 | if (!redfish::setUpRedfishRoute(app, req, asyncResp)) |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 821 | { |
| 822 | return; |
| 823 | } |
Ed Tanous | 7f3e84a | 2022-12-28 16:22:54 -0800 | [diff] [blame] | 824 | |
Ed Tanous | 25b54db | 2024-04-17 15:40:31 -0700 | [diff] [blame^] | 825 | if constexpr (BMCWEB_EXPERIMENTAL_REDFISH_MULTI_COMPUTER_SYSTEM) |
Ed Tanous | 7f3e84a | 2022-12-28 16:22:54 -0800 | [diff] [blame] | 826 | { |
| 827 | // Option currently returns no systems. TBD |
| 828 | messages::resourceNotFound(asyncResp->res, "ComputerSystem", |
| 829 | systemName); |
| 830 | return; |
| 831 | } |
| 832 | |
Ed Tanous | 22d268c | 2022-05-19 09:39:07 -0700 | [diff] [blame] | 833 | if (systemName != "system") |
| 834 | { |
| 835 | messages::resourceNotFound(asyncResp->res, "ComputerSystem", |
| 836 | systemName); |
| 837 | return; |
| 838 | } |
| 839 | |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 840 | getDimmData(asyncResp, dimmId); |
Patrick Williams | 5a39f77 | 2023-10-20 11:20:21 -0500 | [diff] [blame] | 841 | }); |
John Edward Broadbent | 7e860f1 | 2021-04-08 15:57:16 -0700 | [diff] [blame] | 842 | } |
Rapkiewicz, Pawel | 443c293 | 2018-10-22 15:08:49 +0200 | [diff] [blame] | 843 | |
| 844 | } // namespace redfish |