mirror of
https://github.com/lowRISC/ibex.git
synced 2025-04-24 13:57:19 -04:00
Compliance test suite: Prefer D over I accesses
Give higher priority to data accesses from the CPU to improve performance. This is the recommended setup for Ibex. The test utility host needs still higher priority, otherwise the CPU takes all bus capacity (the downside of strict priority arbitration).
This commit is contained in:
parent
47acadc969
commit
76f4db5155
1 changed files with 3 additions and 2 deletions
|
@ -23,10 +23,11 @@ module ibex_riscv_compliance (
|
|||
assign clk_sys = IO_CLK;
|
||||
assign rst_sys_n = IO_RST_N;
|
||||
|
||||
// Bus hosts, ordered in decreasing priority
|
||||
typedef enum {
|
||||
TestUtilHost,
|
||||
CoreI,
|
||||
CoreD
|
||||
CoreD,
|
||||
CoreI
|
||||
} bus_host_e;
|
||||
|
||||
typedef enum {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue