| // Copyright lowRISC contributors. |
| // Licensed under the Apache License, Version 2.0, see LICENSE for details. |
| // SPDX-License-Identifier: Apache-2.0 |
| |
| #ifndef OPENTITAN_SW_DEVICE_LIB_DIF_DIF_ALERT_HANDLER_H_ |
| #define OPENTITAN_SW_DEVICE_LIB_DIF_DIF_ALERT_HANDLER_H_ |
| |
| /** |
| * @file |
| * @brief <a href="/hw/ip/alert_handler/doc/">Alert handler</a> Device Interface |
| * Functions |
| */ |
| |
| #include <stdint.h> |
| |
| #include "sw/device/lib/base/macros.h" |
| #include "sw/device/lib/base/mmio.h" |
| #include "sw/device/lib/dif/dif_base.h" |
| |
| #include "sw/device/lib/dif/autogen/dif_alert_handler_autogen.h" |
| |
| #ifdef __cplusplus |
| extern "C" { |
| #endif // __cplusplus |
| |
| /** |
| * An alert class. |
| * |
| * An alert class roughly specifies how to deal with an alert. The class |
| * determines which interrupt handler is fired for an alert, as well as the |
| * fine-grained details of the escalation policy, for when the processor |
| * fails to respond to an alert quickly enough. |
| * |
| * Alert classes serve as the alert handler's IRQ types. There is one IRQ for |
| * each class. Whenever an alert fires, the corresponding class's IRQ is |
| * serviced by the processor (if enabled). |
| */ |
| typedef enum dif_alert_handler_class { |
| /** |
| * Alert class "A". |
| */ |
| kDifAlertHandlerClassA = 0, |
| /** |
| * Alert class "B". |
| */ |
| kDifAlertHandlerClassB = 1, |
| /** |
| * Alert class "C". |
| */ |
| kDifAlertHandlerClassC = 2, |
| /** |
| * Alert class "D". |
| */ |
| kDifAlertHandlerClassD = 3, |
| } dif_alert_handler_class_t; |
| |
| /** |
| * An alert, identified by a numeric id. |
| * |
| * Alerts are hardware-level events indicating that something catastrophic |
| * has happened. The alert handler consumes alerts, classifies them into a |
| * particular `dif_alert_handler_class_t`, and uses policy information attached |
| * to that class to handle it. |
| * |
| * The number of alerts is configurable at hardware-synthesis time. |
| */ |
| typedef uint32_t dif_alert_handler_alert_t; |
| |
| /** |
| * A local alert originating from within the alert handler itself. |
| * |
| * A local alert is exactly the same as a normal `dif_alert_handler_alert_t`, |
| * except that they use different functions for setting up classification and |
| * for getting causes. |
| */ |
| typedef enum dif_alert_handler_local_alert { |
| kDifAlertHandlerLocalAlertAlertPingFail, |
| kDifAlertHandlerLocalAlertEscalationPingFail, |
| kDifAlertHandlerLocalAlertAlertIntegrityFail, |
| kDifAlertHandlerLocalAlertEscalationIntegrityFail, |
| kDifAlertHandlerLocalAlertBusIntegrityFail, |
| kDifAlertHandlerLocalAlertShadowedUpdateError, |
| kDifAlertHandlerLocalAlertShadowedStorageError, |
| } dif_alert_handler_local_alert_t; |
| |
| /** |
| * An escalation signal, identified by a numeric id. |
| * |
| * An escalation signal is a generic "response" to failing to handle alert(s). |
| * The meaning of each escalation signal means is determined by the chip. |
| * |
| * A `dif_alert_handler_class_t` can be configured to raise escalation signal(s) |
| * as part of its policy. |
| */ |
| typedef uint32_t dif_alert_handler_escalation_signal_t; |
| |
| /** |
| * An alert class state. |
| * |
| * This enum describes the sequence of states in the *escalation protocol*, |
| * which triggers under two different conditions: |
| * - If too many alerts of a particular class accumulate. |
| * - If the software IRQ handler for that class times out. |
| * |
| * When either of these conditions is reached, phase 0 begins. This may trigger |
| * an escalation signal, and after a configured duration, proceed to phase 1. |
| * This process repeats until phase 3 ends, at which point the class enters a |
| * "bricked" terminal state, which cannot be exited except by reset. |
| * |
| * At any point, software may end the escalation protocol by calling |
| * `dif_alert_handler_escalation_clear()` (unless clearing is disabled). |
| * Successfully calling this function, or clearing the IRQ on time, will reset |
| * the state back to idle. Note that this function cannot clear the terminal |
| * state; that state can only be cleared by resetting the chip. |
| */ |
| typedef enum dif_alert_handler_class_state { |
| /** |
| * The initial, idle state. |
| */ |
| kDifAlertHandlerClassStateIdle, |
| /** |
| * The "timeout" state, that is, the IRQ has been fired and the clock is |
| * ticking for the processor to handle the alert. |
| */ |
| kDifAlertHandlerClassStateTimeout, |
| |
| /** |
| * The zeroth escalation phase. |
| */ |
| kDifAlertHandlerClassStatePhase0, |
| /** |
| * The first escalation phase. |
| */ |
| kDifAlertHandlerClassStatePhase1, |
| /** |
| * The second escalation phase. |
| */ |
| kDifAlertHandlerClassStatePhase2, |
| /** |
| * The third escalation phase. |
| */ |
| kDifAlertHandlerClassStatePhase3, |
| |
| /** |
| * The terminal state. Most configurations will never reach this state, since |
| * one of the previous phases will use an escalation signal to reset the |
| * device. |
| */ |
| kDifAlertHandlerClassStateTerminal, |
| } dif_alert_handler_class_state_t; |
| |
| /** |
| * Runtime configuration for responding to a given escalation phase. |
| * |
| * See `dif_alert_handler_class_config_t`. |
| */ |
| typedef struct dif_alert_handler_class_phase_signal { |
| /** |
| * The phase this configuration describes. |
| * |
| * It is an error for this to not be one of the `Phase` constants in |
| * `dif_alert_handler_class_state_t`. |
| */ |
| dif_alert_handler_class_state_t phase; |
| /** |
| * The escalation signal that should be triggered when this phase begins. |
| */ |
| dif_alert_handler_escalation_signal_t signal; |
| } dif_alert_handler_class_phase_signal_t; |
| |
| /** |
| * Runtime configuration for the duration of an escalation phase. |
| * |
| * See `dif_alert_handler_class_config_t`. |
| */ |
| typedef struct dif_alert_handler_class_phase_duration { |
| /** |
| * The phase this configuration describes. |
| * |
| * It is an error for this to not be one of the `Phase` constants in |
| * `dif_alert_handler_class_state_t`. |
| */ |
| dif_alert_handler_class_state_t phase; |
| /** |
| * The duration of this phase, in cycles. |
| */ |
| uint32_t cycles; |
| } dif_alert_handler_class_phase_duration_t; |
| |
| /** |
| * Runtime configuration for a particular alert class. |
| * |
| * This struct describes how a particular alert class should be configured, |
| * such as which signals are associated with it, and what options are turned |
| * on for the escalation protocol. |
| * |
| * For each of the pointer/length field pairs below, if the length is zero, the |
| * pointer may be `NULL`. |
| */ |
| typedef struct dif_alert_handler_class_config { |
| /** |
| * The class this configuration describes. |
| */ |
| dif_alert_handler_class_t alert_class; |
| |
| /** |
| * A list of alerts that should be classified as having this class. |
| * |
| * Each alert in this list will additionally be set as enabled. |
| */ |
| const dif_alert_handler_alert_t *alerts; |
| /** |
| * The length of the array `alerts`. |
| */ |
| size_t alerts_len; |
| |
| /** |
| * A list of local that should be classified as having this class. |
| * |
| * Each local alert in this list will additionally be set as enabled. |
| */ |
| const dif_alert_handler_local_alert_t *local_alerts; |
| /** |
| * The length of the array `local_alerts`. |
| */ |
| size_t local_alerts_len; |
| |
| /** |
| * Whether the escalation protocol should be used for this class |
| * (i.e., accumulator and timeout based escalation). |
| * |
| * Class IRQs will still fire regardless of this setting. |
| */ |
| dif_toggle_t use_escalation_protocol; |
| |
| /** |
| * Whether automatic escalation locking should be used for this class. |
| * |
| * When enabled, upon beginning the escalation protocol, the hardware will |
| * lock the escalation clear bit, so that software cannot stop escalation once |
| * it has begun. |
| */ |
| dif_toggle_t automatic_locking; |
| |
| /** |
| * The threshold for the class accmulator which, when reached, will |
| * automatically trigger escalation. |
| */ |
| uint16_t accumulator_threshold; |
| |
| /** |
| * The number of cycles this class's associated IRQ handler has to acknowledge |
| * the IRQ before escalation is triggered. |
| * |
| * A value of zero disables the timeout. |
| */ |
| uint32_t irq_deadline_cycles; |
| |
| /** |
| * Signals to associate to each escalation phase. |
| * |
| * Each escalation phase signal in this list will additionally be set as |
| * enabled; phases not listed will have their escalation signals disabled. |
| */ |
| const dif_alert_handler_class_phase_signal_t *phase_signals; |
| /** |
| * The length of the array `phase_signals`. |
| */ |
| size_t phase_signals_len; |
| |
| /** |
| * Durations, in cycles, of each escalation phase. |
| */ |
| const dif_alert_handler_class_phase_duration_t *phase_durations; |
| /** |
| * The length of the array `phase_durations`. |
| */ |
| size_t phase_durations_len; |
| } dif_alert_handler_class_config_t; |
| |
| /** |
| * Runtime configuration for alert handler. |
| * |
| * This struct describes runtime information for one-time configuration of the |
| * hardware. |
| */ |
| typedef struct dif_alert_handler_config { |
| /** |
| * The alert ping timeout, in cycles. |
| * |
| * The alert handler will regularly, at random intervals, ping alert |
| * sources. If a source fails to respond, a local alert will be raised. |
| * |
| * The appropriate value will be dependent on all of the clocks involved on |
| * a chip. |
| * |
| * Note that the ping timer won't start until `dif_alert_handler_lock()` is |
| * successfully called. |
| * |
| * Note while this value must fit into the timeout register which is smaller |
| * than the native word length. |
| */ |
| uint32_t ping_timeout; |
| |
| /** |
| * A list of alert classes to configure. |
| */ |
| const dif_alert_handler_class_config_t *classes; |
| /** |
| * The length of the array `classes`. |
| */ |
| size_t classes_len; |
| } dif_alert_handler_config_t; |
| |
| /** |
| * Configures alert handler with runtime information. |
| * |
| * This function should need to be called once for the lifetime of `handle`. |
| * |
| * This operation is lock-protected. |
| * |
| * @param handler An alert handler handle. |
| * @param config Runtime configuration parameters. |
| * @return The result of the operation. |
| */ |
| OT_WARN_UNUSED_RESULT |
| dif_result_t dif_alert_handler_configure( |
| const dif_alert_handler_t *alert_handler, |
| dif_alert_handler_config_t config); |
| |
| /** |
| * Configures an alert in the alert handler. |
| * |
| * This operation is lock-protected. |
| * |
| * @param handler An alert handler handle. |
| * @param alert The alert to be configured. |
| * @param alert_class The class to assign the alert to. |
| * @param enabled The enablement state to configure the alert in. |
| * @param locked The locked state to configure the alert in. |
| * @return The result of the operation. |
| */ |
| OT_WARN_UNUSED_RESULT |
| dif_result_t dif_alert_handler_configure_alert( |
| const dif_alert_handler_t *alert_handler, dif_alert_handler_alert_t alert, |
| dif_alert_handler_class_t alert_class, dif_toggle_t enabled, |
| dif_toggle_t locked); |
| |
| /** |
| * Locks out alert handler ping timer configuration. |
| * |
| * Once locked, `dif_alert_handler_configure()` will return |
| * `kDifLocked`. |
| * |
| * This operation cannot be undone, and should be performed at the end of |
| * configuring the alert handler in early boot. |
| * |
| * This function is reentrant: calling it while functionality is locked will |
| * have no effect and return `kDifOk`. |
| * |
| * @param handler An alert handler handle. |
| * @return The result of the operation. |
| */ |
| OT_WARN_UNUSED_RESULT |
| dif_result_t dif_alert_handler_lock_ping_timer( |
| const dif_alert_handler_t *alert_handler); |
| |
| /** |
| * Checks whether alert handler's ping timer is locked. |
| * |
| * @param handler An alert handler handle. |
| * @param is_locked Out-param for the locked state. |
| * @return The result of the operation. |
| */ |
| OT_WARN_UNUSED_RESULT |
| dif_result_t dif_alert_handler_is_ping_timer_locked( |
| const dif_alert_handler_t *alert_handler, bool *is_locked); |
| |
| /** |
| * Checks whether an alert is one of the causes for an alert IRQ. |
| * |
| * Note that multiple alerts may be causes at the same time. |
| * |
| * @param handler An alert handler handle. |
| * @param alert The alert to check. |
| * @param is_cause Out-param for whether this alert is a cause. |
| * @return The result of the operation. |
| */ |
| OT_WARN_UNUSED_RESULT |
| dif_result_t dif_alert_handler_alert_is_cause( |
| const dif_alert_handler_t *alert_handler, dif_alert_handler_alert_t alert, |
| bool *is_cause); |
| |
| /** |
| * Clears an alert from the cause vector, similar to an IRQ acknowledgement. |
| * |
| * @param handler An alert handler handle. |
| * @param alert The alert to acknowledge. |
| * @return The result of the operation. |
| */ |
| OT_WARN_UNUSED_RESULT |
| dif_result_t dif_alert_handler_alert_acknowledge( |
| const dif_alert_handler_t *alert_handler, dif_alert_handler_alert_t alert); |
| |
| /** |
| * Checks whether a local alert is one of the causes for an alert IRQ. |
| * |
| * Note that multiple alerts may be causes at the same time. |
| * |
| * @param handler An alert handler handle. |
| * @param alert The alert to check. |
| * @param is_cause Out-param for whether this alert is a cause. |
| * @return The result of the operation. |
| */ |
| OT_WARN_UNUSED_RESULT |
| dif_result_t dif_alert_handler_local_alert_is_cause( |
| const dif_alert_handler_t *alert_handler, |
| dif_alert_handler_local_alert_t alert, bool *is_cause); |
| |
| /** |
| * Clears a local alert from the cause vector, similar to an IRQ |
| * acknowledgement. |
| * |
| * @param handler An alert handler handle. |
| * @param alert The alert to acknowledge. |
| * @return The result of the operation. |
| */ |
| OT_WARN_UNUSED_RESULT |
| dif_result_t dif_alert_handler_local_alert_acknowledge( |
| const dif_alert_handler_t *alert_handler, |
| dif_alert_handler_local_alert_t alert); |
| |
| /** |
| * Checks whether software can clear escalations for this class. |
| * |
| * If `automatic_locking` has been set in a class's configuration, this |
| * function may suddenly begin returning `false` instead of `true` without |
| * software invervention, if escalation has been triggered. |
| * |
| * @param handler An alert handler handle. |
| * @param alert_class The class to check. |
| * @param can_clear Out-param for the clear enablement state. |
| * @return The result of the operation. |
| */ |
| OT_WARN_UNUSED_RESULT |
| dif_result_t dif_alert_handler_escalation_can_clear( |
| const dif_alert_handler_t *alert_handler, |
| dif_alert_handler_class_t alert_class, bool *can_clear); |
| |
| /** |
| * Disables escalation clearing for this class. |
| * |
| * This operation is similar to locking in that it cannot be undone. |
| * |
| * @param handler An alert handler handle. |
| * @param alert_class The class to disable clearing for. |
| * @return The result of the operation. |
| */ |
| OT_WARN_UNUSED_RESULT |
| dif_result_t dif_alert_handler_escalation_disable_clearing( |
| const dif_alert_handler_t *alert_handler, |
| dif_alert_handler_class_t alert_class); |
| |
| /** |
| * Clears an on-going escalation, as well as the class accumulator. |
| * |
| * This operation can be disabled with |
| * `dif_alert_handler_escalation_disable_clearing()`. |
| * |
| * @param handler An alert handler handle. |
| * @param alert_class The class to clear an escalation for. |
| * @return The result of the operation. |
| */ |
| OT_WARN_UNUSED_RESULT |
| dif_result_t dif_alert_handler_escalation_clear( |
| const dif_alert_handler_t *alert_handler, |
| dif_alert_handler_class_t alert_class); |
| |
| /** |
| * Gets the accumulator value for this class. |
| * |
| * This value is the number of alerts of this class that have been logged so |
| * far (more or less, since multiple alerts on the same cycle will be merged |
| * into one). Once this value equals the configured threshold, any followup |
| * alerts will immediately trigger the escalation protocol. |
| * |
| * This value is cleared as a side-effect of |
| * `dif_alert_handler_escalation_clear()`. |
| * |
| * @param handler An alert handler handle. |
| * @param alert_class The class to get the accumulator for. |
| * @param alerts Out-param for the accumulator. |
| * @return The result of the operation. |
| */ |
| OT_WARN_UNUSED_RESULT |
| dif_result_t dif_alert_handler_get_accumulator( |
| const dif_alert_handler_t *alert_handler, |
| dif_alert_handler_class_t alert_class, uint16_t *alerts); |
| |
| /** |
| * Gets the current value of the "escalation counter". |
| * |
| * The interpretation of this value depends on the value returned by |
| * `dif_alert_handler_class_state_get()`. If it is in the timeout state, |
| * it returns the number of cycles counted towards that cycle so far. |
| * If in an escalation phase, it returns the number of cycles that phase |
| * has been active for. |
| * |
| * @param handler An alert handler handle. |
| * @param alert_class The class to set the counter for. |
| * @param cycles Out-param for the counter. |
| * @return The result of the operation. |
| */ |
| OT_WARN_UNUSED_RESULT |
| dif_result_t dif_alert_handler_get_escalation_counter( |
| const dif_alert_handler_t *alert_handler, |
| dif_alert_handler_class_t alert_class, uint32_t *cycles); |
| |
| /** |
| * Gets the current state of this class. |
| * |
| * See `dif_alert_handler_class_state_t` for potential states. |
| * |
| * @param handler An alert handler handle. |
| * @param alert_class The class to get the state of |
| * @param state Out-param for the class state. |
| * @return The result of the operation. |
| */ |
| OT_WARN_UNUSED_RESULT |
| dif_result_t dif_alert_handler_get_class_state( |
| const dif_alert_handler_t *alert_handler, |
| dif_alert_handler_class_t alert_class, |
| dif_alert_handler_class_state_t *state); |
| |
| #ifdef __cplusplus |
| } // extern "C" |
| #endif // __cplusplus |
| |
| #endif // OPENTITAN_SW_DEVICE_LIB_DIF_DIF_ALERT_HANDLER_H_ |