2011-07-01 13:09:00 +02:00
|
|
|
/** @file
|
|
|
|
*
|
|
|
|
* Copyright (c) 2011, ARM Limited. All rights reserved.
|
|
|
|
*
|
2019-04-04 01:03:21 +02:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause-Patent
|
2011-07-01 13:09:00 +02:00
|
|
|
*
|
|
|
|
**/
|
|
|
|
|
|
|
|
#include "PrePi.h"
|
|
|
|
|
|
|
|
VOID
|
|
|
|
PrimaryMain (
|
|
|
|
IN UINTN UefiMemoryBase,
|
2011-09-23 01:07:55 +02:00
|
|
|
IN UINTN StacksBase,
|
2011-07-01 13:09:00 +02:00
|
|
|
IN UINT64 StartTimeStamp
|
|
|
|
)
|
|
|
|
{
|
2015-11-27 18:07:06 +01:00
|
|
|
PrePiMain (UefiMemoryBase, StacksBase, StartTimeStamp);
|
2011-07-01 13:09:00 +02:00
|
|
|
|
|
|
|
// We must never return
|
|
|
|
ASSERT(FALSE);
|
|
|
|
}
|
|
|
|
|
|
|
|
VOID
|
|
|
|
SecondaryMain (
|
2011-09-23 01:01:13 +02:00
|
|
|
IN UINTN MpId
|
2011-07-01 13:09:00 +02:00
|
|
|
)
|
|
|
|
{
|
|
|
|
// We must never get into this function on UniCore system
|
|
|
|
ASSERT(FALSE);
|
|
|
|
}
|
|
|
|
|