diff --git a/LICENSE b/LICENSE index 09706ab..9c5b251 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ BSD 2-Clause License -Copyright (c) 2019, EnjoyDigital +Copyright (c) 2019-2020, EnjoyDigital All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/kc705.py b/kc705.py index d775880..9b14620 100755 --- a/kc705.py +++ b/kc705.py @@ -1,7 +1,10 @@ #!/usr/bin/env python3 -# This file is Copyright (c) 2019 Florent Kermarrec -# License: BSD +# +# This file is part of USB3-PIPE project. +# +# Copyright (c) 2019-2020 Florent Kermarrec +# SPDX-License-Identifier: BSD-2-Clause import sys diff --git a/netv2.py b/netv2.py index a1cbd30..f3ee307 100755 --- a/netv2.py +++ b/netv2.py @@ -1,7 +1,10 @@ #!/usr/bin/env python3 -# This file is Copyright (c) 2019 Florent Kermarrec -# License: BSD +# +# This file is part of USB3-PIPE project. +# +# Copyright (c) 2019-2020 Florent Kermarrec +# SPDX-License-Identifier: BSD-2-Clause import sys diff --git a/sim.py b/sim.py index a1c142a..ae27a60 100755 --- a/sim.py +++ b/sim.py @@ -1,5 +1,11 @@ #!/usr/bin/env python3 +# +# This file is part of USB3-PIPE project. +# +# Copyright (c) 2019-2020 Florent Kermarrec +# SPDX-License-Identifier: BSD-2-Clause + import argparse from migen import * diff --git a/test/test_lfps.py b/test/test_lfps.py index a044dac..08990d5 100644 --- a/test/test_lfps.py +++ b/test/test_lfps.py @@ -1,5 +1,8 @@ -# This file is Copyright (c) 2019 Florent Kermarrec -# License: BSD +# +# This file is part of USB3-PIPE project. +# +# Copyright (c) 2019-2020 Florent Kermarrec +# SPDX-License-Identifier: BSD-2-Clause import unittest diff --git a/test/test_ltssm.py b/test/test_ltssm.py index c8e6108..cb70419 100644 --- a/test/test_ltssm.py +++ b/test/test_ltssm.py @@ -1,5 +1,8 @@ -# This file is Copyright (c) 2019 Florent Kermarrec -# License: BSD +# +# This file is part of USB3-PIPE project. +# +# Copyright (c) 2019-2020 Florent Kermarrec +# SPDX-License-Identifier: BSD-2-Clause import unittest diff --git a/test/test_scrambling.py b/test/test_scrambling.py index d48b695..5bae452 100644 --- a/test/test_scrambling.py +++ b/test/test_scrambling.py @@ -1,5 +1,8 @@ -# This file is Copyright (c) 2019 Florent Kermarrec -# License: BSD +# +# This file is part of USB3-PIPE project. +# +# Copyright (c) 2019-2020 Florent Kermarrec +# SPDX-License-Identifier: BSD-2-Clause import unittest diff --git a/test/test_serdes.py b/test/test_serdes.py index 3cc777e..ac23d94 100644 --- a/test/test_serdes.py +++ b/test/test_serdes.py @@ -1,5 +1,8 @@ -# This file is Copyright (c) 2019 Florent Kermarrec -# License: BSD +# +# This file is part of USB3-PIPE project. +# +# Copyright (c) 2019-2020 Florent Kermarrec +# SPDX-License-Identifier: BSD-2-Clause import unittest import random diff --git a/test/test_training.py b/test/test_training.py index 1d55193..60eaf56 100644 --- a/test/test_training.py +++ b/test/test_training.py @@ -1,5 +1,8 @@ -# This file is Copyright (c) 2019 Florent Kermarrec -# License: BSD +# +# This file is part of USB3-PIPE project. +# +# Copyright (c) 2019-2020 Florent Kermarrec +# SPDX-License-Identifier: BSD-2-Clause import unittest diff --git a/tools/test_analyzer.py b/tools/test_analyzer.py index a791712..9b6006e 100755 --- a/tools/test_analyzer.py +++ b/tools/test_analyzer.py @@ -1,5 +1,11 @@ #!/usr/bin/env python3 +# +# This file is part of USB3-PIPE project. +# +# Copyright (c) 2019-2020 Florent Kermarrec +# SPDX-License-Identifier: BSD-2-Clause + import sys import time diff --git a/usb3_core/core.py b/usb3_core/core.py index ff5adf2..2e7a73b 100644 --- a/usb3_core/core.py +++ b/usb3_core/core.py @@ -1,5 +1,8 @@ -# This file is Copyright (c) 2017-2019 Florent Kermarrec -# License: BSD +# +# This file is part of USB3-PIPE project. +# +# Copyright (c) 2019-2020 Florent Kermarrec +# SPDX-License-Identifier: BSD-2-Clause import os diff --git a/usb3_pipe/common.py b/usb3_pipe/common.py index d74e733..8004ebe 100644 --- a/usb3_pipe/common.py +++ b/usb3_pipe/common.py @@ -1,5 +1,8 @@ -# This file is Copyright (c) 2019 Florent Kermarrec -# License: BSD +# +# This file is part of USB3-PIPE project. +# +# Copyright (c) 2019-2020 Florent Kermarrec +# SPDX-License-Identifier: BSD-2-Clause from migen import * diff --git a/usb3_pipe/core.py b/usb3_pipe/core.py index a69b349..7399f60 100644 --- a/usb3_pipe/core.py +++ b/usb3_pipe/core.py @@ -1,5 +1,8 @@ -# This file is Copyright (c) 2019 Florent Kermarrec -# License: BSD +# +# This file is part of USB3-PIPE project. +# +# Copyright (c) 2019-2020 Florent Kermarrec +# SPDX-License-Identifier: BSD-2-Clause from migen import * diff --git a/usb3_pipe/lfps.py b/usb3_pipe/lfps.py index 95df036..2f4bfd7 100644 --- a/usb3_pipe/lfps.py +++ b/usb3_pipe/lfps.py @@ -1,5 +1,8 @@ -# This file is Copyright (c) 2019 Florent Kermarrec -# License: BSD +# +# This file is part of USB3-PIPE project. +# +# Copyright (c) 2019-2020 Florent Kermarrec +# SPDX-License-Identifier: BSD-2-Clause # LFPS is the first signaling to happen during the initialization of the USB3.0 link. diff --git a/usb3_pipe/ltssm.py b/usb3_pipe/ltssm.py index f622c79..1636c43 100644 --- a/usb3_pipe/ltssm.py +++ b/usb3_pipe/ltssm.py @@ -1,5 +1,8 @@ -# This file is Copyright (c) 2019 Florent Kermarrec -# License: BSD +# +# This file is part of USB3-PIPE project. +# +# Copyright (c) 2019-2020 Florent Kermarrec +# SPDX-License-Identifier: BSD-2-Clause from migen import * diff --git a/usb3_pipe/scrambling.py b/usb3_pipe/scrambling.py index a9579ce..db63577 100644 --- a/usb3_pipe/scrambling.py +++ b/usb3_pipe/scrambling.py @@ -1,5 +1,8 @@ -# This file is Copyright (c) 2019 Florent Kermarrec -# License: BSD +# +# This file is part of USB3-PIPE project. +# +# Copyright (c) 2019-2020 Florent Kermarrec +# SPDX-License-Identifier: BSD-2-Clause from functools import reduce from operator import xor diff --git a/usb3_pipe/serdes.py b/usb3_pipe/serdes.py index 94ce04d..ffc4633 100644 --- a/usb3_pipe/serdes.py +++ b/usb3_pipe/serdes.py @@ -1,5 +1,8 @@ -# This file is Copyright (c) 2019 Florent Kermarrec -# License: BSD +# +# This file is part of USB3-PIPE project. +# +# Copyright (c) 2019-2020 Florent Kermarrec +# SPDX-License-Identifier: BSD-2-Clause from migen import * diff --git a/usb3_pipe/training.py b/usb3_pipe/training.py index cdc162b..373314e 100644 --- a/usb3_pipe/training.py +++ b/usb3_pipe/training.py @@ -1,5 +1,8 @@ -# This file is Copyright (c) 2019 Florent Kermarrec -# License: BSD +# +# This file is part of USB3-PIPE project. +# +# Copyright (c) 2019-2020 Florent Kermarrec +# SPDX-License-Identifier: BSD-2-Clause from migen import * diff --git a/versa_ecp5.py b/versa_ecp5.py index 58a45d0..fc1d9cb 100755 --- a/versa_ecp5.py +++ b/versa_ecp5.py @@ -1,7 +1,10 @@ #!/usr/bin/env python3 -# This file is Copyright (c) 2019 Florent Kermarrec -# License: BSD +# +# This file is part of USB3-PIPE project. +# +# Copyright (c) 2019-2020 Florent Kermarrec +# SPDX-License-Identifier: BSD-2-Clause import sys