ARM: dma-api: fix max_pfn off-by-one error in __dma_supported()
[linux/fpc-iii.git] / arch / x86 / platform / efi / efi_stub_32.S
blob75c46e7a809f38ca96bfe5a9ebc473b7c87b5124
1 /* SPDX-License-Identifier: GPL-2.0 */
2 /*
3  * EFI call stub for IA32.
4  *
5  * This stub allows us to make EFI calls in physical mode with interrupts
6  * turned off.
7  */
9 #include <linux/linkage.h>
10 #include <linux/init.h>
11 #include <asm/page_types.h>
13         __INIT
14 SYM_FUNC_START(efi_call_svam)
15         push    8(%esp)
16         push    8(%esp)
17         push    %ecx
18         push    %edx
20         /*
21          * Switch to the flat mapped alias of this routine, by jumping to the
22          * address of label '1' after subtracting PAGE_OFFSET from it.
23          */
24         movl    $1f, %edx
25         subl    $__PAGE_OFFSET, %edx
26         jmp     *%edx
29         /* disable paging */
30         movl    %cr0, %edx
31         andl    $0x7fffffff, %edx
32         movl    %edx, %cr0
34         /* convert the stack pointer to a flat mapped address */
35         subl    $__PAGE_OFFSET, %esp
37         /* call the EFI routine */
38         call    *(%eax)
40         /* convert ESP back to a kernel VA, and pop the outgoing args */
41         addl    $__PAGE_OFFSET + 16, %esp
43         /* re-enable paging */
44         movl    %cr0, %edx
45         orl     $0x80000000, %edx
46         movl    %edx, %cr0
48         ret
49 SYM_FUNC_END(efi_call_svam)