next up previous contents index
Next: 10.5.7 i16_leave_pmode: leave protected Up: (X86) Processor Identification and Previous: 10.5.5 cpu_info_dump: pretty-print a

10.5.6 i16_enter_pmode: enter protected mode

 

SYNOPSIS

#include <oskit/x86/pmode.h>

void i16_enter_pmode(int prot_cs);

DESCRIPTION

This 16-bit function switches the processor into protected mode by turning on the Protection Enable (PE) bit in CR0. The instruction that sets the PE bit is followed immediately by a jump instruction to flush the prefetch buffer, as recommended by Intel documentation.

The function also initializes the CS register with the appropriate new protected-mode code segment, whose selector is specified in the prot_cs parameter. The prot_cs must evaluate to a constant, as it is used as an immediate operand in an inline assembly language code fragment.

This routine does not perform any of the other steps in Intel's recommended mode switching procedure, such as setting up the GDT or reinitializing the data segment registers; these steps must be performed separately. The overall mode switching sequence is necessarily much more dependent on various OS-specific factors such as the layout of the GDT; therefore the OSKit does not attempt to provide a ``generic'' function to perform the entire switch. Instead, the full switching sequence is provided as part of the base environment setup code; see Section 10.10 for more details.



University of Utah Flux Research Group