VirtualBox

source: vbox/trunk/src/VBox/ValidationKit/bootsectors/bs3kit/bs3-mode-SwitchToPP16.asm@ 59747

Last change on this file since 59747 was 59287, checked in by vboxsync, 9 years ago

bs3kit: Working 16 and 64 bit PrintChr system call, fixed/documented 64-bit calls.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 4.1 KB
Line 
1; $Id: bs3-mode-SwitchToPP16.asm 59287 2016-01-08 10:08:40Z vboxsync $
2;; @file
3; BS3Kit - Bs3SwitchToPP16
4;
5
6;
7; Copyright (C) 2007-2015 Oracle Corporation
8;
9; This file is part of VirtualBox Open Source Edition (OSE), as
10; available from http://www.virtualbox.org. This file is free software;
11; you can redistribute it and/or modify it under the terms of the GNU
12; General Public License (GPL) as published by the Free Software
13; Foundation, in version 2 as it comes in the "COPYING" file of the
14; VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15; hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16;
17; The contents of this file may alternatively be used under the terms
18; of the Common Development and Distribution License Version 1.0
19; (CDDL) only, as it comes in the "COPYING.CDDL" file of the
20; VirtualBox OSE distribution, in which case the provisions of the
21; CDDL are applicable instead of those of the GPL.
22;
23; You may elect to license modified versions of this file under the
24; terms and conditions of either the GPL or the CDDL or both.
25;
26
27%include "bs3kit-template-header.mac"
28
29%ifndef TMPL_PP16
30extern NAME(Bs3EnteredMode_pp16)
31 %ifdef TMPL_PP32
32 BS3_EXTERN_CMN Bs3SwitchTo16Bit
33 %else
34 %endif
35%endif
36
37;;
38; Switch to 16-bit paged protected mode from any other mode.
39;
40; @cproto BS3_DECL(void) Bs3SwitchToPP16(void);
41;
42; @uses Nothing (except high 32-bit register parts).
43;
44; @remarks Obviously returns to 16-bit mode, even if the caller was
45; in 32-bit or 64-bit mode.
46;
47; @remarks Does not require 20h of parameter scratch space in 64-bit mode.
48;
49BS3_PROC_BEGIN_MODE Bs3SwitchToPP16
50%ifdef TMPL_PP16
51 ret
52%else
53 ;
54 ; Switch to 16-bit text segment and prepare for returning in 16-bit mode.
55 ;
56 %if TMPL_BITS != 16
57 shl xPRE [xSP + xCB], TMPL_BITS - 16 ; Adjust the return address.
58 add xSP, xCB - 2
59
60 ; Must be in 16-bit segment when calling Bs3SwitchToRM and Bs3SwitchTo16Bit.
61 jmp .sixteen_bit_segment
62BS3_BEGIN_TEXT16
63 BS3_SET_BITS TMPL_BITS
64.sixteen_bit_segment:
65 %endif
66
67 %ifdef TMPL_PP32
68 ;
69 ; No need to go to real-mode here, we use the same CR3 and stuff.
70 ; Just switch to 32-bit mode and call the Bs3EnteredMode routine to
71 ; load the right descriptor tables.
72 ;
73 call Bs3SwitchTo16Bit
74 BS3_SET_BITS 16
75 call NAME(Bs3EnteredMode_pp16)
76 ret
77 %else
78
79 ;
80 ; Switch to real mode.
81 ;
82 extern TMPL_NM(Bs3SwitchToRM)
83 call TMPL_NM(Bs3SwitchToRM)
84 BS3_SET_BITS 16
85
86 push eax
87 push ecx
88 pushfd
89
90 ;
91 ; Make sure PAE is really off and that PSE is enabled.
92 ; ASSUMES PSE supported (pentium+).
93 ;
94 mov eax, cr4
95 mov ecx, eax
96 and eax, ~X86_CR4_PAE
97 or eax, X86_CR4_PSE
98 cmp eax, ecx
99 je .cr4_is_fine
100 mov cr4, eax
101.cr4_is_fine:
102
103 ;
104 ; Get the page directory (returned in eax).
105 ; Will lazy init page tables (in 16-bit prot mode).
106 ;
107 extern NAME(Bs3PagingGetRootForPP16_rm)
108 call NAME(Bs3PagingGetRootForPP16_rm)
109
110 cli
111 mov cr3, eax
112
113 ;
114 ; Load the GDT and enable PP16.
115 ;
116BS3_EXTERN_SYSTEM16 Bs3Lgdt_Gdt
117BS3_BEGIN_TEXT16
118 mov ax, BS3SYSTEM16
119 mov ds, ax
120 lgdt [Bs3Lgdt_Gdt]
121
122 mov eax, cr0
123 or eax, X86_CR0_PE | X86_CR0_PG
124 mov cr0, eax
125 jmp BS3_SEL_R0_CS16:.reload_cs_and_stuff
126.reload_cs_and_stuff:
127
128 ;
129 ; Convert the (now) real mode stack to 16-bit.
130 ;
131 mov ax, .stack_fix_return
132 extern NAME(Bs3ConvertRMStackToP16UsingCxReturnToAx_c16)
133 jmp NAME(Bs3ConvertRMStackToP16UsingCxReturnToAx_c16)
134.stack_fix_return:
135
136 ;
137 ; Call rountine for doing mode specific setups.
138 ;
139 call NAME(Bs3EnteredMode_pp16)
140
141 popfd
142 pop ecx
143 pop eax
144 ret
145
146 %endif ; !TMPL_PP32
147 %if TMPL_BITS != 16
148TMPL_BEGIN_TEXT
149 %endif
150%endif
151BS3_PROC_END_MODE Bs3SwitchToPP16
152
Note: See TracBrowser for help on using the repository browser.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette