Matt Spinler | d3335df | 2019-07-10 11:04:21 -0500 | [diff] [blame] | 1 | #pragma once |
| 2 | |
| 3 | #include "bcd_time.hpp" |
| 4 | #include "section.hpp" |
| 5 | #include "stream.hpp" |
| 6 | |
| 7 | namespace openpower |
| 8 | { |
| 9 | namespace pels |
| 10 | { |
| 11 | |
| 12 | struct CreatorVersion |
| 13 | { |
| 14 | uint8_t version[8]; |
Matt Spinler | 289aa47 | 2019-09-20 12:33:29 -0500 | [diff] [blame] | 15 | |
| 16 | CreatorVersion() |
| 17 | { |
| 18 | memset(version, '\0', sizeof(version)); |
| 19 | } |
Matt Spinler | d3335df | 2019-07-10 11:04:21 -0500 | [diff] [blame] | 20 | }; |
| 21 | |
Matt Spinler | 1a94cc3 | 2019-09-11 13:32:12 -0500 | [diff] [blame] | 22 | static constexpr uint8_t privateHeaderVersion = 0x01; |
Matt Spinler | d3335df | 2019-07-10 11:04:21 -0500 | [diff] [blame] | 23 | static constexpr uint8_t minSectionCount = 2; |
| 24 | |
| 25 | /** |
| 26 | * @class PrivateHeader |
| 27 | * |
| 28 | * This represents the Private Header section in a PEL. It is required, |
| 29 | * and it is always the first section. |
| 30 | * |
| 31 | * The Section base class handles the section header structure that every |
| 32 | * PEL section has at offset zero. |
| 33 | * |
| 34 | * The fields in this class directly correspond to the order and sizes of |
| 35 | * the fields in the section. |
| 36 | */ |
| 37 | class PrivateHeader : public Section |
| 38 | { |
| 39 | public: |
| 40 | PrivateHeader() = delete; |
| 41 | ~PrivateHeader() = default; |
| 42 | PrivateHeader(const PrivateHeader&) = default; |
| 43 | PrivateHeader& operator=(const PrivateHeader&) = default; |
| 44 | PrivateHeader(PrivateHeader&&) = default; |
| 45 | PrivateHeader& operator=(PrivateHeader&&) = default; |
| 46 | |
| 47 | /** |
| 48 | * @brief Constructor |
| 49 | * |
Matt Spinler | 289aa47 | 2019-09-20 12:33:29 -0500 | [diff] [blame] | 50 | * Creates a valid PrivateHeader with the passed in data |
| 51 | * |
| 52 | * @param[in] componentID - the creator's component ID |
| 53 | * @param[in] obmcLogID - the corresponding OpenBMC event log ID |
| 54 | * @param[in] timestamp - the creation timestamp, in epoch milliseconds |
| 55 | */ |
| 56 | PrivateHeader(uint16_t componentID, uint32_t obmcLogID, uint64_t timestamp); |
| 57 | |
| 58 | /** |
| 59 | * @brief Constructor |
| 60 | * |
Matt Spinler | d3335df | 2019-07-10 11:04:21 -0500 | [diff] [blame] | 61 | * Fills in this class's data fields from the stream. |
| 62 | * |
| 63 | * @param[in] pel - the PEL data stream |
| 64 | * |
| 65 | */ |
| 66 | explicit PrivateHeader(Stream& pel); |
| 67 | |
| 68 | /** |
Matt Spinler | cf5a8d0 | 2019-09-05 12:58:53 -0500 | [diff] [blame] | 69 | * @brief Flatten the section into the stream |
| 70 | * |
| 71 | * @param[in] stream - The stream to write to |
| 72 | */ |
Matt Spinler | 0688545 | 2019-11-06 10:35:42 -0600 | [diff] [blame] | 73 | void flatten(Stream& stream) const override; |
Matt Spinler | cf5a8d0 | 2019-09-05 12:58:53 -0500 | [diff] [blame] | 74 | |
| 75 | /** |
Matt Spinler | d3335df | 2019-07-10 11:04:21 -0500 | [diff] [blame] | 76 | * @brief Returns the creation timestamp |
| 77 | * |
Matt Spinler | 97d19b4 | 2019-10-29 11:34:03 -0500 | [diff] [blame] | 78 | * @return const BCDTime& - the timestamp |
Matt Spinler | d3335df | 2019-07-10 11:04:21 -0500 | [diff] [blame] | 79 | */ |
Matt Spinler | 97d19b4 | 2019-10-29 11:34:03 -0500 | [diff] [blame] | 80 | const BCDTime& createTimestamp() const |
Matt Spinler | d3335df | 2019-07-10 11:04:21 -0500 | [diff] [blame] | 81 | { |
| 82 | return _createTimestamp; |
| 83 | } |
| 84 | |
| 85 | /** |
| 86 | * @brief Returns the commit time timestamp |
| 87 | * |
Matt Spinler | 97d19b4 | 2019-10-29 11:34:03 -0500 | [diff] [blame] | 88 | * @return const BCDTime& - the timestamp |
Matt Spinler | d3335df | 2019-07-10 11:04:21 -0500 | [diff] [blame] | 89 | */ |
Matt Spinler | 97d19b4 | 2019-10-29 11:34:03 -0500 | [diff] [blame] | 90 | const BCDTime& commitTimestamp() const |
Matt Spinler | d3335df | 2019-07-10 11:04:21 -0500 | [diff] [blame] | 91 | { |
| 92 | return _commitTimestamp; |
| 93 | } |
| 94 | |
| 95 | /** |
Matt Spinler | 97d19b4 | 2019-10-29 11:34:03 -0500 | [diff] [blame] | 96 | * @brief Sets the commit timestamp |
| 97 | * |
| 98 | * @param[in] time - the new timestamp |
| 99 | */ |
| 100 | void setCommitTimestamp(const BCDTime& time) |
| 101 | { |
| 102 | _commitTimestamp = time; |
| 103 | } |
| 104 | |
| 105 | /** |
Matt Spinler | d3335df | 2019-07-10 11:04:21 -0500 | [diff] [blame] | 106 | * @brief Returns the creator ID field |
| 107 | * |
Matt Spinler | 97d19b4 | 2019-10-29 11:34:03 -0500 | [diff] [blame] | 108 | * @return uint8_t - the creator ID |
Matt Spinler | d3335df | 2019-07-10 11:04:21 -0500 | [diff] [blame] | 109 | */ |
Matt Spinler | 97d19b4 | 2019-10-29 11:34:03 -0500 | [diff] [blame] | 110 | uint8_t creatorID() const |
Matt Spinler | d3335df | 2019-07-10 11:04:21 -0500 | [diff] [blame] | 111 | { |
| 112 | return _creatorID; |
| 113 | } |
| 114 | |
| 115 | /** |
| 116 | * @brief Returns the log type field |
| 117 | * |
Matt Spinler | 97d19b4 | 2019-10-29 11:34:03 -0500 | [diff] [blame] | 118 | * @return uint8_t - the log type |
Matt Spinler | d3335df | 2019-07-10 11:04:21 -0500 | [diff] [blame] | 119 | */ |
Matt Spinler | 97d19b4 | 2019-10-29 11:34:03 -0500 | [diff] [blame] | 120 | uint8_t logType() const |
Matt Spinler | d3335df | 2019-07-10 11:04:21 -0500 | [diff] [blame] | 121 | { |
| 122 | return _logType; |
| 123 | } |
| 124 | |
| 125 | /** |
| 126 | * @brief Returns the section count field |
| 127 | * |
Matt Spinler | 97d19b4 | 2019-10-29 11:34:03 -0500 | [diff] [blame] | 128 | * @return uint8_t - the section count |
Matt Spinler | d3335df | 2019-07-10 11:04:21 -0500 | [diff] [blame] | 129 | */ |
Matt Spinler | 97d19b4 | 2019-10-29 11:34:03 -0500 | [diff] [blame] | 130 | uint8_t sectionCount() const |
Matt Spinler | d3335df | 2019-07-10 11:04:21 -0500 | [diff] [blame] | 131 | { |
| 132 | return _sectionCount; |
| 133 | } |
| 134 | |
| 135 | /** |
Matt Spinler | 97d19b4 | 2019-10-29 11:34:03 -0500 | [diff] [blame] | 136 | * @brief Sets the section count field |
| 137 | * |
| 138 | * @param[in] count - the new section count |
| 139 | */ |
| 140 | void setSectionCount(uint8_t count) |
| 141 | { |
| 142 | _sectionCount = count; |
| 143 | } |
| 144 | |
| 145 | /** |
Matt Spinler | d3335df | 2019-07-10 11:04:21 -0500 | [diff] [blame] | 146 | * @brief Returns the OpenBMC log ID field |
| 147 | * |
| 148 | * This is the ID the OpenBMC event log that corresponds |
| 149 | * to this PEL. |
| 150 | * |
Matt Spinler | 97d19b4 | 2019-10-29 11:34:03 -0500 | [diff] [blame] | 151 | * @return uint32_t - the OpenBMC event log ID |
Matt Spinler | d3335df | 2019-07-10 11:04:21 -0500 | [diff] [blame] | 152 | */ |
Matt Spinler | 97d19b4 | 2019-10-29 11:34:03 -0500 | [diff] [blame] | 153 | uint32_t obmcLogID() const |
Matt Spinler | d3335df | 2019-07-10 11:04:21 -0500 | [diff] [blame] | 154 | { |
| 155 | return _obmcLogID; |
| 156 | } |
| 157 | |
| 158 | /** |
Matt Spinler | 97d19b4 | 2019-10-29 11:34:03 -0500 | [diff] [blame] | 159 | * @brief Sets the OpenBMC log ID field |
| 160 | * |
| 161 | * @param[in] id - the new ID |
| 162 | */ |
| 163 | void setOBMCLogID(uint32_t id) |
| 164 | { |
| 165 | _obmcLogID = id; |
| 166 | } |
| 167 | |
| 168 | /** |
Matt Spinler | d3335df | 2019-07-10 11:04:21 -0500 | [diff] [blame] | 169 | * @brief Returns the Creator Version field |
| 170 | * |
| 171 | * @return CreatorVersion& - the creator version |
| 172 | */ |
Matt Spinler | 0688545 | 2019-11-06 10:35:42 -0600 | [diff] [blame] | 173 | const CreatorVersion& creatorVersion() const |
Matt Spinler | d3335df | 2019-07-10 11:04:21 -0500 | [diff] [blame] | 174 | { |
| 175 | return _creatorVersion; |
| 176 | } |
| 177 | |
| 178 | /** |
| 179 | * @brief Returns the error log ID field |
| 180 | * |
Matt Spinler | 97d19b4 | 2019-10-29 11:34:03 -0500 | [diff] [blame] | 181 | * @return uint32_t - the error log ID |
Matt Spinler | d3335df | 2019-07-10 11:04:21 -0500 | [diff] [blame] | 182 | */ |
Matt Spinler | 97d19b4 | 2019-10-29 11:34:03 -0500 | [diff] [blame] | 183 | uint32_t id() const |
Matt Spinler | d3335df | 2019-07-10 11:04:21 -0500 | [diff] [blame] | 184 | { |
| 185 | return _id; |
| 186 | } |
| 187 | |
| 188 | /** |
Matt Spinler | 97d19b4 | 2019-10-29 11:34:03 -0500 | [diff] [blame] | 189 | * @brief Sets the ID field |
| 190 | * |
| 191 | * @param[in] id - the new ID |
| 192 | */ |
| 193 | void setID(uint32_t id) |
| 194 | { |
| 195 | _id = id; |
| 196 | } |
| 197 | |
| 198 | /** |
Matt Spinler | d3335df | 2019-07-10 11:04:21 -0500 | [diff] [blame] | 199 | * @brief Returns the platform log ID field |
| 200 | * |
Matt Spinler | 97d19b4 | 2019-10-29 11:34:03 -0500 | [diff] [blame] | 201 | * @return uint32_t - the platform log ID |
Matt Spinler | d3335df | 2019-07-10 11:04:21 -0500 | [diff] [blame] | 202 | */ |
Matt Spinler | 97d19b4 | 2019-10-29 11:34:03 -0500 | [diff] [blame] | 203 | uint32_t plid() const |
Matt Spinler | d3335df | 2019-07-10 11:04:21 -0500 | [diff] [blame] | 204 | { |
| 205 | return _plid; |
| 206 | } |
| 207 | |
| 208 | /** |
| 209 | * @brief Returns the size of this section when flattened into a PEL |
| 210 | * |
| 211 | * @return size_t - the size of the section |
| 212 | */ |
| 213 | static constexpr size_t flattenedSize() |
| 214 | { |
| 215 | return Section::flattenedSize() + sizeof(_createTimestamp) + |
| 216 | sizeof(_commitTimestamp) + sizeof(_creatorID) + |
| 217 | sizeof(_logType) + sizeof(_reservedByte) + |
| 218 | sizeof(_sectionCount) + sizeof(_obmcLogID) + |
| 219 | sizeof(_creatorVersion) + sizeof(_plid) + sizeof(_id); |
| 220 | } |
| 221 | |
Matt Spinler | d3335df | 2019-07-10 11:04:21 -0500 | [diff] [blame] | 222 | private: |
| 223 | /** |
Matt Spinler | cf5a8d0 | 2019-09-05 12:58:53 -0500 | [diff] [blame] | 224 | * @brief Fills in the object from the stream data |
| 225 | * |
| 226 | * @param[in] stream - The stream to read from |
| 227 | */ |
| 228 | void unflatten(Stream& stream); |
| 229 | |
| 230 | /** |
Matt Spinler | d3335df | 2019-07-10 11:04:21 -0500 | [diff] [blame] | 231 | * @brief Validates the section contents |
| 232 | * |
| 233 | * Updates _valid (in Section) with the results. |
| 234 | */ |
| 235 | void validate() override; |
| 236 | |
| 237 | /** |
| 238 | * @brief The creation time timestamp |
| 239 | */ |
| 240 | BCDTime _createTimestamp; |
| 241 | |
| 242 | /** |
| 243 | * @brief The commit time timestamp |
| 244 | */ |
| 245 | BCDTime _commitTimestamp; |
| 246 | |
| 247 | /** |
| 248 | * @brief The creator ID field |
| 249 | */ |
| 250 | uint8_t _creatorID; |
| 251 | |
| 252 | /** |
| 253 | * @brief The log type field |
| 254 | */ |
| 255 | uint8_t _logType; |
| 256 | |
| 257 | /** |
| 258 | * @brief A reserved byte. |
| 259 | */ |
| 260 | uint8_t _reservedByte; |
| 261 | |
| 262 | /** |
| 263 | * @brief The section count field, which is the total number |
| 264 | * of sections in the PEL. |
| 265 | */ |
| 266 | uint8_t _sectionCount; |
| 267 | |
| 268 | /** |
| 269 | * @brief The OpenBMC event log ID that corresponds to this PEL. |
| 270 | */ |
| 271 | uint32_t _obmcLogID; |
| 272 | |
| 273 | /** |
| 274 | * @brief The creator subsystem version field |
| 275 | */ |
| 276 | CreatorVersion _creatorVersion; |
| 277 | |
| 278 | /** |
| 279 | * @brief The platform log ID field |
| 280 | */ |
| 281 | uint32_t _plid; |
| 282 | |
| 283 | /** |
| 284 | * @brief The log entry ID field |
| 285 | */ |
| 286 | uint32_t _id; |
| 287 | }; |
| 288 | |
| 289 | /** |
Matt Spinler | d3335df | 2019-07-10 11:04:21 -0500 | [diff] [blame] | 290 | * @brief Stream extraction operator for the CreatorVersion |
| 291 | * |
| 292 | * @param[in] s - the stream |
| 293 | * @param[out] cv - the CreatorVersion object |
| 294 | */ |
| 295 | Stream& operator>>(Stream& s, CreatorVersion& cv); |
| 296 | |
| 297 | /** |
| 298 | * @brief Stream insertion operator for the CreatorVersion |
| 299 | * |
| 300 | * @param[out] s - the stream |
| 301 | * @param[in] cv - the CreatorVersion object |
| 302 | */ |
Matt Spinler | 0688545 | 2019-11-06 10:35:42 -0600 | [diff] [blame] | 303 | Stream& operator<<(Stream& s, const CreatorVersion& cv); |
Matt Spinler | d3335df | 2019-07-10 11:04:21 -0500 | [diff] [blame] | 304 | |
| 305 | } // namespace pels |
| 306 | } // namespace openpower |