mirror of
https://github.com/reactos/reactos.git
synced 2024-11-19 05:22:59 +00:00
6b1ca75899
* [HAL] Simplify HalpReboot() and make it portable * [NTOS:MM] Cast constant to PVOID * [BINPATCH] Fix 64 bit build * [VFDDRV] Fix 64 bit build and buffer overruns * [USBOHCI] Fix structure alignment issues * [ATL_APITEST] Fix 64 bit build * [XDK] Update unwind structures in winnt.h * [NTDLL_APITEST] Fix 64 bit build * [NTDLL_WINETEST] Fix 64 bit build * [TFTPD] Fix x64 build * [USBPORT] Fix a C_ASSERT * [DSOUND] Fix x64 build * [HAL] Remove obsolete GetPteAddress() macro
107 lines
2.6 KiB
C
107 lines
2.6 KiB
C
/*
|
|
* PROJECT: ReactOS HAL
|
|
* LICENSE: GPL - See COPYING in the top level directory
|
|
* FILE: hal/halx86/generic/reboot.c
|
|
* PURPOSE: Reboot functions
|
|
* PROGRAMMERS: Alex Ionescu (alex.ionescu@reactos.org)
|
|
* Eric Kohl
|
|
*/
|
|
|
|
/* INCLUDES ******************************************************************/
|
|
|
|
#include <hal.h>
|
|
#define NDEBUG
|
|
#include <debug.h>
|
|
|
|
/* PRIVATE FUNCTIONS *********************************************************/
|
|
|
|
VOID
|
|
NTAPI
|
|
HalpWriteResetCommand(VOID)
|
|
{
|
|
/* Generate RESET signal via keyboard controller */
|
|
WRITE_PORT_UCHAR((PUCHAR)0x64, 0xFE);
|
|
};
|
|
|
|
VOID
|
|
NTAPI
|
|
HalpReboot(VOID)
|
|
{
|
|
PHYSICAL_ADDRESS PhysicalAddress;
|
|
UCHAR Data;
|
|
PVOID ZeroPageMapping;
|
|
|
|
/* Map the first physical page */
|
|
PhysicalAddress.QuadPart = 0;
|
|
ZeroPageMapping = HalpMapPhysicalMemory64(PhysicalAddress, 1);
|
|
|
|
/* Enable warm reboot */
|
|
((PUSHORT)ZeroPageMapping)[0x239] = 0x1234;
|
|
|
|
/* Lock CMOS Access (and disable interrupts) */
|
|
HalpAcquireCmosSpinLock();
|
|
|
|
/* Setup control register B */
|
|
WRITE_PORT_UCHAR((PUCHAR)0x70, 0x0B);
|
|
KeStallExecutionProcessor(1);
|
|
|
|
/* Read periodic register and clear the interrupt enable */
|
|
Data = READ_PORT_UCHAR((PUCHAR)0x71);
|
|
WRITE_PORT_UCHAR((PUCHAR)0x71, Data & ~0x40);
|
|
KeStallExecutionProcessor(1);
|
|
|
|
/* Setup control register A */
|
|
WRITE_PORT_UCHAR((PUCHAR)0x70, 0x0A);
|
|
KeStallExecutionProcessor(1);
|
|
|
|
/* Read divider rate and reset it */
|
|
Data = READ_PORT_UCHAR((PUCHAR)0x71);
|
|
WRITE_PORT_UCHAR((PUCHAR)0x71, (Data & ~0x9) | 0x06);
|
|
KeStallExecutionProcessor(1);
|
|
|
|
/* Reset neutral CMOS address */
|
|
WRITE_PORT_UCHAR((PUCHAR)0x70, 0x15);
|
|
KeStallExecutionProcessor(1);
|
|
|
|
/* Flush write buffers and send the reset command */
|
|
KeFlushWriteBuffer();
|
|
HalpWriteResetCommand();
|
|
|
|
/* Halt the CPU */
|
|
__halt();
|
|
}
|
|
|
|
/* PUBLIC FUNCTIONS **********************************************************/
|
|
|
|
/*
|
|
* @implemented
|
|
*/
|
|
VOID
|
|
NTAPI
|
|
HalReturnToFirmware(IN FIRMWARE_REENTRY Action)
|
|
{
|
|
/* Check what kind of action this is */
|
|
switch (Action)
|
|
{
|
|
/* All recognized actions */
|
|
case HalHaltRoutine:
|
|
case HalRebootRoutine:
|
|
|
|
#ifndef _MINIHAL_
|
|
/* Acquire the display */
|
|
InbvAcquireDisplayOwnership();
|
|
#endif
|
|
|
|
/* Call the internal reboot function */
|
|
HalpReboot();
|
|
|
|
/* Anything else */
|
|
default:
|
|
|
|
/* Print message and break */
|
|
DbgPrint("HalReturnToFirmware called!\n");
|
|
DbgBreakPoint();
|
|
}
|
|
}
|
|
|
|
/* EOF */
|