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; |
| 19 | } // namespace bootstrap_credentials_oem |
| 20 | |
Prithvi Pai | 6b580c7 | 2025-06-05 11:13:34 +0530 | [diff] [blame] | 21 | namespace bios_password |
| 22 | { |
| 23 | constexpr auto cmdSetBiosPassword = 0x36; |
| 24 | constexpr auto cmdGetBiosPassword = 0x37; |
| 25 | } // namespace bios_password |
| 26 | } // namespace ipmi |