Lines Matching refs:SmbusAddress
61 IN UINTN SmbusAddress, in SmbusExecute() argument
72 DEBUG ((EFI_D_INFO, "EfiSmbusQuickRead - 0x%08x\n", SmbusAddress)); in SmbusExecute()
73 SmBusQuickRead (SmbusAddress, &Status); in SmbusExecute()
76 DEBUG ((EFI_D_INFO, "EfiSmbusQuickWrite - 0x%08x\n", SmbusAddress)); in SmbusExecute()
77 SmBusQuickWrite (SmbusAddress, &Status); in SmbusExecute()
80 DEBUG ((EFI_D_INFO, "EfiSmbusReceiveByte - 0x%08x\n", SmbusAddress)); in SmbusExecute()
81 SmBusReceiveByte (SmbusAddress, &Status); in SmbusExecute()
84 …DEBUG ((EFI_D_INFO, "EfiSmbusSendByte - 0x%08x (0x%02x)\n", SmbusAddress, (UINTN)*(UINT8 *) Buffer… in SmbusExecute()
85 SmBusSendByte (SmbusAddress, *(UINT8 *) Buffer, &Status); in SmbusExecute()
88 DEBUG ((EFI_D_INFO, "EfiSmbusReadByte - 0x%08x\n", SmbusAddress)); in SmbusExecute()
89 SmBusReadDataByte (SmbusAddress, &Status); in SmbusExecute()
92 …DEBUG ((EFI_D_INFO, "EfiSmbusWriteByte - 0x%08x (0x%02x)\n", SmbusAddress, (UINTN)*(UINT8 *) Buffe… in SmbusExecute()
93 SmBusWriteDataByte (SmbusAddress, *(UINT8 *) Buffer, &Status); in SmbusExecute()
96 DEBUG ((EFI_D_INFO, "EfiSmbusReadWord - 0x%08x\n", SmbusAddress)); in SmbusExecute()
97 SmBusReadDataWord (SmbusAddress, &Status); in SmbusExecute()
100 …DEBUG ((EFI_D_INFO, "EfiSmbusWriteWord - 0x%08x (0x%04x)\n", SmbusAddress, (UINTN)*(UINT16 *) Buff… in SmbusExecute()
101 SmBusWriteDataWord (SmbusAddress, *(UINT16 *) Buffer, &Status); in SmbusExecute()
104 …DEBUG ((EFI_D_INFO, "EfiSmbusProcessCall - 0x%08x (0x%04x)\n", SmbusAddress, (UINTN)*(UINT16 *) Bu… in SmbusExecute()
105 SmBusProcessCall (SmbusAddress, *(UINT16 *) Buffer, &Status); in SmbusExecute()
108 DEBUG ((EFI_D_INFO, "EfiSmbusReadBlock - 0x%08x\n", SmbusAddress)); in SmbusExecute()
109 SmBusReadBlock (SmbusAddress, WorkBuffer, &Status); in SmbusExecute()
112 DEBUG ((EFI_D_INFO, "EfiSmbusWriteBlock - 0x%08x\n", SmbusAddress)); in SmbusExecute()
113 … SmBusWriteBlock ((SmbusAddress + SMBUS_LIB_ADDRESS (0, 0, (*Length), FALSE)), Buffer, &Status); in SmbusExecute()
116 DEBUG ((EFI_D_INFO, "EfiSmbusBWBRProcessCall - 0x%08x\n", SmbusAddress)); in SmbusExecute()
117 …SmBusBlockProcessCall ((SmbusAddress + SMBUS_LIB_ADDRESS (0, 0, (*Length), FALSE)), Buffer, WorkBu… in SmbusExecute()