blob: 5f1e4a67af14297ee07962cde2b0f38bb2378393 (
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
107
108
109
110
111
112
|
function(create_rapidwright_device_db)
set(options)
set(oneValueArgs part)
set(multiValueArgs)
cmake_parse_arguments(
create_rapidwright_device_db
"${options}"
"${oneValueArgs}"
"${multiValueArgs}"
${ARGN}
)
set(part ${create_rapidwright_device_db_part})
set(rapidwright_device_db ${CMAKE_CURRENT_BINARY_DIR}/${part}.device)
add_custom_command(
OUTPUT ${rapidwright_device_db}
COMMAND
RAPIDWRIGHT_PATH=${RAPIDWRIGHT_PATH}
${RAPIDWRIGHT_PATH}/scripts/invoke_rapidwright.sh
com.xilinx.rapidwright.interchange.DeviceResourcesExample
${part}
DEPENDS
${RAPIDWRIGHT_PATH}/scripts/invoke_rapidwright.sh
)
add_custom_target(rapidwright-${part}-device DEPENDS ${rapidwright_device_db})
set_property(TARGET rapidwright-${part}-device PROPERTY LOCATION ${rapidwright_device_db})
endfunction()
function(generate_chipdb)
set(options)
set(oneValueArgs part)
set(multiValueArgs)
cmake_parse_arguments(
generate_chipdb
"${options}"
"${oneValueArgs}"
"${multiValueArgs}"
${ARGN}
)
set(part ${generate_chipdb_part})
create_rapidwright_device_db(part ${part})
set(rapidwright_device_target rapidwright-${part}-device)
get_property(rapidwright_device_loc TARGET ${rapidwright_device_target} PROPERTY LOCATION)
set(constraints_device ${CMAKE_CURRENT_BINARY_DIR}/${part}_constraints.device)
add_custom_command(
OUTPUT ${constraints_device}
COMMAND
python3 -mfpga_interchange.patch
--schema_dir ${INTERCHANGE_SCHEMA_PATH}
--schema device
--patch_path constraints
--patch_format yaml
${rapidwright_device_loc}
${PYTHON_INTERCHANGE_PATH}/test_data/series7_constraints.yaml
${constraints_device}
DEPENDS
${rapidwright_device_target}
)
add_custom_target(constraints-${part}-device DEPENDS ${constraints_device})
set(constraints_luts_device ${CMAKE_CURRENT_BINARY_DIR}/${part}_constraints_luts.device)
add_custom_command(
OUTPUT ${constraints_luts_device}
COMMAND
python3 -mfpga_interchange.patch
--schema_dir ${INTERCHANGE_SCHEMA_PATH}
--schema device
--patch_path lutDefinitions
--patch_format yaml
${constraints_device}
${PYTHON_INTERCHANGE_PATH}/test_data/series7_luts.yaml
${constraints_luts_device}
DEPENDS
${constraints_device}
)
add_custom_target(constraints-luts-${part}-device DEPENDS ${constraints_luts_device})
set_property(TARGET constraints-luts-${part}-device PROPERTY LOCATION ${constraints_luts_device})
set(chipdb_bba ${chipdb_dir}/chipdb-${part}.bba)
add_custom_command(
OUTPUT ${chipdb_bba}
COMMAND
python3 -mfpga_interchange.nextpnr_emit
--schema_dir ${INTERCHANGE_SCHEMA_PATH}
--output_dir ${chipdb_dir}
--bel_bucket_seeds ${PYTHON_INTERCHANGE_PATH}/test_data/series7_bel_buckets.yaml
--device ${constraints_luts_device}
COMMAND
mv ${chipdb_dir}/chipdb.bba ${chipdb_bba}
DEPENDS
${constraints_luts_device}
)
add_custom_target(chipdb-${part}-bba DEPENDS ${chipdb_bba})
add_dependencies(chipdb-${family}-bbas chipdb-${part}-bba)
endfunction()
set(chipdb_dir ${CMAKE_CURRENT_BINARY_DIR}/${family}/chipdb)
file(MAKE_DIRECTORY ${chipdb_dir})
add_custom_target(chipdb-${family}-bbas)
add_subdirectory(${family}/examples/devices)
|