]> git.proxmox.com Git - mirror_edk2.git/blame - IntelFrameworkPkg/Include/Ppi/Smbus.h
updated comments per review comments.
[mirror_edk2.git] / IntelFrameworkPkg / Include / Ppi / Smbus.h
CommitLineData
79964ac8 1/** @file\r
4a71b21a 2 This file declares Smbus PPI which provides the basic I/O interfaces that a PEIM \r
3 uses to access its SMBus controller and the slave devices attached to it.\r
79964ac8 4\r
2bbaeb0d 5 Copyright (c) 2007 - 2009, Intel Corporation\r
79964ac8 6 All rights reserved. This program and the accompanying materials\r
7 are licensed and made available under the terms and conditions of the BSD License\r
8 which accompanies this distribution. The full text of the license may be found at\r
9 http://opensource.org/licenses/bsd-license.php\r
10\r
11 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
12 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
13\r
79964ac8 14 @par Revision Reference:\r
15 This PPI is defined in Framework of EFI SmBus PPI spec.\r
16 Version 0.9\r
17\r
18**/\r
19\r
4ebb0d9e 20#ifndef _PEI_SMBUS_PPI_H_\r
21#define _PEI_SMBUS_PPI_H_\r
79964ac8 22\r
b80fbe85 23#include <PiPei.h>\r
3f3181b4 24#include <Ppi/Smbus2.h>\r
79964ac8 25\r
26#define EFI_PEI_SMBUS_PPI_GUID \\r
27 { \\r
28 0xabd42895, 0x78cf, 0x4872, {0x84, 0x44, 0x1b, 0x5c, 0x18, 0xb, 0xfb, 0xda } \\r
29 }\r
30\r
31typedef struct _EFI_PEI_SMBUS_PPI EFI_PEI_SMBUS_PPI;\r
32\r
33/**\r
34 Executes an SMBus operation to an SMBus controller.\r
35\r
516e9f28 36 @param[in] PeiServices A pointer to the system PEI Services Table.\r
37 @param[in] This A pointer to the EFI_PEI_SMBUS_PPI instance.\r
38 @param[in] SlaveAddress The SMBUS hardware address to which the SMBUS\r
39 device is preassigned or allocated.\r
40 @param[in] Command This command is transmitted by the SMBus host\r
41 controller to the SMBus slave device and the interpretation is\r
42 SMBus slave device specific.\r
43 @param[in] Operation Signifies which particular SMBus hardware protocol\r
44 instance that it will use to execute the SMBus transactions.\r
45 @param[in] PecCheck Defines if Packet Error Code (PEC) checking is required\r
46 for this operation.\r
47 @param[in, out] Length Signifies the number of bytes that this operation will do.\r
48 @param[in, out] Buffer Contains the value of data to execute to the SMBus slave device.\r
79964ac8 49\r
50 @retval EFI_SUCCESS The last data that was returned from the access\r
51 matched the poll exit criteria.\r
9ca1b12e 52 @retval EFI_CRC_ERROR The checksum is not correct (PEC is incorrect).\r
79964ac8 53 @retval EFI_TIMEOUT Timeout expired before the operation was completed.\r
54 Timeout is determined by the SMBus host controller device.\r
55 @retval EFI_OUT_OF_RESOURCES The request could not be completed\r
56 due to a lack of resources.\r
57 @retval EFI_DEVICE_ERROR The request was not completed because\r
58 a failure reflected in the Host Status Register bit.\r
59 @retval EFI_INVALID_PARAMETER Operation is not defined in EFI_SMBUS_OPERATION.\r
9ca1b12e 60 @retval EFI_INVALID_PARAMETER Length/Buffer is NULL for operations except for EfiSmbusQuickRead and\r
79964ac8 61 EfiSmbusQuickWrite. Length is outside the range of valid values.\r
62 @retval EFI_UNSUPPORTED The SMBus operation or PEC is not supported.\r
63 @retval EFI_BUFFER_TOO_SMALL Buffer is not sufficient for this operation.\r
64\r
65**/\r
66typedef\r
67EFI_STATUS\r
69686d56 68(EFIAPI *EFI_PEI_SMBUS_PPI_EXECUTE_OPERATION)(\r
79964ac8 69 IN EFI_PEI_SERVICES **PeiServices,\r
700a7869 70 IN EFI_PEI_SMBUS_PPI *This,\r
79964ac8 71 IN EFI_SMBUS_DEVICE_ADDRESS SlaveAddress,\r
72 IN EFI_SMBUS_DEVICE_COMMAND Command,\r
73 IN EFI_SMBUS_OPERATION Operation,\r
74 IN BOOLEAN PecCheck,\r
75 IN OUT UINTN *Length,\r
76 IN OUT VOID *Buffer\r
77 );\r
78\r
79964ac8 79/**\r
80 CallBack function can be registered in EFI_PEI_SMBUS_PPI_NOTIFY.\r
81\r
2a924b00 82 This function is user-defined and will called when the SlaveAddress/Data pair happens.\r
83\r
516e9f28 84 @param[in] PeiServices A pointer to the system PEI Services Table.\r
85 @param[in] This A pointer to the EFI_PEI_SMBUS_PPI instance.\r
86 @param[in] SlaveAddress The SMBUS hardware address to which the SMBUS\r
87 device is preassigned or allocated.\r
88 @param[in] Data Data of the SMBus host notify command that\r
89 the caller wants to be called.\r
79964ac8 90\r
9ca1b12e 91 @return Status Code returned by callback function.\r
79964ac8 92\r
93**/\r
94typedef\r
95EFI_STATUS\r
69686d56 96(EFIAPI *EFI_PEI_SMBUS_NOTIFY_FUNCTION)(\r
79964ac8 97 IN EFI_PEI_SERVICES **PeiServices,\r
700a7869 98 IN EFI_PEI_SMBUS_PPI *SmbusPpi,\r
79964ac8 99 IN EFI_SMBUS_DEVICE_ADDRESS SlaveAddress,\r
100 IN UINTN Data\r
101 );\r
102\r
103/**\r
104 The ArpDevice() function enumerates the entire bus or enumerates a specific\r
105 device that is identified by SmbusUdid.\r
106\r
516e9f28 107 @param[in] PeiServices A pointer to the system PEI Services Table.\r
108 @param[in] This A pointer to the EFI_PEI_SMBUS_PPI instance.\r
109 @param[in] ArpAll A Boolean expression that indicates if the host drivers need\r
110 to enumerate all the devices or enumerate only the device that is identified\r
111 by SmbusUdid. If ArpAll is TRUE, SmbusUdid and SlaveAddress are optional.\r
112 If ArpAll is FALSE, ArpDevice will enumerate SmbusUdid and the address\r
113 will be at SlaveAddress.\r
114 @param[in] SmbusUdid The targeted SMBus Unique Device Identifier (UDID).\r
115 The UDID may not exist for SMBus devices with fixed addresses.\r
116 @param[in, out] SlaveAddress The new SMBus address for the slave device for\r
117 which the operation is targeted.\r
2a924b00 118 This address may be NULL.\r
79964ac8 119\r
120 @retval EFI_SUCCESS The SMBus slave device address was set.\r
121 @retval EFI_INVALID_PARAMETER SlaveAddress is NULL.\r
122 @retval EFI_OUT_OF_RESOURCES The request could not be completed\r
123 due to a lack of resources.\r
124 @retval EFI_TIMEOUT The SMBus slave device did not respond.\r
125 @retval EFI_DEVICE_ERROR The request was not completed because the transaction failed.\r
2a924b00 126 @retval EFI_UNSUPPORTED ArpDevice() are not implemented by this PEIM. \r
127 This return value is not defined in Framwork Specification.\r
128 This return value had been intruduced in PI Specification.\r
79964ac8 129\r
130**/\r
131typedef\r
132EFI_STATUS\r
69686d56 133(EFIAPI *EFI_PEI_SMBUS_PPI_ARP_DEVICE)(\r
79964ac8 134 IN EFI_PEI_SERVICES **PeiServices,\r
700a7869 135 IN EFI_PEI_SMBUS_PPI *This,\r
79964ac8 136 IN BOOLEAN ArpAll,\r
137 IN EFI_SMBUS_UDID *SmbusUdid, OPTIONAL\r
138 IN OUT EFI_SMBUS_DEVICE_ADDRESS *SlaveAddress OPTIONAL\r
139 );\r
140\r
79964ac8 141/**\r
142 The GetArpMap() function returns the mapping of all the SMBus devices\r
143 that are enumerated by the SMBus host driver.\r
144\r
516e9f28 145 @param[in] PeiServices A pointer to the system PEI Services Table.\r
146 @param[in] This A pointer to the EFI_PEI_SMBUS_PPI instance.\r
147 @param[in, out] Length Size of the buffer that contains the SMBus device map.\r
148 @param[in, out] SmbusDeviceMap The pointer to the device map as enumerated\r
149 by the SMBus controller driver.\r
79964ac8 150\r
2a924b00 151 @retval EFI_SUCCESS The device map was returned correctly in the buffer.\r
152 @retval EFI_UNSUPPORTED GetArpMap() are not implemented by this PEIM. \r
153 This return value was not defined in Framwork Specification.\r
154 This return value had been intruduced in PI Specification.\r
79964ac8 155\r
156**/\r
157typedef\r
158EFI_STATUS\r
69686d56 159(EFIAPI *EFI_PEI_SMBUS_PPI_GET_ARP_MAP)(\r
79964ac8 160 IN EFI_PEI_SERVICES **PeiServices,\r
700a7869 161 IN EFI_PEI_SMBUS_PPI *This,\r
79964ac8 162 IN OUT UINTN *Length,\r
163 IN OUT EFI_SMBUS_DEVICE_MAP **SmbusDeviceMap\r
164 );\r
165\r
166/**\r
9ca1b12e 167 Allows a device driver to register for a callback when the bus driver detects a state that it needs to \r
168 propagate to other PEIMs that are registered for a callback.\r
169\r
79964ac8 170 The Notify() function registers all the callback functions to allow the\r
171 bus driver to call these functions when the SlaveAddress/Data pair happens.\r
2a924b00 172 All functions to be registered with EFI_PEI_SMBUS_PPI_NOTIFY must be of type\r
173 EFI_PEI_SMBUS_NOTIFY_FUNCTION.\r
79964ac8 174\r
516e9f28 175 @param[in] PeiServices A pointer to the system PEI Services Table.\r
176 @param[in] This A pointer to the EFI_PEI_SMBUS_PPI instance.\r
177 @param[in] SlaveAddress Address that the host controller detects as\r
178 sending a message and calls all the registered functions.\r
179 @param[in] Data Data that the host controller detects as sending a message\r
180 and calls all the registered functions.\r
181 @param[in] NotifyFunction The function to call when the bus driver\r
182 detects the SlaveAddress and Data pair.\r
79964ac8 183\r
516e9f28 184 @retval EFI_SUCCESS NotifyFunction has been registered.\r
2a924b00 185 @retval EFI_UNSUPPORTED Notify() are not implemented by this PEIM. \r
186 This return value is not defined in Framwork Specification.\r
187 This return value had been intruduced in PI Specification.\r
79964ac8 188\r
189**/\r
190typedef\r
191EFI_STATUS\r
69686d56 192(EFIAPI *EFI_PEI_SMBUS_PPI_NOTIFY)(\r
9ca1b12e 193 IN EFI_PEI_SERVICES **PeiServices,\r
194 IN EFI_PEI_SMBUS_PPI *This,\r
195 IN EFI_SMBUS_DEVICE_ADDRESS SlaveAddress,\r
196 IN UINTN Data,\r
700a7869 197 IN EFI_PEI_SMBUS_NOTIFY_FUNCTION NotifyFunction\r
79964ac8 198 );\r
199\r
9ca1b12e 200///\r
201/// Provides the basic I/O interfaces that a PEIM uses to access\r
202/// its SMBus controller and the slave devices attached to it.\r
203///\r
79964ac8 204struct _EFI_PEI_SMBUS_PPI {\r
2bbaeb0d 205 ///\r
206 /// Executes the SMBus operation to an SMBus slave device.\r
207 ///\r
79964ac8 208 EFI_PEI_SMBUS_PPI_EXECUTE_OPERATION Execute;\r
2bbaeb0d 209 \r
210 ///\r
211 /// Allows an SMBus 2.0 device(s) to be Address Resolution Protocol (ARP)\r
212 ///\r
79964ac8 213 EFI_PEI_SMBUS_PPI_ARP_DEVICE ArpDevice;\r
2bbaeb0d 214 \r
215 ///\r
216 /// Allows a PEIM to retrieve the address that was allocated by the SMBus\r
217 /// host controller during enumeration/ARP. \r
218 ///\r
79964ac8 219 EFI_PEI_SMBUS_PPI_GET_ARP_MAP GetArpMap;\r
2bbaeb0d 220 \r
221 ///\r
222 /// Allows a driver to register for a callback to the SMBus host\r
223 /// controller driver when the bus issues a notification to the bus controller PEIM. \r
224 ///\r
79964ac8 225 EFI_PEI_SMBUS_PPI_NOTIFY Notify;\r
226};\r
227\r
228extern EFI_GUID gEfiPeiSmbusPpiGuid;\r
229\r
230#endif\r