diff options
author | Iru Cai <mytbk920423@gmail.com> | 2019-10-31 22:05:03 +0800 |
---|---|---|
committer | Iru Cai <mytbk920423@gmail.com> | 2019-11-17 15:10:47 +0800 |
commit | 32f66fe368ca7281c6fb617623248444eeb0eef3 (patch) | |
tree | 0ebfa307809a40a68ff43afff792c70b89eafafd /src | |
parent | ad532d6dee543d4b3a6d779d040ac29f06029562 (diff) | |
download | coreboot-32f66fe368ca7281c6fb617623248444eeb0eef3.tar.xz |
call all me_uma functions directly in mrc_init_memory.asm
Diffstat (limited to 'src')
-rw-r--r-- | src/northbridge/intel/haswell/mrc_init_memory.asm | 27 |
1 files changed, 10 insertions, 17 deletions
diff --git a/src/northbridge/intel/haswell/mrc_init_memory.asm b/src/northbridge/intel/haswell/mrc_init_memory.asm index bb5bfec2f8..abf8b4ecef 100644 --- a/src/northbridge/intel/haswell/mrc_init_memory.asm +++ b/src/northbridge/intel/haswell/mrc_init_memory.asm @@ -85,6 +85,11 @@ extern dummy_func extern mrc_get_bootmode extern mrc_locateppi +; me_uma +extern get_uma_size +extern fcn_fffbe070 +extern fcn_fffbe14d + initialize_txt: push ebx mov edx, cr4 @@ -191,27 +196,18 @@ je loc_fffc23a2 ; je 0xfffc23a2 loc_fffc1dc2: mov ecx, dword [ebp - 0x50bc] -sub esp, 0xc -lea edx, [ebp - 0x5098] -push edx -push 0 -push 0 -push gPchMeUmaPpiGuid -push ecx -call mrc_locateppi mov eax, dword [ebp - 0x50c4] -add esp, 0x20 dec eax cmp eax, 1 jbe short loc_fffc1e18 push ecx lea eax, [ebp - 0x50aa] push eax -mov eax, dword [ebp - 0x5098] push 0 push dword [ebp - 0x50bc] -call dword [eax + 4] ; ucall +call fcn_fffbe070 ; in me_uma.c add esp, 0x10 + mov al, 0 cmp byte [ebp - 0x50aa], 1 cmove ebx, eax @@ -228,10 +224,9 @@ call superfrag_fffc1ea8 add esp, 20 mov edi, eax -mov eax, dword [ebp - 0x5098] push 0 push dword [ebp - 0x50bc] -call dword [eax] ; ucall +call get_uma_size mov dword [ebp - 0x3feb], eax add esp, 8 @@ -318,12 +313,11 @@ push eax push eax push dword [ebp - 0x3feb] push dword [ebp - 0x391a] -mov eax, dword [ebp - 0x5098] push 1 push edi push 0 push dword [ebp - 0x50bc] -call dword [eax + 8] ; ucall +call fcn_fffbe14d ; in me_uma.c add esp, 0x20 lea eax, [ebp - 0x503a] mov edx, 0xddfe @@ -379,11 +373,10 @@ push esi push ecx push dword [ebp - 0x391a] push eax -mov eax, dword [ebp - 0x5098] push edi push 0 push dword [ebp - 0x50bc] -call dword [eax + 8] ; ucall +call fcn_fffbe14d ; in me_uma.c add esp, 0x20 loc_fffc22d0: |