summaryrefslogtreecommitdiffstats
path: root/MdePkg/Include/Library/S3SmbusLib.h
blob: f7a9a5800521c35f1b7af9d549e88be96b8d0c31 (plain)
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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
/** @file
  Smbus Library Services that conduct SMBus transactions and enable the operatation
  to be replayed during an S3 resume. This library class maps directly on top
  of the SmbusLib class.

  Copyright (c) 2007 - 2018, Intel Corporation. All rights reserved.<BR>

  SPDX-License-Identifier: BSD-2-Clause-Patent

**/

#ifndef __S3_SMBUS_LIB_H__
#define __S3_SMBUS_LIB_H__

/**
  Executes an SMBUS quick read command, and saves the value in the S3 script to be replayed
  on S3 resume.

  Executes an SMBUS quick read command on the SMBUS device specified by SmBusAddress.
  Only the SMBUS slave address field of SmBusAddress is required.
  If Status is not NULL, then the status of the executed command is returned in Status.
  If PEC is set in SmBusAddress, then ASSERT().
  If Command in SmBusAddress is not zero, then ASSERT().
  If Length in SmBusAddress is not zero, then ASSERT().
  If any reserved bits of SmBusAddress are set, then ASSERT().

  @param[in]  SmBusAddress   The address that encodes the SMBUS Slave Address,
                             SMBUS Command, SMBUS Data Length, and PEC.
  @param[out] Status         The return status for the executed command.
                             This is an optional parameter and may be NULL.
                             RETURN_SUCCESS       The SMBUS command was executed.
                             RETURN_TIMEOUT       A timeout occurred while executing the SMBUS command.
                             RETURN_DEVICE_ERROR The request was not completed because a failure
                              was recorded in the Host Status Register bit.  Device errors are a result
                              of a transaction collision, illegal command field, unclaimed cycle
                              (host initiated), or bus error (collision).
                             RETURN_UNSUPPORTED    The SMBus operation is not supported.

**/
VOID
EFIAPI
S3SmBusQuickRead (
  IN  UINTN          SmBusAddress,
  OUT RETURN_STATUS  *Status       OPTIONAL
  );

/**
  Executes an SMBUS quick write command, and saves the value in the S3 script to be replayed
  on S3 resume.

  Executes an SMBUS quick write command on the SMBUS device specified by SmBusAddress.
  Only the SMBUS slave address field of SmBusAddress is required.
  If Status is not NULL, then the status of the executed command is returned in Status.
  If PEC is set in SmBusAddress, then ASSERT().
  If Command in SmBusAddress is not zero, then ASSERT().
  If Length in SmBusAddress is not zero, then ASSERT().
  If any reserved bits of SmBusAddress are set, then ASSERT().

  @param[in]  SmBusAddress   The address that encodes the SMBUS Slave Address,
                             SMBUS Command, SMBUS Data Length, and PEC.
  @param[out] Status         The return status for the executed command.
                             This is an optional parameter and may be NULL.
                             RETURN_SUCCESS      The SMBUS command was executed.
                             RETURN_TIMEOUT      A timeout occurred while executing the SMBUS command.
                             RETURN_DEVICE_ERROR The request was not completed because a failure
                             was recorded in the Host Status Register bit.  Device errors are a result
                             of a transaction collision, illegal command field, unclaimed cycle
                             (host initiated), or bus error (collision).
                             RETURN_UNSUPPORTED    The SMBus operation is not supported.

**/
VOID
EFIAPI
S3SmBusQuickWrite (
  IN  UINTN          SmBusAddress,
  OUT RETURN_STATUS  *Status       OPTIONAL
  );

