|
4 | 4 | src = "https://github.com/lowRISC/ibex"
|
5 | 5 |
|
6 | 6 | # Module version
|
7 |
| -version_str = "0.0.post2262" |
8 |
| -version_tuple = (0, 0, 2262) |
| 7 | +version_str = "0.0.post2263" |
| 8 | +version_tuple = (0, 0, 2263) |
9 | 9 | try:
|
10 | 10 | from packaging.version import Version as V
|
11 |
| - pversion = V("0.0.post2262") |
| 11 | + pversion = V("0.0.post2263") |
12 | 12 | except ImportError:
|
13 | 13 | pass
|
14 | 14 |
|
15 | 15 | # Data version info
|
16 |
| -data_version_str = "0.0.post2140" |
17 |
| -data_version_tuple = (0, 0, 2140) |
| 16 | +data_version_str = "0.0.post2141" |
| 17 | +data_version_tuple = (0, 0, 2141) |
18 | 18 | try:
|
19 | 19 | from packaging.version import Version as V
|
20 |
| - pdata_version = V("0.0.post2140") |
| 20 | + pdata_version = V("0.0.post2141") |
21 | 21 | except ImportError:
|
22 | 22 | pass
|
23 |
| -data_git_hash = "e53b033962d39a09da574216a8c1813afccdd212" |
24 |
| -data_git_describe = "v0.0-2140-ge53b0339" |
| 23 | +data_git_hash = "187944c417f04c144b9730445052aec0fc93620a" |
| 24 | +data_git_describe = "v0.0-2141-g187944c4" |
25 | 25 | data_git_msg = """\
|
26 |
| -commit e53b033962d39a09da574216a8c1813afccdd212 |
27 |
| -Author: Greg Chadwick <gac@lowrisc.org> |
28 |
| -Date: Thu Jan 13 18:17:30 2022 +0000 |
| 26 | +commit 187944c417f04c144b9730445052aec0fc93620a |
| 27 | +Author: Canberk Topal <ctopal@lowrisc.org> |
| 28 | +Date: Thu Oct 7 18:04:56 2021 +0100 |
29 | 29 |
|
30 |
| - [examples/fpga] Fix memory interface |
| 30 | + [icache] Add RAM Primitives for scrambling |
31 | 31 |
|
32 |
| - Logic driving instr_gnt/data_gnt violated Ibex memory protocol. It just |
33 |
| - happened to work until a recent change. |
| 32 | + This commit includes switching to a scrambling RAM primitive for |
| 33 | + ICache data and tag RAMs. Also introduces minor changes to ICache |
| 34 | + to handle scrambling key valid signal. |
34 | 35 |
|
35 |
| - Fixes #1500 |
| 36 | + It also includes a minor bug fix regarding not initializing |
| 37 | + `fill_way_q` signal without ResetAll parameter. When the parameter |
| 38 | + is not set and we have our first hit right after ICache enables, |
| 39 | + the signal hangs. |
| 40 | + |
| 41 | + Signed-off-by: Canberk Topal <[email protected]> |
36 | 42 |
|
37 | 43 | """
|
38 | 44 |
|
|
0 commit comments