Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
learn:programmable-logic:tutorials:zedboard-programming-guide:start [2016/08/02 21:00] – [3. Programming the Zedboard using a SD card at startup] Sam Lowelearn:programmable-logic:tutorials:zedboard-programming-guide:start [2022/05/13 23:21] (current) Arthur Brown
Line 1: Line 1:
-======Zedboard Programming Guide in SDK======+======Zedboard Programming Guide in SDK (Obsolete)======
  
-**Under construction**+<WRAP round important> 
 +This tutorial is obsolete. Check [[programmable-logic/guides/zynq-baremetal-boot]] for a more recent version. 
 +</WRAP>
  
-pic FIXME+ 
 +{{:reference:programmable-logic:zedboard-getting-started-with-zynq:zedboard-obl-bg-600.jpg?600|}}
  
 =====Overview===== =====Overview=====
Line 12: Line 15:
  
 This tutorial will walk you through what you need to know to get started on your projects and program your Zedboard using each of the three possible methods. It is recommended that you first complete the "Getting Started with Vivado" guide before continuing with this project. This tutorial will walk you through what you need to know to get started on your projects and program your Zedboard using each of the three possible methods. It is recommended that you first complete the "Getting Started with Vivado" guide before continuing with this project.
 +
 ----- -----
  
Line 43: Line 47:
  
 ====1. Creating the Project==== ====1. Creating the Project====
-If you already have a working SDK project continue. If not, complete the [[https://reference.digilentinc.com/learn/programmable-logic/tutorials/zedboard-getting-started-with-zynq/start|getting started with Zynq]] tutorial to create a simple design to program with.+If you already have a working SDK project continue. If not, complete the [[/learn/programmable-logic/tutorials/zedboard-getting-started-with-zynq/start|getting started with Zynq]] tutorial to create a simple design to program with.
  
  
Line 66: Line 70:
 ----- -----
  
-====3. Programming the Zedboard using SD card at startup====+====3. Programming the Zedboard using an SD card at startup====
 It is important to note that the SD card that you select to program the Zedboard with must be formatted in Fat32. Other than that your device doesn't have to be empty and can contain other files and folders. It is important to note that the SD card that you select to program the Zedboard with must be formatted in Fat32. Other than that your device doesn't have to be empty and can contain other files and folders.
  
Line 75: Line 79:
 >{{:learn:programmable-logic:tutorials:zedboard-programming-guide:zedprog14.jpg?400|}} >{{:learn:programmable-logic:tutorials:zedboard-programming-guide:zedprog14.jpg?400|}}
  
->3.3) Open File Explorer and navigate to the root folder of your Vivado project.+>3.3) Create a boot imageThis proccess can be found in Appendix A
  
->3.4) From root go to root > Project_name.runs > impl_1 and copy the .bit file.+>3.4) Place your boot image file onto a fat32 formatted SD card and plug it into your Zedboard.
  
->3.5) Go to the root of your USB device and paste the .bit file. The Basys3 on startup will only look through the USB's root for a file with a .bit extension so it is important that the only .bit file in root is the one that you want to be used to program the Basys3. +>3.5) Turn on your Zedboard and your application should run after the blue ready LED turns on.
- +
->3.6) Safely remove the USB device from your computer and plug it into the USB port on the Basys3. +
- +
->3.7) Make sure your board is connected to your computer for power and turn on the Basys3. It should immediately begin writing the .bit file to the FPGA. +
-Once finished your board should function exactly as it did when programming it with JTAG. Whether you were aware or not you just successfully programmed your Basys3 board two separate ways using the same .bit file.+
  
 ----- -----
-====5. Programming the Basys3 using Quad SPI==== +====4. Programming the Zedboard using Quad SPI==== 
-Quad SPI Flash is a non-volatile memory that the Basys3'FPGA chip looks at on every startup. If Quad SPI is flashed then the FPGA will program itself with the contents found in Quad SPI's flash memory. This method of programming your board is great when you have a final project that you would like to demo or display that doesn't need to be edited and therefore reprogrammed.+Quad SPI Flash is a non-volatile memory that the Zedboard'Zynq chip looks at on every startup. If Quad SPI is flashed then the Zynq will program itself with the contents found in Quad SPI's flash memory. This method of programming your board is great when you have a final project that you would like to demo or display that doesn't need to be edited and therefore reprogrammed.
  
->5.1) Make sure the jumper on JP1 is in the QSPI position +>4.1) Make sure the jumper on JP1 is in the JTAG position 
- +>{{:learn:programmable-logic:tutorials:zedboard-programming-guide:zedprog4.jpg?300|}}
->5.2) In the Hardware Manager window, under hardware right click your device and click Add Configuration Memory Device...+
 > >
->{{:basys3:basys3_screen_shot_2015-6-10_9.png?nolink&400|}} +>4.2) Create an First Stage Boot Loader by clicking file->new->application project then name it and select FSBL in the second page. You do not need to modify this project at all. 
- +>{{:learn:programmable-logic:tutorials:zedboard-programming-guide:zedprog14.jpg?400|}}
->5.3) This window will pop up. Search for "Spansion" and select the 32 bit device (highlighted below). Click OK on the next window asking if you want to program the configuration memory device.+
 > >
->{{:basys3:32.png?nolink&500|}} +>4.3) Create a boot image. This proccess can be found in Appendix A 
- +
->5.4) Select the .bin file where it asks for a configuration file and finally click OK.+>4.4) Select Xilinx Tools->Program Flash and select your boot image file as your image file. Then press program. 
 +>{{:learn:programmable-logic:tutorials:zedboard-programming-guide:zedprog16.jpg?500|}} 
 +> 
 +>4.5Now that your QSPI flash is programmed, change the jumpers to the configuration below to program your board from QSPIWhen the zedboard is power cycled, your application will run after the blue ready LED lights up
 > >
->{{:basys3:34.png?nolink&500|}}+>{{:learn:programmable-logic:tutorials:zedboard-programming-guide:zedprog15.jpg?300|}}
  
-Vivado will now erase the old configuration fileand reprogram your Basys3 with the demo file. From now on, when you power up the Basys3, the demo will load at startup until you reprogram it.+When the zedboard is power cycled, your application will run after the blue ready LED lights up
  
-====Appendix I. Creating a boot image in SDK====+====Appendix A. Creating a boot image in SDK====
  
->A1.1) Navigate to Xilinx Tools-> Create boot image. You will have the following window show up. +>A.1) Navigate to Xilinx Tools-> Create boot image. You will have the following window show up. 
 >{{:learn:programmable-logic:tutorials:zedboard-programming-guide:zedprog9.jpg?500|}}{{:learn:programmable-logic:tutorials:zedboard-programming-guide:zedprog10.jpg?500|}} >{{:learn:programmable-logic:tutorials:zedboard-programming-guide:zedprog9.jpg?500|}}{{:learn:programmable-logic:tutorials:zedboard-programming-guide:zedprog10.jpg?500|}}
 > >
 > ** *The next few steps must be done in order** > ** *The next few steps must be done in order**
->A1.2) Select an output BIF file path. This will log the results of the boot image output. The window should also automatically set your output path to the same location. Remember this location as the .bin file will be put on your SD card or QSPI.+>A.2) Select an output BIF file path. This will log the results of the boot image output. The window should also automatically set your output path to the same location. Remember this location as the .bin file will be put on your SD card or QSPI.
  
->A1.3) Add the FSBL .elf file which can be found in your bootloader's project debug folder. +>A.3) Add the FSBL .elf file which can be found in your bootloader's project debug folder. 
 >ex. zedboard_programming.sdk\bootloader\Debug >ex. zedboard_programming.sdk\bootloader\Debug
 >Then click ok >Then click ok
 > >
->A1.4) Now add the hardware .bit file which can be found in your hardware platform. +>A.4) Now add the hardware .bit file which can be found in your hardware platform. 
 >ex. zedboard_programming.sdk\design_1_wrapper_hw_platform_0\design_1_wrapper.bit >ex. zedboard_programming.sdk\design_1_wrapper_hw_platform_0\design_1_wrapper.bit
 >Then click ok >Then click ok
 > >
->A1.5) Finally add your applications .elf file as the last file. This can be found in the project's debug folder. +>A.5) Finally add your applications .elf file as the last file. This can be found in the project's debug folder. 
 >ex. zedboard_programming.sdk\zedboard_basic\Debug\zedboard_basic.elf >ex. zedboard_programming.sdk\zedboard_basic\Debug\zedboard_basic.elf
->Click ok and your window should look like below. Once Create Image is pressed, your boot image is created to put on an SD card or into QSPI Flash+>Click ok and your window should look like below. Once Create Image is pressed, your boot image is created to put on an SD card or into QSPI Flash
 +>** *if your design purely uses the PL, a project elf file is not required** 
 +>
 >{{:learn:programmable-logic:tutorials:zedboard-programming-guide:zedprog11.jpg?700|}} >{{:learn:programmable-logic:tutorials:zedboard-programming-guide:zedprog11.jpg?700|}}