This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # From UG908 | |
| # Add the following command to xdc can make it take effect | |
| set_property BITSTREAM.GENERAL.COMPRESS True [current_design] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # This command is supported in Vivado. | |
| cd [get_property DIRECTORY [current_project ]] | |
| # Set it in "Customize Commands" can help to improve productivity. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| synth_design -mode out_of_context | |
| #For more info, refer to UG901. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Usage | |
| # > settings64.bat | |
| # > vivado -mode batch -source file2bram.tcl | |
| # Note: Bitstream needs to be downloaded and running first | |
| ################################################# | |
| # file2bram |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Write ILA data into zip file | |
| write_hw_ila_data filename.zip | |
| # Read the waveform data in Vivado | |
| open_hw | |
| display_hw_ila_data [read_hw_ila_data filename.zip] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| set BIT_FILENAME=ps_emio_sfp.bit | |
| echo fpga -f %BIT_FILENAME% > download_bit.tcl | |
| call C:\Xilinx\SDK\2014.4\bin\xmd.bat -tcl download_bit.tcl | |
| del download_bit.tcl |
NOTE: The zedBoard flow has not been verified
Note: This xapp requires using a Linux host to compile the embedded Linux kernel. The instructions have been
setup such that all implementation work will be done in a directory called xapp1078_2014.4/design and all linux
work will be done in a directory called xapp1078_2014.4/plnx-project. The instructions will require files to be
copied between xapp1078_2014.4/design and xapp1078_2014.4/plnx-project so if the Vivado and SDK tools are ran on
a Windows machine, the files will need to be copied from the Windows xapp1078_2014.4/design to the Linux
machine's xapp1078_2014.4/plnx-project.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # refer to http://www.wiki.xilinx.com/Build+and+Modify+a+Rootfs | |
| dd if=uramdisk.image.gz bs=64 skip=1 of=ramdisk.image.gz | |
| mkdir tmp_mnt | |
| gunzip -c ramdisk.image.gz | sudo sh -c 'cd tmp_mnt/ && cpio -i' | |
| cd tmp_mnt |
OlderNewer