2006-04-22 00:54:32 +02:00
|
|
|
/*++
|
|
|
|
|
2007-03-22 04:03:32 +01:00
|
|
|
Copyright (c) 2006 - 2007, Intel Corporation
|
2006-08-21 04:53:29 +02:00
|
|
|
All rights reserved. This program and the accompanying materials
|
|
|
|
are licensed and made available under the terms and conditions of the BSD License
|
|
|
|
which accompanies this distribution. The full text of the license may be found at
|
|
|
|
http://opensource.org/licenses/bsd-license.php
|
|
|
|
|
|
|
|
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
2006-04-22 00:54:32 +02:00
|
|
|
|
|
|
|
Module Name:
|
|
|
|
|
|
|
|
IpfDxeLoad.c
|
|
|
|
|
|
|
|
Abstract:
|
|
|
|
|
|
|
|
Ipf-specifc functionality for DxeLoad.
|
|
|
|
|
|
|
|
--*/
|
|
|
|
|
2006-11-27 11:14:02 +01:00
|
|
|
#include "DxeIpl.h"
|
2006-04-22 00:54:32 +02:00
|
|
|
|
2006-11-28 08:59:59 +01:00
|
|
|
VOID
|
|
|
|
HandOffToDxeCore (
|
|
|
|
IN EFI_PHYSICAL_ADDRESS DxeCoreEntryPoint,
|
2006-12-22 04:13:56 +01:00
|
|
|
IN EFI_PEI_HOB_POINTERS HobList,
|
|
|
|
IN EFI_PEI_PPI_DESCRIPTOR *EndOfPeiSignal
|
2006-04-22 00:54:32 +02:00
|
|
|
)
|
|
|
|
{
|
2006-11-28 08:59:59 +01:00
|
|
|
VOID *BaseOfStack;
|
|
|
|
VOID *TopOfStack;
|
|
|
|
VOID *BspStore;
|
2006-12-22 10:56:35 +01:00
|
|
|
EFI_STATUS Status;
|
2006-04-22 00:54:32 +02:00
|
|
|
|
2006-11-28 08:59:59 +01:00
|
|
|
//
|
|
|
|
// Allocate 128KB for the Stack
|
|
|
|
//
|
|
|
|
BaseOfStack = AllocatePages (EFI_SIZE_TO_PAGES (STACK_SIZE));
|
|
|
|
ASSERT (BaseOfStack != NULL);
|
2006-04-22 00:54:32 +02:00
|
|
|
|
|
|
|
//
|
|
|
|
// Allocate 16KB for the BspStore
|
|
|
|
//
|
2006-11-28 08:59:59 +01:00
|
|
|
BspStore = AllocatePages (EFI_SIZE_TO_PAGES (BSP_STORE_SIZE));
|
|
|
|
ASSERT (BspStore != NULL);
|
|
|
|
//
|
|
|
|
// Build BspStoreHob
|
|
|
|
//
|
|
|
|
BuildBspStoreHob ((EFI_PHYSICAL_ADDRESS) (UINTN) BspStore, BSP_STORE_SIZE, EfiBootServicesData);
|
2006-08-21 04:53:29 +02:00
|
|
|
|
2006-11-28 08:59:59 +01:00
|
|
|
//
|
|
|
|
// Compute the top of the stack we were allocated. Pre-allocate a UINTN
|
|
|
|
// for safety.
|
|
|
|
//
|
|
|
|
TopOfStack = (VOID *) ((UINTN) BaseOfStack + EFI_SIZE_TO_PAGES (STACK_SIZE) * EFI_PAGE_SIZE - CPU_STACK_ALIGNMENT);
|
|
|
|
TopOfStack = ALIGN_POINTER (TopOfStack, CPU_STACK_ALIGNMENT);
|
2006-08-21 04:53:29 +02:00
|
|
|
|
2006-12-22 04:13:56 +01:00
|
|
|
//
|
|
|
|
// End of PEI phase singal
|
|
|
|
//
|
|
|
|
Status = PeiServicesInstallPpi (EndOfPeiSignal);
|
|
|
|
ASSERT_EFI_ERROR (Status);
|
|
|
|
|
2007-03-22 04:03:32 +01:00
|
|
|
SwitchStack (
|
2006-11-28 08:59:59 +01:00
|
|
|
(SWITCH_STACK_ENTRY_POINT)(UINTN)DxeCoreEntryPoint,
|
|
|
|
HobList.Raw,
|
|
|
|
NULL,
|
|
|
|
TopOfStack,
|
|
|
|
BspStore
|
2006-08-21 04:53:29 +02:00
|
|
|
);
|
|
|
|
}
|