/**
  Executes an SMBUS receive byte command, and saves the value in the S3 script to be replayed
  on S3 resume.

  Executes an SMBUS receive byte command on the SMBUS device specified by SmBusAddress.
  Only the SMBUS slave address field of SmBusAddress is required.
  The byte received from the SMBUS is returned.
  If Status is not NULL, then the status of the executed command is returned in Status.
  If Command in SmBusAddress is not zero, then ASSERT().
  If Length in SmBusAddress is not zero, then ASSERT().
  If any reserved bits of SmBusAddress are set, then ASSERT().

  @param[in]  SmBusAddress   The address that encodes the SMBUS Slave Address,
                             SMBUS Command, SMBUS Data Length, and PEC.
  @param[out] Status         The return status for the executed command.
                             This is an optional parameter and may be NULL.
                             RETURN_SUCCESS      The SMBUS command was executed.
                             RETURN_TIMEOUT      A timeout occurred while executing the SMBUS command.
                             RETURN_DEVICE_ERROR The request was not completed because a failure
                             was recorded in the Host Status Register bit.  Device errors are a result
                             of a transaction collision, illegal command field, unclaimed cycle
                             (host initiated), or bus error (collision).
                             RETURN_CRC_ERROR  The checksum is not correct (PEC is incorrect).
                             RETURN_UNSUPPORTED    The SMBus operation is not supported.

  @return   The byte received from the SMBUS.

**/
UINT8
EFIAPI
S3SmBusReceiveByte (
  IN  UINTN          SmBusAddress,
  OUT RETURN_STATUS  *Status        OPTIONAL
  );

/**
  Executes an SMBUS send byte command, and saves the value in the S3 script to be replayed
  on S3 resume.

  Executes an SMBUS send byte command on the SMBUS device specified by SmBusAddress.
  The byte specified by Value is sent.
  Only the SMBUS slave address field of SmBusAddress is required.  Value is returned.
  If Status is not NULL, then the status of the executed command is returned in Status.
  If Command in SmBusAddress is not zero, then ASSERT().
  If Length in SmBusAddress is not zero, then ASSERT().
  If any reserved bits of SmBusAddress are set, then ASSERT().

  @param[in]  SmBusAddress   The address that encodes the SMBUS Slave Address,
                             SMBUS Command, SMBUS Data Length, and PEC.
  @param[in]  Value          The 8-bit value to send.
  @param[out] Status         The return status for the executed command.
                             This is an optional parameter and may be NULL.
                             RETURN_SUCCESS The SMBUS command was executed.
                             RETURN_TIMEOUT A timeout occurred while executing the SMBUS command.
                             RETURN_DEVICE_ERROR  The request was not completed because a failure
                             was recorded in the Host Status Register bit.  Device errors are a result
                             of a transaction collision, illegal command field, unclaimed cycle
                             (host initiated), or bus errors (collisions).
                             RETURN_CRC_ERROR  The checksum is not correct (PEC is incorrect).
                             RETURN_UNSUPPORTED  The SMBus operation is not supported.

  @return   The parameter of Value.

**/
UINT8
EFIAPI
S3SmBusSendByte (
  IN  UINTN          SmBusAddress,
  IN  UINT8          Value,
  OUT RETURN_STATUS  *Status        OPTIONAL
  );

/**
  Executes an SMBUS read data byte command, and saves the value in the S3 script to be replayed
  on S3 resume.

  Executes an SMBUS read data byte command on the SMBUS device specified by SmBusAddress.
  Only the SMBUS slave address and SMBUS command fields of SmBusAddress are required.
  The 8-bit value read from the SMBUS is returned.
  If Status is not NULL, then the status of the executed command is returned in Status.
  If Length in SmBusAddress is not zero, then ASSERT().
  If any reserved bits of SmBusAddress are set, then ASSERT().

  @param[in]  SmBusAddress   The address that encodes the SMBUS Slave Address,
                             SMBUS Command, SMBUS Data Length, and PEC.
  @param[out] Status         The return status for the executed command.
                             This is an optional parameter and may be NULL.
                             RETURN_SUCCESS The SMBUS command was executed.
                             RETURN_TIMEOUT A timeout occurred while executing the SMBUS command.
                             RETURN_DEVICE_ERROR  The request was not completed because a failure
                             was recorded in the Host Status Register bit.  Device errors are a result
                             of a transaction collision, illegal command field, unclaimed cycle
                             (host initiated), or bus error (collision).
                             RETURN_CRC_ERROR  The checksum is not correct (PEC is incorrect).
                             RETURN_UNSUPPORTED  The SMBus operation is not supported.

  @return   The byte read from the SMBUS.

**/
UINT8
EFIAPI
S3SmBusReadDataByte (
  IN  UINTN          SmBusAddress,
  OUT RETURN_STATUS  *Status        OPTIONAL
  );

