]> git.proxmox.com Git - mirror_edk2.git/blame - MdeModulePkg/Library/PeiIpmiLibIpmiPpi/PeiIpmiLibIpmiPpi.c
MdeModulePkg/ResetUtilityLib: Fix GCC build failure
[mirror_edk2.git] / MdeModulePkg / Library / PeiIpmiLibIpmiPpi / PeiIpmiLibIpmiPpi.c
CommitLineData
0f2bca76
DB
1/** @file\r
2 Implementation of Ipmi Library in PEI Phase for SMS.\r
3\r
4 Copyright (c) 2014 - 2015, Intel Corporation. All rights reserved.<BR>\r
5 This program and the accompanying materials\r
6 are licensed and made available under the terms and conditions of the BSD License\r
7 which accompanies this distribution. The full text of the license may be found at\r
8 http://opensource.org/licenses/bsd-license.php.\r
9\r
10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
12\r
13**/\r
14\r
15#include <PiPei.h>\r
16#include <Ppi/IpmiPpi.h>\r
17#include <Library/IpmiLib.h>\r
18#include <Library/PeiServicesLib.h>\r
19#include <Library/DebugLib.h>\r
20\r
21\r
22/**\r
23 This service enables submitting commands via Ipmi.\r
24\r
25 @param[in] NetFunction Net function of the command.\r
26 @param[in] Command IPMI Command.\r
27 @param[in] RequestData Command Request Data.\r
28 @param[in] RequestDataSize Size of Command Request Data.\r
29 @param[out] ResponseData Command Response Data. The completion code is the first byte of response data.\r
30 @param[in, out] ResponseDataSize Size of Command Response Data.\r
31\r
32 @retval EFI_SUCCESS The command byte stream was successfully submit to the device and a response was successfully received.\r
33 @retval EFI_NOT_FOUND The command was not successfully sent to the device or a response was not successfully received from the device.\r
34 @retval EFI_NOT_READY Ipmi Device is not ready for Ipmi command access.\r
35 @retval EFI_DEVICE_ERROR Ipmi Device hardware error.\r
36 @retval EFI_TIMEOUT The command time out.\r
37 @retval EFI_UNSUPPORTED The command was not successfully sent to the device.\r
38 @retval EFI_OUT_OF_RESOURCES The resource allcation is out of resource or data size error.\r
39**/\r
40EFI_STATUS\r
41EFIAPI\r
42IpmiSubmitCommand (\r
43 IN UINT8 NetFunction,\r
44 IN UINT8 Command,\r
45 IN UINT8 *RequestData,\r
46 IN UINT32 RequestDataSize,\r
47 OUT UINT8 *ResponseData,\r
48 IN OUT UINT32 *ResponseDataSize\r
49 )\r
50{\r
51 EFI_STATUS Status;\r
52 PEI_IPMI_PPI *IpmiPpi;\r
53\r
54 Status = PeiServicesLocatePpi(\r
55 &gPeiIpmiPpiGuid,\r
56 0,\r
57 NULL,\r
58 (VOID **) &IpmiPpi\r
59 );\r
60 if (EFI_ERROR (Status)) {\r
61 //\r
62 // Ipmi Ppi is not installed. So, IPMI device is not present.\r
63 //\r
64 DEBUG ((EFI_D_ERROR, "IpmiSubmitCommand in Pei Phase under SMS Status - %r\n", Status));\r
65 return EFI_NOT_FOUND;\r
66 }\r
67\r
68 Status = IpmiPpi->IpmiSubmitCommand (\r
69 IpmiPpi,\r
70 NetFunction,\r
71 Command,\r
72 RequestData,\r
73 RequestDataSize,\r
74 ResponseData,\r
75 ResponseDataSize\r
76 );\r
77 if (EFI_ERROR (Status)) {\r
78 return Status;\r
79 }\r
80 return EFI_SUCCESS;\r
81}\r