]> git.proxmox.com Git - mirror_edk2.git/blob - IntelFsp2Pkg/FspSecCore/X64/Fsp24ApiEntryS.nasm
IntelFsp2Pkg: Adopt FSP 2.4 MultiPhase functions.
[mirror_edk2.git] / IntelFsp2Pkg / FspSecCore / X64 / Fsp24ApiEntryS.nasm
1 ;; @file
2 ; Provide FSP API entry points.
3 ;
4 ; Copyright (c) 2022, Intel Corporation. All rights reserved.<BR>
5 ; SPDX-License-Identifier: BSD-2-Clause-Patent
6 ;;
7
8 SECTION .text
9
10 ;
11 ; Following functions will be provided in C
12 ;
13 extern ASM_PFX(FspApiCommon)
14 extern ASM_PFX(FspMultiPhaseSiInitApiHandlerV2)
15
16 STACK_SAVED_RAX_OFFSET EQU 8 * 7 ; size of a general purpose register * rax index
17
18 ;----------------------------------------------------------------------------
19 ; NotifyPhase API
20 ;
21 ; This FSP API will notify the FSP about the different phases in the boot
22 ; process
23 ;
24 ;----------------------------------------------------------------------------
25 global ASM_PFX(NotifyPhaseApi)
26 ASM_PFX(NotifyPhaseApi):
27 mov rax, 2 ; FSP_API_INDEX.NotifyPhaseApiIndex
28 jmp ASM_PFX(FspApiCommon)
29
30 ;----------------------------------------------------------------------------
31 ; FspSiliconInit API
32 ;
33 ; This FSP API initializes the CPU and the chipset including the IO
34 ; controllers in the chipset to enable normal operation of these devices.
35 ;
36 ;----------------------------------------------------------------------------
37 global ASM_PFX(FspSiliconInitApi)
38 ASM_PFX(FspSiliconInitApi):
39 mov rax, 5 ; FSP_API_INDEX.FspSiliconInitApiIndex
40 jmp ASM_PFX(FspApiCommon)
41
42 ;----------------------------------------------------------------------------
43 ; FspMultiPhaseSiInitApi API
44 ;
45 ; This FSP API provides multi-phase silicon initialization, which brings greater
46 ; modularity beyond the existing FspSiliconInit() API.
47 ; Increased modularity is achieved by adding an extra API to FSP-S.
48 ; This allows the bootloader to add board specific initialization steps throughout
49 ; the SiliconInit flow as needed.
50 ;
51 ;----------------------------------------------------------------------------
52
53 %include "PushPopRegsNasm.inc"
54
55 global ASM_PFX(FspMultiPhaseSiInitApi)
56 ASM_PFX(FspMultiPhaseSiInitApi):
57 mov rax, 6 ; FSP_API_INDEX.FspMultiPhaseSiInitApiIndex
58 jmp ASM_PFX(FspApiCommon)
59
60 ;----------------------------------------------------------------------------
61 ; FspApiCommonContinue API
62 ;
63 ; This is the FSP API common entry point to resume the FSP execution
64 ;
65 ;----------------------------------------------------------------------------
66 global ASM_PFX(FspApiCommonContinue)
67 ASM_PFX(FspApiCommonContinue):
68 ;
69 ; Handle FspMultiPhaseSiInitApiIndex API
70 ;
71 push rdx ; Push a QWORD data for stack alignment
72
73 cmp rax, 6 ; FSP_API_INDEX.FspMultiPhaseSiInitApiIndex
74 jnz NotMultiPhaseSiInitApi
75
76 PUSHA_64
77 mov rdx, rcx ; move ApiParam to rdx
78 mov rcx, rax ; move ApiIdx to rcx
79 sub rsp, 0x20 ; calling C function may need shadow space
80 call ASM_PFX(FspMultiPhaseSiInitApiHandlerV2)
81 add rsp, 0x20 ; restore shadow space
82 mov qword [rsp + STACK_SAVED_RAX_OFFSET], rax
83 POPA_64
84 add rsp, 0x08
85 ret
86
87 NotMultiPhaseSiInitApi:
88 jmp $
89 ret
90
91 ;----------------------------------------------------------------------------
92 ; TempRamInit API
93 ;
94 ; Empty function for WHOLEARCHIVE build option
95 ;
96 ;----------------------------------------------------------------------------
97 global ASM_PFX(TempRamInitApi)
98 ASM_PFX(TempRamInitApi):
99 jmp $
100 ret
101
102 ;----------------------------------------------------------------------------
103 ; Module Entrypoint API
104 ;----------------------------------------------------------------------------
105 global ASM_PFX(_ModuleEntryPoint)
106 ASM_PFX(_ModuleEntryPoint):
107 jmp $
108