Ben Tyner | 0205f3b | 2020-02-24 10:24:47 -0600 | [diff] [blame] | 1 | #pragma once |
| 2 | |
Ben Tyner | 7029e52 | 2021-08-09 19:18:24 -0500 | [diff] [blame] | 3 | #include <attn/attn_dump.hpp> |
| 4 | |
Ben Tyner | 0205f3b | 2020-02-24 10:24:47 -0600 | [diff] [blame] | 5 | namespace analyzer |
| 6 | { |
| 7 | |
Zane Shelley | ebff0d3 | 2021-11-21 10:52:07 -0600 | [diff] [blame] | 8 | enum class AnalysisType |
| 9 | { |
| 10 | /** |
| 11 | * Queries for the root cause of a system checkstop attention. An |
| 12 | * unrecoverable PEL will be logged containing any necessary service actions |
| 13 | * and the associated FFDC from analysis. |
| 14 | */ |
| 15 | SYSTEM_CHECKSTOP, |
| 16 | |
| 17 | /** |
| 18 | * Queries for any active recoverable or unit checkstop attentions that may |
| 19 | * be attributed to a Terminate Immediate (TI) event. If any are found, an |
| 20 | * predictive PEL will be logged containing any necessary service actions |
| 21 | * and the associated FFDC from analysis. |
| 22 | */ |
| 23 | TERMINATE_IMMEDIATE, |
| 24 | |
| 25 | /** |
| 26 | * Queries for any active attentions. If any are found, an informational PEL |
| 27 | * will be logged containing the FFDC from analysis (no service actions |
| 28 | * applied). |
| 29 | */ |
| 30 | MANUAL, |
| 31 | }; |
| 32 | |
Ben Tyner | 0205f3b | 2020-02-24 10:24:47 -0600 | [diff] [blame] | 33 | /** |
Zane Shelley | ebff0d3 | 2021-11-21 10:52:07 -0600 | [diff] [blame] | 34 | * @brief Queries all chips in the host hardware for any active attentions. |
| 35 | * Then, it will perform any required RAS service actions based on the |
| 36 | * given analysis type. |
Ben Tyner | 0205f3b | 2020-02-24 10:24:47 -0600 | [diff] [blame] | 37 | * |
Zane Shelley | ebff0d3 | 2021-11-21 10:52:07 -0600 | [diff] [blame] | 38 | * @param i_type The type of analysis to perform. See enum above. |
| 39 | * |
| 40 | * @param o_dump The returned dump data. This data is only set if the input |
| 41 | * value of i_type is SYSTEM_CHECKSTOP. |
| 42 | * |
Zane Shelley | 611b344 | 2021-11-19 16:02:01 -0600 | [diff] [blame] | 43 | * @return The platform log ID (PLID) of the PEL generated during analysis. Will |
| 44 | * return zero if no PEL is generated. |
Ben Tyner | 0205f3b | 2020-02-24 10:24:47 -0600 | [diff] [blame] | 45 | */ |
Zane Shelley | ebff0d3 | 2021-11-21 10:52:07 -0600 | [diff] [blame] | 46 | uint32_t analyzeHardware(AnalysisType i_type, attn::DumpParameters& o_dump); |
Ben Tyner | 0205f3b | 2020-02-24 10:24:47 -0600 | [diff] [blame] | 47 | |
Ben Tyner | eea4542 | 2021-04-15 10:54:14 -0500 | [diff] [blame] | 48 | /** |
| 49 | * @brief Get error analyzer build information |
| 50 | * |
| 51 | * @return Pointer to build information |
| 52 | */ |
| 53 | const char* getBuildInfo(); |
| 54 | |
Ben Tyner | 0205f3b | 2020-02-24 10:24:47 -0600 | [diff] [blame] | 55 | } // namespace analyzer |