1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123
|
/** @file
IPMI Command - NetFnChassis NULL instance library.
Copyright (c) 2018 - 2021, Intel Corporation. All rights reserved.<BR>
Copyright (C) 2023 Advanced Micro Devices, Inc. All rights reserved.<BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#include <Uefi.h>
#include <IndustryStandard/Ipmi.h>
/**
This function gets chassis capability.
@param[out] GetChassisCapabilitiesResponse Gets chassis capability command response.
@retval EFI_UNSUPPORTED Unsupported in the NULL lib.
**/
EFI_STATUS
EFIAPI
IpmiGetChassisCapabilities (
OUT IPMI_GET_CHASSIS_CAPABILITIES_RESPONSE *GetChassisCapabilitiesResponse
)
{
return RETURN_UNSUPPORTED;
}
/**
This function gets chassis status.
@param[out] GetChassisStatusResponse The get chassis status command response.
@retval EFI_UNSUPPORTED Unsupported in the NULL lib.
**/
EFI_STATUS
EFIAPI
IpmiGetChassisStatus (
OUT IPMI_GET_CHASSIS_STATUS_RESPONSE *GetChassisStatusResponse
)
{
return RETURN_UNSUPPORTED;
}
/**
This function sends chassis control request.
@param[in] ChassisControlRequest The chassis control request.
@param[out] CompletionCode The command completion code.
@retval EFI_UNSUPPORTED Unsupported in the NULL lib.
**/
EFI_STATUS
EFIAPI
IpmiChassisControl (
IN IPMI_CHASSIS_CONTROL_REQUEST *ChassisControlRequest,
OUT UINT8 *CompletionCode
)
{
return RETURN_UNSUPPORTED;
}
/**
This function sets power restore policy.
@param[in] ChassisControlRequest The set power restore policy control
command request.
@param[out] ChassisControlResponse The response of power restore policy.
@retval EFI_UNSUPPORTED Unsupported in the NULL lib.
**/
EFI_STATUS
EFIAPI
IpmiSetPowerRestorePolicy (
IN IPMI_SET_POWER_RESTORE_POLICY_REQUEST *ChassisControlRequest,
OUT IPMI_SET_POWER_RESTORE_POLICY_RESPONSE *ChassisControlResponse
)
{
return RETURN_UNSUPPORTED;
}
/**
This function sets system boot option.
@param[in] BootOptionsRequest Set system boot option request.
@param[out] BootOptionsResponse The response of set system boot
option request.
@retval EFI_UNSUPPORTED Unsupported in the NULL lib.
**/
EFI_STATUS
EFIAPI
IpmiSetSystemBootOptions (
IN IPMI_SET_BOOT_OPTIONS_REQUEST *BootOptionsRequest,
OUT IPMI_SET_BOOT_OPTIONS_RESPONSE *BootOptionsResponse
)
{
return RETURN_UNSUPPORTED;
}
/**
This function gets system boot option.
@param[in] BootOptionsRequest Get system boot option request.
@param[out] BootOptionsResponse The response of get system boot
option request.
@retval EFI_UNSUPPORTED Unsupported in the NULL lib.
**/
EFI_STATUS
EFIAPI
IpmiGetSystemBootOptions (
IN IPMI_GET_BOOT_OPTIONS_REQUEST *BootOptionsRequest,
OUT IPMI_GET_BOOT_OPTIONS_RESPONSE *BootOptionsResponse
)
{
return RETURN_UNSUPPORTED;
}
|