blob: 17ff34fb9e3a0ba3c95403dcc585a59250ecde38 [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;
Prithvi Pai6bf35ee2025-07-24 12:05:10 +053019constexpr auto cmdGetUsbSerialNumber = 0x31;
Prithvi Paibffaa112025-07-19 13:57:19 +053020} // namespace bootstrap_credentials_oem
21
Prithvi Pai6b580c72025-06-05 11:13:34 +053022namespace bios_password
23{
24constexpr auto cmdSetBiosPassword = 0x36;
25constexpr auto cmdGetBiosPassword = 0x37;
26} // namespace bios_password
27} // namespace ipmi