blob: 5cf0a7b8e56eb624434ee26497753c9262abcc6d [file] [log] [blame]
/*
* SPDX-FileCopyrightText: Copyright (c) 2024-2025 NVIDIA CORPORATION &
* AFFILIATES. All rights reserved.
* SPDX-License-Identifier: Apache-2.0
*/
#pragma once
#include <cstdint>
namespace ipmi
{
using Group = uint8_t;
constexpr Group groupNvidia = 0x3C;
namespace bootstrap_credentials_oem
{
constexpr auto cmdGetUsbVendorIdProductId = 0x30;
constexpr auto cmdGetUsbSerialNumber = 0x31;
constexpr auto cmdGetRedfishHostName = 0x32;
} // namespace bootstrap_credentials_oem
namespace bios_password
{
constexpr auto cmdSetBiosPassword = 0x36;
constexpr auto cmdGetBiosPassword = 0x37;
} // namespace bios_password
} // namespace ipmi