blob: d4ad7268868f3f4348cd3c9f745bf4c1c0491891 [file] [log] [blame]
Zane Shelleyd84ed6e2020-06-08 13:41:48 -05001#include <assert.h>
Zane Shelley9fb73932020-09-15 13:34:57 -05002#include <unistd.h>
Ben Tyner87eabc62020-05-14 17:56:54 -05003
Zane Shelleyebff0d32021-11-21 10:52:07 -06004#include <analyzer/analyzer_main.hpp>
Zane Shelleya9b44342021-08-08 17:15:52 -05005#include <analyzer/ras-data/ras-data-parser.hpp>
Zane Shelley4ed4be52021-02-15 17:53:40 -06006#include <analyzer/service_data.hpp>
Ben Tyner7029e522021-08-09 19:18:24 -05007#include <attn/attn_dump.hpp>
Ben Tyner0205f3b2020-02-24 10:24:47 -06008#include <hei_main.hpp>
Zane Shelleyf4bd5ff2020-11-05 22:26:04 -06009#include <util/pdbg.hpp>
Zane Shelleyd84ed6e2020-06-08 13:41:48 -050010#include <util/trace.hpp>
Ben Tyner0205f3b2020-02-24 10:24:47 -060011
12namespace analyzer
13{
14
Zane Shelleyf4bd5ff2020-11-05 22:26:04 -060015//------------------------------------------------------------------------------
Ben Tynerb1ebfcb2020-05-08 18:52:48 -050016
Zane Shelleyf4bd5ff2020-11-05 22:26:04 -060017// Forward references for externally defined functions.
Ben Tyner87eabc62020-05-14 17:56:54 -050018
Zane Shelleyd3b9bac2020-11-17 21:59:12 -060019/**
20 * @brief Will get the list of active chip and initialize the isolator.
21 * @param o_chips The returned list of active chips.
22 */
Zane Shelley171a2e02020-11-13 13:56:13 -060023void initializeIsolator(std::vector<libhei::Chip>& o_chips);
Ben Tynerb1ebfcb2020-05-08 18:52:48 -050024
Zane Shelleyd3b9bac2020-11-17 21:59:12 -060025/**
Zane Shelley65fefb22021-10-18 15:35:26 -050026 * @brief Will get the list of active chip and initialize the isolator.
Zane Shelleyec227c22021-12-09 15:54:40 -060027 * @param i_type The type of analysis to perform. See enum for details.
Zane Shelley65fefb22021-10-18 15:35:26 -050028 * @param i_isoData The data gathered during isolation (for FFDC).
29 * @param o_rootCause The returned root cause signature.
30 * @return True, if root cause has been found. False, otherwise.
31 */
Zane Shelleyec227c22021-12-09 15:54:40 -060032bool filterRootCause(AnalysisType i_type,
33 const libhei::IsolationData& i_isoData,
Zane Shelley65fefb22021-10-18 15:35:26 -050034 libhei::Signature& o_rootCause);
35
36/**
Zane Shelleyd3b9bac2020-11-17 21:59:12 -060037 * @brief Will create and submit a PEL using the given data.
Zane Shelley4ed4be52021-02-15 17:53:40 -060038 * @param i_servData Data regarding service actions gathered during analysis.
Zane Shelley611b3442021-11-19 16:02:01 -060039 * @return The platform log ID. Will return zero if no PEL is generated.
Zane Shelleyd3b9bac2020-11-17 21:59:12 -060040 */
Ben Tynerc1e1c002022-02-16 15:09:31 -060041uint32_t commitPel(const ServiceData& i_servData);
Zane Shelleyd3b9bac2020-11-17 21:59:12 -060042
Zane Shelleyd84ed6e2020-06-08 13:41:48 -050043//------------------------------------------------------------------------------
44
Zane Shelleyebff0d32021-11-21 10:52:07 -060045const char* __attn(libhei::AttentionType_t i_type)
Zane Shelley2f263182020-07-10 21:41:21 -050046{
47 const char* str = "";
Zane Shelleyebff0d32021-11-21 10:52:07 -060048 switch (i_type)
Zane Shelley2f263182020-07-10 21:41:21 -050049 {
50 case libhei::ATTN_TYPE_CHECKSTOP:
51 str = "CHECKSTOP";
52 break;
53 case libhei::ATTN_TYPE_UNIT_CS:
54 str = "UNIT_CS";
55 break;
56 case libhei::ATTN_TYPE_RECOVERABLE:
57 str = "RECOVERABLE";
58 break;
59 case libhei::ATTN_TYPE_SP_ATTN:
60 str = "SP_ATTN";
61 break;
62 case libhei::ATTN_TYPE_HOST_ATTN:
63 str = "HOST_ATTN";
64 break;
65 default:
Zane Shelleyebff0d32021-11-21 10:52:07 -060066 trace::err("Unsupported attention type: %u", i_type);
Zane Shelley2f263182020-07-10 21:41:21 -050067 assert(0);
68 }
69 return str;
70}
71
Zane Shelley2f263182020-07-10 21:41:21 -050072//------------------------------------------------------------------------------
73
Zane Shelleyebff0d32021-11-21 10:52:07 -060074const char* __analysisType(AnalysisType i_type)
75{
76 const char* str = "";
77 switch (i_type)
78 {
79 case AnalysisType::SYSTEM_CHECKSTOP:
80 str = "SYSTEM_CHECKSTOP";
81 break;
82 case AnalysisType::TERMINATE_IMMEDIATE:
83 str = "TERMINATE_IMMEDIATE";
84 break;
85 case AnalysisType::MANUAL:
86 str = "MANUAL";
87 break;
88 default:
89 trace::err("Unsupported analysis type: %u", i_type);
90 assert(0);
91 }
92 return str;
93}
94
95//------------------------------------------------------------------------------
96
97uint32_t analyzeHardware(AnalysisType i_type, attn::DumpParameters& o_dump)
Zane Shelley9fb73932020-09-15 13:34:57 -050098{
Zane Shelley611b3442021-11-19 16:02:01 -060099 uint32_t o_plid = 0; // default, zero indicates PEL was not created
Zane Shelley9fb73932020-09-15 13:34:57 -0500100
Zane Shelleye5411f02021-08-04 22:41:35 -0500101 if (!util::pdbg::queryHardwareAnalysisSupported())
102 {
103 trace::err("Hardware error analysis is not supported on this system");
Zane Shelley611b3442021-11-19 16:02:01 -0600104 return o_plid;
Zane Shelleye5411f02021-08-04 22:41:35 -0500105 }
106
Zane Shelleyebff0d32021-11-21 10:52:07 -0600107 trace::inf(">>> enter analyzeHardware(%s)", __analysisType(i_type));
Zane Shelleye5411f02021-08-04 22:41:35 -0500108
109 // Initialize the isolator and get all of the chips to be analyzed.
110 trace::inf("Initializing the isolator...");
111 std::vector<libhei::Chip> chips;
112 initializeIsolator(chips);
113
114 // Isolate attentions.
115 trace::inf("Isolating errors: # of chips=%u", chips.size());
116 libhei::IsolationData isoData{};
117 libhei::isolate(chips, isoData);
118
Zane Shelley65fefb22021-10-18 15:35:26 -0500119 // For debug, trace out the original list of signatures before filtering.
120 for (const auto& sig : isoData.getSignatureList())
121 {
122 trace::inf("Signature: %s 0x%0" PRIx32 " %s",
123 util::pdbg::getPath(sig.getChip()), sig.toUint32(),
124 __attn(sig.getAttnType()));
125 }
126
Zane Shelleye5411f02021-08-04 22:41:35 -0500127 // Filter for root cause attention.
Zane Shelleycb457382020-11-02 20:55:06 -0600128 libhei::Signature rootCause{};
Zane Shelleyec227c22021-12-09 15:54:40 -0600129 bool attnFound = filterRootCause(i_type, isoData, rootCause);
Zane Shelleycb457382020-11-02 20:55:06 -0600130
Zane Shelleyb7879d32021-12-06 18:02:03 -0600131 // If a root cause attention was found, or if this was a system checkstop,
132 // generate a PEL.
133 if (attnFound || AnalysisType::SYSTEM_CHECKSTOP == i_type)
Zane Shelley9fb73932020-09-15 13:34:57 -0500134 {
Zane Shelleyb7879d32021-12-06 18:02:03 -0600135 if (attnFound)
136 {
137 trace::inf("Root cause attention: %s 0x%0" PRIx32 " %s",
138 util::pdbg::getPath(rootCause.getChip()),
139 rootCause.toUint32(), __attn(rootCause.getAttnType()));
140 }
141 else
142 {
143 // This is bad. Analysis should have found a root cause attention
144 // for a system checkstop. Issues could range from code bugs to SCOM
145 // errors. Regardless, generate a PEL with FFDC to assist with
146 // debug.
147 trace::err("System checkstop with no root cause attention");
148 rootCause = libhei::Signature{}; // just in case
149 }
Zane Shelleycb457382020-11-02 20:55:06 -0600150
Zane Shelleyb7879d32021-12-06 18:02:03 -0600151 // Start building the service data.
Zane Shelley62adf5c2022-01-18 21:06:50 -0600152 ServiceData servData{rootCause, i_type, isoData};
Zane Shelleyb7879d32021-12-06 18:02:03 -0600153
154 // Apply any service actions, if needed. Note that there are no
155 // resolutions for manual analysis.
156 if (AnalysisType::MANUAL != i_type)
157 {
158 if (attnFound)
159 {
Zane Shelley2fbd2672022-02-03 13:56:35 -0600160 try
161 {
162 // Resolve the root cause attention.
163 RasDataParser rasData{};
164 rasData.getResolution(rootCause)->resolve(servData);
165 }
166 catch (const std::exception& e)
167 {
168 trace::err("Exception caught during root cause analysis");
169 trace::err(e.what());
170
171 // We'll still want to create a PEL for the FFDC, but
172 // since the analysis failed, we need to callout Level 2
173 // Support.
174 servData.calloutProcedure(callout::Procedure::NEXTLVL,
175 callout::Priority::HIGH);
176 }
Zane Shelleyb7879d32021-12-06 18:02:03 -0600177 }
178 else
179 {
Zane Shelley2fbd2672022-02-03 13:56:35 -0600180 // Analysis failed so callout the Level 2 Support.
Zane Shelley8af56852022-01-28 15:07:35 -0600181 servData.calloutProcedure(callout::Procedure::NEXTLVL,
182 callout::Priority::HIGH);
Zane Shelleyb7879d32021-12-06 18:02:03 -0600183 }
184 }
Zane Shelleyd3b9bac2020-11-17 21:59:12 -0600185
186 // Create and commit a PEL.
Ben Tynerc1e1c002022-02-16 15:09:31 -0600187 o_plid = commitPel(servData);
Ben Tyner7029e522021-08-09 19:18:24 -0500188
Zane Shelley611b3442021-11-19 16:02:01 -0600189 if (0 == o_plid)
190 {
191 trace::err("Failed to create PEL");
192 }
193 else
194 {
195 trace::inf("PEL created: PLID=0x%0" PRIx32, o_plid);
Zane Shelleybf3326f2021-11-12 13:41:39 -0600196
Zane Shelley611b3442021-11-19 16:02:01 -0600197 // Gather/return information needed for dump. A hardware dump will
198 // always be used for system checkstop attenions. Software dumps
199 // will be reserved for MP-IPLs during TI analysis.
200 // TODO: Need ID from root cause. At the moment, HUID does not exist
201 // in devtree. Will need a better ID definition.
Zane Shelleyebff0d32021-11-21 10:52:07 -0600202 o_dump.unitId = 0;
203 o_dump.dumpType = attn::DumpType::Hardware;
Zane Shelley611b3442021-11-19 16:02:01 -0600204 }
Zane Shelley9fb73932020-09-15 13:34:57 -0500205 }
Zane Shelleyb7879d32021-12-06 18:02:03 -0600206 else
207 {
208 // It is possible for TI handling, or manually initiated analysis via
209 // the command line, that there will not be an active attention. In
210 // which case, we will do nothing and let the caller of this function
211 // determine if this is the expected behavior.
212 trace::inf("No active attentions found");
213 }
Zane Shelley9fb73932020-09-15 13:34:57 -0500214
Zane Shelleye5411f02021-08-04 22:41:35 -0500215 // All done, clean up the isolator.
216 trace::inf("Uninitializing isolator...");
217 libhei::uninitialize();
Ben Tyner87eabc62020-05-14 17:56:54 -0500218
Zane Shelley2f263182020-07-10 21:41:21 -0500219 trace::inf("<<< exit analyzeHardware()");
220
Zane Shelley611b3442021-11-19 16:02:01 -0600221 return o_plid;
Ben Tyner0205f3b2020-02-24 10:24:47 -0600222}
223
Ben Tynereea45422021-04-15 10:54:14 -0500224//------------------------------------------------------------------------------
225
226/**
227 * @brief Get error isolator build information
228 *
229 * @return Pointer to build information
230 */
231const char* getBuildInfo()
232{
233 return libhei::getBuildInfo();
234}
235
Ben Tyner0205f3b2020-02-24 10:24:47 -0600236} // namespace analyzer