/**
  Executes an SMBUS write data byte command, and saves the value in the S3 script to be replayed
  on S3 resume.

  Executes an SMBUS write data byte command on the SMBUS device specified by SmBusAddress.
  The 8-bit value specified by Value is written.
  Only the SMBUS slave address and SMBUS command fields of SmBusAddress are required.
  Value is returned.
  If Status is not NULL, then the status of the executed command is returned in Status.
  If Length in SmBusAddress is not zero, then ASSERT().
  If any reserved bits of SmBusAddress are set, then ASSERT().

  @param[in]  SmBusAddress   The address that encodes the SMBUS Slave Address,
                             SMBUS Command, SMBUS Data Length, and PEC.
  @param[in]  Value          The 8-bit value to write.
  @param[out] Status         The return status for the executed command.
                             This is an optional parameter and may be NULL.
                             RETURN_SUCCESS The SMBUS command was executed.
                             RETURN_TIMEOUT A timeout occurred while executing the SMBUS command.
                             RETURN_DEVICE_ERROR  The request was not completed because a failure
                             was recorded in the Host Status Register bit.  Device errors are a result
                             of a transaction collision, illegal command field, unclaimed cycle
                             (host initiated), or bus error (collision).
                             RETURN_CRC_ERROR  The checksum is not correct (PEC is incorrect).
                             RETURN_UNSUPPORTED  The SMBus operation is not supported.

  @return   The parameter of Value.

**/
UINT8
EFIAPI
S3SmBusWriteDataByte (
  IN  UINTN          SmBusAddress,
  IN  UINT8          Value,
  OUT RETURN_STATUS  *Status        OPTIONAL
  );

/**
  Executes an SMBUS read data word command, and saves the value in the S3 script to be replayed
  on S3 resume.

  Executes an SMBUS read data word command on the SMBUS device specified by SmBusAddress.
  Only the SMBUS slave address and SMBUS command fields of SmBusAddress are required.
  The 16-bit value read from the SMBUS is returned.
  If Status is not NULL, then the status of the executed command is returned in Status.
  If Length in SmBusAddress is not zero, then ASSERT().
  If any reserved bits of SmBusAddress are set, then ASSERT().

  @param[in]  SmBusAddress   The address that encodes the SMBUS Slave Address,
                             SMBUS Command, SMBUS Data Length, and PEC.
  @param[out] Status         The return status for the executed command.
                             This is an optional parameter and may be NULL.
                             RETURN_SUCCESS The SMBUS command was executed.
                             RETURN_TIMEOUT A timeout occurred while executing the SMBUS command.
                             RETURN_DEVICE_ERROR  The request was not completed because a failure
                             was recorded in the Host Status Register bit.  Device errors are a result
                             of a transaction collision, illegal command field, unclaimed cycle
                             (host initiated), or bus error (collision).
                             RETURN_CRC_ERROR  The checksum is not correct (PEC is incorrect).
                             RETURN_UNSUPPORTED  The SMBus operation is not supported.

  @return   The byte read from the SMBUS.

**/
UINT16
EFIAPI
S3SmBusReadDataWord (
  IN  UINTN          SmBusAddress,
  OUT RETURN_STATUS  *Status        OPTIONAL
  );

/**
  Executes an SMBUS write data word command, and saves the value in the S3 script to be replayed
  on S3 resume.

  Executes an SMBUS write data word command on the SMBUS device specified by SmBusAddress.
  The 16-bit value specified by Value is written.
  Only the SMBUS slave address and SMBUS command fields of SmBusAddress are required.
  Value is returned.
  If Status is not NULL, then the status of the executed command is returned in Status.
  If Length in SmBusAddress is not zero, then ASSERT().
  If any reserved bits of SmBusAddress are set, then ASSERT().

  @param[in]  SmBusAddress   The address that encodes the SMBUS Slave Address,
                             SMBUS Command, SMBUS Data Length, and PEC.
  @param[in]  Value          The 16-bit value to write.
  @param[out] Status         The return status for the executed command.
                             This is an optional parameter and may be NULL.
                             RETURN_SUCCESS The SMBUS command was executed.
                             RETURN_TIMEOUT A timeout occurred while executing the SMBUS command.
                             RETURN_DEVICE_ERROR  The request was not completed because a failure
                             was recorded in the Host Status Register bit.  Device errors are a result
                             of a transaction collision, illegal command field, unclaimed cycle
                             (host initiated), or bus error (collision).
                             RETURN_CRC_ERROR  The checksum is not correct (PEC is incorrect).
                             RETURN_UNSUPPORTED  The SMBus operation is not supported.

  @return   The parameter of Value.

**/
UINT16
EFIAPI
S3SmBusWriteDataWord (
  IN  UINTN          SmBusAddress,
  IN  UINT16         Value,
  OUT RETURN_STATUS  *Status        OPTIONAL
  );

