Skip to content

Latest commit

 

History

History
37 lines (29 loc) · 2.74 KB

theory_of_operation.md

File metadata and controls

37 lines (29 loc) · 2.74 KB

Theory of Operation

AON Timer interacts with the CPU core and the power manager and reset manager to generate interrupts as well as wakeup and reset events. Each timer increases its count as long as its enable signal (wdog_ctrl.enable for WDOG and wkup_ctrl.enable for WKUP) is set. Both timers halt the counting if the signal lc_escalate_en_i is set, which tells the alert handler is the system is in a "killed" state. In addition, the WDOG timer can be configured to stop counting if the sleep_mode_i is set. To configure it like this, set the field wdog_ctrl.pause_in_sleep to 1. This feature is used to stop the watchdog timer running when in debugging mode.

The diagram below depicts high level functionality and connectivity between AON Timer, the PLIC, Power Manager and the Reset Manager. The output signals intr_wkup_timer_expired_o, intr_wdog_timer_bark_o and nmi_wdog_timer_bark_o are driven on the SYS domain. The output signals wkup_req_o and aon_timer_rst_req_o are driven on the AON domain. Note the signal nmi_wdog_timer_bark_o is a copy of intr_wdog_timer_bark_o. Furthermore, the block also has RACL ports racl_policies_i and racl_error_o which are not depicted in the diagram below. In order to enable the RACL ports, the parameter EnableRacl should be set to 1.

Block diagram

AON Timer Block Diagram

Design Details

The always-on timer will run on a ~200KHz clock. The wakeup timer is 64 bits wide and the watchdog timer is 32 bits wide. This gives a maximum timeout window of roughly ~6 hours for the watchdog and almost 3 million years for the wakeup timer. For the wakeup timer, the pre-scaler can be used to slow the count down so the counter value matches some desired time unit (e.g. milliseconds).

Register reads via the TL-UL interface (SYS domain) are synchronized to the slow clock (AON domain) using the "async" register generation feature. This means that writes can complete before the data has reached its underlying register in the slow clock domain. If software needs to guarantee completion of a register write then it can read back the register value. This will guarantee the completion of all previous writes to the peripheral.

The wakeup count and threshold are both 64-bit values accessed through two 32-bit registers. Bits[63:32] in registers WKUP_COUNT_HI and WKUP_THOLD_HI. Bits[31:0] in registers WKUP_COUNT_LO and WKUP_THOLD_HI. It is not possible to do a single atomic read or write of the 64-bit values. The programmer's guide suggests some ways to access the wakeup count and threshold to avoid issues from race conditions caused by this.