Wiki

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
resources:fpga:altera:ced1z:ad7938 [28 May 2012 16:20] – [Software Tools] Andrei Cozmaresources:fpga:altera:ced1z:ad7938 [26 Jan 2021 01:23] (current) – update arrow links after their web site update Robin Getz
Line 3: Line 3:
 ====== Overview ===== ====== Overview =====
  
-This document presents the steps to setup an environment for using the **[[adi>AD7938|EVAL-AD7938CBZ]]** evaluation board together with the **[[adi>EVAL-CED|EVAL-CED Converter Evaluation and Development (CED) Board]]**, the Nios II Embedded Development Suite (EDS) and the [[http://micrium.com/page/products/tools/probe|Micrium µC-Probe]] run-time monitoring tool. Below is presented a picture of the EVAL-AD7938 Evaluation Board with the CED1 board.+This document presents the steps to setup an environment for using the **[[adi>AD7938|EVAL-AD7938CBZ]]** evaluation board together with the **[[adi>EVAL-CED|EVAL-CED Converter Evaluation and Development (CED) Board]]**, the Nios II Embedded Development Suite (EDS) and the [[https://www.micrium.com/ucprobe/about/|Micrium µC-Probe]] run-time monitoring tool. Below is presented a picture of the EVAL-AD7938 Evaluation Board with the CED1 board.
  
 {{ :resources:fpga:altera:ced1z:img_0024.png?500 }} {{ :resources:fpga:altera:ced1z:img_0024.png?500 }}
Line 18: Line 18:
   * [[adi>/static/imported-files/eval_boards/17099365EVAL_AD7938CB_AD7939CB_AD7938_6CB.pdf|EVAL-AD7938CBZ evaluation board user guide]]   * [[adi>/static/imported-files/eval_boards/17099365EVAL_AD7938CB_AD7939CB_AD7938_6CB.pdf|EVAL-AD7938CBZ evaluation board user guide]]
   * [[http://www.altera.com/devices/processor/nios2|Nios II Embedded Development Suite (EDS)]]   * [[http://www.altera.com/devices/processor/nios2|Nios II Embedded Development Suite (EDS)]]
-  * [[http://micrium.com/page/products/tools/probe|Micrium uC-Probe]]+  * [[https://www.micrium.com/ucprobe/about/|Micrium uC-Probe v2.5]]
  
 ====== Getting Started ====== ====== Getting Started ======
Line 37: Line 37:
   * [[http://www.altera.com/products/software/quartus-ii/web-edition/qts-we-index.html|Quartus II Web Edition]] design software v11.0   * [[http://www.altera.com/products/software/quartus-ii/web-edition/qts-we-index.html|Quartus II Web Edition]] design software v11.0
   * [[https://www.altera.com/download/software/nios-ii|Nios II EDS]] v11.0   * [[https://www.altera.com/download/software/nios-ii|Nios II EDS]] v11.0
-  * [[http://micrium.com/page/products/tools/probe|uC-Probe]] run-time monitoring tool+  * [[https://www.micrium.com/ucprobe/about/|uC-Probe v2.5]] run-time monitoring tool
    
 The **Quartus II** design software and the **Nios II EDS** is available via the Altera Complete Design Suite DVD or by downloading from the web.  The **Quartus II** design software and the **Nios II EDS** is available via the Altera Complete Design Suite DVD or by downloading from the web. 
Line 160: Line 160:
  
 ====== NIOS II Software Design ====== ====== NIOS II Software Design ======
-{{page>:resources:fpga:altera:ced1z:common_nios2_software_design}}+ 
 + 
 +This section presents the steps for developing a software application that will run on the **CED1Z** system and will be used for controlling and monitoring the operation of the ADI evaluation board. 
 + 
 +===== Create a new project using the NIOS II Software Build Tools for Eclipse ===== 
 + 
 +Launch the **Nios II SBT** from the **//Start -> All Programs -> Altera -> Nios II EDS 11.0 -> Nios II 11.0 
 +Software Build Tools for Eclipse (SBT)//**. 
 +<WRAP tip>NOTE: Windows 7 users will need to right-click and select **//Run as administrator//**. Another method is to right-click and select **//Properties//** and click on the //**Compatibility**// tab and select the **//Run This Program As An Administrator//** checkbox, which will make this a permanent change.</WRAP> 
 + 
 +=== 1. Initialize Eclipse workspace === 
 + 
 +  * When Eclipse first launches, a dialog box appears asking what directory it should use for its workspace. It is useful to have a separate Eclipse workspace associated with each hardware project that is created in SOPC Builder. Browse to the **//ADIEvalBoard//** directory and click //**Make New Folder**// to create a folder for the software project. Name the new folder “//**eclipse_workspace**//”. After selecting the workspace directory, click **//OK//** and Eclipse will launch and the workbench will appear in the **//Nios II//** perspective. 
 + 
 +{{ :resources:fpga:altera:ced1z:eclipseworkspace.png?800 }} 
 + 
 +=== 2. Create a new software project in the SBT === 
 + 
 +  * Select **//File -New -> Nios II Application and BSP from Template//**. 
 + 
 +{{ :resources:fpga:altera:bemicro:image025.png?600 }} 
 + 
 +  * Click the **//Browse//** button in the **//SOPC Information File Name//** dialog box. 
 +  * Select the **//uC.sopcinfo//** file located in the **//ADIEvalBoard/FPGA//** directory. 
 +  * Set the name of the Application project to “**//ADIEvalBoard//**”. 
 +  * Select the **//Blank Project//** template under **//Project template//**. 
 +  * Click the **//Finish//** button. 
 + 
 +{{ :resources:fpga:altera:ced1z:eclipseblankproject.png?600 }} 
 + 
 +The tool will create two new software project directories. Each Nios II application has 2 project directories in the Eclipse workspace. 
 +  * The application software project itself - this where the application lives. 
 +  * The second is the **//Board Support Package (BSP)//** project associated with the main application software project. This project will build the system library drivers for the specific SOPC system. This project inherits the name from the main software project and appends “**//_bsp//**” to that. 
 + 
 +{{ :resources:fpga:altera:bemicro:eclipseprojects.png?300 }} 
 + 
 +Since you chose the blank project template, there are no source files in the application project directory at this time. The BSP contains a directory of software drivers as well as a system.h header file, system initialization source code and other software infrastructure. 
 + 
 + 
 +===== Configure the Board Support Package ===== 
 + 
 +  * Configure the board support package to specify the properties of this software system by using the **//BSP Editor//** tool. These properties include what interface should be used for //stdio// and //stderr// messages, the memory in which stack and heap should be allocated and whether an operating system or network stack should be included with this BSP. 
 +  * Right click on the **//ADIEvalBoard_bsp//** project and select **//Nios II -> BSP Editor…//** from the right-click menu. 
 + 
 +{{ :resources:fpga:altera:bemicro:eclipsebspmenu.png?600 }} 
 + 
 +The software project provided in this lab does not make use of an operating system. All //stdout//, //stdin// and //stderr// messages will be directed to the //jtag_uart//
 +  * Select the **//Common//** settings view. In the **//Common//** settings view, change the following settings: 
 +    * Select the //**jtag_uart_0**// for //stdin//, //stdout// and //stderr// messages. Note that you have more than one choice. 
 +    * Select **//none//** for the //sys_clk_timer// and //timestamp_timer//
 + 
 +{{ :resources:fpga:altera:cedz:cedzmainsettings.png?800 }} 
 + 
 +The memory used by the design is should be changed from OnChip ram to SRAM. 
 +  * Select **//Linker Script//** tab. 
 +  * Change all possible **//Linker Region Name//** from **//onchip_mem//** to **//sram//**. 
 + 
 +{{ :resources:fpga:altera:ced1z:ced1zlinkersettings8bit.png?800 }} 
 + 
 +  * Select **//File -> Save//** to save the board support package configuration to the //settings.bsp// file. 
 +  * Click the **//Generate//** button to update the BSP. 
 +  * When the generate has completed, select **//File -> Exit//** to close the BSP Editor. 
 + 
 +===== Add source code to the project ===== 
 + 
 +In Windows Explorer locate the project directory which contains a directory called **//Software//**. In Windows Explorer select all the files and directories from the **//Software//** folder and drag and drop them into the Eclipse software project **//ADIEvalBoard//**. 
 + 
 +  * Select all the files and folders and drag them over the **//ADIEvalBoard//** project in the SBT window and drop the files onto the project folder. 
 + 
 +{{ :resources:fpga:altera:ced1z:eclipsecopyfiles.png?800 }} 
 + 
 +  * A dialog box will appear to select the desired operation. Select the option **//Copy files and folders//** and press **//OK//**. 
 + 
 +{{ :resources:fpga:altera:bemicro:image039.png }} 
 + 
 +  * This should cause the source files to be physically copied into the file system location of the software project directory and register these source files within the Eclipse workspace so that they appear in the Project Explorer file listing. 
 + 
 +{{ :resources:fpga:altera:ced1z:eclipseprojectfiles.png }} 
 + 
 +===== Define Application Include Directories ===== 
 + 
 +Application code can be conveniently organized in a directory structure. This section shows how to define these paths in the makefile. 
 +  * In the Eclipse environment double click on **//my_include_paths.in//** to open the file. 
 +  * Click the **//Ctrl//** and **//A//** keys to select all the text. Click the //**Ctrl**// and **//C//** keys to copy all the text. 
 + 
 +{{ :resources:fpga:altera:ced1z:eclipsemyinclude.png?500 }} 
 + 
 +  * Double click on **//Makefile//** to open the file.  
 +  * If you see the message shown here about resources being out of sync, right click on the **//Makefile//** and select **//Refresh//**. 
 + 
 +{{ :resources:fpga:altera:bemicro:eclipsemakefileoutofdate.png }} 
 + 
 +  * Select the line **APP_INCLUDE_DIRS :=** 
 + 
 +{{ :resources:fpga:altera:bemicro:image049.png }} 
 + 
 +  * Click the **//Ctrl//** and **//V//** keys to replace the selected line with the include paths. 
 + 
 +{{ :resources:fpga:altera:ced1z:image051.png }} 
 + 
 +  * Click the **//Ctrl//** and **//S//** keys to save the **//Makefile//**. 
 + 
 +===== Compile, Download and Run the Software Project ===== 
 + 
 +=== 1. Build the Application and BSP Projects === 
 + 
 +  * Right click the **//ADIEvalBoard_bsp//** software project and choose **//Build Project//** to build the board support package. 
 +  * When that build completes, right click the **//ADIEvalBoard//** application software project and choose **//Build Project//** to build the Nios II application. 
 + 
 +These 2 steps will compile and build the associated board support package, then the actual application software project itself. The result of the compilation process will be an //Executable and Linked Format (.elf)// file for the application, the **//ADIEvalBoard.elf//** file. 
 + 
 +{{:resources:fpga:altera:bemicro:eclipsebuildbsp.png?400}} 
 +{{:resources:fpga:altera:bemicro:eclipsebuildproj.png?400}} 
 + 
 +=== 2. Verify the Board Connection === 
 + 
 +The **CED1Z** hardware is designed with a //System ID// peripheral. This peripheral is assigned a unique value based on when the hardware design was last modified in the SOPC Builder tool. SOPC Builder also places this information in the //.sopcinfo// hardware description file. The BSP is built based on the information in the //.sopcinfo// file.  
 + 
 +  * Select the **//ADIEvalBoard//** application software project. 
 +  * Select **//Run -> Run Configurations…//** 
 +  * Select the **//Nios II Hardware//** configuration type. 
 +  * Press the **//New//** button to create a new configuration. 
 +  * Change the configuration name to **//CED1Z//** and click **//Apply//**. 
 +  * On the **//Target Connection//** tab, press the **//Refresh Connections//** button. You may need to expand the window or scroll to the right to see this button. 
 +  * Select the **//jtag_uart_0//** as the **//Byte Stream Device//** for //stdio//
 +  * Check the **//Ignore mismatched system ID option//**. 
 +  * Check the **//Ignore mismatched system timestamp option//**. 
 + 
 +{{:resources:fpga:altera:bemicro:eclipserunconfig.png?400}} 
 +{{:resources:fpga:altera:bemicro:image059.png?400}} 
 + 
 +{{ :resources:fpga:altera:cedz:ignoreid.png?800 }} 
 + 
 +=== 3. Run the Software Project on the Target === 
 + 
 +To run the software project on the Nios II processor: 
 + 
 +   * Before running the the software project, the FPGA located on the CED1Z must be programmed with the Nios II system image. To program the FPGA run the //**ADIEvalBoard/FPGA/program_fpga.bat**// script. 
 +   * Press the **//Run//** button in the **//Run Configurations//** window. This will re-build the software project to create an up–to-date executable and then download the code into memory on the **CED1Z** hardware. The debugger resets the Nios II processor, and it executes the downloaded code. Note that the code is verified in memory before it is executed 
 + 
 +{{ :resources:fpga:altera:cedz:image063.png?500 }} 
 + 
 +<WRAP round help>The code size and start address might be different than the ones displayed in the above screenshot.</WRAP> 
  
 ====== uC-Probe Interface ====== ====== uC-Probe Interface ======
resources/fpga/altera/ced1z/ad7938.1338214857.txt.gz · Last modified: 28 May 2012 16:20 by Andrei Cozma