From 14c1802b0170df13fe7fd5b6a732721c1f94afa4 Mon Sep 17 00:00:00 2001 From: Patrick Urban Date: Mon, 27 Oct 2025 15:47:48 +0100 Subject: [PATCH 1/2] gatemate: fix SERDES CDR parameters --- techlibs/gatemate/cells_bb.v | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/techlibs/gatemate/cells_bb.v b/techlibs/gatemate/cells_bb.v index c0cd64c89..63629c836 100644 --- a/techlibs/gatemate/cells_bb.v +++ b/techlibs/gatemate/cells_bb.v @@ -79,8 +79,8 @@ module CC_SERDES #( parameter [2:0] RX_AFE_VCMSEL = 4, parameter [7:0] RX_CDR_CKP = 8'hF8, parameter [7:0] RX_CDR_CKI = 0, - parameter [8:0] RX_CDR_TRANS_TH = 128, - parameter [5:0] RX_CDR_LOCK_CFG = 8'h0B, + parameter [6:0] RX_CDR_TRANS_TH = 7'h08, + parameter [7:0] RX_CDR_LOCK_CFG = 8'hD5, parameter [14:0] RX_CDR_FREQ_ACC = 0, parameter [15:0] RX_CDR_PHASE_ACC = 0, parameter [1:0] RX_CDR_SET_ACC_CONFIG = 0, From 75eff54b316911f8a9aba6c8cb5c6637b76f2956 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 29 Oct 2025 00:24:43 +0000 Subject: [PATCH 2/2] Bump version --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index ff2f45d9e..108c92b2a 100644 --- a/Makefile +++ b/Makefile @@ -160,7 +160,7 @@ ifeq ($(OS), Haiku) CXXFLAGS += -D_DEFAULT_SOURCE endif -YOSYS_VER := 0.58+86 +YOSYS_VER := 0.58+89 YOSYS_MAJOR := $(shell echo $(YOSYS_VER) | cut -d'.' -f1) YOSYS_MINOR := $(shell echo $(YOSYS_VER) | cut -d'.' -f2 | cut -d'+' -f1) YOSYS_COMMIT := $(shell echo $(YOSYS_VER) | cut -d'+' -f2)