Prithvi Pai | bffaa11 | 2025-07-19 13:57:19 +0530 | [diff] [blame] | 1 | /* |
| 2 | * SPDX-FileCopyrightText: Copyright (c) 2024-2025 NVIDIA CORPORATION & |
| 3 | * AFFILIATES. All rights reserved. |
| 4 | * SPDX-License-Identifier: Apache-2.0 |
| 5 | */ |
| 6 | |
Prithvi Pai | 6b580c7 | 2025-06-05 11:13:34 +0530 | [diff] [blame] | 7 | #pragma once |
| 8 | #include <cstdint> |
| 9 | |
| 10 | namespace ipmi |
| 11 | { |
| 12 | |
| 13 | using Group = uint8_t; |
| 14 | constexpr Group groupNvidia = 0x3C; |
| 15 | |
Prithvi Pai | bffaa11 | 2025-07-19 13:57:19 +0530 | [diff] [blame] | 16 | namespace bootstrap_credentials_oem |
| 17 | { |
| 18 | constexpr auto cmdGetUsbVendorIdProductId = 0x30; |
Prithvi Pai | 6bf35ee | 2025-07-24 12:05:10 +0530 | [diff] [blame] | 19 | constexpr auto cmdGetUsbSerialNumber = 0x31; |
Prithvi Pai | 6823fd4 | 2025-08-05 08:35:21 +0530 | [diff] [blame] | 20 | constexpr auto cmdGetRedfishHostName = 0x32; |
Prithvi Pai | 529d31c | 2025-08-14 20:44:59 +0530 | [diff] [blame] | 21 | constexpr auto cmdGetIpmiChannelRfHi = 0x33; |
Prithvi Pai | bffaa11 | 2025-07-19 13:57:19 +0530 | [diff] [blame] | 22 | } // namespace bootstrap_credentials_oem |
| 23 | |
Prithvi Pai | 6b580c7 | 2025-06-05 11:13:34 +0530 | [diff] [blame] | 24 | namespace bios_password |
| 25 | { |
| 26 | constexpr auto cmdSetBiosPassword = 0x36; |
| 27 | constexpr auto cmdGetBiosPassword = 0x37; |
| 28 | } // namespace bios_password |
| 29 | } // namespace ipmi |