Merge branch 'master' into doc-isa-60x

This commit is contained in:
JeanRochCoulon 2025-03-19 00:01:56 +01:00 committed by GitHub
commit 57407337c9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 18 additions and 1 deletions

View file

@ -7,9 +7,18 @@ core/mmu_sv39 @sjthales
core/cvxif_example @Gchauvon
core/cvxif_fu.sv @Gchauvon
# APU
# HPDCache
core/cache_subsystem/hpdcache @cfuguet
core/cache_subsystem/cva6_hpdcache* @cfuguet
core/include/cv64a6_imafdc_sv39_hpdcache_config_pkg.sv @cfuguet
core/include/cv64a6_imafdc_sv39_hpdcache_wb_config_pkg.sv @cfuguet
# OpenPiton
corev_apu/openpiton @Jbalkind
core/cache_subsystem/wt_l15_adapter.sv @Jbalkind
core/include/cv64a6_imafdc_sv39_openpiton_config_pkg.sv @Jbalkind
## Documentation

View file

@ -186,6 +186,7 @@ module decoder
ecall = 1'b0;
ebreak = 1'b0;
check_fprm = 1'b0;
tinst = 32'h0;
if (~ex_i.valid) begin
case (instr.rtype.opcode)

View file

@ -269,6 +269,13 @@ module id_stage #(
end else begin
assign stall_instr_fetch[0] = stall_macro_deco;
end
end else begin
for (genvar i = 0; i < CVA6Cfg.NrIssuePorts; i++) begin
assign is_illegal_rvc[i] = 1'b0;
assign instruction_rvc[i] = fetch_entry_i[i].instruction;
assign is_compressed_rvc[i] = 1'b0;
assign stall_instr_fetch[i] = 1'b0;
end
end
// ---------------------------------------------------------