HomeSort by relevance Sort by last modified time
    Searched refs:SmBusAddress (Results 1 - 25 of 32) sorted by null

1 2

  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/DxeSmbusLib/
DxeSmbusLibInternal.h 28 #define SMBUS_LIB_SLAVE_ADDRESS(SmBusAddress) (((SmBusAddress) >> 1) & 0x7f)
29 #define SMBUS_LIB_COMMAND(SmBusAddress) (((SmBusAddress) >> 8) & 0xff)
30 #define SMBUS_LIB_LENGTH(SmBusAddress) (((SmBusAddress) >> 16) & 0x3f)
31 #define SMBUS_LIB_PEC(SmBusAddress) ((BOOLEAN) (((SmBusAddress) & SMBUS_LIB_PEC_BIT) != 0))
32 #define SMBUS_LIB_RESEARVED(SmBusAddress) ((SmBusAddress) & ~(((1 << 22) - 2) | SMBUS_LIB_PEC_BIT))
    [all...]
SmbusLib.c 28 Executes an SMBUS quick read command on the SMBUS device specified by SmBusAddress.
29 Only the SMBUS slave address field of SmBusAddress is required.
31 If PEC is set in SmBusAddress, then ASSERT().
32 If Command in SmBusAddress is not zero, then ASSERT().
33 If Length in SmBusAddress is not zero, then ASSERT().
34 If any reserved bits of SmBusAddress are set, then ASSERT().
36 @param SmBusAddress Address that encodes the SMBUS Slave Address,
45 IN UINTN SmBusAddress,
49 ASSERT (!SMBUS_LIB_PEC (SmBusAddress));
50 ASSERT (SMBUS_LIB_COMMAND (SmBusAddress) == 0);
    [all...]
DxeSmbusLib.c 67 @param SmBusAddress Address that encodes the SMBUS Slave Address,
82 IN UINTN SmBusAddress,
91 SmbusDeviceAddress.SmbusDeviceAddress = SMBUS_LIB_SLAVE_ADDRESS (SmBusAddress);
96 SMBUS_LIB_COMMAND (SmBusAddress),
98 SMBUS_LIB_PEC (SmBusAddress),
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/PeiSmbusLib/
PeiSmbusLibInternal.h 29 #define SMBUS_LIB_SLAVE_ADDRESS(SmBusAddress) (((SmBusAddress) >> 1) & 0x7f)
30 #define SMBUS_LIB_COMMAND(SmBusAddress) (((SmBusAddress) >> 8) & 0xff)
31 #define SMBUS_LIB_LENGTH(SmBusAddress) (((SmBusAddress) >> 16) & 0x3f)
32 #define SMBUS_LIB_PEC(SmBusAddress) ((BOOLEAN) (((SmBusAddress) & SMBUS_LIB_PEC_BIT) != 0))
33 #define SMBUS_LIB_RESEARVED(SmBusAddress) ((SmBusAddress) & ~(((1 << 22) - 2) | SMBUS_LIB_PEC_BIT))
    [all...]
SmbusLib.c 28 Executes an SMBUS quick read command on the SMBUS device specified by SmBusAddress.
29 Only the SMBUS slave address field of SmBusAddress is required.
31 If PEC is set in SmBusAddress, then ASSERT().
32 If Command in SmBusAddress is not zero, then ASSERT().
33 If Length in SmBusAddress is not zero, then ASSERT().
34 If any reserved bits of SmBusAddress are set, then ASSERT().
36 @param SmBusAddress Address that encodes the SMBUS Slave Address,
45 IN UINTN SmBusAddress,
49 ASSERT (!SMBUS_LIB_PEC (SmBusAddress));
50 ASSERT (SMBUS_LIB_COMMAND (SmBusAddress) == 0);
    [all...]
PeiSmbusLib.c 59 @param SmBusAddress Address that encodes the SMBUS Slave Address,
74 IN UINTN SmBusAddress,
87 SmbusDeviceAddress.SmbusDeviceAddress = SMBUS_LIB_SLAVE_ADDRESS (SmBusAddress);
93 SMBUS_LIB_COMMAND (SmBusAddress),
95 SMBUS_LIB_PEC (SmBusAddress),
  /device/linaro/bootloader/edk2/MdePkg/Library/BaseSmbusLibNull/
BaseSmbusLibNull.c 22 Executes an SMBUS quick read command on the SMBUS device specified by SmBusAddress.
23 Only the SMBUS slave address field of SmBusAddress is required.
25 If PEC is set in SmBusAddress, then ASSERT().
26 If Command in SmBusAddress is not zero, then ASSERT().
27 If Length in SmBusAddress is not zero, then ASSERT().
28 If any reserved bits of SmBusAddress are set, then ASSERT().
30 @param SmBusAddress Address that encodes the SMBUS Slave Address,
46 IN UINTN SmBusAddress,
50 ASSERT (!SMBUS_LIB_PEC (SmBusAddress));
51 ASSERT (SMBUS_LIB_COMMAND (SmBusAddress) == 0);
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Library/BaseS3SmbusLib/
S3SmbusLib.c 36 @param SmBusAddress Address that encodes the SMBUS Slave Address,
47 IN UINTN SmBusAddress,
55 SmBusAddress,
67 Executes an SMBUS quick read command on the SMBUS device specified by SmBusAddress.
68 Only the SMBUS slave address field of SmBusAddress is required.
70 If PEC is set in SmBusAddress, then ASSERT().
71 If Command in SmBusAddress is not zero, then ASSERT().
72 If Length in SmBusAddress is not zero, then ASSERT().
73 If any reserved bits of SmBusAddress are set, then ASSERT().
75 @param SmBusAddress Address that encodes the SMBUS Slave Address,
    [all...]
  /device/linaro/bootloader/edk2/IntelFrameworkPkg/Library/PeiSmbusLibSmbusPpi/
