mirror of
https://github.com/openhwgroup/cva6.git
synced 2025-04-19 03:44:46 -04:00
* Initial repository re-organization (#662) Initial attempt to split core from APU. Signed-off-by: MikeOpenHWGroup <mike@openhwgroup.org> Co-authored-by: Jean-Roch Coulon <jean-roch.coulon@invia.fr> Compile `corev_apu` (#667) * Makefile verilates corev_apu * Cleanup README * Fix URL to repo * Cleaned-up Makefile verilates corev_apu Signed-off-by: Mike Thompson <mike@openhwgroup.org> Add extended verification support (#685) * Makefile, riscv_pkg.sv: Select C64A6 or CV32A6 according to variant variable Signed-off-by: Jean-Roch Coulon <jean-roch.coulon@thalesgroup.com> * add RVFI tracer and debug support New files: rvfi_pkg.sv, rvfi_tracer.sv, ariane_rvfi.pkg.sv - RVFI ports are added to ariane module - rvfi_tracer.sv is a module added in ariane-testharness.sv - RVFI_TRACE enables RVFI trace generation Co-authored-by: Florian Zaruba <zarubaf@iis.ee.ethz.ch> Signed-off-by: Jean-Roch Coulon <jean-roch.coulon@thalesgroup.com> * Move example_tb from cva6 to core-v-verif project Signed-off-by: Jean-Roch Coulon <jean-roch.coulon@thalesgroup.com> * Makefile: remove useless rule for vsim Signed-off-by: André Sintzoff <andre.sintzoff@thalesgroup.com> * Makefile: add timescale definition when vsim is used Signed-off-by: André Sintzoff <andre.sintzoff@thalesgroup.com> * Makefile: add vcs support (fix #570) Signed-off-by: André Sintzoff <andre.sintzoff@thalesgroup.com> * rvfi_tracer.sv: fix compilation error raised by vcs Signed-off-by: André Sintzoff <andre.sintzoff@thalesgroup.com> * Makefile: use only 2 threads for verilator when using 4 threads, tests from riscv-compliance and riscv-tests test suite are randomly stucked with rv32ima configuration Signed-off-by: André Sintzoff <andre.sintzoff@thalesgroup.com> * Flist.cva6: cleanup for synthesis workflow Thales synthesis workflow does not manage comments at end of lines Signed-off-by: André Sintzoff <andre.sintzoff@thalesgroup.com> * Support FPGA generation - ariane_xilinx.sv: fix AXI bus expansion - .gitignore, Makefile, run.tcl: fix paths Signed-off-by: André Sintzoff <andre.sintzoff@thalesgroup.com> * riscv-dbg: update to 989389b0 (to support 32-bit CVA6 debug) Signed-off-by: André Sintzoff <andre.sintzoff@thalesgroup.com> * Create cva6_config_pkg to setup 32- or 64-bit configuration According to selected configuration, Makefile calls cv32a6_imac_sv0_config_pkg.sv or cv64a6_imac_sv39_config_pkg.sv Signed-off-by: Jean-Roch Coulon <jean-roch.coulon@thalesgroup.com> * Flist, ariane_wrapper.sv: add wrapper to expand rvfi and axi structures needed for dc_shell Signed-off-by: Jean-Roch Coulon <jean-roch.coulon@thalesgroup.com> * cv*a6_*_pkg.sv, riscv_pkg.sv: (Fix) Use the camel case for the localparams Signed-off-by: Jean-Roch Coulon <jean-roch.coulon@thalesgroup.com> * riscv_pkg.sv: clean-up the cva6_config_pkg import Signed-off-by: Jean-Roch Coulon <jean-roch.coulon@thalesgroup.com> * Makefile, ariane.sv: RVFI_TRACE define conditions RVFI port in ariane Signed-off-by: Jean-Roch Coulon <jean-roch.coulon@thalesgroup.com> Co-authored-by: Jean-Roch Coulon <jean-roch.coulon@thalesgroup.com> Co-authored-by: Florian Zaruba <zarubaf@iis.ee.ethz.ch> * Add lfsr.sv to manifest Signed-off-by: Mike Thompson <mike@openhwgroup.org> * Directory re-organzation * fpga/xilinx/xlnx_axi_dwidth_converter_dm_*: move files (#726) into the new file organisation Signed-off-by: André Sintzoff <andre.sintzoff@thalesgroup.com> * move mmu_sv32 and mmu_sv39, move bootrom, update path (#729) Signed-off-by: sjthales <sebastien.jacq@thalesgroup.com> Co-authored-by: Mike Thompson <mike@openhwgroup.org> Co-authored-by: Jean-Roch Coulon <jean-roch.coulon@thalesgroup.com> Co-authored-by: Florian Zaruba <zarubaf@iis.ee.ethz.ch> Co-authored-by: sébastien jacq <57099003+sjthales@users.noreply.github.com>
68 lines
3.1 KiB
Systemverilog
68 lines
3.1 KiB
Systemverilog
// Copyright 2018 ETH Zurich and University of Bologna.
|
|
// Copyright and related rights are licensed under the Solderpad Hardware
|
|
// License, Version 0.51 (the "License"); you may not use this file except in
|
|
// compliance with the License. You may obtain a copy of the License at
|
|
// http://solderpad.org/licenses/SHL-0.51. Unless required by applicable law
|
|
// or agreed to in writing, software, hardware and materials distributed under
|
|
// this License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
|
|
// CONDITIONS OF ANY KIND, either express or implied. See the License for the
|
|
// specific language governing permissions and limitations under the License.
|
|
//
|
|
// Description: Connects SV AXI interface to structs used by Ariane
|
|
// Author: Florian Zaruba <zarubaf@iis.ee.ethz.ch>
|
|
|
|
module axi_master_connect (
|
|
input ariane_axi::req_t axi_req_i,
|
|
output ariane_axi::resp_t axi_resp_o,
|
|
AXI_BUS.Master master
|
|
);
|
|
|
|
assign master.aw_id = axi_req_i.aw.id;
|
|
assign master.aw_addr = axi_req_i.aw.addr;
|
|
assign master.aw_len = axi_req_i.aw.len;
|
|
assign master.aw_size = axi_req_i.aw.size;
|
|
assign master.aw_burst = axi_req_i.aw.burst;
|
|
assign master.aw_lock = axi_req_i.aw.lock;
|
|
assign master.aw_cache = axi_req_i.aw.cache;
|
|
assign master.aw_prot = axi_req_i.aw.prot;
|
|
assign master.aw_qos = axi_req_i.aw.qos;
|
|
assign master.aw_atop = axi_req_i.aw.atop;
|
|
assign master.aw_region = axi_req_i.aw.region;
|
|
assign master.aw_user = '0;
|
|
assign master.aw_valid = axi_req_i.aw_valid;
|
|
assign axi_resp_o.aw_ready = master.aw_ready;
|
|
|
|
assign master.w_data = axi_req_i.w.data;
|
|
assign master.w_strb = axi_req_i.w.strb;
|
|
assign master.w_last = axi_req_i.w.last;
|
|
assign master.w_user = '0;
|
|
assign master.w_valid = axi_req_i.w_valid;
|
|
assign axi_resp_o.w_ready = master.w_ready;
|
|
|
|
assign axi_resp_o.b.id = master.b_id;
|
|
assign axi_resp_o.b.resp = master.b_resp;
|
|
assign axi_resp_o.b_valid = master.b_valid;
|
|
assign master.b_ready = axi_req_i.b_ready;
|
|
|
|
assign master.ar_id = axi_req_i.ar.id;
|
|
assign master.ar_addr = axi_req_i.ar.addr;
|
|
assign master.ar_len = axi_req_i.ar.len;
|
|
assign master.ar_size = axi_req_i.ar.size;
|
|
assign master.ar_burst = axi_req_i.ar.burst;
|
|
assign master.ar_lock = axi_req_i.ar.lock;
|
|
assign master.ar_cache = axi_req_i.ar.cache;
|
|
assign master.ar_prot = axi_req_i.ar.prot;
|
|
assign master.ar_qos = axi_req_i.ar.qos;
|
|
assign master.ar_region = axi_req_i.ar.region;
|
|
assign master.ar_user = '0;
|
|
assign master.ar_valid = axi_req_i.ar_valid;
|
|
assign axi_resp_o.ar_ready = master.ar_ready;
|
|
|
|
assign axi_resp_o.r.id = master.r_id;
|
|
assign axi_resp_o.r.data = master.r_data;
|
|
assign axi_resp_o.r.resp = master.r_resp;
|
|
assign axi_resp_o.r.last = master.r_last;
|
|
assign axi_resp_o.r_valid = master.r_valid;
|
|
assign master.r_ready = axi_req_i.r_ready;
|
|
|
|
endmodule
|