MainUniCore.c 649 B

123456789101112131415161718192021222324252627282930313233
  1. /** @file
  2. *
  3. * Copyright (c) 2011, ARM Limited. All rights reserved.
  4. * Copyright (c) 2017, Linaro, Ltd. All rights reserved.
  5. *
  6. * SPDX-License-Identifier: BSD-2-Clause-Patent
  7. *
  8. **/
  9. #include "PrePi.h"
  10. VOID
  11. PrimaryMain (
  12. IN UINTN UefiMemoryBase,
  13. IN UINTN StacksBase,
  14. IN UINT64 StartTimeStamp
  15. )
  16. {
  17. PrePiMain (UefiMemoryBase, StacksBase, StartTimeStamp);
  18. // We must never return
  19. ASSERT(FALSE);
  20. }
  21. VOID
  22. SecondaryMain (
  23. IN UINTN MpId
  24. )
  25. {
  26. // We must never get into this function on UniCore system
  27. ASSERT(FALSE);
  28. }