Browse Source

Merge pull request #406 from shingarov/spi-kintex

Add support for flashing the s25fl256s onboard Genesys2
pull/410/head
Michael Neuling 6 months ago committed by GitHub
parent
commit
5766dbab37
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. BIN
      openocd/bscan_spi_xc7k325t_openocd_v0.11.bit
  2. 4
      openocd/flash-arty
  3. 6
      openocd/genesys2.cfg

BIN
openocd/bscan_spi_xc7k325t_openocd_v0.11.bit

Binary file not shown.

4
openocd/flash-arty

@ -46,8 +46,10 @@ elif args.fpga.lower() == "a100": @@ -46,8 +46,10 @@ elif args.fpga.lower() == "a100":
proxy = "bscan_spi_xc7a100t{}.bit".format(version)
elif args.fpga.lower() == "a200":
proxy = "bscan_spi_xc7a200t{}.bit".format(version)
elif args.fpga.lower() == "k325":
proxy = "bscan_spi_xc7k325t{}.bit".format(version)
else:
print("error: specify a35, a100 or a200 when flashing")
print("error: specify a35, a100, a200 or k325 when flashing")
sys.exit()

proxy = os.path.join(BASE, proxy)

6
openocd/genesys2.cfg

@ -0,0 +1,6 @@ @@ -0,0 +1,6 @@
interface ftdi
ftdi_vid_pid 0x0403 0x6010
ftdi_channel 1
ftdi_layout_init 0x00e8 0x60eb
reset_config none
adapter_khz 25000
Loading…
Cancel
Save