diff --git a/blink/rtl/blink.vhd b/blink/rtl/blink.vhd index 43e7f49..31f9479 100644 --- a/blink/rtl/blink.vhd +++ b/blink/rtl/blink.vhd @@ -43,7 +43,7 @@ begin generic map ( REF_CLK => "10", OUT_CLK => "2", - PERF_MD => "ECONOMY" + PERF_MD => "SPEED" ) port map ( CLK_REF => clk_i, diff --git a/blink/syn/Makefile b/blink/syn/Makefile index 7938605..7b083f5 100644 --- a/blink/syn/Makefile +++ b/blink/syn/Makefile @@ -4,7 +4,7 @@ GM_FILES := ../../lib/rtl_components.vhd GHDL_FLAGS := --std=08 --workdir=build -Pbuild YOSYSPIPE := -nomx8 -retime # ATTENTION: -luttree option seems to mis-synthesize the design, broken with synth_gatemate? -PNRFLAGS := -om 2 +PNRFLAGS := -om 3 PNRTOOL := $(shell which p_r) .PHONY: all syn imp prog syn_sim imp_sim diff --git a/uart_loop/rtl/uart_loop.vhd b/uart_loop/rtl/uart_loop.vhd index ce149db..0c58ecc 100644 --- a/uart_loop/rtl/uart_loop.vhd +++ b/uart_loop/rtl/uart_loop.vhd @@ -42,7 +42,7 @@ begin generic map ( REF_CLK => "10", OUT_CLK => "10", - PERF_MD => "ECONOMY" + PERF_MD => "SPEED" ) port map ( CLK_REF => clk_i, @@ -81,7 +81,7 @@ begin axis_fifo : entity work.axis_fifo generic map ( - DEPTH => 16, + DEPTH => 32, WIDTH => 8 ) port map ( diff --git a/uart_loop/syn/Makefile b/uart_loop/syn/Makefile index 3e44100..d508b94 100644 --- a/uart_loop/syn/Makefile +++ b/uart_loop/syn/Makefile @@ -4,7 +4,7 @@ GM_FILES := ../../lib/rtl_components.vhd GHDL_FLAGS := --std=08 --workdir=build -Pbuild YOSYSPIPE := -nomx8 -retime # ATTENTION: -luttree option seems to mis-synthesize the design, broken with synth_gatemate? -PNRFLAGS := -om 2 +PNRFLAGS := -om 3 PNRTOOL := $(shell which p_r) .PHONY: all syn imp prog syn_sim imp_sim diff --git a/uart_reg/rtl/uart_reg.vhd b/uart_reg/rtl/uart_reg.vhd index 8d30e84..8efc7d4 100644 --- a/uart_reg/rtl/uart_reg.vhd +++ b/uart_reg/rtl/uart_reg.vhd @@ -45,7 +45,7 @@ begin generic map ( REF_CLK => "10", OUT_CLK => "10", - PERF_MD => "ECONOMY" + PERF_MD => "SPEED" ) port map ( CLK_REF => clk_i, diff --git a/uart_reg/syn/Makefile b/uart_reg/syn/Makefile index c94102c..2e53b21 100644 --- a/uart_reg/syn/Makefile +++ b/uart_reg/syn/Makefile @@ -4,7 +4,7 @@ GM_FILES := ../../lib/rtl_components.vhd GHDL_FLAGS := --std=08 --workdir=build -Pbuild YOSYSPIPE := -nomx8 -retime # ATTENTION: -luttree option seems to mis-synthesize the design, broken with synth_gatemate? -PNRFLAGS := -om 2 +PNRFLAGS := -om 3 PNRTOOL := $(shell which p_r) .PHONY: all syn imp prog syn_sim imp_sim diff --git a/uart_trng/rtl/uart_trng.vhd b/uart_trng/rtl/uart_trng.vhd index 327516b..6d1de33 100644 --- a/uart_trng/rtl/uart_trng.vhd +++ b/uart_trng/rtl/uart_trng.vhd @@ -47,7 +47,7 @@ begin generic map ( REF_CLK => "10", OUT_CLK => "10", - PERF_MD => "ECONOMY" + PERF_MD => "SPEED" ) port map ( CLK_REF => clk_i, diff --git a/uart_trng/syn/Makefile b/uart_trng/syn/Makefile index 338e7a8..71d9fc7 100644 --- a/uart_trng/syn/Makefile +++ b/uart_trng/syn/Makefile @@ -4,7 +4,7 @@ GM_FILES := ../../lib/rtl_components.vhd GHDL_FLAGS := --std=08 --workdir=build -Pbuild YOSYSPIPE := -nomx8 -retime # ATTENTION: -luttree option seems to mis-synthesize the design, broken with synth_gatemate? -PNRFLAGS := -om 2 +PNRFLAGS := -om 3 PNRTOOL := $(shell which p_r) .PHONY: all syn imp prog syn_sim imp_sim