aboutsummaryrefslogtreecommitdiffstats
path: root/fpga/usrp3/top/x300/Makefile
blob: 4d3e668e6bfb303345c8514e382689712483f176 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
#
# Copyright 2012-2013 Ettus Research LLC
#

# Uncomment the following lines to build radio's with no DSP's
#OPTIONS += DELETE_DSP0=1
#OPTIONS += DELETE_DSP1=1
# Uncomment the following line to add a debug UART on GPIO 10 & 11
#OPTIONS += DEBUG_UART=1

CREATE_LVBITX=python ../../lib/io_port2/create-lvbitx.py

GIGE_DEFS=BUILD_1G=1 $(OPTIONS)
HYBRID_DEFS=ETH10G_PORT1=1 BUILD_1G=1 BUILD_10G=1 $(OPTIONS)
XGIGE_DEFS=ETH10G_PORT0=1 ETH10G_PORT1=1 BUILD_10G=1 $(OPTIONS)
HYBRID_SRAM_DEFS=ETH10G_PORT1=1 BUILD_1G=1 BUILD_10G=1 NO_DRAM_FIFOS=1 SRAM_FIFO_SIZE=16 $(OPTIONS)
XGIGE_SRAM_DEFS=ETH10G_PORT0=1 ETH10G_PORT1=1 BUILD_10G=1 NO_DRAM_FIFOS=1 SRAM_FIFO_SIZE=16 $(OPTIONS)

X300: X300_HGS X300_HG X300_XGS X300_XG

X310: X310_HGS X310_HG X310_XGS X310_XG

all: X300 X310

clean:
	rm -rf build-*_*
	rm -rf build

print_report = \
	echo "========================================================================"; \
	cat $(1)/x300.syr | grep "Device utilization summary:" -A 30; \
	echo "========================================================================"; \
	echo "Timing Summary:\n"; \
	cat $(1)/x300.twr | grep constraint | grep met | grep -v "*"; \
	echo "========================================================================";

# ise_build($1=Device, $2=Definitions)
ifndef EXPORT_ONLY
	ise_build = make -f Makefile.x300.inc bin NAME=$@ DEVICE=$1 $2 EXTRA_DEFS="$2"
else
	ise_build = @echo "Skipping ISE build and exporting pre-built files.";
endif

# post_build($1=Device, $2=Flavor)
post_build = \
	@$(call print_report,build-$(1)_$(2)) \
	mkdir -p build; \
	echo "Exporting bitstream files..."; \
	cp build-$(1)_$(2)/x300.bin build/usrp_`echo $(1) | tr A-Z a-z`_fpga_$(2).bin; \
	cp build-$(1)_$(2)/x300.bit build/usrp_`echo $(1) | tr A-Z a-z`_fpga_$(2).bit; \
	echo "Generating LVBITX..."; \
	$(CREATE_LVBITX) --input-bin=build-$(1)_$(2)/x300.bin --output-lvbitx=build/usrp_`echo $(1) | tr A-Z a-z`_fpga_$(2).lvbitx --device="USRP $(1)" x3x0_base.lvbitx; \
	cp -f x3x0_base.lvbitx build/`echo $(1) | tr A-Z a-z`.lvbitx_base; \
	echo "Exporting logs..."; \
	cp build-$(1)_$(2)/x300.syr build/usrp_`echo $(1) | tr A-Z a-z`_fpga_$(2).syr; \
	cp build-$(1)_$(2)/x300.twr build/usrp_`echo $(1) | tr A-Z a-z`_fpga_$(2).twr; \
	echo "\nDONE ... $(1)_$(2)\n";


#1Gig on both ports
X310_1G:
	$(call ise_build,XC7K410T,$(GIGE_DEFS))
	$(call post_build,X310,1G)

X300_1G:
	$(call ise_build,XC7K325T,$(GIGE_DEFS))
	$(call post_build,X300,1G)

#1Gig on port0, 10Gig on port1
X310_HG:
	$(call ise_build,XC7K410T,$(HYBRID_DEFS))
	$(call post_build,X310,HG)

X300_HG:
	$(call ise_build,XC7K325T,$(HYBRID_DEFS))
	$(call post_build,X300,HG)

#10Gig on both ports
X310_XG:
	$(call ise_build,XC7K410T,$(XGIGE_DEFS))
	$(call post_build,X310,XG)

X300_XG:
	$(call ise_build,XC7K325T,$(XGIGE_DEFS))
	$(call post_build,X300,XG)

# 1Gig on port0, 10Gig on port1, SRAM Tx FIFO's
X310_HGS:
	$(call ise_build,XC7K410T,$(HYBRID_SRAM_DEFS))
	$(call post_build,X310,HGS)

X300_HGS:
	$(call ise_build,XC7K325T,$(HYBRID_SRAM_DEFS))
	$(call post_build,X300,HGS)

# 10Gig on both ports, SRAM Tx FIFO's
X310_XGS: 
	$(call ise_build,XC7K410T,$(XGIGE_SRAM_DEFS))
	$(call post_build,X310,XGS)

X300_XGS:
	$(call ise_build,XC7K325T,$(XGIGE_SRAM_DEFS))
	$(call post_build,X300,XGS)


.PHONY: all clean