mirror of
https://github.com/acidanthera/audk.git
synced 2025-08-21 01:28:13 +02:00
Add net function definitions for OEM/Non-IPMI group request and response Signed-off-by: Nickle Wang <nicklew@nvidia.com> Cc: Abner Chang <abner.chang@amd.com> Cc: Abdul Lateef Attar <AbdulLateef.Attar@amd.com> Cc: Nick Ramirez <nramirez@nvidia.com> Reviewed-by: Abner Chang <abner.chang@amd.com>
19 lines
424 B
C
19 lines
424 B
C
/** @file
|
|
IPMI 2.0 definitions from the IPMI Specification Version 2.0, Revision 1.1.
|
|
|
|
Copyright (c) 2024, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
|
|
|
|
SPDX-License-Identifier: BSD-2-Clause-Patent
|
|
**/
|
|
|
|
#ifndef IPMI_NET_FN_OEM_H_
|
|
#define IPMI_NET_FN_OEM_H_
|
|
|
|
//
|
|
// Net function definition for OEM/Group command
|
|
//
|
|
#define IPMI_NETFN_OEM 0x2E
|
|
#define IPMI_NETFN_OEM_GROUP 0x2F
|
|
|
|
#endif
|