From da009601122268e58268d57ad8d68c088868ec6f Mon Sep 17 00:00:00 2001 From: Alex Forencich Date: Sun, 7 Sep 2025 15:28:21 -0700 Subject: [PATCH] Update copyright dates Signed-off-by: Alex Forencich --- LICENSE | 2 +- cocotbext/axi/__init__.py | 2 +- cocotbext/axi/address_space.py | 2 +- cocotbext/axi/axi_channels.py | 2 +- cocotbext/axi/axi_master.py | 6 +++--- cocotbext/axi/axi_ram.py | 2 +- cocotbext/axi/axi_slave.py | 6 +++--- cocotbext/axi/axil_channels.py | 2 +- cocotbext/axi/axil_master.py | 6 +++--- cocotbext/axi/axil_ram.py | 2 +- cocotbext/axi/axil_slave.py | 6 +++--- cocotbext/axi/axis.py | 4 ++-- cocotbext/axi/buddy_allocator.py | 2 +- cocotbext/axi/constants.py | 2 +- cocotbext/axi/memory.py | 2 +- cocotbext/axi/reset.py | 2 +- cocotbext/axi/sparse_memory.py | 2 +- cocotbext/axi/stream.py | 2 +- cocotbext/axi/utils.py | 2 +- tests/Makefile | 2 +- tests/axi/Makefile | 2 +- tests/axi/test_axi.py | 2 +- tests/axi/test_axi.v | 2 +- tests/axil/Makefile | 2 +- tests/axil/test_axil.py | 2 +- tests/axil/test_axil.v | 2 +- tests/axis/Makefile | 2 +- tests/axis/test_axis.py | 2 +- tests/axis/test_axis.v | 2 +- tests/test_buddy_allocator.py | 2 +- 30 files changed, 39 insertions(+), 39 deletions(-) diff --git a/LICENSE b/LICENSE index 7affb14..a512a7f 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -Copyright (c) 2020 Alex Forencich +Copyright (c) 2020-2025 Alex Forencich Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/cocotbext/axi/__init__.py b/cocotbext/axi/__init__.py index 935f2ae..d78935d 100644 --- a/cocotbext/axi/__init__.py +++ b/cocotbext/axi/__init__.py @@ -1,6 +1,6 @@ """ -Copyright (c) 2020 Alex Forencich +Copyright (c) 2020-2025 Alex Forencich Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/cocotbext/axi/address_space.py b/cocotbext/axi/address_space.py index 8e0d8a8..4851940 100644 --- a/cocotbext/axi/address_space.py +++ b/cocotbext/axi/address_space.py @@ -1,6 +1,6 @@ """ -Copyright (c) 2021 Alex Forencich +Copyright (c) 2021-2025 Alex Forencich Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/cocotbext/axi/axi_channels.py b/cocotbext/axi/axi_channels.py index c2a896c..69c3f27 100644 --- a/cocotbext/axi/axi_channels.py +++ b/cocotbext/axi/axi_channels.py @@ -1,6 +1,6 @@ """ -Copyright (c) 2020 Alex Forencich +Copyright (c) 2020-2025 Alex Forencich Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/cocotbext/axi/axi_master.py b/cocotbext/axi/axi_master.py index 7120de1..d041211 100644 --- a/cocotbext/axi/axi_master.py +++ b/cocotbext/axi/axi_master.py @@ -1,6 +1,6 @@ """ -Copyright (c) 2020 Alex Forencich +Copyright (c) 2020-2025 Alex Forencich Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -205,7 +205,7 @@ class AxiMasterWrite(Region, Reset): self.log.info("AXI master (write)") self.log.info("cocotbext-axi version %s", __version__) - self.log.info("Copyright (c) 2020 Alex Forencich") + self.log.info("Copyright (c) 2020-2025 Alex Forencich") self.log.info("https://github.com/alexforencich/cocotbext-axi") self.aw_channel = AxiAWSource(bus.aw, clock, reset, reset_active_level) @@ -647,7 +647,7 @@ class AxiMasterRead(Region, Reset): self.log.info("AXI master (read)") self.log.info("cocotbext-axi version %s", __version__) - self.log.info("Copyright (c) 2020 Alex Forencich") + self.log.info("Copyright (c) 2020-2025 Alex Forencich") self.log.info("https://github.com/alexforencich/cocotbext-axi") self.ar_channel = AxiARSource(bus.ar, clock, reset, reset_active_level) diff --git a/cocotbext/axi/axi_ram.py b/cocotbext/axi/axi_ram.py index 9ee204a..f371596 100644 --- a/cocotbext/axi/axi_ram.py +++ b/cocotbext/axi/axi_ram.py @@ -1,6 +1,6 @@ """ -Copyright (c) 2021 Alex Forencich +Copyright (c) 2021-2025 Alex Forencich Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/cocotbext/axi/axi_slave.py b/cocotbext/axi/axi_slave.py index 959fa4b..5f10107 100644 --- a/cocotbext/axi/axi_slave.py +++ b/cocotbext/axi/axi_slave.py @@ -1,6 +1,6 @@ """ -Copyright (c) 2021 Alex Forencich +Copyright (c) 2021-2025 Alex Forencich Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -45,7 +45,7 @@ class AxiSlaveWrite(Reset): self.log.info("AXI slave model (write)") self.log.info("cocotbext-axi version %s", __version__) - self.log.info("Copyright (c) 2021 Alex Forencich") + self.log.info("Copyright (c) 2021-2025 Alex Forencich") self.log.info("https://github.com/alexforencich/cocotbext-axi") super().__init__(**kwargs) @@ -216,7 +216,7 @@ class AxiSlaveRead(Reset): self.log.info("AXI slave model (read)") self.log.info("cocotbext-axi version %s", __version__) - self.log.info("Copyright (c) 2021 Alex Forencich") + self.log.info("Copyright (c) 2021-2025 Alex Forencich") self.log.info("https://github.com/alexforencich/cocotbext-axi") super().__init__(**kwargs) diff --git a/cocotbext/axi/axil_channels.py b/cocotbext/axi/axil_channels.py index e80b2d8..4a7cc0e 100644 --- a/cocotbext/axi/axil_channels.py +++ b/cocotbext/axi/axil_channels.py @@ -1,6 +1,6 @@ """ -Copyright (c) 2020 Alex Forencich +Copyright (c) 2020-2025 Alex Forencich Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/cocotbext/axi/axil_master.py b/cocotbext/axi/axil_master.py index 8e1f0a0..d40a1ef 100644 --- a/cocotbext/axi/axil_master.py +++ b/cocotbext/axi/axil_master.py @@ -1,6 +1,6 @@ """ -Copyright (c) 2020 Alex Forencich +Copyright (c) 2020-2025 Alex Forencich Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -95,7 +95,7 @@ class AxiLiteMasterWrite(Region, Reset): self.log.info("AXI lite master (write)") self.log.info("cocotbext-axi version %s", __version__) - self.log.info("Copyright (c) 2020 Alex Forencich") + self.log.info("Copyright (c) 2020-2025 Alex Forencich") self.log.info("https://github.com/alexforencich/cocotbext-axi") self.aw_channel = AxiLiteAWSource(bus.aw, clock, reset, reset_active_level) @@ -355,7 +355,7 @@ class AxiLiteMasterRead(Region, Reset): self.log.info("AXI lite master (read)") self.log.info("cocotbext-axi version %s", __version__) - self.log.info("Copyright (c) 2020 Alex Forencich") + self.log.info("Copyright (c) 2020-2025 Alex Forencich") self.log.info("https://github.com/alexforencich/cocotbext-axi") self.ar_channel = AxiLiteARSource(bus.ar, clock, reset, reset_active_level) diff --git a/cocotbext/axi/axil_ram.py b/cocotbext/axi/axil_ram.py index 4657d4c..d21f4b3 100644 --- a/cocotbext/axi/axil_ram.py +++ b/cocotbext/axi/axil_ram.py @@ -1,6 +1,6 @@ """ -Copyright (c) 2021 Alex Forencich +Copyright (c) 2021-2025 Alex Forencich Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/cocotbext/axi/axil_slave.py b/cocotbext/axi/axil_slave.py index 9d159bd..3214d31 100644 --- a/cocotbext/axi/axil_slave.py +++ b/cocotbext/axi/axil_slave.py @@ -1,6 +1,6 @@ """ -Copyright (c) 2021 Alex Forencich +Copyright (c) 2021-2025 Alex Forencich Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -45,7 +45,7 @@ class AxiLiteSlaveWrite(Reset): self.log.info("AXI lite slave model (write)") self.log.info("cocotbext-axi version %s", __version__) - self.log.info("Copyright (c) 2021 Alex Forencich") + self.log.info("Copyright (c) 2021-2025 Alex Forencich") self.log.info("https://github.com/alexforencich/cocotbext-axi") super().__init__(**kwargs) @@ -171,7 +171,7 @@ class AxiLiteSlaveRead(Reset): self.log.info("AXI lite slave model (read)") self.log.info("cocotbext-axi version %s", __version__) - self.log.info("Copyright (c) 2021 Alex Forencich") + self.log.info("Copyright (c) 2021-2025 Alex Forencich") self.log.info("https://github.com/alexforencich/cocotbext-axi") super().__init__(**kwargs) diff --git a/cocotbext/axi/axis.py b/cocotbext/axi/axis.py index 6353356..6a4429e 100644 --- a/cocotbext/axi/axis.py +++ b/cocotbext/axi/axis.py @@ -1,6 +1,6 @@ """ -Copyright (c) 2020 Alex Forencich +Copyright (c) 2020-2025 Alex Forencich Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -278,7 +278,7 @@ class AxiStreamBase(Reset): self.log.info("AXI stream %s", self._type) self.log.info("cocotbext-axi version %s", __version__) - self.log.info("Copyright (c) 2020 Alex Forencich") + self.log.info("Copyright (c) 2020-2025 Alex Forencich") self.log.info("https://github.com/alexforencich/cocotbext-axi") super().__init__(*args, **kwargs) diff --git a/cocotbext/axi/buddy_allocator.py b/cocotbext/axi/buddy_allocator.py index 516ef98..fba90bc 100644 --- a/cocotbext/axi/buddy_allocator.py +++ b/cocotbext/axi/buddy_allocator.py @@ -1,6 +1,6 @@ """ -Copyright (c) 2021 Alex Forencich +Copyright (c) 2021-2025 Alex Forencich Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/cocotbext/axi/constants.py b/cocotbext/axi/constants.py index 0781e56..d9bf05c 100644 --- a/cocotbext/axi/constants.py +++ b/cocotbext/axi/constants.py @@ -1,6 +1,6 @@ """ -Copyright (c) 2020 Alex Forencich +Copyright (c) 2020-2025 Alex Forencich Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/cocotbext/axi/memory.py b/cocotbext/axi/memory.py index b4ef42b..a4199a8 100644 --- a/cocotbext/axi/memory.py +++ b/cocotbext/axi/memory.py @@ -1,6 +1,6 @@ """ -Copyright (c) 2020 Alex Forencich +Copyright (c) 2020-2025 Alex Forencich Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/cocotbext/axi/reset.py b/cocotbext/axi/reset.py index 0938264..8d11fa3 100644 --- a/cocotbext/axi/reset.py +++ b/cocotbext/axi/reset.py @@ -1,6 +1,6 @@ """ -Copyright (c) 2020 Alex Forencich +Copyright (c) 2020-2025 Alex Forencich Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/cocotbext/axi/sparse_memory.py b/cocotbext/axi/sparse_memory.py index 0397139..c90fb1f 100644 --- a/cocotbext/axi/sparse_memory.py +++ b/cocotbext/axi/sparse_memory.py @@ -1,6 +1,6 @@ """ -Copyright (c) 2023 Alex Forencich +Copyright (c) 2023-2025 Alex Forencich Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/cocotbext/axi/stream.py b/cocotbext/axi/stream.py index b55699b..0aa6625 100644 --- a/cocotbext/axi/stream.py +++ b/cocotbext/axi/stream.py @@ -1,6 +1,6 @@ """ -Copyright (c) 2020 Alex Forencich +Copyright (c) 2020-2025 Alex Forencich Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/cocotbext/axi/utils.py b/cocotbext/axi/utils.py index c510cad..07ea16b 100644 --- a/cocotbext/axi/utils.py +++ b/cocotbext/axi/utils.py @@ -1,6 +1,6 @@ """ -Copyright (c) 2020 Alex Forencich +Copyright (c) 2020-2025 Alex Forencich Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/tests/Makefile b/tests/Makefile index 651fe52..06d2da9 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -1,4 +1,4 @@ -# Copyright (c) 2020 Alex Forencich +# Copyright (c) 2020-2025 Alex Forencich # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/tests/axi/Makefile b/tests/axi/Makefile index d182169..7581167 100644 --- a/tests/axi/Makefile +++ b/tests/axi/Makefile @@ -1,4 +1,4 @@ -# Copyright (c) 2020 Alex Forencich +# Copyright (c) 2020-2025 Alex Forencich # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/tests/axi/test_axi.py b/tests/axi/test_axi.py index f4d5ef1..b6be797 100644 --- a/tests/axi/test_axi.py +++ b/tests/axi/test_axi.py @@ -1,6 +1,6 @@ """ -Copyright (c) 2020 Alex Forencich +Copyright (c) 2020-2025 Alex Forencich Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/tests/axi/test_axi.v b/tests/axi/test_axi.v index db1b66a..6fe936c 100644 --- a/tests/axi/test_axi.v +++ b/tests/axi/test_axi.v @@ -1,6 +1,6 @@ /* -Copyright (c) 2020 Alex Forencich +Copyright (c) 2020-2025 Alex Forencich Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/tests/axil/Makefile b/tests/axil/Makefile index bf62e70..7c8fc89 100644 --- a/tests/axil/Makefile +++ b/tests/axil/Makefile @@ -1,4 +1,4 @@ -# Copyright (c) 2020 Alex Forencich +# Copyright (c) 2020-2025 Alex Forencich # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/tests/axil/test_axil.py b/tests/axil/test_axil.py index 3f34184..91d7b31 100644 --- a/tests/axil/test_axil.py +++ b/tests/axil/test_axil.py @@ -1,6 +1,6 @@ """ -Copyright (c) 2020 Alex Forencich +Copyright (c) 2020-2025 Alex Forencich Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/tests/axil/test_axil.v b/tests/axil/test_axil.v index 7dab0c1..17afa4f 100644 --- a/tests/axil/test_axil.v +++ b/tests/axil/test_axil.v @@ -1,6 +1,6 @@ /* -Copyright (c) 2020 Alex Forencich +Copyright (c) 2020-2025 Alex Forencich Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/tests/axis/Makefile b/tests/axis/Makefile index 858e44b..5c6ef87 100644 --- a/tests/axis/Makefile +++ b/tests/axis/Makefile @@ -1,4 +1,4 @@ -# Copyright (c) 2020 Alex Forencich +# Copyright (c) 2020-2025 Alex Forencich # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/tests/axis/test_axis.py b/tests/axis/test_axis.py index 4b5740c..452f17a 100644 --- a/tests/axis/test_axis.py +++ b/tests/axis/test_axis.py @@ -1,7 +1,7 @@ #!/usr/bin/env python """ -Copyright (c) 2020 Alex Forencich +Copyright (c) 2020-2025 Alex Forencich Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/tests/axis/test_axis.v b/tests/axis/test_axis.v index 345a411..5620ad7 100644 --- a/tests/axis/test_axis.v +++ b/tests/axis/test_axis.v @@ -1,6 +1,6 @@ /* -Copyright (c) 2020 Alex Forencich +Copyright (c) 2020-2025 Alex Forencich Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/tests/test_buddy_allocator.py b/tests/test_buddy_allocator.py index f5abb2f..5122ef3 100644 --- a/tests/test_buddy_allocator.py +++ b/tests/test_buddy_allocator.py @@ -1,6 +1,6 @@ """ -Copyright (c) 2021 Alex Forencich +Copyright (c) 2021-2025 Alex Forencich Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal