blob: 950c33720547fa4e38e4dcccea425b5abd196039 [file] [log] [blame]
// Copyright lowRISC contributors.
// Licensed under the Apache License, Version 2.0, see LICENSE for details.
// SPDX-License-Indentifier: Apache-2.0
//
// Primitive interrupt handler. This assumes the existence of three
// controller registers: INTR_ENABLE, INTR_STATE, INTR_TEST.
// This module can be instantiated once per interrupt field, or
// "bussified" with all fields of the interrupt vector.
module prim_intr_hw #(parameter int unsigned Width = 1) (
// event
input [Width-1:0] event_intr_i,
// register interface
input [Width-1:0] reg2hw_intr_enable_q_i,
input [Width-1:0] reg2hw_intr_test_q_i,
input reg2hw_intr_test_qe_i,
input [Width-1:0] reg2hw_intr_state_q_i,
output hw2reg_intr_state_de_o,
output [Width-1:0] hw2reg_intr_state_d_o,
// outgoing interrupt
output [Width-1:0] intr_o
);
logic [Width-1:0] new_event;
assign new_event =
(({Width{reg2hw_intr_test_qe_i}} & reg2hw_intr_test_q_i) | event_intr_i);
assign hw2reg_intr_state_de_o = |new_event;
// for scalar interrupts, this resolves to '1' with new event
// for vector interrupts, new events are OR'd in to existing interrupt state
assign hw2reg_intr_state_d_o = new_event | reg2hw_intr_state_q_i;
assign intr_o = reg2hw_intr_state_q_i & reg2hw_intr_enable_q_i;
endmodule