From 19ff493a59469047abfa3289132cadbde64cbb46 Mon Sep 17 00:00:00 2001 From: Eric Ackermann Date: Wed, 6 Nov 2024 11:51:19 +0100 Subject: [PATCH] Revert unnecessary change --- corev_apu/fpga/src/bootrom/Makefile | 4 +- corev_apu/fpga/xilinx/xlnx_ila/tcl/run.tcl | 47 ++-------------------- 2 files changed, 6 insertions(+), 45 deletions(-) diff --git a/corev_apu/fpga/src/bootrom/Makefile b/corev_apu/fpga/src/bootrom/Makefile index c6d8fc131d4..a9f637207a1 100644 --- a/corev_apu/fpga/src/bootrom/Makefile +++ b/corev_apu/fpga/src/bootrom/Makefile @@ -12,8 +12,8 @@ else ifeq ($(BOARD), arty_a7_100) DRAM_SIZE_64 ?= 0x10000000 #256MB DRAM_SIZE_32 ?= 0x08000000 #128MB -CLOCK_FREQUENCY ?= 25000000 #12.5MHz -HALF_CLOCK_FREQUENCY ?= 12500000 #6.25MHz +CLOCK_FREQUENCY ?= 25000000 #25MHz +HALF_CLOCK_FREQUENCY ?= 12500000 #12.5MHz UART_BITRATE ?= 57600 HAS_ETHERNET ?= 0 else diff --git a/corev_apu/fpga/xilinx/xlnx_ila/tcl/run.tcl b/corev_apu/fpga/xilinx/xlnx_ila/tcl/run.tcl index 7d72564fe7f..9aff7b113ab 100644 --- a/corev_apu/fpga/xilinx/xlnx_ila/tcl/run.tcl +++ b/corev_apu/fpga/xilinx/xlnx_ila/tcl/run.tcl @@ -7,49 +7,10 @@ create_project $ipName . -force -part $partNumber set_property board_part $boardName [current_project] create_ip -name ila -vendor xilinx.com -library ip -module_name $ipName -# probe 1 pll_locked -# probe 2 ndmreset_n -# probe 3 irq_i -# probe 4 ipi -# probe 5 timer_irq -# probe 6 debug_req -# probe7 araddr -# probe8 arvalid -# probe9 arready -# probe10 awaddr -# probe11 awvalid -# probe12 awready -# probe 13 wdata -# probe 14 wvalid -# probe 15 wready -# probe 16 rdata -# probe 17 rresp -# probe 18 rvalid -# probe 19 bvalid -# probe 20 bresp - -set_property -dict [list CONFIG.C_NUM_OF_PROBES {20} \ - CONFIG.C_PROBE0_WIDTH {1} \ - CONFIG.C_PROBE1_WIDTH {1} \ - CONFIG.C_PROBE2_WIDTH {2} \ - CONFIG.C_PROBE3_WIDTH {1} \ - CONFIG.C_PROBE4_WIDTH {1} \ - CONFIG.C_PROBE5_WIDTH {1} \ - CONFIG.C_PROBE6_WIDTH {64} \ - CONFIG.C_PROBE7_WIDTH {1} \ - CONFIG.C_PROBE8_WIDTH {1} \ - CONFIG.C_PROBE9_WIDTH {64} \ - CONFIG.C_PROBE10_WIDTH {1} \ - CONFIG.C_PROBE11_WIDTH {1} \ - CONFIG.C_PROBE12_WIDTH {64} \ - CONFIG.C_PROBE13_WIDTH {1} \ - CONFIG.C_PROBE14_WIDTH {1} \ - CONFIG.C_PROBE15_WIDTH {64} \ - CONFIG.C_PROBE16_WIDTH {2} \ - CONFIG.C_PROBE17_WIDTH {1} \ - CONFIG.C_PROBE18_WIDTH {1} \ - CONFIG.C_PROBE19_WIDTH {2} \ - CONFIG.C_DATA_DEPTH {4096} \ +set_property -dict [list CONFIG.C_NUM_OF_PROBES {8} \ + CONFIG.C_PROBE3_WIDTH {4} \ + CONFIG.C_PROBE6_WIDTH {4} \ + CONFIG.C_DATA_DEPTH {16384} \ CONFIG.C_INPUT_PIPE_STAGES {1} \ ] [get_ips $ipName]