NVIDIA DOCA PCC Application Guide

This document provides a DOCA PCC implementation on top of NVIDIA® BlueField® DPU and SuperNIC.

Programmable Congestion Control (PCC) allows users to design and implement their own congestion control (CC) algorithm, giving them the flexibility to work out an optimal solution to handle congestion in their clusters. On BlueField-3 DPU and SuperNIC, PCC is provided as a component of DOCA.

The application leverages the DOCA PCC API to provide users the flexibility to manage allocation of DPA resources according to their requirements.

Typical DOCA application includes App running on host/Arm and App running on DPA. Developers are advised to use the host/Arm application with minimal changes and focus on developing their algorithm and integrating it into the DPA application.

System Design-2.png

DOCA PCC application consists of two parts:

  • Host/Arm app is the control plane. It is responsible for allocating all resources and handover to the DPA app initially, then destroying everything when the DPA app finishes its operation. The host app must always be alive to stay in control while the device app is working.
  • Device/DPA app is the data plane. It is mainly for CC event handler. When the first thread is activated, DPA App initialization is done in the DOCA PCC library by calling the algorithm initialization function implemented by the user in the app. Moreover, the user algorithm execution function is called when a CC event arrives. The user algorithm takes event data as input and performs a calculation using per-flow context and replies with updated rate value and a flag to sent RTT request.

The host/Arm application sends command to DPU/SuperNIC firmware when allocating or destroying resources. CC events are generated by DPU/SuperNIC hardware automatically when sending data or receiving ACK/NACK/CNP/RTT packets, then the device application handles these events by calling the user algorithm. After the DPA application replies to hardware, handling of current event is done and the next event can arrive.

Copy
Copied!
            

/opt/mellanox/doca/applications/pcc/src ├── host │ ├── pcc.c │ ├── pcc_core.c │ └── pcc_core.h └── device ├── algo │ ├── rtt_template.h │ ├── rtt_template_algo_params.h │ ├── rtt_template_ctxt.h │ └── rtt_template.c └── pcc_dev_main.c