/**
  Executes an SMBUS process call command, and saves the value in the S3 script to be replayed
  on S3 resume.

  Executes an SMBUS process call command on the SMBUS device specified by SmBusAddress.
  The 16-bit value specified by Value is written.
  Only the SMBUS slave address and SMBUS command fields of SmBusAddress are required.
  The 16-bit value returned by the process call command is returned.
  If Status is not NULL, then the status of the executed command is returned in Status.
  If Length in SmBusAddress is not zero, then ASSERT().
  If any reserved bits of SmBusAddress are set, then ASSERT().

  @param[in]  SmBusAddress   The address that encodes the SMBUS Slave Address,
                             SMBUS Command, SMBUS Data Length, and PEC.
  @param[in]  Value          The 16-bit value to write.
  @param[out] Status         The return status for the executed command.
                             This is an optional parameter and may be NULL.
                             RETURN_SUCCESS The SMBUS command was executed.
                             RETURN_TIMEOUT A timeout occurred while executing the SMBUS command.
                             RETURN_DEVICE_ERROR  The request was not completed because a failure
                             was recorded in the Host Status Register bit.  Device errors are a result
                             of a transaction collision, illegal command field, unclaimed cycle
                             (host initiated), or bus error (collision).
                             RETURN_CRC_ERROR  The checksum is not correct (PEC is incorrect).
                             RETURN_UNSUPPORTED  The SMBus operation is not supported.

  @return   The 16-bit value returned by the process call command.

**/
UINT16
EFIAPI
S3SmBusProcessCall (
  IN  UINTN          SmBusAddress,
  IN  UINT16         Value,
  OUT RETURN_STATUS  *Status        OPTIONAL
  );

/**
  Executes an SMBUS read block command, and saves the value in the S3 script to be replayed
  on S3 resume.

  Executes an SMBUS read block command on the SMBUS device specified by SmBusAddress.
  Only the SMBUS slave address and SMBUS command fields of SmBusAddress are required.
  Bytes are read from the SMBUS and stored in Buffer.
  The number of bytes read is returned, and will never return a value larger than 32-bytes.
  If Status is not NULL, then the status of the executed command is returned in Status.
  It is the caller's responsibility to make sure Buffer is large enough for the total number of bytes read.
  SMBUS supports a maximum transfer size of 32 bytes, so Buffer does not need to be any larger than 32 bytes.
  If Length in SmBusAddress is not zero, then ASSERT().
  If Buffer is NULL, then ASSERT().
  If any reserved bits of SmBusAddress are set, then ASSERT().

  @param[in]  SmBusAddress   The address that encodes the SMBUS Slave Address,
                             SMBUS Command, SMBUS Data Length, and PEC.
  @param[out] Buffer         The pointer to the buffer to store the bytes read from the SMBUS.
  @param[out] Status         The return status for the executed command.
                             This is an optional parameter and may be NULL.
                             RETURN_SUCCESS The SMBUS command was executed.
                             RETURN_TIMEOUT A timeout occurred while executing the SMBUS command.
                             RETURN_DEVICE_ERROR  The request was not completed because a failure
                             was recorded in the Host Status Register bit.  Device errors are a result
                             of a transaction collision, illegal command field, unclaimed cycle
                             (host initiated), or bus error (collision).
                             RETURN_CRC_ERROR  The checksum is not correct (PEC is incorrect).
                             RETURN_UNSUPPORTED  The SMBus operation is not supported.

  @return   The number of bytes read.

**/
UINTN
EFIAPI
S3SmBusReadBlock (
  IN  UINTN          SmBusAddress,
  OUT VOID           *Buffer,
  OUT RETURN_STATUS  *Status        OPTIONAL
  );