SmbusLib.c 23 Executes an SMBUS quick read command on the SMBUS device specified by SmBusAddress.
24 Only the SMBUS slave address field of SmBusAddress is required.
26 If PEC is set in SmBusAddress, then ASSERT().
27 If Command in SmBusAddress is not zero, then ASSERT().
28 If Length in SmBusAddress is not zero, then ASSERT().
29 If any reserved bits of SmBusAddress are set, then ASSERT().
31 @param SmBusAddress Address that encodes the SMBUS Slave Address,
40 IN UINTN SmBusAddress,
44 ASSERT (!SMBUS_LIB_PEC (SmBusAddress));
45 ASSERT (SMBUS_LIB_COMMAND (SmBusAddress) == 0);
    [all...]
PeiSmbusLib.c 50 @param SmBusAddress Address that encodes the SMBUS Slave Address,
65 IN UINTN SmBusAddress,
78 SmbusDeviceAddress.SmbusDeviceAddress = SMBUS_LIB_SLAVE_ADDRESS (SmBusAddress);
84 SMBUS_LIB_COMMAND (SmBusAddress),
86 SMBUS_LIB_PEC (SmBusAddress),
InternalSmbusLib.h 57 @param SmBusAddress Address that encodes the SMBUS Slave Address,
72 IN UINTN SmBusAddress,
  /device/linaro/bootloader/edk2/MdePkg/Library/DxeSmbusLib/
SmbusLib.c 21 Executes an SMBUS quick read command on the SMBUS device specified by SmBusAddress.
22 Only the SMBUS slave address field of SmBusAddress is required.
24 If PEC is set in SmBusAddress, then ASSERT().
25 If Command in SmBusAddress is not zero, then ASSERT().
26 If Length in SmBusAddress is not zero, then ASSERT().
27 If any reserved bits of SmBusAddress are set, then ASSERT().
29 @param SmBusAddress The address that encodes the SMBUS Slave Address,
47 IN UINTN SmBusAddress,
51 ASSERT (!SMBUS_LIB_PEC (SmBusAddress));
52 ASSERT (SMBUS_LIB_COMMAND (SmBusAddress) == 0);
    [all...]
DxeSmbusLib.c 62 @param SmBusAddress The address that encodes the SMBUS Slave Address,
79 IN UINTN SmBusAddress,
88 SmbusDeviceAddress.SmbusDeviceAddress = SMBUS_LIB_SLAVE_ADDRESS (SmBusAddress);
93 SMBUS_LIB_COMMAND (SmBusAddress),
95 SMBUS_LIB_PEC (SmBusAddress),
InternalSmbusLib.h 43 @param SmBusAddress The address that encodes the SMBUS Slave Address,
60 IN UINTN SmBusAddress,
  /device/linaro/bootloader/edk2/MdePkg/Library/PeiSmbusLibSmbus2Ppi/
SmbusLib.c 21 Executes an SMBUS quick read command on the SMBUS device specified by SmBusAddress.
22 Only the SMBUS slave address field of SmBusAddress is required.
24 If PEC is set in SmBusAddress, then ASSERT().
25 If Command in SmBusAddress is not zero, then ASSERT().
26 If Length in SmBusAddress is not zero, then ASSERT().
27 If any reserved bits of SmBusAddress are set, then ASSERT().
29 @param SmBusAddress The address that encodes the SMBUS Slave Address,
47 IN UINTN SmBusAddress,
51 ASSERT (!SMBUS_LIB_PEC (SmBusAddress));
52 ASSERT (SMBUS_LIB_COMMAND (SmBusAddress) == 0);
    [all...]
PeiSmbusLib.c 51 @param SmBusAddress The address that encodes the SMBUS Slave Address,
68 IN UINTN SmBusAddress,
79 SmbusDeviceAddress.SmbusDeviceAddress = SMBUS_LIB_SLAVE_ADDRESS (SmBusAddress);
84 SMBUS_LIB_COMMAND (SmBusAddress),
86 SMBUS_LIB_PEC (SmBusAddress),
InternalSmbusLib.h 57 @param SmBusAddress The address that encodes the SMBUS Slave Address,
74 IN UINTN SmBusAddress,
  /device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/Library/SmbusLib/
