Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions hw/ip_templates/rv_plic/rtl/rv_plic.sv.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ module ${module_instance_name} import ${module_instance_name}_reg_pkg::*; #(
.q_o(intr_src_synced)
);

${module_instance_name}_gateway #(
rv_plic_gateway #(
.N_SOURCE (NumSrc)
) u_gateway (
.clk_i,
Expand All @@ -191,7 +191,7 @@ module ${module_instance_name} import ${module_instance_name}_reg_pkg::*; #(
// Target interrupt notification //
///////////////////////////////////
for (genvar i = 0 ; i < NumTarget ; i++) begin : gen_target
${module_instance_name}_target #(
rv_plic_target #(
.N_SOURCE (NumSrc),
.MAX_PRIO (MAX_PRIO)
) u_target (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
//
// RISC-V Platform-Level Interrupt Gateways module

module ${module_instance_name}_gateway #(
module rv_plic_gateway #(
parameter int N_SOURCE = 32
) (
input clk_i,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

`include "prim_assert.sv"

module ${module_instance_name}_target #(
module rv_plic_target #(
parameter int N_SOURCE = 32,
parameter int MAX_PRIO = 7,

Expand Down
Loading