Patrick Venture | 46470a3 | 2018-09-07 19:26:25 -0700 | [diff] [blame] | 1 | #pragma once |
Tom Joseph | be5eaa1 | 2017-07-12 19:54:44 +0530 | [diff] [blame] | 2 | |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 3 | #include "nlohmann/json.hpp" |
| 4 | |
Tom Joseph | be5eaa1 | 2017-07-12 19:54:44 +0530 | [diff] [blame] | 5 | #include <map> |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 6 | #include <sdbusplus/bus.hpp> |
Tom Joseph | be5eaa1 | 2017-07-12 19:54:44 +0530 | [diff] [blame] | 7 | #include <string> |
| 8 | #include <vector> |
| 9 | |
Tom Joseph | be5eaa1 | 2017-07-12 19:54:44 +0530 | [diff] [blame] | 10 | namespace dcmi |
| 11 | { |
| 12 | |
Deepak Kodihalli | 0b45955 | 2018-02-06 06:25:12 -0600 | [diff] [blame] | 13 | using NumInstances = size_t; |
| 14 | using Json = nlohmann::json; |
| 15 | |
Ratan Gupta | 11ddbd2 | 2017-08-05 11:59:39 +0530 | [diff] [blame] | 16 | enum Commands |
| 17 | { |
| 18 | // Get capability bits |
Dhruvaraj Subhashchandran | e29be41 | 2018-01-16 05:11:56 -0600 | [diff] [blame] | 19 | GET_CAPABILITIES = 0x01, |
Marri Devender Rao | 66c5fda | 2018-01-18 10:48:37 -0600 | [diff] [blame] | 20 | GET_POWER_READING = 0x02, |
Ratan Gupta | 11ddbd2 | 2017-08-05 11:59:39 +0530 | [diff] [blame] | 21 | GET_POWER_LIMIT = 0x03, |
| 22 | SET_POWER_LIMIT = 0x04, |
| 23 | APPLY_POWER_LIMIT = 0x05, |
| 24 | GET_ASSET_TAG = 0x06, |
Deepak Kodihalli | 0b45955 | 2018-02-06 06:25:12 -0600 | [diff] [blame] | 25 | GET_SENSOR_INFO = 0x07, |
Ratan Gupta | 11ddbd2 | 2017-08-05 11:59:39 +0530 | [diff] [blame] | 26 | SET_ASSET_TAG = 0x08, |
Vladislav Vovchenko | 8f7a6f6 | 2017-08-17 00:31:14 +0300 | [diff] [blame] | 27 | GET_MGMNT_CTRL_ID_STR = 0x09, |
| 28 | SET_MGMNT_CTRL_ID_STR = 0x0A, |
Deepak Kodihalli | ee717d7 | 2018-01-24 04:53:09 -0600 | [diff] [blame] | 29 | GET_TEMP_READINGS = 0x10, |
Nagaraju Goruganti | 22be97b | 2018-02-07 01:19:59 -0600 | [diff] [blame] | 30 | SET_CONF_PARAMS = 0x12, |
| 31 | GET_CONF_PARAMS = 0x13, |
Ratan Gupta | 11ddbd2 | 2017-08-05 11:59:39 +0530 | [diff] [blame] | 32 | }; |
| 33 | |
Tom Joseph | be5eaa1 | 2017-07-12 19:54:44 +0530 | [diff] [blame] | 34 | static constexpr auto propIntf = "org.freedesktop.DBus.Properties"; |
| 35 | static constexpr auto assetTagIntf = |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 36 | "xyz.openbmc_project.Inventory.Decorator.AssetTag"; |
Tom Joseph | be5eaa1 | 2017-07-12 19:54:44 +0530 | [diff] [blame] | 37 | static constexpr auto assetTagProp = "AssetTag"; |
Vladislav Vovchenko | 8f7a6f6 | 2017-08-17 00:31:14 +0300 | [diff] [blame] | 38 | static constexpr auto networkServiceName = "xyz.openbmc_project.Network"; |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 39 | static constexpr auto networkConfigObj = "/xyz/openbmc_project/network/config"; |
Vladislav Vovchenko | 8f7a6f6 | 2017-08-17 00:31:14 +0300 | [diff] [blame] | 40 | static constexpr auto networkConfigIntf = |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 41 | "xyz.openbmc_project.Network.SystemConfiguration"; |
Vladislav Vovchenko | 8f7a6f6 | 2017-08-17 00:31:14 +0300 | [diff] [blame] | 42 | static constexpr auto hostNameProp = "HostName"; |
Deepak Kodihalli | ee717d7 | 2018-01-24 04:53:09 -0600 | [diff] [blame] | 43 | static constexpr auto temperatureSensorType = 0x01; |
Deepak Kodihalli | 0b45955 | 2018-02-06 06:25:12 -0600 | [diff] [blame] | 44 | static constexpr auto maxInstances = 255; |
Kirill Pakhomov | a257362 | 2018-11-02 19:00:18 +0300 | [diff] [blame] | 45 | static constexpr auto gDCMISensorsConfig = |
Deepak Kodihalli | 0b45955 | 2018-02-06 06:25:12 -0600 | [diff] [blame] | 46 | "/usr/share/ipmi-providers/dcmi_sensors.json"; |
Nagaraju Goruganti | 22be97b | 2018-02-07 01:19:59 -0600 | [diff] [blame] | 47 | static constexpr auto ethernetIntf = |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 48 | "xyz.openbmc_project.Network.EthernetInterface"; |
Nagaraju Goruganti | 22be97b | 2018-02-07 01:19:59 -0600 | [diff] [blame] | 49 | static constexpr auto ethernetDefaultChannelNum = 0x1; |
| 50 | static constexpr auto networkRoot = "/xyz/openbmc_project/network"; |
| 51 | static constexpr auto dhcpObj = "/xyz/openbmc_project/network/config/dhcp"; |
| 52 | static constexpr auto dhcpIntf = |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 53 | "xyz.openbmc_project.Network.DHCPConfiguration"; |
Nagaraju Goruganti | 22be97b | 2018-02-07 01:19:59 -0600 | [diff] [blame] | 54 | static constexpr auto systemBusName = "org.freedesktop.systemd1"; |
| 55 | static constexpr auto systemPath = "/org/freedesktop/systemd1"; |
| 56 | static constexpr auto systemIntf = "org.freedesktop.systemd1.Manager"; |
Kirill Pakhomov | a257362 | 2018-11-02 19:00:18 +0300 | [diff] [blame] | 57 | static constexpr auto gDCMICapabilitiesConfig = |
| 58 | "/usr/share/ipmi-providers/dcmi_cap.json"; |
Kirill Pakhomov | 2c2af2c | 2018-11-06 16:06:10 +0300 | [diff] [blame] | 59 | static constexpr auto gDCMIPowerMgmtCapability = "PowerManagement"; |
| 60 | static constexpr auto gDCMIPowerMgmtSupported = 0x1; |
Kirill Pakhomov | db5d9b0 | 2018-11-06 19:17:51 +0300 | [diff] [blame] | 61 | static constexpr auto gMaxSELEntriesMask = 0xFFF; |
| 62 | static constexpr auto gByteBitSize = 8; |
Tom Joseph | be5eaa1 | 2017-07-12 19:54:44 +0530 | [diff] [blame] | 63 | |
| 64 | namespace assettag |
| 65 | { |
| 66 | |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 67 | using ObjectPath = std::string; |
| 68 | using Service = std::string; |
| 69 | using Interfaces = std::vector<std::string>; |
| 70 | using ObjectTree = std::map<ObjectPath, std::map<Service, Interfaces>>; |
Tom Joseph | be5eaa1 | 2017-07-12 19:54:44 +0530 | [diff] [blame] | 71 | |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 72 | } // namespace assettag |
Tom Joseph | be5eaa1 | 2017-07-12 19:54:44 +0530 | [diff] [blame] | 73 | |
Deepak Kodihalli | ee717d7 | 2018-01-24 04:53:09 -0600 | [diff] [blame] | 74 | namespace temp_readings |
| 75 | { |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 76 | static constexpr auto maxDataSets = 8; |
| 77 | static constexpr auto maxTemp = 127; // degrees C |
Deepak Kodihalli | ee717d7 | 2018-01-24 04:53:09 -0600 | [diff] [blame] | 78 | |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 79 | /** @struct Response |
| 80 | * |
| 81 | * DCMI payload for Get Temperature Readings response |
| 82 | */ |
| 83 | struct Response |
| 84 | { |
Deepak Kodihalli | ee717d7 | 2018-01-24 04:53:09 -0600 | [diff] [blame] | 85 | #if BYTE_ORDER == LITTLE_ENDIAN |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 86 | uint8_t temperature : 7; //!< Temperature reading in Celsius |
| 87 | uint8_t sign : 1; //!< Sign bit |
Deepak Kodihalli | ee717d7 | 2018-01-24 04:53:09 -0600 | [diff] [blame] | 88 | #endif |
| 89 | #if BYTE_ORDER == BIG_ENDIAN |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 90 | uint8_t sign : 1; //!< Sign bit |
| 91 | uint8_t temperature : 7; //!< Temperature reading in Celsius |
Deepak Kodihalli | ee717d7 | 2018-01-24 04:53:09 -0600 | [diff] [blame] | 92 | #endif |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 93 | uint8_t instance; //!< Entity instance number |
| 94 | } __attribute__((packed)); |
Deepak Kodihalli | ee717d7 | 2018-01-24 04:53:09 -0600 | [diff] [blame] | 95 | |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 96 | using ResponseList = std::vector<Response>; |
| 97 | using Value = uint8_t; |
| 98 | using Sign = bool; |
| 99 | using Temperature = std::tuple<Value, Sign>; |
| 100 | } // namespace temp_readings |
Deepak Kodihalli | ee717d7 | 2018-01-24 04:53:09 -0600 | [diff] [blame] | 101 | |
Deepak Kodihalli | 0b45955 | 2018-02-06 06:25:12 -0600 | [diff] [blame] | 102 | namespace sensor_info |
| 103 | { |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 104 | static constexpr auto maxRecords = 8; |
Deepak Kodihalli | 0b45955 | 2018-02-06 06:25:12 -0600 | [diff] [blame] | 105 | |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 106 | /** @struct Response |
| 107 | * |
| 108 | * DCMI payload for Get Sensor Info response |
| 109 | */ |
| 110 | struct Response |
| 111 | { |
| 112 | uint8_t recordIdLsb; //!< SDR record id LS byte |
| 113 | uint8_t recordIdMsb; //!< SDR record id MS byte |
| 114 | } __attribute__((packed)); |
Deepak Kodihalli | 0b45955 | 2018-02-06 06:25:12 -0600 | [diff] [blame] | 115 | |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 116 | using ResponseList = std::vector<Response>; |
Deepak Kodihalli | 0b45955 | 2018-02-06 06:25:12 -0600 | [diff] [blame] | 117 | } // namespace sensor_info |
| 118 | |
Tom Joseph | 6f6dd4d | 2017-07-12 20:07:11 +0530 | [diff] [blame] | 119 | static constexpr auto groupExtId = 0xDC; |
| 120 | |
| 121 | static constexpr auto assetTagMaxOffset = 62; |
| 122 | static constexpr auto assetTagMaxSize = 63; |
| 123 | static constexpr auto maxBytes = 16; |
Vladislav Vovchenko | 8f7a6f6 | 2017-08-17 00:31:14 +0300 | [diff] [blame] | 124 | static constexpr size_t maxCtrlIdStrLen = 63; |
Tom Joseph | 6f6dd4d | 2017-07-12 20:07:11 +0530 | [diff] [blame] | 125 | |
| 126 | /** @struct GetAssetTagRequest |
| 127 | * |
| 128 | * DCMI payload for Get Asset Tag command request. |
| 129 | */ |
| 130 | struct GetAssetTagRequest |
| 131 | { |
William A. Kennington III | 5d06cc6 | 2019-04-25 02:10:55 -0700 | [diff] [blame] | 132 | uint8_t offset; //!< Offset to read. |
| 133 | uint8_t bytes; //!< Number of bytes to read. |
Tom Joseph | 6f6dd4d | 2017-07-12 20:07:11 +0530 | [diff] [blame] | 134 | } __attribute__((packed)); |
| 135 | |
| 136 | /** @struct GetAssetTagResponse |
| 137 | * |
| 138 | * DCMI payload for Get Asset Tag command response. |
| 139 | */ |
| 140 | struct GetAssetTagResponse |
| 141 | { |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 142 | uint8_t tagLength; //!< Total asset tag length. |
Tom Joseph | 6f6dd4d | 2017-07-12 20:07:11 +0530 | [diff] [blame] | 143 | } __attribute__((packed)); |
| 144 | |
Tom Joseph | 545dd23 | 2017-07-12 20:20:49 +0530 | [diff] [blame] | 145 | /** @struct SetAssetTagRequest |
| 146 | * |
| 147 | * DCMI payload for Set Asset Tag command request. |
| 148 | */ |
| 149 | struct SetAssetTagRequest |
| 150 | { |
William A. Kennington III | 5d06cc6 | 2019-04-25 02:10:55 -0700 | [diff] [blame] | 151 | uint8_t offset; //!< Offset to write. |
| 152 | uint8_t bytes; //!< Number of bytes to write. |
Tom Joseph | 545dd23 | 2017-07-12 20:20:49 +0530 | [diff] [blame] | 153 | } __attribute__((packed)); |
| 154 | |
| 155 | /** @struct SetAssetTagResponse |
| 156 | * |
| 157 | * DCMI payload for Set Asset Tag command response. |
| 158 | */ |
| 159 | struct SetAssetTagResponse |
| 160 | { |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 161 | uint8_t tagLength; //!< Total asset tag length. |
Tom Joseph | 545dd23 | 2017-07-12 20:20:49 +0530 | [diff] [blame] | 162 | } __attribute__((packed)); |
| 163 | |
Kirill Pakhomov | 2c2af2c | 2018-11-06 16:06:10 +0300 | [diff] [blame] | 164 | /** @brief Check whether DCMI power management is supported |
| 165 | * in the DCMI Capabilities config file. |
| 166 | * |
| 167 | * @return True if DCMI power management is supported |
| 168 | */ |
| 169 | bool isDCMIPowerMgmtSupported(); |
| 170 | |
Tom Joseph | be5eaa1 | 2017-07-12 19:54:44 +0530 | [diff] [blame] | 171 | /** @brief Read the object tree to fetch the object path that implemented the |
| 172 | * Asset tag interface. |
| 173 | * |
| 174 | * @param[in,out] objectTree - object tree |
| 175 | * |
| 176 | * @return On success return the object tree with the object path that |
| 177 | * implemented the AssetTag interface. |
| 178 | */ |
| 179 | void readAssetTagObjectTree(dcmi::assettag::ObjectTree& objectTree); |
| 180 | |
| 181 | /** @brief Read the asset tag of the server |
| 182 | * |
| 183 | * @return On success return the asset tag. |
| 184 | */ |
| 185 | std::string readAssetTag(); |
| 186 | |
Tom Joseph | be5b989 | 2017-07-15 00:55:23 +0530 | [diff] [blame] | 187 | /** @brief Write the asset tag to the asset tag DBUS property |
| 188 | * |
| 189 | * @param[in] assetTag - Asset Tag to be written to the property. |
| 190 | */ |
| 191 | void writeAssetTag(const std::string& assetTag); |
| 192 | |
Tom Joseph | b9d86f4 | 2017-07-26 18:03:47 +0530 | [diff] [blame] | 193 | /** @brief Read the current power cap value |
| 194 | * |
| 195 | * @param[in] bus - dbus connection |
| 196 | * |
| 197 | * @return On success return the power cap value. |
| 198 | */ |
| 199 | uint32_t getPcap(sdbusplus::bus::bus& bus); |
| 200 | |
| 201 | /** @brief Check if the power capping is enabled |
| 202 | * |
| 203 | * @param[in] bus - dbus connection |
| 204 | * |
| 205 | * @return true if the powerCap is enabled and false if the powercap |
| 206 | * is disabled. |
| 207 | */ |
| 208 | bool getPcapEnabled(sdbusplus::bus::bus& bus); |
| 209 | |
Tom Joseph | b9d86f4 | 2017-07-26 18:03:47 +0530 | [diff] [blame] | 210 | /** @struct GetPowerLimitResponse |
| 211 | * |
| 212 | * DCMI payload for Get Power Limit command response. |
| 213 | */ |
| 214 | struct GetPowerLimitResponse |
| 215 | { |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 216 | uint16_t reserved; //!< Reserved. |
| 217 | uint8_t exceptionAction; //!< Exception action. |
| 218 | uint16_t powerLimit; //!< Power limit requested in watts. |
| 219 | uint32_t correctionTime; //!< Correction time limit in milliseconds. |
| 220 | uint16_t reserved1; //!< Reserved. |
| 221 | uint16_t samplingPeriod; //!< Statistics sampling period in seconds. |
Tom Joseph | b9d86f4 | 2017-07-26 18:03:47 +0530 | [diff] [blame] | 222 | } __attribute__((packed)); |
| 223 | |
Tom Joseph | 46fa37d | 2017-07-26 18:11:55 +0530 | [diff] [blame] | 224 | /** @brief Set the power cap value |
| 225 | * |
| 226 | * @param[in] bus - dbus connection |
| 227 | * @param[in] powerCap - power cap value |
| 228 | */ |
| 229 | void setPcap(sdbusplus::bus::bus& bus, const uint32_t powerCap); |
| 230 | |
| 231 | /** @struct SetPowerLimitRequest |
| 232 | * |
| 233 | * DCMI payload for Set Power Limit command request. |
| 234 | */ |
| 235 | struct SetPowerLimitRequest |
| 236 | { |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 237 | uint16_t reserved; //!< Reserved |
| 238 | uint8_t reserved1; //!< Reserved |
| 239 | uint8_t exceptionAction; //!< Exception action. |
| 240 | uint16_t powerLimit; //!< Power limit requested in watts. |
| 241 | uint32_t correctionTime; //!< Correction time limit in milliseconds. |
| 242 | uint16_t reserved2; //!< Reserved. |
| 243 | uint16_t samplingPeriod; //!< Statistics sampling period in seconds. |
Tom Joseph | 46fa37d | 2017-07-26 18:11:55 +0530 | [diff] [blame] | 244 | } __attribute__((packed)); |
| 245 | |
Tom Joseph | 6c8d51b | 2017-07-26 18:18:06 +0530 | [diff] [blame] | 246 | /** @brief Enable or disable the power capping |
| 247 | * |
| 248 | * @param[in] bus - dbus connection |
| 249 | * @param[in] enabled - enable/disable |
| 250 | */ |
| 251 | void setPcapEnable(sdbusplus::bus::bus& bus, bool enabled); |
| 252 | |
| 253 | /** @struct ApplyPowerLimitRequest |
| 254 | * |
| 255 | * DCMI payload for Activate/Deactivate Power Limit command request. |
| 256 | */ |
| 257 | struct ApplyPowerLimitRequest |
| 258 | { |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 259 | uint8_t powerLimitAction; //!< Power limit activation |
| 260 | uint16_t reserved; //!< Reserved |
Tom Joseph | 6c8d51b | 2017-07-26 18:18:06 +0530 | [diff] [blame] | 261 | } __attribute__((packed)); |
| 262 | |
Vladislav Vovchenko | 8f7a6f6 | 2017-08-17 00:31:14 +0300 | [diff] [blame] | 263 | /** @struct GetMgmntCtrlIdStrRequest |
| 264 | * |
| 265 | * DCMI payload for Get Management Controller Identifier String cmd request. |
| 266 | */ |
| 267 | struct GetMgmntCtrlIdStrRequest |
| 268 | { |
William A. Kennington III | 5d06cc6 | 2019-04-25 02:10:55 -0700 | [diff] [blame] | 269 | uint8_t offset; //!< Offset to read. |
| 270 | uint8_t bytes; //!< Number of bytes to read. |
Vladislav Vovchenko | 8f7a6f6 | 2017-08-17 00:31:14 +0300 | [diff] [blame] | 271 | } __attribute__((packed)); |
| 272 | |
| 273 | /** @struct GetMgmntCtrlIdStrResponse |
| 274 | * |
| 275 | * DCMI payload for Get Management Controller Identifier String cmd response. |
| 276 | */ |
| 277 | struct GetMgmntCtrlIdStrResponse |
| 278 | { |
William A. Kennington III | 5d06cc6 | 2019-04-25 02:10:55 -0700 | [diff] [blame] | 279 | uint8_t strLen; //!< ID string length. |
| 280 | char data[]; //!< ID string |
Vladislav Vovchenko | 8f7a6f6 | 2017-08-17 00:31:14 +0300 | [diff] [blame] | 281 | } __attribute__((packed)); |
| 282 | |
| 283 | /** @struct SetMgmntCtrlIdStrRequest |
| 284 | * |
| 285 | * DCMI payload for Set Management Controller Identifier String cmd request. |
| 286 | */ |
| 287 | struct SetMgmntCtrlIdStrRequest |
| 288 | { |
William A. Kennington III | 5d06cc6 | 2019-04-25 02:10:55 -0700 | [diff] [blame] | 289 | uint8_t offset; //!< Offset to write. |
| 290 | uint8_t bytes; //!< Number of bytes to read. |
| 291 | char data[]; //!< ID string |
Vladislav Vovchenko | 8f7a6f6 | 2017-08-17 00:31:14 +0300 | [diff] [blame] | 292 | } __attribute__((packed)); |
| 293 | |
| 294 | /** @struct GetMgmntCtrlIdStrResponse |
| 295 | * |
| 296 | * DCMI payload for Get Management Controller Identifier String cmd response. |
| 297 | */ |
| 298 | struct SetMgmntCtrlIdStrResponse |
| 299 | { |
William A. Kennington III | 5d06cc6 | 2019-04-25 02:10:55 -0700 | [diff] [blame] | 300 | uint8_t offset; //!< Last Offset Written. |
Vladislav Vovchenko | 8f7a6f6 | 2017-08-17 00:31:14 +0300 | [diff] [blame] | 301 | } __attribute__((packed)); |
| 302 | |
Dhruvaraj Subhashchandran | e29be41 | 2018-01-16 05:11:56 -0600 | [diff] [blame] | 303 | /** @enum DCMICapParameters |
| 304 | * |
| 305 | * DCMI Capability parameters |
| 306 | */ |
| 307 | enum class DCMICapParameters |
| 308 | { |
| 309 | SUPPORTED_DCMI_CAPS = 0x01, //!< Supported DCMI Capabilities |
| 310 | MANDATORY_PLAT_ATTRIBUTES = 0x02, //!< Mandatory Platform Attributes |
| 311 | OPTIONAL_PLAT_ATTRIBUTES = 0x03, //!< Optional Platform Attributes |
| 312 | MANAGEABILITY_ACCESS_ATTRIBUTES = 0x04, //!< Manageability Access Attributes |
| 313 | }; |
| 314 | |
| 315 | /** @struct GetDCMICapRequest |
| 316 | * |
| 317 | * DCMI payload for Get capabilities cmd request. |
| 318 | */ |
| 319 | struct GetDCMICapRequest |
| 320 | { |
William A. Kennington III | 5d06cc6 | 2019-04-25 02:10:55 -0700 | [diff] [blame] | 321 | uint8_t param; //!< Capability parameter selector. |
Dhruvaraj Subhashchandran | e29be41 | 2018-01-16 05:11:56 -0600 | [diff] [blame] | 322 | } __attribute__((packed)); |
| 323 | |
| 324 | /** @struct GetDCMICapRequest |
| 325 | * |
| 326 | * DCMI payload for Get capabilities cmd response. |
| 327 | */ |
| 328 | struct GetDCMICapResponse |
| 329 | { |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 330 | uint8_t major; //!< DCMI Specification Conformance - major ver |
| 331 | uint8_t minor; //!< DCMI Specification Conformance - minor ver |
| 332 | uint8_t paramRevision; //!< Parameter Revision = 02h |
| 333 | uint8_t data[]; //!< Capability array |
Dhruvaraj Subhashchandran | e29be41 | 2018-01-16 05:11:56 -0600 | [diff] [blame] | 334 | } __attribute__((packed)); |
| 335 | |
| 336 | /** @struct DCMICap |
| 337 | * |
| 338 | * DCMI capabilities protocol info. |
| 339 | */ |
| 340 | struct DCMICap |
| 341 | { |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 342 | std::string name; //!< Name of DCMI capability. |
| 343 | uint8_t bytePosition; //!< Starting byte number from DCMI spec. |
| 344 | uint8_t position; //!< bit position from the DCMI spec. |
| 345 | uint8_t length; //!< Length of the value from DCMI spec. |
Dhruvaraj Subhashchandran | e29be41 | 2018-01-16 05:11:56 -0600 | [diff] [blame] | 346 | }; |
| 347 | |
| 348 | using DCMICapList = std::vector<DCMICap>; |
| 349 | |
| 350 | /** @struct DCMICapEntry |
| 351 | * |
| 352 | * DCMI capabilities list and size for each parameter. |
| 353 | */ |
| 354 | struct DCMICapEntry |
| 355 | { |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 356 | uint8_t size; //!< Size of capability array in bytes. |
| 357 | DCMICapList capList; //!< List of capabilities for a parameter. |
Dhruvaraj Subhashchandran | e29be41 | 2018-01-16 05:11:56 -0600 | [diff] [blame] | 358 | }; |
| 359 | |
| 360 | using DCMICaps = std::map<DCMICapParameters, DCMICapEntry>; |
| 361 | |
Deepak Kodihalli | ee717d7 | 2018-01-24 04:53:09 -0600 | [diff] [blame] | 362 | /** @struct GetTempReadingsRequest |
| 363 | * |
| 364 | * DCMI payload for Get Temperature Readings request |
| 365 | */ |
| 366 | struct GetTempReadingsRequest |
| 367 | { |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 368 | uint8_t sensorType; //!< Type of the sensor |
| 369 | uint8_t entityId; //!< Entity ID |
| 370 | uint8_t entityInstance; //!< Entity Instance (0 means all instances) |
| 371 | uint8_t instanceStart; //!< Instance start (used if instance is 0) |
Deepak Kodihalli | ee717d7 | 2018-01-24 04:53:09 -0600 | [diff] [blame] | 372 | } __attribute__((packed)); |
| 373 | |
| 374 | /** @struct GetTempReadingsResponse |
| 375 | * |
| 376 | * DCMI header for Get Temperature Readings response |
| 377 | */ |
| 378 | struct GetTempReadingsResponseHdr |
| 379 | { |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 380 | uint8_t numInstances; //!< No. of instances for requested id |
| 381 | uint8_t numDataSets; //!< No. of sets of temperature data |
Deepak Kodihalli | ee717d7 | 2018-01-24 04:53:09 -0600 | [diff] [blame] | 382 | } __attribute__((packed)); |
| 383 | |
Kirill Pakhomov | a257362 | 2018-11-02 19:00:18 +0300 | [diff] [blame] | 384 | /** @brief Parse out JSON config file. |
| 385 | * |
| 386 | * @param[in] configFile - JSON config file name |
Deepak Kodihalli | 0b45955 | 2018-02-06 06:25:12 -0600 | [diff] [blame] | 387 | * |
| 388 | * @return A json object |
| 389 | */ |
Kirill Pakhomov | a257362 | 2018-11-02 19:00:18 +0300 | [diff] [blame] | 390 | Json parseJSONConfig(const std::string& configFile); |
Deepak Kodihalli | 0b45955 | 2018-02-06 06:25:12 -0600 | [diff] [blame] | 391 | |
Deepak Kodihalli | ee717d7 | 2018-01-24 04:53:09 -0600 | [diff] [blame] | 392 | namespace temp_readings |
| 393 | { |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 394 | /** @brief Read temperature from a d-bus object, scale it as per dcmi |
| 395 | * get temperature reading requirements. |
| 396 | * |
| 397 | * @param[in] dbusService - the D-Bus service |
| 398 | * @param[in] dbusPath - the D-Bus path |
| 399 | * |
| 400 | * @return A temperature reading |
| 401 | */ |
| 402 | Temperature readTemp(const std::string& dbusService, |
| 403 | const std::string& dbusPath); |
Deepak Kodihalli | b1e8fba | 2018-01-24 04:57:10 -0600 | [diff] [blame] | 404 | |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 405 | /** @brief Read temperatures and fill up DCMI response for the Get |
| 406 | * Temperature Readings command. This looks at a specific |
| 407 | * instance. |
| 408 | * |
| 409 | * @param[in] type - one of "inlet", "cpu", "baseboard" |
| 410 | * @param[in] instance - A non-zero Entity instance number |
| 411 | * |
| 412 | * @return A tuple, containing a temperature reading and the |
| 413 | * number of instances. |
| 414 | */ |
| 415 | std::tuple<Response, NumInstances> read(const std::string& type, |
| 416 | uint8_t instance); |
Deepak Kodihalli | ee717d7 | 2018-01-24 04:53:09 -0600 | [diff] [blame] | 417 | |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 418 | /** @brief Read temperatures and fill up DCMI response for the Get |
| 419 | * Temperature Readings command. This looks at a range of |
| 420 | * instances. |
| 421 | * |
| 422 | * @param[in] type - one of "inlet", "cpu", "baseboard" |
| 423 | * @param[in] instanceStart - Entity instance start index |
| 424 | * |
| 425 | * @return A tuple, containing a list of temperature readings and the |
| 426 | * number of instances. |
| 427 | */ |
| 428 | std::tuple<ResponseList, NumInstances> readAll(const std::string& type, |
| 429 | uint8_t instanceStart); |
| 430 | } // namespace temp_readings |
Deepak Kodihalli | ee717d7 | 2018-01-24 04:53:09 -0600 | [diff] [blame] | 431 | |
Deepak Kodihalli | 0b45955 | 2018-02-06 06:25:12 -0600 | [diff] [blame] | 432 | namespace sensor_info |
| 433 | { |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 434 | /** @brief Create response from JSON config. |
| 435 | * |
| 436 | * @param[in] config - JSON config info about DCMI sensors |
| 437 | * |
| 438 | * @return Sensor info response |
| 439 | */ |
| 440 | Response createFromJson(const Json& config); |
Deepak Kodihalli | dd4cff1 | 2018-02-06 06:48:29 -0600 | [diff] [blame] | 441 | |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 442 | /** @brief Read sensor info and fill up DCMI response for the Get |
| 443 | * Sensor Info command. This looks at a specific |
| 444 | * instance. |
| 445 | * |
| 446 | * @param[in] type - one of "inlet", "cpu", "baseboard" |
| 447 | * @param[in] instance - A non-zero Entity instance number |
| 448 | * @param[in] config - JSON config info about DCMI sensors |
| 449 | * |
| 450 | * @return A tuple, containing a sensor info response and |
| 451 | * number of instances. |
| 452 | */ |
| 453 | std::tuple<Response, NumInstances> read(const std::string& type, |
| 454 | uint8_t instance, const Json& config); |
Deepak Kodihalli | 0b45955 | 2018-02-06 06:25:12 -0600 | [diff] [blame] | 455 | |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 456 | /** @brief Read sensor info and fill up DCMI response for the Get |
| 457 | * Sensor Info command. This looks at a range of |
| 458 | * instances. |
| 459 | * |
| 460 | * @param[in] type - one of "inlet", "cpu", "baseboard" |
| 461 | * @param[in] instanceStart - Entity instance start index |
| 462 | * @param[in] config - JSON config info about DCMI sensors |
| 463 | * |
| 464 | * @return A tuple, containing a list of sensor info responses and the |
| 465 | * number of instances. |
| 466 | */ |
| 467 | std::tuple<ResponseList, NumInstances> |
| 468 | readAll(const std::string& type, uint8_t instanceStart, const Json& config); |
Deepak Kodihalli | 0b45955 | 2018-02-06 06:25:12 -0600 | [diff] [blame] | 469 | } // namespace sensor_info |
| 470 | |
Marri Devender Rao | 66c5fda | 2018-01-18 10:48:37 -0600 | [diff] [blame] | 471 | /** @brief Read power reading from power reading sensor object |
| 472 | * |
| 473 | * @param[in] bus - dbus connection |
| 474 | * |
| 475 | * @return total power reading |
| 476 | */ |
| 477 | int64_t getPowerReading(sdbusplus::bus::bus& bus); |
| 478 | |
| 479 | /** @struct GetPowerReadingRequest |
| 480 | * |
| 481 | * DCMI Get Power Reading command request. |
| 482 | * Refer DCMI specification Version 1.1 Section 6.6.1 |
| 483 | */ |
| 484 | struct GetPowerReadingRequest |
| 485 | { |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 486 | uint8_t mode; //!< Mode |
| 487 | uint8_t modeAttribute; //!< Mode Attributes |
Marri Devender Rao | 66c5fda | 2018-01-18 10:48:37 -0600 | [diff] [blame] | 488 | } __attribute__((packed)); |
| 489 | |
| 490 | /** @struct GetPowerReadingResponse |
| 491 | * |
| 492 | * DCMI Get Power Reading command response. |
| 493 | * Refer DCMI specification Version 1.1 Section 6.6.1 |
| 494 | */ |
| 495 | struct GetPowerReadingResponse |
| 496 | { |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 497 | uint16_t currentPower; //!< Current power in watts |
| 498 | uint16_t minimumPower; //!< Minimum power over sampling duration |
| 499 | //!< in watts |
| 500 | uint16_t maximumPower; //!< Maximum power over sampling duration |
| 501 | //!< in watts |
| 502 | uint16_t averagePower; //!< Average power over sampling duration |
| 503 | //!< in watts |
| 504 | uint32_t timeStamp; //!< IPMI specification based time stamp |
| 505 | uint32_t timeFrame; //!< Statistics reporting time period in milli |
| 506 | //!< seconds. |
| 507 | uint8_t powerReadingState; //!< Power Reading State |
Marri Devender Rao | 66c5fda | 2018-01-18 10:48:37 -0600 | [diff] [blame] | 508 | } __attribute__((packed)); |
| 509 | |
Deepak Kodihalli | 0b45955 | 2018-02-06 06:25:12 -0600 | [diff] [blame] | 510 | /** @struct GetSensorInfoRequest |
| 511 | * |
| 512 | * DCMI payload for Get Sensor Info request |
| 513 | */ |
| 514 | struct GetSensorInfoRequest |
| 515 | { |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 516 | uint8_t sensorType; //!< Type of the sensor |
| 517 | uint8_t entityId; //!< Entity ID |
| 518 | uint8_t entityInstance; //!< Entity Instance (0 means all instances) |
| 519 | uint8_t instanceStart; //!< Instance start (used if instance is 0) |
Deepak Kodihalli | 0b45955 | 2018-02-06 06:25:12 -0600 | [diff] [blame] | 520 | } __attribute__((packed)); |
| 521 | |
| 522 | /** @struct GetSensorInfoResponseHdr |
| 523 | * |
| 524 | * DCMI header for Get Sensor Info response |
| 525 | */ |
| 526 | struct GetSensorInfoResponseHdr |
| 527 | { |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 528 | uint8_t numInstances; //!< No. of instances for requested id |
| 529 | uint8_t numRecords; //!< No. of record ids in the response |
Deepak Kodihalli | 0b45955 | 2018-02-06 06:25:12 -0600 | [diff] [blame] | 530 | } __attribute__((packed)); |
Nagaraju Goruganti | 22be97b | 2018-02-07 01:19:59 -0600 | [diff] [blame] | 531 | /** |
| 532 | * @brief Parameters for DCMI Configuration Parameters |
| 533 | */ |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 534 | enum class DCMIConfigParameters : uint8_t |
Nagaraju Goruganti | 22be97b | 2018-02-07 01:19:59 -0600 | [diff] [blame] | 535 | { |
| 536 | ActivateDHCP = 1, |
| 537 | DiscoveryConfig, |
| 538 | DHCPTiming1, |
| 539 | DHCPTiming2, |
| 540 | DHCPTiming3, |
| 541 | }; |
| 542 | |
| 543 | /** @struct SetConfParamsRequest |
| 544 | * |
| 545 | * DCMI Set DCMI Configuration Parameters Command. |
| 546 | * Refer DCMI specification Version 1.1 Section 6.1.2 |
| 547 | */ |
| 548 | struct SetConfParamsRequest |
| 549 | { |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 550 | uint8_t paramSelect; //!< Parameter selector. |
| 551 | uint8_t setSelect; //!< Set Selector (use 00h for parameters that only |
| 552 | //!< have one set). |
| 553 | uint8_t data[]; //!< Configuration parameter data. |
Nagaraju Goruganti | 22be97b | 2018-02-07 01:19:59 -0600 | [diff] [blame] | 554 | } __attribute__((packed)); |
| 555 | |
Nagaraju Goruganti | 22be97b | 2018-02-07 01:19:59 -0600 | [diff] [blame] | 556 | /** @struct GetConfParamsRequest |
| 557 | * |
| 558 | * DCMI Get DCMI Configuration Parameters Command. |
| 559 | * Refer DCMI specification Version 1.1 Section 6.1.3 |
| 560 | */ |
| 561 | struct GetConfParamsRequest |
| 562 | { |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 563 | uint8_t paramSelect; //!< Parameter selector. |
| 564 | uint8_t setSelect; //!< Set Selector. Selects a given set of parameters |
| 565 | //!< under a given Parameter selector value. 00h if |
| 566 | //!< parameter doesn't use a Set Selector. |
Nagaraju Goruganti | 22be97b | 2018-02-07 01:19:59 -0600 | [diff] [blame] | 567 | } __attribute__((packed)); |
| 568 | |
| 569 | /** @struct GetConfParamsResponse |
| 570 | * |
| 571 | * DCMI Get DCMI Configuration Parameters Command response. |
| 572 | * Refer DCMI specification Version 1.1 Section 6.1.3 |
| 573 | */ |
| 574 | struct GetConfParamsResponse |
| 575 | { |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 576 | uint8_t major; //!< DCMI Spec Conformance - major ver = 01h. |
| 577 | uint8_t minor; //!< DCMI Spec Conformance - minor ver = 05h. |
| 578 | uint8_t paramRevision; //!< Parameter Revision = 01h. |
| 579 | uint8_t data[]; //!< Parameter data. |
Nagaraju Goruganti | 22be97b | 2018-02-07 01:19:59 -0600 | [diff] [blame] | 580 | |
| 581 | } __attribute__((packed)); |
Deepak Kodihalli | 0b45955 | 2018-02-06 06:25:12 -0600 | [diff] [blame] | 582 | |
Tom Joseph | be5eaa1 | 2017-07-12 19:54:44 +0530 | [diff] [blame] | 583 | } // namespace dcmi |