├── .checkmake-config.ini ├── .ciignore ├── .ctags ├── .ctagsignore ├── .gitattributes ├── .githooks └── ignore-certain-dirs-commit-msg ├── .gitignore ├── .gitmodules ├── .java_tmp └── .gitignore ├── .mergify.yml ├── .pre-commit-config.yaml ├── .readthedocs.yml ├── CHANGELOG.CEP.md ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE.Chipyard.md ├── LICENSE.Components.md ├── LICENSE.SiFive.md ├── LICENSE.md ├── README.Chipyard.md ├── README.md ├── cep_docs ├── cep_architecture.jpg ├── cep_logo.jpg └── related_logos.jpg ├── cep_sort.f ├── citation.cff ├── common.mk ├── conda-reqs ├── chipyard-base.yaml ├── chipyard-extended.yaml ├── circt.json ├── conda-lock-reqs │ ├── conda-requirements-riscv-tools-linux-64-lean.conda-lock.yml │ └── conda-requirements-riscv-tools-linux-64.conda-lock.yml ├── docs.yaml └── riscv-tools.yaml ├── dockerfiles ├── Dockerfile └── README.md ├── docs ├── Advanced-Concepts │ ├── Architectural-Checkpoints.rst │ ├── CDEs.rst │ ├── Chip-Communication.rst │ ├── Debugging-RTL.rst │ ├── Harness-Clocks.rst │ ├── Managing-Published-Scala-Dependencies.rst │ ├── Resources.rst │ ├── Top-Testharness.rst │ └── index.rst ├── Chipyard-Basics │ ├── Chipyard-Components.rst │ ├── Configs-Parameters-Mixins.rst │ ├── Initial-Repo-Setup.rst │ └── index.rst ├── Customization │ ├── Boot-Process.rst │ ├── Custom-Chisel.rst │ ├── DMA-Devices.rst │ ├── Dsptools-Blocks.rst │ ├── Heterogeneous-SoCs.rst │ ├── IOBinders.rst │ ├── Incorporating-Verilog-Blocks.rst │ ├── Keys-Traits-Configs.rst │ ├── MMIO-Peripherals.rst │ ├── Memory-Hierarchy.rst │ ├── NoC-SoCs.rst │ ├── RoCC-Accelerators.rst │ └── index.rst ├── Generators │ ├── Constellation.rst │ ├── Gemmini.rst │ ├── Ibex.rst │ ├── Mempress.rst │ ├── Prefetchers.rst │ ├── Rocket-Chip-Generators.rst │ ├── Rocket-Chip.rst │ ├── Rocket.rst │ ├── Shuttle.rst │ ├── Sodor.rst │ ├── TestChipIP.rst │ ├── fft.rst │ └── index.rst ├── Prototyping │ ├── Arty.rst │ ├── General.rst │ ├── NexysVideo.rst │ ├── VCU118.rst │ └── index.rst ├── Simulation │ ├── FPGA-Accelerated-Simulation.rst │ └── Software-RTL-Simulation.rst ├── Software │ ├── Spike.rst │ └── index.rst ├── TileLink-Diplomacy-Reference │ ├── Diplomacy-Connectors.rst │ ├── NodeTypes.rst │ ├── Register-Node.rst │ ├── Widgets.rst │ └── index.rst ├── Tools │ ├── FIRRTL.rst │ ├── Tapeout-Tools.rst │ └── index.rst ├── VLSI │ ├── ASAP7-Tutorial.rst │ ├── Advanced-Usage.rst │ ├── Basic-Flow.rst │ ├── Building-A-Chip.rst │ ├── Hammer.rst │ ├── Sky130-Commercial-Tutorial.rst │ ├── Sky130-OpenROAD-Tutorial.rst │ └── index.rst ├── _static │ └── images │ │ ├── bigsoc.svg │ │ ├── chipyard-logo.svg │ │ ├── fir-block-diagram.svg │ │ ├── vlsi-openroad-klayout-drc.png │ │ └── vlsi-openroad-par-tinyrocketconfig.png ├── conf.py └── index.rst ├── fpga ├── .gitignore ├── Makefile ├── bootrom.rv32.img ├── bootrom.rv64.img ├── program_arty100t_flash.sh ├── program_arty100t_flash.tcl ├── program_arty100t_jtag.sh ├── program_arty100t_jtag.tcl ├── program_vc707_flash.sh ├── program_vc707_flash.tcl ├── program_vc707_jtag.sh ├── program_vc707_jtag.tcl ├── program_vcu118_flash.sh ├── program_vcu118_flash.tcl ├── program_vcu118_jtag.sh ├── program_vcu118_jtag.tcl ├── scripts │ ├── create_project.tcl │ ├── generate_vcs_collateral.tcl │ ├── run_impl_bitstream.tcl │ └── vcu118_program.tcl └── src │ └── main │ ├── resources │ ├── arty100t │ │ └── cep_sdboot │ │ │ ├── Makefile │ │ │ ├── head.S │ │ │ ├── include │ │ │ ├── bits.h │ │ │ ├── const.h │ │ │ ├── devices │ │ │ │ ├── cepregs.h │ │ │ │ ├── clint.h │ │ │ │ ├── gpio.h │ │ │ │ ├── plic.h │ │ │ │ ├── spi.h │ │ │ │ └── uart.h │ │ │ ├── encoding.h │ │ │ ├── kprintf.h │ │ │ ├── platform.h │ │ │ ├── sections.h │ │ │ ├── smp.h │ │ │ └── util.h │ │ │ ├── kprintf.c │ │ │ ├── sdboot.elf.lds │ │ │ └── syscalls_bootrom.c │ ├── vc707 │ │ ├── cep_sdboot │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ ├── head.S │ │ │ ├── include │ │ │ │ ├── bits.h │ │ │ │ ├── const.h │ │ │ │ ├── devices │ │ │ │ │ ├── cepregs.h │ │ │ │ │ ├── clint.h │ │ │ │ │ ├── gpio.h │ │ │ │ │ ├── plic.h │ │ │ │ │ ├── spi.h │ │ │ │ │ └── uart.h │ │ │ │ ├── encoding.h │ │ │ │ ├── kprintf.h │ │ │ │ ├── platform.h │ │ │ │ ├── sections.h │ │ │ │ ├── smp.h │ │ │ │ └── util.h │ │ │ ├── kprintf.c │ │ │ ├── sdboot.elf.lds │ │ │ └── syscalls_bootrom.c │ │ └── sdboot │ │ │ ├── Makefile │ │ │ ├── common.h │ │ │ ├── head.S │ │ │ ├── include │ │ │ ├── bits.h │ │ │ ├── const.h │ │ │ ├── devices │ │ │ │ ├── clint.h │ │ │ │ ├── gpio.h │ │ │ │ ├── plic.h │ │ │ │ ├── spi.h │ │ │ │ └── uart.h │ │ │ ├── platform.h │ │ │ ├── sections.h │ │ │ └── smp.h │ │ │ ├── kprintf.c │ │ │ ├── kprintf.h │ │ │ ├── linker │ │ │ ├── memory.lds │ │ │ └── sdboot.elf.lds │ │ │ └── sd.c │ ├── vc707~1.9.0 │ └── vcu118 │ │ ├── cep_sdboot │ │ ├── Makefile │ │ ├── head.S │ │ ├── include │ │ │ ├── bits.h │ │ │ ├── const.h │ │ │ ├── devices │ │ │ │ ├── cepregs.h │ │ │ │ ├── clint.h │ │ │ │ ├── gpio.h │ │ │ │ ├── plic.h │ │ │ │ ├── spi.h │ │ │ │ └── uart.h │ │ │ ├── encoding.h │ │ │ ├── kprintf.h │ │ │ ├── platform.h │ │ │ ├── sections.h │ │ │ ├── smp.h │ │ │ └── util.h │ │ ├── kprintf.c │ │ ├── sdboot.elf.lds │ │ └── syscalls_bootrom.c │ │ └── sdboot │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── common.h │ │ ├── head.S │ │ ├── include │ │ ├── bits.h │ │ ├── const.h │ │ ├── devices │ │ │ ├── clint.h │ │ │ ├── gpio.h │ │ │ ├── plic.h │ │ │ ├── spi.h │ │ │ └── uart.h │ │ ├── platform.h │ │ ├── sections.h │ │ └── smp.h │ │ ├── kprintf.c │ │ ├── kprintf.h │ │ ├── linker │ │ ├── memory.lds │ │ └── sdboot.elf.lds │ │ └── sd.c │ └── scala │ ├── arty │ ├── Configs.scala │ ├── HarnessBinders.scala │ ├── IOBinders.scala │ └── TestHarness.scala │ ├── arty100t │ ├── Configs.scala │ ├── CustomOverlays.scala │ ├── GPIOs.scala │ ├── Harness.scala │ └── HarnessBinders.scala │ ├── nexysvideo │ ├── Configs.scala │ ├── Harness.scala │ └── HarnessBinders.scala │ ├── vc707 │ ├── Configs.scala │ ├── CustomOverlays.scala │ ├── GPIOs.scala │ ├── HarnessBinders.scala │ └── TestHarness.scala │ └── vcu118 │ ├── Configs.scala │ ├── CustomOverlays.scala │ ├── GPIOs.scala │ ├── HarnessBinders.scala │ └── TestHarness.scala ├── generators ├── chipyard │ └── src │ │ ├── main │ │ ├── resources │ │ │ ├── csrc │ │ │ │ ├── spiketile.cc │ │ │ │ ├── spiketile_dtm.h │ │ │ │ └── spiketile_tsi.h │ │ │ └── vsrc │ │ │ │ ├── Analog.v │ │ │ │ ├── Arty100TTestDriver.v │ │ │ │ ├── ArtyTestDriver.v │ │ │ │ ├── ClockDividerN.sv │ │ │ │ ├── GCDMMIOBlackBox.v │ │ │ │ ├── pll_wrapper.sv │ │ │ │ └── spiketile.v │ │ └── scala │ │ │ ├── ChipTop.scala │ │ │ ├── ConfigFinder.scala │ │ │ ├── DigitalTop.scala.nonasic │ │ │ ├── Generator.scala │ │ │ ├── SpikeTile.scala │ │ │ ├── Subsystem.scala │ │ │ ├── System.scala.nonasic │ │ │ ├── TestSuites.scala │ │ │ ├── clocking │ │ │ ├── CanHaveClockTap.scala │ │ │ ├── ClockBinders.scala.nonasic │ │ │ ├── ClockDividerN.scala │ │ │ ├── ClockGroupCombiner.scala │ │ │ ├── ClockGroupNamePrefixer.scala │ │ │ ├── DividerOnlyClockGenerator.scala │ │ │ ├── FakePLL.scala │ │ │ ├── HasChipyardPRCI.scala │ │ │ ├── TLClockDivider.scala │ │ │ ├── TLClockSelector.scala │ │ │ ├── TileClockGater.scala │ │ │ └── TileResetSetter.scala │ │ │ ├── config │ │ │ ├── AbstractCEPConfig.scala │ │ │ ├── AbstractConfig.scala │ │ │ ├── BoomConfigs.scala │ │ │ ├── CEPConfigs.scala │ │ │ ├── CVA6Configs.scala │ │ │ ├── ChipConfigs.scala │ │ │ ├── ChipletConfigs.scala │ │ │ ├── ClockingConfigs.scala │ │ │ ├── HeteroConfigs.scala │ │ │ ├── IbexConfigs.scala │ │ │ ├── MMIOAcceleratorConfigs.scala │ │ │ ├── MemorySystemConfigs.scala │ │ │ ├── NoCConfigs.scala │ │ │ ├── NoCoreConfigs.scala │ │ │ ├── PeripheralDeviceConfigs.scala │ │ │ ├── RoCCAcceleratorConfigs.scala │ │ │ ├── RocketConfigs.scala │ │ │ ├── ShuttleConfigs.scala │ │ │ ├── SodorConfigs.scala │ │ │ ├── SpikeConfigs.scala │ │ │ ├── TracegenConfigs.scala │ │ │ ├── TutorialConfigs.scala │ │ │ └── fragments │ │ │ │ ├── CEPConfigFragments.scala │ │ │ │ ├── ClockingFragments.scala │ │ │ │ ├── PeripheralFragments.scala │ │ │ │ ├── RoCCFragments.scala │ │ │ │ ├── SubsystemFragments.scala │ │ │ │ ├── TileFragments.scala │ │ │ │ └── TracegenFragments.scala │ │ │ ├── example │ │ │ ├── CustomChipTop.scala │ │ │ ├── EmptyChipTop.scala │ │ │ ├── FlatChipTop.scala │ │ │ ├── FlatTestHarness.scala │ │ │ ├── GCD.scala │ │ │ ├── InitZero.scala │ │ │ ├── NodeTypes.scala │ │ │ ├── RegisterNodeExample.scala │ │ │ ├── TutorialTile.scala │ │ │ └── dsptools │ │ │ │ ├── DspBlocks.scala │ │ │ │ ├── GenericFIR.scala │ │ │ │ └── StreamingPassthrough.scala │ │ │ ├── harness │ │ │ ├── HarnessBinders.scala │ │ │ ├── HarnessClocks.scala │ │ │ ├── HasHarnessInstantiators.scala │ │ │ ├── MultiHarnessBinders.scala │ │ │ ├── TestHarness.scala │ │ │ └── package.scala │ │ │ ├── iobinders │ │ │ ├── IOBinders.scala │ │ │ └── Ports.scala │ │ │ ├── iocell │ │ │ ├── Analog.scala │ │ │ └── IOCell.scala │ │ │ ├── unittest │ │ │ ├── TestHarness.scala │ │ │ └── UnitTestSuite.scala │ │ │ └── upf │ │ │ ├── ChipTopUPF.scala │ │ │ ├── UPFAspect.scala │ │ │ ├── UPFGen.scala │ │ │ └── UPFInputs.scala │ │ └── test │ │ └── scala │ │ └── clocking │ │ └── SimplePllConfigurationSpec.scala ├── firechip │ └── src │ │ └── main │ │ └── scala │ │ ├── BridgeBinders.scala │ │ ├── FireSim.scala │ │ └── TargetConfigs.scala ├── mitll-blocks │ └── src │ │ └── main │ │ ├── resources │ │ └── vsrc │ │ │ ├── aeees │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── aeees.py │ │ │ ├── aeees_emu.py │ │ │ ├── aeees_gen.py │ │ │ └── aeees_wb_gen.py │ │ │ ├── aes │ │ │ ├── aes.pdf │ │ │ ├── aes_128.v │ │ │ ├── aes_192.v │ │ │ ├── aes_192_mock_tss.sv │ │ │ ├── round.v │ │ │ └── table.v │ │ │ ├── auto-fir │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── amnesia.py │ │ │ ├── auto-fir.py │ │ │ └── filter_tb.v │ │ │ ├── des3 │ │ │ ├── README.txt │ │ │ ├── crp.v │ │ │ ├── des3.v │ │ │ ├── des3_mock_tss.sv │ │ │ ├── key_sel3.v │ │ │ ├── sbox1.v │ │ │ ├── sbox2.v │ │ │ ├── sbox3.v │ │ │ ├── sbox4.v │ │ │ ├── sbox5.v │ │ │ ├── sbox6.v │ │ │ ├── sbox7.v │ │ │ └── sbox8.v │ │ │ ├── dsp │ │ │ ├── FIR_filter.v │ │ │ ├── FIR_filter_mock_tss.sv │ │ │ ├── IIR_filter.v │ │ │ ├── IIR_filter_mock_tss.sv │ │ │ ├── README.md │ │ │ ├── dft_top.v │ │ │ ├── dft_top_mock_tss.sv │ │ │ ├── idft_top.v │ │ │ └── idft_top_mock_tss.sv │ │ │ ├── gps │ │ │ ├── README.md │ │ │ ├── cacode.v │ │ │ ├── gps.v │ │ │ ├── gps_mock_tss.sv │ │ │ └── pcode.v │ │ │ ├── llki │ │ │ ├── llki_pkg.sv │ │ │ ├── llki_pp_wrapper.sv │ │ │ ├── mock_tss_fsm.sv │ │ │ ├── prim_generic_ram_1p.sv │ │ │ ├── scratchpad_wrapper.sv │ │ │ ├── srot_wrapper.sv │ │ │ ├── tlul_adapter_reg.sv │ │ │ ├── tlul_err.sv │ │ │ ├── tlul_fifo_sync.sv │ │ │ └── top_pkg.sv │ │ │ ├── md5 │ │ │ ├── md5.v │ │ │ ├── md5_mock_tss.sv │ │ │ ├── pancham.v │ │ │ └── pancham_round.v │ │ │ ├── opentitan │ │ │ ├── rsa │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ ├── example.txt │ │ │ ├── pem │ │ │ │ ├── prikey.h │ │ │ │ ├── prikey.pem │ │ │ │ ├── prikey1.pem │ │ │ │ ├── prikey2.pem │ │ │ │ ├── prikey3.pem │ │ │ │ ├── prikey4.pem │ │ │ │ ├── pubkey.h │ │ │ │ ├── pubkey.pem │ │ │ │ ├── pubkey1.pem │ │ │ │ ├── pubkey2.pem │ │ │ │ ├── pubkey3.pem │ │ │ │ └── pubkey4.pem │ │ │ ├── rtl │ │ │ │ ├── adder.v │ │ │ │ ├── blockmem1r1w.v │ │ │ │ ├── blockmem2r1w.v │ │ │ │ ├── blockmem2r1wptr.v │ │ │ │ ├── blockmem2rptr1w.v │ │ │ │ ├── modexp.v │ │ │ │ ├── modexp_core.v │ │ │ │ ├── modexp_core_mock_tss.sv │ │ │ │ ├── montprod.v │ │ │ │ ├── residue.v │ │ │ │ ├── shl.v │ │ │ │ └── shr.v │ │ │ ├── src │ │ │ │ ├── RSA.h │ │ │ │ ├── ascii2hex.c │ │ │ │ ├── ascii2hex.h │ │ │ │ ├── define.h │ │ │ │ ├── extKeys.c │ │ │ │ ├── extKeys.h │ │ │ │ ├── file.c │ │ │ │ ├── file.h │ │ │ │ ├── hex2ascii.c │ │ │ │ ├── hex2ascii.h │ │ │ │ └── input.h │ │ │ ├── tb_modexp.cpp │ │ │ ├── tb_modexp.v │ │ │ ├── tb_modexp_orig.v │ │ │ ├── tb_sys.cpp │ │ │ ├── tb_top.cpp │ │ │ ├── tb_top.v │ │ │ └── test │ │ │ │ ├── exp │ │ │ │ ├── mod │ │ │ │ ├── msg │ │ │ │ └── res │ │ │ ├── sha256 │ │ │ ├── sha256.v │ │ │ ├── sha256_k_constants.v │ │ │ ├── sha256_mock_tss.sv │ │ │ └── sha256_w_mem.v │ │ │ └── shaaa │ │ │ ├── README.md │ │ │ ├── shaaa.py │ │ │ ├── shaaa_verilog_gen.py │ │ │ └── templates │ │ │ ├── shaaa.vt │ │ │ ├── shaaa_k_constants.vt │ │ │ ├── shaaa_mock_tss.svt │ │ │ ├── shaaa_stimulus.vt │ │ │ ├── shaaa_tb.svt │ │ │ └── shaaa_w_mem.vt │ │ └── scala │ │ ├── aes.scala │ │ ├── cepPackage.scala │ │ ├── cep_registers.scala │ │ ├── cep_scratchpad.scala │ │ ├── des3.scala │ │ ├── dft.scala │ │ ├── fir.scala │ │ ├── gps.scala │ │ ├── idft.scala │ │ ├── iir.scala │ │ ├── md5.scala │ │ ├── rsa.scala │ │ ├── sha256.scala │ │ └── srot.scala └── tracegen │ ├── src │ └── main │ │ └── scala │ │ ├── Configs.scala │ │ └── System.scala │ └── tracegen.mk ├── project ├── build.properties └── plugins.sbt ├── scripts ├── add-githooks.sh ├── build-circt-from-source.sh ├── build-openocd.sh ├── build-setup.sh ├── build-toolchain-extra.sh ├── build-util.sh ├── check-tracegen.sh ├── entrypoint.sh ├── firesim-setup.sh ├── fix-open-files.sh ├── gen-tags.sh ├── generate-ckpt.sh ├── generate-conda-lockfiles.sh ├── init-software.sh ├── init-submodules-no-riscv-tools-nolog.sh ├── init-submodules-no-riscv-tools.sh ├── init-vlsi.sh ├── insert-includes.py ├── numa_prefix ├── replace-content.py ├── repo-clean.sh ├── sbt-launch.jar ├── smartelf2hex.sh ├── sort-blackbox.py ├── split-mems-conf.py ├── uniquify-module-names.py ├── upgrade-vlsi.sh └── utils.sh ├── sims ├── cep_cosim │ ├── .gitignore │ ├── Makefile │ ├── Makefile.chipyard │ ├── README.md │ ├── bin │ │ ├── convert-bootrom.py │ │ ├── createPassFail.pl │ │ ├── generate-isa-vsif.py │ │ ├── parse-dts.py │ │ ├── v2c.pl │ │ └── vpp.pl │ ├── bootrom │ │ ├── Makefile │ │ ├── cep_boot.lds │ │ ├── head.S │ │ ├── include │ │ │ ├── bits.h │ │ │ ├── const.h │ │ │ ├── devices │ │ │ │ ├── cepregs.h │ │ │ │ ├── clint.h │ │ │ │ ├── gpio.h │ │ │ │ ├── plic.h │ │ │ │ ├── spi.h │ │ │ │ └── uart.h │ │ │ ├── encoding.h │ │ │ ├── kprintf.h │ │ │ ├── platform.h │ │ │ ├── sections.h │ │ │ ├── smp.h │ │ │ └── util.h │ │ ├── kprintf.c │ │ ├── sd.c │ │ └── syscalls_bootrom.c │ ├── cep_buildHW.make │ ├── cep_buildSW.make │ ├── common.make │ ├── comp.do │ ├── drivers │ │ ├── bare │ │ │ ├── bare_malloc.c │ │ │ ├── cep_link.lds │ │ │ ├── crt.S │ │ │ ├── include │ │ │ │ ├── bare_malloc.h │ │ │ │ ├── compiler.h │ │ │ │ ├── const.h │ │ │ │ ├── devices │ │ │ │ │ ├── arty100t_gpio.h │ │ │ │ │ ├── cepregs.h │ │ │ │ │ ├── clint.h │ │ │ │ │ ├── gpio.h │ │ │ │ │ ├── plic.h │ │ │ │ │ ├── spi.h │ │ │ │ │ └── uart.h │ │ │ │ ├── encoding.h │ │ │ │ ├── kprintf.h │ │ │ │ ├── mmio.h │ │ │ │ ├── platform.h │ │ │ │ ├── smp.h │ │ │ │ └── util.h │ │ │ ├── kprintf.c │ │ │ └── syscalls.c │ │ ├── cep_tests │ │ │ ├── CEP.h │ │ │ ├── Config.in │ │ │ ├── cep_aes.cc │ │ │ ├── cep_aes.h │ │ │ ├── cep_apis.cc │ │ │ ├── cep_apis.h │ │ │ ├── cep_crypto.cc │ │ │ ├── cep_crypto.h │ │ │ ├── cep_des3.cc │ │ │ ├── cep_des3.h │ │ │ ├── cep_dft.cc │ │ │ ├── cep_dft.h │ │ │ ├── cep_fir.cc │ │ │ ├── cep_fir.h │ │ │ ├── cep_gps.cc │ │ │ ├── cep_gps.h │ │ │ ├── cep_idft.cc │ │ │ ├── cep_idft.h │ │ │ ├── cep_iir.cc │ │ │ ├── cep_iir.h │ │ │ ├── cep_md5.cc │ │ │ ├── cep_md5.h │ │ │ ├── cep_riscv.cc │ │ │ ├── cep_riscv.h │ │ │ ├── cep_rsa.cc │ │ │ ├── cep_rsa.h │ │ │ ├── cep_sha256.cc │ │ │ ├── cep_sha256.h │ │ │ ├── cep_srot.cc │ │ │ ├── cep_srot.h │ │ │ ├── cep_srot_keys.h │ │ │ ├── fft.cc │ │ │ ├── fft.h │ │ │ ├── portable_io.cc │ │ │ └── portable_io.h │ │ ├── diag │ │ │ ├── cepAccessTest.cc │ │ │ ├── cepAccessTest.h │ │ │ ├── cepClintTest.cc │ │ │ ├── cepClintTest.h │ │ │ ├── cepCsrTest.cc │ │ │ ├── cepCsrTest.h │ │ │ ├── cepGpioTest.cc │ │ │ ├── cepGpioTest.h │ │ │ ├── cepLockTest.cc │ │ │ ├── cepLockTest.h │ │ │ ├── cepLockfreeAtomic.cc │ │ │ ├── cepLockfreeAtomic.h │ │ │ ├── cepMacroMix.cc │ │ │ ├── cepMacroMix.h │ │ │ ├── cepMaskromTest.cc │ │ │ ├── cepMaskromTest.h │ │ │ ├── cepMemTest.cc │ │ │ ├── cepMemTest.h │ │ │ ├── cepMultiThread.cc │ │ │ ├── cepMultiThread.h │ │ │ ├── cepPlicTest.cc │ │ │ ├── cepPlicTest.h │ │ │ ├── cepRegTest.cc │ │ │ ├── cepRegTest.h │ │ │ ├── cepSpiTest.cc │ │ │ ├── cepSpiTest.h │ │ │ ├── cepSrotMemTest.cc │ │ │ ├── cepSrotMemTest.h │ │ │ ├── cepSrotTest.cc │ │ │ ├── cepSrotTest.h │ │ │ ├── cepUartTest.cc │ │ │ ├── cepUartTest.h │ │ │ ├── memBaseTest.cc │ │ │ ├── memBaseTest.h │ │ │ ├── random48.cc │ │ │ ├── random48.h │ │ │ ├── regBaseTest.cc │ │ │ ├── regBaseTest.h │ │ │ ├── simdiag_global.cc │ │ │ └── simdiag_global.h │ │ ├── vectors │ │ │ ├── .NOT_EMPTY │ │ │ ├── AES_playback.h │ │ │ ├── DES3_playback.h │ │ │ ├── DFT_playback.h │ │ │ ├── FIR_playback.h │ │ │ ├── GPS_0_playback.h │ │ │ ├── GPS_1_playback.h │ │ │ ├── GPS_2_playback.h │ │ │ ├── GPS_3_playback.h │ │ │ ├── IDFT_playback.h │ │ │ ├── IIR_playback.h │ │ │ ├── MD5_playback.h │ │ │ ├── RSA_playback.h │ │ │ ├── SHA256_0_playback.h │ │ │ ├── SHA256_1_playback.h │ │ │ ├── SHA256_2_playback.h │ │ │ ├── SHA256_3_playback.h │ │ │ ├── SROT_aesonly_playback.h │ │ │ ├── SROT_md5only_playback.h │ │ │ └── SROT_playback.h │ │ └── virtual │ │ │ ├── link.ld │ │ │ ├── multi_entry.S │ │ │ ├── multi_vm.c │ │ │ ├── riscv_test.h │ │ │ └── string.c │ ├── dvt │ │ ├── RocketTile_beh.sv │ │ ├── cep_adrMap.incl │ │ ├── cep_hierMap.incl │ │ ├── cep_tb.sv │ │ ├── cpu_driver.sv │ │ ├── dpi_common.incl │ │ ├── dump_control.incl │ │ ├── ptw_monitor.sv │ │ ├── sd_spi_model.v │ │ ├── spi_loopback.sv │ │ ├── system_driver.sv │ │ ├── tile_monitor.sv │ │ ├── tl_defines.incl │ │ ├── tl_master_beh.sv │ │ ├── uart_model.sv │ │ ├── uart_rx.v │ │ ├── v2c_cmds.incl │ │ └── v2c_top.incl │ ├── lib │ │ └── .NOT_EMPTY │ ├── modelsim_coverage.do │ ├── pli │ │ ├── VecVal.h │ │ ├── dpi_bitbang.cc │ │ ├── dpi_bitbang.h │ │ ├── log.cc │ │ ├── log.h │ │ ├── v2c.tab │ │ ├── vpp2shMem.cc │ │ └── vpp2shMem.h │ ├── share │ │ ├── access.cc │ │ ├── access.h │ │ ├── sahandler.c │ │ ├── shIpc.cc │ │ ├── shIpc.h │ │ ├── shMem.cc │ │ ├── shMem.h │ │ └── share.h │ ├── simDiag │ │ ├── simPio.cc │ │ ├── simPio.h │ │ └── stdTypes.h │ ├── src │ │ ├── shLog.cc │ │ ├── shLog.h │ │ ├── shPthread.cc │ │ ├── shPthread.h │ │ ├── v2c_sys.cc │ │ └── v2c_sys.h │ └── testSuites │ │ ├── bareMetalTests │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── accessTest │ │ │ ├── Makefile │ │ │ ├── c_dispatch.cc │ │ │ ├── c_dispatch.h │ │ │ ├── c_module.cc │ │ │ ├── c_module.h │ │ │ └── riscv_wrapper.cc │ │ ├── aesMacro │ │ │ ├── Makefile │ │ │ ├── c_dispatch.cc │ │ │ ├── c_dispatch.h │ │ │ ├── c_module.cc │ │ │ ├── c_module.h │ │ │ └── riscv_wrapper.cc │ │ ├── atomicOps │ │ │ ├── Makefile │ │ │ ├── c_dispatch.cc │ │ │ ├── c_dispatch.h │ │ │ ├── c_module.cc │ │ │ ├── c_module.h │ │ │ └── riscv_wrapper.cc │ │ ├── cacheCoherence │ │ │ ├── Makefile │ │ │ ├── c_dispatch.cc │ │ │ ├── c_dispatch.h │ │ │ ├── c_module.cc │ │ │ ├── c_module.h │ │ │ └── riscv_wrapper.cc │ │ ├── clintIntr │ │ │ ├── Makefile │ │ │ ├── c_dispatch.cc │ │ │ ├── c_dispatch.h │ │ │ ├── c_module.cc │ │ │ ├── c_module.h │ │ │ ├── riscv_wrapper.cc │ │ │ └── riscv_wrapper.h │ │ ├── clintTest │ │ │ ├── Makefile │ │ │ ├── c_dispatch.cc │ │ │ ├── c_dispatch.h │ │ │ ├── c_module.cc │ │ │ ├── c_module.h │ │ │ └── riscv_wrapper.cc │ │ ├── common.make │ │ ├── csrTest │ │ │ ├── Makefile │ │ │ ├── c_dispatch.cc │ │ │ ├── c_dispatch.h │ │ │ ├── c_module.cc │ │ │ ├── c_module.h │ │ │ └── riscv_wrapper.cc │ │ ├── debugTest │ │ │ ├── Makefile │ │ │ ├── PassFail.hex │ │ │ ├── c_dispatch.cc │ │ │ ├── c_dispatch.h │ │ │ ├── c_module.cc │ │ │ ├── c_module.h │ │ │ ├── dtm.cfg │ │ │ └── riscv_wrapper.cc │ │ ├── extIntr │ │ │ ├── Makefile │ │ │ ├── c_dispatch.cc │ │ │ ├── c_dispatch.h │ │ │ ├── c_module.cc │ │ │ ├── c_module.h │ │ │ ├── riscv_wrapper.cc │ │ │ └── riscv_wrapper.h │ │ ├── fullBoot │ │ │ ├── Makefile │ │ │ ├── c_dispatch.cc │ │ │ ├── c_dispatch.h │ │ │ ├── c_module.cc │ │ │ ├── c_module.h │ │ │ └── riscv_wrapper.cc │ │ ├── idcache_smc │ │ │ ├── Makefile │ │ │ ├── c_dispatch.cc │ │ │ ├── c_dispatch.h │ │ │ ├── c_module.cc │ │ │ ├── c_module.h │ │ │ └── riscv_wrapper.cc │ │ ├── lockTest │ │ │ ├── Makefile │ │ │ ├── c_dispatch.cc │ │ │ ├── c_dispatch.h │ │ │ ├── c_module.cc │ │ │ ├── c_module.h │ │ │ └── riscv_wrapper.cc │ │ ├── lockfreeAtomic │ │ │ ├── Makefile │ │ │ ├── c_dispatch.cc │ │ │ ├── c_dispatch.h │ │ │ ├── c_module.cc │ │ │ ├── c_module.h │ │ │ └── riscv_wrapper.cc │ │ ├── lrscOps │ │ │ ├── Makefile │ │ │ ├── c_dispatch.cc │ │ │ ├── c_dispatch.h │ │ │ ├── c_module.cc │ │ │ ├── c_module.h │ │ │ └── riscv_wrapper.cc │ │ ├── macro2Mix │ │ │ ├── Makefile │ │ │ ├── c_dispatch.cc │ │ │ ├── c_dispatch.h │ │ │ ├── c_module.cc │ │ │ ├── c_module.h │ │ │ └── riscv_wrapper.cc │ │ ├── macro3Mix │ │ │ ├── Makefile │ │ │ ├── c_dispatch.cc │ │ │ ├── c_dispatch.h │ │ │ ├── c_module.cc │ │ │ ├── c_module.h │ │ │ └── riscv_wrapper.cc │ │ ├── macro4Mix │ │ │ ├── Makefile │ │ │ ├── c_dispatch.cc │ │ │ ├── c_dispatch.h │ │ │ ├── c_module.cc │ │ │ ├── c_module.h │ │ │ └── riscv_wrapper.cc │ │ ├── macroMix │ │ │ ├── Makefile │ │ │ ├── c_dispatch.cc │ │ │ ├── c_dispatch.h │ │ │ ├── c_module.cc │ │ │ ├── c_module.h │ │ │ └── riscv_wrapper.cc │ │ ├── md5Macro │ │ │ ├── Makefile │ │ │ ├── c_dispatch.cc │ │ │ ├── c_dispatch.h │ │ │ ├── c_module.cc │ │ │ ├── c_module.h │ │ │ └── riscv_wrapper.cc │ │ ├── miscTests │ │ │ ├── Makefile │ │ │ ├── c_dispatch.cc │ │ │ ├── c_dispatch.h │ │ │ ├── c_module.cc │ │ │ ├── c_module.h │ │ │ └── riscv_wrapper.cc │ │ ├── multiLock │ │ │ ├── Makefile │ │ │ ├── c_dispatch.cc │ │ │ ├── c_dispatch.h │ │ │ ├── c_module.cc │ │ │ ├── c_module.h │ │ │ └── riscv_wrapper.cc │ │ ├── plicPrioIntr │ │ │ ├── Makefile │ │ │ ├── c_dispatch.cc │ │ │ ├── c_dispatch.h │ │ │ ├── c_module.cc │ │ │ ├── c_module.h │ │ │ └── riscv_wrapper.cc │ │ ├── plicTest │ │ │ ├── Makefile │ │ │ ├── c_dispatch.cc │ │ │ ├── c_dispatch.h │ │ │ ├── c_module.cc │ │ │ ├── c_module.h │ │ │ └── riscv_wrapper.cc │ │ ├── regTest │ │ │ ├── Makefile │ │ │ ├── c_dispatch.cc │ │ │ ├── c_dispatch.h │ │ │ ├── c_module.cc │ │ │ ├── c_module.h │ │ │ └── riscv_wrapper.cc │ │ ├── srotMemTest │ │ │ ├── Makefile │ │ │ ├── c_dispatch.cc │ │ │ ├── c_dispatch.h │ │ │ ├── c_module.cc │ │ │ ├── c_module.h │ │ │ └── riscv_wrapper.cc │ │ └── suite_config.v │ │ ├── bfmTests │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── accessTest │ │ │ ├── Makefile │ │ │ ├── c_dispatch.cc │ │ │ ├── c_dispatch.h │ │ │ ├── c_module.cc │ │ │ └── c_module.h │ │ ├── clintTest │ │ │ ├── Makefile │ │ │ ├── c_dispatch.cc │ │ │ ├── c_dispatch.h │ │ │ ├── c_module.cc │ │ │ └── c_module.h │ │ ├── common.make │ │ ├── lockTest │ │ │ ├── Makefile │ │ │ ├── c_dispatch.cc │ │ │ ├── c_dispatch.h │ │ │ ├── c_module.cc │ │ │ └── c_module.h │ │ ├── macroMix │ │ │ ├── Makefile │ │ │ ├── c_dispatch.cc │ │ │ ├── c_dispatch.h │ │ │ ├── c_module.cc │ │ │ └── c_module.h │ │ ├── miscTests │ │ │ ├── Makefile │ │ │ ├── c_dispatch.cc │ │ │ ├── c_dispatch.h │ │ │ ├── c_module.cc │ │ │ └── c_module.h │ │ ├── multiLock │ │ │ ├── Makefile │ │ │ ├── c_dispatch.cc │ │ │ ├── c_dispatch.h │ │ │ ├── c_module.cc │ │ │ └── c_module.h │ │ ├── multiThread │ │ │ ├── Makefile │ │ │ ├── c_dispatch.cc │ │ │ ├── c_dispatch.h │ │ │ ├── c_module.cc │ │ │ └── c_module.h │ │ ├── plicPrioIntr │ │ │ ├── Makefile │ │ │ ├── c_dispatch.cc │ │ │ ├── c_dispatch.h │ │ │ ├── c_module.cc │ │ │ └── c_module.h │ │ ├── plicTest │ │ │ ├── Makefile │ │ │ ├── c_dispatch.cc │ │ │ ├── c_dispatch.h │ │ │ ├── c_module.cc │ │ │ └── c_module.h │ │ ├── regTest │ │ │ ├── Makefile │ │ │ ├── c_dispatch.cc │ │ │ ├── c_dispatch.h │ │ │ ├── c_module.cc │ │ │ └── c_module.h │ │ ├── scratchpadTest │ │ │ ├── Makefile │ │ │ ├── c_dispatch.cc │ │ │ ├── c_dispatch.h │ │ │ ├── c_module.cc │ │ │ └── c_module.h │ │ ├── srotBadKeys │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ ├── c_dispatch.cc │ │ │ ├── c_dispatch.h │ │ │ ├── c_module.cc │ │ │ └── c_module.h │ │ ├── srotErrorTest │ │ │ ├── Makefile │ │ │ ├── c_dispatch.cc │ │ │ ├── c_dispatch.h │ │ │ ├── c_module.cc │ │ │ └── c_module.h │ │ ├── srotKeyTest │ │ │ ├── Makefile │ │ │ ├── c_dispatch.cc │ │ │ ├── c_dispatch.h │ │ │ ├── c_module.cc │ │ │ └── c_module.h │ │ ├── srotMemTest │ │ │ ├── Makefile │ │ │ ├── c_dispatch.cc │ │ │ ├── c_dispatch.h │ │ │ ├── c_module.cc │ │ │ └── c_module.h │ │ └── suite_config.v │ │ └── isaTests │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── common.make │ │ ├── suite_config.v │ │ └── testTemplate │ │ ├── Makefile │ │ ├── c_dispatch.cc │ │ ├── c_dispatch.h │ │ ├── c_module.cc │ │ └── c_module.h ├── common-sim-flags.mk ├── vcs │ ├── .gitignore │ ├── Makefile │ └── vcs.mk ├── verilator │ ├── .gitignore │ └── Makefile └── xcelium │ ├── .gitignore │ ├── Makefile │ ├── arg-reshuffle │ └── xcelium.mk ├── software ├── baremetal │ ├── gpiotest │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── crt.S │ │ ├── gpiotest.c │ │ ├── include │ │ │ ├── compiler.h │ │ │ ├── const.h │ │ │ ├── devices │ │ │ │ ├── arty100t_gpio.h │ │ │ │ ├── cepregs.h │ │ │ │ ├── clint.h │ │ │ │ ├── gpio.h │ │ │ │ ├── plic.h │ │ │ │ ├── spi.h │ │ │ │ ├── uart.h │ │ │ │ ├── vc707_gpio.h │ │ │ │ └── vcu118_gpio.h │ │ │ ├── encoding.h │ │ │ ├── kprintf.h │ │ │ ├── mmio.h │ │ │ ├── platform.h │ │ │ └── util.h │ │ ├── kprintf.c │ │ ├── link.ld │ │ └── syscalls.c │ └── hello_world │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── crt.S │ │ ├── hello_world.c │ │ ├── include │ │ ├── compiler.h │ │ ├── const.h │ │ ├── devices │ │ │ ├── arty100t_gpio.h │ │ │ ├── cepregs.h │ │ │ ├── clint.h │ │ │ ├── gpio.h │ │ │ ├── plic.h │ │ │ ├── spi.h │ │ │ └── uart.h │ │ ├── encoding.h │ │ ├── kprintf.h │ │ ├── mmio.h │ │ ├── platform.h │ │ └── util.h │ │ ├── kprintf.c │ │ ├── link.ld │ │ └── syscalls.c ├── embench │ ├── .gitignore │ └── build.sh ├── linux │ ├── Makefile │ ├── gpiotest │ │ ├── CMakeLists.txt │ │ ├── Config.in │ │ ├── gpiotest.c │ │ └── gpiotest.mk │ └── helloworld │ │ ├── CMakeLists.txt │ │ ├── Config.in │ │ ├── helloworld.c │ │ └── helloworld.mk └── tutorial │ ├── .gitignore │ ├── build.sh │ └── marshal-configs │ ├── mobilenet-baremetal.yaml │ ├── resnet50-baremetal.yaml │ ├── resnet50-linux-interactive.yaml │ └── resnet50-linux.yaml ├── tests ├── .gitignore ├── Makefile ├── accum.c ├── big-blkdev.c ├── blkdev.c ├── blkdev.h ├── charcount.c ├── fft.c ├── gcd.c ├── hello.c ├── htif.ld ├── libgloss.mk ├── marchid.h ├── mmio.h ├── mt-hello.c ├── nic-loopback.c ├── nic.h ├── nvdla.c ├── nvdla.h ├── pingd.c ├── pwm.c ├── rocc.h ├── spiflash.h ├── spiflash.py ├── spiflashread.c ├── spiflashwrite.c ├── streaming-fir.c ├── streaming-passthrough.c └── symmetric.c ├── tools ├── stage-chisel3 │ └── src │ │ └── main │ │ └── scala │ │ ├── ChipyardAnnotations.scala │ │ ├── ChipyardCli.scala │ │ ├── ChipyardOptions.scala │ │ ├── ChipyardStage.scala │ │ ├── StageUtils.scala │ │ ├── package.scala │ │ └── phases │ │ ├── AddDefaultTests.scala │ │ ├── Checks.scala │ │ ├── GenerateArtefacts.scala │ │ ├── GenerateFirrtlAnnos.scala │ │ ├── GenerateTestSuiteMakefrags.scala │ │ ├── PreElaboration.scala │ │ └── TransformAnnotations.scala ├── stage │ └── src │ │ └── main │ │ └── scala │ │ ├── ChipyardAnnotations.scala │ │ ├── ChipyardCli.scala │ │ ├── ChipyardOptions.scala │ │ ├── ChipyardStage.scala │ │ ├── StageUtils.scala │ │ ├── package.scala │ │ └── phases │ │ ├── AddDefaultTests.scala │ │ ├── Checks.scala │ │ ├── GenerateArtefacts.scala │ │ ├── GenerateFirrtlAnnos.scala │ │ ├── GenerateTestSuiteMakefrags.scala │ │ ├── PreElaboration.scala │ │ ├── PreservesAll.scala │ │ └── TransformAnnotations.scala ├── tapeout │ └── src │ │ └── main │ │ └── scala │ │ ├── macrolib │ │ ├── ConfReader.scala │ │ ├── FillerMacroBase.scala │ │ ├── FlipChipMacro.scala │ │ ├── IOMacro.scala │ │ ├── MacroLib.scala │ │ ├── SRAM.scala │ │ └── Utils.scala │ │ └── macros │ │ ├── CostMetric.scala │ │ ├── MacroCompiler.scala │ │ ├── SynFlopsPass.scala │ │ └── Utils.scala └── torture.mk ├── variables.mk └── vlsi ├── .gitignore ├── Makefile ├── env.yml ├── example-asap7.yml ├── example-design.yml ├── example-designs ├── sky130-commercial.yml ├── sky130-openroad-rockettile.yml ├── sky130-openroad.yml └── sky130-rocket.yml ├── example-openroad.yml ├── example-sky130.yml ├── example-tech.yml ├── example-tools.yml ├── example-vlsi ├── example-vlsi-sky130 ├── power.mk ├── sim.mk ├── tutorial.mk └── view_gds.py /.checkmake-config.ini: -------------------------------------------------------------------------------- 1 | [minphony] 2 | disabled = true 3 | -------------------------------------------------------------------------------- /.ciignore: -------------------------------------------------------------------------------- 1 | docs/* 2 | -------------------------------------------------------------------------------- /.ctags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/.ctags -------------------------------------------------------------------------------- /.ctagsignore: -------------------------------------------------------------------------------- 1 | */target 2 | sims 3 | toolchains 4 | .conda-env 5 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/.gitattributes -------------------------------------------------------------------------------- /.githooks/ignore-certain-dirs-commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/.githooks/ignore-certain-dirs-commit-msg -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/.gitmodules -------------------------------------------------------------------------------- /.java_tmp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/.java_tmp/.gitignore -------------------------------------------------------------------------------- /.mergify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/.mergify.yml -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /CHANGELOG.CEP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/CHANGELOG.CEP.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.Chipyard.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/LICENSE.Chipyard.md -------------------------------------------------------------------------------- /LICENSE.Components.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/LICENSE.Components.md -------------------------------------------------------------------------------- /LICENSE.SiFive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/LICENSE.SiFive.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.Chipyard.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/README.Chipyard.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/README.md -------------------------------------------------------------------------------- /cep_docs/cep_architecture.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/cep_docs/cep_architecture.jpg -------------------------------------------------------------------------------- /cep_docs/cep_logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/cep_docs/cep_logo.jpg -------------------------------------------------------------------------------- /cep_docs/related_logos.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/cep_docs/related_logos.jpg -------------------------------------------------------------------------------- /cep_sort.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/cep_sort.f -------------------------------------------------------------------------------- /citation.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/citation.cff -------------------------------------------------------------------------------- /common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/common.mk -------------------------------------------------------------------------------- /conda-reqs/chipyard-base.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/conda-reqs/chipyard-base.yaml -------------------------------------------------------------------------------- /conda-reqs/chipyard-extended.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/conda-reqs/chipyard-extended.yaml -------------------------------------------------------------------------------- /conda-reqs/circt.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "firtool-1.66.0" 3 | } 4 | -------------------------------------------------------------------------------- /conda-reqs/docs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/conda-reqs/docs.yaml -------------------------------------------------------------------------------- /conda-reqs/riscv-tools.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/conda-reqs/riscv-tools.yaml -------------------------------------------------------------------------------- /dockerfiles/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/dockerfiles/Dockerfile -------------------------------------------------------------------------------- /dockerfiles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/dockerfiles/README.md -------------------------------------------------------------------------------- /docs/Advanced-Concepts/Architectural-Checkpoints.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/docs/Advanced-Concepts/Architectural-Checkpoints.rst -------------------------------------------------------------------------------- /docs/Advanced-Concepts/CDEs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/docs/Advanced-Concepts/CDEs.rst -------------------------------------------------------------------------------- /docs/Advanced-Concepts/Chip-Communication.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/docs/Advanced-Concepts/Chip-Communication.rst -------------------------------------------------------------------------------- /docs/Advanced-Concepts/Debugging-RTL.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/docs/Advanced-Concepts/Debugging-RTL.rst -------------------------------------------------------------------------------- /docs/Advanced-Concepts/Harness-Clocks.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/docs/Advanced-Concepts/Harness-Clocks.rst -------------------------------------------------------------------------------- /docs/Advanced-Concepts/Resources.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/docs/Advanced-Concepts/Resources.rst -------------------------------------------------------------------------------- /docs/Advanced-Concepts/Top-Testharness.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/docs/Advanced-Concepts/Top-Testharness.rst -------------------------------------------------------------------------------- /docs/Advanced-Concepts/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/docs/Advanced-Concepts/index.rst -------------------------------------------------------------------------------- /docs/Chipyard-Basics/Chipyard-Components.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/docs/Chipyard-Basics/Chipyard-Components.rst -------------------------------------------------------------------------------- /docs/Chipyard-Basics/Configs-Parameters-Mixins.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/docs/Chipyard-Basics/Configs-Parameters-Mixins.rst -------------------------------------------------------------------------------- /docs/Chipyard-Basics/Initial-Repo-Setup.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/docs/Chipyard-Basics/Initial-Repo-Setup.rst -------------------------------------------------------------------------------- /docs/Chipyard-Basics/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/docs/Chipyard-Basics/index.rst -------------------------------------------------------------------------------- /docs/Customization/Boot-Process.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/docs/Customization/Boot-Process.rst -------------------------------------------------------------------------------- /docs/Customization/Custom-Chisel.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/docs/Customization/Custom-Chisel.rst -------------------------------------------------------------------------------- /docs/Customization/DMA-Devices.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/docs/Customization/DMA-Devices.rst -------------------------------------------------------------------------------- /docs/Customization/Dsptools-Blocks.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/docs/Customization/Dsptools-Blocks.rst -------------------------------------------------------------------------------- /docs/Customization/Heterogeneous-SoCs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/docs/Customization/Heterogeneous-SoCs.rst -------------------------------------------------------------------------------- /docs/Customization/IOBinders.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/docs/Customization/IOBinders.rst -------------------------------------------------------------------------------- /docs/Customization/Incorporating-Verilog-Blocks.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/docs/Customization/Incorporating-Verilog-Blocks.rst -------------------------------------------------------------------------------- /docs/Customization/Keys-Traits-Configs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/docs/Customization/Keys-Traits-Configs.rst -------------------------------------------------------------------------------- /docs/Customization/MMIO-Peripherals.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/docs/Customization/MMIO-Peripherals.rst -------------------------------------------------------------------------------- /docs/Customization/Memory-Hierarchy.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/docs/Customization/Memory-Hierarchy.rst -------------------------------------------------------------------------------- /docs/Customization/NoC-SoCs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/docs/Customization/NoC-SoCs.rst -------------------------------------------------------------------------------- /docs/Customization/RoCC-Accelerators.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/docs/Customization/RoCC-Accelerators.rst -------------------------------------------------------------------------------- /docs/Customization/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/docs/Customization/index.rst -------------------------------------------------------------------------------- /docs/Generators/Constellation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/docs/Generators/Constellation.rst -------------------------------------------------------------------------------- /docs/Generators/Gemmini.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/docs/Generators/Gemmini.rst -------------------------------------------------------------------------------- /docs/Generators/Ibex.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/docs/Generators/Ibex.rst -------------------------------------------------------------------------------- /docs/Generators/Mempress.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/docs/Generators/Mempress.rst -------------------------------------------------------------------------------- /docs/Generators/Prefetchers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/docs/Generators/Prefetchers.rst -------------------------------------------------------------------------------- /docs/Generators/Rocket-Chip-Generators.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/docs/Generators/Rocket-Chip-Generators.rst -------------------------------------------------------------------------------- /docs/Generators/Rocket-Chip.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/docs/Generators/Rocket-Chip.rst -------------------------------------------------------------------------------- /docs/Generators/Rocket.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/docs/Generators/Rocket.rst -------------------------------------------------------------------------------- /docs/Generators/Shuttle.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/docs/Generators/Shuttle.rst -------------------------------------------------------------------------------- /docs/Generators/Sodor.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/docs/Generators/Sodor.rst -------------------------------------------------------------------------------- /docs/Generators/TestChipIP.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/docs/Generators/TestChipIP.rst -------------------------------------------------------------------------------- /docs/Generators/fft.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/docs/Generators/fft.rst -------------------------------------------------------------------------------- /docs/Generators/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/docs/Generators/index.rst -------------------------------------------------------------------------------- /docs/Prototyping/Arty.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/docs/Prototyping/Arty.rst -------------------------------------------------------------------------------- /docs/Prototyping/General.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/docs/Prototyping/General.rst -------------------------------------------------------------------------------- /docs/Prototyping/NexysVideo.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/docs/Prototyping/NexysVideo.rst -------------------------------------------------------------------------------- /docs/Prototyping/VCU118.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/docs/Prototyping/VCU118.rst -------------------------------------------------------------------------------- /docs/Prototyping/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/docs/Prototyping/index.rst -------------------------------------------------------------------------------- /docs/Simulation/FPGA-Accelerated-Simulation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/docs/Simulation/FPGA-Accelerated-Simulation.rst -------------------------------------------------------------------------------- /docs/Simulation/Software-RTL-Simulation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/docs/Simulation/Software-RTL-Simulation.rst -------------------------------------------------------------------------------- /docs/Software/Spike.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/docs/Software/Spike.rst -------------------------------------------------------------------------------- /docs/Software/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/docs/Software/index.rst -------------------------------------------------------------------------------- /docs/TileLink-Diplomacy-Reference/Diplomacy-Connectors.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/docs/TileLink-Diplomacy-Reference/Diplomacy-Connectors.rst -------------------------------------------------------------------------------- /docs/TileLink-Diplomacy-Reference/NodeTypes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/docs/TileLink-Diplomacy-Reference/NodeTypes.rst -------------------------------------------------------------------------------- /docs/TileLink-Diplomacy-Reference/Register-Node.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/docs/TileLink-Diplomacy-Reference/Register-Node.rst -------------------------------------------------------------------------------- /docs/TileLink-Diplomacy-Reference/Widgets.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/docs/TileLink-Diplomacy-Reference/Widgets.rst -------------------------------------------------------------------------------- /docs/TileLink-Diplomacy-Reference/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/docs/TileLink-Diplomacy-Reference/index.rst -------------------------------------------------------------------------------- /docs/Tools/FIRRTL.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/docs/Tools/FIRRTL.rst -------------------------------------------------------------------------------- /docs/Tools/Tapeout-Tools.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/docs/Tools/Tapeout-Tools.rst -------------------------------------------------------------------------------- /docs/Tools/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/docs/Tools/index.rst -------------------------------------------------------------------------------- /docs/VLSI/ASAP7-Tutorial.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/docs/VLSI/ASAP7-Tutorial.rst -------------------------------------------------------------------------------- /docs/VLSI/Advanced-Usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/docs/VLSI/Advanced-Usage.rst -------------------------------------------------------------------------------- /docs/VLSI/Basic-Flow.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/docs/VLSI/Basic-Flow.rst -------------------------------------------------------------------------------- /docs/VLSI/Building-A-Chip.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/docs/VLSI/Building-A-Chip.rst -------------------------------------------------------------------------------- /docs/VLSI/Hammer.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/docs/VLSI/Hammer.rst -------------------------------------------------------------------------------- /docs/VLSI/Sky130-Commercial-Tutorial.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/docs/VLSI/Sky130-Commercial-Tutorial.rst -------------------------------------------------------------------------------- /docs/VLSI/Sky130-OpenROAD-Tutorial.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/docs/VLSI/Sky130-OpenROAD-Tutorial.rst -------------------------------------------------------------------------------- /docs/VLSI/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/docs/VLSI/index.rst -------------------------------------------------------------------------------- /docs/_static/images/bigsoc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/docs/_static/images/bigsoc.svg -------------------------------------------------------------------------------- /docs/_static/images/chipyard-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/docs/_static/images/chipyard-logo.svg -------------------------------------------------------------------------------- /docs/_static/images/fir-block-diagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/docs/_static/images/fir-block-diagram.svg -------------------------------------------------------------------------------- /docs/_static/images/vlsi-openroad-klayout-drc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/docs/_static/images/vlsi-openroad-klayout-drc.png -------------------------------------------------------------------------------- /docs/_static/images/vlsi-openroad-par-tinyrocketconfig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/docs/_static/images/vlsi-openroad-par-tinyrocketconfig.png -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/docs/index.rst -------------------------------------------------------------------------------- /fpga/.gitignore: -------------------------------------------------------------------------------- 1 | generated-src 2 | *.log 3 | *.jou 4 | .Xil/ 5 | -------------------------------------------------------------------------------- /fpga/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/fpga/Makefile -------------------------------------------------------------------------------- /fpga/bootrom.rv32.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/fpga/bootrom.rv32.img -------------------------------------------------------------------------------- /fpga/bootrom.rv64.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/fpga/bootrom.rv64.img -------------------------------------------------------------------------------- /fpga/program_arty100t_flash.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/fpga/program_arty100t_flash.sh -------------------------------------------------------------------------------- /fpga/program_arty100t_flash.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/fpga/program_arty100t_flash.tcl -------------------------------------------------------------------------------- /fpga/program_arty100t_jtag.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/fpga/program_arty100t_jtag.sh -------------------------------------------------------------------------------- /fpga/program_arty100t_jtag.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/fpga/program_arty100t_jtag.tcl -------------------------------------------------------------------------------- /fpga/program_vc707_flash.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/fpga/program_vc707_flash.sh -------------------------------------------------------------------------------- /fpga/program_vc707_flash.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/fpga/program_vc707_flash.tcl -------------------------------------------------------------------------------- /fpga/program_vc707_jtag.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/fpga/program_vc707_jtag.sh -------------------------------------------------------------------------------- /fpga/program_vc707_jtag.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/fpga/program_vc707_jtag.tcl -------------------------------------------------------------------------------- /fpga/program_vcu118_flash.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/fpga/program_vcu118_flash.sh -------------------------------------------------------------------------------- /fpga/program_vcu118_flash.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/fpga/program_vcu118_flash.tcl -------------------------------------------------------------------------------- /fpga/program_vcu118_jtag.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/fpga/program_vcu118_jtag.sh -------------------------------------------------------------------------------- /fpga/program_vcu118_jtag.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/fpga/program_vcu118_jtag.tcl -------------------------------------------------------------------------------- /fpga/scripts/create_project.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/fpga/scripts/create_project.tcl -------------------------------------------------------------------------------- /fpga/scripts/generate_vcs_collateral.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/fpga/scripts/generate_vcs_collateral.tcl -------------------------------------------------------------------------------- /fpga/scripts/run_impl_bitstream.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/fpga/scripts/run_impl_bitstream.tcl -------------------------------------------------------------------------------- /fpga/scripts/vcu118_program.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/fpga/scripts/vcu118_program.tcl -------------------------------------------------------------------------------- /fpga/src/main/resources/arty100t/cep_sdboot/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/fpga/src/main/resources/arty100t/cep_sdboot/Makefile -------------------------------------------------------------------------------- /fpga/src/main/resources/arty100t/cep_sdboot/head.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/fpga/src/main/resources/arty100t/cep_sdboot/head.S -------------------------------------------------------------------------------- /fpga/src/main/resources/arty100t/cep_sdboot/include/bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/fpga/src/main/resources/arty100t/cep_sdboot/include/bits.h -------------------------------------------------------------------------------- /fpga/src/main/resources/arty100t/cep_sdboot/include/const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/fpga/src/main/resources/arty100t/cep_sdboot/include/const.h -------------------------------------------------------------------------------- /fpga/src/main/resources/arty100t/cep_sdboot/include/encoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/fpga/src/main/resources/arty100t/cep_sdboot/include/encoding.h -------------------------------------------------------------------------------- /fpga/src/main/resources/arty100t/cep_sdboot/include/kprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/fpga/src/main/resources/arty100t/cep_sdboot/include/kprintf.h -------------------------------------------------------------------------------- /fpga/src/main/resources/arty100t/cep_sdboot/include/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/fpga/src/main/resources/arty100t/cep_sdboot/include/platform.h -------------------------------------------------------------------------------- /fpga/src/main/resources/arty100t/cep_sdboot/include/sections.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/fpga/src/main/resources/arty100t/cep_sdboot/include/sections.h -------------------------------------------------------------------------------- /fpga/src/main/resources/arty100t/cep_sdboot/include/smp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/fpga/src/main/resources/arty100t/cep_sdboot/include/smp.h -------------------------------------------------------------------------------- /fpga/src/main/resources/arty100t/cep_sdboot/include/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/fpga/src/main/resources/arty100t/cep_sdboot/include/util.h -------------------------------------------------------------------------------- /fpga/src/main/resources/arty100t/cep_sdboot/kprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/fpga/src/main/resources/arty100t/cep_sdboot/kprintf.c -------------------------------------------------------------------------------- /fpga/src/main/resources/arty100t/cep_sdboot/sdboot.elf.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/fpga/src/main/resources/arty100t/cep_sdboot/sdboot.elf.lds -------------------------------------------------------------------------------- /fpga/src/main/resources/arty100t/cep_sdboot/syscalls_bootrom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/fpga/src/main/resources/arty100t/cep_sdboot/syscalls_bootrom.c -------------------------------------------------------------------------------- /fpga/src/main/resources/vc707/cep_sdboot/.gitignore: -------------------------------------------------------------------------------- 1 | build/* -------------------------------------------------------------------------------- /fpga/src/main/resources/vc707/cep_sdboot/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/fpga/src/main/resources/vc707/cep_sdboot/Makefile -------------------------------------------------------------------------------- /fpga/src/main/resources/vc707/cep_sdboot/head.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/fpga/src/main/resources/vc707/cep_sdboot/head.S -------------------------------------------------------------------------------- /fpga/src/main/resources/vc707/cep_sdboot/include/bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/fpga/src/main/resources/vc707/cep_sdboot/include/bits.h -------------------------------------------------------------------------------- /fpga/src/main/resources/vc707/cep_sdboot/include/const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/fpga/src/main/resources/vc707/cep_sdboot/include/const.h -------------------------------------------------------------------------------- /fpga/src/main/resources/vc707/cep_sdboot/include/devices/spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/fpga/src/main/resources/vc707/cep_sdboot/include/devices/spi.h -------------------------------------------------------------------------------- /fpga/src/main/resources/vc707/cep_sdboot/include/encoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/fpga/src/main/resources/vc707/cep_sdboot/include/encoding.h -------------------------------------------------------------------------------- /fpga/src/main/resources/vc707/cep_sdboot/include/kprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/fpga/src/main/resources/vc707/cep_sdboot/include/kprintf.h -------------------------------------------------------------------------------- /fpga/src/main/resources/vc707/cep_sdboot/include/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/fpga/src/main/resources/vc707/cep_sdboot/include/platform.h -------------------------------------------------------------------------------- /fpga/src/main/resources/vc707/cep_sdboot/include/sections.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/fpga/src/main/resources/vc707/cep_sdboot/include/sections.h -------------------------------------------------------------------------------- /fpga/src/main/resources/vc707/cep_sdboot/include/smp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/fpga/src/main/resources/vc707/cep_sdboot/include/smp.h -------------------------------------------------------------------------------- /fpga/src/main/resources/vc707/cep_sdboot/include/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/fpga/src/main/resources/vc707/cep_sdboot/include/util.h -------------------------------------------------------------------------------- /fpga/src/main/resources/vc707/cep_sdboot/kprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/fpga/src/main/resources/vc707/cep_sdboot/kprintf.c -------------------------------------------------------------------------------- /fpga/src/main/resources/vc707/cep_sdboot/sdboot.elf.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/fpga/src/main/resources/vc707/cep_sdboot/sdboot.elf.lds -------------------------------------------------------------------------------- /fpga/src/main/resources/vc707/cep_sdboot/syscalls_bootrom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/fpga/src/main/resources/vc707/cep_sdboot/syscalls_bootrom.c -------------------------------------------------------------------------------- /fpga/src/main/resources/vc707/sdboot/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/fpga/src/main/resources/vc707/sdboot/Makefile -------------------------------------------------------------------------------- /fpga/src/main/resources/vc707/sdboot/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/fpga/src/main/resources/vc707/sdboot/common.h -------------------------------------------------------------------------------- /fpga/src/main/resources/vc707/sdboot/head.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/fpga/src/main/resources/vc707/sdboot/head.S -------------------------------------------------------------------------------- /fpga/src/main/resources/vc707/sdboot/include/bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/fpga/src/main/resources/vc707/sdboot/include/bits.h -------------------------------------------------------------------------------- /fpga/src/main/resources/vc707/sdboot/include/const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/fpga/src/main/resources/vc707/sdboot/include/const.h -------------------------------------------------------------------------------- /fpga/src/main/resources/vc707/sdboot/include/devices/clint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/fpga/src/main/resources/vc707/sdboot/include/devices/clint.h -------------------------------------------------------------------------------- /fpga/src/main/resources/vc707/sdboot/include/devices/gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/fpga/src/main/resources/vc707/sdboot/include/devices/gpio.h -------------------------------------------------------------------------------- /fpga/src/main/resources/vc707/sdboot/include/devices/plic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/fpga/src/main/resources/vc707/sdboot/include/devices/plic.h -------------------------------------------------------------------------------- /fpga/src/main/resources/vc707/sdboot/include/devices/spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/fpga/src/main/resources/vc707/sdboot/include/devices/spi.h -------------------------------------------------------------------------------- /fpga/src/main/resources/vc707/sdboot/include/devices/uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/fpga/src/main/resources/vc707/sdboot/include/devices/uart.h -------------------------------------------------------------------------------- /fpga/src/main/resources/vc707/sdboot/include/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/fpga/src/main/resources/vc707/sdboot/include/platform.h -------------------------------------------------------------------------------- /fpga/src/main/resources/vc707/sdboot/include/sections.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/fpga/src/main/resources/vc707/sdboot/include/sections.h -------------------------------------------------------------------------------- /fpga/src/main/resources/vc707/sdboot/include/smp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/fpga/src/main/resources/vc707/sdboot/include/smp.h -------------------------------------------------------------------------------- /fpga/src/main/resources/vc707/sdboot/kprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/fpga/src/main/resources/vc707/sdboot/kprintf.c -------------------------------------------------------------------------------- /fpga/src/main/resources/vc707/sdboot/kprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/fpga/src/main/resources/vc707/sdboot/kprintf.h -------------------------------------------------------------------------------- /fpga/src/main/resources/vc707/sdboot/linker/memory.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/fpga/src/main/resources/vc707/sdboot/linker/memory.lds -------------------------------------------------------------------------------- /fpga/src/main/resources/vc707/sdboot/linker/sdboot.elf.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/fpga/src/main/resources/vc707/sdboot/linker/sdboot.elf.lds -------------------------------------------------------------------------------- /fpga/src/main/resources/vc707/sdboot/sd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/fpga/src/main/resources/vc707/sdboot/sd.c -------------------------------------------------------------------------------- /fpga/src/main/resources/vc707~1.9.0: -------------------------------------------------------------------------------- 1 | vcu118 -------------------------------------------------------------------------------- /fpga/src/main/resources/vcu118/cep_sdboot/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/fpga/src/main/resources/vcu118/cep_sdboot/Makefile -------------------------------------------------------------------------------- /fpga/src/main/resources/vcu118/cep_sdboot/head.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/fpga/src/main/resources/vcu118/cep_sdboot/head.S -------------------------------------------------------------------------------- /fpga/src/main/resources/vcu118/cep_sdboot/include/bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/fpga/src/main/resources/vcu118/cep_sdboot/include/bits.h -------------------------------------------------------------------------------- /fpga/src/main/resources/vcu118/cep_sdboot/include/const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/fpga/src/main/resources/vcu118/cep_sdboot/include/const.h -------------------------------------------------------------------------------- /fpga/src/main/resources/vcu118/cep_sdboot/include/encoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/fpga/src/main/resources/vcu118/cep_sdboot/include/encoding.h -------------------------------------------------------------------------------- /fpga/src/main/resources/vcu118/cep_sdboot/include/kprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/fpga/src/main/resources/vcu118/cep_sdboot/include/kprintf.h -------------------------------------------------------------------------------- /fpga/src/main/resources/vcu118/cep_sdboot/include/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/fpga/src/main/resources/vcu118/cep_sdboot/include/platform.h -------------------------------------------------------------------------------- /fpga/src/main/resources/vcu118/cep_sdboot/include/sections.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/fpga/src/main/resources/vcu118/cep_sdboot/include/sections.h -------------------------------------------------------------------------------- /fpga/src/main/resources/vcu118/cep_sdboot/include/smp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/fpga/src/main/resources/vcu118/cep_sdboot/include/smp.h -------------------------------------------------------------------------------- /fpga/src/main/resources/vcu118/cep_sdboot/include/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/fpga/src/main/resources/vcu118/cep_sdboot/include/util.h -------------------------------------------------------------------------------- /fpga/src/main/resources/vcu118/cep_sdboot/kprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/fpga/src/main/resources/vcu118/cep_sdboot/kprintf.c -------------------------------------------------------------------------------- /fpga/src/main/resources/vcu118/cep_sdboot/sdboot.elf.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/fpga/src/main/resources/vcu118/cep_sdboot/sdboot.elf.lds -------------------------------------------------------------------------------- /fpga/src/main/resources/vcu118/cep_sdboot/syscalls_bootrom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/fpga/src/main/resources/vcu118/cep_sdboot/syscalls_bootrom.c -------------------------------------------------------------------------------- /fpga/src/main/resources/vcu118/sdboot/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | -------------------------------------------------------------------------------- /fpga/src/main/resources/vcu118/sdboot/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/fpga/src/main/resources/vcu118/sdboot/Makefile -------------------------------------------------------------------------------- /fpga/src/main/resources/vcu118/sdboot/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/fpga/src/main/resources/vcu118/sdboot/common.h -------------------------------------------------------------------------------- /fpga/src/main/resources/vcu118/sdboot/head.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/fpga/src/main/resources/vcu118/sdboot/head.S -------------------------------------------------------------------------------- /fpga/src/main/resources/vcu118/sdboot/include/bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/fpga/src/main/resources/vcu118/sdboot/include/bits.h -------------------------------------------------------------------------------- /fpga/src/main/resources/vcu118/sdboot/include/const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/fpga/src/main/resources/vcu118/sdboot/include/const.h -------------------------------------------------------------------------------- /fpga/src/main/resources/vcu118/sdboot/include/devices/clint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/fpga/src/main/resources/vcu118/sdboot/include/devices/clint.h -------------------------------------------------------------------------------- /fpga/src/main/resources/vcu118/sdboot/include/devices/gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/fpga/src/main/resources/vcu118/sdboot/include/devices/gpio.h -------------------------------------------------------------------------------- /fpga/src/main/resources/vcu118/sdboot/include/devices/plic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/fpga/src/main/resources/vcu118/sdboot/include/devices/plic.h -------------------------------------------------------------------------------- /fpga/src/main/resources/vcu118/sdboot/include/devices/spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/fpga/src/main/resources/vcu118/sdboot/include/devices/spi.h -------------------------------------------------------------------------------- /fpga/src/main/resources/vcu118/sdboot/include/devices/uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/fpga/src/main/resources/vcu118/sdboot/include/devices/uart.h -------------------------------------------------------------------------------- /fpga/src/main/resources/vcu118/sdboot/include/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/fpga/src/main/resources/vcu118/sdboot/include/platform.h -------------------------------------------------------------------------------- /fpga/src/main/resources/vcu118/sdboot/include/sections.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/fpga/src/main/resources/vcu118/sdboot/include/sections.h -------------------------------------------------------------------------------- /fpga/src/main/resources/vcu118/sdboot/include/smp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/fpga/src/main/resources/vcu118/sdboot/include/smp.h -------------------------------------------------------------------------------- /fpga/src/main/resources/vcu118/sdboot/kprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/fpga/src/main/resources/vcu118/sdboot/kprintf.c -------------------------------------------------------------------------------- /fpga/src/main/resources/vcu118/sdboot/kprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/fpga/src/main/resources/vcu118/sdboot/kprintf.h -------------------------------------------------------------------------------- /fpga/src/main/resources/vcu118/sdboot/linker/memory.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/fpga/src/main/resources/vcu118/sdboot/linker/memory.lds -------------------------------------------------------------------------------- /fpga/src/main/resources/vcu118/sdboot/linker/sdboot.elf.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/fpga/src/main/resources/vcu118/sdboot/linker/sdboot.elf.lds -------------------------------------------------------------------------------- /fpga/src/main/resources/vcu118/sdboot/sd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/fpga/src/main/resources/vcu118/sdboot/sd.c -------------------------------------------------------------------------------- /fpga/src/main/scala/arty/Configs.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/fpga/src/main/scala/arty/Configs.scala -------------------------------------------------------------------------------- /fpga/src/main/scala/arty/HarnessBinders.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/fpga/src/main/scala/arty/HarnessBinders.scala -------------------------------------------------------------------------------- /fpga/src/main/scala/arty/IOBinders.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/fpga/src/main/scala/arty/IOBinders.scala -------------------------------------------------------------------------------- /fpga/src/main/scala/arty/TestHarness.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/fpga/src/main/scala/arty/TestHarness.scala -------------------------------------------------------------------------------- /fpga/src/main/scala/arty100t/Configs.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/fpga/src/main/scala/arty100t/Configs.scala -------------------------------------------------------------------------------- /fpga/src/main/scala/arty100t/CustomOverlays.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/fpga/src/main/scala/arty100t/CustomOverlays.scala -------------------------------------------------------------------------------- /fpga/src/main/scala/arty100t/GPIOs.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/fpga/src/main/scala/arty100t/GPIOs.scala -------------------------------------------------------------------------------- /fpga/src/main/scala/arty100t/Harness.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/fpga/src/main/scala/arty100t/Harness.scala -------------------------------------------------------------------------------- /fpga/src/main/scala/arty100t/HarnessBinders.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/fpga/src/main/scala/arty100t/HarnessBinders.scala -------------------------------------------------------------------------------- /fpga/src/main/scala/nexysvideo/Configs.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/fpga/src/main/scala/nexysvideo/Configs.scala -------------------------------------------------------------------------------- /fpga/src/main/scala/nexysvideo/Harness.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/fpga/src/main/scala/nexysvideo/Harness.scala -------------------------------------------------------------------------------- /fpga/src/main/scala/nexysvideo/HarnessBinders.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/fpga/src/main/scala/nexysvideo/HarnessBinders.scala -------------------------------------------------------------------------------- /fpga/src/main/scala/vc707/Configs.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/fpga/src/main/scala/vc707/Configs.scala -------------------------------------------------------------------------------- /fpga/src/main/scala/vc707/CustomOverlays.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/fpga/src/main/scala/vc707/CustomOverlays.scala -------------------------------------------------------------------------------- /fpga/src/main/scala/vc707/GPIOs.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/fpga/src/main/scala/vc707/GPIOs.scala -------------------------------------------------------------------------------- /fpga/src/main/scala/vc707/HarnessBinders.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/fpga/src/main/scala/vc707/HarnessBinders.scala -------------------------------------------------------------------------------- /fpga/src/main/scala/vc707/TestHarness.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/fpga/src/main/scala/vc707/TestHarness.scala -------------------------------------------------------------------------------- /fpga/src/main/scala/vcu118/Configs.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/fpga/src/main/scala/vcu118/Configs.scala -------------------------------------------------------------------------------- /fpga/src/main/scala/vcu118/CustomOverlays.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/fpga/src/main/scala/vcu118/CustomOverlays.scala -------------------------------------------------------------------------------- /fpga/src/main/scala/vcu118/GPIOs.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/fpga/src/main/scala/vcu118/GPIOs.scala -------------------------------------------------------------------------------- /fpga/src/main/scala/vcu118/HarnessBinders.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/fpga/src/main/scala/vcu118/HarnessBinders.scala -------------------------------------------------------------------------------- /fpga/src/main/scala/vcu118/TestHarness.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/fpga/src/main/scala/vcu118/TestHarness.scala -------------------------------------------------------------------------------- /generators/chipyard/src/main/resources/csrc/spiketile.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/generators/chipyard/src/main/resources/csrc/spiketile.cc -------------------------------------------------------------------------------- /generators/chipyard/src/main/resources/csrc/spiketile_dtm.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /generators/chipyard/src/main/resources/csrc/spiketile_tsi.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /generators/chipyard/src/main/resources/vsrc/Analog.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/generators/chipyard/src/main/resources/vsrc/Analog.v -------------------------------------------------------------------------------- /generators/chipyard/src/main/resources/vsrc/ArtyTestDriver.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/generators/chipyard/src/main/resources/vsrc/ArtyTestDriver.v -------------------------------------------------------------------------------- /generators/chipyard/src/main/resources/vsrc/ClockDividerN.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/generators/chipyard/src/main/resources/vsrc/ClockDividerN.sv -------------------------------------------------------------------------------- /generators/chipyard/src/main/resources/vsrc/GCDMMIOBlackBox.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/generators/chipyard/src/main/resources/vsrc/GCDMMIOBlackBox.v -------------------------------------------------------------------------------- /generators/chipyard/src/main/resources/vsrc/pll_wrapper.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/generators/chipyard/src/main/resources/vsrc/pll_wrapper.sv -------------------------------------------------------------------------------- /generators/chipyard/src/main/resources/vsrc/spiketile.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/generators/chipyard/src/main/resources/vsrc/spiketile.v -------------------------------------------------------------------------------- /generators/chipyard/src/main/scala/ChipTop.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/generators/chipyard/src/main/scala/ChipTop.scala -------------------------------------------------------------------------------- /generators/chipyard/src/main/scala/ConfigFinder.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/generators/chipyard/src/main/scala/ConfigFinder.scala -------------------------------------------------------------------------------- /generators/chipyard/src/main/scala/DigitalTop.scala.nonasic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/generators/chipyard/src/main/scala/DigitalTop.scala.nonasic -------------------------------------------------------------------------------- /generators/chipyard/src/main/scala/Generator.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/generators/chipyard/src/main/scala/Generator.scala -------------------------------------------------------------------------------- /generators/chipyard/src/main/scala/SpikeTile.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/generators/chipyard/src/main/scala/SpikeTile.scala -------------------------------------------------------------------------------- /generators/chipyard/src/main/scala/Subsystem.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/generators/chipyard/src/main/scala/Subsystem.scala -------------------------------------------------------------------------------- /generators/chipyard/src/main/scala/System.scala.nonasic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/generators/chipyard/src/main/scala/System.scala.nonasic -------------------------------------------------------------------------------- /generators/chipyard/src/main/scala/TestSuites.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/generators/chipyard/src/main/scala/TestSuites.scala -------------------------------------------------------------------------------- /generators/chipyard/src/main/scala/clocking/FakePLL.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/generators/chipyard/src/main/scala/clocking/FakePLL.scala -------------------------------------------------------------------------------- /generators/chipyard/src/main/scala/config/AbstractConfig.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/generators/chipyard/src/main/scala/config/AbstractConfig.scala -------------------------------------------------------------------------------- /generators/chipyard/src/main/scala/config/BoomConfigs.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/generators/chipyard/src/main/scala/config/BoomConfigs.scala -------------------------------------------------------------------------------- /generators/chipyard/src/main/scala/config/CEPConfigs.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/generators/chipyard/src/main/scala/config/CEPConfigs.scala -------------------------------------------------------------------------------- /generators/chipyard/src/main/scala/config/CVA6Configs.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/generators/chipyard/src/main/scala/config/CVA6Configs.scala -------------------------------------------------------------------------------- /generators/chipyard/src/main/scala/config/ChipConfigs.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/generators/chipyard/src/main/scala/config/ChipConfigs.scala -------------------------------------------------------------------------------- /generators/chipyard/src/main/scala/config/ChipletConfigs.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/generators/chipyard/src/main/scala/config/ChipletConfigs.scala -------------------------------------------------------------------------------- /generators/chipyard/src/main/scala/config/HeteroConfigs.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/generators/chipyard/src/main/scala/config/HeteroConfigs.scala -------------------------------------------------------------------------------- /generators/chipyard/src/main/scala/config/IbexConfigs.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/generators/chipyard/src/main/scala/config/IbexConfigs.scala -------------------------------------------------------------------------------- /generators/chipyard/src/main/scala/config/NoCConfigs.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/generators/chipyard/src/main/scala/config/NoCConfigs.scala -------------------------------------------------------------------------------- /generators/chipyard/src/main/scala/config/NoCoreConfigs.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/generators/chipyard/src/main/scala/config/NoCoreConfigs.scala -------------------------------------------------------------------------------- /generators/chipyard/src/main/scala/config/RocketConfigs.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/generators/chipyard/src/main/scala/config/RocketConfigs.scala -------------------------------------------------------------------------------- /generators/chipyard/src/main/scala/config/ShuttleConfigs.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/generators/chipyard/src/main/scala/config/ShuttleConfigs.scala -------------------------------------------------------------------------------- /generators/chipyard/src/main/scala/config/SodorConfigs.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/generators/chipyard/src/main/scala/config/SodorConfigs.scala -------------------------------------------------------------------------------- /generators/chipyard/src/main/scala/config/SpikeConfigs.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/generators/chipyard/src/main/scala/config/SpikeConfigs.scala -------------------------------------------------------------------------------- /generators/chipyard/src/main/scala/example/CustomChipTop.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/generators/chipyard/src/main/scala/example/CustomChipTop.scala -------------------------------------------------------------------------------- /generators/chipyard/src/main/scala/example/EmptyChipTop.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/generators/chipyard/src/main/scala/example/EmptyChipTop.scala -------------------------------------------------------------------------------- /generators/chipyard/src/main/scala/example/FlatChipTop.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/generators/chipyard/src/main/scala/example/FlatChipTop.scala -------------------------------------------------------------------------------- /generators/chipyard/src/main/scala/example/GCD.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/generators/chipyard/src/main/scala/example/GCD.scala -------------------------------------------------------------------------------- /generators/chipyard/src/main/scala/example/InitZero.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/generators/chipyard/src/main/scala/example/InitZero.scala -------------------------------------------------------------------------------- /generators/chipyard/src/main/scala/example/NodeTypes.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/generators/chipyard/src/main/scala/example/NodeTypes.scala -------------------------------------------------------------------------------- /generators/chipyard/src/main/scala/example/TutorialTile.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/generators/chipyard/src/main/scala/example/TutorialTile.scala -------------------------------------------------------------------------------- /generators/chipyard/src/main/scala/harness/HarnessClocks.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/generators/chipyard/src/main/scala/harness/HarnessClocks.scala -------------------------------------------------------------------------------- /generators/chipyard/src/main/scala/harness/TestHarness.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/generators/chipyard/src/main/scala/harness/TestHarness.scala -------------------------------------------------------------------------------- /generators/chipyard/src/main/scala/harness/package.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/generators/chipyard/src/main/scala/harness/package.scala -------------------------------------------------------------------------------- /generators/chipyard/src/main/scala/iobinders/Ports.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/generators/chipyard/src/main/scala/iobinders/Ports.scala -------------------------------------------------------------------------------- /generators/chipyard/src/main/scala/iocell/Analog.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/generators/chipyard/src/main/scala/iocell/Analog.scala -------------------------------------------------------------------------------- /generators/chipyard/src/main/scala/iocell/IOCell.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/generators/chipyard/src/main/scala/iocell/IOCell.scala -------------------------------------------------------------------------------- /generators/chipyard/src/main/scala/upf/ChipTopUPF.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/generators/chipyard/src/main/scala/upf/ChipTopUPF.scala -------------------------------------------------------------------------------- /generators/chipyard/src/main/scala/upf/UPFAspect.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/generators/chipyard/src/main/scala/upf/UPFAspect.scala -------------------------------------------------------------------------------- /generators/chipyard/src/main/scala/upf/UPFGen.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/generators/chipyard/src/main/scala/upf/UPFGen.scala -------------------------------------------------------------------------------- /generators/chipyard/src/main/scala/upf/UPFInputs.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/generators/chipyard/src/main/scala/upf/UPFInputs.scala -------------------------------------------------------------------------------- /generators/firechip/src/main/scala/BridgeBinders.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/generators/firechip/src/main/scala/BridgeBinders.scala -------------------------------------------------------------------------------- /generators/firechip/src/main/scala/FireSim.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/generators/firechip/src/main/scala/FireSim.scala -------------------------------------------------------------------------------- /generators/firechip/src/main/scala/TargetConfigs.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/generators/firechip/src/main/scala/TargetConfigs.scala -------------------------------------------------------------------------------- /generators/mitll-blocks/src/main/resources/vsrc/aes/aes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/generators/mitll-blocks/src/main/resources/vsrc/aes/aes.pdf -------------------------------------------------------------------------------- /generators/mitll-blocks/src/main/resources/vsrc/aes/round.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/generators/mitll-blocks/src/main/resources/vsrc/aes/round.v -------------------------------------------------------------------------------- /generators/mitll-blocks/src/main/resources/vsrc/aes/table.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/generators/mitll-blocks/src/main/resources/vsrc/aes/table.v -------------------------------------------------------------------------------- /generators/mitll-blocks/src/main/resources/vsrc/des3/crp.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/generators/mitll-blocks/src/main/resources/vsrc/des3/crp.v -------------------------------------------------------------------------------- /generators/mitll-blocks/src/main/resources/vsrc/des3/des3.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/generators/mitll-blocks/src/main/resources/vsrc/des3/des3.v -------------------------------------------------------------------------------- /generators/mitll-blocks/src/main/resources/vsrc/gps/gps.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/generators/mitll-blocks/src/main/resources/vsrc/gps/gps.v -------------------------------------------------------------------------------- /generators/mitll-blocks/src/main/resources/vsrc/gps/pcode.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/generators/mitll-blocks/src/main/resources/vsrc/gps/pcode.v -------------------------------------------------------------------------------- /generators/mitll-blocks/src/main/resources/vsrc/md5/md5.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/generators/mitll-blocks/src/main/resources/vsrc/md5/md5.v -------------------------------------------------------------------------------- /generators/mitll-blocks/src/main/resources/vsrc/opentitan: -------------------------------------------------------------------------------- 1 | ../../../../../../opentitan/ -------------------------------------------------------------------------------- /generators/mitll-blocks/src/main/scala/aes.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/generators/mitll-blocks/src/main/scala/aes.scala -------------------------------------------------------------------------------- /generators/mitll-blocks/src/main/scala/cepPackage.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/generators/mitll-blocks/src/main/scala/cepPackage.scala -------------------------------------------------------------------------------- /generators/mitll-blocks/src/main/scala/cep_registers.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/generators/mitll-blocks/src/main/scala/cep_registers.scala -------------------------------------------------------------------------------- /generators/mitll-blocks/src/main/scala/cep_scratchpad.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/generators/mitll-blocks/src/main/scala/cep_scratchpad.scala -------------------------------------------------------------------------------- /generators/mitll-blocks/src/main/scala/des3.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/generators/mitll-blocks/src/main/scala/des3.scala -------------------------------------------------------------------------------- /generators/mitll-blocks/src/main/scala/dft.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/generators/mitll-blocks/src/main/scala/dft.scala -------------------------------------------------------------------------------- /generators/mitll-blocks/src/main/scala/fir.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/generators/mitll-blocks/src/main/scala/fir.scala -------------------------------------------------------------------------------- /generators/mitll-blocks/src/main/scala/gps.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/generators/mitll-blocks/src/main/scala/gps.scala -------------------------------------------------------------------------------- /generators/mitll-blocks/src/main/scala/idft.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/generators/mitll-blocks/src/main/scala/idft.scala -------------------------------------------------------------------------------- /generators/mitll-blocks/src/main/scala/iir.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/generators/mitll-blocks/src/main/scala/iir.scala -------------------------------------------------------------------------------- /generators/mitll-blocks/src/main/scala/md5.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/generators/mitll-blocks/src/main/scala/md5.scala -------------------------------------------------------------------------------- /generators/mitll-blocks/src/main/scala/rsa.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/generators/mitll-blocks/src/main/scala/rsa.scala -------------------------------------------------------------------------------- /generators/mitll-blocks/src/main/scala/sha256.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/generators/mitll-blocks/src/main/scala/sha256.scala -------------------------------------------------------------------------------- /generators/mitll-blocks/src/main/scala/srot.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/generators/mitll-blocks/src/main/scala/srot.scala -------------------------------------------------------------------------------- /generators/tracegen/src/main/scala/Configs.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/generators/tracegen/src/main/scala/Configs.scala -------------------------------------------------------------------------------- /generators/tracegen/src/main/scala/System.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/generators/tracegen/src/main/scala/System.scala -------------------------------------------------------------------------------- /generators/tracegen/tracegen.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/generators/tracegen/tracegen.mk -------------------------------------------------------------------------------- /project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.8.2 2 | -------------------------------------------------------------------------------- /project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/project/plugins.sbt -------------------------------------------------------------------------------- /scripts/add-githooks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/scripts/add-githooks.sh -------------------------------------------------------------------------------- /scripts/build-circt-from-source.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/scripts/build-circt-from-source.sh -------------------------------------------------------------------------------- /scripts/build-openocd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/scripts/build-openocd.sh -------------------------------------------------------------------------------- /scripts/build-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/scripts/build-setup.sh -------------------------------------------------------------------------------- /scripts/build-toolchain-extra.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/scripts/build-toolchain-extra.sh -------------------------------------------------------------------------------- /scripts/build-util.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/scripts/build-util.sh -------------------------------------------------------------------------------- /scripts/check-tracegen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/scripts/check-tracegen.sh -------------------------------------------------------------------------------- /scripts/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/scripts/entrypoint.sh -------------------------------------------------------------------------------- /scripts/firesim-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/scripts/firesim-setup.sh -------------------------------------------------------------------------------- /scripts/fix-open-files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/scripts/fix-open-files.sh -------------------------------------------------------------------------------- /scripts/gen-tags.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/scripts/gen-tags.sh -------------------------------------------------------------------------------- /scripts/generate-ckpt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/scripts/generate-ckpt.sh -------------------------------------------------------------------------------- /scripts/generate-conda-lockfiles.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/scripts/generate-conda-lockfiles.sh -------------------------------------------------------------------------------- /scripts/init-software.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/scripts/init-software.sh -------------------------------------------------------------------------------- /scripts/init-submodules-no-riscv-tools-nolog.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/scripts/init-submodules-no-riscv-tools-nolog.sh -------------------------------------------------------------------------------- /scripts/init-submodules-no-riscv-tools.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/scripts/init-submodules-no-riscv-tools.sh -------------------------------------------------------------------------------- /scripts/init-vlsi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/scripts/init-vlsi.sh -------------------------------------------------------------------------------- /scripts/insert-includes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/scripts/insert-includes.py -------------------------------------------------------------------------------- /scripts/numa_prefix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/scripts/numa_prefix -------------------------------------------------------------------------------- /scripts/replace-content.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/scripts/replace-content.py -------------------------------------------------------------------------------- /scripts/repo-clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/scripts/repo-clean.sh -------------------------------------------------------------------------------- /scripts/sbt-launch.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/scripts/sbt-launch.jar -------------------------------------------------------------------------------- /scripts/smartelf2hex.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/scripts/smartelf2hex.sh -------------------------------------------------------------------------------- /scripts/sort-blackbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/scripts/sort-blackbox.py -------------------------------------------------------------------------------- /scripts/split-mems-conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/scripts/split-mems-conf.py -------------------------------------------------------------------------------- /scripts/uniquify-module-names.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/scripts/uniquify-module-names.py -------------------------------------------------------------------------------- /scripts/upgrade-vlsi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/scripts/upgrade-vlsi.sh -------------------------------------------------------------------------------- /scripts/utils.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/scripts/utils.sh -------------------------------------------------------------------------------- /sims/cep_cosim/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/.gitignore -------------------------------------------------------------------------------- /sims/cep_cosim/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/Makefile -------------------------------------------------------------------------------- /sims/cep_cosim/Makefile.chipyard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/Makefile.chipyard -------------------------------------------------------------------------------- /sims/cep_cosim/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/README.md -------------------------------------------------------------------------------- /sims/cep_cosim/bin/convert-bootrom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/bin/convert-bootrom.py -------------------------------------------------------------------------------- /sims/cep_cosim/bin/createPassFail.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/bin/createPassFail.pl -------------------------------------------------------------------------------- /sims/cep_cosim/bin/generate-isa-vsif.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/bin/generate-isa-vsif.py -------------------------------------------------------------------------------- /sims/cep_cosim/bin/parse-dts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/bin/parse-dts.py -------------------------------------------------------------------------------- /sims/cep_cosim/bin/v2c.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/bin/v2c.pl -------------------------------------------------------------------------------- /sims/cep_cosim/bin/vpp.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/bin/vpp.pl -------------------------------------------------------------------------------- /sims/cep_cosim/bootrom/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/bootrom/Makefile -------------------------------------------------------------------------------- /sims/cep_cosim/bootrom/cep_boot.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/bootrom/cep_boot.lds -------------------------------------------------------------------------------- /sims/cep_cosim/bootrom/head.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/bootrom/head.S -------------------------------------------------------------------------------- /sims/cep_cosim/bootrom/include/bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/bootrom/include/bits.h -------------------------------------------------------------------------------- /sims/cep_cosim/bootrom/include/const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/bootrom/include/const.h -------------------------------------------------------------------------------- /sims/cep_cosim/bootrom/include/devices/cepregs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/bootrom/include/devices/cepregs.h -------------------------------------------------------------------------------- /sims/cep_cosim/bootrom/include/devices/clint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/bootrom/include/devices/clint.h -------------------------------------------------------------------------------- /sims/cep_cosim/bootrom/include/devices/gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/bootrom/include/devices/gpio.h -------------------------------------------------------------------------------- /sims/cep_cosim/bootrom/include/devices/plic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/bootrom/include/devices/plic.h -------------------------------------------------------------------------------- /sims/cep_cosim/bootrom/include/devices/spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/bootrom/include/devices/spi.h -------------------------------------------------------------------------------- /sims/cep_cosim/bootrom/include/devices/uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/bootrom/include/devices/uart.h -------------------------------------------------------------------------------- /sims/cep_cosim/bootrom/include/encoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/bootrom/include/encoding.h -------------------------------------------------------------------------------- /sims/cep_cosim/bootrom/include/kprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/bootrom/include/kprintf.h -------------------------------------------------------------------------------- /sims/cep_cosim/bootrom/include/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/bootrom/include/platform.h -------------------------------------------------------------------------------- /sims/cep_cosim/bootrom/include/sections.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/bootrom/include/sections.h -------------------------------------------------------------------------------- /sims/cep_cosim/bootrom/include/smp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/bootrom/include/smp.h -------------------------------------------------------------------------------- /sims/cep_cosim/bootrom/include/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/bootrom/include/util.h -------------------------------------------------------------------------------- /sims/cep_cosim/bootrom/kprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/bootrom/kprintf.c -------------------------------------------------------------------------------- /sims/cep_cosim/bootrom/sd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/bootrom/sd.c -------------------------------------------------------------------------------- /sims/cep_cosim/bootrom/syscalls_bootrom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/bootrom/syscalls_bootrom.c -------------------------------------------------------------------------------- /sims/cep_cosim/cep_buildHW.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/cep_buildHW.make -------------------------------------------------------------------------------- /sims/cep_cosim/cep_buildSW.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/cep_buildSW.make -------------------------------------------------------------------------------- /sims/cep_cosim/common.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/common.make -------------------------------------------------------------------------------- /sims/cep_cosim/comp.do: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/comp.do -------------------------------------------------------------------------------- /sims/cep_cosim/drivers/bare/bare_malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/drivers/bare/bare_malloc.c -------------------------------------------------------------------------------- /sims/cep_cosim/drivers/bare/cep_link.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/drivers/bare/cep_link.lds -------------------------------------------------------------------------------- /sims/cep_cosim/drivers/bare/crt.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/drivers/bare/crt.S -------------------------------------------------------------------------------- /sims/cep_cosim/drivers/bare/include/bare_malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/drivers/bare/include/bare_malloc.h -------------------------------------------------------------------------------- /sims/cep_cosim/drivers/bare/include/compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/drivers/bare/include/compiler.h -------------------------------------------------------------------------------- /sims/cep_cosim/drivers/bare/include/const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/drivers/bare/include/const.h -------------------------------------------------------------------------------- /sims/cep_cosim/drivers/bare/include/devices/arty100t_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/drivers/bare/include/devices/arty100t_gpio.h -------------------------------------------------------------------------------- /sims/cep_cosim/drivers/bare/include/devices/cepregs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/drivers/bare/include/devices/cepregs.h -------------------------------------------------------------------------------- /sims/cep_cosim/drivers/bare/include/devices/clint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/drivers/bare/include/devices/clint.h -------------------------------------------------------------------------------- /sims/cep_cosim/drivers/bare/include/devices/gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/drivers/bare/include/devices/gpio.h -------------------------------------------------------------------------------- /sims/cep_cosim/drivers/bare/include/devices/plic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/drivers/bare/include/devices/plic.h -------------------------------------------------------------------------------- /sims/cep_cosim/drivers/bare/include/devices/spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/drivers/bare/include/devices/spi.h -------------------------------------------------------------------------------- /sims/cep_cosim/drivers/bare/include/devices/uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/drivers/bare/include/devices/uart.h -------------------------------------------------------------------------------- /sims/cep_cosim/drivers/bare/include/encoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/drivers/bare/include/encoding.h -------------------------------------------------------------------------------- /sims/cep_cosim/drivers/bare/include/kprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/drivers/bare/include/kprintf.h -------------------------------------------------------------------------------- /sims/cep_cosim/drivers/bare/include/mmio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/drivers/bare/include/mmio.h -------------------------------------------------------------------------------- /sims/cep_cosim/drivers/bare/include/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/drivers/bare/include/platform.h -------------------------------------------------------------------------------- /sims/cep_cosim/drivers/bare/include/smp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/drivers/bare/include/smp.h -------------------------------------------------------------------------------- /sims/cep_cosim/drivers/bare/include/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/drivers/bare/include/util.h -------------------------------------------------------------------------------- /sims/cep_cosim/drivers/bare/kprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/drivers/bare/kprintf.c -------------------------------------------------------------------------------- /sims/cep_cosim/drivers/bare/syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/drivers/bare/syscalls.c -------------------------------------------------------------------------------- /sims/cep_cosim/drivers/cep_tests/CEP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/drivers/cep_tests/CEP.h -------------------------------------------------------------------------------- /sims/cep_cosim/drivers/cep_tests/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/drivers/cep_tests/Config.in -------------------------------------------------------------------------------- /sims/cep_cosim/drivers/cep_tests/cep_aes.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/drivers/cep_tests/cep_aes.cc -------------------------------------------------------------------------------- /sims/cep_cosim/drivers/cep_tests/cep_aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/drivers/cep_tests/cep_aes.h -------------------------------------------------------------------------------- /sims/cep_cosim/drivers/cep_tests/cep_apis.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/drivers/cep_tests/cep_apis.cc -------------------------------------------------------------------------------- /sims/cep_cosim/drivers/cep_tests/cep_apis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/drivers/cep_tests/cep_apis.h -------------------------------------------------------------------------------- /sims/cep_cosim/drivers/cep_tests/cep_crypto.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/drivers/cep_tests/cep_crypto.cc -------------------------------------------------------------------------------- /sims/cep_cosim/drivers/cep_tests/cep_crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/drivers/cep_tests/cep_crypto.h -------------------------------------------------------------------------------- /sims/cep_cosim/drivers/cep_tests/cep_des3.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/drivers/cep_tests/cep_des3.cc -------------------------------------------------------------------------------- /sims/cep_cosim/drivers/cep_tests/cep_des3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/drivers/cep_tests/cep_des3.h -------------------------------------------------------------------------------- /sims/cep_cosim/drivers/cep_tests/cep_dft.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/drivers/cep_tests/cep_dft.cc -------------------------------------------------------------------------------- /sims/cep_cosim/drivers/cep_tests/cep_dft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/drivers/cep_tests/cep_dft.h -------------------------------------------------------------------------------- /sims/cep_cosim/drivers/cep_tests/cep_fir.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/drivers/cep_tests/cep_fir.cc -------------------------------------------------------------------------------- /sims/cep_cosim/drivers/cep_tests/cep_fir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/drivers/cep_tests/cep_fir.h -------------------------------------------------------------------------------- /sims/cep_cosim/drivers/cep_tests/cep_gps.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/drivers/cep_tests/cep_gps.cc -------------------------------------------------------------------------------- /sims/cep_cosim/drivers/cep_tests/cep_gps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/drivers/cep_tests/cep_gps.h -------------------------------------------------------------------------------- /sims/cep_cosim/drivers/cep_tests/cep_idft.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/drivers/cep_tests/cep_idft.cc -------------------------------------------------------------------------------- /sims/cep_cosim/drivers/cep_tests/cep_idft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/drivers/cep_tests/cep_idft.h -------------------------------------------------------------------------------- /sims/cep_cosim/drivers/cep_tests/cep_iir.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/drivers/cep_tests/cep_iir.cc -------------------------------------------------------------------------------- /sims/cep_cosim/drivers/cep_tests/cep_iir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/drivers/cep_tests/cep_iir.h -------------------------------------------------------------------------------- /sims/cep_cosim/drivers/cep_tests/cep_md5.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/drivers/cep_tests/cep_md5.cc -------------------------------------------------------------------------------- /sims/cep_cosim/drivers/cep_tests/cep_md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/drivers/cep_tests/cep_md5.h -------------------------------------------------------------------------------- /sims/cep_cosim/drivers/cep_tests/cep_riscv.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/drivers/cep_tests/cep_riscv.cc -------------------------------------------------------------------------------- /sims/cep_cosim/drivers/cep_tests/cep_riscv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/drivers/cep_tests/cep_riscv.h -------------------------------------------------------------------------------- /sims/cep_cosim/drivers/cep_tests/cep_rsa.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/drivers/cep_tests/cep_rsa.cc -------------------------------------------------------------------------------- /sims/cep_cosim/drivers/cep_tests/cep_rsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/drivers/cep_tests/cep_rsa.h -------------------------------------------------------------------------------- /sims/cep_cosim/drivers/cep_tests/cep_sha256.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/drivers/cep_tests/cep_sha256.cc -------------------------------------------------------------------------------- /sims/cep_cosim/drivers/cep_tests/cep_sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/drivers/cep_tests/cep_sha256.h -------------------------------------------------------------------------------- /sims/cep_cosim/drivers/cep_tests/cep_srot.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/drivers/cep_tests/cep_srot.cc -------------------------------------------------------------------------------- /sims/cep_cosim/drivers/cep_tests/cep_srot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/drivers/cep_tests/cep_srot.h -------------------------------------------------------------------------------- /sims/cep_cosim/drivers/cep_tests/cep_srot_keys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/drivers/cep_tests/cep_srot_keys.h -------------------------------------------------------------------------------- /sims/cep_cosim/drivers/cep_tests/fft.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/drivers/cep_tests/fft.cc -------------------------------------------------------------------------------- /sims/cep_cosim/drivers/cep_tests/fft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/drivers/cep_tests/fft.h -------------------------------------------------------------------------------- /sims/cep_cosim/drivers/cep_tests/portable_io.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/drivers/cep_tests/portable_io.cc -------------------------------------------------------------------------------- /sims/cep_cosim/drivers/cep_tests/portable_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/drivers/cep_tests/portable_io.h -------------------------------------------------------------------------------- /sims/cep_cosim/drivers/diag/cepAccessTest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/drivers/diag/cepAccessTest.cc -------------------------------------------------------------------------------- /sims/cep_cosim/drivers/diag/cepAccessTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/drivers/diag/cepAccessTest.h -------------------------------------------------------------------------------- /sims/cep_cosim/drivers/diag/cepClintTest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/drivers/diag/cepClintTest.cc -------------------------------------------------------------------------------- /sims/cep_cosim/drivers/diag/cepClintTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/drivers/diag/cepClintTest.h -------------------------------------------------------------------------------- /sims/cep_cosim/drivers/diag/cepCsrTest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/drivers/diag/cepCsrTest.cc -------------------------------------------------------------------------------- /sims/cep_cosim/drivers/diag/cepCsrTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/drivers/diag/cepCsrTest.h -------------------------------------------------------------------------------- /sims/cep_cosim/drivers/diag/cepGpioTest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/drivers/diag/cepGpioTest.cc -------------------------------------------------------------------------------- /sims/cep_cosim/drivers/diag/cepGpioTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/drivers/diag/cepGpioTest.h -------------------------------------------------------------------------------- /sims/cep_cosim/drivers/diag/cepLockTest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/drivers/diag/cepLockTest.cc -------------------------------------------------------------------------------- /sims/cep_cosim/drivers/diag/cepLockTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/drivers/diag/cepLockTest.h -------------------------------------------------------------------------------- /sims/cep_cosim/drivers/diag/cepLockfreeAtomic.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/drivers/diag/cepLockfreeAtomic.cc -------------------------------------------------------------------------------- /sims/cep_cosim/drivers/diag/cepLockfreeAtomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/drivers/diag/cepLockfreeAtomic.h -------------------------------------------------------------------------------- /sims/cep_cosim/drivers/diag/cepMacroMix.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/drivers/diag/cepMacroMix.cc -------------------------------------------------------------------------------- /sims/cep_cosim/drivers/diag/cepMacroMix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/drivers/diag/cepMacroMix.h -------------------------------------------------------------------------------- /sims/cep_cosim/drivers/diag/cepMaskromTest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/drivers/diag/cepMaskromTest.cc -------------------------------------------------------------------------------- /sims/cep_cosim/drivers/diag/cepMaskromTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/drivers/diag/cepMaskromTest.h -------------------------------------------------------------------------------- /sims/cep_cosim/drivers/diag/cepMemTest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/drivers/diag/cepMemTest.cc -------------------------------------------------------------------------------- /sims/cep_cosim/drivers/diag/cepMemTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/drivers/diag/cepMemTest.h -------------------------------------------------------------------------------- /sims/cep_cosim/drivers/diag/cepMultiThread.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/drivers/diag/cepMultiThread.cc -------------------------------------------------------------------------------- /sims/cep_cosim/drivers/diag/cepMultiThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/drivers/diag/cepMultiThread.h -------------------------------------------------------------------------------- /sims/cep_cosim/drivers/diag/cepPlicTest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/drivers/diag/cepPlicTest.cc -------------------------------------------------------------------------------- /sims/cep_cosim/drivers/diag/cepPlicTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/drivers/diag/cepPlicTest.h -------------------------------------------------------------------------------- /sims/cep_cosim/drivers/diag/cepRegTest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/drivers/diag/cepRegTest.cc -------------------------------------------------------------------------------- /sims/cep_cosim/drivers/diag/cepRegTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/drivers/diag/cepRegTest.h -------------------------------------------------------------------------------- /sims/cep_cosim/drivers/diag/cepSpiTest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/drivers/diag/cepSpiTest.cc -------------------------------------------------------------------------------- /sims/cep_cosim/drivers/diag/cepSpiTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/drivers/diag/cepSpiTest.h -------------------------------------------------------------------------------- /sims/cep_cosim/drivers/diag/cepSrotMemTest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/drivers/diag/cepSrotMemTest.cc -------------------------------------------------------------------------------- /sims/cep_cosim/drivers/diag/cepSrotMemTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/drivers/diag/cepSrotMemTest.h -------------------------------------------------------------------------------- /sims/cep_cosim/drivers/diag/cepSrotTest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/drivers/diag/cepSrotTest.cc -------------------------------------------------------------------------------- /sims/cep_cosim/drivers/diag/cepSrotTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/drivers/diag/cepSrotTest.h -------------------------------------------------------------------------------- /sims/cep_cosim/drivers/diag/cepUartTest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/drivers/diag/cepUartTest.cc -------------------------------------------------------------------------------- /sims/cep_cosim/drivers/diag/cepUartTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/drivers/diag/cepUartTest.h -------------------------------------------------------------------------------- /sims/cep_cosim/drivers/diag/memBaseTest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/drivers/diag/memBaseTest.cc -------------------------------------------------------------------------------- /sims/cep_cosim/drivers/diag/memBaseTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/drivers/diag/memBaseTest.h -------------------------------------------------------------------------------- /sims/cep_cosim/drivers/diag/random48.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/drivers/diag/random48.cc -------------------------------------------------------------------------------- /sims/cep_cosim/drivers/diag/random48.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/drivers/diag/random48.h -------------------------------------------------------------------------------- /sims/cep_cosim/drivers/diag/regBaseTest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/drivers/diag/regBaseTest.cc -------------------------------------------------------------------------------- /sims/cep_cosim/drivers/diag/regBaseTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/drivers/diag/regBaseTest.h -------------------------------------------------------------------------------- /sims/cep_cosim/drivers/diag/simdiag_global.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/drivers/diag/simdiag_global.cc -------------------------------------------------------------------------------- /sims/cep_cosim/drivers/diag/simdiag_global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/drivers/diag/simdiag_global.h -------------------------------------------------------------------------------- /sims/cep_cosim/drivers/vectors/.NOT_EMPTY: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sims/cep_cosim/drivers/vectors/AES_playback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/drivers/vectors/AES_playback.h -------------------------------------------------------------------------------- /sims/cep_cosim/drivers/vectors/DES3_playback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/drivers/vectors/DES3_playback.h -------------------------------------------------------------------------------- /sims/cep_cosim/drivers/vectors/DFT_playback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/drivers/vectors/DFT_playback.h -------------------------------------------------------------------------------- /sims/cep_cosim/drivers/vectors/FIR_playback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/drivers/vectors/FIR_playback.h -------------------------------------------------------------------------------- /sims/cep_cosim/drivers/vectors/GPS_0_playback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/drivers/vectors/GPS_0_playback.h -------------------------------------------------------------------------------- /sims/cep_cosim/drivers/vectors/GPS_1_playback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/drivers/vectors/GPS_1_playback.h -------------------------------------------------------------------------------- /sims/cep_cosim/drivers/vectors/GPS_2_playback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/drivers/vectors/GPS_2_playback.h -------------------------------------------------------------------------------- /sims/cep_cosim/drivers/vectors/GPS_3_playback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/drivers/vectors/GPS_3_playback.h -------------------------------------------------------------------------------- /sims/cep_cosim/drivers/vectors/IDFT_playback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/drivers/vectors/IDFT_playback.h -------------------------------------------------------------------------------- /sims/cep_cosim/drivers/vectors/IIR_playback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/drivers/vectors/IIR_playback.h -------------------------------------------------------------------------------- /sims/cep_cosim/drivers/vectors/MD5_playback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/drivers/vectors/MD5_playback.h -------------------------------------------------------------------------------- /sims/cep_cosim/drivers/vectors/RSA_playback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/drivers/vectors/RSA_playback.h -------------------------------------------------------------------------------- /sims/cep_cosim/drivers/vectors/SHA256_0_playback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/drivers/vectors/SHA256_0_playback.h -------------------------------------------------------------------------------- /sims/cep_cosim/drivers/vectors/SHA256_1_playback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/drivers/vectors/SHA256_1_playback.h -------------------------------------------------------------------------------- /sims/cep_cosim/drivers/vectors/SHA256_2_playback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/drivers/vectors/SHA256_2_playback.h -------------------------------------------------------------------------------- /sims/cep_cosim/drivers/vectors/SHA256_3_playback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/drivers/vectors/SHA256_3_playback.h -------------------------------------------------------------------------------- /sims/cep_cosim/drivers/vectors/SROT_aesonly_playback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/drivers/vectors/SROT_aesonly_playback.h -------------------------------------------------------------------------------- /sims/cep_cosim/drivers/vectors/SROT_md5only_playback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/drivers/vectors/SROT_md5only_playback.h -------------------------------------------------------------------------------- /sims/cep_cosim/drivers/vectors/SROT_playback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/drivers/vectors/SROT_playback.h -------------------------------------------------------------------------------- /sims/cep_cosim/drivers/virtual/link.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/drivers/virtual/link.ld -------------------------------------------------------------------------------- /sims/cep_cosim/drivers/virtual/multi_entry.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/drivers/virtual/multi_entry.S -------------------------------------------------------------------------------- /sims/cep_cosim/drivers/virtual/multi_vm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/drivers/virtual/multi_vm.c -------------------------------------------------------------------------------- /sims/cep_cosim/drivers/virtual/riscv_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/drivers/virtual/riscv_test.h -------------------------------------------------------------------------------- /sims/cep_cosim/drivers/virtual/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/drivers/virtual/string.c -------------------------------------------------------------------------------- /sims/cep_cosim/dvt/RocketTile_beh.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/dvt/RocketTile_beh.sv -------------------------------------------------------------------------------- /sims/cep_cosim/dvt/cep_adrMap.incl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/dvt/cep_adrMap.incl -------------------------------------------------------------------------------- /sims/cep_cosim/dvt/cep_hierMap.incl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/dvt/cep_hierMap.incl -------------------------------------------------------------------------------- /sims/cep_cosim/dvt/cep_tb.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/dvt/cep_tb.sv -------------------------------------------------------------------------------- /sims/cep_cosim/dvt/cpu_driver.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/dvt/cpu_driver.sv -------------------------------------------------------------------------------- /sims/cep_cosim/dvt/dpi_common.incl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/dvt/dpi_common.incl -------------------------------------------------------------------------------- /sims/cep_cosim/dvt/dump_control.incl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/dvt/dump_control.incl -------------------------------------------------------------------------------- /sims/cep_cosim/dvt/ptw_monitor.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/dvt/ptw_monitor.sv -------------------------------------------------------------------------------- /sims/cep_cosim/dvt/sd_spi_model.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/dvt/sd_spi_model.v -------------------------------------------------------------------------------- /sims/cep_cosim/dvt/spi_loopback.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/dvt/spi_loopback.sv -------------------------------------------------------------------------------- /sims/cep_cosim/dvt/system_driver.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/dvt/system_driver.sv -------------------------------------------------------------------------------- /sims/cep_cosim/dvt/tile_monitor.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/dvt/tile_monitor.sv -------------------------------------------------------------------------------- /sims/cep_cosim/dvt/tl_defines.incl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/dvt/tl_defines.incl -------------------------------------------------------------------------------- /sims/cep_cosim/dvt/tl_master_beh.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/dvt/tl_master_beh.sv -------------------------------------------------------------------------------- /sims/cep_cosim/dvt/uart_model.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/dvt/uart_model.sv -------------------------------------------------------------------------------- /sims/cep_cosim/dvt/uart_rx.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/dvt/uart_rx.v -------------------------------------------------------------------------------- /sims/cep_cosim/dvt/v2c_cmds.incl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/dvt/v2c_cmds.incl -------------------------------------------------------------------------------- /sims/cep_cosim/dvt/v2c_top.incl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/dvt/v2c_top.incl -------------------------------------------------------------------------------- /sims/cep_cosim/lib/.NOT_EMPTY: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sims/cep_cosim/modelsim_coverage.do: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/modelsim_coverage.do -------------------------------------------------------------------------------- /sims/cep_cosim/pli/VecVal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/pli/VecVal.h -------------------------------------------------------------------------------- /sims/cep_cosim/pli/dpi_bitbang.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/pli/dpi_bitbang.cc -------------------------------------------------------------------------------- /sims/cep_cosim/pli/dpi_bitbang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/pli/dpi_bitbang.h -------------------------------------------------------------------------------- /sims/cep_cosim/pli/log.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/pli/log.cc -------------------------------------------------------------------------------- /sims/cep_cosim/pli/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/pli/log.h -------------------------------------------------------------------------------- /sims/cep_cosim/pli/v2c.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/pli/v2c.tab -------------------------------------------------------------------------------- /sims/cep_cosim/pli/vpp2shMem.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/pli/vpp2shMem.cc -------------------------------------------------------------------------------- /sims/cep_cosim/pli/vpp2shMem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/pli/vpp2shMem.h -------------------------------------------------------------------------------- /sims/cep_cosim/share/access.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/share/access.cc -------------------------------------------------------------------------------- /sims/cep_cosim/share/access.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/share/access.h -------------------------------------------------------------------------------- /sims/cep_cosim/share/sahandler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/share/sahandler.c -------------------------------------------------------------------------------- /sims/cep_cosim/share/shIpc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/share/shIpc.cc -------------------------------------------------------------------------------- /sims/cep_cosim/share/shIpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/share/shIpc.h -------------------------------------------------------------------------------- /sims/cep_cosim/share/shMem.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/share/shMem.cc -------------------------------------------------------------------------------- /sims/cep_cosim/share/shMem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/share/shMem.h -------------------------------------------------------------------------------- /sims/cep_cosim/share/share.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/share/share.h -------------------------------------------------------------------------------- /sims/cep_cosim/simDiag/simPio.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/simDiag/simPio.cc -------------------------------------------------------------------------------- /sims/cep_cosim/simDiag/simPio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/simDiag/simPio.h -------------------------------------------------------------------------------- /sims/cep_cosim/simDiag/stdTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/simDiag/stdTypes.h -------------------------------------------------------------------------------- /sims/cep_cosim/src/shLog.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/src/shLog.cc -------------------------------------------------------------------------------- /sims/cep_cosim/src/shLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/src/shLog.h -------------------------------------------------------------------------------- /sims/cep_cosim/src/shPthread.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/src/shPthread.cc -------------------------------------------------------------------------------- /sims/cep_cosim/src/shPthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/src/shPthread.h -------------------------------------------------------------------------------- /sims/cep_cosim/src/v2c_sys.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/src/v2c_sys.cc -------------------------------------------------------------------------------- /sims/cep_cosim/src/v2c_sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/src/v2c_sys.h -------------------------------------------------------------------------------- /sims/cep_cosim/testSuites/bareMetalTests/.gitignore: -------------------------------------------------------------------------------- 1 | .vmake_out 2 | searchPaths_build 3 | 4 | -------------------------------------------------------------------------------- /sims/cep_cosim/testSuites/bareMetalTests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/testSuites/bareMetalTests/Makefile -------------------------------------------------------------------------------- /sims/cep_cosim/testSuites/bareMetalTests/aesMacro/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/testSuites/bareMetalTests/aesMacro/Makefile -------------------------------------------------------------------------------- /sims/cep_cosim/testSuites/bareMetalTests/atomicOps/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/testSuites/bareMetalTests/atomicOps/Makefile -------------------------------------------------------------------------------- /sims/cep_cosim/testSuites/bareMetalTests/clintIntr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/testSuites/bareMetalTests/clintIntr/Makefile -------------------------------------------------------------------------------- /sims/cep_cosim/testSuites/bareMetalTests/clintTest/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/testSuites/bareMetalTests/clintTest/Makefile -------------------------------------------------------------------------------- /sims/cep_cosim/testSuites/bareMetalTests/common.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/testSuites/bareMetalTests/common.make -------------------------------------------------------------------------------- /sims/cep_cosim/testSuites/bareMetalTests/csrTest/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/testSuites/bareMetalTests/csrTest/Makefile -------------------------------------------------------------------------------- /sims/cep_cosim/testSuites/bareMetalTests/csrTest/c_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/testSuites/bareMetalTests/csrTest/c_module.h -------------------------------------------------------------------------------- /sims/cep_cosim/testSuites/bareMetalTests/debugTest/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/testSuites/bareMetalTests/debugTest/Makefile -------------------------------------------------------------------------------- /sims/cep_cosim/testSuites/bareMetalTests/debugTest/dtm.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/testSuites/bareMetalTests/debugTest/dtm.cfg -------------------------------------------------------------------------------- /sims/cep_cosim/testSuites/bareMetalTests/extIntr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/testSuites/bareMetalTests/extIntr/Makefile -------------------------------------------------------------------------------- /sims/cep_cosim/testSuites/bareMetalTests/extIntr/c_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/testSuites/bareMetalTests/extIntr/c_module.h -------------------------------------------------------------------------------- /sims/cep_cosim/testSuites/bareMetalTests/fullBoot/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/testSuites/bareMetalTests/fullBoot/Makefile -------------------------------------------------------------------------------- /sims/cep_cosim/testSuites/bareMetalTests/lockTest/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/testSuites/bareMetalTests/lockTest/Makefile -------------------------------------------------------------------------------- /sims/cep_cosim/testSuites/bareMetalTests/lrscOps/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/testSuites/bareMetalTests/lrscOps/Makefile -------------------------------------------------------------------------------- /sims/cep_cosim/testSuites/bareMetalTests/lrscOps/c_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/testSuites/bareMetalTests/lrscOps/c_module.h -------------------------------------------------------------------------------- /sims/cep_cosim/testSuites/bareMetalTests/macro2Mix/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/testSuites/bareMetalTests/macro2Mix/Makefile -------------------------------------------------------------------------------- /sims/cep_cosim/testSuites/bareMetalTests/macro3Mix/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/testSuites/bareMetalTests/macro3Mix/Makefile -------------------------------------------------------------------------------- /sims/cep_cosim/testSuites/bareMetalTests/macro4Mix/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/testSuites/bareMetalTests/macro4Mix/Makefile -------------------------------------------------------------------------------- /sims/cep_cosim/testSuites/bareMetalTests/macroMix/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/testSuites/bareMetalTests/macroMix/Makefile -------------------------------------------------------------------------------- /sims/cep_cosim/testSuites/bareMetalTests/md5Macro/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/testSuites/bareMetalTests/md5Macro/Makefile -------------------------------------------------------------------------------- /sims/cep_cosim/testSuites/bareMetalTests/miscTests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/testSuites/bareMetalTests/miscTests/Makefile -------------------------------------------------------------------------------- /sims/cep_cosim/testSuites/bareMetalTests/multiLock/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/testSuites/bareMetalTests/multiLock/Makefile -------------------------------------------------------------------------------- /sims/cep_cosim/testSuites/bareMetalTests/plicTest/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/testSuites/bareMetalTests/plicTest/Makefile -------------------------------------------------------------------------------- /sims/cep_cosim/testSuites/bareMetalTests/regTest/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/testSuites/bareMetalTests/regTest/Makefile -------------------------------------------------------------------------------- /sims/cep_cosim/testSuites/bareMetalTests/regTest/c_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/testSuites/bareMetalTests/regTest/c_module.h -------------------------------------------------------------------------------- /sims/cep_cosim/testSuites/bareMetalTests/suite_config.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/testSuites/bareMetalTests/suite_config.v -------------------------------------------------------------------------------- /sims/cep_cosim/testSuites/bfmTests/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/testSuites/bfmTests/.gitignore -------------------------------------------------------------------------------- /sims/cep_cosim/testSuites/bfmTests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/testSuites/bfmTests/Makefile -------------------------------------------------------------------------------- /sims/cep_cosim/testSuites/bfmTests/accessTest/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/testSuites/bfmTests/accessTest/Makefile -------------------------------------------------------------------------------- /sims/cep_cosim/testSuites/bfmTests/accessTest/c_dispatch.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/testSuites/bfmTests/accessTest/c_dispatch.cc -------------------------------------------------------------------------------- /sims/cep_cosim/testSuites/bfmTests/accessTest/c_dispatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/testSuites/bfmTests/accessTest/c_dispatch.h -------------------------------------------------------------------------------- /sims/cep_cosim/testSuites/bfmTests/accessTest/c_module.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/testSuites/bfmTests/accessTest/c_module.cc -------------------------------------------------------------------------------- /sims/cep_cosim/testSuites/bfmTests/accessTest/c_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/testSuites/bfmTests/accessTest/c_module.h -------------------------------------------------------------------------------- /sims/cep_cosim/testSuites/bfmTests/clintTest/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/testSuites/bfmTests/clintTest/Makefile -------------------------------------------------------------------------------- /sims/cep_cosim/testSuites/bfmTests/clintTest/c_dispatch.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/testSuites/bfmTests/clintTest/c_dispatch.cc -------------------------------------------------------------------------------- /sims/cep_cosim/testSuites/bfmTests/clintTest/c_dispatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/testSuites/bfmTests/clintTest/c_dispatch.h -------------------------------------------------------------------------------- /sims/cep_cosim/testSuites/bfmTests/clintTest/c_module.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/testSuites/bfmTests/clintTest/c_module.cc -------------------------------------------------------------------------------- /sims/cep_cosim/testSuites/bfmTests/clintTest/c_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/testSuites/bfmTests/clintTest/c_module.h -------------------------------------------------------------------------------- /sims/cep_cosim/testSuites/bfmTests/common.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/testSuites/bfmTests/common.make -------------------------------------------------------------------------------- /sims/cep_cosim/testSuites/bfmTests/lockTest/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/testSuites/bfmTests/lockTest/Makefile -------------------------------------------------------------------------------- /sims/cep_cosim/testSuites/bfmTests/lockTest/c_dispatch.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/testSuites/bfmTests/lockTest/c_dispatch.cc -------------------------------------------------------------------------------- /sims/cep_cosim/testSuites/bfmTests/lockTest/c_dispatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/testSuites/bfmTests/lockTest/c_dispatch.h -------------------------------------------------------------------------------- /sims/cep_cosim/testSuites/bfmTests/lockTest/c_module.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/testSuites/bfmTests/lockTest/c_module.cc -------------------------------------------------------------------------------- /sims/cep_cosim/testSuites/bfmTests/lockTest/c_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/testSuites/bfmTests/lockTest/c_module.h -------------------------------------------------------------------------------- /sims/cep_cosim/testSuites/bfmTests/macroMix/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/testSuites/bfmTests/macroMix/Makefile -------------------------------------------------------------------------------- /sims/cep_cosim/testSuites/bfmTests/macroMix/c_dispatch.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/testSuites/bfmTests/macroMix/c_dispatch.cc -------------------------------------------------------------------------------- /sims/cep_cosim/testSuites/bfmTests/macroMix/c_dispatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/testSuites/bfmTests/macroMix/c_dispatch.h -------------------------------------------------------------------------------- /sims/cep_cosim/testSuites/bfmTests/macroMix/c_module.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/testSuites/bfmTests/macroMix/c_module.cc -------------------------------------------------------------------------------- /sims/cep_cosim/testSuites/bfmTests/macroMix/c_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/testSuites/bfmTests/macroMix/c_module.h -------------------------------------------------------------------------------- /sims/cep_cosim/testSuites/bfmTests/miscTests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/testSuites/bfmTests/miscTests/Makefile -------------------------------------------------------------------------------- /sims/cep_cosim/testSuites/bfmTests/miscTests/c_dispatch.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/testSuites/bfmTests/miscTests/c_dispatch.cc -------------------------------------------------------------------------------- /sims/cep_cosim/testSuites/bfmTests/miscTests/c_dispatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/testSuites/bfmTests/miscTests/c_dispatch.h -------------------------------------------------------------------------------- /sims/cep_cosim/testSuites/bfmTests/miscTests/c_module.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/testSuites/bfmTests/miscTests/c_module.cc -------------------------------------------------------------------------------- /sims/cep_cosim/testSuites/bfmTests/miscTests/c_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/testSuites/bfmTests/miscTests/c_module.h -------------------------------------------------------------------------------- /sims/cep_cosim/testSuites/bfmTests/multiLock/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/testSuites/bfmTests/multiLock/Makefile -------------------------------------------------------------------------------- /sims/cep_cosim/testSuites/bfmTests/multiLock/c_dispatch.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/testSuites/bfmTests/multiLock/c_dispatch.cc -------------------------------------------------------------------------------- /sims/cep_cosim/testSuites/bfmTests/multiLock/c_dispatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/testSuites/bfmTests/multiLock/c_dispatch.h -------------------------------------------------------------------------------- /sims/cep_cosim/testSuites/bfmTests/multiLock/c_module.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/testSuites/bfmTests/multiLock/c_module.cc -------------------------------------------------------------------------------- /sims/cep_cosim/testSuites/bfmTests/multiLock/c_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/testSuites/bfmTests/multiLock/c_module.h -------------------------------------------------------------------------------- /sims/cep_cosim/testSuites/bfmTests/multiThread/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/testSuites/bfmTests/multiThread/Makefile -------------------------------------------------------------------------------- /sims/cep_cosim/testSuites/bfmTests/multiThread/c_dispatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/testSuites/bfmTests/multiThread/c_dispatch.h -------------------------------------------------------------------------------- /sims/cep_cosim/testSuites/bfmTests/multiThread/c_module.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/testSuites/bfmTests/multiThread/c_module.cc -------------------------------------------------------------------------------- /sims/cep_cosim/testSuites/bfmTests/multiThread/c_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/testSuites/bfmTests/multiThread/c_module.h -------------------------------------------------------------------------------- /sims/cep_cosim/testSuites/bfmTests/plicPrioIntr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/testSuites/bfmTests/plicPrioIntr/Makefile -------------------------------------------------------------------------------- /sims/cep_cosim/testSuites/bfmTests/plicPrioIntr/c_module.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/testSuites/bfmTests/plicPrioIntr/c_module.cc -------------------------------------------------------------------------------- /sims/cep_cosim/testSuites/bfmTests/plicPrioIntr/c_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/testSuites/bfmTests/plicPrioIntr/c_module.h -------------------------------------------------------------------------------- /sims/cep_cosim/testSuites/bfmTests/plicTest/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/testSuites/bfmTests/plicTest/Makefile -------------------------------------------------------------------------------- /sims/cep_cosim/testSuites/bfmTests/plicTest/c_dispatch.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/testSuites/bfmTests/plicTest/c_dispatch.cc -------------------------------------------------------------------------------- /sims/cep_cosim/testSuites/bfmTests/plicTest/c_dispatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/testSuites/bfmTests/plicTest/c_dispatch.h -------------------------------------------------------------------------------- /sims/cep_cosim/testSuites/bfmTests/plicTest/c_module.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/testSuites/bfmTests/plicTest/c_module.cc -------------------------------------------------------------------------------- /sims/cep_cosim/testSuites/bfmTests/plicTest/c_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/testSuites/bfmTests/plicTest/c_module.h -------------------------------------------------------------------------------- /sims/cep_cosim/testSuites/bfmTests/regTest/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/testSuites/bfmTests/regTest/Makefile -------------------------------------------------------------------------------- /sims/cep_cosim/testSuites/bfmTests/regTest/c_dispatch.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/testSuites/bfmTests/regTest/c_dispatch.cc -------------------------------------------------------------------------------- /sims/cep_cosim/testSuites/bfmTests/regTest/c_dispatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/testSuites/bfmTests/regTest/c_dispatch.h -------------------------------------------------------------------------------- /sims/cep_cosim/testSuites/bfmTests/regTest/c_module.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/testSuites/bfmTests/regTest/c_module.cc -------------------------------------------------------------------------------- /sims/cep_cosim/testSuites/bfmTests/regTest/c_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/testSuites/bfmTests/regTest/c_module.h -------------------------------------------------------------------------------- /sims/cep_cosim/testSuites/bfmTests/scratchpadTest/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/testSuites/bfmTests/scratchpadTest/Makefile -------------------------------------------------------------------------------- /sims/cep_cosim/testSuites/bfmTests/srotBadKeys/.gitignore: -------------------------------------------------------------------------------- 1 | BIO_OUT 2 | -------------------------------------------------------------------------------- /sims/cep_cosim/testSuites/bfmTests/srotBadKeys/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/testSuites/bfmTests/srotBadKeys/Makefile -------------------------------------------------------------------------------- /sims/cep_cosim/testSuites/bfmTests/srotBadKeys/c_dispatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/testSuites/bfmTests/srotBadKeys/c_dispatch.h -------------------------------------------------------------------------------- /sims/cep_cosim/testSuites/bfmTests/srotBadKeys/c_module.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/testSuites/bfmTests/srotBadKeys/c_module.cc -------------------------------------------------------------------------------- /sims/cep_cosim/testSuites/bfmTests/srotBadKeys/c_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/testSuites/bfmTests/srotBadKeys/c_module.h -------------------------------------------------------------------------------- /sims/cep_cosim/testSuites/bfmTests/srotErrorTest/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/testSuites/bfmTests/srotErrorTest/Makefile -------------------------------------------------------------------------------- /sims/cep_cosim/testSuites/bfmTests/srotErrorTest/c_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/testSuites/bfmTests/srotErrorTest/c_module.h -------------------------------------------------------------------------------- /sims/cep_cosim/testSuites/bfmTests/srotKeyTest/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/testSuites/bfmTests/srotKeyTest/Makefile -------------------------------------------------------------------------------- /sims/cep_cosim/testSuites/bfmTests/srotKeyTest/c_dispatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/testSuites/bfmTests/srotKeyTest/c_dispatch.h -------------------------------------------------------------------------------- /sims/cep_cosim/testSuites/bfmTests/srotKeyTest/c_module.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/testSuites/bfmTests/srotKeyTest/c_module.cc -------------------------------------------------------------------------------- /sims/cep_cosim/testSuites/bfmTests/srotKeyTest/c_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/testSuites/bfmTests/srotKeyTest/c_module.h -------------------------------------------------------------------------------- /sims/cep_cosim/testSuites/bfmTests/srotMemTest/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/testSuites/bfmTests/srotMemTest/Makefile -------------------------------------------------------------------------------- /sims/cep_cosim/testSuites/bfmTests/srotMemTest/c_dispatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/testSuites/bfmTests/srotMemTest/c_dispatch.h -------------------------------------------------------------------------------- /sims/cep_cosim/testSuites/bfmTests/srotMemTest/c_module.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/testSuites/bfmTests/srotMemTest/c_module.cc -------------------------------------------------------------------------------- /sims/cep_cosim/testSuites/bfmTests/srotMemTest/c_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/testSuites/bfmTests/srotMemTest/c_module.h -------------------------------------------------------------------------------- /sims/cep_cosim/testSuites/bfmTests/suite_config.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/testSuites/bfmTests/suite_config.v -------------------------------------------------------------------------------- /sims/cep_cosim/testSuites/isaTests/.gitignore: -------------------------------------------------------------------------------- 1 | rv64* 2 | .ISACreated -------------------------------------------------------------------------------- /sims/cep_cosim/testSuites/isaTests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/testSuites/isaTests/Makefile -------------------------------------------------------------------------------- /sims/cep_cosim/testSuites/isaTests/common.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/testSuites/isaTests/common.make -------------------------------------------------------------------------------- /sims/cep_cosim/testSuites/isaTests/suite_config.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/testSuites/isaTests/suite_config.v -------------------------------------------------------------------------------- /sims/cep_cosim/testSuites/isaTests/testTemplate/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/testSuites/isaTests/testTemplate/Makefile -------------------------------------------------------------------------------- /sims/cep_cosim/testSuites/isaTests/testTemplate/c_module.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/testSuites/isaTests/testTemplate/c_module.cc -------------------------------------------------------------------------------- /sims/cep_cosim/testSuites/isaTests/testTemplate/c_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/cep_cosim/testSuites/isaTests/testTemplate/c_module.h -------------------------------------------------------------------------------- /sims/common-sim-flags.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/common-sim-flags.mk -------------------------------------------------------------------------------- /sims/vcs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | !Makefile 4 | !dramsim2_ini 5 | -------------------------------------------------------------------------------- /sims/vcs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/vcs/Makefile -------------------------------------------------------------------------------- /sims/vcs/vcs.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/vcs/vcs.mk -------------------------------------------------------------------------------- /sims/verilator/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | !Makefile 4 | !verilator.mk 5 | !dramsim2_ini 6 | -------------------------------------------------------------------------------- /sims/verilator/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/verilator/Makefile -------------------------------------------------------------------------------- /sims/xcelium/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | *Makefile 4 | -------------------------------------------------------------------------------- /sims/xcelium/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/xcelium/Makefile -------------------------------------------------------------------------------- /sims/xcelium/arg-reshuffle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/xcelium/arg-reshuffle -------------------------------------------------------------------------------- /sims/xcelium/xcelium.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/sims/xcelium/xcelium.mk -------------------------------------------------------------------------------- /software/baremetal/gpiotest/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/software/baremetal/gpiotest/.gitignore -------------------------------------------------------------------------------- /software/baremetal/gpiotest/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/software/baremetal/gpiotest/Makefile -------------------------------------------------------------------------------- /software/baremetal/gpiotest/crt.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/software/baremetal/gpiotest/crt.S -------------------------------------------------------------------------------- /software/baremetal/gpiotest/gpiotest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/software/baremetal/gpiotest/gpiotest.c -------------------------------------------------------------------------------- /software/baremetal/gpiotest/include/compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/software/baremetal/gpiotest/include/compiler.h -------------------------------------------------------------------------------- /software/baremetal/gpiotest/include/const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/software/baremetal/gpiotest/include/const.h -------------------------------------------------------------------------------- /software/baremetal/gpiotest/include/devices/arty100t_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/software/baremetal/gpiotest/include/devices/arty100t_gpio.h -------------------------------------------------------------------------------- /software/baremetal/gpiotest/include/devices/cepregs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/software/baremetal/gpiotest/include/devices/cepregs.h -------------------------------------------------------------------------------- /software/baremetal/gpiotest/include/devices/clint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/software/baremetal/gpiotest/include/devices/clint.h -------------------------------------------------------------------------------- /software/baremetal/gpiotest/include/devices/gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/software/baremetal/gpiotest/include/devices/gpio.h -------------------------------------------------------------------------------- /software/baremetal/gpiotest/include/devices/plic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/software/baremetal/gpiotest/include/devices/plic.h -------------------------------------------------------------------------------- /software/baremetal/gpiotest/include/devices/spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/software/baremetal/gpiotest/include/devices/spi.h -------------------------------------------------------------------------------- /software/baremetal/gpiotest/include/devices/uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/software/baremetal/gpiotest/include/devices/uart.h -------------------------------------------------------------------------------- /software/baremetal/gpiotest/include/devices/vc707_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/software/baremetal/gpiotest/include/devices/vc707_gpio.h -------------------------------------------------------------------------------- /software/baremetal/gpiotest/include/devices/vcu118_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/software/baremetal/gpiotest/include/devices/vcu118_gpio.h -------------------------------------------------------------------------------- /software/baremetal/gpiotest/include/encoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/software/baremetal/gpiotest/include/encoding.h -------------------------------------------------------------------------------- /software/baremetal/gpiotest/include/kprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/software/baremetal/gpiotest/include/kprintf.h -------------------------------------------------------------------------------- /software/baremetal/gpiotest/include/mmio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/software/baremetal/gpiotest/include/mmio.h -------------------------------------------------------------------------------- /software/baremetal/gpiotest/include/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/software/baremetal/gpiotest/include/platform.h -------------------------------------------------------------------------------- /software/baremetal/gpiotest/include/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/software/baremetal/gpiotest/include/util.h -------------------------------------------------------------------------------- /software/baremetal/gpiotest/kprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/software/baremetal/gpiotest/kprintf.c -------------------------------------------------------------------------------- /software/baremetal/gpiotest/link.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/software/baremetal/gpiotest/link.ld -------------------------------------------------------------------------------- /software/baremetal/gpiotest/syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/software/baremetal/gpiotest/syscalls.c -------------------------------------------------------------------------------- /software/baremetal/hello_world/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/software/baremetal/hello_world/.gitignore -------------------------------------------------------------------------------- /software/baremetal/hello_world/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/software/baremetal/hello_world/Makefile -------------------------------------------------------------------------------- /software/baremetal/hello_world/crt.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/software/baremetal/hello_world/crt.S -------------------------------------------------------------------------------- /software/baremetal/hello_world/hello_world.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/software/baremetal/hello_world/hello_world.c -------------------------------------------------------------------------------- /software/baremetal/hello_world/include/compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/software/baremetal/hello_world/include/compiler.h -------------------------------------------------------------------------------- /software/baremetal/hello_world/include/const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/software/baremetal/hello_world/include/const.h -------------------------------------------------------------------------------- /software/baremetal/hello_world/include/devices/cepregs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/software/baremetal/hello_world/include/devices/cepregs.h -------------------------------------------------------------------------------- /software/baremetal/hello_world/include/devices/clint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/software/baremetal/hello_world/include/devices/clint.h -------------------------------------------------------------------------------- /software/baremetal/hello_world/include/devices/gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/software/baremetal/hello_world/include/devices/gpio.h -------------------------------------------------------------------------------- /software/baremetal/hello_world/include/devices/plic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/software/baremetal/hello_world/include/devices/plic.h -------------------------------------------------------------------------------- /software/baremetal/hello_world/include/devices/spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/software/baremetal/hello_world/include/devices/spi.h -------------------------------------------------------------------------------- /software/baremetal/hello_world/include/devices/uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/software/baremetal/hello_world/include/devices/uart.h -------------------------------------------------------------------------------- /software/baremetal/hello_world/include/encoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/software/baremetal/hello_world/include/encoding.h -------------------------------------------------------------------------------- /software/baremetal/hello_world/include/kprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/software/baremetal/hello_world/include/kprintf.h -------------------------------------------------------------------------------- /software/baremetal/hello_world/include/mmio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/software/baremetal/hello_world/include/mmio.h -------------------------------------------------------------------------------- /software/baremetal/hello_world/include/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/software/baremetal/hello_world/include/platform.h -------------------------------------------------------------------------------- /software/baremetal/hello_world/include/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/software/baremetal/hello_world/include/util.h -------------------------------------------------------------------------------- /software/baremetal/hello_world/kprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/software/baremetal/hello_world/kprintf.c -------------------------------------------------------------------------------- /software/baremetal/hello_world/link.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/software/baremetal/hello_world/link.ld -------------------------------------------------------------------------------- /software/baremetal/hello_world/syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/software/baremetal/hello_world/syscalls.c -------------------------------------------------------------------------------- /software/embench/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | -------------------------------------------------------------------------------- /software/embench/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/software/embench/build.sh -------------------------------------------------------------------------------- /software/linux/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/software/linux/Makefile -------------------------------------------------------------------------------- /software/linux/gpiotest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/software/linux/gpiotest/CMakeLists.txt -------------------------------------------------------------------------------- /software/linux/gpiotest/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/software/linux/gpiotest/Config.in -------------------------------------------------------------------------------- /software/linux/gpiotest/gpiotest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/software/linux/gpiotest/gpiotest.c -------------------------------------------------------------------------------- /software/linux/gpiotest/gpiotest.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/software/linux/gpiotest/gpiotest.mk -------------------------------------------------------------------------------- /software/linux/helloworld/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/software/linux/helloworld/CMakeLists.txt -------------------------------------------------------------------------------- /software/linux/helloworld/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/software/linux/helloworld/Config.in -------------------------------------------------------------------------------- /software/linux/helloworld/helloworld.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/software/linux/helloworld/helloworld.c -------------------------------------------------------------------------------- /software/linux/helloworld/helloworld.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/software/linux/helloworld/helloworld.mk -------------------------------------------------------------------------------- /software/tutorial/.gitignore: -------------------------------------------------------------------------------- 1 | overlay 2 | -------------------------------------------------------------------------------- /software/tutorial/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/software/tutorial/build.sh -------------------------------------------------------------------------------- /software/tutorial/marshal-configs/mobilenet-baremetal.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/software/tutorial/marshal-configs/mobilenet-baremetal.yaml -------------------------------------------------------------------------------- /software/tutorial/marshal-configs/resnet50-baremetal.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/software/tutorial/marshal-configs/resnet50-baremetal.yaml -------------------------------------------------------------------------------- /software/tutorial/marshal-configs/resnet50-linux.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/software/tutorial/marshal-configs/resnet50-linux.yaml -------------------------------------------------------------------------------- /tests/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/tests/.gitignore -------------------------------------------------------------------------------- /tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/tests/Makefile -------------------------------------------------------------------------------- /tests/accum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/tests/accum.c -------------------------------------------------------------------------------- /tests/big-blkdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/tests/big-blkdev.c -------------------------------------------------------------------------------- /tests/blkdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/tests/blkdev.c -------------------------------------------------------------------------------- /tests/blkdev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/tests/blkdev.h -------------------------------------------------------------------------------- /tests/charcount.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/tests/charcount.c -------------------------------------------------------------------------------- /tests/fft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/tests/fft.c -------------------------------------------------------------------------------- /tests/gcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/tests/gcd.c -------------------------------------------------------------------------------- /tests/hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/tests/hello.c -------------------------------------------------------------------------------- /tests/htif.ld: -------------------------------------------------------------------------------- 1 | ../toolchains/libgloss/util/htif.ld -------------------------------------------------------------------------------- /tests/libgloss.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/tests/libgloss.mk -------------------------------------------------------------------------------- /tests/marchid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/tests/marchid.h -------------------------------------------------------------------------------- /tests/mmio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/tests/mmio.h -------------------------------------------------------------------------------- /tests/mt-hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/tests/mt-hello.c -------------------------------------------------------------------------------- /tests/nic-loopback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/tests/nic-loopback.c -------------------------------------------------------------------------------- /tests/nic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/tests/nic.h -------------------------------------------------------------------------------- /tests/nvdla.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/tests/nvdla.c -------------------------------------------------------------------------------- /tests/nvdla.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/tests/nvdla.h -------------------------------------------------------------------------------- /tests/pingd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/tests/pingd.c -------------------------------------------------------------------------------- /tests/pwm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/tests/pwm.c -------------------------------------------------------------------------------- /tests/rocc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/tests/rocc.h -------------------------------------------------------------------------------- /tests/spiflash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/tests/spiflash.h -------------------------------------------------------------------------------- /tests/spiflash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/tests/spiflash.py -------------------------------------------------------------------------------- /tests/spiflashread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/tests/spiflashread.c -------------------------------------------------------------------------------- /tests/spiflashwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/tests/spiflashwrite.c -------------------------------------------------------------------------------- /tests/streaming-fir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/tests/streaming-fir.c -------------------------------------------------------------------------------- /tests/streaming-passthrough.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/tests/streaming-passthrough.c -------------------------------------------------------------------------------- /tests/symmetric.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/tests/symmetric.c -------------------------------------------------------------------------------- /tools/stage-chisel3/src/main/scala/ChipyardCli.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/tools/stage-chisel3/src/main/scala/ChipyardCli.scala -------------------------------------------------------------------------------- /tools/stage-chisel3/src/main/scala/ChipyardOptions.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/tools/stage-chisel3/src/main/scala/ChipyardOptions.scala -------------------------------------------------------------------------------- /tools/stage-chisel3/src/main/scala/ChipyardStage.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/tools/stage-chisel3/src/main/scala/ChipyardStage.scala -------------------------------------------------------------------------------- /tools/stage-chisel3/src/main/scala/StageUtils.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/tools/stage-chisel3/src/main/scala/StageUtils.scala -------------------------------------------------------------------------------- /tools/stage-chisel3/src/main/scala/package.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/tools/stage-chisel3/src/main/scala/package.scala -------------------------------------------------------------------------------- /tools/stage-chisel3/src/main/scala/phases/Checks.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/tools/stage-chisel3/src/main/scala/phases/Checks.scala -------------------------------------------------------------------------------- /tools/stage/src/main/scala/ChipyardAnnotations.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/tools/stage/src/main/scala/ChipyardAnnotations.scala -------------------------------------------------------------------------------- /tools/stage/src/main/scala/ChipyardCli.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/tools/stage/src/main/scala/ChipyardCli.scala -------------------------------------------------------------------------------- /tools/stage/src/main/scala/ChipyardOptions.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/tools/stage/src/main/scala/ChipyardOptions.scala -------------------------------------------------------------------------------- /tools/stage/src/main/scala/ChipyardStage.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/tools/stage/src/main/scala/ChipyardStage.scala -------------------------------------------------------------------------------- /tools/stage/src/main/scala/StageUtils.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/tools/stage/src/main/scala/StageUtils.scala -------------------------------------------------------------------------------- /tools/stage/src/main/scala/package.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/tools/stage/src/main/scala/package.scala -------------------------------------------------------------------------------- /tools/stage/src/main/scala/phases/AddDefaultTests.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/tools/stage/src/main/scala/phases/AddDefaultTests.scala -------------------------------------------------------------------------------- /tools/stage/src/main/scala/phases/Checks.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/tools/stage/src/main/scala/phases/Checks.scala -------------------------------------------------------------------------------- /tools/stage/src/main/scala/phases/GenerateArtefacts.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/tools/stage/src/main/scala/phases/GenerateArtefacts.scala -------------------------------------------------------------------------------- /tools/stage/src/main/scala/phases/GenerateFirrtlAnnos.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/tools/stage/src/main/scala/phases/GenerateFirrtlAnnos.scala -------------------------------------------------------------------------------- /tools/stage/src/main/scala/phases/PreElaboration.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/tools/stage/src/main/scala/phases/PreElaboration.scala -------------------------------------------------------------------------------- /tools/stage/src/main/scala/phases/PreservesAll.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/tools/stage/src/main/scala/phases/PreservesAll.scala -------------------------------------------------------------------------------- /tools/tapeout/src/main/scala/macrolib/ConfReader.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/tools/tapeout/src/main/scala/macrolib/ConfReader.scala -------------------------------------------------------------------------------- /tools/tapeout/src/main/scala/macrolib/FillerMacroBase.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/tools/tapeout/src/main/scala/macrolib/FillerMacroBase.scala -------------------------------------------------------------------------------- /tools/tapeout/src/main/scala/macrolib/FlipChipMacro.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/tools/tapeout/src/main/scala/macrolib/FlipChipMacro.scala -------------------------------------------------------------------------------- /tools/tapeout/src/main/scala/macrolib/IOMacro.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/tools/tapeout/src/main/scala/macrolib/IOMacro.scala -------------------------------------------------------------------------------- /tools/tapeout/src/main/scala/macrolib/MacroLib.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/tools/tapeout/src/main/scala/macrolib/MacroLib.scala -------------------------------------------------------------------------------- /tools/tapeout/src/main/scala/macrolib/SRAM.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/tools/tapeout/src/main/scala/macrolib/SRAM.scala -------------------------------------------------------------------------------- /tools/tapeout/src/main/scala/macrolib/Utils.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/tools/tapeout/src/main/scala/macrolib/Utils.scala -------------------------------------------------------------------------------- /tools/tapeout/src/main/scala/macros/CostMetric.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/tools/tapeout/src/main/scala/macros/CostMetric.scala -------------------------------------------------------------------------------- /tools/tapeout/src/main/scala/macros/MacroCompiler.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/tools/tapeout/src/main/scala/macros/MacroCompiler.scala -------------------------------------------------------------------------------- /tools/tapeout/src/main/scala/macros/SynFlopsPass.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/tools/tapeout/src/main/scala/macros/SynFlopsPass.scala -------------------------------------------------------------------------------- /tools/tapeout/src/main/scala/macros/Utils.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/tools/tapeout/src/main/scala/macros/Utils.scala -------------------------------------------------------------------------------- /tools/torture.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/tools/torture.mk -------------------------------------------------------------------------------- /variables.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/variables.mk -------------------------------------------------------------------------------- /vlsi/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/vlsi/.gitignore -------------------------------------------------------------------------------- /vlsi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/vlsi/Makefile -------------------------------------------------------------------------------- /vlsi/env.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/vlsi/env.yml -------------------------------------------------------------------------------- /vlsi/example-asap7.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/vlsi/example-asap7.yml -------------------------------------------------------------------------------- /vlsi/example-design.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/vlsi/example-design.yml -------------------------------------------------------------------------------- /vlsi/example-designs/sky130-commercial.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/vlsi/example-designs/sky130-commercial.yml -------------------------------------------------------------------------------- /vlsi/example-designs/sky130-openroad-rockettile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/vlsi/example-designs/sky130-openroad-rockettile.yml -------------------------------------------------------------------------------- /vlsi/example-designs/sky130-openroad.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/vlsi/example-designs/sky130-openroad.yml -------------------------------------------------------------------------------- /vlsi/example-designs/sky130-rocket.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/vlsi/example-designs/sky130-rocket.yml -------------------------------------------------------------------------------- /vlsi/example-openroad.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/vlsi/example-openroad.yml -------------------------------------------------------------------------------- /vlsi/example-sky130.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/vlsi/example-sky130.yml -------------------------------------------------------------------------------- /vlsi/example-tech.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/vlsi/example-tech.yml -------------------------------------------------------------------------------- /vlsi/example-tools.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/vlsi/example-tools.yml -------------------------------------------------------------------------------- /vlsi/example-vlsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/vlsi/example-vlsi -------------------------------------------------------------------------------- /vlsi/example-vlsi-sky130: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/vlsi/example-vlsi-sky130 -------------------------------------------------------------------------------- /vlsi/power.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/vlsi/power.mk -------------------------------------------------------------------------------- /vlsi/sim.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/vlsi/sim.mk -------------------------------------------------------------------------------- /vlsi/tutorial.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/vlsi/tutorial.mk -------------------------------------------------------------------------------- /vlsi/view_gds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommonEvaluationPlatform/CEP/HEAD/vlsi/view_gds.py --------------------------------------------------------------------------------