blob: f7ac3e87743b7a3228475fe6fc373df6a2182014 [file] [log] [blame]
Ben Tyneref320152020-01-09 10:31:23 -06001#pragma once
2
Ben Tyner3fb52e52020-03-31 10:10:07 -05003#include <attn/attn_config.hpp>
4
Ben Tynerbdb86672023-06-07 14:18:06 -07005#include <cstdint>
6
Ben Tyner73ac3682020-01-09 10:46:47 -06007namespace attn
8{
Ben Tynerfb190542020-11-06 09:27:56 -06009/** @brief Attention global status bits */
Patrick Williams27dd6362023-05-10 07:51:20 -050010constexpr uint32_t SBE_ATTN = 0x00000002;
11constexpr uint32_t ANY_ATTN = 0x80000000;
12constexpr uint32_t CHECKSTOP_ATTN = 0x40000000;
13constexpr uint32_t SPECIAL_ATTN = 0x20000000;
Ben Tyner135793a2021-10-27 09:18:41 -050014constexpr uint32_t RECOVERABLE_ATTN = 0x10000000;
Ben Tynerfb190542020-11-06 09:27:56 -060015
Ben Tyneref320152020-01-09 10:31:23 -060016/**
Ben Tyner90516852022-12-14 21:04:18 -060017 * @brief Clear attention interrupts
18 *
19 * The attention interrupts are sticky and may still be set (MPIPL) even if
20 * there are no active attentions. If there is an active attention then
21 * clearing the associated interrupt will have no effect.
22 */
23void clearAttnInterrupts();
24
25/**
Ben Tyneref320152020-01-09 10:31:23 -060026 * @brief The main attention handler logic
27 *
28 * Check each processor for active attentions of type SBE Vital (vital),
Ben Tyner7a0dd542021-02-12 09:33:44 -060029 * System Checkstop (checkstop) and Special Attention (special) and handle
30 * each as follows:
Ben Tyneref320152020-01-09 10:31:23 -060031 *
Ben Tyner3fb52e52020-03-31 10:10:07 -050032 * checkstop: Call hardware error analyzer
Ben Tyneref320152020-01-09 10:31:23 -060033 * vital: TBD
34 * special: Determine if the special attention is a Breakpoint (BP),
Ben Tyner7a0dd542021-02-12 09:33:44 -060035 * Terminate Immediately (TI) or CoreCodeToSp (corecode). For each
36 * special attention type, do the following:
Ben Tyneref320152020-01-09 10:31:23 -060037 *
38 * BP: Notify Cronus
Ben Tyner3fb52e52020-03-31 10:10:07 -050039 * TI: Start host diagnostics mode systemd unit
Ben Tyneref320152020-01-09 10:31:23 -060040 * Corecode: TBD
Ben Tyner970fd4f2020-02-19 13:46:42 -060041 *
Ben Tyner3fb52e52020-03-31 10:10:07 -050042 * @param i_config pointer to attention handler configuration object
Ben Tyneref320152020-01-09 10:31:23 -060043 */
Ben Tyner3fb52e52020-03-31 10:10:07 -050044void attnHandler(Config* i_config);
Ben Tyner73ac3682020-01-09 10:46:47 -060045
Ben Tyner90516852022-12-14 21:04:18 -060046/**
47 * @brief Determine if attention is active and not masked
48 *
49 * Determine whether an attention needs to be handled and trace details of
50 * attention type and whether it is masked or not.
51 *
52 * @param i_val attention status register
53 * @param i_mask attention true mask register
54 * @param i_attn attention type
55 * @param i_proc processor associated with registers
56 *
57 * @return true if attention is active and not masked, otherwise false
58 */
59bool activeAttn(uint32_t i_val, uint32_t i_mask, uint32_t i_attn);
60
Ben Tyner73ac3682020-01-09 10:46:47 -060061} // namespace attn