-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Integrate Memory Island into chimera
Hw: Add memory island domain wrapper Sw: Add support to build chehsire bootrom for mem island integration
- Loading branch information
Showing
9 changed files
with
184 additions
and
92 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
// Copyright 2024 ETH Zurich and University of Bologna. | ||
// Solderpad Hardware License, Version 0.51, see LICENSE for details. | ||
// SPDX-License-Identifier: SHL-0.51 | ||
// | ||
// Lorenzo Leone <lleone@iis.ee.ethz.ch> | ||
|
||
module chimera_memisland_domain | ||
import chimera_pkg::*; | ||
import cheshire_pkg::*; | ||
#( | ||
parameter chimera_cfg_t Cfg = '0, | ||
parameter int unsigned NumWideMst = '0, | ||
parameter type axi_narrow_req_t = logic, | ||
parameter type axi_narrow_rsp_t = logic, | ||
parameter type axi_wide_req_t = logic, | ||
parameter type axi_wide_rsp_t = logic | ||
) ( | ||
input logic clk_i, | ||
input logic rst_ni, | ||
input axi_narrow_req_t axi_narrow_req_i, | ||
output axi_narrow_rsp_t axi_narrow_rsp_o, | ||
input axi_wide_req_t [NumWideMst-1:0] axi_wide_req_i, | ||
output axi_wide_rsp_t [NumWideMst-1:0] axi_wide_rsp_o | ||
); | ||
|
||
// Define needed parameters | ||
localparam axi_in_t AxiIn = gen_axi_in(Cfg.ChsCfg); // lleone: TODO: find a better solution | ||
localparam int unsigned AxiSlvIdWidth = Cfg.ChsCfg.AxiMstIdWidth + $clog2(AxiIn.num_in); | ||
localparam int unsigned WideSlaveIdWidth = $clog2(Cfg.MemIslWidePorts); | ||
localparam int unsigned WideDataWidth = Cfg.ChsCfg.AxiDataWidth * Cfg.MemIslNarrowToWideFactor; | ||
|
||
axi_narrow_req_t axi_memory_island_amo_req; | ||
axi_narrow_rsp_t axi_memory_island_amo_rsp; | ||
|
||
axi_riscv_atomics_structs #( | ||
.AxiAddrWidth(Cfg.ChsCfg.AddrWidth), | ||
.AxiDataWidth(Cfg.ChsCfg.AxiDataWidth), | ||
.AxiIdWidth(AxiSlvIdWidth), // lleone: TODO: solve issue wiyth declaration on top | ||
.AxiUserWidth(Cfg.ChsCfg.AxiUserWidth), | ||
.AxiMaxReadTxns(Cfg.ChsCfg.LlcMaxReadTxns), | ||
.AxiMaxWriteTxns(Cfg.ChsCfg.LlcMaxWriteTxns), | ||
.AxiUserAsId(1), | ||
.AxiUserIdMsb(Cfg.ChsCfg.AxiUserAmoMsb), | ||
.AxiUserIdLsb(Cfg.ChsCfg.AxiUserAmoLsb), | ||
.RiscvWordWidth(riscv::XLEN), | ||
.NAxiCuts(Cfg.ChsCfg.LlcAmoNumCuts), | ||
.axi_req_t(axi_narrow_req_t), | ||
.axi_rsp_t(axi_narrow_rsp_t) | ||
) i_memory_island_atomics ( | ||
.clk_i (clk_i), | ||
.rst_ni, | ||
.axi_slv_req_i(axi_narrow_req_i), | ||
.axi_slv_rsp_o(axi_narrow_rsp_o), | ||
.axi_mst_req_o(axi_memory_island_amo_req), | ||
.axi_mst_rsp_i(axi_memory_island_amo_rsp) | ||
); | ||
|
||
axi_memory_island_wrap #( | ||
.AddrWidth(Cfg.ChsCfg.AddrWidth), | ||
.NarrowDataWidth(Cfg.ChsCfg.AxiDataWidth), | ||
.WideDataWidth(WideDataWidth), | ||
.AxiNarrowIdWidth(AxiSlvIdWidth), // lleone: TODO: solve issue wiyth declaration on top | ||
.AxiWideIdWidth(WideSlaveIdWidth), | ||
.axi_narrow_req_t(axi_narrow_req_t), | ||
.axi_narrow_rsp_t(axi_narrow_rsp_t), | ||
.axi_wide_req_t(axi_wide_req_t), | ||
.axi_wide_rsp_t(axi_wide_rsp_t), | ||
.NumNarrowReq(Cfg.MemIslNarrowPorts), | ||
.NumWideReq(Cfg.MemIslWidePorts), | ||
.NumWideBanks(Cfg.MemIslNumWideBanks), | ||
.NarrowExtraBF(1), | ||
.WordsPerBank(Cfg.MemIslWordsPerBank) | ||
) i_memory_island ( | ||
.clk_i (clk_i), | ||
.rst_ni, | ||
.axi_narrow_req_i(axi_memory_island_amo_req), | ||
.axi_narrow_rsp_o(axi_memory_island_amo_rsp), | ||
// SCHEREMO: TODO: Demux wide accesses to go over narrow ports iff address not in memory island range | ||
.axi_wide_req_i (axi_wide_req_i), | ||
.axi_wide_rsp_o (axi_wide_rsp_o) | ||
); | ||
|
||
endmodule : chimera_memisland_domain |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.