commit | 0caa13957ad09bb47d066653f2ce9a134b07fb98 | [log] [tgz] |
---|---|---|
author | Rupert Swarbrick <rswarbrick@lowrisc.org> | Fri Apr 16 12:48:38 2021 +0100 |
committer | Philipp Wagner <mail@philipp-wagner.com> | Fri Apr 16 20:40:03 2021 +0100 |
tree | 785001fb0c07ba8b113b245d0e2d833b9529caa9 | |
parent | 11d9657faea936b53f6ce72a82af37852efd8ffc [diff] |
[keymgr,lint] Waive some Verilator warnings about array accesses "Fixing" this in the RTL would be hard. The problem is that you'd need to make some 2-bit signals to represent the enum entries. Unfortunately, AscentLint (the lint tool that we use for signoff) doesn't accept code that extracts bits from enum values without an explicit concatenation. So you end up having to write something like this for each enum entry: localparam bit [2:0] OpAdvanceBits = {OpAdvance}; localparam bit [1:0] ShortOpAdvance = OpAdvanceBits[1:0]; which is getting a bit ridiculous. Just waive the warning. Signed-off-by: Rupert Swarbrick <rswarbrick@lowrisc.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 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).