Ben Tyner | ef32015 | 2020-01-09 10:31:23 -0600 | [diff] [blame] | 1 | #pragma once |
| 2 | |
Ben Tyner | 3fb52e5 | 2020-03-31 10:10:07 -0500 | [diff] [blame] | 3 | #include <attn/attn_config.hpp> |
| 4 | |
Ben Tyner | 73ac368 | 2020-01-09 10:46:47 -0600 | [diff] [blame] | 5 | namespace attn |
| 6 | { |
Ben Tyner | fb19054 | 2020-11-06 09:27:56 -0600 | [diff] [blame] | 7 | /** @brief Attention global status bits */ |
Patrick Williams | 27dd636 | 2023-05-10 07:51:20 -0500 | [diff] [blame] | 8 | constexpr uint32_t SBE_ATTN = 0x00000002; |
| 9 | constexpr uint32_t ANY_ATTN = 0x80000000; |
| 10 | constexpr uint32_t CHECKSTOP_ATTN = 0x40000000; |
| 11 | constexpr uint32_t SPECIAL_ATTN = 0x20000000; |
Ben Tyner | 135793a | 2021-10-27 09:18:41 -0500 | [diff] [blame] | 12 | constexpr uint32_t RECOVERABLE_ATTN = 0x10000000; |
Ben Tyner | fb19054 | 2020-11-06 09:27:56 -0600 | [diff] [blame] | 13 | |
Ben Tyner | ef32015 | 2020-01-09 10:31:23 -0600 | [diff] [blame] | 14 | /** |
Ben Tyner | 9051685 | 2022-12-14 21:04:18 -0600 | [diff] [blame] | 15 | * @brief Clear attention interrupts |
| 16 | * |
| 17 | * The attention interrupts are sticky and may still be set (MPIPL) even if |
| 18 | * there are no active attentions. If there is an active attention then |
| 19 | * clearing the associated interrupt will have no effect. |
| 20 | */ |
| 21 | void clearAttnInterrupts(); |
| 22 | |
| 23 | /** |
Ben Tyner | ef32015 | 2020-01-09 10:31:23 -0600 | [diff] [blame] | 24 | * @brief The main attention handler logic |
| 25 | * |
| 26 | * Check each processor for active attentions of type SBE Vital (vital), |
Ben Tyner | 7a0dd54 | 2021-02-12 09:33:44 -0600 | [diff] [blame] | 27 | * System Checkstop (checkstop) and Special Attention (special) and handle |
| 28 | * each as follows: |
Ben Tyner | ef32015 | 2020-01-09 10:31:23 -0600 | [diff] [blame] | 29 | * |
Ben Tyner | 3fb52e5 | 2020-03-31 10:10:07 -0500 | [diff] [blame] | 30 | * checkstop: Call hardware error analyzer |
Ben Tyner | ef32015 | 2020-01-09 10:31:23 -0600 | [diff] [blame] | 31 | * vital: TBD |
| 32 | * special: Determine if the special attention is a Breakpoint (BP), |
Ben Tyner | 7a0dd54 | 2021-02-12 09:33:44 -0600 | [diff] [blame] | 33 | * Terminate Immediately (TI) or CoreCodeToSp (corecode). For each |
| 34 | * special attention type, do the following: |
Ben Tyner | ef32015 | 2020-01-09 10:31:23 -0600 | [diff] [blame] | 35 | * |
| 36 | * BP: Notify Cronus |
Ben Tyner | 3fb52e5 | 2020-03-31 10:10:07 -0500 | [diff] [blame] | 37 | * TI: Start host diagnostics mode systemd unit |
Ben Tyner | ef32015 | 2020-01-09 10:31:23 -0600 | [diff] [blame] | 38 | * Corecode: TBD |
Ben Tyner | 970fd4f | 2020-02-19 13:46:42 -0600 | [diff] [blame] | 39 | * |
Ben Tyner | 3fb52e5 | 2020-03-31 10:10:07 -0500 | [diff] [blame] | 40 | * @param i_config pointer to attention handler configuration object |
Ben Tyner | ef32015 | 2020-01-09 10:31:23 -0600 | [diff] [blame] | 41 | */ |
Ben Tyner | 3fb52e5 | 2020-03-31 10:10:07 -0500 | [diff] [blame] | 42 | void attnHandler(Config* i_config); |
Ben Tyner | 73ac368 | 2020-01-09 10:46:47 -0600 | [diff] [blame] | 43 | |
Ben Tyner | 9051685 | 2022-12-14 21:04:18 -0600 | [diff] [blame] | 44 | /** |
| 45 | * @brief Determine if attention is active and not masked |
| 46 | * |
| 47 | * Determine whether an attention needs to be handled and trace details of |
| 48 | * attention type and whether it is masked or not. |
| 49 | * |
| 50 | * @param i_val attention status register |
| 51 | * @param i_mask attention true mask register |
| 52 | * @param i_attn attention type |
| 53 | * @param i_proc processor associated with registers |
| 54 | * |
| 55 | * @return true if attention is active and not masked, otherwise false |
| 56 | */ |
| 57 | bool activeAttn(uint32_t i_val, uint32_t i_mask, uint32_t i_attn); |
| 58 | |
Ben Tyner | 73ac368 | 2020-01-09 10:46:47 -0600 | [diff] [blame] | 59 | } // namespace attn |