-
Notifications
You must be signed in to change notification settings - Fork 26
Digilent Atlys Board: Loading Firmware
FIXME(write script!) If you are an testing user, please try our quick setup script from the HDMI2USB-firmware-prebuilt repository.
There are multiple ways to load the Digilent Atlys board with firmware. The loading process occurs in 3 stages;
- [Stage 0] - Flash the Cypress FX2 chip with firmware suitable for flashing the FPGA
- [Stage 1] - Flash the Xilinx Spartan-6 FPGA with HDMI2USB firmware
- [Stage 2] - Flash the Cypress FX2 chip with HDMI2USB firmware (nothing happens until you complete the following steps)
- [Stage 3] - Pull USB plug out of the computer, plug the USB plug back into the computer, the HDMI2USB device should appear.
For each stage you must use at most ONE of the options.
Prebuilt firmware blobs for the HDMI2USB can be found in the HDMI2USB-firmware-prebuilt repository.
Out of the factory the Digilent Atlys board has Adept compatible firmware loaded. If you haven't written anything to the Cypress FX2's flash you can skip this stage.
FIXME: Write instructions if you have changed the Cypress FX chip's flash.
You must install either;
- TODO: The libFPGAlink tool -- Follow these instructions if you are just using/testing a HDMI2USB.
or
- The Xilinx IMPACT Tool -- Follow these instructions if you are developing HDMI2USB firmware.
or
- The Digilent Adept Tools -- Follow these instructions if you are just using/testing a HDMI2USB and already have the Digilent Adept Tools installed or wish to use one of their special features.
In both cases, you will need the hdmi2usb.bit file for this stage. Prebuilt firmware blob can be found in the HDMI2USB-firmware-prebuilt repository.
Follow either this section or the Xilinx IMPACT Tool section
To use this method you must have the Adept 2.XX.XX Utilities installed and Adept 2.XX.XX Runtime installed.
- Step 1 - Plug the power from your power pack into the POWER port.
- Step 2 - Plug the micro-USB cable from your computer into the PROG port.
- Step 3 - Run
djtgcfg enum
, output should be as follows;
$ djtgcfg enum
No devices found
$
- Step 4 - Toggle the POWER switch to the ON position
- Step 5 - Run
djtgcfg enum
, output should be as follows; If it doesn't, see the Troubleshooting Digilent Adept tools section
$ djtgcfg enum
Found 1 device(s)
Device: Atlys
Product Name: Atlys
User Name: Atlys
Serial Number: 210178440327
$
- Step 6 - Run
djtgcfg init -d Atlys
, output should be as follows; If it doesn't, see the Troubleshooting Digilent Adept tools section
$ djtgcfg init -d Atlys
Initializing scan chain...
Found Device ID: 44008093
Found 1 device(s):
Device 0: XC6SLX45
$
- Step 7 - Run
djtgcfg prog -d Atlys -i 0 -f hdmi2usb.bit
, output should be as follows; If it doesn't, see the Troubleshooting Digilent Adept tools section
$ djtgcfg prog -d Atlys -i 0 -f hdmi2usb.bit
Programming device. Do not touch your board. This may take a few minutes...
Programming succeeded.
$
- Step 8 - The DONE light near the red RESET button should light up.
You have now completed Stage 1 - continue to Stage 2 to program the Cypress FX2 chip.
Follow either the Digilent Adept Tools section or this section
The Xilinx IMPACT tool is useful if you are developing HDMI2USB firmware, so you can do one click download in the Xilinx Design tools.
IMPACT must be installed from the Xilinx Design Tools suite. The Digilent ADEPT tools must also be installed.
FIXME: Add content
To avoid having to use the Impact GUI, the following script can be used https://gist.github.com/shenki/5387626
impact -batch download.cmd
Once Stage 1 has been loaded onto the Atlys board, the HDMI matrix will be initialized.
The HDMI output ports should be showing the following graphic: FIXME: Put graphic here XXXX.
If you plug a device into the HDMI input ports, it should successfully detect a 1024x768 screen input. You should be able to switch to it via the buttons. See Digilent Atlys Board: Switches, Buttons and Status LEDs page for more information.
Once you complete Stage 2 you be unable to go back to Stage 1 without a power cycle.
You must either use;
- The fxload
or
- The fx2loader
In both cases, you will need the hdmi2usb.hex file for this stage. Prebuilt firmware blob can be found in the HDMI2USB-firmware-prebuilt repository.
WARNING: The version of fxload that comes with Ubuntu/Debian is too old
You can download fxload
from https://github.com/pbatard/fxload or you can use a prebuilt version found at the same location as the prebuild hdmi2usb firmware.
- Step 1 - Check your
fxload
binary is new enough;
Too old
$ fxload -V
Jun 3 2010 (development)
$
Okay
$ ./fxload -V
Mar 12 2013 (development)
$
- Step 2 - Load the Cypress chip with the firmware using
./fxload -vvv -t fx2 -D 1443:0007 -I hdmi2usb.hex
. This command will appear to return instantly!
You should also be able to use http://www.makestuff.eu/wordpress/software/fx2tools/
./fx2loader --vidpid=1443:0007 hdmi2usb.hex ram
- Step 1 - Unplug the USB micro-cable connected to PROG. DO NOT DISCONNECT THE POWER
- Step 2 - Plug the USB micro-cable back into the PROG port.
- Step 3 - Check your kernel logs via
dmesg
to see if the device is found. It should look something like;
$ dmesg
....
[2248378.275226] USB Video Class driver (1.1.1)
[2248383.716221] usb 2-1.2.2: USB disconnect, device number 8
[2248386.504681] usb 2-1.2.2: new high-speed USB device number 9 using ehci_hcd
[2248386.616200] uvcvideo: Found UVC 1.00 device HDMI2USB (fb9a:fb9a)
[2248386.616463] uvcvideo: UVC non compliance - GET_DEF(PROBE) not supported. Enabling workaround.
[2248386.617060] cdc_acm 2-1.2.2:1.2: This device cannot do calls on its own. It is not a modem.
[2248386.617078] cdc_acm: probe of 2-1.2.2:1.2 failed with error -22
- Step 4 - Use the device as required.