2006-11-08 11:47:44 +00:00
|
|
|
/*
|
|
|
|
* PROJECT: ReactOS Kernel
|
|
|
|
* LICENSE: GPL - See COPYING in the top level directory
|
|
|
|
* FILE: ntoskrnl/ke/i386/mtrr.c
|
|
|
|
* PURPOSE: Support for MTRR and AMD K6 MTRR
|
|
|
|
* PROGRAMMERS: Alex Ionescu (alex.ionescu@reactos.org)
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* INCLUDES ******************************************************************/
|
|
|
|
|
|
|
|
#include <ntoskrnl.h>
|
|
|
|
#define NDEBUG
|
|
|
|
#include <debug.h>
|
|
|
|
|
|
|
|
/* GLOBALS *******************************************************************/
|
|
|
|
|
|
|
|
/* FUNCTIONS *****************************************************************/
|
|
|
|
|
|
|
|
VOID
|
|
|
|
NTAPI
|
2010-11-02 16:29:06 +00:00
|
|
|
INIT_FUNCTION
|
2006-11-08 11:47:44 +00:00
|
|
|
KiInitializeMTRR(IN BOOLEAN FinalCpu)
|
|
|
|
{
|
|
|
|
/* FIXME: Support this */
|
2011-09-25 09:16:10 +00:00
|
|
|
DPRINT("MTRR support detected but not yet taken advantage of\n");
|
2006-11-08 11:47:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
VOID
|
|
|
|
NTAPI
|
2010-11-02 16:29:06 +00:00
|
|
|
INIT_FUNCTION
|
2006-11-08 11:47:44 +00:00
|
|
|
KiAmdK6InitializeMTRR(VOID)
|
|
|
|
{
|
|
|
|
/* FIXME: Support this */
|
2011-09-25 09:16:10 +00:00
|
|
|
DPRINT("AMD MTRR support detected but not yet taken advantage of\n");
|
2006-11-08 11:47:44 +00:00
|
|
|
}
|