| // Copyright lowRISC contributors. |
| // Licensed under the Apache License, Version 2.0, see LICENSE for details. |
| // SPDX-License-Identifier: Apache-2.0 |
| // |
| // Description: sysrst_ctrl interrupt Module |
| // |
| module sysrst_ctrl_intr import sysrst_ctrl_reg_pkg::*; ( |
| input clk_i, |
| input rst_ni, |
| input sysrst_ctrl_combo_intr_i, |
| input sysrst_ctrl_key_intr_i, |
| input sysrst_ctrl_reg2hw_intr_state_reg_t intr_state_i, |
| input sysrst_ctrl_reg2hw_intr_enable_reg_t intr_enable_i, |
| input sysrst_ctrl_reg2hw_intr_test_reg_t intr_test_i, |
| output sysrst_ctrl_hw2reg_intr_state_reg_t intr_state_o, |
| output sysrst_ctrl_intr_o |
| ); |
| |
| logic sysrst_ctrl_event; |
| |
| assign sysrst_ctrl_event = sysrst_ctrl_combo_intr_i | sysrst_ctrl_key_intr_i; |
| |
| // instantiate interrupt hardware primitive |
| prim_intr_hw #(.Width(1)) u_sysrst_ctrl_intr_o ( |
| .clk_i(clk_i), |
| .rst_ni(rst_ni), |
| .event_intr_i (sysrst_ctrl_event), |
| .reg2hw_intr_enable_q_i (intr_enable_i.q), |
| .reg2hw_intr_test_q_i (intr_test_i.q), |
| .reg2hw_intr_test_qe_i (intr_test_i.qe), |
| .reg2hw_intr_state_q_i (intr_state_i.q), |
| .hw2reg_intr_state_de_o (intr_state_o.de), |
| .hw2reg_intr_state_d_o (intr_state_o.d), |
| .intr_o (sysrst_ctrl_intr_o) |
| ); |
| |
| endmodule |