OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SmbusAddress
(Results
1 - 3
of
3
) sorted by null
/device/linaro/bootloader/edk2/QuarkSocPkg/QuarkNorthCluster/QNCInit/Dxe/
QNCSmbusExec.c
183
UINTN
SmbusAddress
;
198
SmbusAddress
= SMBUS_LIB_ADDRESS (SlaveAddress.SmbusDeviceAddress, Command, *Length, PecCheck);
202
SmBusQuickRead (
SmbusAddress
, &Status);
205
SmBusQuickWrite (
SmbusAddress
, &Status);
208
*(UINT8 *) Buffer = SmBusReceiveByte (
SmbusAddress
, &Status);
211
SmBusSendByte (
SmbusAddress
, *(UINT8 *) Buffer, &Status);
214
*(UINT8 *) Buffer = SmBusReadDataByte (
SmbusAddress
, &Status);
217
SmBusWriteDataByte (
SmbusAddress
, *(UINT8 *) Buffer, &Status);
220
*(UINT16 *) Buffer = SmBusReadDataWord (
SmbusAddress
, &Status);
223
SmBusWriteDataWord (
SmbusAddress
, *(UINT16 *) Buffer, &Status);
[
all
...]
QNCSmbus.h
27
#define ADD_LENGTH(
SmbusAddress
, Length) ((
SmbusAddress
) + SMBUS_LIB_ADDRESS (0, 0, (Length), FALSE))
/device/linaro/bootloader/edk2/MdeModulePkg/Library/PiDxeS3BootScriptLib/
BootScriptExecute.c
26
@param
SmbusAddress
Address that encodes the SMBUS Slave Address, SMBUS Command, SMBUS Data Length,
61
IN UINTN
SmbusAddress
,
72
DEBUG ((EFI_D_INFO, "EfiSmbusQuickRead - 0x%08x\n",
SmbusAddress
));
73
SmBusQuickRead (
SmbusAddress
, &Status);
76
DEBUG ((EFI_D_INFO, "EfiSmbusQuickWrite - 0x%08x\n",
SmbusAddress
));
77
SmBusQuickWrite (
SmbusAddress
, &Status);
80
DEBUG ((EFI_D_INFO, "EfiSmbusReceiveByte - 0x%08x\n",
SmbusAddress
));
81
SmBusReceiveByte (
SmbusAddress
, &Status);
84
DEBUG ((EFI_D_INFO, "EfiSmbusSendByte - 0x%08x (0x%02x)\n",
SmbusAddress
, (UINTN)*(UINT8 *) Buffer));
85
SmBusSendByte (
SmbusAddress
, *(UINT8 *) Buffer, &Status);
[
all
...]
Completed in 281 milliseconds