# 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 SELF_DIR := $(dir $(lastword $(MAKEFILE_LIST))) # Developer options for quicker runs # Run algorithm, but only a small number of iterations QUICK=N # Skip metadata steps like tile and part generation # Ex: FUZZONLY=N: 30 min, FUZZONLY=Y: 6 min FUZZONLY=N # 074 fuzzer isn't changed often and is slow # Allow building without it BITONLY=N all: clean: clean_fuzzers clean_piplists clean_logs clean_locks clean_locks: rm -rf /tmp/segbits_*.db.lock clean_piplists: rm -rf $(XRAY_FUZZERS_DIR)/piplist/build fuzzer_ok: mkdir -p fuzzer_ok clean_fuzzers:: rm -rf fuzzer_ok define fuzzer # $(1) - Fuzzer name/directory # $(2) - Space seperated list of dependencies for the fuzzer. # $(3) - Is this fuzzer setting specific? Should be either "part" or "all" # Make the all target depend on the run.ok file for the fuzzer. ifeq ($(3),part) all: $(1)/run.$(XRAY_PART).ok part_only: $(1)/run.$(XRAY_PART).ok else all: $(1)/run.ok endif # Make the clean target run `make clean` in the fuzzer's directory. clean_fuzzers:: $$(MAKE) -C $(1) clean clean_logs:: rm -rf $(1)/logs_* # Describe how to create the fuzzer's run.ok file. # This command must start with a + to tell make to pass the jobserver # parameters downwards. ifeq ($(3),part) $(1)/run.$(XRAY_PART).ok: $(addsuffix _$(XRAY_PART).ok,$(addprefix fuzzer_ok/fuzzer_, $(2))) else $(1)/run.ok: $(addsuffix _$(XRAY_PART).ok,$(addprefix fuzzer_ok/fuzzer_, $(2))) endif ifeq ($(VERBOSE),Y) # When verbose we just call make directory $$(MAKE) -C $(1) run else # When not verbose, we use the run_fuzzer wrapper which will save the results # to log files. +@$(SELF_DIR)/run_fuzzer.py $(1) endif ifeq ($(3),part) fuzzer_ok/fuzzer_$(1)_$(XRAY_PART).ok: $(1)/run.$(XRAY_PART).ok | fuzzer_ok else fuzzer_ok/fuzzer_$(1)_$(XRAY_PART).ok: $(1)/run.ok | fuzzer_ok endif touch fuzzer_ok/fuzzer_$(1)_$(XRAY_PART).ok .PHONY: fuzzer_$(1) fuzzer_$(1): fuzzer_ok/fuzzer_$(1)_$(XRAY_PART).ok endef $(eval $(call fuzzer,000-init-db,,part)) ifneq ($(FUZZONLY),Y) $(eval $(call fuzzer,001-part-yaml,000-init-db,part)) $(eval $(call fuzzer,005-tilegrid,001-part-yaml,part)) else all:: 005-tilegrid/run.ok touch 005-tilegrid/run.ok endif ifneq ($(XRAY_DATABASE),kintex7) $(eval $(call fuzzer,007-timing,005-tilegrid,all)) endif $(eval $(call fuzzer,010-clb-lutinit,005-tilegrid,all)) $(eval $(call fuzzer,011-clb-ffconfig,005-tilegrid,all)) $(eval $(call fuzzer,012-clb-n5ffmux,005-tilegrid,all)) $(eval $(call fuzzer,013-clb-ncy0,005-tilegrid,all)) $(eval $(call fuzzer,014-clb-ffsrcemux,005-tilegrid,all)) $(eval $(call fuzzer,015-clb-nffmux,005-tilegrid,all)) $(eval $(call fuzzer,016-clb-noutmux,005-tilegrid,all)) $(eval $(call fuzzer,017-clb-precyinit,005-tilegrid,all)) $(eval $(call fuzzer,018-clb-ram,005-tilegrid,all)) $(eval $(call fuzzer,019-clb-ndi1mux,005-tilegrid,all)) $(eval $(call fuzzer,025-bram-config,005-tilegrid,all)) $(eval $(call fuzzer,026-bram-data,005-tilegrid,all)) $(eval $(call fuzzer,027-bram36-config,005-tilegrid,all)) $(eval $(call fuzzer,028-fifo-config,005-tilegrid,all)) $(eval $(call fuzzer,029-bram-fifo-config,005-tilegrid,all)) $(eval $(call fuzzer,030-iob,005-tilegrid,all)) $(eval $(call fuzzer,031-cmt-mmcm,005-tilegrid,all)) $(eval $(call fuzzer,032-cmt-pll,005-tilegrid,all)) $(eval $(call fuzzer,034-cmt-pll-pips,005-tilegrid 071-ppips,all)) $(eval $(call fuzzer,034b-cmt-mmcm-pips,005-tilegrid 071-ppips,all)) $(eval $(call fuzzer,035-iob-ilogic,005-tilegrid,all)) $(eval $(call fuzzer,035a-iob-idelay,005-tilegrid,all)) $(eval $(call fuzzer,035b-iob-iserdes,005-tilegrid,all)) $(eval $(call fuzzer,036-iob-ologic,005-tilegrid,all)) $(eval $(call fuzzer,037-iob-pips,005-tilegrid 035b-iob-iserdes,all)) $(eval $(call fuzzer,038-cfg,005-tilegrid,all)) $(eval $(call fuzzer,039-hclk-config,005-tilegrid,all)) $(eval $(call fuzzer,040-clk-hrow-config,005-tilegrid,all)) $(eval $(call fuzzer,041-clk-hrow-pips,005-tilegrid,all)) $(eval $(call fuzzer,042-clk-bufg-config,005-tilegrid,all)) $(eval $(call fuzzer,043-clk-rebuf-pips,005-tilegrid,all)) $(eval $(call fuzzer,044-clk-bufg-pips,046-clk-bufg-muxed-pips,all)) $(eval $(call fuzzer,045-hclk-cmt-pips,005-tilegrid,all)) $(eval $(call fuzzer,046-clk-bufg-muxed-pips,005-tilegrid,all)) $(eval $(call fuzzer,047-hclk-ioi-pips,005-tilegrid,all)) $(eval $(call fuzzer,047a-hclk-idelayctrl-pips,047-hclk-ioi-pips,all)) $(eval $(call fuzzer,048-int-piplist,005-tilegrid,all)) $(eval $(call fuzzer,049-int-imux-gfan,048-int-piplist,all)) $(eval $(call fuzzer,050-pip-seed,048-int-piplist,all)) $(eval $(call fuzzer,051-pip-imuxlout-bypalts,048-int-piplist,all)) $(eval $(call fuzzer,052-pip-clkin,048-int-piplist,all)) $(eval $(call fuzzer,053-pip-ctrlin,048-int-piplist,all)) $(eval $(call fuzzer,054-pip-fan-alt,048-int-piplist,all)) $(eval $(call fuzzer,055-pip-gnd,048-int-piplist,all)) $(eval $(call fuzzer,056-pip-rem,049-int-imux-gfan 050-pip-seed 051-pip-imuxlout-bypalts 052-pip-clkin 053-pip-ctrlin 054-pip-fan-alt 055-pip-gnd 059-pip-byp-bounce,all)) $(eval $(call fuzzer,057-pip-bi,056-pip-rem,all)) ifneq ($(QUICK),Y) $(eval $(call fuzzer,058-pip-hclk,005-tilegrid,all)) $(eval $(call fuzzer,059-pip-byp-bounce,048-int-piplist,all)) $(eval $(call fuzzer,060-bram-cascades,005-tilegrid,all)) $(eval $(call fuzzer,071-ppips,057-pip-bi 058-pip-hclk 060-bram-cascades,all)) ifneq ($(BITONLY),Y) $(eval $(call fuzzer,072-ordered_wires,,part)) $(eval $(call fuzzer,073-get_counts,,part)) $(eval $(call fuzzer,074-dump_all,005-tilegrid 072-ordered_wires,part)) $(eval $(call fuzzer,075-pins,,part)) ifeq ($(XRAY_DATABASE),zynq7) $(eval $(call fuzzer,076-ps7,,all)) endif ifeq ($(XRAY_DATABASE),artix7) $(eval $(call fuzzer,061-pcie-conf,005-tilegrid,all)) $(eval $(call fuzzer,062-pcie-int-pips,005-tilegrid,all)) $(eval $(call fuzzer,063-gtp-common-conf,005-tilegrid,part)) $(eval $(call fuzzer,064-gtp-channel-conf,005-tilegrid,part)) $(eval $(call fuzzer,065-gtp-common-pips,005-tilegrid,part)) $(eval $(call fuzzer,065b-gtp-common-pips,005-tilegrid,part)) $(eval $(call fuzzer,066-gtp-int-pips,005-tilegrid,all)) endif endif endif $(eval $(call fuzzer,100-dsp-mskpat,005-tilegrid,all)) $(eval $(call fuzzer,101-dsp-pips,005-tilegrid,all)) quick: $(MAKE) QUICK=Y # Part only targets # ----------------- # roi_only runs the fuzzers required for supporting additional parts when building # a roi harness. roi_only: 000-init-db/run.${XRAY_PART}.ok 001-part-yaml/run.${XRAY_PART}.ok 075-pins/run.${XRAY_PART}.ok .PHONY: all clean clean_fuzzers clean_logs quick part_only roi_only