├── .gitignore ├── .gitmodules ├── .travis.yml ├── ActionTypes.md ├── BugReporting.md ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── actions ├── .gitignore ├── Makefile ├── README.md ├── hdl_example │ ├── Makefile │ ├── README.md │ ├── doc │ │ ├── README.md │ │ ├── main_blocks.png │ │ └── top_blocks.png │ ├── hw │ │ ├── Makefile │ │ ├── action_axi_master.vhd │ │ ├── action_axi_nvme.vhd │ │ ├── action_axi_slave.vhd │ │ ├── action_config.sh │ │ ├── action_example.vhd_source │ │ ├── action_types.vhd │ │ └── action_wrapper.vhd_source │ ├── ip │ │ └── create_action_ip.tcl │ ├── sw │ │ ├── Makefile │ │ ├── snap_example.c │ │ └── snap_example.h │ └── tests │ │ └── hw_test.sh ├── hdl_multi_process │ ├── Makefile │ ├── hw │ │ ├── Makefile │ │ ├── action_config.sh │ │ ├── engines │ │ │ └── memcopy │ │ │ │ ├── action_memcopy.v │ │ │ │ ├── addr_send_channel.v │ │ │ │ ├── axi_lite_slave.v │ │ │ │ ├── axi_master_rd.v │ │ │ │ ├── axi_master_wr.v │ │ │ │ ├── ram_single_port.v │ │ │ │ ├── rd_result_check_channel.v │ │ │ │ └── wr_data_send_channel.v │ │ ├── framework │ │ │ ├── action_multi_process.v │ │ │ ├── action_wrapper.v_source │ │ │ ├── axi_lite_global_slave.v │ │ │ ├── multi_process_completion.v │ │ │ ├── multi_process_control.v │ │ │ ├── multi_process_framework.v_source │ │ │ ├── multi_process_manager.v │ │ │ └── multi_process_scheduler.v │ │ └── tcl │ │ │ └── design.tcl │ ├── ip │ │ ├── Makefile │ │ ├── engines │ │ │ └── Makefile │ │ ├── framework │ │ │ └── Makefile │ │ └── tcl │ │ │ └── create_framework_ip.tcl │ └── sw │ │ ├── Makefile │ │ ├── hdl_multi_process.c │ │ └── hdl_multi_process.h ├── hdl_single_engine │ ├── Makefile │ ├── README.md │ ├── hw │ │ ├── Makefile │ │ ├── action_config.sh │ │ ├── hdl │ │ │ ├── action_single_engine.v │ │ │ ├── action_wrapper.v │ │ │ ├── addr_send_channel.v │ │ │ ├── axi_lite_slave.v │ │ │ ├── axi_master_rd.v │ │ │ ├── axi_master_wr.v │ │ │ ├── ram_single_port.v │ │ │ ├── rd_result_check_channel.v │ │ │ └── wr_data_send_channel.v │ │ └── tcl │ │ │ └── example.tcl │ ├── ip │ │ └── create_action_ip.tcl │ ├── sw │ │ ├── Makefile │ │ ├── hdl_single_engine.c │ │ └── hdl_single_engine.h │ └── tests │ │ ├── hw_test.sh │ │ ├── hw_throughput_test.sh │ │ ├── process_bandwidth.awk │ │ └── process_variance.awk ├── hdl_unit_sim │ ├── Makefile │ ├── hw │ │ ├── Makefile │ │ ├── action_config.sh │ │ └── hdl │ │ │ ├── action_wrapper.v │ │ │ └── odma_dummy_action.v │ ├── ip │ │ └── create_action_ip.tcl │ └── sw │ │ ├── Makefile │ │ ├── hdl_unit_sim.c │ │ └── hdl_unit_sim.h ├── hls.mk ├── hls_decimal_mult │ ├── Makefile │ ├── README.md │ ├── hw │ │ ├── Makefile │ │ ├── action_decimal_mult.H │ │ └── action_decimal_mult.cpp │ ├── include │ │ └── common_decimal.h │ ├── sw │ │ ├── Makefile │ │ ├── action_decimal_mult.c │ │ └── snap_decimal_mult.c │ └── tests │ │ └── hw_test.sh ├── hls_hbm_memcopy_1024 │ ├── Makefile │ ├── README.md │ ├── hw │ │ ├── Makefile │ │ ├── hw_action_hbm_memcopy_1024.H │ │ └── hw_action_hbm_memcopy_1024.cpp │ ├── include │ │ └── action_memcopy.h │ ├── sw │ │ ├── Makefile │ │ └── snap_hbm_memcopy.c │ └── tests │ │ ├── clean.sh │ │ ├── hw_test.sh │ │ ├── hw_throughput_test.sh │ │ └── process.awk ├── hls_helloworld_1024 │ ├── Makefile │ ├── README.md │ ├── hw │ │ ├── Makefile │ │ ├── action_uppercase.H │ │ └── action_uppercase.cpp │ ├── include │ │ └── action_changecase.h │ ├── sw │ │ ├── Makefile │ │ └── snap_helloworld_1024.c │ └── tests │ │ └── hw_test.sh ├── hls_helloworld_512 │ ├── Makefile │ ├── README.md │ ├── hw │ │ ├── Makefile │ │ ├── action_uppercase.H │ │ └── action_uppercase.cpp │ ├── include │ │ └── action_changecase.h │ ├── sw │ │ ├── Makefile │ │ └── snap_helloworld_512.c │ └── tests │ │ └── hw_test.sh ├── hls_helloworld_python │ ├── Makefile │ ├── README.md │ ├── hw │ │ ├── Makefile │ │ ├── action_uppercase.H │ │ └── action_uppercase.cpp │ ├── include │ │ └── action_changecase_python.h │ ├── sw │ │ ├── Makefile │ │ ├── commands_on_sim.txt │ │ ├── etc │ │ │ └── trieres.png │ │ ├── requirements.txt │ │ ├── snap_helloworld_python.c │ │ ├── snap_helloworld_python.i │ │ ├── trieres_helloworld.ipynb │ │ └── trieres_helloworld_cosim.ipynb │ └── tests │ │ └── hw_test.sh ├── hls_image_filter │ ├── Makefile │ ├── README.md │ ├── hw │ │ ├── Makefile │ │ ├── action_pixel_filter.H │ │ └── action_pixel_filter.cpp │ ├── include │ │ ├── action_pixel_filtering.h │ │ └── tiger.h │ ├── sw │ │ ├── Makefile │ │ ├── apples.bmp │ │ ├── bmp.c │ │ ├── bmp.h │ │ ├── params.c │ │ ├── params.h │ │ ├── snap_image_filter.c │ │ ├── tiger.bmp │ │ ├── tiger_reference.bmp │ │ ├── tiger_small.bmp │ │ └── tiger_small_reference.bmp │ └── tests │ │ └── hw_test.sh ├── hls_memcopy_1024 │ ├── Makefile │ ├── README.md │ ├── hw │ │ ├── Makefile │ │ ├── hw_action_memcopy_1024.H │ │ └── hw_action_memcopy_1024.cpp │ ├── include │ │ └── action_memcopy.h │ ├── sw │ │ ├── Makefile │ │ └── snap_memcopy.c │ └── tests │ │ ├── clean.sh │ │ ├── hw_test.sh │ │ ├── hw_throughput_test.sh │ │ └── process.awk ├── hls_memcopy_512 │ ├── Makefile │ ├── README.md │ ├── hw │ │ ├── Makefile │ │ ├── hw_action_memcopy_512.H │ │ └── hw_action_memcopy_512.cpp │ ├── include │ │ └── action_memcopy.h │ ├── sw │ │ ├── Makefile │ │ └── snap_memcopy.c │ └── tests │ │ ├── clean.sh │ │ ├── hw_test.sh │ │ ├── hw_throughput_test.sh │ │ └── process.awk ├── hls_udp_512 │ ├── Makefile │ ├── README.md │ ├── hw │ │ ├── Makefile │ │ ├── README.md │ │ ├── action_test.h │ │ ├── eth_decode.cpp │ │ ├── hls_udp.cpp │ │ ├── hls_udp.h │ │ └── write_data.cpp │ ├── include │ │ └── action_udp.H │ ├── sw │ │ ├── Makefile │ │ └── oc-accel_udp.c │ └── tests │ │ └── hw_test.sh ├── include │ └── hls_snap_1024.H ├── scripts │ ├── create_run_hls_script.sh │ └── oc_jenkins.sh └── software.mk ├── check_ocse.sh ├── check_platform.sh ├── debug_timing ├── defconfig ├── OC-AD9H3.hdl_example.defconfig ├── OC-AD9H3.hdl_single_engine.defconfig ├── OC-AD9H3.hls_decimal_mult.defconfig ├── OC-AD9H3.hls_hbm_memcopy_1024.defconfig ├── OC-AD9H3.hls_helloworld_1024.defconfig ├── OC-AD9H3.hls_helloworld_512.defconfig ├── OC-AD9H3.hls_image_filter.defconfig ├── OC-AD9H3.hls_memcopy_1024.defconfig ├── OC-AD9H3.hls_udp_512.defconfig ├── OC-AD9H335.hdl_example.defconfig ├── OC-AD9H335.hdl_single_engine.defconfig ├── OC-AD9H335.hls_decimal_mult.defconfig ├── OC-AD9H335.hls_hbm_memcopy_1024.defconfig ├── OC-AD9H335.hls_helloworld_1024.defconfig ├── OC-AD9H335.hls_helloworld_512.defconfig ├── OC-AD9H335.hls_helloworld_python.defconfig ├── OC-AD9H335.hls_image_filter.defconfig ├── OC-AD9H335.hls_memcopy_1024.defconfig ├── OC-AD9H335.hls_udp_512.defconfig ├── OC-AD9H7.hdl_example.defconfig ├── OC-AD9H7.hdl_single_engine.defconfig ├── OC-AD9H7.hls_decimal_mult.defconfig ├── OC-AD9H7.hls_hbm_memcopy_1024.defconfig ├── OC-AD9H7.hls_helloworld_1024.defconfig ├── OC-AD9H7.hls_helloworld_512.defconfig ├── OC-AD9H7.hls_image_filter.defconfig ├── OC-AD9H7.hls_memcopy_1024.defconfig ├── OC-AD9H7.hls_udp_512.defconfig ├── OC-AD9V3.hdl_example.defconfig ├── OC-AD9V3.hdl_single_engine.defconfig ├── OC-AD9V3.hls_decimal_mult.defconfig ├── OC-AD9V3.hls_helloworld_1024.defconfig ├── OC-AD9V3.hls_helloworld_512.defconfig ├── OC-AD9V3.hls_helloworld_python.defconfig ├── OC-AD9V3.hls_image_filter.defconfig ├── OC-AD9V3.hls_memcopy_1024.defconfig ├── OC-AD9V3.hls_memcopy_512.defconfig ├── OC-BW250SOC.hdl_example.defconfig ├── OC-BW250SOC.hdl_single_engine.defconfig ├── OC-BW250SOC.hls_decimal_mult.defconfig ├── OC-BW250SOC.hls_helloworld_1024.defconfig ├── OC-BW250SOC.hls_helloworld_512.defconfig ├── OC-BW250SOC.hls_image_filter.defconfig ├── OC-BW250SOC.hls_memcopy_1024.defconfig ├── OC-BW250SOC.hls_memcopy_512.defconfig ├── README.md ├── hdl_unit_sim.bridge.defconfig ├── hdl_unit_sim.odma.defconfig ├── hdl_unit_sim.odma_mm_512.defconfig ├── hdl_unit_sim.odma_st_1024.defconfig └── hdl_unit_sim.odma_st_512.defconfig ├── display_traces ├── hardware ├── .gitignore ├── Makefile ├── README.md ├── hdl │ ├── core │ │ ├── .gitignore │ │ ├── framework_afu.v │ │ ├── oc_action_core.v │ │ ├── oc_function.v │ │ ├── oc_snap_core.v │ │ └── snap_global_vars.v_source │ ├── hls │ │ └── action_wrapper.v │ ├── nvme │ │ ├── nvme_buffer_ram.sv │ │ ├── nvme_defines.sv │ │ ├── nvme_host.sv │ │ ├── nvme_host_slave.sv │ │ ├── nvme_host_wrap.v │ │ ├── nvme_io_track.sv │ │ ├── nvme_pcie_master.sv │ │ └── nvme_pcie_slave.sv │ ├── oc │ │ ├── axi_lite_master.v │ │ ├── brdg_axi_slave.v │ │ ├── brdg_axi_slave_cmd_fifo.v │ │ ├── brdg_command_encode.v │ │ ├── brdg_context_surveil.v │ │ ├── brdg_data_bridge.v │ │ ├── brdg_interrupt.v │ │ ├── brdg_partial_sequencer.v │ │ ├── brdg_rd_order_mng_array.v │ │ ├── brdg_response_decode.v │ │ ├── brdg_retry_queue.v │ │ ├── brdg_tlx_cmd_converter.v │ │ ├── brdg_tlx_rsp_converter.v │ │ ├── brdg_wr_order_mng_array.v │ │ ├── brdg_wrapper.v │ │ ├── fifo_async.v │ │ ├── fifo_sync.v │ │ ├── mmio.v │ │ ├── mmio_wrapper.v │ │ ├── ram_simple_dual.v │ │ ├── ram_true_dual.v │ │ └── tlx_mmio_converter.v │ └── odma │ │ ├── README.md │ │ ├── odma.v │ │ ├── odma_a2h_mm_engine.v │ │ ├── odma_a2h_st_engine.v │ │ ├── odma_completion_manager.v │ │ ├── odma_defines.v │ │ ├── odma_descriptor_manager.v │ │ ├── odma_h2a_mm_engine.v │ │ ├── odma_h2a_st_engine.v │ │ ├── odma_lcl_rd_arbiter.v │ │ ├── odma_lcl_wr_arbiter.v │ │ ├── odma_registers.v │ │ └── odma_wrapper.v ├── setup │ ├── build_mcs.tcl │ ├── cov.ccf │ ├── create_eth_100G_ip.tcl │ ├── create_framework.tcl │ ├── create_hbm.tcl │ ├── create_hbm_for_simu.tcl │ ├── create_hls_ip.tcl │ ├── create_nvme_host.tcl │ ├── create_other_strategy_impls.tcl │ ├── create_snap_ip.tcl │ ├── export_irun.tcl │ ├── export_modelsim.tcl │ ├── export_questa.tcl │ ├── export_xcelium.tcl │ ├── export_xsim.tcl │ ├── flash_mcs.tcl │ ├── gen_probe_ltx.tcl │ ├── ila_example.xdc │ ├── oc_pr_image.tcl │ ├── oc_pr_route_action.tcl │ ├── oc_pr_route_static.tcl │ ├── oc_pr_synth_action.tcl │ ├── oc_pr_synth_static.tcl │ ├── patch_NVMe.sh │ ├── patch_sim.sh │ ├── patch_version.sh │ ├── snap_bitstream_step.tcl │ ├── snap_build.tcl │ ├── snap_cloud_build.tcl │ ├── snap_impl.xdc │ ├── snap_impl_step.tcl │ ├── snap_link.xdc │ ├── snap_synth_step.tcl │ ├── snap_timing.xdc │ ├── unit_sim.tcl │ └── util.tcl └── sim │ ├── README.md │ ├── debug3_action_gmem_ddr4.svwf │ ├── debug3_action_gmem_ddr4.wcfg │ ├── debug3_action_gmem_hbm.svwf │ ├── debug3_action_gmem_hbm.wcfg │ ├── fastest.parms │ ├── ncaet.tcl │ ├── ncrun.tcl │ ├── nvme │ ├── endp_4_pipe32.soma │ ├── nvme_model.v │ └── pcie_endp_model.v │ ├── nvme_lite │ ├── Makefile │ └── nvme_top_i.sv │ ├── pslse.parms │ ├── run_sim │ ├── shortlist.sh │ ├── testlist.sh │ ├── testlist_simple.sh │ ├── unit_verif │ ├── action_bfm │ │ ├── act_cfg_obj.sv │ │ ├── action_agent.sv │ │ ├── action_bfm_pkg.svh │ │ ├── action_seqr.sv │ │ ├── action_seqr_st.sv │ │ ├── axi_lite_slv_agent.sv │ │ ├── axi_mm_mst_agent.sv │ │ ├── axi_mm_slv_agent.sv │ │ ├── axi_st_mst_agent.sv │ │ └── axi_st_slv_agent.sv │ ├── env │ │ ├── action_tb_base_test.sv │ │ ├── action_tb_env.sv │ │ ├── action_tb_pkg.svh │ │ ├── action_tb_test_lib.sv │ │ ├── odma_test_lib.sv │ │ ├── odma_test_lib_st.sv │ │ └── tb_vseqr.sv │ ├── mon │ │ ├── axi_lite_monitor.sv │ │ ├── axi_mm_monitor.sv │ │ ├── axi_st_monitor.sv │ │ └── tlx_afu_monitor.sv │ ├── sb │ │ ├── bridge_check_scoreboard.sv │ │ ├── odma_check_scoreboard.sv │ │ └── odma_reg_defines.sv │ ├── tl_bfm │ │ ├── env │ │ │ ├── dlx_tlx_interface.sv │ │ │ └── tl_bfm_pkg.svh │ │ ├── sb │ │ │ ├── sb.svh │ │ │ ├── tl_mem_model.sv │ │ │ └── tl_scoreboard.sv │ │ ├── seq_lib │ │ │ ├── bfm_seq_lib.sv │ │ │ ├── bfm_seq_lib_mmio_intrp.sv │ │ │ ├── bfm_seq_lib_rand_axi.sv │ │ │ ├── bfm_seq_lib_rand_axi_resp.sv │ │ │ ├── bfm_seq_lib_rand_resp.sv │ │ │ ├── bfm_sequence_base.sv │ │ │ ├── odma_seq_lib.sv │ │ │ ├── odma_seq_lib_st.sv │ │ │ ├── odma_seq_lib_unalign.sv │ │ │ └── test_list.svh │ │ ├── tl │ │ │ ├── tl.svh │ │ │ ├── tl_agent.sv │ │ │ ├── tl_dl_if.sv │ │ │ ├── tl_rx_monitor.sv │ │ │ ├── tl_tx_driver.sv │ │ │ ├── tl_tx_monitor.sv │ │ │ └── tl_tx_seqr.sv │ │ └── util │ │ │ ├── dl_credit_trans.sv │ │ │ ├── host_mem_model.sv │ │ │ ├── tl_cfg_obj.sv │ │ │ ├── tl_manager.sv │ │ │ ├── tl_rx_trans.sv │ │ │ ├── tl_trans.sv │ │ │ ├── tl_tx_trans.sv │ │ │ └── util.svh │ └── util │ │ ├── afu_tlx_transaction.sv │ │ ├── axi_lite_transaction.sv │ │ ├── axi_mm_transaction.sv │ │ ├── axi_st_transaction.sv │ │ ├── brdg_cfg_obj.sv │ │ ├── intrp_interface.sv │ │ ├── intrp_transaction.sv │ │ ├── odma_desp_transaction.sv │ │ ├── tlx_afu_interface.sv │ │ └── tlx_afu_transaction.sv │ ├── xsaet.tcl │ └── xsrun.tcl ├── ocaccel_workflow.py ├── scripts ├── .gitignore ├── Kconfig ├── Makefile ├── full_regression_list ├── ide │ ├── configure.py │ ├── env_check.py │ ├── env_clean.py │ ├── make_cloud_action.py │ ├── make_cloud_base.py │ ├── make_image.py │ ├── make_model.py │ ├── ocaccel_utils.py │ ├── ocaccel_workflow.py │ ├── qa.py │ └── run_sim.py ├── jenkins_regression.sh ├── jenkins_sanity_image.ksh ├── jenkins_sanity_sim.ksh ├── odma_jenkins_regression.sh ├── odma_regression_list ├── parse_unit_sim_result.pl ├── regression_list ├── snap_cfg └── utils │ └── hdl_pp │ ├── README.md │ ├── eperl │ ├── plugins │ ├── EperlUtil.pm │ ├── assert.pm │ ├── eperl.pm │ ├── example │ ├── fifo.pm │ ├── flop.pm │ ├── pipe.pm │ ├── ram.pm │ └── retime.pm │ ├── pre_vcp │ └── vcp ├── setup_tools.ksh ├── snap_env ├── snap_path.sh └── software ├── Makefile ├── README.md ├── config.mk ├── include ├── libosnap.h ├── osnap_global_regs.h ├── osnap_hls_if.h ├── osnap_internal.h ├── osnap_queue.h ├── osnap_tools.h └── osnap_types.h ├── lib ├── Makefile └── osnap.c └── tools ├── .gitignore ├── Makefile ├── cfg_snap_actions.pl ├── cfg_snap_actions.sh ├── force_cpu.c ├── force_cpu.h ├── oc_find_card ├── oc_maint.c ├── simple_reg_access.c ├── simple_reg_access.sh ├── snap_peek.c ├── snap_poke.c └── soft_reset.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/.travis.yml -------------------------------------------------------------------------------- /ActionTypes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/ActionTypes.md -------------------------------------------------------------------------------- /BugReporting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/BugReporting.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/README.md -------------------------------------------------------------------------------- /actions/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/.gitignore -------------------------------------------------------------------------------- /actions/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/Makefile -------------------------------------------------------------------------------- /actions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/README.md -------------------------------------------------------------------------------- /actions/hdl_example/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hdl_example/Makefile -------------------------------------------------------------------------------- /actions/hdl_example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hdl_example/README.md -------------------------------------------------------------------------------- /actions/hdl_example/doc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hdl_example/doc/README.md -------------------------------------------------------------------------------- /actions/hdl_example/doc/main_blocks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hdl_example/doc/main_blocks.png -------------------------------------------------------------------------------- /actions/hdl_example/doc/top_blocks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hdl_example/doc/top_blocks.png -------------------------------------------------------------------------------- /actions/hdl_example/hw/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hdl_example/hw/Makefile -------------------------------------------------------------------------------- /actions/hdl_example/hw/action_axi_master.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hdl_example/hw/action_axi_master.vhd -------------------------------------------------------------------------------- /actions/hdl_example/hw/action_axi_nvme.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hdl_example/hw/action_axi_nvme.vhd -------------------------------------------------------------------------------- /actions/hdl_example/hw/action_axi_slave.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hdl_example/hw/action_axi_slave.vhd -------------------------------------------------------------------------------- /actions/hdl_example/hw/action_config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hdl_example/hw/action_config.sh -------------------------------------------------------------------------------- /actions/hdl_example/hw/action_example.vhd_source: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hdl_example/hw/action_example.vhd_source -------------------------------------------------------------------------------- /actions/hdl_example/hw/action_types.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hdl_example/hw/action_types.vhd -------------------------------------------------------------------------------- /actions/hdl_example/hw/action_wrapper.vhd_source: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hdl_example/hw/action_wrapper.vhd_source -------------------------------------------------------------------------------- /actions/hdl_example/ip/create_action_ip.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hdl_example/ip/create_action_ip.tcl -------------------------------------------------------------------------------- /actions/hdl_example/sw/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hdl_example/sw/Makefile -------------------------------------------------------------------------------- /actions/hdl_example/sw/snap_example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hdl_example/sw/snap_example.c -------------------------------------------------------------------------------- /actions/hdl_example/sw/snap_example.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hdl_example/sw/snap_example.h -------------------------------------------------------------------------------- /actions/hdl_example/tests/hw_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hdl_example/tests/hw_test.sh -------------------------------------------------------------------------------- /actions/hdl_multi_process/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hdl_multi_process/Makefile -------------------------------------------------------------------------------- /actions/hdl_multi_process/hw/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hdl_multi_process/hw/Makefile -------------------------------------------------------------------------------- /actions/hdl_multi_process/hw/action_config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hdl_multi_process/hw/action_config.sh -------------------------------------------------------------------------------- /actions/hdl_multi_process/hw/engines/memcopy/action_memcopy.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hdl_multi_process/hw/engines/memcopy/action_memcopy.v -------------------------------------------------------------------------------- /actions/hdl_multi_process/hw/engines/memcopy/addr_send_channel.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hdl_multi_process/hw/engines/memcopy/addr_send_channel.v -------------------------------------------------------------------------------- /actions/hdl_multi_process/hw/engines/memcopy/axi_lite_slave.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hdl_multi_process/hw/engines/memcopy/axi_lite_slave.v -------------------------------------------------------------------------------- /actions/hdl_multi_process/hw/engines/memcopy/axi_master_rd.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hdl_multi_process/hw/engines/memcopy/axi_master_rd.v -------------------------------------------------------------------------------- /actions/hdl_multi_process/hw/engines/memcopy/axi_master_wr.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hdl_multi_process/hw/engines/memcopy/axi_master_wr.v -------------------------------------------------------------------------------- /actions/hdl_multi_process/hw/engines/memcopy/ram_single_port.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hdl_multi_process/hw/engines/memcopy/ram_single_port.v -------------------------------------------------------------------------------- /actions/hdl_multi_process/hw/engines/memcopy/rd_result_check_channel.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hdl_multi_process/hw/engines/memcopy/rd_result_check_channel.v -------------------------------------------------------------------------------- /actions/hdl_multi_process/hw/engines/memcopy/wr_data_send_channel.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hdl_multi_process/hw/engines/memcopy/wr_data_send_channel.v -------------------------------------------------------------------------------- /actions/hdl_multi_process/hw/framework/action_multi_process.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hdl_multi_process/hw/framework/action_multi_process.v -------------------------------------------------------------------------------- /actions/hdl_multi_process/hw/framework/action_wrapper.v_source: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hdl_multi_process/hw/framework/action_wrapper.v_source -------------------------------------------------------------------------------- /actions/hdl_multi_process/hw/framework/axi_lite_global_slave.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hdl_multi_process/hw/framework/axi_lite_global_slave.v -------------------------------------------------------------------------------- /actions/hdl_multi_process/hw/framework/multi_process_completion.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hdl_multi_process/hw/framework/multi_process_completion.v -------------------------------------------------------------------------------- /actions/hdl_multi_process/hw/framework/multi_process_control.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hdl_multi_process/hw/framework/multi_process_control.v -------------------------------------------------------------------------------- /actions/hdl_multi_process/hw/framework/multi_process_framework.v_source: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hdl_multi_process/hw/framework/multi_process_framework.v_source -------------------------------------------------------------------------------- /actions/hdl_multi_process/hw/framework/multi_process_manager.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hdl_multi_process/hw/framework/multi_process_manager.v -------------------------------------------------------------------------------- /actions/hdl_multi_process/hw/framework/multi_process_scheduler.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hdl_multi_process/hw/framework/multi_process_scheduler.v -------------------------------------------------------------------------------- /actions/hdl_multi_process/hw/tcl/design.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hdl_multi_process/hw/tcl/design.tcl -------------------------------------------------------------------------------- /actions/hdl_multi_process/ip/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hdl_multi_process/ip/Makefile -------------------------------------------------------------------------------- /actions/hdl_multi_process/ip/engines/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hdl_multi_process/ip/engines/Makefile -------------------------------------------------------------------------------- /actions/hdl_multi_process/ip/framework/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hdl_multi_process/ip/framework/Makefile -------------------------------------------------------------------------------- /actions/hdl_multi_process/ip/tcl/create_framework_ip.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hdl_multi_process/ip/tcl/create_framework_ip.tcl -------------------------------------------------------------------------------- /actions/hdl_multi_process/sw/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hdl_multi_process/sw/Makefile -------------------------------------------------------------------------------- /actions/hdl_multi_process/sw/hdl_multi_process.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hdl_multi_process/sw/hdl_multi_process.c -------------------------------------------------------------------------------- /actions/hdl_multi_process/sw/hdl_multi_process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hdl_multi_process/sw/hdl_multi_process.h -------------------------------------------------------------------------------- /actions/hdl_single_engine/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hdl_single_engine/Makefile -------------------------------------------------------------------------------- /actions/hdl_single_engine/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hdl_single_engine/README.md -------------------------------------------------------------------------------- /actions/hdl_single_engine/hw/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hdl_single_engine/hw/Makefile -------------------------------------------------------------------------------- /actions/hdl_single_engine/hw/action_config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hdl_single_engine/hw/action_config.sh -------------------------------------------------------------------------------- /actions/hdl_single_engine/hw/hdl/action_single_engine.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hdl_single_engine/hw/hdl/action_single_engine.v -------------------------------------------------------------------------------- /actions/hdl_single_engine/hw/hdl/action_wrapper.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hdl_single_engine/hw/hdl/action_wrapper.v -------------------------------------------------------------------------------- /actions/hdl_single_engine/hw/hdl/addr_send_channel.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hdl_single_engine/hw/hdl/addr_send_channel.v -------------------------------------------------------------------------------- /actions/hdl_single_engine/hw/hdl/axi_lite_slave.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hdl_single_engine/hw/hdl/axi_lite_slave.v -------------------------------------------------------------------------------- /actions/hdl_single_engine/hw/hdl/axi_master_rd.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hdl_single_engine/hw/hdl/axi_master_rd.v -------------------------------------------------------------------------------- /actions/hdl_single_engine/hw/hdl/axi_master_wr.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hdl_single_engine/hw/hdl/axi_master_wr.v -------------------------------------------------------------------------------- /actions/hdl_single_engine/hw/hdl/ram_single_port.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hdl_single_engine/hw/hdl/ram_single_port.v -------------------------------------------------------------------------------- /actions/hdl_single_engine/hw/hdl/rd_result_check_channel.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hdl_single_engine/hw/hdl/rd_result_check_channel.v -------------------------------------------------------------------------------- /actions/hdl_single_engine/hw/hdl/wr_data_send_channel.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hdl_single_engine/hw/hdl/wr_data_send_channel.v -------------------------------------------------------------------------------- /actions/hdl_single_engine/hw/tcl/example.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hdl_single_engine/hw/tcl/example.tcl -------------------------------------------------------------------------------- /actions/hdl_single_engine/ip/create_action_ip.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hdl_single_engine/ip/create_action_ip.tcl -------------------------------------------------------------------------------- /actions/hdl_single_engine/sw/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hdl_single_engine/sw/Makefile -------------------------------------------------------------------------------- /actions/hdl_single_engine/sw/hdl_single_engine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hdl_single_engine/sw/hdl_single_engine.c -------------------------------------------------------------------------------- /actions/hdl_single_engine/sw/hdl_single_engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hdl_single_engine/sw/hdl_single_engine.h -------------------------------------------------------------------------------- /actions/hdl_single_engine/tests/hw_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hdl_single_engine/tests/hw_test.sh -------------------------------------------------------------------------------- /actions/hdl_single_engine/tests/hw_throughput_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hdl_single_engine/tests/hw_throughput_test.sh -------------------------------------------------------------------------------- /actions/hdl_single_engine/tests/process_bandwidth.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hdl_single_engine/tests/process_bandwidth.awk -------------------------------------------------------------------------------- /actions/hdl_single_engine/tests/process_variance.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hdl_single_engine/tests/process_variance.awk -------------------------------------------------------------------------------- /actions/hdl_unit_sim/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hdl_unit_sim/Makefile -------------------------------------------------------------------------------- /actions/hdl_unit_sim/hw/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hdl_unit_sim/hw/Makefile -------------------------------------------------------------------------------- /actions/hdl_unit_sim/hw/action_config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hdl_unit_sim/hw/action_config.sh -------------------------------------------------------------------------------- /actions/hdl_unit_sim/hw/hdl/action_wrapper.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hdl_unit_sim/hw/hdl/action_wrapper.v -------------------------------------------------------------------------------- /actions/hdl_unit_sim/hw/hdl/odma_dummy_action.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hdl_unit_sim/hw/hdl/odma_dummy_action.v -------------------------------------------------------------------------------- /actions/hdl_unit_sim/ip/create_action_ip.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hdl_unit_sim/ip/create_action_ip.tcl -------------------------------------------------------------------------------- /actions/hdl_unit_sim/sw/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hdl_unit_sim/sw/Makefile -------------------------------------------------------------------------------- /actions/hdl_unit_sim/sw/hdl_unit_sim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hdl_unit_sim/sw/hdl_unit_sim.c -------------------------------------------------------------------------------- /actions/hdl_unit_sim/sw/hdl_unit_sim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hdl_unit_sim/sw/hdl_unit_sim.h -------------------------------------------------------------------------------- /actions/hls.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hls.mk -------------------------------------------------------------------------------- /actions/hls_decimal_mult/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hls_decimal_mult/Makefile -------------------------------------------------------------------------------- /actions/hls_decimal_mult/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hls_decimal_mult/README.md -------------------------------------------------------------------------------- /actions/hls_decimal_mult/hw/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hls_decimal_mult/hw/Makefile -------------------------------------------------------------------------------- /actions/hls_decimal_mult/hw/action_decimal_mult.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hls_decimal_mult/hw/action_decimal_mult.H -------------------------------------------------------------------------------- /actions/hls_decimal_mult/hw/action_decimal_mult.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hls_decimal_mult/hw/action_decimal_mult.cpp -------------------------------------------------------------------------------- /actions/hls_decimal_mult/include/common_decimal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hls_decimal_mult/include/common_decimal.h -------------------------------------------------------------------------------- /actions/hls_decimal_mult/sw/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hls_decimal_mult/sw/Makefile -------------------------------------------------------------------------------- /actions/hls_decimal_mult/sw/action_decimal_mult.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hls_decimal_mult/sw/action_decimal_mult.c -------------------------------------------------------------------------------- /actions/hls_decimal_mult/sw/snap_decimal_mult.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hls_decimal_mult/sw/snap_decimal_mult.c -------------------------------------------------------------------------------- /actions/hls_decimal_mult/tests/hw_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hls_decimal_mult/tests/hw_test.sh -------------------------------------------------------------------------------- /actions/hls_hbm_memcopy_1024/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hls_hbm_memcopy_1024/Makefile -------------------------------------------------------------------------------- /actions/hls_hbm_memcopy_1024/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hls_hbm_memcopy_1024/README.md -------------------------------------------------------------------------------- /actions/hls_hbm_memcopy_1024/hw/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hls_hbm_memcopy_1024/hw/Makefile -------------------------------------------------------------------------------- /actions/hls_hbm_memcopy_1024/hw/hw_action_hbm_memcopy_1024.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hls_hbm_memcopy_1024/hw/hw_action_hbm_memcopy_1024.H -------------------------------------------------------------------------------- /actions/hls_hbm_memcopy_1024/hw/hw_action_hbm_memcopy_1024.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hls_hbm_memcopy_1024/hw/hw_action_hbm_memcopy_1024.cpp -------------------------------------------------------------------------------- /actions/hls_hbm_memcopy_1024/include/action_memcopy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hls_hbm_memcopy_1024/include/action_memcopy.h -------------------------------------------------------------------------------- /actions/hls_hbm_memcopy_1024/sw/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hls_hbm_memcopy_1024/sw/Makefile -------------------------------------------------------------------------------- /actions/hls_hbm_memcopy_1024/sw/snap_hbm_memcopy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hls_hbm_memcopy_1024/sw/snap_hbm_memcopy.c -------------------------------------------------------------------------------- /actions/hls_hbm_memcopy_1024/tests/clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hls_hbm_memcopy_1024/tests/clean.sh -------------------------------------------------------------------------------- /actions/hls_hbm_memcopy_1024/tests/hw_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hls_hbm_memcopy_1024/tests/hw_test.sh -------------------------------------------------------------------------------- /actions/hls_hbm_memcopy_1024/tests/hw_throughput_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hls_hbm_memcopy_1024/tests/hw_throughput_test.sh -------------------------------------------------------------------------------- /actions/hls_hbm_memcopy_1024/tests/process.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hls_hbm_memcopy_1024/tests/process.awk -------------------------------------------------------------------------------- /actions/hls_helloworld_1024/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hls_helloworld_1024/Makefile -------------------------------------------------------------------------------- /actions/hls_helloworld_1024/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hls_helloworld_1024/README.md -------------------------------------------------------------------------------- /actions/hls_helloworld_1024/hw/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hls_helloworld_1024/hw/Makefile -------------------------------------------------------------------------------- /actions/hls_helloworld_1024/hw/action_uppercase.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hls_helloworld_1024/hw/action_uppercase.H -------------------------------------------------------------------------------- /actions/hls_helloworld_1024/hw/action_uppercase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hls_helloworld_1024/hw/action_uppercase.cpp -------------------------------------------------------------------------------- /actions/hls_helloworld_1024/include/action_changecase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hls_helloworld_1024/include/action_changecase.h -------------------------------------------------------------------------------- /actions/hls_helloworld_1024/sw/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hls_helloworld_1024/sw/Makefile -------------------------------------------------------------------------------- /actions/hls_helloworld_1024/sw/snap_helloworld_1024.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hls_helloworld_1024/sw/snap_helloworld_1024.c -------------------------------------------------------------------------------- /actions/hls_helloworld_1024/tests/hw_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hls_helloworld_1024/tests/hw_test.sh -------------------------------------------------------------------------------- /actions/hls_helloworld_512/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hls_helloworld_512/Makefile -------------------------------------------------------------------------------- /actions/hls_helloworld_512/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hls_helloworld_512/README.md -------------------------------------------------------------------------------- /actions/hls_helloworld_512/hw/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hls_helloworld_512/hw/Makefile -------------------------------------------------------------------------------- /actions/hls_helloworld_512/hw/action_uppercase.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hls_helloworld_512/hw/action_uppercase.H -------------------------------------------------------------------------------- /actions/hls_helloworld_512/hw/action_uppercase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hls_helloworld_512/hw/action_uppercase.cpp -------------------------------------------------------------------------------- /actions/hls_helloworld_512/include/action_changecase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hls_helloworld_512/include/action_changecase.h -------------------------------------------------------------------------------- /actions/hls_helloworld_512/sw/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hls_helloworld_512/sw/Makefile -------------------------------------------------------------------------------- /actions/hls_helloworld_512/sw/snap_helloworld_512.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hls_helloworld_512/sw/snap_helloworld_512.c -------------------------------------------------------------------------------- /actions/hls_helloworld_512/tests/hw_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hls_helloworld_512/tests/hw_test.sh -------------------------------------------------------------------------------- /actions/hls_helloworld_python/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hls_helloworld_python/Makefile -------------------------------------------------------------------------------- /actions/hls_helloworld_python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hls_helloworld_python/README.md -------------------------------------------------------------------------------- /actions/hls_helloworld_python/hw/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hls_helloworld_python/hw/Makefile -------------------------------------------------------------------------------- /actions/hls_helloworld_python/hw/action_uppercase.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hls_helloworld_python/hw/action_uppercase.H -------------------------------------------------------------------------------- /actions/hls_helloworld_python/hw/action_uppercase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hls_helloworld_python/hw/action_uppercase.cpp -------------------------------------------------------------------------------- /actions/hls_helloworld_python/include/action_changecase_python.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hls_helloworld_python/include/action_changecase_python.h -------------------------------------------------------------------------------- /actions/hls_helloworld_python/sw/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hls_helloworld_python/sw/Makefile -------------------------------------------------------------------------------- /actions/hls_helloworld_python/sw/commands_on_sim.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hls_helloworld_python/sw/commands_on_sim.txt -------------------------------------------------------------------------------- /actions/hls_helloworld_python/sw/etc/trieres.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hls_helloworld_python/sw/etc/trieres.png -------------------------------------------------------------------------------- /actions/hls_helloworld_python/sw/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hls_helloworld_python/sw/requirements.txt -------------------------------------------------------------------------------- /actions/hls_helloworld_python/sw/snap_helloworld_python.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hls_helloworld_python/sw/snap_helloworld_python.c -------------------------------------------------------------------------------- /actions/hls_helloworld_python/sw/snap_helloworld_python.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hls_helloworld_python/sw/snap_helloworld_python.i -------------------------------------------------------------------------------- /actions/hls_helloworld_python/sw/trieres_helloworld.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hls_helloworld_python/sw/trieres_helloworld.ipynb -------------------------------------------------------------------------------- /actions/hls_helloworld_python/sw/trieres_helloworld_cosim.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hls_helloworld_python/sw/trieres_helloworld_cosim.ipynb -------------------------------------------------------------------------------- /actions/hls_helloworld_python/tests/hw_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hls_helloworld_python/tests/hw_test.sh -------------------------------------------------------------------------------- /actions/hls_image_filter/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hls_image_filter/Makefile -------------------------------------------------------------------------------- /actions/hls_image_filter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hls_image_filter/README.md -------------------------------------------------------------------------------- /actions/hls_image_filter/hw/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hls_image_filter/hw/Makefile -------------------------------------------------------------------------------- /actions/hls_image_filter/hw/action_pixel_filter.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hls_image_filter/hw/action_pixel_filter.H -------------------------------------------------------------------------------- /actions/hls_image_filter/hw/action_pixel_filter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hls_image_filter/hw/action_pixel_filter.cpp -------------------------------------------------------------------------------- /actions/hls_image_filter/include/action_pixel_filtering.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hls_image_filter/include/action_pixel_filtering.h -------------------------------------------------------------------------------- /actions/hls_image_filter/include/tiger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hls_image_filter/include/tiger.h -------------------------------------------------------------------------------- /actions/hls_image_filter/sw/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hls_image_filter/sw/Makefile -------------------------------------------------------------------------------- /actions/hls_image_filter/sw/apples.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hls_image_filter/sw/apples.bmp -------------------------------------------------------------------------------- /actions/hls_image_filter/sw/bmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hls_image_filter/sw/bmp.c -------------------------------------------------------------------------------- /actions/hls_image_filter/sw/bmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hls_image_filter/sw/bmp.h -------------------------------------------------------------------------------- /actions/hls_image_filter/sw/params.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hls_image_filter/sw/params.c -------------------------------------------------------------------------------- /actions/hls_image_filter/sw/params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hls_image_filter/sw/params.h -------------------------------------------------------------------------------- /actions/hls_image_filter/sw/snap_image_filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hls_image_filter/sw/snap_image_filter.c -------------------------------------------------------------------------------- /actions/hls_image_filter/sw/tiger.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hls_image_filter/sw/tiger.bmp -------------------------------------------------------------------------------- /actions/hls_image_filter/sw/tiger_reference.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hls_image_filter/sw/tiger_reference.bmp -------------------------------------------------------------------------------- /actions/hls_image_filter/sw/tiger_small.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hls_image_filter/sw/tiger_small.bmp -------------------------------------------------------------------------------- /actions/hls_image_filter/sw/tiger_small_reference.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hls_image_filter/sw/tiger_small_reference.bmp -------------------------------------------------------------------------------- /actions/hls_image_filter/tests/hw_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hls_image_filter/tests/hw_test.sh -------------------------------------------------------------------------------- /actions/hls_memcopy_1024/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hls_memcopy_1024/Makefile -------------------------------------------------------------------------------- /actions/hls_memcopy_1024/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hls_memcopy_1024/README.md -------------------------------------------------------------------------------- /actions/hls_memcopy_1024/hw/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hls_memcopy_1024/hw/Makefile -------------------------------------------------------------------------------- /actions/hls_memcopy_1024/hw/hw_action_memcopy_1024.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hls_memcopy_1024/hw/hw_action_memcopy_1024.H -------------------------------------------------------------------------------- /actions/hls_memcopy_1024/hw/hw_action_memcopy_1024.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hls_memcopy_1024/hw/hw_action_memcopy_1024.cpp -------------------------------------------------------------------------------- /actions/hls_memcopy_1024/include/action_memcopy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hls_memcopy_1024/include/action_memcopy.h -------------------------------------------------------------------------------- /actions/hls_memcopy_1024/sw/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hls_memcopy_1024/sw/Makefile -------------------------------------------------------------------------------- /actions/hls_memcopy_1024/sw/snap_memcopy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hls_memcopy_1024/sw/snap_memcopy.c -------------------------------------------------------------------------------- /actions/hls_memcopy_1024/tests/clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hls_memcopy_1024/tests/clean.sh -------------------------------------------------------------------------------- /actions/hls_memcopy_1024/tests/hw_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hls_memcopy_1024/tests/hw_test.sh -------------------------------------------------------------------------------- /actions/hls_memcopy_1024/tests/hw_throughput_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hls_memcopy_1024/tests/hw_throughput_test.sh -------------------------------------------------------------------------------- /actions/hls_memcopy_1024/tests/process.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hls_memcopy_1024/tests/process.awk -------------------------------------------------------------------------------- /actions/hls_memcopy_512/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hls_memcopy_512/Makefile -------------------------------------------------------------------------------- /actions/hls_memcopy_512/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hls_memcopy_512/README.md -------------------------------------------------------------------------------- /actions/hls_memcopy_512/hw/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hls_memcopy_512/hw/Makefile -------------------------------------------------------------------------------- /actions/hls_memcopy_512/hw/hw_action_memcopy_512.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hls_memcopy_512/hw/hw_action_memcopy_512.H -------------------------------------------------------------------------------- /actions/hls_memcopy_512/hw/hw_action_memcopy_512.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hls_memcopy_512/hw/hw_action_memcopy_512.cpp -------------------------------------------------------------------------------- /actions/hls_memcopy_512/include/action_memcopy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hls_memcopy_512/include/action_memcopy.h -------------------------------------------------------------------------------- /actions/hls_memcopy_512/sw/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hls_memcopy_512/sw/Makefile -------------------------------------------------------------------------------- /actions/hls_memcopy_512/sw/snap_memcopy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hls_memcopy_512/sw/snap_memcopy.c -------------------------------------------------------------------------------- /actions/hls_memcopy_512/tests/clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hls_memcopy_512/tests/clean.sh -------------------------------------------------------------------------------- /actions/hls_memcopy_512/tests/hw_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hls_memcopy_512/tests/hw_test.sh -------------------------------------------------------------------------------- /actions/hls_memcopy_512/tests/hw_throughput_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hls_memcopy_512/tests/hw_throughput_test.sh -------------------------------------------------------------------------------- /actions/hls_memcopy_512/tests/process.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hls_memcopy_512/tests/process.awk -------------------------------------------------------------------------------- /actions/hls_udp_512/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hls_udp_512/Makefile -------------------------------------------------------------------------------- /actions/hls_udp_512/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hls_udp_512/README.md -------------------------------------------------------------------------------- /actions/hls_udp_512/hw/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hls_udp_512/hw/Makefile -------------------------------------------------------------------------------- /actions/hls_udp_512/hw/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hls_udp_512/hw/README.md -------------------------------------------------------------------------------- /actions/hls_udp_512/hw/action_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hls_udp_512/hw/action_test.h -------------------------------------------------------------------------------- /actions/hls_udp_512/hw/eth_decode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hls_udp_512/hw/eth_decode.cpp -------------------------------------------------------------------------------- /actions/hls_udp_512/hw/hls_udp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hls_udp_512/hw/hls_udp.cpp -------------------------------------------------------------------------------- /actions/hls_udp_512/hw/hls_udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hls_udp_512/hw/hls_udp.h -------------------------------------------------------------------------------- /actions/hls_udp_512/hw/write_data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hls_udp_512/hw/write_data.cpp -------------------------------------------------------------------------------- /actions/hls_udp_512/include/action_udp.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hls_udp_512/include/action_udp.H -------------------------------------------------------------------------------- /actions/hls_udp_512/sw/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hls_udp_512/sw/Makefile -------------------------------------------------------------------------------- /actions/hls_udp_512/sw/oc-accel_udp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hls_udp_512/sw/oc-accel_udp.c -------------------------------------------------------------------------------- /actions/hls_udp_512/tests/hw_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/hls_udp_512/tests/hw_test.sh -------------------------------------------------------------------------------- /actions/include/hls_snap_1024.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/include/hls_snap_1024.H -------------------------------------------------------------------------------- /actions/scripts/create_run_hls_script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/scripts/create_run_hls_script.sh -------------------------------------------------------------------------------- /actions/scripts/oc_jenkins.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/scripts/oc_jenkins.sh -------------------------------------------------------------------------------- /actions/software.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/actions/software.mk -------------------------------------------------------------------------------- /check_ocse.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/check_ocse.sh -------------------------------------------------------------------------------- /check_platform.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/check_platform.sh -------------------------------------------------------------------------------- /debug_timing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/debug_timing -------------------------------------------------------------------------------- /defconfig/OC-AD9H3.hdl_example.defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/defconfig/OC-AD9H3.hdl_example.defconfig -------------------------------------------------------------------------------- /defconfig/OC-AD9H3.hdl_single_engine.defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/defconfig/OC-AD9H3.hdl_single_engine.defconfig -------------------------------------------------------------------------------- /defconfig/OC-AD9H3.hls_decimal_mult.defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/defconfig/OC-AD9H3.hls_decimal_mult.defconfig -------------------------------------------------------------------------------- /defconfig/OC-AD9H3.hls_hbm_memcopy_1024.defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/defconfig/OC-AD9H3.hls_hbm_memcopy_1024.defconfig -------------------------------------------------------------------------------- /defconfig/OC-AD9H3.hls_helloworld_1024.defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/defconfig/OC-AD9H3.hls_helloworld_1024.defconfig -------------------------------------------------------------------------------- /defconfig/OC-AD9H3.hls_helloworld_512.defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/defconfig/OC-AD9H3.hls_helloworld_512.defconfig -------------------------------------------------------------------------------- /defconfig/OC-AD9H3.hls_image_filter.defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/defconfig/OC-AD9H3.hls_image_filter.defconfig -------------------------------------------------------------------------------- /defconfig/OC-AD9H3.hls_memcopy_1024.defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/defconfig/OC-AD9H3.hls_memcopy_1024.defconfig -------------------------------------------------------------------------------- /defconfig/OC-AD9H3.hls_udp_512.defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/defconfig/OC-AD9H3.hls_udp_512.defconfig -------------------------------------------------------------------------------- /defconfig/OC-AD9H335.hdl_example.defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/defconfig/OC-AD9H335.hdl_example.defconfig -------------------------------------------------------------------------------- /defconfig/OC-AD9H335.hdl_single_engine.defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/defconfig/OC-AD9H335.hdl_single_engine.defconfig -------------------------------------------------------------------------------- /defconfig/OC-AD9H335.hls_decimal_mult.defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/defconfig/OC-AD9H335.hls_decimal_mult.defconfig -------------------------------------------------------------------------------- /defconfig/OC-AD9H335.hls_hbm_memcopy_1024.defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/defconfig/OC-AD9H335.hls_hbm_memcopy_1024.defconfig -------------------------------------------------------------------------------- /defconfig/OC-AD9H335.hls_helloworld_1024.defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/defconfig/OC-AD9H335.hls_helloworld_1024.defconfig -------------------------------------------------------------------------------- /defconfig/OC-AD9H335.hls_helloworld_512.defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/defconfig/OC-AD9H335.hls_helloworld_512.defconfig -------------------------------------------------------------------------------- /defconfig/OC-AD9H335.hls_helloworld_python.defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/defconfig/OC-AD9H335.hls_helloworld_python.defconfig -------------------------------------------------------------------------------- /defconfig/OC-AD9H335.hls_image_filter.defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/defconfig/OC-AD9H335.hls_image_filter.defconfig -------------------------------------------------------------------------------- /defconfig/OC-AD9H335.hls_memcopy_1024.defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/defconfig/OC-AD9H335.hls_memcopy_1024.defconfig -------------------------------------------------------------------------------- /defconfig/OC-AD9H335.hls_udp_512.defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/defconfig/OC-AD9H335.hls_udp_512.defconfig -------------------------------------------------------------------------------- /defconfig/OC-AD9H7.hdl_example.defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/defconfig/OC-AD9H7.hdl_example.defconfig -------------------------------------------------------------------------------- /defconfig/OC-AD9H7.hdl_single_engine.defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/defconfig/OC-AD9H7.hdl_single_engine.defconfig -------------------------------------------------------------------------------- /defconfig/OC-AD9H7.hls_decimal_mult.defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/defconfig/OC-AD9H7.hls_decimal_mult.defconfig -------------------------------------------------------------------------------- /defconfig/OC-AD9H7.hls_hbm_memcopy_1024.defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/defconfig/OC-AD9H7.hls_hbm_memcopy_1024.defconfig -------------------------------------------------------------------------------- /defconfig/OC-AD9H7.hls_helloworld_1024.defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/defconfig/OC-AD9H7.hls_helloworld_1024.defconfig -------------------------------------------------------------------------------- /defconfig/OC-AD9H7.hls_helloworld_512.defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/defconfig/OC-AD9H7.hls_helloworld_512.defconfig -------------------------------------------------------------------------------- /defconfig/OC-AD9H7.hls_image_filter.defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/defconfig/OC-AD9H7.hls_image_filter.defconfig -------------------------------------------------------------------------------- /defconfig/OC-AD9H7.hls_memcopy_1024.defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/defconfig/OC-AD9H7.hls_memcopy_1024.defconfig -------------------------------------------------------------------------------- /defconfig/OC-AD9H7.hls_udp_512.defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/defconfig/OC-AD9H7.hls_udp_512.defconfig -------------------------------------------------------------------------------- /defconfig/OC-AD9V3.hdl_example.defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/defconfig/OC-AD9V3.hdl_example.defconfig -------------------------------------------------------------------------------- /defconfig/OC-AD9V3.hdl_single_engine.defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/defconfig/OC-AD9V3.hdl_single_engine.defconfig -------------------------------------------------------------------------------- /defconfig/OC-AD9V3.hls_decimal_mult.defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/defconfig/OC-AD9V3.hls_decimal_mult.defconfig -------------------------------------------------------------------------------- /defconfig/OC-AD9V3.hls_helloworld_1024.defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/defconfig/OC-AD9V3.hls_helloworld_1024.defconfig -------------------------------------------------------------------------------- /defconfig/OC-AD9V3.hls_helloworld_512.defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/defconfig/OC-AD9V3.hls_helloworld_512.defconfig -------------------------------------------------------------------------------- /defconfig/OC-AD9V3.hls_helloworld_python.defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/defconfig/OC-AD9V3.hls_helloworld_python.defconfig -------------------------------------------------------------------------------- /defconfig/OC-AD9V3.hls_image_filter.defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/defconfig/OC-AD9V3.hls_image_filter.defconfig -------------------------------------------------------------------------------- /defconfig/OC-AD9V3.hls_memcopy_1024.defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/defconfig/OC-AD9V3.hls_memcopy_1024.defconfig -------------------------------------------------------------------------------- /defconfig/OC-AD9V3.hls_memcopy_512.defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/defconfig/OC-AD9V3.hls_memcopy_512.defconfig -------------------------------------------------------------------------------- /defconfig/OC-BW250SOC.hdl_example.defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/defconfig/OC-BW250SOC.hdl_example.defconfig -------------------------------------------------------------------------------- /defconfig/OC-BW250SOC.hdl_single_engine.defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/defconfig/OC-BW250SOC.hdl_single_engine.defconfig -------------------------------------------------------------------------------- /defconfig/OC-BW250SOC.hls_decimal_mult.defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/defconfig/OC-BW250SOC.hls_decimal_mult.defconfig -------------------------------------------------------------------------------- /defconfig/OC-BW250SOC.hls_helloworld_1024.defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/defconfig/OC-BW250SOC.hls_helloworld_1024.defconfig -------------------------------------------------------------------------------- /defconfig/OC-BW250SOC.hls_helloworld_512.defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/defconfig/OC-BW250SOC.hls_helloworld_512.defconfig -------------------------------------------------------------------------------- /defconfig/OC-BW250SOC.hls_image_filter.defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/defconfig/OC-BW250SOC.hls_image_filter.defconfig -------------------------------------------------------------------------------- /defconfig/OC-BW250SOC.hls_memcopy_1024.defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/defconfig/OC-BW250SOC.hls_memcopy_1024.defconfig -------------------------------------------------------------------------------- /defconfig/OC-BW250SOC.hls_memcopy_512.defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/defconfig/OC-BW250SOC.hls_memcopy_512.defconfig -------------------------------------------------------------------------------- /defconfig/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/defconfig/README.md -------------------------------------------------------------------------------- /defconfig/hdl_unit_sim.bridge.defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/defconfig/hdl_unit_sim.bridge.defconfig -------------------------------------------------------------------------------- /defconfig/hdl_unit_sim.odma.defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/defconfig/hdl_unit_sim.odma.defconfig -------------------------------------------------------------------------------- /defconfig/hdl_unit_sim.odma_mm_512.defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/defconfig/hdl_unit_sim.odma_mm_512.defconfig -------------------------------------------------------------------------------- /defconfig/hdl_unit_sim.odma_st_1024.defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/defconfig/hdl_unit_sim.odma_st_1024.defconfig -------------------------------------------------------------------------------- /defconfig/hdl_unit_sim.odma_st_512.defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/defconfig/hdl_unit_sim.odma_st_512.defconfig -------------------------------------------------------------------------------- /display_traces: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/display_traces -------------------------------------------------------------------------------- /hardware/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/.gitignore -------------------------------------------------------------------------------- /hardware/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/Makefile -------------------------------------------------------------------------------- /hardware/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/README.md -------------------------------------------------------------------------------- /hardware/hdl/core/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/hdl/core/.gitignore -------------------------------------------------------------------------------- /hardware/hdl/core/framework_afu.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/hdl/core/framework_afu.v -------------------------------------------------------------------------------- /hardware/hdl/core/oc_action_core.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/hdl/core/oc_action_core.v -------------------------------------------------------------------------------- /hardware/hdl/core/oc_function.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/hdl/core/oc_function.v -------------------------------------------------------------------------------- /hardware/hdl/core/oc_snap_core.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/hdl/core/oc_snap_core.v -------------------------------------------------------------------------------- /hardware/hdl/core/snap_global_vars.v_source: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/hdl/core/snap_global_vars.v_source -------------------------------------------------------------------------------- /hardware/hdl/hls/action_wrapper.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/hdl/hls/action_wrapper.v -------------------------------------------------------------------------------- /hardware/hdl/nvme/nvme_buffer_ram.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/hdl/nvme/nvme_buffer_ram.sv -------------------------------------------------------------------------------- /hardware/hdl/nvme/nvme_defines.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/hdl/nvme/nvme_defines.sv -------------------------------------------------------------------------------- /hardware/hdl/nvme/nvme_host.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/hdl/nvme/nvme_host.sv -------------------------------------------------------------------------------- /hardware/hdl/nvme/nvme_host_slave.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/hdl/nvme/nvme_host_slave.sv -------------------------------------------------------------------------------- /hardware/hdl/nvme/nvme_host_wrap.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/hdl/nvme/nvme_host_wrap.v -------------------------------------------------------------------------------- /hardware/hdl/nvme/nvme_io_track.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/hdl/nvme/nvme_io_track.sv -------------------------------------------------------------------------------- /hardware/hdl/nvme/nvme_pcie_master.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/hdl/nvme/nvme_pcie_master.sv -------------------------------------------------------------------------------- /hardware/hdl/nvme/nvme_pcie_slave.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/hdl/nvme/nvme_pcie_slave.sv -------------------------------------------------------------------------------- /hardware/hdl/oc/axi_lite_master.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/hdl/oc/axi_lite_master.v -------------------------------------------------------------------------------- /hardware/hdl/oc/brdg_axi_slave.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/hdl/oc/brdg_axi_slave.v -------------------------------------------------------------------------------- /hardware/hdl/oc/brdg_axi_slave_cmd_fifo.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/hdl/oc/brdg_axi_slave_cmd_fifo.v -------------------------------------------------------------------------------- /hardware/hdl/oc/brdg_command_encode.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/hdl/oc/brdg_command_encode.v -------------------------------------------------------------------------------- /hardware/hdl/oc/brdg_context_surveil.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/hdl/oc/brdg_context_surveil.v -------------------------------------------------------------------------------- /hardware/hdl/oc/brdg_data_bridge.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/hdl/oc/brdg_data_bridge.v -------------------------------------------------------------------------------- /hardware/hdl/oc/brdg_interrupt.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/hdl/oc/brdg_interrupt.v -------------------------------------------------------------------------------- /hardware/hdl/oc/brdg_partial_sequencer.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/hdl/oc/brdg_partial_sequencer.v -------------------------------------------------------------------------------- /hardware/hdl/oc/brdg_rd_order_mng_array.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/hdl/oc/brdg_rd_order_mng_array.v -------------------------------------------------------------------------------- /hardware/hdl/oc/brdg_response_decode.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/hdl/oc/brdg_response_decode.v -------------------------------------------------------------------------------- /hardware/hdl/oc/brdg_retry_queue.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/hdl/oc/brdg_retry_queue.v -------------------------------------------------------------------------------- /hardware/hdl/oc/brdg_tlx_cmd_converter.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/hdl/oc/brdg_tlx_cmd_converter.v -------------------------------------------------------------------------------- /hardware/hdl/oc/brdg_tlx_rsp_converter.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/hdl/oc/brdg_tlx_rsp_converter.v -------------------------------------------------------------------------------- /hardware/hdl/oc/brdg_wr_order_mng_array.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/hdl/oc/brdg_wr_order_mng_array.v -------------------------------------------------------------------------------- /hardware/hdl/oc/brdg_wrapper.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/hdl/oc/brdg_wrapper.v -------------------------------------------------------------------------------- /hardware/hdl/oc/fifo_async.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/hdl/oc/fifo_async.v -------------------------------------------------------------------------------- /hardware/hdl/oc/fifo_sync.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/hdl/oc/fifo_sync.v -------------------------------------------------------------------------------- /hardware/hdl/oc/mmio.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/hdl/oc/mmio.v -------------------------------------------------------------------------------- /hardware/hdl/oc/mmio_wrapper.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/hdl/oc/mmio_wrapper.v -------------------------------------------------------------------------------- /hardware/hdl/oc/ram_simple_dual.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/hdl/oc/ram_simple_dual.v -------------------------------------------------------------------------------- /hardware/hdl/oc/ram_true_dual.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/hdl/oc/ram_true_dual.v -------------------------------------------------------------------------------- /hardware/hdl/oc/tlx_mmio_converter.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/hdl/oc/tlx_mmio_converter.v -------------------------------------------------------------------------------- /hardware/hdl/odma/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/hdl/odma/README.md -------------------------------------------------------------------------------- /hardware/hdl/odma/odma.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/hdl/odma/odma.v -------------------------------------------------------------------------------- /hardware/hdl/odma/odma_a2h_mm_engine.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/hdl/odma/odma_a2h_mm_engine.v -------------------------------------------------------------------------------- /hardware/hdl/odma/odma_a2h_st_engine.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/hdl/odma/odma_a2h_st_engine.v -------------------------------------------------------------------------------- /hardware/hdl/odma/odma_completion_manager.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/hdl/odma/odma_completion_manager.v -------------------------------------------------------------------------------- /hardware/hdl/odma/odma_defines.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/hdl/odma/odma_defines.v -------------------------------------------------------------------------------- /hardware/hdl/odma/odma_descriptor_manager.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/hdl/odma/odma_descriptor_manager.v -------------------------------------------------------------------------------- /hardware/hdl/odma/odma_h2a_mm_engine.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/hdl/odma/odma_h2a_mm_engine.v -------------------------------------------------------------------------------- /hardware/hdl/odma/odma_h2a_st_engine.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/hdl/odma/odma_h2a_st_engine.v -------------------------------------------------------------------------------- /hardware/hdl/odma/odma_lcl_rd_arbiter.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/hdl/odma/odma_lcl_rd_arbiter.v -------------------------------------------------------------------------------- /hardware/hdl/odma/odma_lcl_wr_arbiter.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/hdl/odma/odma_lcl_wr_arbiter.v -------------------------------------------------------------------------------- /hardware/hdl/odma/odma_registers.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/hdl/odma/odma_registers.v -------------------------------------------------------------------------------- /hardware/hdl/odma/odma_wrapper.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/hdl/odma/odma_wrapper.v -------------------------------------------------------------------------------- /hardware/setup/build_mcs.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/setup/build_mcs.tcl -------------------------------------------------------------------------------- /hardware/setup/cov.ccf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/setup/cov.ccf -------------------------------------------------------------------------------- /hardware/setup/create_eth_100G_ip.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/setup/create_eth_100G_ip.tcl -------------------------------------------------------------------------------- /hardware/setup/create_framework.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/setup/create_framework.tcl -------------------------------------------------------------------------------- /hardware/setup/create_hbm.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/setup/create_hbm.tcl -------------------------------------------------------------------------------- /hardware/setup/create_hbm_for_simu.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/setup/create_hbm_for_simu.tcl -------------------------------------------------------------------------------- /hardware/setup/create_hls_ip.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/setup/create_hls_ip.tcl -------------------------------------------------------------------------------- /hardware/setup/create_nvme_host.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/setup/create_nvme_host.tcl -------------------------------------------------------------------------------- /hardware/setup/create_other_strategy_impls.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/setup/create_other_strategy_impls.tcl -------------------------------------------------------------------------------- /hardware/setup/create_snap_ip.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/setup/create_snap_ip.tcl -------------------------------------------------------------------------------- /hardware/setup/export_irun.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/setup/export_irun.tcl -------------------------------------------------------------------------------- /hardware/setup/export_modelsim.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/setup/export_modelsim.tcl -------------------------------------------------------------------------------- /hardware/setup/export_questa.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/setup/export_questa.tcl -------------------------------------------------------------------------------- /hardware/setup/export_xcelium.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/setup/export_xcelium.tcl -------------------------------------------------------------------------------- /hardware/setup/export_xsim.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/setup/export_xsim.tcl -------------------------------------------------------------------------------- /hardware/setup/flash_mcs.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/setup/flash_mcs.tcl -------------------------------------------------------------------------------- /hardware/setup/gen_probe_ltx.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/setup/gen_probe_ltx.tcl -------------------------------------------------------------------------------- /hardware/setup/ila_example.xdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/setup/ila_example.xdc -------------------------------------------------------------------------------- /hardware/setup/oc_pr_image.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/setup/oc_pr_image.tcl -------------------------------------------------------------------------------- /hardware/setup/oc_pr_route_action.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/setup/oc_pr_route_action.tcl -------------------------------------------------------------------------------- /hardware/setup/oc_pr_route_static.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/setup/oc_pr_route_static.tcl -------------------------------------------------------------------------------- /hardware/setup/oc_pr_synth_action.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/setup/oc_pr_synth_action.tcl -------------------------------------------------------------------------------- /hardware/setup/oc_pr_synth_static.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/setup/oc_pr_synth_static.tcl -------------------------------------------------------------------------------- /hardware/setup/patch_NVMe.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/setup/patch_NVMe.sh -------------------------------------------------------------------------------- /hardware/setup/patch_sim.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/setup/patch_sim.sh -------------------------------------------------------------------------------- /hardware/setup/patch_version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/setup/patch_version.sh -------------------------------------------------------------------------------- /hardware/setup/snap_bitstream_step.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/setup/snap_bitstream_step.tcl -------------------------------------------------------------------------------- /hardware/setup/snap_build.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/setup/snap_build.tcl -------------------------------------------------------------------------------- /hardware/setup/snap_cloud_build.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/setup/snap_cloud_build.tcl -------------------------------------------------------------------------------- /hardware/setup/snap_impl.xdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/setup/snap_impl.xdc -------------------------------------------------------------------------------- /hardware/setup/snap_impl_step.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/setup/snap_impl_step.tcl -------------------------------------------------------------------------------- /hardware/setup/snap_link.xdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/setup/snap_link.xdc -------------------------------------------------------------------------------- /hardware/setup/snap_synth_step.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/setup/snap_synth_step.tcl -------------------------------------------------------------------------------- /hardware/setup/snap_timing.xdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/setup/snap_timing.xdc -------------------------------------------------------------------------------- /hardware/setup/unit_sim.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/setup/unit_sim.tcl -------------------------------------------------------------------------------- /hardware/setup/util.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/setup/util.tcl -------------------------------------------------------------------------------- /hardware/sim/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/sim/README.md -------------------------------------------------------------------------------- /hardware/sim/debug3_action_gmem_ddr4.svwf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/sim/debug3_action_gmem_ddr4.svwf -------------------------------------------------------------------------------- /hardware/sim/debug3_action_gmem_ddr4.wcfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/sim/debug3_action_gmem_ddr4.wcfg -------------------------------------------------------------------------------- /hardware/sim/debug3_action_gmem_hbm.svwf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/sim/debug3_action_gmem_hbm.svwf -------------------------------------------------------------------------------- /hardware/sim/debug3_action_gmem_hbm.wcfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/sim/debug3_action_gmem_hbm.wcfg -------------------------------------------------------------------------------- /hardware/sim/fastest.parms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/sim/fastest.parms -------------------------------------------------------------------------------- /hardware/sim/ncaet.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/sim/ncaet.tcl -------------------------------------------------------------------------------- /hardware/sim/ncrun.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/sim/ncrun.tcl -------------------------------------------------------------------------------- /hardware/sim/nvme/endp_4_pipe32.soma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/sim/nvme/endp_4_pipe32.soma -------------------------------------------------------------------------------- /hardware/sim/nvme/nvme_model.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/sim/nvme/nvme_model.v -------------------------------------------------------------------------------- /hardware/sim/nvme/pcie_endp_model.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/sim/nvme/pcie_endp_model.v -------------------------------------------------------------------------------- /hardware/sim/nvme_lite/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/sim/nvme_lite/Makefile -------------------------------------------------------------------------------- /hardware/sim/nvme_lite/nvme_top_i.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/sim/nvme_lite/nvme_top_i.sv -------------------------------------------------------------------------------- /hardware/sim/pslse.parms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/sim/pslse.parms -------------------------------------------------------------------------------- /hardware/sim/run_sim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/sim/run_sim -------------------------------------------------------------------------------- /hardware/sim/shortlist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/sim/shortlist.sh -------------------------------------------------------------------------------- /hardware/sim/testlist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/sim/testlist.sh -------------------------------------------------------------------------------- /hardware/sim/testlist_simple.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/sim/testlist_simple.sh -------------------------------------------------------------------------------- /hardware/sim/unit_verif/action_bfm/act_cfg_obj.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/sim/unit_verif/action_bfm/act_cfg_obj.sv -------------------------------------------------------------------------------- /hardware/sim/unit_verif/action_bfm/action_agent.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/sim/unit_verif/action_bfm/action_agent.sv -------------------------------------------------------------------------------- /hardware/sim/unit_verif/action_bfm/action_bfm_pkg.svh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/sim/unit_verif/action_bfm/action_bfm_pkg.svh -------------------------------------------------------------------------------- /hardware/sim/unit_verif/action_bfm/action_seqr.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/sim/unit_verif/action_bfm/action_seqr.sv -------------------------------------------------------------------------------- /hardware/sim/unit_verif/action_bfm/action_seqr_st.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/sim/unit_verif/action_bfm/action_seqr_st.sv -------------------------------------------------------------------------------- /hardware/sim/unit_verif/action_bfm/axi_lite_slv_agent.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/sim/unit_verif/action_bfm/axi_lite_slv_agent.sv -------------------------------------------------------------------------------- /hardware/sim/unit_verif/action_bfm/axi_mm_mst_agent.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/sim/unit_verif/action_bfm/axi_mm_mst_agent.sv -------------------------------------------------------------------------------- /hardware/sim/unit_verif/action_bfm/axi_mm_slv_agent.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/sim/unit_verif/action_bfm/axi_mm_slv_agent.sv -------------------------------------------------------------------------------- /hardware/sim/unit_verif/action_bfm/axi_st_mst_agent.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/sim/unit_verif/action_bfm/axi_st_mst_agent.sv -------------------------------------------------------------------------------- /hardware/sim/unit_verif/action_bfm/axi_st_slv_agent.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/sim/unit_verif/action_bfm/axi_st_slv_agent.sv -------------------------------------------------------------------------------- /hardware/sim/unit_verif/env/action_tb_base_test.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/sim/unit_verif/env/action_tb_base_test.sv -------------------------------------------------------------------------------- /hardware/sim/unit_verif/env/action_tb_env.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/sim/unit_verif/env/action_tb_env.sv -------------------------------------------------------------------------------- /hardware/sim/unit_verif/env/action_tb_pkg.svh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/sim/unit_verif/env/action_tb_pkg.svh -------------------------------------------------------------------------------- /hardware/sim/unit_verif/env/action_tb_test_lib.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/sim/unit_verif/env/action_tb_test_lib.sv -------------------------------------------------------------------------------- /hardware/sim/unit_verif/env/odma_test_lib.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/sim/unit_verif/env/odma_test_lib.sv -------------------------------------------------------------------------------- /hardware/sim/unit_verif/env/odma_test_lib_st.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/sim/unit_verif/env/odma_test_lib_st.sv -------------------------------------------------------------------------------- /hardware/sim/unit_verif/env/tb_vseqr.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/sim/unit_verif/env/tb_vseqr.sv -------------------------------------------------------------------------------- /hardware/sim/unit_verif/mon/axi_lite_monitor.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/sim/unit_verif/mon/axi_lite_monitor.sv -------------------------------------------------------------------------------- /hardware/sim/unit_verif/mon/axi_mm_monitor.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/sim/unit_verif/mon/axi_mm_monitor.sv -------------------------------------------------------------------------------- /hardware/sim/unit_verif/mon/axi_st_monitor.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/sim/unit_verif/mon/axi_st_monitor.sv -------------------------------------------------------------------------------- /hardware/sim/unit_verif/mon/tlx_afu_monitor.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/sim/unit_verif/mon/tlx_afu_monitor.sv -------------------------------------------------------------------------------- /hardware/sim/unit_verif/sb/bridge_check_scoreboard.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/sim/unit_verif/sb/bridge_check_scoreboard.sv -------------------------------------------------------------------------------- /hardware/sim/unit_verif/sb/odma_check_scoreboard.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/sim/unit_verif/sb/odma_check_scoreboard.sv -------------------------------------------------------------------------------- /hardware/sim/unit_verif/sb/odma_reg_defines.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/sim/unit_verif/sb/odma_reg_defines.sv -------------------------------------------------------------------------------- /hardware/sim/unit_verif/tl_bfm/env/dlx_tlx_interface.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/sim/unit_verif/tl_bfm/env/dlx_tlx_interface.sv -------------------------------------------------------------------------------- /hardware/sim/unit_verif/tl_bfm/env/tl_bfm_pkg.svh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/sim/unit_verif/tl_bfm/env/tl_bfm_pkg.svh -------------------------------------------------------------------------------- /hardware/sim/unit_verif/tl_bfm/sb/sb.svh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/sim/unit_verif/tl_bfm/sb/sb.svh -------------------------------------------------------------------------------- /hardware/sim/unit_verif/tl_bfm/sb/tl_mem_model.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/sim/unit_verif/tl_bfm/sb/tl_mem_model.sv -------------------------------------------------------------------------------- /hardware/sim/unit_verif/tl_bfm/sb/tl_scoreboard.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/sim/unit_verif/tl_bfm/sb/tl_scoreboard.sv -------------------------------------------------------------------------------- /hardware/sim/unit_verif/tl_bfm/seq_lib/bfm_seq_lib.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/sim/unit_verif/tl_bfm/seq_lib/bfm_seq_lib.sv -------------------------------------------------------------------------------- /hardware/sim/unit_verif/tl_bfm/seq_lib/bfm_seq_lib_mmio_intrp.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/sim/unit_verif/tl_bfm/seq_lib/bfm_seq_lib_mmio_intrp.sv -------------------------------------------------------------------------------- /hardware/sim/unit_verif/tl_bfm/seq_lib/bfm_seq_lib_rand_axi.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/sim/unit_verif/tl_bfm/seq_lib/bfm_seq_lib_rand_axi.sv -------------------------------------------------------------------------------- /hardware/sim/unit_verif/tl_bfm/seq_lib/bfm_seq_lib_rand_axi_resp.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/sim/unit_verif/tl_bfm/seq_lib/bfm_seq_lib_rand_axi_resp.sv -------------------------------------------------------------------------------- /hardware/sim/unit_verif/tl_bfm/seq_lib/bfm_seq_lib_rand_resp.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/sim/unit_verif/tl_bfm/seq_lib/bfm_seq_lib_rand_resp.sv -------------------------------------------------------------------------------- /hardware/sim/unit_verif/tl_bfm/seq_lib/bfm_sequence_base.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/sim/unit_verif/tl_bfm/seq_lib/bfm_sequence_base.sv -------------------------------------------------------------------------------- /hardware/sim/unit_verif/tl_bfm/seq_lib/odma_seq_lib.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/sim/unit_verif/tl_bfm/seq_lib/odma_seq_lib.sv -------------------------------------------------------------------------------- /hardware/sim/unit_verif/tl_bfm/seq_lib/odma_seq_lib_st.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/sim/unit_verif/tl_bfm/seq_lib/odma_seq_lib_st.sv -------------------------------------------------------------------------------- /hardware/sim/unit_verif/tl_bfm/seq_lib/odma_seq_lib_unalign.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/sim/unit_verif/tl_bfm/seq_lib/odma_seq_lib_unalign.sv -------------------------------------------------------------------------------- /hardware/sim/unit_verif/tl_bfm/seq_lib/test_list.svh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/sim/unit_verif/tl_bfm/seq_lib/test_list.svh -------------------------------------------------------------------------------- /hardware/sim/unit_verif/tl_bfm/tl/tl.svh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/sim/unit_verif/tl_bfm/tl/tl.svh -------------------------------------------------------------------------------- /hardware/sim/unit_verif/tl_bfm/tl/tl_agent.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/sim/unit_verif/tl_bfm/tl/tl_agent.sv -------------------------------------------------------------------------------- /hardware/sim/unit_verif/tl_bfm/tl/tl_dl_if.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/sim/unit_verif/tl_bfm/tl/tl_dl_if.sv -------------------------------------------------------------------------------- /hardware/sim/unit_verif/tl_bfm/tl/tl_rx_monitor.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/sim/unit_verif/tl_bfm/tl/tl_rx_monitor.sv -------------------------------------------------------------------------------- /hardware/sim/unit_verif/tl_bfm/tl/tl_tx_driver.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/sim/unit_verif/tl_bfm/tl/tl_tx_driver.sv -------------------------------------------------------------------------------- /hardware/sim/unit_verif/tl_bfm/tl/tl_tx_monitor.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/sim/unit_verif/tl_bfm/tl/tl_tx_monitor.sv -------------------------------------------------------------------------------- /hardware/sim/unit_verif/tl_bfm/tl/tl_tx_seqr.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/sim/unit_verif/tl_bfm/tl/tl_tx_seqr.sv -------------------------------------------------------------------------------- /hardware/sim/unit_verif/tl_bfm/util/dl_credit_trans.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/sim/unit_verif/tl_bfm/util/dl_credit_trans.sv -------------------------------------------------------------------------------- /hardware/sim/unit_verif/tl_bfm/util/host_mem_model.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/sim/unit_verif/tl_bfm/util/host_mem_model.sv -------------------------------------------------------------------------------- /hardware/sim/unit_verif/tl_bfm/util/tl_cfg_obj.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/sim/unit_verif/tl_bfm/util/tl_cfg_obj.sv -------------------------------------------------------------------------------- /hardware/sim/unit_verif/tl_bfm/util/tl_manager.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/sim/unit_verif/tl_bfm/util/tl_manager.sv -------------------------------------------------------------------------------- /hardware/sim/unit_verif/tl_bfm/util/tl_rx_trans.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/sim/unit_verif/tl_bfm/util/tl_rx_trans.sv -------------------------------------------------------------------------------- /hardware/sim/unit_verif/tl_bfm/util/tl_trans.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/sim/unit_verif/tl_bfm/util/tl_trans.sv -------------------------------------------------------------------------------- /hardware/sim/unit_verif/tl_bfm/util/tl_tx_trans.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/sim/unit_verif/tl_bfm/util/tl_tx_trans.sv -------------------------------------------------------------------------------- /hardware/sim/unit_verif/tl_bfm/util/util.svh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/sim/unit_verif/tl_bfm/util/util.svh -------------------------------------------------------------------------------- /hardware/sim/unit_verif/util/afu_tlx_transaction.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/sim/unit_verif/util/afu_tlx_transaction.sv -------------------------------------------------------------------------------- /hardware/sim/unit_verif/util/axi_lite_transaction.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/sim/unit_verif/util/axi_lite_transaction.sv -------------------------------------------------------------------------------- /hardware/sim/unit_verif/util/axi_mm_transaction.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/sim/unit_verif/util/axi_mm_transaction.sv -------------------------------------------------------------------------------- /hardware/sim/unit_verif/util/axi_st_transaction.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/sim/unit_verif/util/axi_st_transaction.sv -------------------------------------------------------------------------------- /hardware/sim/unit_verif/util/brdg_cfg_obj.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/sim/unit_verif/util/brdg_cfg_obj.sv -------------------------------------------------------------------------------- /hardware/sim/unit_verif/util/intrp_interface.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/sim/unit_verif/util/intrp_interface.sv -------------------------------------------------------------------------------- /hardware/sim/unit_verif/util/intrp_transaction.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/sim/unit_verif/util/intrp_transaction.sv -------------------------------------------------------------------------------- /hardware/sim/unit_verif/util/odma_desp_transaction.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/sim/unit_verif/util/odma_desp_transaction.sv -------------------------------------------------------------------------------- /hardware/sim/unit_verif/util/tlx_afu_interface.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/sim/unit_verif/util/tlx_afu_interface.sv -------------------------------------------------------------------------------- /hardware/sim/unit_verif/util/tlx_afu_transaction.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/sim/unit_verif/util/tlx_afu_transaction.sv -------------------------------------------------------------------------------- /hardware/sim/xsaet.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/sim/xsaet.tcl -------------------------------------------------------------------------------- /hardware/sim/xsrun.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/hardware/sim/xsrun.tcl -------------------------------------------------------------------------------- /ocaccel_workflow.py: -------------------------------------------------------------------------------- 1 | scripts/ide/ocaccel_workflow.py -------------------------------------------------------------------------------- /scripts/.gitignore: -------------------------------------------------------------------------------- 1 | build -------------------------------------------------------------------------------- /scripts/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/scripts/Kconfig -------------------------------------------------------------------------------- /scripts/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/scripts/Makefile -------------------------------------------------------------------------------- /scripts/full_regression_list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/scripts/full_regression_list -------------------------------------------------------------------------------- /scripts/ide/configure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/scripts/ide/configure.py -------------------------------------------------------------------------------- /scripts/ide/env_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/scripts/ide/env_check.py -------------------------------------------------------------------------------- /scripts/ide/env_clean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/scripts/ide/env_clean.py -------------------------------------------------------------------------------- /scripts/ide/make_cloud_action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/scripts/ide/make_cloud_action.py -------------------------------------------------------------------------------- /scripts/ide/make_cloud_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/scripts/ide/make_cloud_base.py -------------------------------------------------------------------------------- /scripts/ide/make_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/scripts/ide/make_image.py -------------------------------------------------------------------------------- /scripts/ide/make_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/scripts/ide/make_model.py -------------------------------------------------------------------------------- /scripts/ide/ocaccel_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/scripts/ide/ocaccel_utils.py -------------------------------------------------------------------------------- /scripts/ide/ocaccel_workflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/scripts/ide/ocaccel_workflow.py -------------------------------------------------------------------------------- /scripts/ide/qa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/scripts/ide/qa.py -------------------------------------------------------------------------------- /scripts/ide/run_sim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/scripts/ide/run_sim.py -------------------------------------------------------------------------------- /scripts/jenkins_regression.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/scripts/jenkins_regression.sh -------------------------------------------------------------------------------- /scripts/jenkins_sanity_image.ksh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/scripts/jenkins_sanity_image.ksh -------------------------------------------------------------------------------- /scripts/jenkins_sanity_sim.ksh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/scripts/jenkins_sanity_sim.ksh -------------------------------------------------------------------------------- /scripts/odma_jenkins_regression.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/scripts/odma_jenkins_regression.sh -------------------------------------------------------------------------------- /scripts/odma_regression_list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/scripts/odma_regression_list -------------------------------------------------------------------------------- /scripts/parse_unit_sim_result.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/scripts/parse_unit_sim_result.pl -------------------------------------------------------------------------------- /scripts/regression_list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/scripts/regression_list -------------------------------------------------------------------------------- /scripts/snap_cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/scripts/snap_cfg -------------------------------------------------------------------------------- /scripts/utils/hdl_pp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/scripts/utils/hdl_pp/README.md -------------------------------------------------------------------------------- /scripts/utils/hdl_pp/eperl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/scripts/utils/hdl_pp/eperl -------------------------------------------------------------------------------- /scripts/utils/hdl_pp/plugins/EperlUtil.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/scripts/utils/hdl_pp/plugins/EperlUtil.pm -------------------------------------------------------------------------------- /scripts/utils/hdl_pp/plugins/assert.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/scripts/utils/hdl_pp/plugins/assert.pm -------------------------------------------------------------------------------- /scripts/utils/hdl_pp/plugins/eperl.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/scripts/utils/hdl_pp/plugins/eperl.pm -------------------------------------------------------------------------------- /scripts/utils/hdl_pp/plugins/example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/scripts/utils/hdl_pp/plugins/example -------------------------------------------------------------------------------- /scripts/utils/hdl_pp/plugins/fifo.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/scripts/utils/hdl_pp/plugins/fifo.pm -------------------------------------------------------------------------------- /scripts/utils/hdl_pp/plugins/flop.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/scripts/utils/hdl_pp/plugins/flop.pm -------------------------------------------------------------------------------- /scripts/utils/hdl_pp/plugins/pipe.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/scripts/utils/hdl_pp/plugins/pipe.pm -------------------------------------------------------------------------------- /scripts/utils/hdl_pp/plugins/ram.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/scripts/utils/hdl_pp/plugins/ram.pm -------------------------------------------------------------------------------- /scripts/utils/hdl_pp/plugins/retime.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/scripts/utils/hdl_pp/plugins/retime.pm -------------------------------------------------------------------------------- /scripts/utils/hdl_pp/pre_vcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/scripts/utils/hdl_pp/pre_vcp -------------------------------------------------------------------------------- /scripts/utils/hdl_pp/vcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/scripts/utils/hdl_pp/vcp -------------------------------------------------------------------------------- /setup_tools.ksh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/setup_tools.ksh -------------------------------------------------------------------------------- /snap_env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/snap_env -------------------------------------------------------------------------------- /snap_path.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/snap_path.sh -------------------------------------------------------------------------------- /software/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/software/Makefile -------------------------------------------------------------------------------- /software/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/software/README.md -------------------------------------------------------------------------------- /software/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/software/config.mk -------------------------------------------------------------------------------- /software/include/libosnap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/software/include/libosnap.h -------------------------------------------------------------------------------- /software/include/osnap_global_regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/software/include/osnap_global_regs.h -------------------------------------------------------------------------------- /software/include/osnap_hls_if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/software/include/osnap_hls_if.h -------------------------------------------------------------------------------- /software/include/osnap_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/software/include/osnap_internal.h -------------------------------------------------------------------------------- /software/include/osnap_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/software/include/osnap_queue.h -------------------------------------------------------------------------------- /software/include/osnap_tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/software/include/osnap_tools.h -------------------------------------------------------------------------------- /software/include/osnap_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/software/include/osnap_types.h -------------------------------------------------------------------------------- /software/lib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/software/lib/Makefile -------------------------------------------------------------------------------- /software/lib/osnap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/software/lib/osnap.c -------------------------------------------------------------------------------- /software/tools/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /software/tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/software/tools/Makefile -------------------------------------------------------------------------------- /software/tools/cfg_snap_actions.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/software/tools/cfg_snap_actions.pl -------------------------------------------------------------------------------- /software/tools/cfg_snap_actions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/software/tools/cfg_snap_actions.sh -------------------------------------------------------------------------------- /software/tools/force_cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/software/tools/force_cpu.c -------------------------------------------------------------------------------- /software/tools/force_cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/software/tools/force_cpu.h -------------------------------------------------------------------------------- /software/tools/oc_find_card: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/software/tools/oc_find_card -------------------------------------------------------------------------------- /software/tools/oc_maint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/software/tools/oc_maint.c -------------------------------------------------------------------------------- /software/tools/simple_reg_access.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/software/tools/simple_reg_access.c -------------------------------------------------------------------------------- /software/tools/simple_reg_access.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/software/tools/simple_reg_access.sh -------------------------------------------------------------------------------- /software/tools/snap_peek.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/software/tools/snap_peek.c -------------------------------------------------------------------------------- /software/tools/snap_poke.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/software/tools/snap_poke.c -------------------------------------------------------------------------------- /software/tools/soft_reset.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCAPI/oc-accel/HEAD/software/tools/soft_reset.sh --------------------------------------------------------------------------------