summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorIru Cai <mytbk920423@gmail.com>2019-01-04 23:01:32 +0800
committerIru Cai <mytbk920423@gmail.com>2019-11-17 15:10:47 +0800
commit9f714c7013ab876f0dfe4d601e5c1df5cc69fc0f (patch)
treeb91c6360a400ad6e719298a8287eae8c104f719b /src
parentaf8488141a44963b7c2acd359023e38c0e19a975 (diff)
downloadcoreboot-9f714c7013ab876f0dfe4d601e5c1df5cc69fc0f.tar.xz
do_smbus_op
Diffstat (limited to 'src')
-rw-r--r--src/northbridge/intel/haswell/mrc.asm60
-rw-r--r--src/northbridge/intel/haswell/mrc_misc.c19
-rw-r--r--src/northbridge/intel/haswell/mrc_misc.h4
3 files changed, 26 insertions, 57 deletions
diff --git a/src/northbridge/intel/haswell/mrc.asm b/src/northbridge/intel/haswell/mrc.asm
index 1fc0a47043..d7a77db2c9 100644
--- a/src/northbridge/intel/haswell/mrc.asm
+++ b/src/northbridge/intel/haswell/mrc.asm
@@ -190,6 +190,7 @@ global fcn_fffb2062
global fcn_fffc8290
global fcn_fffa91af
global fcn_fffa0020
+extern do_smbus_op
;;
@@ -6702,7 +6703,7 @@ push eax
and edx, 0xfffffffe
mov eax, 5
add edx, 0x6e
-call fcn_fffc1ae2 ; call 0xfffc1ae2
+call do_smbus_op
add esp, 0x10
loc_fffa9348:
@@ -6714,7 +6715,7 @@ lea ecx, [ebp - 0x4d]
shl edx, 8
mov eax, 4
or edx, dword [ebp - 0x90]
-call fcn_fffc1ae2 ; call 0xfffc1ae2
+call do_smbus_op
mov al, byte [ebp - 0x4d]
add esp, 0x10
cmp dword [ebp - 0x4c], 0
@@ -36598,61 +36599,6 @@ db 0x00
db 0x00
db 0x00
-fcn_fffc1ae2:
-push ebp
-mov ebp, esp
-push edi
-mov edi, eax
-push esi
-push ebx
-mov ebx, edx
-lea edx, [ebp - 0x1c]
-lea esp, [esp - 0x38]
-mov esi, dword [0xff7d7538]
-mov dword [ebp - 0x20], 1
-mov eax, dword [esi]
-mov dword [ebp - 0x2c], ecx
-push edx
-push 0
-push 0
-push gEfiPeiSmbusPpiGuid
-push esi
-call dword [eax + 0x20] ; ucall
-add esp, 0x20
-mov ecx, dword [ebp - 0x2c]
-push ecx
-lea ecx, [ebp - 0x20]
-mov edx, ebx
-push ecx
-mov ecx, ebx
-movzx ebx, bh
-shr ecx, 0x16
-mov eax, dword [ebp - 0x1c]
-shr edx, 1
-and ecx, 1
-push ecx
-and edx, 0x7f
-push edi
-push ebx
-push edx
-push eax
-push esi
-call dword [eax] ; ucall
-add esp, 0x20
-cmp dword [ebp + 8], 0
-je short loc_fffc1b49 ; je 0xfffc1b49
-mov edx, dword [ebp + 8]
-mov dword [edx], eax
-
-loc_fffc1b49:
-mov eax, dword [ebp - 0x20]
-lea esp, [ebp - 0xc]
-pop ebx
-pop esi
-pop edi
-pop ebp
-ret
-
loc_fffc23aa:
db 0x00
db 0x00
diff --git a/src/northbridge/intel/haswell/mrc_misc.c b/src/northbridge/intel/haswell/mrc_misc.c
index c93bda0bf5..b91c12c27c 100644
--- a/src/northbridge/intel/haswell/mrc_misc.c
+++ b/src/northbridge/intel/haswell/mrc_misc.c
@@ -835,3 +835,22 @@ int __attribute((regparm(3))) fcn_fffa1d20(int bootmode, int v, void *addr,
}
return ret;
}
+
+int MRCABI do_smbus_op(EFI_SMBUS_OPERATION op, u32 addr_desc, void *buf, int *retcode)
+{
+ EFI_PEI_SMBUS_PPI *smbus;
+ u32 length = 1;
+ EFI_SMBUS_DEVICE_ADDRESS sa = { .SmbusDeviceAddress = (addr_desc >> 1) & 0x7f };
+ EFI_SMBUS_DEVICE_COMMAND cmd = (u8)(addr_desc >> 8);
+ int PecCheck = (addr_desc >> 22) & 1;
+
+ const EFI_PEI_SERVICES **pps = *gpPei;
+ (*pps)->LocatePpi(pps, &gEfiPeiSmbusPpiGuid, 0, NULL, (void**)&smbus);
+ int ret = smbus->Execute((EFI_PEI_SERVICES**)pps, smbus,
+ sa, cmd, op, PecCheck,
+ &length, buf);
+ if (retcode != NULL)
+ *retcode = ret;
+
+ return length;
+}
diff --git a/src/northbridge/intel/haswell/mrc_misc.h b/src/northbridge/intel/haswell/mrc_misc.h
index 9e05416f65..233ccae84e 100644
--- a/src/northbridge/intel/haswell/mrc_misc.h
+++ b/src/northbridge/intel/haswell/mrc_misc.h
@@ -1,6 +1,10 @@
#include <stdint.h>
+#include "Smbus.h"
+
+#define MRCABI __attribute((regparm(3)))
int dummy_func(void);
void dmi_check_link(void);
void __attribute((regparm(2))) rtc_wait(void *, uint16_t);
uint8_t __attribute((regparm(1))) pci_setup_bridge(uint8_t bus);
+int MRCABI do_smbus_op(EFI_SMBUS_OPERATION op, u32 addr_desc, void *buf, int *retcode);