From 3b397ff8430527ba90c66ceaa8ecfbb091280714 Mon Sep 17 00:00:00 2001 From: LiteX Robot Date: Mon, 21 Feb 2022 22:27:45 +0000 Subject: [PATCH] Updating pythondata-misc-opentitan to 0.0.post10460 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Updated data to v0.0-10334-g01b2cace6 based on 01b2cace65124bcbd9fc63acc44eb686c67ff1b3 from https://github.com/lowRISC/opentitan. > commit 01b2cace65124bcbd9fc63acc44eb686c67ff1b3 > Author: Luís Marques > Date: Thu Feb 10 21:48:11 2022 +0000 > > Update toolchain to release 20220210-1 with bitmanip support > > This release updates the meson cross files to make the toolchains more > easily configurable. The tool versions for the bitmanip variant are: > > - Binutils 2.35 > - GCC: 10.2.0 > - Clang/LLVM: 13.0.1 > - GDB 11.1 > > - Binutils: `7c9dd840fbb6a1171a51feb08afb859288615137` > (riscv-binutils-2.35-rvb) with Pirmin's bitmanip 1.00+0.93 PR patch > (https://github.com/riscv-collab/riscv-binutils-gdb/pull/267). > - GCC: `73055647d33c0b63a3125c372019d1dac0f8ac34` (RISC-V bitmanip fork, > branch riscv-gcc-10.2.0-rvb, commit 73055647d33 from 2021-07-09) > - Clang/LLVM: 13.0.1 > - GDB 11.1 > > Signed-off-by: Luís Marques > Updated using 0.0.post126 from https://github.com/litex-hub/litex-data-auto --- pythondata_misc_opentitan/__init__.py | 42 ++++++++++++++++++--------- 1 file changed, 28 insertions(+), 14 deletions(-) diff --git a/pythondata_misc_opentitan/__init__.py b/pythondata_misc_opentitan/__init__.py index 73587898e..b4b5ddf4f 100644 --- a/pythondata_misc_opentitan/__init__.py +++ b/pythondata_misc_opentitan/__init__.py @@ -4,34 +4,48 @@ src = "https://github.com/lowRISC/opentitan" # Module version -version_str = "0.0.post10459" -version_tuple = (0, 0, 10459) +version_str = "0.0.post10460" +version_tuple = (0, 0, 10460) try: from packaging.version import Version as V - pversion = V("0.0.post10459") + pversion = V("0.0.post10460") except ImportError: pass # Data version info -data_version_str = "0.0.post10333" -data_version_tuple = (0, 0, 10333) +data_version_str = "0.0.post10334" +data_version_tuple = (0, 0, 10334) try: from packaging.version import Version as V - pdata_version = V("0.0.post10333") + pdata_version = V("0.0.post10334") except ImportError: pass -data_git_hash = "3281bd3cf497853245a7d59678ae5ceeb4d411c7" -data_git_describe = "v0.0-10333-g3281bd3cf" +data_git_hash = "01b2cace65124bcbd9fc63acc44eb686c67ff1b3" +data_git_describe = "v0.0-10334-g01b2cace6" data_git_msg = """\ -commit 3281bd3cf497853245a7d59678ae5ceeb4d411c7 -Author: Pirmin Vogel -Date: Mon Feb 21 14:19:12 2022 +0100 +commit 01b2cace65124bcbd9fc63acc44eb686c67ff1b3 +Author: Luís Marques +Date: Thu Feb 10 21:48:11 2022 +0000 - [aes] Allow de-asserting EDN request upon fatal alerts + Update toolchain to release 20220210-1 with bitmanip support - This fixes lowRISC/OpenTitan#10991. + This release updates the meson cross files to make the toolchains more + easily configurable. The tool versions for the bitmanip variant are: - Signed-off-by: Pirmin Vogel + - Binutils 2.35 + - GCC: 10.2.0 + - Clang/LLVM: 13.0.1 + - GDB 11.1 + + - Binutils: `7c9dd840fbb6a1171a51feb08afb859288615137` + (riscv-binutils-2.35-rvb) with Pirmin's bitmanip 1.00+0.93 PR patch + (https://github.com/riscv-collab/riscv-binutils-gdb/pull/267). + - GCC: `73055647d33c0b63a3125c372019d1dac0f8ac34` (RISC-V bitmanip fork, + branch riscv-gcc-10.2.0-rvb, commit 73055647d33 from 2021-07-09) + - Clang/LLVM: 13.0.1 + - GDB 11.1 + + Signed-off-by: Luís Marques """