minitest: add hamsternz-displayport minitest

Signed-off-by: Alessandro Comodi <acomodi@antmicro.com>
This commit is contained in:
Alessandro Comodi 2021-01-22 14:57:58 +01:00
parent 4a87ca80e7
commit 204b05672d
6 changed files with 148 additions and 0 deletions

3
.gitmodules vendored
View File

@ -25,3 +25,6 @@
[submodule "third_party/sanitizers-cmake"] [submodule "third_party/sanitizers-cmake"]
path = third_party/sanitizers-cmake path = third_party/sanitizers-cmake
url = https://github.com/arsenm/sanitizers-cmake.git url = https://github.com/arsenm/sanitizers-cmake.git
[submodule "third_party/display_port"]
path = third_party/display_port
url = https://github.com/hamsternz/DisplayPort_Verilog.git

View File

@ -0,0 +1,82 @@
# Copyright (C) 2017-2020 The Project X-Ray Authors.
#
# Use of this source code is governed by a ISC-style
# license that can be found in the LICENSE file or at
# https://opensource.org/licenses/ISC
#
# SPDX-License-Identifier: ISC
SHELL = bash
SYNTH ?= vivado
YOSYS = $(XRAY_DIR)/third_party/yosys/yosys
PART = xc7a200tsbg484-1
PROJECT_NAME = display_port
all: $(PROJECT_NAME).fasm
clean:
@rm -rf build*
@rm -f *.edif
@rm -f *.bit
@rm -f *.bin
@rm -f *.log
@rm -f *.dcp
@rm -f *.fasm
help:
@echo "Usage: make all [SYNTH=<vivado/yosys>]"
.PHONY: clean help
$(YOSYS):
cd $(XRAY_DIR)/third_party/yosys && make config-gcc && make -j$(shell nproc)
DISPLAY_PORT_DIR = $(XRAY_DIR)/third_party/display_port
VERILOG_FILES = $(DISPLAY_PORT_DIR)/src/test_streams/test_source.v \
$(DISPLAY_PORT_DIR)/src/debug/seven_segment_driver.v \
$(DISPLAY_PORT_DIR)/src/test_streams/insert_main_stream_attrbutes_four_channels.v \
$(DISPLAY_PORT_DIR)/src/test_streams/test_source_3840_2180_YCC_422_ch2.v \
$(DISPLAY_PORT_DIR)/src/insert_training_pattern.v \
$(DISPLAY_PORT_DIR)/src/main_stream_processing.v \
$(DISPLAY_PORT_DIR)/src/auxch/channel_managemnt.v \
$(DISPLAY_PORT_DIR)/src/auxch/hotplug_decode.v \
$(DISPLAY_PORT_DIR)/src/auxch/dp_register_decode.v \
$(DISPLAY_PORT_DIR)/src/skew_channels.v \
$(DISPLAY_PORT_DIR)/src/test_streams/insert_main_stream_attrbutes_two_channels.v \
$(DISPLAY_PORT_DIR)/src/auxch/aux_channel.v \
$(DISPLAY_PORT_DIR)/src/auxch/dp_aux_messages.v \
$(DISPLAY_PORT_DIR)/src/auxch/aux_interface.v \
$(DISPLAY_PORT_DIR)/src/test_streams/insert_main_stream_attrbutes_one_channel.v \
$(DISPLAY_PORT_DIR)/src/artix7/transceiver.v \
$(DISPLAY_PORT_DIR)/src/scrambler_reset_inserter.v \
$(DISPLAY_PORT_DIR)/src/artix7/gtx_tx_reset_controller.v \
$(DISPLAY_PORT_DIR)/src/idle_pattern_inserter.v \
$(DISPLAY_PORT_DIR)/src/artix7/transceiver_bank.v \
$(DISPLAY_PORT_DIR)/src/auxch/link_signal_mgmt.v \
$(DISPLAY_PORT_DIR)/src/auxch/edid_decode.v \
$(DISPLAY_PORT_DIR)/src/scrambler_all_channels.v \
$(DISPLAY_PORT_DIR)/src/top_level_nexys_video.v
CONSTRAINT_FILES = $(DISPLAY_PORT_DIR)/constraints/NexysVideo.xdc
ifeq ($(SYNTH), yosys)
$(PROJECT_NAME).edif: $(YOSYS)
$(YOSYS) -p "read_verilog $(VERILOG_FILES); synth_xilinx -arch xc7 -flatten -nosrl -nodsp -top top_level_nexys_video; write_edif -pvector bra -attrprop $@" -l $@.log
else ifeq ($(SYNTH), vivado)
$(PROJECT_NAME).edif: tcl/syn.tcl
mkdir -p build-syn.$(basename $@)
cd build-syn.$(basename $@) && env PART=$(PART) PROJECT_NAME=$(PROJECT_NAME) VERILOG_FILES="$(VERILOG_FILES)" $(XRAY_VIVADO) -mode batch -source ../tcl/syn.tcl -nojournal -log ../$@.log
rm -rf *.backup.log
endif
$(PROJECT_NAME).bit: $(PROJECT_NAME).edif tcl/par.tcl
mkdir -p build-par.$(basename $@)
cd build-par.$(basename $@) && env PART=$(PART) PROJECT_NAME=$(PROJECT_NAME) CONSTRAINT_FILES=$(CONSTRAINT_FILES) $(XRAY_VIVADO) -mode batch -source ../tcl/par.tcl -nojournal -log ../$@.log
rm -rf *.backup.log
$(PROJECT_NAME).fasm: $(PROJECT_NAME).bit
source $(XRAY_DIR)/settings/artix7_200t.sh && env XRAY_PART=$(PART) ${XRAY_BIT2FASM} --verbose $(PROJECT_NAME).bit > $(PROJECT_NAME).fasm

