Skip to content
Merged
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
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ sw-clean:

## Clone pulp-runtime as SW stack
PULP_RUNTIME_REMOTE ?= https://github.com/pulp-platform/pulp-runtime.git
PULP_RUNTIME_COMMIT ?= 1e3bccf # branch: lg/upstream
PULP_RUNTIME_COMMIT ?= aca74d1 # branch: lg/upstream

pulp-runtime:
git clone $(PULP_RUNTIME_REMOTE) $@
Expand Down
2 changes: 1 addition & 1 deletion rtl/pulp_cluster.sv
Original file line number Diff line number Diff line change
Expand Up @@ -1027,7 +1027,7 @@ generate
.test_en_i ( test_mode_i ),
.clk_en_i ( clk_core_en[i] ),
.base_addr_i ( base_addr_i ),
.cluster_id_i ( '0 ),
.cluster_id_i ( cluster_id_i ),
.ext_perf_o ( ext_perf[i] ),
.core_data_req_i ( demux_data_req[i] ),
.core_data_rsp_o ( demux_data_rsp[i] ),
Expand Down
4 changes: 2 additions & 2 deletions tb/pulp_cluster_tb.sv
Original file line number Diff line number Diff line change
Expand Up @@ -212,8 +212,8 @@ module pulp_cluster_tb;
};
assign addr_map[2] = '{ // Pulp Cluster
idx: 2,
start_addr: ClustBaseAddr,
end_addr: ClustBaseAddr + ClustExtOffs
start_addr: ClustBase,
end_addr: ClustBase + ClustExtOffs
};

// Crossbar Configuration and Instantiation
Expand Down
Loading