SmbusLib.c 163 @param SmBusAddress Address that encodes the SMBUS Slave Address,
175 IN UINTN SmBusAddress,
198 if (SMBUS_LIB_PEC (SmBusAddress)) {
206 IoWrite8 (IoPortBaseAddress + R_PCH_SMBUS_HCMD, (UINT8) SMBUS_LIB_COMMAND (SmBusAddress));
222 IoWrite8 (IoPortBaseAddress + R_PCH_SMBUS_TSA, (UINT8) SmBusAddress);
252 Executes an SMBUS quick read command on the SMBUS device specified by SmBusAddress.
253 Only the SMBUS slave address field of SmBusAddress is required.
255 If PEC is set in SmBusAddress, then ASSERT().
256 If Command in SmBusAddress is not zero, then ASSERT().
257 If Length in SmBusAddress is not zero, then ASSERT().
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Include/Library/
SmbusLib.h 41 Macro that returns the SMBUS Slave Address value from an SmBusAddress Parameter value.
43 @param SmBusAddress Address that encodes the SMBUS Slave Address, SMBUS Command, SMBUS Data Length, and PEC
45 #define SMBUS_LIB_SLAVE_ADDRESS(SmBusAddress) (((SmBusAddress) >> 1) & 0x7f)
48 Macro that returns the SMBUS Command value from an SmBusAddress Parameter value.
50 @param SmBusAddress Address that encodes the SMBUS Slave Address, SMBUS Command, SMBUS Data Length, and PEC
52 #define SMBUS_LIB_COMMAND(SmBusAddress) (((SmBusAddress) >> 8) & 0xff)
55 Macro that returns the SMBUS Data Length value from an SmBusAddress Parameter value.
57 @param SmBusAddress Address that encodes the SMBUS Slave Address, SMBUS Command, SMBUS Data Length, and PEC
    [all...]
S3SmbusLib.h 26 Executes an SMBUS quick read command on the SMBUS device specified by SmBusAddress.
27 Only the SMBUS slave address field of SmBusAddress is required.
29 If PEC is set in SmBusAddress, then ASSERT().
30 If Command in SmBusAddress is not zero, then ASSERT().
31 If Length in SmBusAddress is not zero, then ASSERT().
32 If any reserved bits of SmBusAddress are set, then ASSERT().
34 @param[in] SmBusAddress The address that encodes the SMBUS Slave Address,
50 IN UINTN SmBusAddress,
58 Executes an SMBUS quick write command on the SMBUS device specified by SmBusAddress.
59 Only the SMBUS slave address field of SmBusAddress is required.
    [all...]
  /device/linaro/bootloader/edk2/QuarkSocPkg/QuarkNorthCluster/Library/SmbusLib/
SmbusLib.c 143 @param SmBusAddress Address that encodes the SMBUS Slave Address,
155 IN UINTN SmBusAddress,
176 IoWrite8 (IoPortBaseAddress + R_QNC_SMBUS_HCMD, (UINT8) SMBUS_LIB_COMMAND (SmBusAddress));
187 IoWrite8 (IoPortBaseAddress + R_QNC_SMBUS_TSA, (UINT8) SmBusAddress);
214 Executes an SMBUS quick read command on the SMBUS device specified by SmBusAddress.
215 Only the SMBUS slave address field of SmBusAddress is required.
217 If PEC is set in SmBusAddress, then ASSERT().
218 If Command in SmBusAddress is not zero, then ASSERT().
219 If Length in SmBusAddress is not zero, then ASSERT().
220 If any reserved bits of SmBusAddress are set, then ASSERT().
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Include/Library/
EdkIIGlueSmbusLib.h 55 Executes an SMBUS quick read command on the SMBUS device specified by SmBusAddress.
56 Only the SMBUS slave address field of SmBusAddress is required.
58 If PEC is set in SmBusAddress, then ASSERT().
59 If Command in SmBusAddress is not zero, then ASSERT().
60 If Length in SmBusAddress is not zero, then ASSERT().
61 If any reserved bits of SmBusAddress are set, then ASSERT().
63 @param SmBusAddress Address that encodes the SMBUS Slave Address,
72 IN UINTN SmBusAddress,
79 Executes an SMBUS quick write command on the SMBUS device specified by SmBusAddress.
80 Only the SMBUS slave address field of SmBusAddress is required.
    [all...]
  /device/linaro/bootloader/edk2/Vlv2DeviceRefCodePkg/ValleyView2Soc/CPU/Include/Ppi/
VlvPolicy.h 71 UINT32 SmBusAddress;
  /device/linaro/bootloader/edk2/Vlv2DeviceRefCodePkg/ValleyView2Soc/NorthCluster/Include/Ppi/
VlvPolicy.h 71 UINT32 SmBusAddress;
  /device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/BootScriptSaveDxe/
ScriptSave.c 283 UINTN SmBusAddress;
289 SmBusAddress = SMBUS_LIB_ADDRESS (SlaveAddress.SmbusDeviceAddress,Command,0,PecCheck);
293 return S3BootScriptSaveSmbusExecute (SmBusAddress, Operation, DataSize, Buffer);

Completed in 966 milliseconds

1 2