The main content of the reference DOCA PCC application files are the following:

  • host/pcc.c – entry point to entire application

  • host/pcc_core.c – host functions to initialize and destroy the PCC application resources, parsers for PCC command line parameters

  • device/pcc_dev_main.c – callbacks for user CC algorithm initialization, user CC algorithm calculation, algorithm parameter change notification

  • device/algo/* – user CC algorithm reference template. Put user algorithm code here.

This application leverages the following DOCA library:

Refer to its respective programming guide for more information.

  • NVIDIA BlueField-3 DPU or SuperNIC is required
  • Firmware 32.38.1000 and higher
  • MFT 4.25 and higher

Installation

Refer to the NVIDIA DOCA Installation Guide for Linux for details on how to install BlueField-related software.

Prerequisites

Enable USER_PROGRAMMABLE_CC in mlxconfig:

Copy
Copied!
            

mlxconfig -y -d /dev/mst/mt41692_pciconf0 set USER_PROGRAMMABLE_CC=1

R eset firmware or power cycle the host to apply the configuration change.

Warning

Make sure to perform graceful shutdown before power cycling the host.

Application Execution

The PCC application is provided in both source and binary forms. The binary is located under /opt/mellanox/doca/applications/pcc/bin/doca_pcc.

  1. Application usage instructions:

    Copy
    Copied!
                

    Usage: doca_pcc [DOCA Flags] [Program Flags]   DOCA Flags: -h, --help Print a help synopsis -v, --version Print program version information -l, --log-level Set the (numeric) log level for the program <10=DISABLE, 20=CRITICAL, 30=ERROR, 40=WARNING, 50=INFO, 60=DEBUG, 70=TRACE> --sdk-log-level Set the SDK (numeric) log level for the program <10=DISABLE, 20=CRITICAL, 30=ERROR, 40=WARNING, 50=INFO, 60=DEBUG, 70=TRACE> -j, --json <path> Parse all command flags from an input json file   Program Flags: -d, --device <IB device names>       IB device name that supports PCC (mandatory). -w, --wait-time <PCC wait time> The duration of the DOCA PCC wait (optional), can provide negative values which means infinity. If not provided then -1 will be chosen.

    Note

    This usage printout can be printed to the command line using the -h (or --help) options:

    Copy
    Copied!
                

    /opt/mellanox/doca/applications/pcc/bin/doca_pcc -h

    Note

    For additional information, refer to section "Command Line Flags".

  2. CLI example for running the application on the BlueField or SuperNIC or the host:

    Copy
    Copied!
                

    /opt/mellanox/doca/applications/pcc/bin/doca_pcc -d mlx5_0

    Warning

    The IB device identifier (mlx5_0) should match the identifier of the desired IB device.

  3. The application also supports a JSON-based deployment mode, in which all command-line arguments are provided through a JSON file:

    Copy
    Copied!
                

    doca_pcc --json [json_file]

    For example:

    Copy
    Copied!
                

    cd /opt/mellanox/doca/applications/pcc/bin ./doca_pcc --json ./pcc_params.json

    Warning

    Before execution, ensure that the used JSON file contains the correct configuration parameters, and especially the PCIe addresses necessary for the deployment.

Command Line Flags

Flag Type
Short Flag
Long Flag/JSON Key
Description
JSON Content
General flags
hhelpPrints a help synopsisN/A
vversionPrints program version informationN/A
llog-levelSets the log level for the program:
  • DISABLE=10
  • CRITICAL=20
  • ERROR=30
  • WARNING=40
  • INFO=50
  • DEBUG=60
  • TRACE=70
    Note

    The application uses a unique logging implementation that makes use of DOCA's logging levels.

N/A
N/Asdk-log-levelSets the log level for the program:
  • DISABLE=10
  • CRITICAL=20
  • ERROR=30
  • WARNING=40
  • INFO=50
  • DEBUG=60
  • TRACE=70
N/A
jjsonParse all command flags from an input JSON fileN/A
Program flags
ddeviceIB device name that supports PCC
Copy
Copied!
            

"device": ""

wwait-time(Optional) In seconds, the duration of the DOCA PCC wait. Negative values mean infinity.
Copy
Copied!
            

"wait-time": -1

Note

Refer to DOCA Arg Parser for more information regarding the supported flags and execution modes.

Troubleshooting

Refer to the NVIDIA DOCA Troubleshooting Guide for any issue encountered with the installation or execution of the DOCA applications.

In addition to providing the application in binary form, the installation also includes all of the application sources and compilation instructions so as to allow modifying the sources and recompiling the application. For more information about the applications, as well as development and compilation tips, refer to the DOCA Applications page.

The sources of the application can be found under the /opt/mellanox/doca/applications/pcc/src directory.

Recompiling All Applications

The applications are all defined under a single meson project, so the default compilation recompiles all the DOCA applications.

To build all the applications together, run:

Copy
Copied!
            

cd /opt/mellanox/doca/applications/ meson /tmp/build ninja -C /tmp/build

Note

doca_pcc is created under /tmp/build/pcc/src/.


Recompiling PCC Application Only

To directly build only the PCC application:

Copy
Copied!
            

cd /opt/mellanox/doca/applications/ meson /tmp/build -Denable_all_applications=false -Denable_pcc=true ninja -C /tmp/build

Note

doca_pcc is created under /tmp/build/pcc/src/.

Alternatively, one can set the desired flags in the meson_options.txt file instead of providing them in the compilation command line:

  1. Edit the following flags in /opt/mellanox/doca/applications/meson_options.txt:

    • Set enable_all_applications to false

    • Set enable_pcc to true

  2. Run the following compilation commands :

    Copy
    Copied!
                

    cd /opt/mellanox/doca/applications/ meson /tmp/build ninja -C /tmp/build

    Note

    doca_pcc is created under /tmp/build/pcc/src/.

Troubleshooting

Refer to the NVIDIA DOCA Troubleshooting Guide for any issue encountered with the compilation of the application.

This section lists the application's configuration flow, explaining the different DOCA function calls and wrappers.

  1. Parse application argument.

    1. Initialize arg parser resources and register DOCA general parameters.

      Copy
      Copied!
                  

      doca_argp_init();

    2. Register PCC application parameters.

      Copy
      Copied!
                  

      register_pcc_params();

    3. Parse the arguments.

      Copy
      Copied!
                  

      doca_argp_start();

      1. Parse DOCA flags.
      2. Parse DOCA PCC parameters.
  2. PCC initialization.

    Copy
    Copied!
                

    pcc_init();

    1. Open DOCA device that supports PCC.
    2. Create DOCA PCC context.
    3. Configure affinity of threads handling CC events.
  3. Start DOCA PCC.

    Copy
    Copied!
                

    doca_pcc_start();

    1. Create PCC process and other resources.
    2. Trigger initialization of PCC on device.
    3. Register the PCC in the DPU/SuperNIC hardware so CC events can be generated and an event handler can be triggered.
  4. Process state monitor loop.

    Copy
    Copied!
                

    doca_pcc_get_process_state(); doca_pcc_wait();

    1. Get the state of the process:

      State Description
      DOCA_PCC_PS_ACTIVE = 0The process handles CC events (only one process is active at a given time)
      DOCA_PCC_PS_STANDBY = 1The process is in standby mode (another process is already ACTIVE)
      DOCA_PCC_PS_DEACTIVATED = 2The process has been deactivated by DPU/SuperNIC firmware and should be destroyed
      DOCA_PCC_PS_ERROR = 3The process is in error state and should be destroyed

    2. Wait on process events from the device.
  5. PCC destroy.

    Copy
    Copied!
                

    doca_pcc_destroy();

    1. Destroy PCC resources. The process stops handling PCC events.
    2. Close DOCA device.
  6. Arg parser destroy.

    Copy
    Copied!
                

    doca_argp_destroy()

The Port Programmable Congestion Control (PPCC) register allows the user to configure and read PCC algorithms and their parameters/counters.

It supports the following functionalities:

  • Enabling different algorithms on different ports

  • Querying information of both algorithms and tunable parameters/counters

  • Changing algorithm parameters without compiling and reburning user image

  • Querying or clearing programmable counters

Usage

The PPCC register can be accessed using a string similar to the following:

Copy
Copied!
            

sudo mlxreg -d /dev/mst/mt41692_pciconf0 -y --get --op "cmd_type=0" --reg_name PPCC --indexes "local_port=1,pnat=0,lp_msb=0,algo_slot=0,algo_param_index=0" sudo mlxreg -d /dev/mst/mt41692_pciconf0 -y --set "cmd_type=1" --reg_name PPCC --indexes "local_port=1,pnat=0,lp_msb=0,algo_slot=0,algo_param_index=0"

Where you must:

  • Set the cmd_type and the indexes

  • Give values for algo_slot, algo_param_index

  • Keep local_port=1, pnat=0, lp_msb=0

  • Keep doca_pcc application running

cmd_type

Description

Method

Index

Input (in --set)

Output

0x0

Get algorithm info

Get

algo_slot

N/A

  • Value – 32-bit algo_num or 0 if no algo is available at this index

  • Text – algorithm description

  • sl_bitmask_support – indicates whether the device supports sl_bitmask logic

0x1

Enable algorithm

Set

sl_bitmask

trace_en

counter_en

N/A

0x2

Disable algorithm

Set

N/A

N/A

0x3

Get algorithm enabling status

Get

N/A

  • Value:

    • 0 – disabled

    • 1 – enabled

  • sl_bitmask – this field allows to apply to specific SLs based on the bitmask

  • sl_bitmask_support – indicates whether the device supports sl_bitmask logic

0x4

Get number of parameters

Get

N/A

  • Value – num of params of algo

0x5

Get parameter information

Get

algo_slot

algo_param_index

N/A

  • param_value1 – default value of param

  • param_value2 – min value of param

  • param_value3 – max value of param

  • prm –

    • 0: read-only

    • 1: read-write

    • 2: read-only but may be cleared using the "get and clear" command

0x6

Get parameter value

Get

N/A

  • Value – param value

0x7

Get and clear parameter

Get

N/A

  • Value – param value

0x8

Set parameter value

Set

Parameter value

N/A

0xA

Bulk get parameters

Get

algo_slot

N/A

  • text_length – param num x 4 bytes

  • text[0]…text[n] – param values

0xB

Bulk set parameters

Set

text_length - param num x 4

text[0]…text[n] - param values

N/A

0xC

Bulk get counters

Get

N/A

  • text_length – counter num x 4 bytes

  • text[0]…text[n] – counter values

0xD

Bulk get and clear counters

Get

N/A

  • text_length – counter num x 4 bytes

  • text[0]…text[n] – counter values

0xE

Get number of counters

Get

N/A

  • Value – num of counters of algo

0xF

Get counter information

Get

algo_slot

algo_param_index

N/A

  • param_value3 – max value of parameter

  • prm –

    • 0: read-only

    • 1: read-write

    • 2: read-only but may be cleared via "get & clear" command

0x10

Get algorithm info array

Get

N/A

N/A

  • text_length – algo slot initialized x 4 bytes

  • text[0]…text[n] – 32-bit algo_num or 0 if no algorithm is available at this slot index


Internal Default Algorithm

The internal default algorithm is used when enhanced connection establishment (ECE) negotiation fails. It is mainly used for backward compatibility and can be disabled using "force mode". Otherwise, users may change doca_pcc_dev_user_algo() in the device app to run a specific algorithm without considering the algorithm negotiation.

The force mode command is per port:

Copy
Copied!
            

sudo mlxreg -d /dev/mst/mt41692_pciconf0 -y --get --op "cmd_type=2" --reg_name PPCC --indexes "local_port=1,pnat=0,lp_msb=0,algo_slot=15,algo_param_index=0" sudo mlxreg -d /dev/mst/mt41692_pciconf0.1 -y --get --op "cmd_type=2" --reg_name PPCC --indexes "local_port=1,pnat=0,lp_msb=0,algo_slot=15,algo_param_index=0"


Counters

Counters are shared on the port and are only enabled on one algo_slot per port. The following command enables the counters while enabling the algorithm according to the algo_slot:

Copy
Copied!
            

sudo mlxreg -d /dev/mst/mt41692_pciconf0 -y --set "cmd_type=1,counter_en=1" --reg_name PPCC --indexes "local_port=1,pnat=0,lp_msb=0,algo_slot=0,algo_param_index=0"

After counters are enabled on the algo_slot, they can be queried using cmd_type 0xC or 0xD.

Copy
Copied!
            

sudo mlxreg -d /dev/mst/mt41692_pciconf0 -y --get --op "cmd_type=12" --reg_name PPCC --indexes "local_port=1,pnat=0,lp_msb=0,algo_slot=0,algo_param_index=0" sudo mlxreg -d /dev/mst/mt41692_pciconf0 -y --get --op "cmd_type=13" --reg_name PPCC --indexes "local_port=1,pnat=0,lp_msb=0,algo_slot=0,algo_param_index=0"


  • /opt/mellanox/doca/applications/pcc/src

  • /opt/mellanox/doca/applications/pcc/bin/pcc_params.json

© Copyright 2023, NVIDIA. Last updated on Feb 9, 2024.