From 96c9f03e40edd3e11bc1e02546362c38c4a4a41b Mon Sep 17 00:00:00 2001 From: Maciej Kurc Date: Wed, 27 May 2020 15:38:32 +0200 Subject: [PATCH] Added licensing information Signed-off-by: Maciej Kurc --- minitests/idelay/Makefile | 8 ++++++++ minitests/idelay/basys3_idelay_const.v | 8 ++++++++ minitests/idelay/basys3_idelay_histogram.v | 8 ++++++++ minitests/idelay/basys3_idelay_var.v | 8 ++++++++ minitests/idelay/sim/error_counter_tb.v | 8 ++++++++ minitests/idelay/sim/message_formatter_tb.v | 8 ++++++++ minitests/idelay/sim/run_icarus.sh | 7 +++++++ minitests/idelay/sim/run_vivado.sh | 7 +++++++ minitests/idelay/sim/sim.tcl | 8 ++++++++ minitests/idelay/src/error_counter.v | 8 ++++++++ minitests/idelay/src/idelay_calibrator.v | 8 ++++++++ minitests/idelay/src/idelay_histogram.v | 8 ++++++++ minitests/idelay/src/lfsr.v | 8 ++++++++ minitests/idelay/src/message_formatter.v | 8 ++++++++ minitests/idelay/tcl/par.tcl | 8 ++++++++ minitests/idelay/tcl/syn.tcl | 8 ++++++++ 16 files changed, 126 insertions(+) diff --git a/minitests/idelay/Makefile b/minitests/idelay/Makefile index da95e048..1bd1dc58 100644 --- a/minitests/idelay/Makefile +++ b/minitests/idelay/Makefile @@ -1,3 +1,11 @@ +# Copyright (C) 2017-2020 The Project X-Ray Authors. +# +# Use of this source code is governed by a ISC-style +# license that can be found in the LICENSE file or at +# https://opensource.org/licenses/ISC +# +# SPDX-License-Identifier: ISC + SYNTH ?= vivado YOSYS = $(XRAY_DIR)/third_party/yosys/yosys PART = xc7a35tcsg324-1 diff --git a/minitests/idelay/basys3_idelay_const.v b/minitests/idelay/basys3_idelay_const.v index 72581384..17369acf 100644 --- a/minitests/idelay/basys3_idelay_const.v +++ b/minitests/idelay/basys3_idelay_const.v @@ -1,3 +1,11 @@ +// Copyright (C) 2017-2020 The Project X-Ray Authors. +// +// Use of this source code is governed by a ISC-style +// license that can be found in the LICENSE file or at +// https://opensource.org/licenses/ISC +// +// SPDX-License-Identifier: ISC + `include "src/idelay_calibrator.v" `default_nettype none diff --git a/minitests/idelay/basys3_idelay_histogram.v b/minitests/idelay/basys3_idelay_histogram.v index 0620794b..1e081e08 100644 --- a/minitests/idelay/basys3_idelay_histogram.v +++ b/minitests/idelay/basys3_idelay_histogram.v @@ -1,3 +1,11 @@ +// Copyright (C) 2017-2020 The Project X-Ray Authors. +// +// Use of this source code is governed by a ISC-style +// license that can be found in the LICENSE file or at +// https://opensource.org/licenses/ISC +// +// SPDX-License-Identifier: ISC + `include "src/idelay_histogram.v" `include "src/idelay_calibrator.v" `include "src/error_counter.v" diff --git a/minitests/idelay/basys3_idelay_var.v b/minitests/idelay/basys3_idelay_var.v index d6f08c07..2a3776c5 100644 --- a/minitests/idelay/basys3_idelay_var.v +++ b/minitests/idelay/basys3_idelay_var.v @@ -1,3 +1,11 @@ +// Copyright (C) 2017-2020 The Project X-Ray Authors. +// +// Use of this source code is governed by a ISC-style +// license that can be found in the LICENSE file or at +// https://opensource.org/licenses/ISC +// +// SPDX-License-Identifier: ISC + `include "src/idelay_calibrator.v" `default_nettype none diff --git a/minitests/idelay/sim/error_counter_tb.v b/minitests/idelay/sim/error_counter_tb.v index 00d901bf..e672a18b 100644 --- a/minitests/idelay/sim/error_counter_tb.v +++ b/minitests/idelay/sim/error_counter_tb.v @@ -1,3 +1,11 @@ +// Copyright (C) 2017-2020 The Project X-Ray Authors. +// +// Use of this source code is governed by a ISC-style +// license that can be found in the LICENSE file or at +// https://opensource.org/licenses/ISC +// +// SPDX-License-Identifier: ISC + `default_nettype none `timescale 1ns / 1ps diff --git a/minitests/idelay/sim/message_formatter_tb.v b/minitests/idelay/sim/message_formatter_tb.v index e4838883..7084f66c 100644 --- a/minitests/idelay/sim/message_formatter_tb.v +++ b/minitests/idelay/sim/message_formatter_tb.v @@ -1,3 +1,11 @@ +// Copyright (C) 2017-2020 The Project X-Ray Authors. +// +// Use of this source code is governed by a ISC-style +// license that can be found in the LICENSE file or at +// https://opensource.org/licenses/ISC +// +// SPDX-License-Identifier: ISC + `default_nettype none `timescale 1ns / 1ps diff --git a/minitests/idelay/sim/run_icarus.sh b/minitests/idelay/sim/run_icarus.sh index 545e7cc1..862023ce 100755 --- a/minitests/idelay/sim/run_icarus.sh +++ b/minitests/idelay/sim/run_icarus.sh @@ -1,4 +1,11 @@ #!/bin/bash +# Copyright (C) 2017-2020 The Project X-Ray Authors. +# +# Use of this source code is governed by a ISC-style +# license that can be found in the LICENSE file or at +# https://opensource.org/licenses/ISC +# +# SPDX-License-Identifier: ISC set -e diff --git a/minitests/idelay/sim/run_vivado.sh b/minitests/idelay/sim/run_vivado.sh index 9f56cfb0..77760933 100755 --- a/minitests/idelay/sim/run_vivado.sh +++ b/minitests/idelay/sim/run_vivado.sh @@ -1,4 +1,11 @@ #!/bin/bash +# Copyright (C) 2017-2020 The Project X-Ray Authors. +# +# Use of this source code is governed by a ISC-style +# license that can be found in the LICENSE file or at +# https://opensource.org/licenses/ISC +# +# SPDX-License-Identifier: ISC set -e diff --git a/minitests/idelay/sim/sim.tcl b/minitests/idelay/sim/sim.tcl index e185aa58..701e3910 100644 --- a/minitests/idelay/sim/sim.tcl +++ b/minitests/idelay/sim/sim.tcl @@ -1,3 +1,11 @@ +# Copyright (C) 2017-2020 The Project X-Ray Authors. +# +# Use of this source code is governed by a ISC-style +# license that can be found in the LICENSE file or at +# https://opensource.org/licenses/ISC +# +# SPDX-License-Identifier: ISC + create_project -force -part xc7a35ticsg324-1L $::env(TESTBENCH_TITLE) $::env(TESTBENCH_TITLE) read_verilog $::env(TESTBENCH_TITLE).v diff --git a/minitests/idelay/src/error_counter.v b/minitests/idelay/src/error_counter.v index 0758b18a..a3a1abab 100644 --- a/minitests/idelay/src/error_counter.v +++ b/minitests/idelay/src/error_counter.v @@ -1,3 +1,11 @@ +// Copyright (C) 2017-2020 The Project X-Ray Authors. +// +// Use of this source code is governed by a ISC-style +// license that can be found in the LICENSE file or at +// https://opensource.org/licenses/ISC +// +// SPDX-License-Identifier: ISC + `default_nettype none module error_counter # diff --git a/minitests/idelay/src/idelay_calibrator.v b/minitests/idelay/src/idelay_calibrator.v index 644e37df..d4e7aeff 100644 --- a/minitests/idelay/src/idelay_calibrator.v +++ b/minitests/idelay/src/idelay_calibrator.v @@ -1,3 +1,11 @@ +// Copyright (C) 2017-2020 The Project X-Ray Authors. +// +// Use of this source code is governed by a ISC-style +// license that can be found in the LICENSE file or at +// https://opensource.org/licenses/ISC +// +// SPDX-License-Identifier: ISC + `default_nettype none // ============================================================================ diff --git a/minitests/idelay/src/idelay_histogram.v b/minitests/idelay/src/idelay_histogram.v index b5cd3752..a36aea78 100644 --- a/minitests/idelay/src/idelay_histogram.v +++ b/minitests/idelay/src/idelay_histogram.v @@ -1,3 +1,11 @@ +// Copyright (C) 2017-2020 The Project X-Ray Authors. +// +// Use of this source code is governed by a ISC-style +// license that can be found in the LICENSE file or at +// https://opensource.org/licenses/ISC +// +// SPDX-License-Identifier: ISC + module idelay_histogram # ( parameter UART_PRESCALER = 868 // UART prescaler diff --git a/minitests/idelay/src/lfsr.v b/minitests/idelay/src/lfsr.v index 93c7d9e8..3859cd4c 100644 --- a/minitests/idelay/src/lfsr.v +++ b/minitests/idelay/src/lfsr.v @@ -1,3 +1,11 @@ +// Copyright (C) 2017-2020 The Project X-Ray Authors. +// +// Use of this source code is governed by a ISC-style +// license that can be found in the LICENSE file or at +// https://opensource.org/licenses/ISC +// +// SPDX-License-Identifier: ISC + `default_nettype none // ============================================================================ diff --git a/minitests/idelay/src/message_formatter.v b/minitests/idelay/src/message_formatter.v index fbffcbf6..842656de 100644 --- a/minitests/idelay/src/message_formatter.v +++ b/minitests/idelay/src/message_formatter.v @@ -1,3 +1,11 @@ +// Copyright (C) 2017-2020 The Project X-Ray Authors. +// +// Use of this source code is governed by a ISC-style +// license that can be found in the LICENSE file or at +// https://opensource.org/licenses/ISC +// +// SPDX-License-Identifier: ISC + `default_nettype none // ============================================================================ diff --git a/minitests/idelay/tcl/par.tcl b/minitests/idelay/tcl/par.tcl index e198dd57..a9e28376 100644 --- a/minitests/idelay/tcl/par.tcl +++ b/minitests/idelay/tcl/par.tcl @@ -1,3 +1,11 @@ +# Copyright (C) 2017-2020 The Project X-Ray Authors. +# +# Use of this source code is governed by a ISC-style +# license that can be found in the LICENSE file or at +# https://opensource.org/licenses/ISC +# +# SPDX-License-Identifier: ISC + create_project -force -name $env(PROJECT_NAME) -part xc7a35tcpg236-1 read_edif ../$env(PROJECT_NAME).edif diff --git a/minitests/idelay/tcl/syn.tcl b/minitests/idelay/tcl/syn.tcl index c4501ce6..653b0331 100644 --- a/minitests/idelay/tcl/syn.tcl +++ b/minitests/idelay/tcl/syn.tcl @@ -1,3 +1,11 @@ +# Copyright (C) 2017-2020 The Project X-Ray Authors. +# +# Use of this source code is governed by a ISC-style +# license that can be found in the LICENSE file or at +# https://opensource.org/licenses/ISC +# +# SPDX-License-Identifier: ISC + create_project -force -name $env(PROJECT_NAME) -part xc7a35tcpg236-1 read_verilog ../$env(PROJECT_NAME).v