Nios® V Embedded Processor Design Handbook

ID 726952
Date 4/04/2022
Public

A newer version of this document is available. Customers should click here to go to the newest version.

Document Table of Contents

5.6.1.2. Software Design Flow

This section provides the design flow to generate and build the Nios V processor software project. To ensure a streamlined build flow, you are encouraged to create similar directory tree in your design project. The following software design flow is based on this directory tree.

To create the software project directory tree, follow these steps:

1. In your design project folder, create a folder called software.

2. In the software folder, create two folders called app and bsp.

Figure 74. Software Project Directory Tree

Creating the Application BSP Project

To launch the BSP Editor, follow these steps:

  1. In the Platform Designer window, select File > New BSP. The Create New BSP windows appears.
  2. For BSP setting file, navigate to the software/bsp folder and name the BSP as settings.bsp.

    BSP path: <project directory>/software/bsp/settings.bsp

  3. For System file (qsys or sopcinfo), select the Nios V/m processor Platform Designer system (.qsys) file.
  4. For Quartus project, select the Quartus Project File.
  5. For Revision, select the correct revision.
  6. For CPU name, select the Nios V/m processor.
  7. Select the Operating system as Altera HAL.
  8. Click Create to create the BSP file.
    Figure 75. Create New BSP Window

Configuring the BSP Editor and Generating the BSP Project

  1. Go to Main > Settings > Advanced > hal.linker.
  2. Enable the following settings:
    • allow_code_at_reset
    • enable_alt_load
    • enable_alt_load_copy_rwdata
    Figure 76. hal.linker Settings
  3. Click the BSP Linker Script tab in the BSP Editor
  4. Set all the Linker Section Name list to the OCRAM.
  5. Click Generate BSP. Make sure the BSP generation is successful.
  6. Close the BSP Editor

Generating the Application Project File

  1. Navigate to the software/app folder and create your user application source code.
  2. Launch the Nios V Command Shell.
  3. Execute the command below to generate the user application CMakeLists.txt.
niosv-app --app-dir=software/app --bsp-dir=software/bsp \
    --srcs=software/app/<user application>

Building the Application Project

You can choose to build the application project using Eclipse Embedded CDT, or through the command line interface (CLI).

For more information about Eclipse Embedded CDT, refer to Related Information.

With the CLI, the user application project can be built using the following steps:

  1. Setup the PATH variables, please refer to Setting Up Open-Source Tools.
  2. Execute the command below to build the user application.
    cmake -G "Unix Makefiles" -B software/app/build -S software/app
    make -C software/app/build
  3. The user application (.elf) file is created in software/app/build folder.

Generating the HEX File

A HEX file must be generated from the ELF file so that the HEX file can be used for memory initialization.

  1. Launch the Nios V Command Shell.
  2. For Nios® V processor application boot from OCRAM, use the following command line to convert the ELF to HEX for your application. This command creates the user application (ram.hex) file.
    elf2hex software/app/build/<user_application>.elf -o ram.hex \
        -b <base address of OCRAM> -w <data width of OCRAM> \
        -e <end address of OCRAM>
  3. Recompile the hardware design to memory-initialize the ram.hex into the OCRAM.