]>
Commit | Line | Data |
---|---|---|
917c5627 AB |
1 | /** @file\r |
2 | *\r | |
3 | * Copyright (c) 2011, ARM Limited. All rights reserved.\r | |
4 | * Copyright (c) 2017, Linaro, Ltd. All rights reserved.\r | |
5 | *\r | |
6 | * This program and the accompanying materials\r | |
7 | * are licensed and made available under the terms and conditions of the BSD License\r | |
8 | * which accompanies this distribution. The full text of the license may be found at\r | |
9 | * http://opensource.org/licenses/bsd-license.php\r | |
10 | *\r | |
11 | * THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r | |
12 | * WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r | |
13 | *\r | |
14 | **/\r | |
15 | \r | |
16 | #include "PrePi.h"\r | |
17 | \r | |
18 | VOID\r | |
19 | PrimaryMain (\r | |
20 | IN UINTN UefiMemoryBase,\r | |
21 | IN UINTN StacksBase,\r | |
22 | IN UINT64 StartTimeStamp\r | |
23 | )\r | |
24 | {\r | |
25 | PrePiMain (UefiMemoryBase, StacksBase, StartTimeStamp);\r | |
26 | \r | |
27 | // We must never return\r | |
28 | ASSERT(FALSE);\r | |
29 | }\r | |
30 | \r | |
31 | VOID\r | |
32 | SecondaryMain (\r | |
33 | IN UINTN MpId\r | |
34 | )\r | |
35 | {\r | |
36 | // We must never get into this function on UniCore system\r | |
37 | ASSERT(FALSE);\r | |
38 | }\r | |
39 | \r |