mirror of https://github.com/openXC7/prjxray.git
54 lines
1.8 KiB
Makefile
54 lines
1.8 KiB
Makefile
# 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
|
|
export FUZDIR=$(shell pwd)
|
|
PIP_TYPE?=hclk_ioi3
|
|
PIPLIST_TCL=$(FUZDIR)/hclk_ioi3_pip_list.tcl
|
|
TODO_RE=".*"
|
|
# FIXME Modify fuzzer to solve PIPs that drive the BUFIO and BUFR from ILOGIC clock or through the IOI tile.
|
|
EXCLUDE_RE=".*\.HCLK_IOI_((I2IOCLK)|(IDELAYCTRL))"
|
|
|
|
MAKETODO_FLAGS= --sides "" --pip-type ${PIP_TYPE} --seg-type ${PIP_TYPE} --re $(TODO_RE) --exclude-re $(EXCLUDE_RE)
|
|
N = 50
|
|
|
|
SEGMATCH_FLAGS=-c 2 -m 15 -M 45
|
|
SPECIMENS_DEPS=build/cmt_regions.csv
|
|
A_PIPLIST=hclk_ioi3.txt
|
|
|
|
include ../pip_loop.mk
|
|
|
|
build/segbits_hclk_ioi3.rdb: $(SPECIMENS_OK)
|
|
${XRAY_SEGMATCH} ${SEGMATCH_FLAGS} -o build/segbits_hclk_ioi3.rdb \
|
|
$(shell find build -name segdata_hclk_ioi3.txt)
|
|
|
|
build/segbits_hclk_ioi3.db: build/segbits_hclk_ioi3.rdb
|
|
${XRAY_DBFIXUP} --db-root build --zero-db bits.dbf \
|
|
--seg-fn-in build/segbits_hclk_ioi3.rdb \
|
|
--seg-fn-out build/segbits_hclk_ioi3.db
|
|
|
|
# Keep a copy to track iter progress
|
|
cp build/segbits_hclk_ioi3.rdb build/$(ITER)/segbits_hclk_ioi3.rdb
|
|
|
|
|
|
${XRAY_MASKMERGE} build/mask_hclk_ioi3.db \
|
|
$(shell find build -name segdata_hclk_ioi3.txt)
|
|
|
|
database: build/segbits_hclk_ioi3.db
|
|
# Clobber existing .db to eliminate potential conflicts
|
|
cp ${XRAY_DATABASE_DIR}/${XRAY_DATABASE}/segbits*.db build/database/${XRAY_DATABASE}
|
|
XRAY_DATABASE_DIR=${FUZDIR}/build/database ${XRAY_MERGEDB} hclk_ioi3 build/segbits_hclk_ioi3.db
|
|
|
|
build/cmt_regions.csv: output_cmt.tcl
|
|
mkdir -p build
|
|
cd build/ && ${XRAY_VIVADO} -mode batch -source ${FUZDIR}/output_cmt.tcl
|
|
|
|
pushdb: database
|
|
${XRAY_MERGEDB} hclk_ioi3 build/segbits_hclk_ioi3.db
|
|
${XRAY_MERGEDB} mask_hclk_ioi build/mask_hclk_ioi3.db
|
|
|
|
.PHONY: database pushdb
|