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