mirror of
https://github.com/lowRISC/ibex.git
synced 2025-04-24 05:47:36 -04:00
The shortlog from the vendor tool's automated patch is reproduced at the bottom of this commit message. The automated commit is squashed with one to update how we depend on bus parameters. Before, we had to provide an "Ibex top package". This behaved the same as OpenTitan's "lowrisc:constants:top_pkg", but avoided having to vendor in that file. On the OpenTitan side, this has been tidied up with commit d266c68 ("[dv] Update dv_utils sources to use bus_params_pkg"). This changes the dependency of dv_utils to "lowrisc:opentitan:bus_params_pkg". We still have to provide our own (now called "lowrisc:ibex:bus_params_pkg") and need to patch the dv_utils dependency, but this is a bit cleaner because dv_utils is less likely to accidentally include dependencies on OpenTitan internals. On our side, we have to update the vendoring patch for dv_utils (and change its name). We also need an equivalent patch for dv_lib. Then we rename our hacky "Ibex top package" to "bus_params_pkg". The ICache DV environment also needs patching to use the bus parameters properly. Phew! * [dv] Update prim_present cov opt (Srikrishna Iyer) * [dv] Align VCS and Xcelium cov var names (Srikrishna Iyer) * [dv] Split coverage for functional and auto tests (Srikrishna Iyer) * [dvsim] Do builds smartly (Srikrishna Iyer) * [syn] Carry over synthesis flow updates from bronze (Michael Schaffner) * [dvsim] Lint cleanup (Srikrishna Iyer) * [dvsim] Allow testplan to be omitted (Srikrishna Iyer) * [dvsim] Address lowRISC/opentitan#3071 comments (Srikrishna Iyer) * [dvsim] lint cleanup (Srikrishna Iyer) * [dvsim] Add support for second-level indirection (Srikrishna Iyer) * [dvsim] Change cores-root to avoid conflicts with autogen'd core files (Michael Schaffner) * [dvsim] Update `tests` key behavior in regressions (Srikrishna Iyer) * [lint] Minor update of ERROR patterns in parser script (Michael Schaffner) * [packer] Revise the implementation (Eunchan Kim) * [flow] Remove lint makefile (Timothy Chen) * [flows] Various updates to tools and documents to suppose top/ip select (Timothy Chen) * [dv/shadow_reg] shadow_reg update error (Cindy Chen) * [rtl/alert] change the naming from _en_i to _req_i (Cindy Chen) * [dvsim] Tidy up config file loading in FlowCfg.py (Rupert Swarbrick) * [dvsim] Make it simpler to derive from FlowCfg (Rupert Swarbrick) * [lint] Update warning/error exclusions in parser scripts (Michael Schaffner) * [dvsim] Fix for `--tool` override (Srikrishna Iyer) * [dvsim] Bug fix in LintCfg.py (Srikrishna Iyer) * [prim/dv] Integrate LFSR TB with dvsim (Udi Jonnalagadda) * [uvmdvgen] Update template to reflect bind reorg (Srikrishna Iyer) * [dv] remove prim_lfsr_bind (Srikrishna Iyer) * [dv] Cleanup lint warnings in csr_utils_pkg (Srikrishna Iyer) * [dv] Cleanup lint warnings in clk_rst_if (Srikrishna Iyer) * [dvsim] Fix coverage dashboard link (Srikrishna Iyer) * [prim] Rename prim_util_memload.sv to svh (Philipp Wagner) * [lint/doc] Update linting readme to reflect recent updates (Michael Schaffner) * [lint] Remove legacy Makefile flow for linting tools (Michael Schaffner) * [dvsim/lint] Enable Verilator lint in Dvsim (Michael Schaffner) * [prim_arbiter_fixed/fpv] Add generated FPV testbench (Michael Schaffner) * [prim_arbiter_fixed] This adds a fixed priority arbiter (Michael Schaffner) * [prim] Domain-Oriented Masking AND logic (Eunchan Kim) * [dv] Update dv_utils sources to use bus_params_pkg (Srikrishna Iyer) * [dv] Update mem_model to use bus-params_pkg (Srikrishna Iyer) * [dv] Update dv_lib sources to use bus_params_pkg (Srikrishna Iyer) * [uvmdvgen] Support for setting vendor name in VLNV (Srikrishna Iyer) |
||
---|---|---|
.. | ||
bus_params_pkg.core | ||
bus_params_pkg.sv | ||
README.md |
Bus parameters for DV utilities
The Ibex DV code uses a dv_utils
support library vendored from
OpenTitan. This library needs some basic parameters: things like
bus address and data widths and similar.
The dv_utils
library is supposed to be parametric, in that it should
work with any such widths, but a project that imports the library
needs to supply them in a SystemVerilog package called
bus_params_pkg
. This directory contains that package, which can be
imported with the fusesoc core lowrisc:ibex:bus_params_pkg
.