commit | fe1c778637991ce991848e00145d574cbaa7f995 | [log] [tgz] |
---|---|---|
author | Cindy Chen <chencindy@opentitan.org> | Mon Jan 30 16:21:10 2023 -0800 |
committer | Andreas Kurth <github@akurth.net> | Tue Jan 31 11:27:09 2023 +0100 |
tree | a61b9207cdae831f4bc98f3d1e28f787287dfea6 | |
parent | 6cf481d324f252d4bc34ba837444762798af36b9 [diff] |
[dv/sysrst_ctrl] Fix nightly failure This PR fixes sysrst_ctrl nightly failure because an index issue. According to `key_intr_ctl` register, the first set is index 0 to 6, the second set is index 7 to 13. So in a for loop, if the first set is `i`, the second set should be `i+7`, but the implementation is `i+7+1`. This PR removed the `+1` and also add two begin end to improve the readability. Signed-off-by: Cindy Chen <chencindy@opentitan.org>
OpenTitan is an open source silicon Root of Trust (RoT) project. OpenTitan will make the silicon RoT design and implementation more transparent, trustworthy, and secure for enterprises, platform providers, and chip manufacturers. OpenTitan is administered by lowRISC CIC as a collaborative project to produce high quality, open IP for instantiation as a full-featured product. See the OpenTitan site and OpenTitan docs for more information about the project.
This repository contains hardware, software and utilities written as part of the OpenTitan project. It is structured as monolithic repository, or “monorepo”, where all components live in one repository. It exists to enable collaboration across partners participating in the OpenTitan project.
The project contains comprehensive documentation of all IPs and tools. You can access it online at docs.opentitan.org.
Have a look at CONTRIBUTING and our documentation on project organization and processes for guidelines on how to contribute code to this repository.
Unless otherwise noted, everything in this repository is covered by the Apache License, Version 2.0 (see LICENSE for full text).