blob: d305973bb72972a3542ceac723b4cf7f2a25df06 [file] [log] [blame]
Prithvi Paibffaa112025-07-19 13:57:19 +05301/*
2 * SPDX-FileCopyrightText: Copyright (c) 2024-2025 NVIDIA CORPORATION &
3 * AFFILIATES. All rights reserved.
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
Prithvi Pai6b580c72025-06-05 11:13:34 +05307#pragma once
8#include <cstdint>
9
10namespace ipmi
11{
12
13using Group = uint8_t;
14constexpr Group groupNvidia = 0x3C;
15
Prithvi Paibffaa112025-07-19 13:57:19 +053016namespace bootstrap_credentials_oem
17{
18constexpr auto cmdGetUsbVendorIdProductId = 0x30;
19} // namespace bootstrap_credentials_oem
20
Prithvi Pai6b580c72025-06-05 11:13:34 +053021namespace bios_password
22{
23constexpr auto cmdSetBiosPassword = 0x36;
24constexpr auto cmdGetBiosPassword = 0x37;
25} // namespace bios_password
26} // namespace ipmi