reactos/hal/halx86/mp/halinit_mp.c
Art Yerkes c501d8112c Create a branch for network fixes.
svn path=/branches/aicom-network-fixes/; revision=34994
2008-08-01 11:32:26 +00:00

67 lines
1.3 KiB
C

/* $Id$
*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel
* FILE: ntoskrnl/hal/x86/halinit.c
* PURPOSE: Initalize the x86 hal
* PROGRAMMER: David Welch (welch@cwcom.net)
* UPDATE HISTORY:
* 11/06/98: Created
*/
/* INCLUDES *****************************************************************/
#include <hal.h>
#define NDEBUG
#include <debug.h>
/* FUNCTIONS ***************************************************************/
extern BOOLEAN HaliFindSmpConfig(VOID);
ULONG_PTR KernelBase;
/***************************************************************************/
VOID NTAPI HalpInitPICs(VOID)
{
UNIMPLEMENTED;
}
VOID
HalpInitPhase0(PLOADER_PARAMETER_BLOCK LoaderBlock)
{
static BOOLEAN MPSInitialized = FALSE;
/* Only initialize MP system once. Once called the first time,
each subsequent call is part of the initialization sequence
for an application processor. */
DPRINT("HalpInitPhase0()\n");
if (MPSInitialized)
{
KEBUGCHECK(0);
}
MPSInitialized = TRUE;
if (!HaliFindSmpConfig())
{
KEBUGCHECK(0);
}
/* store the kernel base for later use */
KernelBase = (ULONG_PTR)CONTAINING_RECORD(LoaderBlock->LoadOrderListHead.Flink, LDR_DATA_TABLE_ENTRY, InLoadOrderLinks)->DllBase;
}
VOID
HalpInitPhase1(VOID)
{
}
/* EOF */