Philipp Wagner | ee59f9a | 2020-07-03 15:34:28 +0100 | [diff] [blame] | 1 | CAPI=2: |
| 2 | # Copyright lowRISC contributors. |
| 3 | # Licensed under the Apache License, Version 2.0, see LICENSE for details. |
| 4 | # SPDX-License-Identifier: Apache-2.0 |
| 5 | |
| 6 | name: "lowrisc:prim:lfsr:0.1" |
| 7 | description: "A Linear-Feedback Shift Register (LFSR) primitive" |
| 8 | filesets: |
| 9 | files_rtl: |
| 10 | depend: |
| 11 | - lowrisc:prim:assert |
| 12 | files: |
| 13 | - rtl/prim_lfsr.sv |
| 14 | file_type: systemVerilogSource |
| 15 | |
Cindy Chen | e4c3605 | 2020-11-02 17:32:42 -0800 | [diff] [blame] | 16 | files_verilator_waiver: |
| 17 | depend: |
| 18 | # common waivers |
| 19 | - lowrisc:lint:common |
| 20 | files: |
| 21 | file_type: vlt |
| 22 | |
| 23 | files_ascentlint_waiver: |
| 24 | depend: |
| 25 | # common waivers |
| 26 | - lowrisc:lint:common |
| 27 | files: |
Michael Schaffner | b4ca664 | 2020-11-12 16:20:39 -0800 | [diff] [blame] | 28 | # - lint/prim_lfsr.waiver |
Cindy Chen | e4c3605 | 2020-11-02 17:32:42 -0800 | [diff] [blame] | 29 | file_type: waiver |
| 30 | |
| 31 | files_veriblelint_waiver: |
| 32 | depend: |
| 33 | # common waivers |
| 34 | - lowrisc:lint:common |
Cindy Chen | e4c3605 | 2020-11-02 17:32:42 -0800 | [diff] [blame] | 35 | |
Philipp Wagner | ee59f9a | 2020-07-03 15:34:28 +0100 | [diff] [blame] | 36 | targets: |
Cindy Chen | e4c3605 | 2020-11-02 17:32:42 -0800 | [diff] [blame] | 37 | default: &default_target |
Philipp Wagner | ee59f9a | 2020-07-03 15:34:28 +0100 | [diff] [blame] | 38 | filesets: |
Cindy Chen | e4c3605 | 2020-11-02 17:32:42 -0800 | [diff] [blame] | 39 | - tool_verilator ? (files_verilator_waiver) |
| 40 | - tool_ascentlint ? (files_ascentlint_waiver) |
| 41 | - tool_veriblelint ? (files_veriblelint_waiver) |
Philipp Wagner | ee59f9a | 2020-07-03 15:34:28 +0100 | [diff] [blame] | 42 | - files_rtl |
Cindy Chen | e4c3605 | 2020-11-02 17:32:42 -0800 | [diff] [blame] | 43 | |
| 44 | lint: |
| 45 | <<: *default_target |
| 46 | default_tool: verilator |
| 47 | parameters: |
| 48 | - SYNTHESIS=true |
| 49 | tools: |
Cindy Chen | e4c3605 | 2020-11-02 17:32:42 -0800 | [diff] [blame] | 50 | verilator: |
| 51 | mode: lint-only |
| 52 | verilator_options: |
| 53 | - "-Wall" |