| #pragma once |
| |
| #include <attn/attn_config.hpp> |
| |
| namespace attn |
| { |
| |
| /** @brief Attention handler return codes */ |
| enum ReturnCodes |
| { |
| RC_SUCCESS = 0, |
| RC_NOT_HANDLED = 1, |
| RC_ANALYZER_ERROR = 2, |
| RC_CFAM_ERROR = 3, |
| RC_DBUS_ERROR = 4 |
| }; |
| |
| /** @brief Code seciton for error reporing */ |
| enum class AttnSection |
| { |
| reserved = 0x0000, |
| attnHandler = 0x0100, |
| tiHandler = 0x0200, |
| handlePhypTi = 0x0300, |
| handleHbTi = 0x0400 |
| }; |
| |
| /** @brief Attention handler error reason codes */ |
| enum AttnCodes |
| { |
| ATTN_NO_ERROR = 0, |
| ATTN_INFO_NULL = 1, |
| ATTN_PDBG_CFAM = 2 |
| }; |
| |
| /** @brief Attention global status bits */ |
| constexpr uint32_t SBE_ATTN = 0x00000002; |
| constexpr uint32_t CHECKSTOP_ATTN = 0x40000000; |
| constexpr uint32_t SPECIAL_ATTN = 0x20000000; |
| |
| // Need to add defaultOpalTiInfo with SRC BB821410 (ascii) |
| |
| constexpr uint8_t defaultPhypTiInfo[0x58] = { |
| 0x01, 0xa1, 0x02, 0xa8, 0x00, 0x00, 0x00, 0x01, 0x02, 0x00, 0x00, |
| 0x09, 0x00, 0x00, 0x00, 0x48, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
| 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
| 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
| 0x00, 0x00, 0x00, 0x00, 0x42, 0x37, 0x30, 0x30, 0x46, 0x46, 0x46, |
| 0x46, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, |
| 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, |
| 0x20, 0x20, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}; |
| |
| constexpr uint8_t defaultHbTiInfo[0x58] = { |
| 0x01, 0xa1, 0x02, 0xa8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
| 0x09, 0x01, 0x00, 0x00, 0x00, 0xbc, 0x80, 0x1b, 0x99, 0x00, 0x00, |
| 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
| 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
| 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
| 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
| 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
| 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}; |
| |
| /** |
| * @brief The main attention handler logic |
| * |
| * Check each processor for active attentions of type SBE Vital (vital), |
| * System Checkstop (checkstop) and Special Attention (special) and handle |
| * each as follows: |
| * |
| * checkstop: Call hardware error analyzer |
| * vital: TBD |
| * special: Determine if the special attention is a Breakpoint (BP), |
| * Terminate Immediately (TI) or CoreCodeToSp (corecode). For each |
| * special attention type, do the following: |
| * |
| * BP: Notify Cronus |
| * TI: Start host diagnostics mode systemd unit |
| * Corecode: TBD |
| * |
| * @param i_config pointer to attention handler configuration object |
| */ |
| void attnHandler(Config* i_config); |
| |
| } // namespace attn |