Skip to content

Commit

Permalink
Merge pull request #404 from hansfbaier/master
Browse files Browse the repository at this point in the history
Add xc7k70t and small fixes for xc7k160t
  • Loading branch information
trabucayre authored Nov 9, 2023
2 parents 1a86fa2 + 63c1950 commit 34f20ca
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 0 deletions.
1 change: 1 addition & 0 deletions doc/FPGAs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -209,6 +209,7 @@ Xilinx:

- Description: Kintex 7
Model:
- xc7k70t
- xc7k160t
- xc7k325t
- xc7k410t
Expand Down
1 change: 1 addition & 0 deletions spiOverJtag/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ XILINX_PARTS := xc3s500evq100 \
xc7a100tcsg324 xc7a100tfgg484 xc7a100tfgg676\
xc7a200tsbg484 xc7a200tfbg484 \
xc7s25csga225 xc7s25csga324 xc7s50csga324 \
xc7k70tfbg676 \
xc7k160tffg676 \
xc7k325tffg676 xc7k325tffg900 \
xc7k420tffg901 \
Expand Down
1 change: 1 addition & 0 deletions spiOverJtag/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@
"xc7a100tfgg676" : "xc7a_fgg676",
"xc7a200tsbg484" : "xc7a_sbg484",
"xc7a200tfbg484" : "xc7a_fbg484",
"xc7k70tfbg676" : "xc7k_fbg676",
"xc7k160tffg676" : "xc7k_ffg676",
"xc7k325tffg676" : "xc7k_ffg676",
"xc7k325tffg900" : "xc7k_ffg900",
Expand Down
4 changes: 4 additions & 0 deletions spiOverJtag/xilinx_spiOverJtag.tcl
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ set grade [dict create \
xc7a75tfgg484 -2 \
xc7a100tfgg484 -2 \
xc7a200tsbg484 -1 \
xc7k70tfbg676 -1 \
xc7k160tffg676 -1 \
xc7k325tffg676 -1 \
xc7k325tffg900 -2 \
xc7s25csga225 -1 \
Expand All @@ -33,6 +35,8 @@ set pkg_name [dict create \
xc7a100tfgg484 xc7a_fgg484 \
xc7a200tsbg484 xc7a_sbg484 \
xc7a200tfbg484 xc7a_fbg484 \
xc7k70tfbg676 xc7k_fbg676 \
xc7k160tffg676 xc7k_ffg676 \
xc7k325tffg676 xc7k_ffg676 \
xc7k325tffg900 xc7k_ffg900 \
xc7s25csga225 xc7s_csga225 \
Expand Down
1 change: 1 addition & 0 deletions src/part.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ static std::map <uint32_t, fpga_model> fpga_list = {
{0x03636093, {"xilinx", "artix a7 200t", "xc7a200", 6}},

/* Xilinx 7-Series / Kintex7 */
{0x03647093, {"xilinx", "kintex7", "xc7k70t", 6}},
{0x0364c093, {"xilinx", "kintex7", "xc7k160t", 6}},
{0x03651093, {"xilinx", "kintex7", "xc7k325t", 6}},
{0x03656093, {"xilinx", "kintex7", "xc7k410t", 6}},
Expand Down

0 comments on commit 34f20ca

Please sign in to comment.