/**
  Executes an SMBUS write block command, and saves the value in the S3 script to be replayed
  on S3 resume.

  Executes an SMBUS write block command on the SMBUS device specified by SmBusAddress.
  The SMBUS slave address, SMBUS command, and SMBUS length fields of SmBusAddress are required.
  Bytes are written to the SMBUS from Buffer.
  The number of bytes written is returned, and will never return a value larger than 32-bytes.
  If Status is not NULL, then the status of the executed command is returned in Status.
  If Length in SmBusAddress is zero or greater than 32, then ASSERT().
  If Buffer is NULL, then ASSERT().
  If any reserved bits of SmBusAddress are set, then ASSERT().

  @param[in]  SmBusAddress   The address that encodes the SMBUS Slave Address,
                             SMBUS Command, SMBUS Data Length, and PEC.
  @param[out] Buffer         The pointer to the buffer to store the bytes read from the SMBUS.
  @param[out] Status         The return status for the executed command.
                             This is an optional parameter and may be NULL.
                             RETURN_TIMEOUT A timeout occurred while executing the SMBUS command.
                             RETURN_DEVICE_ERROR  The request was not completed because a failure
                             was recorded in the Host Status Register bit.  Device errors are a result
                             of a transaction collision, illegal command field, unclaimed cycle
                             (host initiated), or bus error (collision).
                             RETURN_CRC_ERROR  The checksum is not correct (PEC is incorrect).
                             RETURN_UNSUPPORTED  The SMBus operation is not supported.

  @return   The number of bytes written.

**/
UINTN
EFIAPI
S3SmBusWriteBlock (
  IN  UINTN          SmBusAddress,
  OUT VOID           *Buffer,
  OUT RETURN_STATUS  *Status        OPTIONAL
  );

/**
  Executes an SMBUS block process call command, and saves the value in the S3 script to be replayed
  on S3 resume.

  Executes an SMBUS block process call command on the SMBUS device specified by SmBusAddress.
  The SMBUS slave address, SMBUS command, and SMBUS length fields of SmBusAddress are required.
  Bytes are written to the SMBUS from WriteBuffer.  Bytes are then read from the SMBUS into ReadBuffer.
  If Status is not NULL, then the status of the executed command is returned in Status.
  It is the caller's responsibility to make sure ReadBuffer is large enough for the total number of bytes read.
  SMBUS supports a maximum transfer size of 32 bytes, so Buffer does not need to be any larger than 32 bytes.
  If Length in SmBusAddress is zero or greater than 32, then ASSERT().
  If WriteBuffer is NULL, then ASSERT().
  If ReadBuffer is NULL, then ASSERT().
  If any reserved bits of SmBusAddress are set, then ASSERT().

  @param[in]  SmBusAddress   The address that encodes the SMBUS Slave Address,
                             SMBUS Command, SMBUS Data Length, and PEC.
  @param[in]  WriteBuffer    The pointer to the buffer of bytes to write to the SMBUS.
  @param[out] ReadBuffer     The pointer to the buffer of bytes to read from the SMBUS.
  @param[out] Status         The return status for the executed command.
                             This is an optional parameter and may be NULL.
                             RETURN_TIMEOUT A timeout occurred while executing the SMBUS command.
                             RETURN_DEVICE_ERROR  The request was not completed because a failure
                             was recorded in the Host Status Register bit.  Device errors are a result
                             of a transaction collision, illegal command field, unclaimed cycle
                             (host initiated), or bus error (collision).
                             RETURN_CRC_ERROR  The checksum is not correct (PEC is incorrect).
                             RETURN_UNSUPPORTED  The SMBus operation is not supported.

  @return   The number of bytes written.

**/
UINTN
EFIAPI
S3SmBusBlockProcessCall (
  IN  UINTN          SmBusAddress,
  IN  VOID           *WriteBuffer,
  OUT VOID           *ReadBuffer,
  OUT RETURN_STATUS  *Status        OPTIONAL
  );

#endif