blob: 95154de22b6d1a6250720b09725652e9678d98fc [file] [log] [blame]
Brandon Kimfcbc3db2022-06-06 21:26:18 -07001#pragma once
2
3#include "pci_handler.hpp"
4
Brandon Kim17ee1a92022-06-07 21:04:08 -07005#include <boost/endian/arithmetic.hpp>
6
Brandon Kimfcbc3db2022-06-06 21:26:18 -07007#include <array>
8#include <cstdint>
9#include <memory>
Brandon Kim17ee1a92022-06-07 21:04:08 -070010#include <tuple>
Brandon Kimfcbc3db2022-06-06 21:26:18 -070011
12namespace bios_bmc_smm_error_logger
13{
14
Brandon Kim17ee1a92022-06-07 21:04:08 -070015/* Adding endianness */
16using boost::endian::little_uint16_t;
Brandon Kim271d2312022-09-02 16:34:55 +000017using boost::endian::little_uint24_t;
Brandon Kim17ee1a92022-06-07 21:04:08 -070018using boost::endian::little_uint32_t;
19using boost::endian::little_uint64_t;
20
Brandon Kim40ce08e2022-06-15 16:58:44 -070021// EntryPair.first = QueueEntryHeader
22// EntryPair.second = Error entry in vector of bytes
23using EntryPair = std::pair<struct QueueEntryHeader, std::vector<uint8_t>>;
24
Brandon Kimaec99862025-06-08 22:41:40 +000025enum class BufferFlags : uint32_t
26{
27 ueSwitch = 1 << 0,
28 overflow = 1 << 1,
29};
30
Brandon Kimc49284b2022-06-17 09:55:26 -070031enum class BmcFlags : uint32_t
32{
Brandon Kimc49284b2022-06-17 09:55:26 -070033 ready = 1 << 2,
34};
35
Brandon Kimfcbc3db2022-06-06 21:26:18 -070036struct CircularBufferHeader
37{
Brandon Kim17ee1a92022-06-07 21:04:08 -070038 little_uint32_t bmcInterfaceVersion; // Offset 0x0
39 little_uint32_t biosInterfaceVersion; // Offset 0x4
40 std::array<little_uint32_t, 4> magicNumber; // Offset 0x8
Brandon Kim271d2312022-09-02 16:34:55 +000041 little_uint24_t queueSize; // Offset 0x18
42 little_uint16_t ueRegionSize; // Offset 0x1b
43 little_uint32_t bmcFlags; // Offset 0x1d
44 little_uint24_t bmcReadPtr; // Offset 0x21
45 std::array<uint8_t, 4> reserved1; // Offset 0x24
Brandon Kim17ee1a92022-06-07 21:04:08 -070046 little_uint32_t biosFlags; // Offset 0x28
Brandon Kim271d2312022-09-02 16:34:55 +000047 little_uint24_t biosWritePtr; // Offset 0x2c
48 uint8_t reserved2; // Offset 0x2f
Brandon Kim17ee1a92022-06-07 21:04:08 -070049 // UE reserved region: Offset 0x30
50 // Error log queue: Offset 0x30 + UE reserved region
Brandon Kimfcbc3db2022-06-06 21:26:18 -070051
52 bool operator==(const CircularBufferHeader& other) const
53 {
Brandon Kim17ee1a92022-06-07 21:04:08 -070054 /* Skip comparing reserved1 and reserved2 */
55 return std::tie(this->bmcInterfaceVersion, this->biosInterfaceVersion,
56 this->magicNumber, this->queueSize, this->ueRegionSize,
57 this->bmcFlags, this->bmcReadPtr, this->biosFlags,
58 this->biosWritePtr) ==
59 std::tie(other.bmcInterfaceVersion, other.biosInterfaceVersion,
60 other.magicNumber, other.queueSize, other.ueRegionSize,
61 other.bmcFlags, other.bmcReadPtr, other.biosFlags,
62 other.biosWritePtr);
Brandon Kimfcbc3db2022-06-06 21:26:18 -070063 }
Brandon Kim17ee1a92022-06-07 21:04:08 -070064};
65static_assert(sizeof(CircularBufferHeader) == 0x30,
66 "Size of CircularBufferHeader struct is incorrect.");
Brandon Kimfcbc3db2022-06-06 21:26:18 -070067
Brandon Kim7bac2d62022-06-07 21:37:51 -070068struct QueueEntryHeader
69{
70 little_uint16_t sequenceId; // Offset 0x0
71 little_uint16_t entrySize; // Offset 0x2
72 uint8_t checksum; // Offset 0x4
73 uint8_t rdeCommandType; // Offset 0x5
74 // RDE Command Offset 0x6
75 bool operator==(const QueueEntryHeader& other) const
76 {
77 return std::tie(this->sequenceId, this->entrySize, this->checksum,
78 this->rdeCommandType) ==
79 std::tie(other.sequenceId, other.entrySize, other.checksum,
80 other.rdeCommandType);
81 }
82};
83static_assert(sizeof(QueueEntryHeader) == 0x6,
84 "Size of QueueEntryHeader struct is incorrect.");
85
Brandon Kimfcbc3db2022-06-06 21:26:18 -070086/**
87 * An interface class for the buffer helper APIs
88 */
89class BufferInterface
90{
91 public:
92 virtual ~BufferInterface() = default;
93
94 /**
95 * Zero out the buffer first before populating the header
96 *
97 * @param[in] bmcInterfaceVersion - Used to initialize the header
98 * @param[in] queueSize - Used to initialize the header
99 * @param[in] ueRegionSize - Used to initialize the header
100 * @param[in] magicNumber - Used to initialize the header
101 * @return true if successful
102 */
103 virtual void initialize(uint32_t bmcInterfaceVersion, uint16_t queueSize,
104 uint16_t ueRegionSize,
105 const std::array<uint32_t, 4>& magicNumber) = 0;
Brandon Kimaec99862025-06-08 22:41:40 +0000106 /**
107 * Check for unread Uncorrecatble Error (UE) logs and read them if present
108 */
109 virtual std::vector<uint8_t> readUeLogFromReservedRegion() = 0;
Brandon Kim17ee1a92022-06-07 21:04:08 -0700110
111 /**
Brandon Kimd49db6f2025-06-09 00:03:59 +0000112 * Check for overflow and ackknolwedge if not acked yet
113 */
114 virtual bool checkForOverflowAndAcknowledge() = 0;
115
116 /**
Brandon Kim17ee1a92022-06-07 21:04:08 -0700117 * Read the buffer header from shared buffer
118 */
119 virtual void readBufferHeader() = 0;
120
121 /**
122 * Getter API for the cached buffer header
123 * @return cached CircularBufferHeader
124 */
125 virtual struct CircularBufferHeader getCachedBufferHeader() const = 0;
Brandon Kimcf0b9752022-06-15 10:32:21 -0700126
127 /**
128 * Write to the bufferHeader and update the read pointer
Brandon Kim35d43352022-06-16 11:13:36 -0700129 * @param[in] newReadPtr - read pointer to update to
Brandon Kimcf0b9752022-06-15 10:32:21 -0700130 */
131 virtual void updateReadPtr(const uint32_t newReadPtr) = 0;
Brandon Kim9836cfa2022-06-15 11:21:11 -0700132
133 /**
Brandon Kimc49284b2022-06-17 09:55:26 -0700134 * Write to the bufferHeader and update the BMC flags
135 * @param[in] newBmcFlags - new flag to update to
136 */
137 virtual void updateBmcFlags(const uint32_t newBmcFlags) = 0;
138
139 /**
Brandon Kim9836cfa2022-06-15 11:21:11 -0700140 * Wrapper for the dataInterface->read, performs wraparound read
141 *
Brandon Kim35d43352022-06-16 11:13:36 -0700142 * @param[in] relativeOffset - offset relative the "Error Log
143 * Queue region" = (sizeof(CircularBufferHeader) + UE reserved region)
Brandon Kim9836cfa2022-06-15 11:21:11 -0700144 * @param[in] length - bytes to read
Brandon Kim9836cfa2022-06-15 11:21:11 -0700145 * @return the bytes read
146 */
Brandon Kim35d43352022-06-16 11:13:36 -0700147 virtual std::vector<uint8_t> wraparoundRead(const uint32_t relativeOffset,
148 const uint32_t length) = 0;
Brandon Kim7bac2d62022-06-07 21:37:51 -0700149 /**
Brandon Kim613ba532022-09-12 20:55:21 +0000150 * Read the entry header from shared buffer from the read pointer
Brandon Kim7bac2d62022-06-07 21:37:51 -0700151 *
Brandon Kim7bac2d62022-06-07 21:37:51 -0700152 * @return the entry header
153 */
Brandon Kim613ba532022-09-12 20:55:21 +0000154 virtual struct QueueEntryHeader readEntryHeader() = 0;
Brandon Kim40ce08e2022-06-15 16:58:44 -0700155
156 /**
Brandon Kim613ba532022-09-12 20:55:21 +0000157 * Read the queue entry from the error log queue from the read pointer
Brandon Kim40ce08e2022-06-15 16:58:44 -0700158 *
Brandon Kim35d43352022-06-16 11:13:36 -0700159 * * @return entry header and entry pair read from buffer
Brandon Kim40ce08e2022-06-15 16:58:44 -0700160 */
Brandon Kim613ba532022-09-12 20:55:21 +0000161 virtual EntryPair readEntry() = 0;
Brandon Kim4662b1b2022-06-16 21:38:02 -0700162
163 /**
164 * Read the buffer - this API should be used instead of individual functions
165 * above
166 *
167 * @return vector of EntryPair which consists of entry header and entry
168 */
169 virtual std::vector<EntryPair> readErrorLogs() = 0;
Brandon Kim3def3c82022-09-13 05:29:20 +0000170
171 /**
172 * Get max offset for the queue
173 *
174 * * @return Queue size - UE region size - Queue header size
175 */
176 virtual size_t getMaxOffset() = 0;
Brandon Kim82ab8322023-08-17 00:50:18 +0000177
178 /** @brief The Error log queue starts after the UE region, which is where
179 * the read and write pointers are offset from relatively
180 * @return relative offset for read and write pointers
181 */
182 virtual size_t getQueueOffset() = 0;
Brandon Kimfcbc3db2022-06-06 21:26:18 -0700183};
184
185/**
186 * Buffer implementation class
187 */
188class BufferImpl : public BufferInterface
189{
190 public:
191 /** @brief Constructor for BufferImpl
192 * @param[in] dataInterface - DataInterface for this object
193 */
194 explicit BufferImpl(std::unique_ptr<DataInterface> dataInterface);
195 void initialize(uint32_t bmcInterfaceVersion, uint16_t queueSize,
196 uint16_t ueRegionSize,
197 const std::array<uint32_t, 4>& magicNumber) override;
Brandon Kimaec99862025-06-08 22:41:40 +0000198 std::vector<uint8_t> readUeLogFromReservedRegion() override;
Brandon Kimd49db6f2025-06-09 00:03:59 +0000199 bool checkForOverflowAndAcknowledge() override;
Brandon Kim17ee1a92022-06-07 21:04:08 -0700200 void readBufferHeader() override;
201 struct CircularBufferHeader getCachedBufferHeader() const override;
Brandon Kimcf0b9752022-06-15 10:32:21 -0700202 void updateReadPtr(const uint32_t newReadPtr) override;
Brandon Kimc49284b2022-06-17 09:55:26 -0700203 void updateBmcFlags(const uint32_t newBmcFlag) override;
Brandon Kim35d43352022-06-16 11:13:36 -0700204 std::vector<uint8_t> wraparoundRead(const uint32_t relativeOffset,
205 const uint32_t length) override;
Brandon Kim613ba532022-09-12 20:55:21 +0000206 struct QueueEntryHeader readEntryHeader() override;
207 EntryPair readEntry() override;
Brandon Kim4662b1b2022-06-16 21:38:02 -0700208 std::vector<EntryPair> readErrorLogs() override;
Brandon Kim3def3c82022-09-13 05:29:20 +0000209 size_t getMaxOffset() override;
Brandon Kim82ab8322023-08-17 00:50:18 +0000210 size_t getQueueOffset() override;
Brandon Kimfcbc3db2022-06-06 21:26:18 -0700211
212 private:
Brandon Kimf0e4adc2022-06-16 23:14:25 -0700213 /** @brief Calculate the checksum by XOR each bytes in the span
214 * @param[in] entry - Span to calculate the checksum on
215 * @return calculated checksum
216 */
217 uint8_t calculateChecksum(std::span<uint8_t> entry);
Brandon Kim9836cfa2022-06-15 11:21:11 -0700218
Brandon Kimfcbc3db2022-06-06 21:26:18 -0700219 std::unique_ptr<DataInterface> dataInterface;
Brandon Kim17ee1a92022-06-07 21:04:08 -0700220 struct CircularBufferHeader cachedBufferHeader = {};
Brandon Kimfcbc3db2022-06-06 21:26:18 -0700221};
222
223} // namespace bios_bmc_smm_error_logger