| Prithvi Pai | bffaa11 | 2025-07-19 13:57:19 +0530 | [diff] [blame] | 1 | /* |
| Patrick Williams | 2be0301 | 2025-10-09 20:32:27 -0400 | [diff] [blame^] | 2 | * SPDX-FileCopyrightText: Copyright OpenBMC Authors |
| Prithvi Pai | bffaa11 | 2025-07-19 13:57:19 +0530 | [diff] [blame] | 3 | * SPDX-License-Identifier: Apache-2.0 |
| 4 | */ |
| 5 | |
| Prithvi Pai | 6b580c7 | 2025-06-05 11:13:34 +0530 | [diff] [blame] | 6 | #pragma once |
| 7 | #include <cstdint> |
| 8 | |
| 9 | namespace ipmi |
| 10 | { |
| 11 | |
| 12 | using Group = uint8_t; |
| 13 | constexpr Group groupNvidia = 0x3C; |
| 14 | |
| Prithvi Pai | bffaa11 | 2025-07-19 13:57:19 +0530 | [diff] [blame] | 15 | namespace bootstrap_credentials_oem |
| 16 | { |
| 17 | constexpr auto cmdGetUsbVendorIdProductId = 0x30; |
| Prithvi Pai | 6bf35ee | 2025-07-24 12:05:10 +0530 | [diff] [blame] | 18 | constexpr auto cmdGetUsbSerialNumber = 0x31; |
| Prithvi Pai | 6823fd4 | 2025-08-05 08:35:21 +0530 | [diff] [blame] | 19 | constexpr auto cmdGetRedfishHostName = 0x32; |
| Prithvi Pai | 529d31c | 2025-08-14 20:44:59 +0530 | [diff] [blame] | 20 | constexpr auto cmdGetIpmiChannelRfHi = 0x33; |
| Prithvi Pai | c1e7b5c | 2025-09-01 13:13:15 +0530 | [diff] [blame] | 21 | constexpr auto cmdGetRedfishServiceUUID = 0x34; |
| Prithvi Pai | 400695c | 2025-09-01 14:02:20 +0530 | [diff] [blame] | 22 | constexpr auto cmdGetRedfishServicePort = 0x35; |
| Prithvi Pai | bffaa11 | 2025-07-19 13:57:19 +0530 | [diff] [blame] | 23 | } // namespace bootstrap_credentials_oem |
| 24 | |
| Prithvi Pai | 6b580c7 | 2025-06-05 11:13:34 +0530 | [diff] [blame] | 25 | namespace bios_password |
| 26 | { |
| 27 | constexpr auto cmdSetBiosPassword = 0x36; |
| 28 | constexpr auto cmdGetBiosPassword = 0x37; |
| 29 | } // namespace bios_password |
| 30 | } // namespace ipmi |