Skip to content

Commit

Permalink
Merge pull request #85 from pulp-platform/various-3
Browse files Browse the repository at this point in the history
Update JTAG IDCODE
  • Loading branch information
bluewww committed Jun 8, 2022
2 parents 47fb48e + 513483b commit 7fa2d75
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions rtl/fc/fc_subsystem.sv
Original file line number Diff line number Diff line change
Expand Up @@ -270,8 +270,8 @@ module fc_subsystem import cv32e40p_apu_core_pkg::*; #(
.DbgTriggerEn ( 1'b1 ),
.DbgHwBreakNum ( 1 ),
.SecureIbex ( 1'b0 ),
.DmHaltAddr ( 32'h1A110800 ),
.DmExceptionAddr ( 32'h1A110808 )
.DmHaltAddr ( `DEBUG_START_ADDR + dm::HaltAddress[31:0] ),
.DmExceptionAddr ( `DEBUG_START_ADDR + dm::ExceptionAddress[31:0] )
) lFC_CORE (
.clk_i ( clk_i ),
.rst_ni ( rst_ni ),
Expand Down
5 changes: 3 additions & 2 deletions rtl/pulp_soc/pulp_soc.sv
Original file line number Diff line number Diff line change
Expand Up @@ -937,8 +937,9 @@ module pulp_soc import dm::*; #(
);
assign s_lint_riscv_jtag_bus.wen = ~lint_riscv_jtag_bus_master_we;

jtag_tap_top jtag_tap_top_i
(
jtag_tap_top #(
.IDCODE_VALUE ( `PULP_JTAG_IDCODE )
) jtag_tap_top_i (
.tck_i ( jtag_tck_i ),
.trst_ni ( jtag_trst_ni ),
.tms_i ( jtag_tms_i ),
Expand Down

0 comments on commit 7fa2d75

Please sign in to comment.