What can I help you with?
NVIDIA BlueField BMC Software v25.04

Power Capping

Info

Power capping is supported on NVIDIA® BlueField®-3 only.

It is possible to adjust the system for reduced power consumption using the BMC. It is important to note that changes to power capping configuration only takes effect after BlueField reboot.

Getting General Power Capping Information

Control information:

Copy
Copied!
            

curl -k -u root:'<password>' -X GET https://<bmc_ip>/redfish/v1/Chassis/Card1/Controls/PowerLimit_0

Output example:

Copy
Copied!
            

{ "@odata.id": "/redfish/v1/Chassis/Card1/Controls/PowerLimit_0", "@odata.type": "#Control.v1_3_0.Control", "AllowableMax": 300, "AllowableMin": 200, "ControlMode": "Manual", "ControlType": "Power", "Id": "PowerLimit_0", "Name": "System Power Control", "SetPoint": 10, "SetPointUnits": "%", "Status": { "Health": "OK", "HealthRollup": "OK", "State": "Enabled" } }


Enabling/Disabling Adjustment of Power Capping

Copy
Copied!
            

curl -k -u root:'<password>' -H "Content-Type: application/json" -X PATCH https://<bmc_ip>/redfish/v1/Chassis/Card1/Controls/PowerLimit_0 -d '{"ControlMode":<"Manual"/"Disabled">}'

Info

The ability to adjust power capping is disabled by default.


Setting Power Allocation Percentage

Copy
Copied!
            

curl -k -u root:'<password>' -H "Content-Type: application/json" -X PATCH https://<bmc_ip>/redfish/v1/Chassis/Card1/Controls/PowerLimit_0 -d '{"SetPoint": <val>}'

Where val is the percentage of maximum capacity in Watts (AllowableMax).

Note

If user configuration is lower than the minimum capacity power or higher than the maximum capacity power, then BMC will return error.


Getting Power Capping Status

Copy
Copied!
            

ipmitool raw 0x32 0xc4


Enabling/Disabling Adjustment of Power Capping

Copy
Copied!
            

ipmitool raw 0x32 0xc5 <val>

Where val:

  • 0 – disable

  • 1 – enable

Note

Changeable only from BMC prompt using admin account.

Info

The ability to adjust power capping is disabled by default.


Getting Power Capping Percentage

Copy
Copied!
            

ipmitool raw 0x32 0xc8


Setting Power Capping Percentage

Copy
Copied!
            

ipmitool raw 0x32 0xc9 <val>

Where val is the value in percentage [0:100].

Note

Changeable only from BMC prompt using admin account.

For example, if the maximum power capacity is 120 Watts, then set the system to work at 60 Watts (50%) using the following command:

Copy
Copied!
            

ipmitool raw 0x32 0xc9 50


Getting Maximum Power Capacity

Copy
Copied!
            

ipmitool raw 0x32 0xc6

Info

Power is given in watts.


Getting Minimum Power Capacity

Copy
Copied!
            

ipmitool raw 0x32 0xca

Info

Power is given in watts.


© Copyright 2025, NVIDIA. Last updated on May 5, 2025.