mirror of
https://github.com/trabucayre/openFPGALoader.git
synced 2026-08-29 09:30:52 +02:00
Add support for Xc6slx9tqg144 FPGA
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
XILINX_PARTS := xc3s500evq100 xc6slx16ftg256 xc6slx16csg324 xc6slx45csg324 xc6slx100fgg484 \
|
||||
XILINX_PARTS := xc3s500evq100 xc6slx9tqg144 xc6slx16ftg256 xc6slx16csg324 xc6slx45csg324 xc6slx100fgg484 \
|
||||
xc6slx150tfgg484 \
|
||||
xc7a35tcpg236 xc7a35tcsg324 xc7a35tftg256 \
|
||||
xc7a50tcsg324 xc7a50tcpg236 xc7a75tfgg484 \
|
||||
|
||||
@@ -62,6 +62,7 @@ else:
|
||||
if tool in ["ise", "vivado"]:
|
||||
pkg_name = {
|
||||
"xc3s500evq100" : "xc3s_vq100",
|
||||
"xc6slx9tqg144" : "xc6s_tqg144",
|
||||
"xc6slx16ftg256" : "xc6s_ftg256",
|
||||
"xc6slx16csg324" : "xc6s_csg324",
|
||||
"xc6slx45csg324" : "xc6s_csg324",
|
||||
@@ -91,6 +92,7 @@ if tool in ["ise", "vivado"]:
|
||||
tool_options = {'family': family,
|
||||
'device': {
|
||||
"xc3s500evq100": "xc3s500e",
|
||||
"xc6slx9tqg144": "xc6slx9",
|
||||
"xc6slx16ftg256": "xc6slx16",
|
||||
"xc6slx16csg324": "xc6slx16",
|
||||
"xc6slx45csg324": "xc6slx45",
|
||||
@@ -102,6 +104,7 @@ if tool in ["ise", "vivado"]:
|
||||
}[part],
|
||||
'package': {
|
||||
"xc3s500evq100": "vq100",
|
||||
"xc6slx9tqg144": "tqg144",
|
||||
"xc6slx16ftg256": "ftg256",
|
||||
"xc6slx16csg324": "csg324",
|
||||
"xc6slx45csg324": "csg324",
|
||||
|
||||
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,6 @@
|
||||
CONFIG VCCAUX = "2.5";
|
||||
|
||||
NET "sdo" LOC = P65 | IOSTANDARD = LVCMOS33;
|
||||
NET "sdi" LOC = P64 | IOSTANDARD = LVCMOS33;
|
||||
NET "csn" LOC = P38 | IOSTANDARD = LVCMOS33;
|
||||
NET "sck" LOC = P70 | IOSTANDARD = LVCMOS33;
|
||||
Reference in New Issue
Block a user