]> git.proxmox.com Git - mirror_edk2.git/blob - EdkModulePkg/Core/DxeIplPeim/Non-existing.c
f9f7df769c0fd3f033628a44118ff33f46e59d10
[mirror_edk2.git] / EdkModulePkg / Core / DxeIplPeim / Non-existing.c
1 /** @file
2 Non-existing functions other than Ia32 architecture.
3
4 Copyright (c) 2006, Intel Corporation
5 All rights reserved. This program and the accompanying materials
6 are licensed and made available under the terms and conditions of the BSD License
7 which accompanies this distribution. The full text of the license may be found at
8 http://opensource.org/licenses/bsd-license.php
9
10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
12
13 Module Name: Non-existing.c
14
15 **/
16
17 #include "DxeIpl.h"
18
19 EFI_PHYSICAL_ADDRESS
20 CreateIdentityMappingPageTables (
21 IN UINT32 NumberOfProcessorPhysicalAddressBits
22 )
23 {
24 //
25 // This function cannot work on non-Ia32 architecture.
26 //
27 ASSERT (FALSE);
28 return 0;
29 }
30
31 VOID
32 ActivateLongMode (
33 IN EFI_PHYSICAL_ADDRESS PageTables,
34 IN EFI_PHYSICAL_ADDRESS HobStart,
35 IN EFI_PHYSICAL_ADDRESS Stack,
36 IN EFI_PHYSICAL_ADDRESS CodeEntryPoint1,
37 IN EFI_PHYSICAL_ADDRESS CodeEntryPoint2
38 )
39 {
40 //
41 // This function cannot work on non-Ia32 architecture.
42 //
43 ASSERT (FALSE);
44 }
45
46 VOID
47 LoadGo64Gdt(
48 VOID
49 )
50 {
51 //
52 // This function cannot work on non-Ia32 architecture.
53 //
54 ASSERT (FALSE);
55 }