Skip to content

Commit 373b664

Browse files
Updating pythondata-cpu-ibex to 0.0.post2263
Updated data to v0.0-2141-g187944c4 based on 187944c from https://github.com/lowRISC/ibex. > commit 187944c > Author: Canberk Topal <[email protected]> > Date: Thu Oct 7 18:04:56 2021 +0100 > > [icache] Add RAM Primitives for scrambling > > This commit includes switching to a scrambling RAM primitive for > ICache data and tag RAMs. Also introduces minor changes to ICache > to handle scrambling key valid signal. > > It also includes a minor bug fix regarding not initializing > `fill_way_q` signal without ResetAll parameter. When the parameter > is not set and we have our first hit right after ICache enables, > the signal hangs. > > Signed-off-by: Canberk Topal <[email protected]> > Updated using 0.0.post122 from https://github.com/litex-hub/litex-data-auto
1 parent 5b6b377 commit 373b664

File tree

1 file changed

+21
-15
lines changed

1 file changed

+21
-15
lines changed

pythondata_cpu_ibex/__init__.py

+21-15
Original file line numberDiff line numberDiff line change
@@ -4,35 +4,41 @@
44
src = "https://github.com/lowRISC/ibex"
55

66
# 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)
99
try:
1010
from packaging.version import Version as V
11-
pversion = V("0.0.post2262")
11+
pversion = V("0.0.post2263")
1212
except ImportError:
1313
pass
1414

1515
# 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)
1818
try:
1919
from packaging.version import Version as V
20-
pdata_version = V("0.0.post2140")
20+
pdata_version = V("0.0.post2141")
2121
except ImportError:
2222
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"
2525
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
2929
30-
[examples/fpga] Fix memory interface
30+
[icache] Add RAM Primitives for scrambling
3131
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.
3435
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]>
3642
3743
"""
3844

0 commit comments

Comments
 (0)