]> git.proxmox.com Git - mirror_edk2.git/blob - UefiCpuPkg/Library/MpInitLib/Ia32/CreatePageTable.c
UefiCpuPkg: Has APs in 64 bit long-mode before booting to OS.
[mirror_edk2.git] / UefiCpuPkg / Library / MpInitLib / Ia32 / CreatePageTable.c
1 /** @file
2 Function to create page talbe.
3 Only create page table for x64, and leave the CreatePageTable empty for Ia32.
4
5 Copyright (c) 2022, Intel Corporation. All rights reserved.<BR>
6 SPDX-License-Identifier: BSD-2-Clause-Patent
7
8 **/
9
10 #include <Base.h>
11
12 /**
13 Only create page table for x64, and leave the CreatePageTable empty for Ia32.
14
15 @param[in] LinearAddress The start of the linear address range.
16 @param[in] Length The length of the linear address range.
17
18 @return The page table to be created.
19 **/
20 UINTN
21 CreatePageTable (
22 IN UINTN Address,
23 IN UINTN Length
24 )
25 {
26 return 0;
27 }