Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Table of Contents

Table of Contents
maxLevel3
outlinetrue
excludeTable of Contents
stylenone



Design Overview


This module demonstrates:
  • Boot RPU1 only
    • RPU1 OS: Bare-metal
  • Bare-metal performance monitor application
    • Reads PS APM counters to measure CCI, Core Switch and DDR throughput and latency, then prints them to UART1




Design Components


This module requires the following components:
  • petalinux_bsp
  • perfapm-ctl


Build Flow Tutorials


This tutorial uses both Vitis and PetaLinux tools. It is recommended to use separate shells for each of the tools.

Perfapm-ctl Application

  • Create a new Vitis workspace.

    Code Block
    languagebash
    themeMidnight
    % cd $TRD_HOME/workspaces/ws_perfapm-ctl
    % xsdk -workspace . &


  • Click 'Import Project' from the welcome screen, Choose 'Eclipse workspace' and select next.
  • Uncheck 'copy projects into workspace', browse to the current working directory and make sure the perfapmperfapm-ctl and  projects are selected. Click Finish.

Image Removed      Image Added

  • Double click on 'perfapm-serverctl_system.sprj' and close the dialog box for platform.

Image RemovedImage Added

  • from the top menu tab choose 'File' →  'New platform', enter Project name as 'hw_platform_0' and select 'Next'.

    Image RemovedImage Added

  • Choose 'Create from hardware specification (XSA)' and browse to the xsa file in the 'hwfile' directory of 'ws_heartbeat workspace',
  • Select operating system as 'standalone' and processor as 'psu_cortexr5_1' and click Finish.

Image RemovedImage Added

  • In the System Project Settings tab, Add the new custom platform generated from xsa. Click Yes on the dialog box, when prompted to change the platform.

Image RemovedImage Added

  • double click on 'perfapm-ctl.prj' in the Elplorer tab, and click 'Navigate to BSP settings'

Image RemovedImage Added

  • modify BSP settings for Cortexr5_1 processor

Image RemovedImage Added

  • under overview panel enable libraries 'libmetal' and 'openamp'.

                                       

  • under standalone sttings modify 'stdin/stdout' to 'psu_uart_1', select ok.

                                      

  • Right-click on the perfapm-ctl system and select 'Build Project'.

                                                          Image RemovedImage Added

  • Copy the generated perfapm-ctl executable into the PetaLinux BSP.
Code Block
themeMidnight
% cp perfapm-ctl/Debug/perfapm-ctl.elf $TRD_HOME/petalinux/bsp/images/linux


PetaLinux BSP


This tutorial shows how to build a boot image that includes the perfapm-ctl application using the PetaLinux build tool. This step assumes you have run through the PetaLinux build in DM1 previously
  • Create a boot image

    Code Block
    languagebash
    themeMidnight
    % cd $TRD_HOME/petalinux/bsp/images/linux
    % petalinux-package --boot --bif=../../project-spec/boot/dm3.bif --force


  • Copy the generated boot image to the dm3 SD card directory

    Code Block
    languagebash
    themeMidnight
    % mkdir -p $TRD_HOME/sd_card/dm3
    % cp BOOT.BIN $TRD_HOME/sd_card/dm3



Run Flow Tutorial

  • See here for board setup instructions.
  • Copy all the files from the $TRD_HOME/sd_card/dm3 SD card directory to a FAT formatted SD card.
  • Power on the board to boot the images; make sure all power rail LEDs are lit green (Note: DS1 / FPGA_INIT_B LED remains Red as there is no bit stream to configure the FPGA).
  • The user can now see FSBL prints on UART-0 and prints from bare-metal perfapm-ctl application can be viewed on UART-1.
  • When prompted, user need to press 'Y' to turn on a dummy traffic generator that reads from OCM

    Code Block
    themeMidnight
    Turn on traffic generator? Enter 'Y' or 'N':


  • View the application prints on UART-1 as shown in the pictures:

    Code Block
    languagebash
    themeMidnight
    |----------------------------------------------------------------------|
    |                      Performance Monitor APP                         |
    |----------------------------------------------------------------------|
    |Slot                |Write Byte Cnt |Read Byte Cnt |Total RW Byte Cnt |
    |----------------------------------------------------------------------|
    |DDR Slot1           |             0 |            0 |                0 |
    |DDR Slot2           |             0 |            0 |                0 |
    |DDR Slot3           |             0 |            0 |                0 |
    |DDR Slot4           |             0 |            0 |                0 |
    |DDR Slot5           |             0 |            0 |                0 |
    |OCM APM             |             0 |        20480 |                0 |
    |LPD_FPD             |             0 |          320 |                0 |
    |----------------------------------------------------------------------|
    




...