From 0961275d787f50be76689ccc82c44cb1957bddb2 Mon Sep 17 00:00:00 2001 From: Robert Winkler Date: Tue, 30 Jan 2024 09:59:27 +0100 Subject: [PATCH] Add missing copyrights Signed-off-by: Robert Winkler --- .ci.yml | 3 +++ .github/scripts/latex.sh | 3 +++ .github/scripts/sphinx.sh | 3 +++ .github/workflows/ghpages.yml | 3 +++ .github/workflows/pipeline.yml | 3 +++ docs/source/conf.py | 3 +++ examples/hdmi/ipcores/axi_dispctrl.yaml | 3 +++ examples/hdmi/ipcores/clock_crossing.yaml | 3 +++ examples/hdmi/ipcores/dma_axi_in_axis_out.yaml | 3 +++ examples/hdmi/ipcores/hdmi_tx.yaml | 3 +++ examples/hdmi/ipcores/litex_mmcm.yaml | 3 +++ examples/hdmi/ipcores/proc_sys_reset.yaml | 3 +++ examples/hdmi/ipcores/ps7.yaml | 3 +++ examples/hdmi/project.yml | 3 +++ examples/pwm/ipcores/litex_pwm.yml | 3 +++ examples/pwm/ipcores/proc_sys_reset.yaml | 3 +++ examples/pwm/ipcores/ps7.yaml | 3 +++ examples/pwm/project.yml | 3 +++ fpga_topwrap/interfaces/axi3.yaml | 3 +++ fpga_topwrap/interfaces/axi4.yaml | 3 +++ fpga_topwrap/interfaces/axilite.yaml | 3 +++ fpga_topwrap/interfaces/axistream.yaml | 3 +++ fpga_topwrap/ips/axi/axi_axil_adapter.yaml | 3 +++ fpga_topwrap/ips/axi/axi_interconnect.yaml | 3 +++ fpga_topwrap/ips/axi/axi_protocol_converter.yaml | 3 +++ fpga_topwrap/ips/axi/axis_async_fifo.yaml | 3 +++ fpga_topwrap/ips/axi/axis_dwidth_converter.yaml | 3 +++ fpga_topwrap/templates/ipcore_desc.j2.yml | 3 +++ tests/data/data_build/DMATop.yaml | 3 +++ tests/data/data_build/axi_dispctrl_v1_0.yaml | 3 +++ tests/data/data_build/design.yaml | 3 +++ tests/data/data_build/hierarchy/counter.yml | 3 +++ tests/data/data_build/hierarchy/design.yml | 3 +++ tests/data/data_build/hierarchy/pwm.yml | 3 +++ 34 files changed, 102 insertions(+) diff --git a/.ci.yml b/.ci.yml index 111a9371..017358a4 100644 --- a/.ci.yml +++ b/.ci.yml @@ -1,3 +1,6 @@ +# Copyright (c) 2023-2024 Antmicro +# SPDX-License-Identifier: Apache-2.0 + stages: - test - build diff --git a/.github/scripts/latex.sh b/.github/scripts/latex.sh index 5eac1f44..d644d1e5 100755 --- a/.github/scripts/latex.sh +++ b/.github/scripts/latex.sh @@ -1,4 +1,7 @@ #!/usr/bin/env sh +# Copyright (c) 2023-2024 Antmicro +# SPDX-License-Identifier: Apache-2.0 + set -e diff --git a/.github/scripts/sphinx.sh b/.github/scripts/sphinx.sh index e5f578b4..5032fd32 100755 --- a/.github/scripts/sphinx.sh +++ b/.github/scripts/sphinx.sh @@ -1,4 +1,7 @@ #!/usr/bin/env sh +# Copyright (c) 2023-2024 Antmicro +# SPDX-License-Identifier: Apache-2.0 + set -e diff --git a/.github/workflows/ghpages.yml b/.github/workflows/ghpages.yml index dbacd4c7..43804f1f 100644 --- a/.github/workflows/ghpages.yml +++ b/.github/workflows/ghpages.yml @@ -1,3 +1,6 @@ +# Copyright (c) 2021-2024 Antmicro +# SPDX-License-Identifier: Apache-2.0 + name: GH Pages on: diff --git a/.github/workflows/pipeline.yml b/.github/workflows/pipeline.yml index 0c726eec..1de59609 100644 --- a/.github/workflows/pipeline.yml +++ b/.github/workflows/pipeline.yml @@ -1,3 +1,6 @@ +# Copyright (c) 2023-2024 Antmicro +# SPDX-License-Identifier: Apache-2.0 + name: Pipeline diff --git a/docs/source/conf.py b/docs/source/conf.py index 1fce098c..6b6bc5e7 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -1,3 +1,6 @@ +# Copyright (c) 2023-2024 Antmicro +# SPDX-License-Identifier: Apache-2.0 + # -*- coding: utf-8 -*- # # This file is execfile()d with the current directory set to its containing dir. diff --git a/examples/hdmi/ipcores/axi_dispctrl.yaml b/examples/hdmi/ipcores/axi_dispctrl.yaml index 5ff63edf..3fae3e87 100644 --- a/examples/hdmi/ipcores/axi_dispctrl.yaml +++ b/examples/hdmi/ipcores/axi_dispctrl.yaml @@ -1,3 +1,6 @@ +# Copyright (c) 2021-2024 Antmicro +# SPDX-License-Identifier: Apache-2.0 + S00_AXI: interface: AXI4Lite mode: slave diff --git a/examples/hdmi/ipcores/clock_crossing.yaml b/examples/hdmi/ipcores/clock_crossing.yaml index c63e8cb3..2401c760 100644 --- a/examples/hdmi/ipcores/clock_crossing.yaml +++ b/examples/hdmi/ipcores/clock_crossing.yaml @@ -1,3 +1,6 @@ +# Copyright (c) 2021-2024 Antmicro +# SPDX-License-Identifier: Apache-2.0 + signals: in: - clkA diff --git a/examples/hdmi/ipcores/dma_axi_in_axis_out.yaml b/examples/hdmi/ipcores/dma_axi_in_axis_out.yaml index f3169a69..a1814756 100644 --- a/examples/hdmi/ipcores/dma_axi_in_axis_out.yaml +++ b/examples/hdmi/ipcores/dma_axi_in_axis_out.yaml @@ -1,3 +1,6 @@ +# Copyright (c) 2021-2024 Antmicro +# SPDX-License-Identifier: Apache-2.0 + m_axis: interface: AXI4Stream mode: master diff --git a/examples/hdmi/ipcores/hdmi_tx.yaml b/examples/hdmi/ipcores/hdmi_tx.yaml index 58b84fec..a1b917db 100644 --- a/examples/hdmi/ipcores/hdmi_tx.yaml +++ b/examples/hdmi/ipcores/hdmi_tx.yaml @@ -1,3 +1,6 @@ +# Copyright (c) 2021-2024 Antmicro +# SPDX-License-Identifier: Apache-2.0 + signals: in: - PXLCLK_I diff --git a/examples/hdmi/ipcores/litex_mmcm.yaml b/examples/hdmi/ipcores/litex_mmcm.yaml index cd9a6834..38b59868 100644 --- a/examples/hdmi/ipcores/litex_mmcm.yaml +++ b/examples/hdmi/ipcores/litex_mmcm.yaml @@ -1,3 +1,6 @@ +# Copyright (c) 2021-2024 Antmicro +# SPDX-License-Identifier: Apache-2.0 + axi: interface: AXI4Lite mode: slave diff --git a/examples/hdmi/ipcores/proc_sys_reset.yaml b/examples/hdmi/ipcores/proc_sys_reset.yaml index b1f34e46..1ce2ed53 100644 --- a/examples/hdmi/ipcores/proc_sys_reset.yaml +++ b/examples/hdmi/ipcores/proc_sys_reset.yaml @@ -1,3 +1,6 @@ +# Copyright (c) 2021-2024 Antmicro +# SPDX-License-Identifier: Apache-2.0 + signals: in: - slowest_sync_clk diff --git a/examples/hdmi/ipcores/ps7.yaml b/examples/hdmi/ipcores/ps7.yaml index a1fad126..711d249d 100644 --- a/examples/hdmi/ipcores/ps7.yaml +++ b/examples/hdmi/ipcores/ps7.yaml @@ -1,3 +1,6 @@ +# Copyright (c) 2021-2024 Antmicro +# SPDX-License-Identifier: Apache-2.0 + signals: in: - MAXIGP0ACLK diff --git a/examples/hdmi/project.yml b/examples/hdmi/project.yml index e510046f..297c4e61 100644 --- a/examples/hdmi/project.yml +++ b/examples/hdmi/project.yml @@ -1,3 +1,6 @@ +# Copyright (c) 2021-2024 Antmicro +# SPDX-License-Identifier: Apache-2.0 + ips: dma: file: ipcores/dma_axi_in_axis_out.yaml diff --git a/examples/pwm/ipcores/litex_pwm.yml b/examples/pwm/ipcores/litex_pwm.yml index dfb0d96c..9bc39271 100644 --- a/examples/pwm/ipcores/litex_pwm.yml +++ b/examples/pwm/ipcores/litex_pwm.yml @@ -1,3 +1,6 @@ +# Copyright (c) 2021-2024 Antmicro +# SPDX-License-Identifier: Apache-2.0 + signals: in: - sys_clk diff --git a/examples/pwm/ipcores/proc_sys_reset.yaml b/examples/pwm/ipcores/proc_sys_reset.yaml index b1f34e46..1ce2ed53 100644 --- a/examples/pwm/ipcores/proc_sys_reset.yaml +++ b/examples/pwm/ipcores/proc_sys_reset.yaml @@ -1,3 +1,6 @@ +# Copyright (c) 2021-2024 Antmicro +# SPDX-License-Identifier: Apache-2.0 + signals: in: - slowest_sync_clk diff --git a/examples/pwm/ipcores/ps7.yaml b/examples/pwm/ipcores/ps7.yaml index 2dd35b76..1c12ecc5 100644 --- a/examples/pwm/ipcores/ps7.yaml +++ b/examples/pwm/ipcores/ps7.yaml @@ -1,3 +1,6 @@ +# Copyright (c) 2021-2024 Antmicro +# SPDX-License-Identifier: Apache-2.0 + signals: in: - MAXIGP0ACLK diff --git a/examples/pwm/project.yml b/examples/pwm/project.yml index 0537936b..1096b52b 100644 --- a/examples/pwm/project.yml +++ b/examples/pwm/project.yml @@ -1,3 +1,6 @@ +# Copyright (c) 2021-2024 Antmicro +# SPDX-License-Identifier: Apache-2.0 + ips: litex_pwm_top: file: ipcores/litex_pwm.yml diff --git a/fpga_topwrap/interfaces/axi3.yaml b/fpga_topwrap/interfaces/axi3.yaml index d7346401..a9099ce9 100644 --- a/fpga_topwrap/interfaces/axi3.yaml +++ b/fpga_topwrap/interfaces/axi3.yaml @@ -1,3 +1,6 @@ +# Copyright (c) 2021-2024 Antmicro +# SPDX-License-Identifier: Apache-2.0 + name: AXI3 port_prefix: AXI3 signals: diff --git a/fpga_topwrap/interfaces/axi4.yaml b/fpga_topwrap/interfaces/axi4.yaml index 401e080a..113dd56d 100644 --- a/fpga_topwrap/interfaces/axi4.yaml +++ b/fpga_topwrap/interfaces/axi4.yaml @@ -1,3 +1,6 @@ +# Copyright (c) 2021-2024 Antmicro +# SPDX-License-Identifier: Apache-2.0 + name: AXI4 port_prefix: AXI4 signals: diff --git a/fpga_topwrap/interfaces/axilite.yaml b/fpga_topwrap/interfaces/axilite.yaml index 9538e6b5..97d5a171 100644 --- a/fpga_topwrap/interfaces/axilite.yaml +++ b/fpga_topwrap/interfaces/axilite.yaml @@ -1,3 +1,6 @@ +# Copyright (c) 2021-2024 Antmicro +# SPDX-License-Identifier: Apache-2.0 + name: AXI4Lite port_prefix: AXIL signals: diff --git a/fpga_topwrap/interfaces/axistream.yaml b/fpga_topwrap/interfaces/axistream.yaml index 1d43b850..da962569 100644 --- a/fpga_topwrap/interfaces/axistream.yaml +++ b/fpga_topwrap/interfaces/axistream.yaml @@ -1,3 +1,6 @@ +# Copyright (c) 2021-2024 Antmicro +# SPDX-License-Identifier: Apache-2.0 + name: AXI4Stream port_prefix: AXIS signals: diff --git a/fpga_topwrap/ips/axi/axi_axil_adapter.yaml b/fpga_topwrap/ips/axi/axi_axil_adapter.yaml index 4eb9acd3..286f4b3d 100644 --- a/fpga_topwrap/ips/axi/axi_axil_adapter.yaml +++ b/fpga_topwrap/ips/axi/axi_axil_adapter.yaml @@ -1,3 +1,6 @@ +# Copyright (c) 2021-2024 Antmicro +# SPDX-License-Identifier: Apache-2.0 + parameters: ADDR_WIDTH: 32 AXI_DATA_WIDTH: 32 diff --git a/fpga_topwrap/ips/axi/axi_interconnect.yaml b/fpga_topwrap/ips/axi/axi_interconnect.yaml index 64a77c94..85210ff5 100644 --- a/fpga_topwrap/ips/axi/axi_interconnect.yaml +++ b/fpga_topwrap/ips/axi/axi_interconnect.yaml @@ -1,3 +1,6 @@ +# Copyright (c) 2021-2024 Antmicro +# SPDX-License-Identifier: Apache-2.0 + # 1 slave parameters: S_COUNT: 1 diff --git a/fpga_topwrap/ips/axi/axi_protocol_converter.yaml b/fpga_topwrap/ips/axi/axi_protocol_converter.yaml index e88fd36a..7c7e35c9 100644 --- a/fpga_topwrap/ips/axi/axi_protocol_converter.yaml +++ b/fpga_topwrap/ips/axi/axi_protocol_converter.yaml @@ -1,3 +1,6 @@ +# Copyright (c) 2021-2024 Antmicro +# SPDX-License-Identifier: Apache-2.0 + # parameters: # C_M_AXI_PROTOCOL # C_S_AXI_PROTOCOL diff --git a/fpga_topwrap/ips/axi/axis_async_fifo.yaml b/fpga_topwrap/ips/axi/axis_async_fifo.yaml index 1b58ba65..43937aa8 100644 --- a/fpga_topwrap/ips/axi/axis_async_fifo.yaml +++ b/fpga_topwrap/ips/axi/axis_async_fifo.yaml @@ -1,3 +1,6 @@ +# Copyright (c) 2021-2024 Antmicro +# SPDX-License-Identifier: Apache-2.0 + parameters: DATA_WIDTH: 8 KEEP_WIDTH: (DATA_WIDTH+7)/8 diff --git a/fpga_topwrap/ips/axi/axis_dwidth_converter.yaml b/fpga_topwrap/ips/axi/axis_dwidth_converter.yaml index 846e0106..2bb59590 100644 --- a/fpga_topwrap/ips/axi/axis_dwidth_converter.yaml +++ b/fpga_topwrap/ips/axi/axis_dwidth_converter.yaml @@ -1,3 +1,6 @@ +# Copyright (c) 2021-2024 Antmicro +# SPDX-License-Identifier: Apache-2.0 + parameters: IN_DATA_WIDTH: 64 OUT_DATA_WIDTH: 32 diff --git a/fpga_topwrap/templates/ipcore_desc.j2.yml b/fpga_topwrap/templates/ipcore_desc.j2.yml index c8cd808c..485f4d1f 100644 --- a/fpga_topwrap/templates/ipcore_desc.j2.yml +++ b/fpga_topwrap/templates/ipcore_desc.j2.yml @@ -1,3 +1,6 @@ +# Copyright (c) 2021-2024 Antmicro +# SPDX-License-Identifier: Apache-2.0 + {% if parameters %}parameters:{% for name, value in parameters.items() %}{% if value is mapping %} {{name}}:{% for k,v in value.items() %} {{k}}: {{v}}{%endfor%}{% else %} diff --git a/tests/data/data_build/DMATop.yaml b/tests/data/data_build/DMATop.yaml index 59b6eba8..b34d1b20 100644 --- a/tests/data/data_build/DMATop.yaml +++ b/tests/data/data_build/DMATop.yaml @@ -1,3 +1,6 @@ +# Copyright (c) 2023-2024 Antmicro +# SPDX-License-Identifier: Apache-2.0 + AXIS_m0: interface: AXIStream mode: master diff --git a/tests/data/data_build/axi_dispctrl_v1_0.yaml b/tests/data/data_build/axi_dispctrl_v1_0.yaml index f184beda..7e69bf65 100644 --- a/tests/data/data_build/axi_dispctrl_v1_0.yaml +++ b/tests/data/data_build/axi_dispctrl_v1_0.yaml @@ -1,3 +1,6 @@ +# Copyright (c) 2023-2024 Antmicro +# SPDX-License-Identifier: Apache-2.0 + parameters: C_S_AXIS_TDATA_WIDTH: 32 C_S00_AXI_DATA_WIDTH: 32 diff --git a/tests/data/data_build/design.yaml b/tests/data/data_build/design.yaml index 913d7a5a..c529d56c 100644 --- a/tests/data/data_build/design.yaml +++ b/tests/data/data_build/design.yaml @@ -1,3 +1,6 @@ +# Copyright (c) 2023-2024 Antmicro +# SPDX-License-Identifier: Apache-2.0 + ips: dma: file: tests/data/data_build/DMATop.yaml diff --git a/tests/data/data_build/hierarchy/counter.yml b/tests/data/data_build/hierarchy/counter.yml index fb3be6c6..488288ad 100644 --- a/tests/data/data_build/hierarchy/counter.yml +++ b/tests/data/data_build/hierarchy/counter.yml @@ -1,3 +1,6 @@ +# Copyright (c) 2023-2024 Antmicro +# SPDX-License-Identifier: Apache-2.0 + parameters: CNT_WIDTH: 32 diff --git a/tests/data/data_build/hierarchy/design.yml b/tests/data/data_build/hierarchy/design.yml index a7054a1c..e6f57954 100644 --- a/tests/data/data_build/hierarchy/design.yml +++ b/tests/data/data_build/hierarchy/design.yml @@ -1,3 +1,6 @@ +# Copyright (c) 2023-2024 Antmicro +# SPDX-License-Identifier: Apache-2.0 + ips: pwm: file: tests/data/data_build/hierarchy/pwm.yml diff --git a/tests/data/data_build/hierarchy/pwm.yml b/tests/data/data_build/hierarchy/pwm.yml index 7d1b6178..3d18e18b 100644 --- a/tests/data/data_build/hierarchy/pwm.yml +++ b/tests/data/data_build/hierarchy/pwm.yml @@ -1,3 +1,6 @@ +# Copyright (c) 2023-2024 Antmicro +# SPDX-License-Identifier: Apache-2.0 + parameters: COMP_WIDTH: 32