blob: 064a87e4f145691cf5aaec244c66e6f2eb5c98d9 [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 Pai6823fd42025-08-05 08:35:21 +053020constexpr auto cmdGetRedfishHostName = 0x32;
Prithvi Pai529d31c2025-08-14 20:44:59 +053021constexpr auto cmdGetIpmiChannelRfHi = 0x33;
Prithvi Paic1e7b5c2025-09-01 13:13:15 +053022constexpr auto cmdGetRedfishServiceUUID = 0x34;
Prithvi Paibffaa112025-07-19 13:57:19 +053023} // namespace bootstrap_credentials_oem
24
Prithvi Pai6b580c72025-06-05 11:13:34 +053025namespace bios_password
26{
27constexpr auto cmdSetBiosPassword = 0x36;
28constexpr auto cmdGetBiosPassword = 0x37;
29} // namespace bios_password
30} // namespace ipmi