XC2V1000-kit
This page describes "Virtes-II Demo Board" DS-BD-V2MB1000 from DS-KIT-MBLAZE-V2-SET by Memec.
Following instructions are verified on these systems:
- Ubuntu 10.10 - 64-bit
See also http://rtime.felk.cvut.cz/hw/index.php/XC2S100-kit
ISE Design Suite
I recommend to use ISE 9.2 (NOT the WebPack edition!) as it is the last version supporting XC2V1000 which ID key can be obtained from their web page. Distribution also contains 64-bit linux binaries (which is not true for some newer versions).
Supported devices are: Virtex(E), Virtex-2(P), Virtex-4, Virtex-5, Spartan-2(E), Spartan-3(E,A,AN,ADSP).
However to install 64-bit version, appropriate setup (not the default) must be launched (at least in my case).
$ ./ISE_DVD_92i/bin/lin64/setup
If floorplanner, pace or fpga_editor doesn't work for you and all required libraries are installed, probably DISPLAY variable is set to something like ":0.0" instead of ":0".
To correct this I have renamed all mentioned executable to *.bin and put this script in a place of each one:
#!/bin/bash export DISPLAY=:0 $0.bin $*
I you use ft2232 based JTAG cable and open-source drivers then you can accordingly rename impact executable and put script similar to the following one in a place of the original impact to force linker loading the open-source driver.
#!/bin/bash LD_PRELOAD=/opt/Xilinx/usbjtag/libusb-driver-64.so $0.bin $*