]> git.proxmox.com Git - mirror_edk2.git/blame - MdeModulePkg/Library/DxeIpmiLibIpmiProtocol/DxeIpmiLibIpmiProtocol.c
MdeModulePkg/FaultTolerantWriteDxe: implement standalone MM version
[mirror_edk2.git] / MdeModulePkg / Library / DxeIpmiLibIpmiProtocol / DxeIpmiLibIpmiProtocol.c
CommitLineData
ddff9ce3
DB
1/** @file\r
2 Implementation of Ipmi Library in DXE Phase for SMS.\r
3\r
4 Copyright (c) 2009 - 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 <PiDxe.h>\r
16#include <Protocol/IpmiProtocol.h>\r
17#include <Library/UefiBootServicesTableLib.h>\r
18#include <Library/DebugLib.h>\r
19\r
20IPMI_PROTOCOL *mIpmiProtocol = NULL;\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\r
53 if (mIpmiProtocol == NULL) {\r
54 Status = gBS->LocateProtocol (\r
55 &gIpmiProtocolGuid,\r
56 NULL,\r
57 (VOID **) &mIpmiProtocol\r
58 );\r
59 if (EFI_ERROR (Status)) {\r
60 //\r
61 // Dxe Ipmi Protocol is not installed. So, IPMI device is not present.\r
62 //\r
63 DEBUG ((EFI_D_ERROR, "IpmiSubmitCommand in Dxe Phase under SMS Status - %r\n", Status));\r
64 return EFI_NOT_FOUND;\r
65 }\r
66 }\r
67\r
68 Status = mIpmiProtocol->IpmiSubmitCommand (\r
69 mIpmiProtocol,\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