Skip to content

Commit afc3b10

Browse files
Updating pythondata-cpu-cva6 to 4.2.0.post389
Updated data to v4.2.0-253-g75807530 based on 7580753 from https://github.com/openhwgroup/cva6. > commit 7580753 > Author: Steffen Persvold <[email protected]> > Date: Thu May 12 10:46:40 2022 +0200 > > Add support for "high" counter CSRs in 32-bit mode (#847) > > * Add support for "high" counter CSRs in 32-bit mode > > In 32bit mode MCYCLEH, MINSTRETH, CYCLEH, TIMEH and INSTRETH are > used to return the most significant 32-bit value of the counters > which are now always 64-bit wide. > > Signed-off-by: Steffen Persvold <[email protected]> > > * Enable writing of MCYCLEH and MINSTRETH CSRs > > Signed-off-by: Steffen Persvold <[email protected]> > Updated using 0.0.post136 from https://github.com/litex-hub/litex-data-auto
1 parent 6af2203 commit afc3b10

File tree

2 files changed

+13
-6
lines changed

2 files changed

+13
-6
lines changed

Diff for: README.md

+7
Original file line numberDiff line numberDiff line change
@@ -100,3 +100,10 @@ Add to your Python `requirements.txt` file using;
100100
```
101101
pythondata-cpu-cva6
102102
```
103+
104+
# Issues and Fixes
105+
106+
This package is autogenerated from the sources in
107+
<https://github.com/openhwgroup/cva6>
108+
using the [pythondata-auto](https://github.com/litex-hub/pythondata-auto)
109+
toolset. Pull requests and issues on this pythondata repo may not be monitored.

Diff for: pythondata_cpu_cva6/__init__.py

+6-6
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44
src = "https://github.com/openhwgroup/cva6"
55

66
# Module version
7-
version_str = "4.2.0.post387"
8-
version_tuple = (4, 2, 0, 387)
7+
version_str = "4.2.0.post389"
8+
version_tuple = (4, 2, 0, 389)
99
try:
1010
from packaging.version import Version as V
11-
pversion = V("4.2.0.post387")
11+
pversion = V("4.2.0.post389")
1212
except ImportError:
1313
pass
1414

@@ -44,11 +44,11 @@
4444
"""
4545

4646
# Tool version info
47-
tool_version_str = "0.0.post134"
48-
tool_version_tuple = (0, 0, 134)
47+
tool_version_str = "0.0.post136"
48+
tool_version_tuple = (0, 0, 136)
4949
try:
5050
from packaging.version import Version as V
51-
ptool_version = V("0.0.post134")
51+
ptool_version = V("0.0.post136")
5252
except ImportError:
5353
pass
5454

0 commit comments

Comments
 (0)