View File

@ -0,0 +1,20 @@
Display Port minitest
=====================
This minitest is a good test for the Gigabit Transcievers (GTP tiles) documentation process.
The test uses the [Hamsternz's Display Port](https://github.com/hamsternz/DisplayPort_Verilog) as a third party project.
To run the whole flow to generate the final FASM file run:
```bash
make all
```
To run the same flow, but with Yosys synthesis, run:
```bash
make all SYNTH=yosys
```
All the pre-requisites (LiteX, Yosys, etc.) are automatically installed/built. It is required though to have Vivado installed in the system.

View File

@ -0,0 +1,24 @@
# Copyright (C) 2017-2020 The Project X-Ray Authors
#
# Use of this source code is governed by a ISC-style
# license that can be found in the LICENSE file or at
# https://opensource.org/licenses/ISC
#
# SPDX-License-Identifier: ISC
create_project -force -name $env(PROJECT_NAME) -part $env(PART)
read_edif ../$env(PROJECT_NAME).edif
link_design -part $env(PART)
source $env(CONSTRAINT_FILES)
set_property SEVERITY {Warning} [get_drc_checks UCIO-1]
set_property SEVERITY {Warning} [get_drc_checks NSTD-1]
set_property SEVERITY {Warning} [get_drc_checks REQP-1936]
place_design
route_design
write_checkpoint -force ../$env(PROJECT_NAME).dcp
write_bitstream -force ../$env(PROJECT_NAME).bit

View File

@ -0,0 +1,18 @@
# Copyright (C) 2017-2020 The Project X-Ray Authors
#
# Use of this source code is governed by a ISC-style
# license that can be found in the LICENSE file or at
# https://opensource.org/licenses/ISC
#
# SPDX-License-Identifier: ISC
create_project -force -name $env(PROJECT_NAME) -part $env(XRAY_PART)
read_verilog $env(VERILOG_FILES)
synth_design -top top_level_nexys_video -max_dsp 0
report_timing_summary -file top_timing_synth.rpt
report_utilization -hierarchical -file top_utilization_hierarchical_synth.rpt
report_utilization -file top_utilization_synth.rpt
write_edif -force ../$env(PROJECT_NAME).edif

1
third_party/display_port vendored Submodule

@ -0,0 +1 @@
Subproject commit 3d509d41c07a151704f3e7135a032d16d9b6a0b1